@vc-shell/api-client-generator 1.0.341 → 1.1.0-alpha.10

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/CHANGELOG.md CHANGED
@@ -1,4 +1,22 @@
1
- ## [1.0.341](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.340...v1.0.341) (2025-03-11)
1
+ ## [v1.1.0-alpha.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.340...vv1.1.0-alpha.2) (2025-02-25)
2
+
3
+
4
+ ### Features
5
+
6
+ * partial redesign ([846e215](https://github.com/VirtoCommerce/vc-shell/commit/846e2152c6e48753622ca7cf3a71300323c99d51))
7
+
8
+
9
+ ### Reverts
10
+
11
+ * Revert "release: v1.1.0-alpha.2" ([80b0dc9](https://github.com/VirtoCommerce/vc-shell/commit/80b0dc99fdd318205f26bde81e6a49ab79214cb3))
12
+
13
+
14
+
15
+ # [1.1.0-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.327...v1.1.0-alpha.1) (2024-11-13)
16
+
17
+
18
+
19
+ ## [1.1.0-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.326...v1.1.0-alpha.1) (2024-11-13)
2
20
 
3
21
 
4
22
 
@@ -59,6 +77,7 @@
59
77
 
60
78
 
61
79
 
80
+
62
81
  ## [1.0.327](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.326...v1.0.327) (2024-11-12)
63
82
 
64
83
 
package/README.md CHANGED
@@ -1,83 +1,83 @@
1
- # Platform Manager REST Client
2
-
3
- # Generate API client
4
-
5
- This guide describes the process of generating an API client to access the VC Platform API from your custom application.
6
-
7
- !!! note
8
- Platform Manager REST Client offers generated REST API methods that make it easy to interact with the existing VirtoCommerce Platform API.
9
-
10
- ## Prerequisites
11
-
12
- * .NET Core 6.0, particularly if you are using MacOS or Linux.
13
-
14
- ## Generate TypeScript API clients
15
-
16
- To enable TypeScript API client generation in your project:
17
-
18
- 1. Add dependencies to your project:
19
-
20
- Using command
21
-
22
- ```bash
23
- yarn add @vc-shell/api-client-generator cross-env
24
- ```
25
- <br>
26
-
27
- `cross-env` runs scripts that set and use environment variables across platforms.
28
-
29
- Manually
30
-
31
- Add the dependencies to your project's **package.json**:
32
-
33
- ```json title="vc-app/package.json" linenums="1"
34
- {
35
- ...
36
- "devDependencies": {
37
- ...
38
- "@vc-shell/api-client-generator": "latest",
39
- "cross-env": "latest",
40
- ...
41
- }
42
- }
43
- ```
44
-
45
- 2. Configure client generation in your project. Inside your project's **package.json** file, add a `"generate-api-client"` command to the list of scripts:
46
-
47
- ```title="vc-app-extend/package.json" linenums="1"
48
- {
49
- "scripts": {
50
- ...
51
- "generate-api-client": cross-env api-client-generator --APP_PLATFORM_MODULES='[MarketplaceVendor,Catalog,Orders]' --APP_API_CLIENT_DIRECTORY=./src/api_client/
52
- }
53
- }
54
- ```
55
-
56
- The options are listed in the table below:
57
-
58
- | Options | Description | Example |
59
- |----------------------------- |---------------------------------------------------------------- |------------------------------------------------------------ |
60
- | `--APP_PLATFORM_MODULES` | Platform modules to generate API client.<br>{==string[]==} <br> Customize the `--APP_PLATFORM_MODULES` list<br>to match your project's requirements. | `--APP_PLATFORM_MODULES='[MarketplaceVendor,Orders,Catalog]'` |
61
- | `--APP_API_CLIENT_DIRECTORY` | Output directory for generated API clients. <br>{==string==} | `--APP_API_CLIENT_DIRECTORY=./src/api_client/` |
62
- | `--APP_PLATFORM_URL` | Platform URL to obtain client API configs. <br>{==string==} | `--APP_PLATFORM_URL=https://vcmp-dev.govirto.com/` |
63
- | `--APP_PACKAGE_NAME` | Package name for generated API clients. <br>{==string==} | `--APP_PACKAGE_NAME=vc-app-extend` |
64
- | `--APP_PACKAGE_VERSION` | Package version for generated API clients. <br>{==string==} | `--APP_PACKAGE_VERSION=1.0.0` |
65
- | `--APP_OUT_DIR` | Output directory for generated API clients. <br>{==string==} | `--APP_OUT_DIR=./src/api_client/` |
66
- | `--SKIP_BUILD` | Skip build step. <br>{==boolean==} | `--SKIP_BUILD=true` |
67
-
68
- 3. Configure Platform URL to ensure your project can access the platform's API configurations. Add the platform URL to your project's **.env** file:
69
-
70
- ```title="vc-app-extend/.env"
71
- APP_PLATFORM_URL=https://vcmp-dev.govirto.com/
72
- ```
73
-
74
- !!! note
75
- Alternatively, you can specify the Platform URL as a command option in the previous step when running the `"generate-api-client"` command.
76
-
77
- 4. Generate the API clients using the following command:
78
-
79
- ```
80
- yarn generate-api-client
81
- ```
82
-
83
- This command generates the required API clients for your custom application. Now you can effortlessly access the VC Platform API from your custom application using the generated API client.
1
+ # Platform Manager REST Client
2
+
3
+ # Generate API client
4
+
5
+ This guide describes the process of generating an API client to access the VC Platform API from your custom application.
6
+
7
+ !!! note
8
+ Platform Manager REST Client offers generated REST API methods that make it easy to interact with the existing VirtoCommerce Platform API.
9
+
10
+ ## Prerequisites
11
+
12
+ * .NET Core 6.0, particularly if you are using MacOS or Linux.
13
+
14
+ ## Generate TypeScript API clients
15
+
16
+ To enable TypeScript API client generation in your project:
17
+
18
+ 1. Add dependencies to your project:
19
+
20
+ Using command
21
+
22
+ ```bash
23
+ yarn add @vc-shell/api-client-generator cross-env
24
+ ```
25
+ <br>
26
+
27
+ `cross-env` runs scripts that set and use environment variables across platforms.
28
+
29
+ Manually
30
+
31
+ Add the dependencies to your project's **package.json**:
32
+
33
+ ```json title="vc-app/package.json" linenums="1"
34
+ {
35
+ ...
36
+ "devDependencies": {
37
+ ...
38
+ "@vc-shell/api-client-generator": "latest",
39
+ "cross-env": "latest",
40
+ ...
41
+ }
42
+ }
43
+ ```
44
+
45
+ 2. Configure client generation in your project. Inside your project's **package.json** file, add a `"generate-api-client"` command to the list of scripts:
46
+
47
+ ```title="vc-app-extend/package.json" linenums="1"
48
+ {
49
+ "scripts": {
50
+ ...
51
+ "generate-api-client": cross-env api-client-generator --APP_PLATFORM_MODULES='[MarketplaceVendor,Catalog,Orders]' --APP_API_CLIENT_DIRECTORY=./src/api_client/
52
+ }
53
+ }
54
+ ```
55
+
56
+ The options are listed in the table below:
57
+
58
+ | Options | Description | Example |
59
+ |----------------------------- |---------------------------------------------------------------- |------------------------------------------------------------ |
60
+ | `--APP_PLATFORM_MODULES` | Platform modules to generate API client.<br>{==string[]==} <br> Customize the `--APP_PLATFORM_MODULES` list<br>to match your project's requirements. | `--APP_PLATFORM_MODULES='[MarketplaceVendor,Orders,Catalog]'` |
61
+ | `--APP_API_CLIENT_DIRECTORY` | Output directory for generated API clients. <br>{==string==} | `--APP_API_CLIENT_DIRECTORY=./src/api_client/` |
62
+ | `--APP_PLATFORM_URL` | Platform URL to obtain client API configs. <br>{==string==} | `--APP_PLATFORM_URL=https://vcmp-dev.govirto.com/` |
63
+ | `--APP_PACKAGE_NAME` | Package name for generated API clients. <br>{==string==} | `--APP_PACKAGE_NAME=vc-app-extend` |
64
+ | `--APP_PACKAGE_VERSION` | Package version for generated API clients. <br>{==string==} | `--APP_PACKAGE_VERSION=1.0.0` |
65
+ | `--APP_OUT_DIR` | Output directory for generated API clients. <br>{==string==} | `--APP_OUT_DIR=./src/api_client/` |
66
+ | `--SKIP_BUILD` | Skip build step. <br>{==boolean==} | `--SKIP_BUILD=true` |
67
+
68
+ 3. Configure Platform URL to ensure your project can access the platform's API configurations. Add the platform URL to your project's **.env** file:
69
+
70
+ ```title="vc-app-extend/.env"
71
+ APP_PLATFORM_URL=https://vcmp-dev.govirto.com/
72
+ ```
73
+
74
+ !!! note
75
+ Alternatively, you can specify the Platform URL as a command option in the previous step when running the `"generate-api-client"` command.
76
+
77
+ 4. Generate the API clients using the following command:
78
+
79
+ ```
80
+ yarn generate-api-client
81
+ ```
82
+
83
+ This command generates the required API clients for your custom application. Now you can effortlessly access the VC Platform API from your custom application using the generated API client.
@@ -1,21 +1,21 @@
1
- /* eslint-disable */
2
- export class AuthApiBase {
3
- authToken = "";
4
- protected constructor() {}
5
-
6
- // Enforce always return empty string as baseUrl
7
- getBaseUrl(defaultUrl: string, baseUrl: string) {
8
- return "";
9
- }
10
-
11
- setAuthToken(token: string) {
12
- this.authToken = token;
13
- }
14
-
15
- protected transformOptions(options: any): Promise<any> {
16
- if (this.authToken) {
17
- options.headers["authorization"] = `Bearer ${this.authToken}`;
18
- }
19
- return Promise.resolve(options);
20
- }
21
- }
1
+ /* eslint-disable */
2
+ export class AuthApiBase {
3
+ authToken = "";
4
+ protected constructor() {}
5
+
6
+ // Enforce always return empty string as baseUrl
7
+ getBaseUrl(defaultUrl: string, baseUrl: string) {
8
+ return "";
9
+ }
10
+
11
+ setAuthToken(token: string) {
12
+ this.authToken = token;
13
+ }
14
+
15
+ protected transformOptions(options: any): Promise<any> {
16
+ if (this.authToken) {
17
+ options.headers["authorization"] = `Bearer ${this.authToken}`;
18
+ }
19
+ return Promise.resolve(options);
20
+ }
21
+ }
@@ -1,76 +1,76 @@
1
- {
2
- "runtime": "Default",
3
- "defaultVariables": null,
4
- "documentGenerator": {
5
- "fromDocument": {
6
- "url": "$(APP_PLATFORM_URL)docs/$(APP_PLATFORM_MODULE)/swagger.json",
7
- "output": null,
8
- "newLineBehavior": "Auto"
9
- }
10
- },
11
- "codeGenerators": {
12
- "openApiToTypeScriptClient": {
13
- "className": "{controller}Client",
14
- "moduleName": "",
15
- "namespace": "",
16
- "typeScriptVersion": 4.3,
17
- "template": "Fetch",
18
- "promiseType": "Promise",
19
- "httpClass": "HttpClient",
20
- "withCredentials": false,
21
- "useSingletonProvider": false,
22
- "injectionTokenType": "OpaqueToken",
23
- "rxJsVersion": 6.0,
24
- "dateTimeType": "Date",
25
- "nullValue": "Undefined",
26
- "generateClientClasses": true,
27
- "generateClientInterfaces": false,
28
- "generateOptionalParameters": true,
29
- "exportTypes": true,
30
- "wrapDtoExceptions": false,
31
- "exceptionClass": "ApiException",
32
- "clientBaseClass": "AuthApiBase",
33
- "wrapResponses": false,
34
- "wrapResponseMethods": [],
35
- "generateResponseClasses": true,
36
- "responseClass": "SwaggerResponse",
37
- "protectedMethods": [],
38
- "configurationClass": "",
39
- "useTransformOptionsMethod": true,
40
- "useTransformResultMethod": false,
41
- "generateDtoTypes": true,
42
- "operationGenerationMode": "MultipleClientsFromOperationId",
43
- "markOptionalProperties": true,
44
- "generateCloneMethod": false,
45
- "typeStyle": "Class",
46
- "enumStyle": "Enum",
47
- "useLeafType": false,
48
- "classTypes": [],
49
- "extendedClasses": [],
50
- "extensionCode": "$(APP_AUTH_API_BASE_PATH)",
51
- "generateDefaultValues": true,
52
- "excludedTypeNames": [],
53
- "excludedParameterNames": [],
54
- "handleReferences": false,
55
- "generateTypeCheckFunctions": false,
56
- "generateConstructorInterface": true,
57
- "convertConstructorInterfaceData": false,
58
- "importRequiredTypes": true,
59
- "useGetBaseUrlMethod": true,
60
- "baseUrlTokenName": "API_BASE_URL",
61
- "queryNullValue": "",
62
- "useAbortSignal": false,
63
- "inlineNamedDictionaries": false,
64
- "inlineNamedAny": false,
65
- "includeHttpContext": false,
66
- "templateDirectory": "$(APP_TEMPLATE_DIRECTORY)",
67
- "typeNameGeneratorType": null,
68
- "propertyNameGeneratorType": null,
69
- "enumNameGeneratorType": null,
70
- "serviceHost": null,
71
- "serviceSchemes": null,
72
- "output": "$(APP_API_CLIENT_PATH)",
73
- "newLineBehavior": "Auto"
74
- }
75
- }
76
- }
1
+ {
2
+ "runtime": "Default",
3
+ "defaultVariables": null,
4
+ "documentGenerator": {
5
+ "fromDocument": {
6
+ "url": "$(APP_PLATFORM_URL)docs/$(APP_PLATFORM_MODULE)/swagger.json",
7
+ "output": null,
8
+ "newLineBehavior": "Auto"
9
+ }
10
+ },
11
+ "codeGenerators": {
12
+ "openApiToTypeScriptClient": {
13
+ "className": "{controller}Client",
14
+ "moduleName": "",
15
+ "namespace": "",
16
+ "typeScriptVersion": 4.3,
17
+ "template": "Fetch",
18
+ "promiseType": "Promise",
19
+ "httpClass": "HttpClient",
20
+ "withCredentials": false,
21
+ "useSingletonProvider": false,
22
+ "injectionTokenType": "OpaqueToken",
23
+ "rxJsVersion": 6.0,
24
+ "dateTimeType": "Date",
25
+ "nullValue": "Undefined",
26
+ "generateClientClasses": true,
27
+ "generateClientInterfaces": false,
28
+ "generateOptionalParameters": true,
29
+ "exportTypes": true,
30
+ "wrapDtoExceptions": false,
31
+ "exceptionClass": "ApiException",
32
+ "clientBaseClass": "AuthApiBase",
33
+ "wrapResponses": false,
34
+ "wrapResponseMethods": [],
35
+ "generateResponseClasses": true,
36
+ "responseClass": "SwaggerResponse",
37
+ "protectedMethods": [],
38
+ "configurationClass": "",
39
+ "useTransformOptionsMethod": true,
40
+ "useTransformResultMethod": false,
41
+ "generateDtoTypes": true,
42
+ "operationGenerationMode": "MultipleClientsFromOperationId",
43
+ "markOptionalProperties": true,
44
+ "generateCloneMethod": false,
45
+ "typeStyle": "Class",
46
+ "enumStyle": "Enum",
47
+ "useLeafType": false,
48
+ "classTypes": [],
49
+ "extendedClasses": [],
50
+ "extensionCode": "$(APP_AUTH_API_BASE_PATH)",
51
+ "generateDefaultValues": true,
52
+ "excludedTypeNames": [],
53
+ "excludedParameterNames": [],
54
+ "handleReferences": false,
55
+ "generateTypeCheckFunctions": false,
56
+ "generateConstructorInterface": true,
57
+ "convertConstructorInterfaceData": false,
58
+ "importRequiredTypes": true,
59
+ "useGetBaseUrlMethod": true,
60
+ "baseUrlTokenName": "API_BASE_URL",
61
+ "queryNullValue": "",
62
+ "useAbortSignal": false,
63
+ "inlineNamedDictionaries": false,
64
+ "inlineNamedAny": false,
65
+ "includeHttpContext": false,
66
+ "templateDirectory": "$(APP_TEMPLATE_DIRECTORY)",
67
+ "typeNameGeneratorType": null,
68
+ "propertyNameGeneratorType": null,
69
+ "enumNameGeneratorType": null,
70
+ "serviceHost": null,
71
+ "serviceSchemes": null,
72
+ "output": "$(APP_API_CLIENT_PATH)",
73
+ "newLineBehavior": "Auto"
74
+ }
75
+ }
76
+ }
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- // ReSharper disable InconsistentNaming
4
- // @ts-nocheck
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ // ReSharper disable InconsistentNaming
4
+ // @ts-nocheck
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vc-shell/api-client-generator",
3
3
  "description": "Tool for API clients generation",
4
- "version": "1.0.341",
4
+ "version": "1.1.0-alpha.10",
5
5
  "type": "module",
6
6
  "bin": "./dist/api-client-generator.js",
7
7
  "files": [
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "devDependencies": {
15
15
  "@types/cross-spawn": "^6.0.6",
16
- "@vc-shell/ts-config": "^1.0.341",
16
+ "@vc-shell/ts-config": "^1.1.0-alpha.10",
17
17
  "typescript": "~5.3.3"
18
18
  },
19
19
  "dependencies": {
@@ -26,5 +26,6 @@
26
26
  "publishConfig": {
27
27
  "access": "public",
28
28
  "registry": "https://registry.npmjs.org/"
29
- }
29
+ },
30
+ "stableVersion": "1.0.340"
30
31
  }
@@ -1,21 +1,21 @@
1
- /* eslint-disable */
2
- export class AuthApiBase {
3
- authToken = "";
4
- protected constructor() {}
5
-
6
- // Enforce always return empty string as baseUrl
7
- getBaseUrl(defaultUrl: string, baseUrl: string) {
8
- return "";
9
- }
10
-
11
- setAuthToken(token: string) {
12
- this.authToken = token;
13
- }
14
-
15
- protected transformOptions(options: any): Promise<any> {
16
- if (this.authToken) {
17
- options.headers["authorization"] = `Bearer ${this.authToken}`;
18
- }
19
- return Promise.resolve(options);
20
- }
21
- }
1
+ /* eslint-disable */
2
+ export class AuthApiBase {
3
+ authToken = "";
4
+ protected constructor() {}
5
+
6
+ // Enforce always return empty string as baseUrl
7
+ getBaseUrl(defaultUrl: string, baseUrl: string) {
8
+ return "";
9
+ }
10
+
11
+ setAuthToken(token: string) {
12
+ this.authToken = token;
13
+ }
14
+
15
+ protected transformOptions(options: any): Promise<any> {
16
+ if (this.authToken) {
17
+ options.headers["authorization"] = `Bearer ${this.authToken}`;
18
+ }
19
+ return Promise.resolve(options);
20
+ }
21
+ }
@@ -1,76 +1,76 @@
1
- {
2
- "runtime": "Default",
3
- "defaultVariables": null,
4
- "documentGenerator": {
5
- "fromDocument": {
6
- "url": "$(APP_PLATFORM_URL)docs/$(APP_PLATFORM_MODULE)/swagger.json",
7
- "output": null,
8
- "newLineBehavior": "Auto"
9
- }
10
- },
11
- "codeGenerators": {
12
- "openApiToTypeScriptClient": {
13
- "className": "{controller}Client",
14
- "moduleName": "",
15
- "namespace": "",
16
- "typeScriptVersion": 4.3,
17
- "template": "Fetch",
18
- "promiseType": "Promise",
19
- "httpClass": "HttpClient",
20
- "withCredentials": false,
21
- "useSingletonProvider": false,
22
- "injectionTokenType": "OpaqueToken",
23
- "rxJsVersion": 6.0,
24
- "dateTimeType": "Date",
25
- "nullValue": "Undefined",
26
- "generateClientClasses": true,
27
- "generateClientInterfaces": false,
28
- "generateOptionalParameters": true,
29
- "exportTypes": true,
30
- "wrapDtoExceptions": false,
31
- "exceptionClass": "ApiException",
32
- "clientBaseClass": "AuthApiBase",
33
- "wrapResponses": false,
34
- "wrapResponseMethods": [],
35
- "generateResponseClasses": true,
36
- "responseClass": "SwaggerResponse",
37
- "protectedMethods": [],
38
- "configurationClass": "",
39
- "useTransformOptionsMethod": true,
40
- "useTransformResultMethod": false,
41
- "generateDtoTypes": true,
42
- "operationGenerationMode": "MultipleClientsFromOperationId",
43
- "markOptionalProperties": true,
44
- "generateCloneMethod": false,
45
- "typeStyle": "Class",
46
- "enumStyle": "Enum",
47
- "useLeafType": false,
48
- "classTypes": [],
49
- "extendedClasses": [],
50
- "extensionCode": "$(APP_AUTH_API_BASE_PATH)",
51
- "generateDefaultValues": true,
52
- "excludedTypeNames": [],
53
- "excludedParameterNames": [],
54
- "handleReferences": false,
55
- "generateTypeCheckFunctions": false,
56
- "generateConstructorInterface": true,
57
- "convertConstructorInterfaceData": false,
58
- "importRequiredTypes": true,
59
- "useGetBaseUrlMethod": true,
60
- "baseUrlTokenName": "API_BASE_URL",
61
- "queryNullValue": "",
62
- "useAbortSignal": false,
63
- "inlineNamedDictionaries": false,
64
- "inlineNamedAny": false,
65
- "includeHttpContext": false,
66
- "templateDirectory": "$(APP_TEMPLATE_DIRECTORY)",
67
- "typeNameGeneratorType": null,
68
- "propertyNameGeneratorType": null,
69
- "enumNameGeneratorType": null,
70
- "serviceHost": null,
71
- "serviceSchemes": null,
72
- "output": "$(APP_API_CLIENT_PATH)",
73
- "newLineBehavior": "Auto"
74
- }
75
- }
76
- }
1
+ {
2
+ "runtime": "Default",
3
+ "defaultVariables": null,
4
+ "documentGenerator": {
5
+ "fromDocument": {
6
+ "url": "$(APP_PLATFORM_URL)docs/$(APP_PLATFORM_MODULE)/swagger.json",
7
+ "output": null,
8
+ "newLineBehavior": "Auto"
9
+ }
10
+ },
11
+ "codeGenerators": {
12
+ "openApiToTypeScriptClient": {
13
+ "className": "{controller}Client",
14
+ "moduleName": "",
15
+ "namespace": "",
16
+ "typeScriptVersion": 4.3,
17
+ "template": "Fetch",
18
+ "promiseType": "Promise",
19
+ "httpClass": "HttpClient",
20
+ "withCredentials": false,
21
+ "useSingletonProvider": false,
22
+ "injectionTokenType": "OpaqueToken",
23
+ "rxJsVersion": 6.0,
24
+ "dateTimeType": "Date",
25
+ "nullValue": "Undefined",
26
+ "generateClientClasses": true,
27
+ "generateClientInterfaces": false,
28
+ "generateOptionalParameters": true,
29
+ "exportTypes": true,
30
+ "wrapDtoExceptions": false,
31
+ "exceptionClass": "ApiException",
32
+ "clientBaseClass": "AuthApiBase",
33
+ "wrapResponses": false,
34
+ "wrapResponseMethods": [],
35
+ "generateResponseClasses": true,
36
+ "responseClass": "SwaggerResponse",
37
+ "protectedMethods": [],
38
+ "configurationClass": "",
39
+ "useTransformOptionsMethod": true,
40
+ "useTransformResultMethod": false,
41
+ "generateDtoTypes": true,
42
+ "operationGenerationMode": "MultipleClientsFromOperationId",
43
+ "markOptionalProperties": true,
44
+ "generateCloneMethod": false,
45
+ "typeStyle": "Class",
46
+ "enumStyle": "Enum",
47
+ "useLeafType": false,
48
+ "classTypes": [],
49
+ "extendedClasses": [],
50
+ "extensionCode": "$(APP_AUTH_API_BASE_PATH)",
51
+ "generateDefaultValues": true,
52
+ "excludedTypeNames": [],
53
+ "excludedParameterNames": [],
54
+ "handleReferences": false,
55
+ "generateTypeCheckFunctions": false,
56
+ "generateConstructorInterface": true,
57
+ "convertConstructorInterfaceData": false,
58
+ "importRequiredTypes": true,
59
+ "useGetBaseUrlMethod": true,
60
+ "baseUrlTokenName": "API_BASE_URL",
61
+ "queryNullValue": "",
62
+ "useAbortSignal": false,
63
+ "inlineNamedDictionaries": false,
64
+ "inlineNamedAny": false,
65
+ "includeHttpContext": false,
66
+ "templateDirectory": "$(APP_TEMPLATE_DIRECTORY)",
67
+ "typeNameGeneratorType": null,
68
+ "propertyNameGeneratorType": null,
69
+ "enumNameGeneratorType": null,
70
+ "serviceHost": null,
71
+ "serviceSchemes": null,
72
+ "output": "$(APP_API_CLIENT_PATH)",
73
+ "newLineBehavior": "Auto"
74
+ }
75
+ }
76
+ }
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- // ReSharper disable InconsistentNaming
4
- // @ts-nocheck
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ // ReSharper disable InconsistentNaming
4
+ // @ts-nocheck