@cherryin/aigw-api-client 0.1.15 → 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
|
@@ -605,6 +605,7 @@ export interface FrontendProviderModel {
|
|
|
605
605
|
'pricing'?: FrontendModelPricing;
|
|
606
606
|
'extra_info'?: FrontendModelExtraInfo;
|
|
607
607
|
'provider_id'?: string;
|
|
608
|
+
'endpoints'?: Array<VersionedAPISchema>;
|
|
608
609
|
}
|
|
609
610
|
export interface FrontendProvidersResponse {
|
|
610
611
|
'code'?: string;
|
package/dist/api.d.ts
CHANGED
|
@@ -596,6 +596,7 @@ export interface FrontendProviderModel {
|
|
|
596
596
|
'pricing'?: FrontendModelPricing;
|
|
597
597
|
'extra_info'?: FrontendModelExtraInfo;
|
|
598
598
|
'provider_id'?: string;
|
|
599
|
+
'endpoints'?: Array<VersionedAPISchema>;
|
|
599
600
|
}
|
|
600
601
|
export interface FrontendProvidersResponse {
|
|
601
602
|
'code'?: string;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -596,6 +596,7 @@ export interface FrontendProviderModel {
|
|
|
596
596
|
'pricing'?: FrontendModelPricing;
|
|
597
597
|
'extra_info'?: FrontendModelExtraInfo;
|
|
598
598
|
'provider_id'?: string;
|
|
599
|
+
'endpoints'?: Array<VersionedAPISchema>;
|
|
599
600
|
}
|
|
600
601
|
export interface FrontendProvidersResponse {
|
|
601
602
|
'code'?: string;
|
|
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
|
|
|
23
23
|
**pricing** | [**FrontendModelPricing**](FrontendModelPricing.md) | | [optional] [default to undefined]
|
|
24
24
|
**extra_info** | [**FrontendModelExtraInfo**](FrontendModelExtraInfo.md) | | [optional] [default to undefined]
|
|
25
25
|
**provider_id** | **string** | | [optional] [default to undefined]
|
|
26
|
+
**endpoints** | [**Array<VersionedAPISchema>**](VersionedAPISchema.md) | | [optional] [default to undefined]
|
|
26
27
|
|
|
27
28
|
## Example
|
|
28
29
|
|
|
@@ -48,6 +49,7 @@ const instance: FrontendProviderModel = {
|
|
|
48
49
|
pricing,
|
|
49
50
|
extra_info,
|
|
50
51
|
provider_id,
|
|
52
|
+
endpoints,
|
|
51
53
|
};
|
|
52
54
|
```
|
|
53
55
|
|