@cherryin/aigw-api-client 0.1.19 → 0.1.21
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 +2 -2
- package/api.ts +1 -0
- package/dist/api.d.ts +1 -0
- package/dist/esm/api.d.ts +1 -0
- package/docs/AdminProviderCreateRequest.md +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @cherryin/aigw-api-client@0.1.
|
|
1
|
+
## @cherryin/aigw-api-client@0.1.21
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @cherryin/aigw-api-client@0.1.
|
|
39
|
+
npm install @cherryin/aigw-api-client@0.1.21 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -274,6 +274,7 @@ export interface AdminProviderCreateRequest {
|
|
|
274
274
|
'provider_type'?: string;
|
|
275
275
|
'is_sync'?: boolean;
|
|
276
276
|
'endpoints'?: Array<VersionedAPISchema>;
|
|
277
|
+
'official_provider_id'?: string;
|
|
277
278
|
}
|
|
278
279
|
export interface AdminProviderCreateResponse {
|
|
279
280
|
'code'?: string;
|
package/dist/api.d.ts
CHANGED
|
@@ -266,6 +266,7 @@ export interface AdminProviderCreateRequest {
|
|
|
266
266
|
'provider_type'?: string;
|
|
267
267
|
'is_sync'?: boolean;
|
|
268
268
|
'endpoints'?: Array<VersionedAPISchema>;
|
|
269
|
+
'official_provider_id'?: string;
|
|
269
270
|
}
|
|
270
271
|
export interface AdminProviderCreateResponse {
|
|
271
272
|
'code'?: string;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -266,6 +266,7 @@ export interface AdminProviderCreateRequest {
|
|
|
266
266
|
'provider_type'?: string;
|
|
267
267
|
'is_sync'?: boolean;
|
|
268
268
|
'endpoints'?: Array<VersionedAPISchema>;
|
|
269
|
+
'official_provider_id'?: string;
|
|
269
270
|
}
|
|
270
271
|
export interface AdminProviderCreateResponse {
|
|
271
272
|
'code'?: string;
|
|
@@ -17,6 +17,7 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**provider_type** | **string** | | [optional] [default to undefined]
|
|
18
18
|
**is_sync** | **boolean** | | [optional] [default to undefined]
|
|
19
19
|
**endpoints** | [**Array<VersionedAPISchema>**](VersionedAPISchema.md) | | [optional] [default to undefined]
|
|
20
|
+
**official_provider_id** | **string** | | [optional] [default to undefined]
|
|
20
21
|
|
|
21
22
|
## Example
|
|
22
23
|
|
|
@@ -36,6 +37,7 @@ const instance: AdminProviderCreateRequest = {
|
|
|
36
37
|
provider_type,
|
|
37
38
|
is_sync,
|
|
38
39
|
endpoints,
|
|
40
|
+
official_provider_id,
|
|
39
41
|
};
|
|
40
42
|
```
|
|
41
43
|
|