@crestal/nation-sdk 0.8.29 → 0.8.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/README.md +2 -2
- package/api.ts +1 -31
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1 -31
- package/dist/api.js +1 -31
- 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/LLMModelInfoWithProviderNameInput.md +2 -2
- package/docs/LLMModelInfoWithProviderNameOutput.md +2 -2
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @crestal/nation-sdk@0.8.
|
|
1
|
+
## @crestal/nation-sdk@0.8.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.8.
|
|
39
|
+
npm install @crestal/nation-sdk@0.8.30 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Nation IntentKit API
|
|
5
5
|
* API for Nation IntentKit services
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.8.
|
|
7
|
+
* The version of the OpenAPI document: 0.8.30
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -94,15 +94,10 @@ export const AgentWalletProviderEnum = {
|
|
|
94
94
|
export type AgentWalletProviderEnum = typeof AgentWalletProviderEnum[keyof typeof AgentWalletProviderEnum];
|
|
95
95
|
export const AgentNetworkIdEnum = {
|
|
96
96
|
BaseMainnet: 'base-mainnet',
|
|
97
|
-
BaseSepolia: 'base-sepolia',
|
|
98
97
|
EthereumMainnet: 'ethereum-mainnet',
|
|
99
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
100
98
|
PolygonMainnet: 'polygon-mainnet',
|
|
101
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
102
99
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
103
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
104
100
|
OptimismMainnet: 'optimism-mainnet',
|
|
105
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
106
101
|
Solana: 'solana'
|
|
107
102
|
} as const;
|
|
108
103
|
|
|
@@ -229,15 +224,10 @@ export const AgentCreateWalletProviderEnum = {
|
|
|
229
224
|
export type AgentCreateWalletProviderEnum = typeof AgentCreateWalletProviderEnum[keyof typeof AgentCreateWalletProviderEnum];
|
|
230
225
|
export const AgentCreateNetworkIdEnum = {
|
|
231
226
|
BaseMainnet: 'base-mainnet',
|
|
232
|
-
BaseSepolia: 'base-sepolia',
|
|
233
227
|
EthereumMainnet: 'ethereum-mainnet',
|
|
234
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
235
228
|
PolygonMainnet: 'polygon-mainnet',
|
|
236
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
237
229
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
238
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
239
230
|
OptimismMainnet: 'optimism-mainnet',
|
|
240
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
241
231
|
Solana: 'solana'
|
|
242
232
|
} as const;
|
|
243
233
|
|
|
@@ -323,15 +313,10 @@ export const AgentDraftWalletProviderEnum = {
|
|
|
323
313
|
export type AgentDraftWalletProviderEnum = typeof AgentDraftWalletProviderEnum[keyof typeof AgentDraftWalletProviderEnum];
|
|
324
314
|
export const AgentDraftNetworkIdEnum = {
|
|
325
315
|
BaseMainnet: 'base-mainnet',
|
|
326
|
-
BaseSepolia: 'base-sepolia',
|
|
327
316
|
EthereumMainnet: 'ethereum-mainnet',
|
|
328
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
329
317
|
PolygonMainnet: 'polygon-mainnet',
|
|
330
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
331
318
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
332
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
333
319
|
OptimismMainnet: 'optimism-mainnet',
|
|
334
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
335
320
|
Solana: 'solana'
|
|
336
321
|
} as const;
|
|
337
322
|
|
|
@@ -538,15 +523,10 @@ export const AgentResponseWalletProviderEnum = {
|
|
|
538
523
|
export type AgentResponseWalletProviderEnum = typeof AgentResponseWalletProviderEnum[keyof typeof AgentResponseWalletProviderEnum];
|
|
539
524
|
export const AgentResponseNetworkIdEnum = {
|
|
540
525
|
BaseMainnet: 'base-mainnet',
|
|
541
|
-
BaseSepolia: 'base-sepolia',
|
|
542
526
|
EthereumMainnet: 'ethereum-mainnet',
|
|
543
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
544
527
|
PolygonMainnet: 'polygon-mainnet',
|
|
545
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
546
528
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
547
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
548
529
|
OptimismMainnet: 'optimism-mainnet',
|
|
549
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
550
530
|
Solana: 'solana'
|
|
551
531
|
} as const;
|
|
552
532
|
|
|
@@ -694,15 +674,10 @@ export const AgentUpdateWalletProviderEnum = {
|
|
|
694
674
|
export type AgentUpdateWalletProviderEnum = typeof AgentUpdateWalletProviderEnum[keyof typeof AgentUpdateWalletProviderEnum];
|
|
695
675
|
export const AgentUpdateNetworkIdEnum = {
|
|
696
676
|
BaseMainnet: 'base-mainnet',
|
|
697
|
-
BaseSepolia: 'base-sepolia',
|
|
698
677
|
EthereumMainnet: 'ethereum-mainnet',
|
|
699
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
700
678
|
PolygonMainnet: 'polygon-mainnet',
|
|
701
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
702
679
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
703
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
704
680
|
OptimismMainnet: 'optimism-mainnet',
|
|
705
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
706
681
|
Solana: 'solana'
|
|
707
682
|
} as const;
|
|
708
683
|
|
|
@@ -753,15 +728,10 @@ export const AgentUserInputWalletProviderEnum = {
|
|
|
753
728
|
export type AgentUserInputWalletProviderEnum = typeof AgentUserInputWalletProviderEnum[keyof typeof AgentUserInputWalletProviderEnum];
|
|
754
729
|
export const AgentUserInputNetworkIdEnum = {
|
|
755
730
|
BaseMainnet: 'base-mainnet',
|
|
756
|
-
BaseSepolia: 'base-sepolia',
|
|
757
731
|
EthereumMainnet: 'ethereum-mainnet',
|
|
758
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
759
732
|
PolygonMainnet: 'polygon-mainnet',
|
|
760
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
761
733
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
762
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
763
734
|
OptimismMainnet: 'optimism-mainnet',
|
|
764
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
765
735
|
Solana: 'solana'
|
|
766
736
|
} as const;
|
|
767
737
|
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Nation IntentKit API
|
|
3
3
|
* API for Nation IntentKit services
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.8.
|
|
5
|
+
* The version of the OpenAPI document: 0.8.30
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -96,15 +96,10 @@ export declare const AgentWalletProviderEnum: {
|
|
|
96
96
|
export type AgentWalletProviderEnum = typeof AgentWalletProviderEnum[keyof typeof AgentWalletProviderEnum];
|
|
97
97
|
export declare const AgentNetworkIdEnum: {
|
|
98
98
|
readonly BaseMainnet: "base-mainnet";
|
|
99
|
-
readonly BaseSepolia: "base-sepolia";
|
|
100
99
|
readonly EthereumMainnet: "ethereum-mainnet";
|
|
101
|
-
readonly EthereumSepolia: "ethereum-sepolia";
|
|
102
100
|
readonly PolygonMainnet: "polygon-mainnet";
|
|
103
|
-
readonly PolygonMumbai: "polygon-mumbai";
|
|
104
101
|
readonly ArbitrumMainnet: "arbitrum-mainnet";
|
|
105
|
-
readonly ArbitrumSepolia: "arbitrum-sepolia";
|
|
106
102
|
readonly OptimismMainnet: "optimism-mainnet";
|
|
107
|
-
readonly OptimismSepolia: "optimism-sepolia";
|
|
108
103
|
readonly Solana: "solana";
|
|
109
104
|
};
|
|
110
105
|
export type AgentNetworkIdEnum = typeof AgentNetworkIdEnum[keyof typeof AgentNetworkIdEnum];
|
|
@@ -232,15 +227,10 @@ export declare const AgentCreateWalletProviderEnum: {
|
|
|
232
227
|
export type AgentCreateWalletProviderEnum = typeof AgentCreateWalletProviderEnum[keyof typeof AgentCreateWalletProviderEnum];
|
|
233
228
|
export declare const AgentCreateNetworkIdEnum: {
|
|
234
229
|
readonly BaseMainnet: "base-mainnet";
|
|
235
|
-
readonly BaseSepolia: "base-sepolia";
|
|
236
230
|
readonly EthereumMainnet: "ethereum-mainnet";
|
|
237
|
-
readonly EthereumSepolia: "ethereum-sepolia";
|
|
238
231
|
readonly PolygonMainnet: "polygon-mainnet";
|
|
239
|
-
readonly PolygonMumbai: "polygon-mumbai";
|
|
240
232
|
readonly ArbitrumMainnet: "arbitrum-mainnet";
|
|
241
|
-
readonly ArbitrumSepolia: "arbitrum-sepolia";
|
|
242
233
|
readonly OptimismMainnet: "optimism-mainnet";
|
|
243
|
-
readonly OptimismSepolia: "optimism-sepolia";
|
|
244
234
|
readonly Solana: "solana";
|
|
245
235
|
};
|
|
246
236
|
export type AgentCreateNetworkIdEnum = typeof AgentCreateNetworkIdEnum[keyof typeof AgentCreateNetworkIdEnum];
|
|
@@ -325,15 +315,10 @@ export declare const AgentDraftWalletProviderEnum: {
|
|
|
325
315
|
export type AgentDraftWalletProviderEnum = typeof AgentDraftWalletProviderEnum[keyof typeof AgentDraftWalletProviderEnum];
|
|
326
316
|
export declare const AgentDraftNetworkIdEnum: {
|
|
327
317
|
readonly BaseMainnet: "base-mainnet";
|
|
328
|
-
readonly BaseSepolia: "base-sepolia";
|
|
329
318
|
readonly EthereumMainnet: "ethereum-mainnet";
|
|
330
|
-
readonly EthereumSepolia: "ethereum-sepolia";
|
|
331
319
|
readonly PolygonMainnet: "polygon-mainnet";
|
|
332
|
-
readonly PolygonMumbai: "polygon-mumbai";
|
|
333
320
|
readonly ArbitrumMainnet: "arbitrum-mainnet";
|
|
334
|
-
readonly ArbitrumSepolia: "arbitrum-sepolia";
|
|
335
321
|
readonly OptimismMainnet: "optimism-mainnet";
|
|
336
|
-
readonly OptimismSepolia: "optimism-sepolia";
|
|
337
322
|
readonly Solana: "solana";
|
|
338
323
|
};
|
|
339
324
|
export type AgentDraftNetworkIdEnum = typeof AgentDraftNetworkIdEnum[keyof typeof AgentDraftNetworkIdEnum];
|
|
@@ -555,15 +540,10 @@ export declare const AgentResponseWalletProviderEnum: {
|
|
|
555
540
|
export type AgentResponseWalletProviderEnum = typeof AgentResponseWalletProviderEnum[keyof typeof AgentResponseWalletProviderEnum];
|
|
556
541
|
export declare const AgentResponseNetworkIdEnum: {
|
|
557
542
|
readonly BaseMainnet: "base-mainnet";
|
|
558
|
-
readonly BaseSepolia: "base-sepolia";
|
|
559
543
|
readonly EthereumMainnet: "ethereum-mainnet";
|
|
560
|
-
readonly EthereumSepolia: "ethereum-sepolia";
|
|
561
544
|
readonly PolygonMainnet: "polygon-mainnet";
|
|
562
|
-
readonly PolygonMumbai: "polygon-mumbai";
|
|
563
545
|
readonly ArbitrumMainnet: "arbitrum-mainnet";
|
|
564
|
-
readonly ArbitrumSepolia: "arbitrum-sepolia";
|
|
565
546
|
readonly OptimismMainnet: "optimism-mainnet";
|
|
566
|
-
readonly OptimismSepolia: "optimism-sepolia";
|
|
567
547
|
readonly Solana: "solana";
|
|
568
548
|
};
|
|
569
549
|
export type AgentResponseNetworkIdEnum = typeof AgentResponseNetworkIdEnum[keyof typeof AgentResponseNetworkIdEnum];
|
|
@@ -704,15 +684,10 @@ export declare const AgentUpdateWalletProviderEnum: {
|
|
|
704
684
|
export type AgentUpdateWalletProviderEnum = typeof AgentUpdateWalletProviderEnum[keyof typeof AgentUpdateWalletProviderEnum];
|
|
705
685
|
export declare const AgentUpdateNetworkIdEnum: {
|
|
706
686
|
readonly BaseMainnet: "base-mainnet";
|
|
707
|
-
readonly BaseSepolia: "base-sepolia";
|
|
708
687
|
readonly EthereumMainnet: "ethereum-mainnet";
|
|
709
|
-
readonly EthereumSepolia: "ethereum-sepolia";
|
|
710
688
|
readonly PolygonMainnet: "polygon-mainnet";
|
|
711
|
-
readonly PolygonMumbai: "polygon-mumbai";
|
|
712
689
|
readonly ArbitrumMainnet: "arbitrum-mainnet";
|
|
713
|
-
readonly ArbitrumSepolia: "arbitrum-sepolia";
|
|
714
690
|
readonly OptimismMainnet: "optimism-mainnet";
|
|
715
|
-
readonly OptimismSepolia: "optimism-sepolia";
|
|
716
691
|
readonly Solana: "solana";
|
|
717
692
|
};
|
|
718
693
|
export type AgentUpdateNetworkIdEnum = typeof AgentUpdateNetworkIdEnum[keyof typeof AgentUpdateNetworkIdEnum];
|
|
@@ -762,15 +737,10 @@ export declare const AgentUserInputWalletProviderEnum: {
|
|
|
762
737
|
export type AgentUserInputWalletProviderEnum = typeof AgentUserInputWalletProviderEnum[keyof typeof AgentUserInputWalletProviderEnum];
|
|
763
738
|
export declare const AgentUserInputNetworkIdEnum: {
|
|
764
739
|
readonly BaseMainnet: "base-mainnet";
|
|
765
|
-
readonly BaseSepolia: "base-sepolia";
|
|
766
740
|
readonly EthereumMainnet: "ethereum-mainnet";
|
|
767
|
-
readonly EthereumSepolia: "ethereum-sepolia";
|
|
768
741
|
readonly PolygonMainnet: "polygon-mainnet";
|
|
769
|
-
readonly PolygonMumbai: "polygon-mumbai";
|
|
770
742
|
readonly ArbitrumMainnet: "arbitrum-mainnet";
|
|
771
|
-
readonly ArbitrumSepolia: "arbitrum-sepolia";
|
|
772
743
|
readonly OptimismMainnet: "optimism-mainnet";
|
|
773
|
-
readonly OptimismSepolia: "optimism-sepolia";
|
|
774
744
|
readonly Solana: "solana";
|
|
775
745
|
};
|
|
776
746
|
export type AgentUserInputNetworkIdEnum = typeof AgentUserInputNetworkIdEnum[keyof typeof AgentUserInputNetworkIdEnum];
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Nation IntentKit API
|
|
6
6
|
* API for Nation IntentKit services
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.8.
|
|
8
|
+
* The version of the OpenAPI document: 0.8.30
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -99,15 +99,10 @@ exports.AgentWalletProviderEnum = {
|
|
|
99
99
|
};
|
|
100
100
|
exports.AgentNetworkIdEnum = {
|
|
101
101
|
BaseMainnet: 'base-mainnet',
|
|
102
|
-
BaseSepolia: 'base-sepolia',
|
|
103
102
|
EthereumMainnet: 'ethereum-mainnet',
|
|
104
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
105
103
|
PolygonMainnet: 'polygon-mainnet',
|
|
106
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
107
104
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
108
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
109
105
|
OptimismMainnet: 'optimism-mainnet',
|
|
110
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
111
106
|
Solana: 'solana'
|
|
112
107
|
};
|
|
113
108
|
exports.AgentShortTermMemoryStrategyEnum = {
|
|
@@ -121,15 +116,10 @@ exports.AgentCreateWalletProviderEnum = {
|
|
|
121
116
|
};
|
|
122
117
|
exports.AgentCreateNetworkIdEnum = {
|
|
123
118
|
BaseMainnet: 'base-mainnet',
|
|
124
|
-
BaseSepolia: 'base-sepolia',
|
|
125
119
|
EthereumMainnet: 'ethereum-mainnet',
|
|
126
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
127
120
|
PolygonMainnet: 'polygon-mainnet',
|
|
128
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
129
121
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
130
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
131
122
|
OptimismMainnet: 'optimism-mainnet',
|
|
132
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
133
123
|
Solana: 'solana'
|
|
134
124
|
};
|
|
135
125
|
exports.AgentCreateShortTermMemoryStrategyEnum = {
|
|
@@ -143,15 +133,10 @@ exports.AgentDraftWalletProviderEnum = {
|
|
|
143
133
|
};
|
|
144
134
|
exports.AgentDraftNetworkIdEnum = {
|
|
145
135
|
BaseMainnet: 'base-mainnet',
|
|
146
|
-
BaseSepolia: 'base-sepolia',
|
|
147
136
|
EthereumMainnet: 'ethereum-mainnet',
|
|
148
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
149
137
|
PolygonMainnet: 'polygon-mainnet',
|
|
150
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
151
138
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
152
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
153
139
|
OptimismMainnet: 'optimism-mainnet',
|
|
154
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
155
140
|
Solana: 'solana'
|
|
156
141
|
};
|
|
157
142
|
exports.AgentDraftShortTermMemoryStrategyEnum = {
|
|
@@ -165,15 +150,10 @@ exports.AgentResponseWalletProviderEnum = {
|
|
|
165
150
|
};
|
|
166
151
|
exports.AgentResponseNetworkIdEnum = {
|
|
167
152
|
BaseMainnet: 'base-mainnet',
|
|
168
|
-
BaseSepolia: 'base-sepolia',
|
|
169
153
|
EthereumMainnet: 'ethereum-mainnet',
|
|
170
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
171
154
|
PolygonMainnet: 'polygon-mainnet',
|
|
172
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
173
155
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
174
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
175
156
|
OptimismMainnet: 'optimism-mainnet',
|
|
176
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
177
157
|
Solana: 'solana'
|
|
178
158
|
};
|
|
179
159
|
exports.AgentResponseShortTermMemoryStrategyEnum = {
|
|
@@ -207,15 +187,10 @@ exports.AgentUpdateWalletProviderEnum = {
|
|
|
207
187
|
};
|
|
208
188
|
exports.AgentUpdateNetworkIdEnum = {
|
|
209
189
|
BaseMainnet: 'base-mainnet',
|
|
210
|
-
BaseSepolia: 'base-sepolia',
|
|
211
190
|
EthereumMainnet: 'ethereum-mainnet',
|
|
212
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
213
191
|
PolygonMainnet: 'polygon-mainnet',
|
|
214
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
215
192
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
216
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
217
193
|
OptimismMainnet: 'optimism-mainnet',
|
|
218
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
219
194
|
Solana: 'solana'
|
|
220
195
|
};
|
|
221
196
|
exports.AgentUpdateShortTermMemoryStrategyEnum = {
|
|
@@ -229,15 +204,10 @@ exports.AgentUserInputWalletProviderEnum = {
|
|
|
229
204
|
};
|
|
230
205
|
exports.AgentUserInputNetworkIdEnum = {
|
|
231
206
|
BaseMainnet: 'base-mainnet',
|
|
232
|
-
BaseSepolia: 'base-sepolia',
|
|
233
207
|
EthereumMainnet: 'ethereum-mainnet',
|
|
234
|
-
EthereumSepolia: 'ethereum-sepolia',
|
|
235
208
|
PolygonMainnet: 'polygon-mainnet',
|
|
236
|
-
PolygonMumbai: 'polygon-mumbai',
|
|
237
209
|
ArbitrumMainnet: 'arbitrum-mainnet',
|
|
238
|
-
ArbitrumSepolia: 'arbitrum-sepolia',
|
|
239
210
|
OptimismMainnet: 'optimism-mainnet',
|
|
240
|
-
OptimismSepolia: 'optimism-sepolia',
|
|
241
211
|
Solana: 'solana'
|
|
242
212
|
};
|
|
243
213
|
exports.AgentUserInputShortTermMemoryStrategyEnum = {
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Nation IntentKit API
|
|
6
6
|
* API for Nation IntentKit services
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.8.
|
|
8
|
+
* The version of the OpenAPI document: 0.8.30
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Nation IntentKit API
|
|
6
6
|
* API for Nation IntentKit services
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.8.
|
|
8
|
+
* The version of the OpenAPI document: 0.8.30
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Nation IntentKit API
|
|
6
6
|
* API for Nation IntentKit services
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.8.
|
|
8
|
+
* The version of the OpenAPI document: 0.8.30
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Nation IntentKit API
|
|
6
6
|
* API for Nation IntentKit services
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.8.
|
|
8
|
+
* The version of the OpenAPI document: 0.8.30
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -27,8 +27,8 @@ Name | Type | Description | Notes
|
|
|
27
27
|
**supports_presence_penalty** | **boolean** | | [optional] [default to true]
|
|
28
28
|
**api_base** | **string** | | [optional] [default to undefined]
|
|
29
29
|
**timeout** | **number** | | [optional] [default to 180]
|
|
30
|
-
**created_at** | **string** | Timestamp when this data was created | [optional] [default to 2025-10-
|
|
31
|
-
**updated_at** | **string** | Timestamp when this data was updated | [optional] [default to 2025-10-
|
|
30
|
+
**created_at** | **string** | Timestamp when this data was created | [optional] [default to 2025-10-27T10:11:21.423+00:00]
|
|
31
|
+
**updated_at** | **string** | Timestamp when this data was updated | [optional] [default to 2025-10-27T10:11:21.423+00:00]
|
|
32
32
|
**provider_name** | **string** | | [default to undefined]
|
|
33
33
|
|
|
34
34
|
## Example
|
|
@@ -27,8 +27,8 @@ Name | Type | Description | Notes
|
|
|
27
27
|
**supports_presence_penalty** | **boolean** | | [optional] [default to true]
|
|
28
28
|
**api_base** | **string** | | [optional] [default to undefined]
|
|
29
29
|
**timeout** | **number** | | [optional] [default to 180]
|
|
30
|
-
**created_at** | **string** | Timestamp when this data was created | [optional] [default to 2025-10-
|
|
31
|
-
**updated_at** | **string** | Timestamp when this data was updated | [optional] [default to 2025-10-
|
|
30
|
+
**created_at** | **string** | Timestamp when this data was created | [optional] [default to 2025-10-27T10:11:21.423+00:00]
|
|
31
|
+
**updated_at** | **string** | Timestamp when this data was updated | [optional] [default to 2025-10-27T10:11:21.423+00:00]
|
|
32
32
|
**provider_name** | **string** | | [default to undefined]
|
|
33
33
|
|
|
34
34
|
## Example
|
package/index.ts
CHANGED