@ama-sdk/schematics 13.1.4 → 13.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +11 -12
- package/schematics/typescript/core/openapi-codegen-typescript/target/typescriptFetch-openapi-generator-tests.jar +0 -0
- package/schematics/typescript/core/openapi-codegen-typescript/target/typescriptFetch-openapi-generator.jar +0 -0
- package/schematics/typescript/mock/templates/__dasherizeModelName__.mock.ts.template +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ama-sdk/schematics",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.9",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"description": "Swagger specification SDK Generator by schematics",
|
|
8
|
-
"typings": "./src/public_api.d.ts",
|
|
9
|
-
"main": "./src/public_api.js",
|
|
10
8
|
"types": "./src/public_api.d.ts",
|
|
9
|
+
"main": "./src/public_api.js",
|
|
11
10
|
"scripts": {
|
|
12
11
|
"nx": "nx",
|
|
13
12
|
"ng": "yarn nx",
|
|
@@ -62,12 +61,12 @@
|
|
|
62
61
|
}
|
|
63
62
|
},
|
|
64
63
|
"peerDependencies": {
|
|
65
|
-
"@ama-sdk/core": "^13.1.
|
|
64
|
+
"@ama-sdk/core": "^13.1.9",
|
|
66
65
|
"@angular-devkit/core": "^20.0.0",
|
|
67
66
|
"@angular-devkit/schematics-cli": "^20.0.0",
|
|
68
67
|
"@angular/cli": "^20.0.0",
|
|
69
|
-
"@o3r/schematics": "^13.1.
|
|
70
|
-
"@o3r/telemetry": "^13.1.
|
|
68
|
+
"@o3r/schematics": "^13.1.9",
|
|
69
|
+
"@o3r/telemetry": "^13.1.9",
|
|
71
70
|
"@openapitools/openapi-generator-cli": "^2.15.0",
|
|
72
71
|
"openapi-types": "^12.0.0",
|
|
73
72
|
"ts-node": "~10.9.2",
|
|
@@ -77,7 +76,7 @@
|
|
|
77
76
|
"dependencies": {
|
|
78
77
|
"@angular-devkit/core": "~20.2.0",
|
|
79
78
|
"@angular-devkit/schematics": "~20.2.0",
|
|
80
|
-
"@o3r/schematics": "^13.1.
|
|
79
|
+
"@o3r/schematics": "^13.1.9",
|
|
81
80
|
"chokidar": "^4.0.3",
|
|
82
81
|
"globby": "^11.1.0",
|
|
83
82
|
"js-yaml": "^4.1.0",
|
|
@@ -88,16 +87,16 @@
|
|
|
88
87
|
"tslib": "^2.6.2"
|
|
89
88
|
},
|
|
90
89
|
"devDependencies": {
|
|
91
|
-
"@ama-sdk/core": "^13.1.
|
|
90
|
+
"@ama-sdk/core": "^13.1.9",
|
|
92
91
|
"@angular-devkit/schematics-cli": "~20.2.0",
|
|
93
92
|
"@angular/cli": "~20.2.0",
|
|
94
93
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
|
|
95
94
|
"@nx/eslint-plugin": "~21.5.0",
|
|
96
95
|
"@nx/jest": "~21.5.0",
|
|
97
|
-
"@o3r/build-helpers": "^13.1.
|
|
98
|
-
"@o3r/eslint-plugin": "^13.1.
|
|
99
|
-
"@o3r/telemetry": "^13.1.
|
|
100
|
-
"@o3r/test-helpers": "^13.1.
|
|
96
|
+
"@o3r/build-helpers": "^13.1.9",
|
|
97
|
+
"@o3r/eslint-plugin": "^13.1.9",
|
|
98
|
+
"@o3r/telemetry": "^13.1.9",
|
|
99
|
+
"@o3r/test-helpers": "^13.1.9",
|
|
101
100
|
"@openapitools/openapi-generator-cli": "~2.23.0",
|
|
102
101
|
"@schematics/angular": "~20.2.0",
|
|
103
102
|
"@stylistic/eslint-plugin": "~5.3.0",
|
|
Binary file
|
|
Binary file
|
|
@@ -77,7 +77,7 @@ export interface Combine<%= apiModel %>Config <% if (identified) { %>extends Com
|
|
|
77
77
|
* @param items the items to be combined
|
|
78
78
|
* @param config the combine configuration
|
|
79
79
|
*/
|
|
80
|
-
export function combine<%=
|
|
80
|
+
export function combine<%= apiModels %>(
|
|
81
81
|
items: RecursivePartial<<%= apiModel %>>[] = [<%= apiModel %>Repository.DEFAULT],
|
|
82
82
|
<% if (!identified) { %>_<% } %>config: Partial<Combine<%= apiModel %>Config> = {}
|
|
83
83
|
): CombineResult<Mock<%= apiModel %>> {
|