@crestal/nation-sdk 0.6.29 → 0.6.30
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 -2
- package/README.md +4 -4
- package/api.ts +423 -435
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +416 -428
- package/dist/api.js +12 -12
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/{AgentOutput.md → Agent.md} +3 -3
- package/docs/{AgentInput.md → AgentCreate.md} +4 -8
- package/docs/AgentGenerateRequest.md +1 -1
- 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,16 +6,16 @@ api.ts
|
|
|
6
6
|
base.ts
|
|
7
7
|
common.ts
|
|
8
8
|
configuration.ts
|
|
9
|
+
docs/Agent.md
|
|
9
10
|
docs/AgentApi.md
|
|
10
11
|
docs/AgentApiKeyResponse.md
|
|
11
12
|
docs/AgentAssetsResponse.md
|
|
12
13
|
docs/AgentAutonomous.md
|
|
14
|
+
docs/AgentCreate.md
|
|
13
15
|
docs/AgentExample.md
|
|
14
16
|
docs/AgentGenerateRequest.md
|
|
15
17
|
docs/AgentGenerateResponse.md
|
|
16
|
-
docs/AgentInput.md
|
|
17
18
|
docs/AgentListResponse.md
|
|
18
|
-
docs/AgentOutput.md
|
|
19
19
|
docs/AgentResponse.md
|
|
20
20
|
docs/AgentSortOption.md
|
|
21
21
|
docs/AgentStatisticsResponse.md
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @crestal/nation-sdk@0.6.
|
|
1
|
+
## @crestal/nation-sdk@0.6.30
|
|
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.30 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -98,15 +98,15 @@ Class | Method | HTTP request | Description
|
|
|
98
98
|
|
|
99
99
|
### Documentation For Models
|
|
100
100
|
|
|
101
|
+
- [Agent](docs/Agent.md)
|
|
101
102
|
- [AgentApiKeyResponse](docs/AgentApiKeyResponse.md)
|
|
102
103
|
- [AgentAssetsResponse](docs/AgentAssetsResponse.md)
|
|
103
104
|
- [AgentAutonomous](docs/AgentAutonomous.md)
|
|
105
|
+
- [AgentCreate](docs/AgentCreate.md)
|
|
104
106
|
- [AgentExample](docs/AgentExample.md)
|
|
105
107
|
- [AgentGenerateRequest](docs/AgentGenerateRequest.md)
|
|
106
108
|
- [AgentGenerateResponse](docs/AgentGenerateResponse.md)
|
|
107
|
-
- [AgentInput](docs/AgentInput.md)
|
|
108
109
|
- [AgentListResponse](docs/AgentListResponse.md)
|
|
109
|
-
- [AgentOutput](docs/AgentOutput.md)
|
|
110
110
|
- [AgentResponse](docs/AgentResponse.md)
|
|
111
111
|
- [AgentSortOption](docs/AgentSortOption.md)
|
|
112
112
|
- [AgentStatisticsResponse](docs/AgentStatisticsResponse.md)
|