@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 +2 -2
- package/api.ts +1 -0
- package/dist/api.d.ts +1 -0
- package/dist/esm/api.d.ts +1 -0
- package/docs/FrontendProviderModel.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.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.
|
|
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<VersionedAPISchema>**](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
|
```
|