@cherryin/aigw-api-client 0.1.15 → 0.1.16
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 -1
- package/dist/api.d.ts +1 -1
- package/dist/esm/api.d.ts +1 -1
- package/docs/FrontendProviderModel.md +2 -2
- 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.16
|
|
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.16 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -604,7 +604,7 @@ export interface FrontendProviderModel {
|
|
|
604
604
|
'capabilities'?: ModelCapabilities;
|
|
605
605
|
'pricing'?: FrontendModelPricing;
|
|
606
606
|
'extra_info'?: FrontendModelExtraInfo;
|
|
607
|
-
'
|
|
607
|
+
'endpoints'?: Array<VersionedAPISchema>;
|
|
608
608
|
}
|
|
609
609
|
export interface FrontendProvidersResponse {
|
|
610
610
|
'code'?: string;
|
package/dist/api.d.ts
CHANGED
|
@@ -595,7 +595,7 @@ export interface FrontendProviderModel {
|
|
|
595
595
|
'capabilities'?: ModelCapabilities;
|
|
596
596
|
'pricing'?: FrontendModelPricing;
|
|
597
597
|
'extra_info'?: FrontendModelExtraInfo;
|
|
598
|
-
'
|
|
598
|
+
'endpoints'?: Array<VersionedAPISchema>;
|
|
599
599
|
}
|
|
600
600
|
export interface FrontendProvidersResponse {
|
|
601
601
|
'code'?: string;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -595,7 +595,7 @@ export interface FrontendProviderModel {
|
|
|
595
595
|
'capabilities'?: ModelCapabilities;
|
|
596
596
|
'pricing'?: FrontendModelPricing;
|
|
597
597
|
'extra_info'?: FrontendModelExtraInfo;
|
|
598
|
-
'
|
|
598
|
+
'endpoints'?: Array<VersionedAPISchema>;
|
|
599
599
|
}
|
|
600
600
|
export interface FrontendProvidersResponse {
|
|
601
601
|
'code'?: string;
|
|
@@ -22,7 +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
|
-
**
|
|
25
|
+
**endpoints** | [**Array<VersionedAPISchema>**](VersionedAPISchema.md) | | [optional] [default to undefined]
|
|
26
26
|
|
|
27
27
|
## Example
|
|
28
28
|
|
|
@@ -47,7 +47,7 @@ const instance: FrontendProviderModel = {
|
|
|
47
47
|
capabilities,
|
|
48
48
|
pricing,
|
|
49
49
|
extra_info,
|
|
50
|
-
|
|
50
|
+
endpoints,
|
|
51
51
|
};
|
|
52
52
|
```
|
|
53
53
|
|