@ama-sdk/schematics 9.0.0-alpha.9 → 9.1.0-alpha.0
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/README.md +19 -14
- package/collection.json +0 -6
- package/package.json +15 -9
- package/schematics/code-generator/code-generator.d.ts +3 -1
- package/schematics/code-generator/code-generator.d.ts.map +1 -1
- package/schematics/code-generator/code-generator.js +2 -0
- package/schematics/code-generator/open-api-cli-generator/open-api-cli.generator.d.ts +6 -2
- package/schematics/code-generator/open-api-cli-generator/open-api-cli.generator.d.ts.map +1 -1
- package/schematics/code-generator/open-api-cli-generator/open-api-cli.generator.js +13 -7
- package/schematics/code-generator/open-api-cli-generator/open-api-cli.options.d.ts +2 -2
- package/schematics/code-generator/open-api-cli-generator/open-api-cli.options.d.ts.map +1 -1
- package/schematics/code-generator/open-api-cli-generator/open-api-cli.options.js +2 -2
- package/schematics/code-generator/swagger-java-generator/swagger-java.options.js +1 -1
- package/schematics/helpers/node-install.d.ts +62 -0
- package/schematics/helpers/node-install.d.ts.map +1 -0
- package/schematics/helpers/node-install.js +67 -0
- package/schematics/java/client-core/index.js +2 -2
- package/schematics/java/client-core/schema.d.ts +1 -1
- package/schematics/java/client-core/schema.d.ts.map +1 -1
- package/schematics/java/client-core/schema.json +2 -2
- package/schematics/java/client-core/swagger-codegen-java-client/target/javaClient-swagger-codegen-tests.jar +0 -0
- package/schematics/java/client-core/swagger-codegen-java-client/target/javaClient-swagger-codegen.jar +0 -0
- package/schematics/ng-add/index.d.ts.map +1 -1
- package/schematics/ng-add/index.js +108 -54
- package/schematics/typescript/core/index.d.ts.map +1 -1
- package/schematics/typescript/core/index.js +19 -14
- 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/core/schema.d.ts +6 -0
- package/schematics/typescript/core/schema.d.ts.map +1 -1
- package/schematics/typescript/core/schema.json +20 -0
- package/schematics/typescript/shell/index.d.ts.map +1 -1
- package/schematics/typescript/shell/index.js +31 -3
- package/schematics/typescript/shell/schema.d.ts +6 -0
- package/schematics/typescript/shell/schema.d.ts.map +1 -1
- package/schematics/typescript/shell/schema.json +20 -1
- package/schematics/typescript/shell/templates/base/.gitignore.template +68 -0
- package/schematics/typescript/shell/templates/base/.vscode/settings.json +20 -0
- package/schematics/typescript/shell/templates/base/jest.config.js +1 -1
- package/schematics/typescript/shell/templates/base/openapitools.json +2 -1
- package/schematics/typescript/shell/templates/base/{package.json → package.json.template} +2 -2
- package/schematics/typescript/create/index.d.ts +0 -9
- package/schematics/typescript/create/index.d.ts.map +0 -1
- package/schematics/typescript/create/index.js +0 -17
- package/schematics/typescript/create/schema.d.ts +0 -5
- package/schematics/typescript/create/schema.d.ts.map +0 -1
- package/schematics/typescript/create/schema.js +0 -3
- package/schematics/typescript/create/schema.json +0 -40
- package/schematics/typescript/shell/templates/base/.yarnrc.yml +0 -6
- /package/schematics/typescript/shell/templates/base/{.eslintignore → .eslintignore.template} +0 -0
- /package/schematics/typescript/shell/templates/base/{.eslintrc.js → .eslintrc.js.template} +0 -0
- /package/schematics/typescript/shell/templates/base/{.openapi-codegen-ignore → .openapi-generator-ignore} +0 -0
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/schema",
|
|
3
|
-
"$id": "NgGenerateTypescriptSDKCreateSchematicsSchema",
|
|
4
|
-
"title": "Generate Typescript SDK",
|
|
5
|
-
"description": "ng generate typescript-sdk",
|
|
6
|
-
"properties": {
|
|
7
|
-
"specPath": {
|
|
8
|
-
"type": "string",
|
|
9
|
-
"description": "Path to the swagger specification used to generate the SDK",
|
|
10
|
-
"x-prompt": "Path to the swagger spec",
|
|
11
|
-
"$default": {
|
|
12
|
-
"$source": "argv",
|
|
13
|
-
"index": 0
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"name": {
|
|
17
|
-
"type": "string",
|
|
18
|
-
"description": "Project name (NPM package scope)",
|
|
19
|
-
"x-prompt": "Project name (NPM package scope)?"
|
|
20
|
-
},
|
|
21
|
-
"package": {
|
|
22
|
-
"type": "string",
|
|
23
|
-
"description": "Package name",
|
|
24
|
-
"x-prompt": "Package name?",
|
|
25
|
-
"default": "sdk"
|
|
26
|
-
},
|
|
27
|
-
"description": {
|
|
28
|
-
"type": "string",
|
|
29
|
-
"alias": "package",
|
|
30
|
-
"description": "Project description",
|
|
31
|
-
"default": ""
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"required": [
|
|
35
|
-
"name",
|
|
36
|
-
"package",
|
|
37
|
-
"specPath"
|
|
38
|
-
],
|
|
39
|
-
"additionalProperties": true
|
|
40
|
-
}
|
/package/schematics/typescript/shell/templates/base/{.eslintignore → .eslintignore.template}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|