@crestal/nation-sdk 0.6.24 → 0.6.26
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/.openapi-generator/FILES +2 -1
- package/.openapi-generator/VERSION +1 -1
- package/README.md +4 -3
- package/api.ts +2131 -109
- package/base.ts +25 -1
- package/common.ts +38 -1
- package/configuration.ts +18 -1
- package/dist/api.d.ts +2127 -112
- package/dist/api.js +163 -8
- package/dist/base.d.ts +25 -1
- package/dist/base.js +20 -1
- package/dist/common.d.ts +38 -1
- package/dist/common.js +38 -1
- package/dist/configuration.d.ts +18 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AgentGenerateRequest.md +3 -1
- package/docs/AgentGenerateResponse.md +2 -2
- package/docs/AgentInput.md +95 -0
- package/docs/{Agent.md → AgentOutput.md} +6 -6
- package/docs/AgentUpdate.md +3 -3
- package/docs/LLMModelInfoWithProviderName.md +2 -2
- package/docs/UserApi.md +2 -2
- package/index.ts +1 -1
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -6,7 +6,6 @@ api.ts
|
|
|
6
6
|
base.ts
|
|
7
7
|
common.ts
|
|
8
8
|
configuration.ts
|
|
9
|
-
docs/Agent.md
|
|
10
9
|
docs/AgentApi.md
|
|
11
10
|
docs/AgentApiKeyResponse.md
|
|
12
11
|
docs/AgentAssetsResponse.md
|
|
@@ -14,7 +13,9 @@ docs/AgentAutonomous.md
|
|
|
14
13
|
docs/AgentExample.md
|
|
15
14
|
docs/AgentGenerateRequest.md
|
|
16
15
|
docs/AgentGenerateResponse.md
|
|
16
|
+
docs/AgentInput.md
|
|
17
17
|
docs/AgentListResponse.md
|
|
18
|
+
docs/AgentOutput.md
|
|
18
19
|
docs/AgentResponse.md
|
|
19
20
|
docs/AgentSortOption.md
|
|
20
21
|
docs/AgentStatisticsResponse.md
|
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.14.0
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @crestal/nation-sdk@0.6.
|
|
1
|
+
## @crestal/nation-sdk@0.6.26
|
|
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 @crestal/nation-sdk@0.6.
|
|
39
|
+
npm install @crestal/nation-sdk@0.6.26 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -98,14 +98,15 @@ Class | Method | HTTP request | Description
|
|
|
98
98
|
|
|
99
99
|
### Documentation For Models
|
|
100
100
|
|
|
101
|
-
- [Agent](docs/Agent.md)
|
|
102
101
|
- [AgentApiKeyResponse](docs/AgentApiKeyResponse.md)
|
|
103
102
|
- [AgentAssetsResponse](docs/AgentAssetsResponse.md)
|
|
104
103
|
- [AgentAutonomous](docs/AgentAutonomous.md)
|
|
105
104
|
- [AgentExample](docs/AgentExample.md)
|
|
106
105
|
- [AgentGenerateRequest](docs/AgentGenerateRequest.md)
|
|
107
106
|
- [AgentGenerateResponse](docs/AgentGenerateResponse.md)
|
|
107
|
+
- [AgentInput](docs/AgentInput.md)
|
|
108
108
|
- [AgentListResponse](docs/AgentListResponse.md)
|
|
109
|
+
- [AgentOutput](docs/AgentOutput.md)
|
|
109
110
|
- [AgentResponse](docs/AgentResponse.md)
|
|
110
111
|
- [AgentSortOption](docs/AgentSortOption.md)
|
|
111
112
|
- [AgentStatisticsResponse](docs/AgentStatisticsResponse.md)
|