@cherryin/aigw-api-client 0.1.16 → 0.1.17

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @cherryin/aigw-api-client@0.1.16
1
+ ## @cherryin/aigw-api-client@0.1.17
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.16 --save
39
+ npm install @cherryin/aigw-api-client@0.1.17 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -604,6 +604,7 @@ export interface FrontendProviderModel {
604
604
  'capabilities'?: ModelCapabilities;
605
605
  'pricing'?: FrontendModelPricing;
606
606
  'extra_info'?: FrontendModelExtraInfo;
607
+ 'provider_id'?: string;
607
608
  'endpoints'?: Array<VersionedAPISchema>;
608
609
  }
609
610
  export interface FrontendProvidersResponse {
package/dist/api.d.ts CHANGED
@@ -595,6 +595,7 @@ export interface FrontendProviderModel {
595
595
  'capabilities'?: ModelCapabilities;
596
596
  'pricing'?: FrontendModelPricing;
597
597
  'extra_info'?: FrontendModelExtraInfo;
598
+ 'provider_id'?: string;
598
599
  'endpoints'?: Array<VersionedAPISchema>;
599
600
  }
600
601
  export interface FrontendProvidersResponse {
package/dist/esm/api.d.ts CHANGED
@@ -595,6 +595,7 @@ export interface FrontendProviderModel {
595
595
  'capabilities'?: ModelCapabilities;
596
596
  'pricing'?: FrontendModelPricing;
597
597
  'extra_info'?: FrontendModelExtraInfo;
598
+ 'provider_id'?: string;
598
599
  'endpoints'?: Array<VersionedAPISchema>;
599
600
  }
600
601
  export interface FrontendProvidersResponse {
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
22
22
  **capabilities** | [**ModelCapabilities**](ModelCapabilities.md) | | [optional] [default to undefined]
23
23
  **pricing** | [**FrontendModelPricing**](FrontendModelPricing.md) | | [optional] [default to undefined]
24
24
  **extra_info** | [**FrontendModelExtraInfo**](FrontendModelExtraInfo.md) | | [optional] [default to undefined]
25
+ **provider_id** | **string** | | [optional] [default to undefined]
25
26
  **endpoints** | [**Array&lt;VersionedAPISchema&gt;**](VersionedAPISchema.md) | | [optional] [default to undefined]
26
27
 
27
28
  ## Example
@@ -47,6 +48,7 @@ const instance: FrontendProviderModel = {
47
48
  capabilities,
48
49
  pricing,
49
50
  extra_info,
51
+ provider_id,
50
52
  endpoints,
51
53
  };
52
54
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cherryin/aigw-api-client",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "description": "OpenAPI client for @cherryin/aigw-api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {