Skip to content

Commit faab38c

Browse files
Ivan KamkinIvan Kamkin
authored andcommitted
Version updated
Node templates updated
1 parent 507c14b commit faab38c

File tree

18 files changed

+176
-27
lines changed

18 files changed

+176
-27
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ codegen/.generated/
88
codegen/debug*.json
99
.idea/
1010
.vscode/
11+
.qodo

codegen/Templates/nodejs/package.mustache

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@
132132
"node": ">=16"
133133
},
134134
"scripts": {
135-
"test": "dts test",
136-
"cover": "dts test --coverage",
137-
"lint": "dts lint src test",
138-
"format": "dts lint src test --fix",
139-
"prepare": "dts build --target node",
135+
"test": "npx jest",
136+
"cover": "npx jest --coverage",
137+
"lint": "npx eslint src test snippets",
138+
"format": "npx eslint src test snippets --fix",
139+
"prepare": "npx tsup",
140140
"check-updates": "ncu -u --enginesNode"
141141
},
142142
"prettier": {
@@ -146,16 +146,29 @@
146146
"trailingComma": "es5",
147147
"tabWidth": 4
148148
},
149+
"tsup": {
150+
"entry": ["src/index.ts"],
151+
"format": ["cjs", "esm"],
152+
"dts": true,
153+
"splitting": false,
154+
"sourcemap": true,
155+
"clean": true,
156+
"minify": true
157+
},
149158
"devDependencies": {
159+
"@types/jest": "^29.5.14",
150160
"@types/uuid": "^10.0.0",
151-
"dts-cli": "^2.0.5",
152-
"eslint-config-prettier": "^10.0.1",
161+
"@typescript-eslint/eslint-plugin": "^8.26.1",
162+
"@typescript-eslint/parser": "^8.26.1",
163+
"eslint": "^9.22.0",
164+
"eslint-config-prettier": "^10.1.1",
153165
"eslint-plugin-prettier": "^5.2.3",
154-
"npm-check-updates": "^16.14.20",
155-
"prettier": "^3.4.2",
156-
"ts-jest": "^29.1.3",
166+
"npm-check-updates": "^17.1.15",
167+
"prettier": "^3.5.3",
168+
"ts-jest": "^29.2.6",
157169
"tslib": "^2.8.1",
158-
"uuid": "^11.0.5"
170+
"tsup": "^8.4.0",
171+
"uuid": "^11.1.0"
159172
},
160173
"bugs": {
161174
"url": "https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-node/issues"

codegen/config-android.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"androidSdkVersion": "33",
55
"apiPackage": "com.aspose.barcode.cloud.demo_app",
66
"artifactId": "Android Application for Barcode Processing in the Cloud via REST API",
7-
"artifactVersion": "25.2.0",
7+
"artifactVersion": "25.3.0",
88
"groupId": "com.aspose",
99
"invokerPackage": "com.aspose.barcode.cloud.demo_app",
1010
"modelPackage": "com.aspose.barcode.cloud.demo_app.model"

codegen/config-dart.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"browserClient": false,
44
"pubDescription": "This SDK allows you to work with Aspose.BarCode for Cloud REST APIs in your Dart or Flutter applications quickly and easily",
55
"pubName": "aspose_barcode_cloud",
6-
"pubVersion": "4.25.2",
6+
"pubVersion": "4.25.3",
77
"useEnumExtension": true
88
}

codegen/config-go.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"packageName": "barcode",
3-
"packageVersion": "4.2502.0"
3+
"packageVersion": "4.2503.0"
44
}

codegen/config-java.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"artifactDescription": "Aspose.BarCode Cloud SDK for Java",
44
"artifactId": "aspose-barcode-cloud",
55
"artifactUrl": "https://www.aspose.cloud",
6-
"artifactVersion": "25.2.0",
6+
"artifactVersion": "25.3.0",
77
"developerEmail": "[email protected]",
88
"developerName": "Denis Averin",
99
"developerOrganization": "Aspose",

codegen/config-php.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"artifactVersion": "25.2.0",
2+
"artifactVersion": "25.3.0",
33
"invokerPackage": "Aspose\\BarCode"
44
}

codegen/config-python.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"packageName": "aspose_barcode_cloud",
33
"packageUrl": "https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-python",
4-
"packageVersion": "25.2.0",
4+
"packageVersion": "25.3.0",
55
"projectName": "aspose-barcode-cloud"
66
}

codegen/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"artifactVersion": "23.7.0",
33
"npmName": "aspose-barcode-cloud-node",
4-
"npmVersion": "25.2.0",
4+
"npmVersion": "25.3.0",
55
"packageName": "Aspose.BarCode.Cloud.Sdk",
6-
"packageVersion": "25.2.0",
6+
"packageVersion": "25.3.0",
77
"supportsES6": true,
88
"targetFramework": "netstandard2.0"
99
}

spec/aspose-barcode-cloud.json

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,21 @@
186186
}
187187
}
188188
},
189+
"403": {
190+
"description": "Forbidden",
191+
"content": {
192+
"application/json": {
193+
"schema": {
194+
"$ref": "#/components/schemas/ApiErrorResponse"
195+
}
196+
},
197+
"application/xml": {
198+
"schema": {
199+
"$ref": "#/components/schemas/ApiErrorResponse"
200+
}
201+
}
202+
}
203+
},
189204
"400": {
190205
"description": "Bad Request",
191206
"content": {
@@ -379,6 +394,21 @@
379394
}
380395
}
381396
},
397+
"403": {
398+
"description": "Forbidden",
399+
"content": {
400+
"application/json": {
401+
"schema": {
402+
"$ref": "#/components/schemas/ApiErrorResponse"
403+
}
404+
},
405+
"application/xml": {
406+
"schema": {
407+
"$ref": "#/components/schemas/ApiErrorResponse"
408+
}
409+
}
410+
}
411+
},
382412
"400": {
383413
"description": "Bad Request",
384414
"content": {
@@ -481,6 +511,21 @@
481511
}
482512
}
483513
},
514+
"403": {
515+
"description": "Forbidden",
516+
"content": {
517+
"application/json": {
518+
"schema": {
519+
"$ref": "#/components/schemas/ApiErrorResponse"
520+
}
521+
},
522+
"application/xml": {
523+
"schema": {
524+
"$ref": "#/components/schemas/ApiErrorResponse"
525+
}
526+
}
527+
}
528+
},
484529
"400": {
485530
"description": "Bad Request",
486531
"content": {
@@ -578,6 +623,21 @@
578623
}
579624
}
580625
},
626+
"403": {
627+
"description": "Forbidden",
628+
"content": {
629+
"application/json": {
630+
"schema": {
631+
"$ref": "#/components/schemas/ApiErrorResponse"
632+
}
633+
},
634+
"application/xml": {
635+
"schema": {
636+
"$ref": "#/components/schemas/ApiErrorResponse"
637+
}
638+
}
639+
}
640+
},
581641
"400": {
582642
"description": "Bad Request",
583643
"content": {
@@ -653,6 +713,21 @@
653713
}
654714
}
655715
},
716+
"403": {
717+
"description": "Forbidden",
718+
"content": {
719+
"application/json": {
720+
"schema": {
721+
"$ref": "#/components/schemas/ApiErrorResponse"
722+
}
723+
},
724+
"application/xml": {
725+
"schema": {
726+
"$ref": "#/components/schemas/ApiErrorResponse"
727+
}
728+
}
729+
}
730+
},
656731
"400": {
657732
"description": "Bad Request",
658733
"content": {
@@ -755,6 +830,21 @@
755830
}
756831
}
757832
},
833+
"403": {
834+
"description": "Forbidden",
835+
"content": {
836+
"application/json": {
837+
"schema": {
838+
"$ref": "#/components/schemas/ApiErrorResponse"
839+
}
840+
},
841+
"application/xml": {
842+
"schema": {
843+
"$ref": "#/components/schemas/ApiErrorResponse"
844+
}
845+
}
846+
}
847+
},
758848
"400": {
759849
"description": "Bad Request",
760850
"content": {
@@ -826,6 +916,21 @@
826916
}
827917
}
828918
},
919+
"403": {
920+
"description": "Forbidden",
921+
"content": {
922+
"application/json": {
923+
"schema": {
924+
"$ref": "#/components/schemas/ApiErrorResponse"
925+
}
926+
},
927+
"application/xml": {
928+
"schema": {
929+
"$ref": "#/components/schemas/ApiErrorResponse"
930+
}
931+
}
932+
}
933+
},
829934
"400": {
830935
"description": "Bad Request",
831936
"content": {
@@ -901,6 +1006,21 @@
9011006
}
9021007
}
9031008
},
1009+
"403": {
1010+
"description": "Forbidden",
1011+
"content": {
1012+
"application/json": {
1013+
"schema": {
1014+
"$ref": "#/components/schemas/ApiErrorResponse"
1015+
}
1016+
},
1017+
"application/xml": {
1018+
"schema": {
1019+
"$ref": "#/components/schemas/ApiErrorResponse"
1020+
}
1021+
}
1022+
}
1023+
},
9041024
"400": {
9051025
"description": "Bad Request",
9061026
"content": {
@@ -984,6 +1104,21 @@
9841104
}
9851105
}
9861106
},
1107+
"403": {
1108+
"description": "Forbidden",
1109+
"content": {
1110+
"application/json": {
1111+
"schema": {
1112+
"$ref": "#/components/schemas/ApiErrorResponse"
1113+
}
1114+
},
1115+
"application/xml": {
1116+
"schema": {
1117+
"$ref": "#/components/schemas/ApiErrorResponse"
1118+
}
1119+
}
1120+
}
1121+
},
9871122
"400": {
9881123
"description": "Bad Request",
9891124
"content": {

0 commit comments

Comments
 (0)