@crestal/nation-sdk 0.8.93 → 0.8.97
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 +6 -3
- package/.openapi-generator/VERSION +1 -1
- package/README.md +8 -5
- package/api.ts +233 -155
- package/base.ts +1 -1
- package/common.ts +16 -3
- package/configuration.ts +1 -1
- package/dist/api.d.ts +148 -68
- package/dist/api.js +122 -21
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +7 -1
- package/dist/common.js +18 -4
- 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/Agent.md +15 -5
- package/docs/AgentApi.md +2 -2
- package/docs/{AgentAutonomous.md → AgentAutonomousInput.md} +9 -3
- package/docs/AgentAutonomousOutput.md +39 -0
- package/docs/AgentAutonomousStatus.md +13 -0
- package/docs/AgentDraft.md +7 -5
- package/docs/AgentResponse.md +15 -5
- package/docs/AgentUpdate.md +13 -5
- package/docs/AgentUserInput.md +7 -5
- package/docs/AgentVisibility.md +13 -0
- package/docs/AuthorType.md +6 -4
- package/docs/ChatApi.md +6 -6
- package/docs/{AppManagerRouterChatMessagesResponse.md → ChatMessagesResponse.md} +3 -3
- package/docs/LLMModelInfoWithProviderName.md +2 -2
- package/docs/{ValidationErrorLocInner.md → LocationInner.md} +3 -3
- package/docs/ManagerApi.md +2 -2
- package/docs/User.md +2 -0
- package/docs/ValidationError.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -10,7 +10,9 @@ docs/Agent.md
|
|
|
10
10
|
docs/AgentApi.md
|
|
11
11
|
docs/AgentApiKeyResponse.md
|
|
12
12
|
docs/AgentAssetsResponse.md
|
|
13
|
-
docs/
|
|
13
|
+
docs/AgentAutonomousInput.md
|
|
14
|
+
docs/AgentAutonomousOutput.md
|
|
15
|
+
docs/AgentAutonomousStatus.md
|
|
14
16
|
docs/AgentDeployRequest.md
|
|
15
17
|
docs/AgentDraft.md
|
|
16
18
|
docs/AgentExample.md
|
|
@@ -23,7 +25,7 @@ docs/AgentState.md
|
|
|
23
25
|
docs/AgentStatistics.md
|
|
24
26
|
docs/AgentUpdate.md
|
|
25
27
|
docs/AgentUserInput.md
|
|
26
|
-
docs/
|
|
28
|
+
docs/AgentVisibility.md
|
|
27
29
|
docs/Asset.md
|
|
28
30
|
docs/AuthorType.md
|
|
29
31
|
docs/Chat.md
|
|
@@ -33,6 +35,7 @@ docs/ChatMessageAttachment.md
|
|
|
33
35
|
docs/ChatMessageAttachmentType.md
|
|
34
36
|
docs/ChatMessageRequest.md
|
|
35
37
|
docs/ChatMessageSkillCall.md
|
|
38
|
+
docs/ChatMessagesResponse.md
|
|
36
39
|
docs/ChatUpdateRequest.md
|
|
37
40
|
docs/CreditAccount.md
|
|
38
41
|
docs/CreditApi.md
|
|
@@ -52,6 +55,7 @@ docs/HTTPValidationError.md
|
|
|
52
55
|
docs/HealthApi.md
|
|
53
56
|
docs/LLMModelInfoWithProviderName.md
|
|
54
57
|
docs/LLMProvider.md
|
|
58
|
+
docs/LocationInner.md
|
|
55
59
|
docs/ManagerApi.md
|
|
56
60
|
docs/ManagerMessageRequest.md
|
|
57
61
|
docs/MetadataApi.md
|
|
@@ -69,7 +73,6 @@ docs/User.md
|
|
|
69
73
|
docs/UserAgentListResponse.md
|
|
70
74
|
docs/UserApi.md
|
|
71
75
|
docs/ValidationError.md
|
|
72
|
-
docs/ValidationErrorLocInner.md
|
|
73
76
|
docs/X402Api.md
|
|
74
77
|
docs/X402TopupResponse.md
|
|
75
78
|
git_push.sh
|
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.19.0
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @crestal/nation-sdk@0.8.
|
|
1
|
+
## @crestal/nation-sdk@0.8.97
|
|
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.8.
|
|
39
|
+
npm install @crestal/nation-sdk@0.8.97 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -122,7 +122,9 @@ Class | Method | HTTP request | Description
|
|
|
122
122
|
- [Agent](docs/Agent.md)
|
|
123
123
|
- [AgentApiKeyResponse](docs/AgentApiKeyResponse.md)
|
|
124
124
|
- [AgentAssetsResponse](docs/AgentAssetsResponse.md)
|
|
125
|
-
- [
|
|
125
|
+
- [AgentAutonomousInput](docs/AgentAutonomousInput.md)
|
|
126
|
+
- [AgentAutonomousOutput](docs/AgentAutonomousOutput.md)
|
|
127
|
+
- [AgentAutonomousStatus](docs/AgentAutonomousStatus.md)
|
|
126
128
|
- [AgentDeployRequest](docs/AgentDeployRequest.md)
|
|
127
129
|
- [AgentDraft](docs/AgentDraft.md)
|
|
128
130
|
- [AgentExample](docs/AgentExample.md)
|
|
@@ -135,7 +137,7 @@ Class | Method | HTTP request | Description
|
|
|
135
137
|
- [AgentStatistics](docs/AgentStatistics.md)
|
|
136
138
|
- [AgentUpdate](docs/AgentUpdate.md)
|
|
137
139
|
- [AgentUserInput](docs/AgentUserInput.md)
|
|
138
|
-
- [
|
|
140
|
+
- [AgentVisibility](docs/AgentVisibility.md)
|
|
139
141
|
- [Asset](docs/Asset.md)
|
|
140
142
|
- [AuthorType](docs/AuthorType.md)
|
|
141
143
|
- [Chat](docs/Chat.md)
|
|
@@ -144,6 +146,7 @@ Class | Method | HTTP request | Description
|
|
|
144
146
|
- [ChatMessageAttachmentType](docs/ChatMessageAttachmentType.md)
|
|
145
147
|
- [ChatMessageRequest](docs/ChatMessageRequest.md)
|
|
146
148
|
- [ChatMessageSkillCall](docs/ChatMessageSkillCall.md)
|
|
149
|
+
- [ChatMessagesResponse](docs/ChatMessagesResponse.md)
|
|
147
150
|
- [ChatUpdateRequest](docs/ChatUpdateRequest.md)
|
|
148
151
|
- [CreditAccount](docs/CreditAccount.md)
|
|
149
152
|
- [CreditDebit](docs/CreditDebit.md)
|
|
@@ -160,6 +163,7 @@ Class | Method | HTTP request | Description
|
|
|
160
163
|
- [HTTPValidationError](docs/HTTPValidationError.md)
|
|
161
164
|
- [LLMModelInfoWithProviderName](docs/LLMModelInfoWithProviderName.md)
|
|
162
165
|
- [LLMProvider](docs/LLMProvider.md)
|
|
166
|
+
- [LocationInner](docs/LocationInner.md)
|
|
163
167
|
- [ManagerMessageRequest](docs/ManagerMessageRequest.md)
|
|
164
168
|
- [OwnerType](docs/OwnerType.md)
|
|
165
169
|
- [Skill](docs/Skill.md)
|
|
@@ -173,7 +177,6 @@ Class | Method | HTTP request | Description
|
|
|
173
177
|
- [User](docs/User.md)
|
|
174
178
|
- [UserAgentListResponse](docs/UserAgentListResponse.md)
|
|
175
179
|
- [ValidationError](docs/ValidationError.md)
|
|
176
|
-
- [ValidationErrorLocInner](docs/ValidationErrorLocInner.md)
|
|
177
180
|
- [X402TopupResponse](docs/X402TopupResponse.md)
|
|
178
181
|
|
|
179
182
|
|