@crestal/nation-sdk 0.2.34 → 0.6.22

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/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.2.34
8
+ * The version of the OpenAPI document: 0.6.22
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -139,8 +139,6 @@ exports.AgentResponseWalletProviderEnum = {
139
139
  };
140
140
  /**
141
141
  * Sort options for agents list.
142
- * @export
143
- * @enum {string}
144
142
  */
145
143
  exports.AgentSortOption = {
146
144
  CreatedAtDesc: 'created_at desc',
@@ -186,8 +184,6 @@ exports.AgentUpdateCdpNetworkIdEnum = {
186
184
  };
187
185
  /**
188
186
  * Type of message author.
189
- * @export
190
- * @enum {string}
191
187
  */
192
188
  exports.AuthorType = {
193
189
  Agent: 'agent',
@@ -202,8 +198,6 @@ exports.AuthorType = {
202
198
  };
203
199
  /**
204
200
  * Type of chat message attachment.
205
- * @export
206
- * @enum {string}
207
201
  */
208
202
  exports.ChatMessageAttachmentType = {
209
203
  Link: 'link',
@@ -213,8 +207,6 @@ exports.ChatMessageAttachmentType = {
213
207
  };
214
208
  /**
215
209
  * Credit or debit transaction.
216
- * @export
217
- * @enum {string}
218
210
  */
219
211
  exports.CreditDebit = {
220
212
  Credit: 'credit',
@@ -222,8 +214,6 @@ exports.CreditDebit = {
222
214
  };
223
215
  /**
224
216
  * Credit type is used in db column names, do not change it.
225
- * @export
226
- * @enum {string}
227
217
  */
228
218
  exports.CreditType = {
229
219
  FreeCredits: 'free_credits',
@@ -232,8 +222,6 @@ exports.CreditType = {
232
222
  };
233
223
  /**
234
224
  * Direction of credit flow.
235
- * @export
236
- * @enum {string}
237
225
  */
238
226
  exports.Direction = {
239
227
  Income: 'income',
@@ -241,8 +229,6 @@ exports.Direction = {
241
229
  };
242
230
  /**
243
231
  * Type of credit event.
244
- * @export
245
- * @enum {string}
246
232
  */
247
233
  exports.EventType = {
248
234
  Memory: 'memory',
@@ -258,11 +244,6 @@ exports.EventType = {
258
244
  EventReward: 'event_reward',
259
245
  RechargeBonus: 'recharge_bonus'
260
246
  };
261
- /**
262
- *
263
- * @export
264
- * @enum {string}
265
- */
266
247
  exports.LLMProvider = {
267
248
  Openai: 'openai',
268
249
  Deepseek: 'deepseek',
@@ -273,8 +254,6 @@ exports.LLMProvider = {
273
254
  };
274
255
  /**
275
256
  * Type of credit account owner.
276
- * @export
277
- * @enum {string}
278
257
  */
279
258
  exports.OwnerType = {
280
259
  User: 'user',
@@ -283,8 +262,6 @@ exports.OwnerType = {
283
262
  };
284
263
  /**
285
264
  * Type of system message.
286
- * @export
287
- * @enum {string}
288
265
  */
289
266
  exports.SystemMessageType = {
290
267
  ServiceFeeError: 'service_fee_error',
@@ -296,8 +273,6 @@ exports.SystemMessageType = {
296
273
  };
297
274
  /**
298
275
  * Type of credit transaction.
299
- * @export
300
- * @enum {string}
301
276
  */
302
277
  exports.TransactionType = {
303
278
  Pay: 'pay',
@@ -319,8 +294,6 @@ exports.TransactionType = {
319
294
  };
320
295
  /**
321
296
  * Type of upstream transaction.
322
- * @export
323
- * @enum {string}
324
297
  */
325
298
  exports.UpstreamType = {
326
299
  Api: 'api',
@@ -330,7 +303,6 @@ exports.UpstreamType = {
330
303
  };
331
304
  /**
332
305
  * AgentApi - axios parameter creator
333
- * @export
334
306
  */
335
307
  var AgentApiAxiosParamCreator = function (configuration) {
336
308
  var _this = this;
@@ -514,7 +486,7 @@ var AgentApiAxiosParamCreator = function (configuration) {
514
486
  },
515
487
  /**
516
488
  * Get the assets and balances for an agent\'s wallet
517
- * @summary Get agent assets
489
+ * @summary Get Agent Assets
518
490
  * @param {string} agentId ID of the agent
519
491
  * @param {*} [options] Override http request option.
520
492
  * @throws {RequiredError}
@@ -528,34 +500,24 @@ var AgentApiAxiosParamCreator = function (configuration) {
528
500
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
529
501
  if (options === void 0) { options = {}; }
530
502
  return __generator(this, function (_a) {
531
- switch (_a.label) {
532
- case 0:
533
- // verify required parameter 'agentId' is not null or undefined
534
- (0, common_1.assertParamExists)('getAgentAssets', 'agentId', agentId);
535
- localVarPath = "/agents/{agent_id}/assets"
536
- .replace("{".concat("agent_id", "}"), encodeURIComponent(String(agentId)));
537
- localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
538
- if (configuration) {
539
- baseOptions = configuration.baseOptions;
540
- }
541
- localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
542
- localVarHeaderParameter = {};
543
- localVarQueryParameter = {};
544
- // authentication HTTPBearer required
545
- // http bearer authentication required
546
- return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
547
- case 1:
548
- // authentication HTTPBearer required
549
- // http bearer authentication required
550
- _a.sent();
551
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
552
- headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
553
- localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
554
- return [2 /*return*/, {
555
- url: (0, common_1.toPathString)(localVarUrlObj),
556
- options: localVarRequestOptions,
557
- }];
503
+ // verify required parameter 'agentId' is not null or undefined
504
+ (0, common_1.assertParamExists)('getAgentAssets', 'agentId', agentId);
505
+ localVarPath = "/agents/{agent_id}/assets"
506
+ .replace("{".concat("agent_id", "}"), encodeURIComponent(String(agentId)));
507
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
508
+ if (configuration) {
509
+ baseOptions = configuration.baseOptions;
558
510
  }
511
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
512
+ localVarHeaderParameter = {};
513
+ localVarQueryParameter = {};
514
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
515
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
516
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
517
+ return [2 /*return*/, {
518
+ url: (0, common_1.toPathString)(localVarUrlObj),
519
+ options: localVarRequestOptions,
520
+ }];
559
521
  });
560
522
  });
561
523
  },
@@ -1000,7 +962,6 @@ var AgentApiAxiosParamCreator = function (configuration) {
1000
962
  exports.AgentApiAxiosParamCreator = AgentApiAxiosParamCreator;
1001
963
  /**
1002
964
  * AgentApi - functional programming interface
1003
- * @export
1004
965
  */
1005
966
  var AgentApiFp = function (configuration) {
1006
967
  var localVarAxiosParamCreator = (0, exports.AgentApiAxiosParamCreator)(configuration);
@@ -1099,7 +1060,7 @@ var AgentApiFp = function (configuration) {
1099
1060
  },
1100
1061
  /**
1101
1062
  * Get the assets and balances for an agent\'s wallet
1102
- * @summary Get agent assets
1063
+ * @summary Get Agent Assets
1103
1064
  * @param {string} agentId ID of the agent
1104
1065
  * @param {*} [options] Override http request option.
1105
1066
  * @throws {RequiredError}
@@ -1340,7 +1301,6 @@ var AgentApiFp = function (configuration) {
1340
1301
  exports.AgentApiFp = AgentApiFp;
1341
1302
  /**
1342
1303
  * AgentApi - factory interface
1343
- * @export
1344
1304
  */
1345
1305
  var AgentApiFactory = function (configuration, basePath, axios) {
1346
1306
  var localVarFp = (0, exports.AgentApiFp)(configuration);
@@ -1387,7 +1347,7 @@ var AgentApiFactory = function (configuration, basePath, axios) {
1387
1347
  },
1388
1348
  /**
1389
1349
  * Get the assets and balances for an agent\'s wallet
1390
- * @summary Get agent assets
1350
+ * @summary Get Agent Assets
1391
1351
  * @param {string} agentId ID of the agent
1392
1352
  * @param {*} [options] Override http request option.
1393
1353
  * @throws {RequiredError}
@@ -1498,9 +1458,6 @@ var AgentApiFactory = function (configuration, basePath, axios) {
1498
1458
  exports.AgentApiFactory = AgentApiFactory;
1499
1459
  /**
1500
1460
  * AgentApi - object-oriented interface
1501
- * @export
1502
- * @class AgentApi
1503
- * @extends {BaseAPI}
1504
1461
  */
1505
1462
  var AgentApi = /** @class */ (function (_super) {
1506
1463
  __extends(AgentApi, _super);
@@ -1513,7 +1470,6 @@ var AgentApi = /** @class */ (function (_super) {
1513
1470
  * @param {AgentUpdate} [agentUpdate]
1514
1471
  * @param {*} [options] Override http request option.
1515
1472
  * @throws {RequiredError}
1516
- * @memberof AgentApi
1517
1473
  */
1518
1474
  AgentApi.prototype.createAgent = function (agentUpdate, options) {
1519
1475
  var _this = this;
@@ -1525,7 +1481,6 @@ var AgentApi = /** @class */ (function (_super) {
1525
1481
  * @param {string} agentId ID of the agent to export
1526
1482
  * @param {*} [options] Override http request option.
1527
1483
  * @throws {RequiredError}
1528
- * @memberof AgentApi
1529
1484
  */
1530
1485
  AgentApi.prototype.exportAgent = function (agentId, options) {
1531
1486
  var _this = this;
@@ -1537,7 +1492,6 @@ var AgentApi = /** @class */ (function (_super) {
1537
1492
  * @param {string} agentId ID of the agent to retrieve
1538
1493
  * @param {*} [options] Override http request option.
1539
1494
  * @throws {RequiredError}
1540
- * @memberof AgentApi
1541
1495
  */
1542
1496
  AgentApi.prototype.getAgent = function (agentId, options) {
1543
1497
  var _this = this;
@@ -1549,7 +1503,6 @@ var AgentApi = /** @class */ (function (_super) {
1549
1503
  * @param {string} agentId ID of the agent
1550
1504
  * @param {*} [options] Override http request option.
1551
1505
  * @throws {RequiredError}
1552
- * @memberof AgentApi
1553
1506
  */
1554
1507
  AgentApi.prototype.getAgentApiKey = function (agentId, options) {
1555
1508
  var _this = this;
@@ -1557,11 +1510,10 @@ var AgentApi = /** @class */ (function (_super) {
1557
1510
  };
1558
1511
  /**
1559
1512
  * Get the assets and balances for an agent\'s wallet
1560
- * @summary Get agent assets
1513
+ * @summary Get Agent Assets
1561
1514
  * @param {string} agentId ID of the agent
1562
1515
  * @param {*} [options] Override http request option.
1563
1516
  * @throws {RequiredError}
1564
- * @memberof AgentApi
1565
1517
  */
1566
1518
  AgentApi.prototype.getAgentAssets = function (agentId, options) {
1567
1519
  var _this = this;
@@ -1573,7 +1525,6 @@ var AgentApi = /** @class */ (function (_super) {
1573
1525
  * @param {string} aid ID of the agent
1574
1526
  * @param {*} [options] Override http request option.
1575
1527
  * @throws {RequiredError}
1576
- * @memberof AgentApi
1577
1528
  */
1578
1529
  AgentApi.prototype.getAgentStatistics = function (aid, options) {
1579
1530
  var _this = this;
@@ -1587,7 +1538,6 @@ var AgentApi = /** @class */ (function (_super) {
1587
1538
  * @param {number} [limit] Maximum number of agents to return
1588
1539
  * @param {*} [options] Override http request option.
1589
1540
  * @throws {RequiredError}
1590
- * @memberof AgentApi
1591
1541
  */
1592
1542
  AgentApi.prototype.getAgents = function (sort, cursor, limit, options) {
1593
1543
  var _this = this;
@@ -1601,7 +1551,6 @@ var AgentApi = /** @class */ (function (_super) {
1601
1551
  * @param {number} [limit] Maximum number of messages to return
1602
1552
  * @param {*} [options] Override http request option.
1603
1553
  * @throws {RequiredError}
1604
- * @memberof AgentApi
1605
1554
  */
1606
1555
  AgentApi.prototype.getSkillHistory = function (aid, cursor, limit, options) {
1607
1556
  var _this = this;
@@ -1614,7 +1563,6 @@ var AgentApi = /** @class */ (function (_super) {
1614
1563
  * @param {File} file YAML file containing agent configuration
1615
1564
  * @param {*} [options] Override http request option.
1616
1565
  * @throws {RequiredError}
1617
- * @memberof AgentApi
1618
1566
  */
1619
1567
  AgentApi.prototype.importAgent = function (agentId, file, options) {
1620
1568
  var _this = this;
@@ -1627,7 +1575,6 @@ var AgentApi = /** @class */ (function (_super) {
1627
1575
  * @param {AgentUpdate} [agentUpdate]
1628
1576
  * @param {*} [options] Override http request option.
1629
1577
  * @throws {RequiredError}
1630
- * @memberof AgentApi
1631
1578
  */
1632
1579
  AgentApi.prototype.overrideAgent = function (agentId, agentUpdate, options) {
1633
1580
  var _this = this;
@@ -1639,7 +1586,6 @@ var AgentApi = /** @class */ (function (_super) {
1639
1586
  * @param {string} agentId ID of the agent
1640
1587
  * @param {*} [options] Override http request option.
1641
1588
  * @throws {RequiredError}
1642
- * @memberof AgentApi
1643
1589
  */
1644
1590
  AgentApi.prototype.resetAgentApiKey = function (agentId, options) {
1645
1591
  var _this = this;
@@ -1652,7 +1598,6 @@ var AgentApi = /** @class */ (function (_super) {
1652
1598
  * @param {AgentUpdate} [agentUpdate]
1653
1599
  * @param {*} [options] Override http request option.
1654
1600
  * @throws {RequiredError}
1655
- * @memberof AgentApi
1656
1601
  */
1657
1602
  AgentApi.prototype.updateAgent = function (agentId, agentUpdate, options) {
1658
1603
  var _this = this;
@@ -1664,7 +1609,6 @@ var AgentApi = /** @class */ (function (_super) {
1664
1609
  * @param {AgentUpdate} [agentUpdate]
1665
1610
  * @param {*} [options] Override http request option.
1666
1611
  * @throws {RequiredError}
1667
- * @memberof AgentApi
1668
1612
  */
1669
1613
  AgentApi.prototype.validateAgentCreate = function (agentUpdate, options) {
1670
1614
  var _this = this;
@@ -1677,7 +1621,6 @@ var AgentApi = /** @class */ (function (_super) {
1677
1621
  * @param {AgentUpdate} [agentUpdate]
1678
1622
  * @param {*} [options] Override http request option.
1679
1623
  * @throws {RequiredError}
1680
- * @memberof AgentApi
1681
1624
  */
1682
1625
  AgentApi.prototype.validateAgentUpdate = function (agentId, agentUpdate, options) {
1683
1626
  var _this = this;
@@ -1688,7 +1631,6 @@ var AgentApi = /** @class */ (function (_super) {
1688
1631
  exports.AgentApi = AgentApi;
1689
1632
  /**
1690
1633
  * ChatApi - axios parameter creator
1691
- * @export
1692
1634
  */
1693
1635
  var ChatApiAxiosParamCreator = function (configuration) {
1694
1636
  var _this = this;
@@ -2218,7 +2160,6 @@ var ChatApiAxiosParamCreator = function (configuration) {
2218
2160
  exports.ChatApiAxiosParamCreator = ChatApiAxiosParamCreator;
2219
2161
  /**
2220
2162
  * ChatApi - functional programming interface
2221
- * @export
2222
2163
  */
2223
2164
  var ChatApiFp = function (configuration) {
2224
2165
  var localVarAxiosParamCreator = (0, exports.ChatApiAxiosParamCreator)(configuration);
@@ -2470,7 +2411,6 @@ var ChatApiFp = function (configuration) {
2470
2411
  exports.ChatApiFp = ChatApiFp;
2471
2412
  /**
2472
2413
  * ChatApi - factory interface
2473
- * @export
2474
2414
  */
2475
2415
  var ChatApiFactory = function (configuration, basePath, axios) {
2476
2416
  var localVarFp = (0, exports.ChatApiFp)(configuration);
@@ -2592,9 +2532,6 @@ var ChatApiFactory = function (configuration, basePath, axios) {
2592
2532
  exports.ChatApiFactory = ChatApiFactory;
2593
2533
  /**
2594
2534
  * ChatApi - object-oriented interface
2595
- * @export
2596
- * @class ChatApi
2597
- * @extends {BaseAPI}
2598
2535
  */
2599
2536
  var ChatApi = /** @class */ (function (_super) {
2600
2537
  __extends(ChatApi, _super);
@@ -2607,7 +2544,6 @@ var ChatApi = /** @class */ (function (_super) {
2607
2544
  * @param {string} aid Agent ID
2608
2545
  * @param {*} [options] Override http request option.
2609
2546
  * @throws {RequiredError}
2610
- * @memberof ChatApi
2611
2547
  */
2612
2548
  ChatApi.prototype.createChatThread = function (aid, options) {
2613
2549
  var _this = this;
@@ -2620,7 +2556,6 @@ var ChatApi = /** @class */ (function (_super) {
2620
2556
  * @param {string} chatId Chat ID
2621
2557
  * @param {*} [options] Override http request option.
2622
2558
  * @throws {RequiredError}
2623
- * @memberof ChatApi
2624
2559
  */
2625
2560
  ChatApi.prototype.deleteChatThread = function (aid, chatId, options) {
2626
2561
  var _this = this;
@@ -2633,7 +2568,6 @@ var ChatApi = /** @class */ (function (_super) {
2633
2568
  * @param {string} chatId Chat ID
2634
2569
  * @param {*} [options] Override http request option.
2635
2570
  * @throws {RequiredError}
2636
- * @memberof ChatApi
2637
2571
  */
2638
2572
  ChatApi.prototype.getChatThreadById = function (aid, chatId, options) {
2639
2573
  var _this = this;
@@ -2645,7 +2579,6 @@ var ChatApi = /** @class */ (function (_super) {
2645
2579
  * @param {string} messageId Message ID
2646
2580
  * @param {*} [options] Override http request option.
2647
2581
  * @throws {RequiredError}
2648
- * @memberof ChatApi
2649
2582
  */
2650
2583
  ChatApi.prototype.getMessageById = function (messageId, options) {
2651
2584
  var _this = this;
@@ -2659,7 +2592,6 @@ var ChatApi = /** @class */ (function (_super) {
2659
2592
  * @param {number} [limit] Maximum number of messages to return
2660
2593
  * @param {*} [options] Override http request option.
2661
2594
  * @throws {RequiredError}
2662
- * @memberof ChatApi
2663
2595
  */
2664
2596
  ChatApi.prototype.getSkillHistory = function (aid, cursor, limit, options) {
2665
2597
  var _this = this;
@@ -2671,7 +2603,6 @@ var ChatApi = /** @class */ (function (_super) {
2671
2603
  * @param {string} aid Agent ID
2672
2604
  * @param {*} [options] Override http request option.
2673
2605
  * @throws {RequiredError}
2674
- * @memberof ChatApi
2675
2606
  */
2676
2607
  ChatApi.prototype.listChatsForAgent = function (aid, options) {
2677
2608
  var _this = this;
@@ -2686,7 +2617,6 @@ var ChatApi = /** @class */ (function (_super) {
2686
2617
  * @param {number} [limit] Maximum number of messages to return
2687
2618
  * @param {*} [options] Override http request option.
2688
2619
  * @throws {RequiredError}
2689
- * @memberof ChatApi
2690
2620
  */
2691
2621
  ChatApi.prototype.listMessagesInChat = function (aid, chatId, cursor, limit, options) {
2692
2622
  var _this = this;
@@ -2699,7 +2629,6 @@ var ChatApi = /** @class */ (function (_super) {
2699
2629
  * @param {string} chatId Chat ID
2700
2630
  * @param {*} [options] Override http request option.
2701
2631
  * @throws {RequiredError}
2702
- * @memberof ChatApi
2703
2632
  */
2704
2633
  ChatApi.prototype.retryMessageInChat = function (aid, chatId, options) {
2705
2634
  var _this = this;
@@ -2713,7 +2642,6 @@ var ChatApi = /** @class */ (function (_super) {
2713
2642
  * @param {ChatMessageRequest} chatMessageRequest
2714
2643
  * @param {*} [options] Override http request option.
2715
2644
  * @throws {RequiredError}
2716
- * @memberof ChatApi
2717
2645
  */
2718
2646
  ChatApi.prototype.sendMessageToChat = function (aid, chatId, chatMessageRequest, options) {
2719
2647
  var _this = this;
@@ -2727,7 +2655,6 @@ var ChatApi = /** @class */ (function (_super) {
2727
2655
  * @param {ChatUpdateRequest} chatUpdateRequest
2728
2656
  * @param {*} [options] Override http request option.
2729
2657
  * @throws {RequiredError}
2730
- * @memberof ChatApi
2731
2658
  */
2732
2659
  ChatApi.prototype.updateChatThread = function (aid, chatId, chatUpdateRequest, options) {
2733
2660
  var _this = this;
@@ -2738,7 +2665,6 @@ var ChatApi = /** @class */ (function (_super) {
2738
2665
  exports.ChatApi = ChatApi;
2739
2666
  /**
2740
2667
  * CreditApi - axios parameter creator
2741
- * @export
2742
2668
  */
2743
2669
  var CreditApiAxiosParamCreator = function (configuration) {
2744
2670
  var _this = this;
@@ -3011,7 +2937,6 @@ var CreditApiAxiosParamCreator = function (configuration) {
3011
2937
  exports.CreditApiAxiosParamCreator = CreditApiAxiosParamCreator;
3012
2938
  /**
3013
2939
  * CreditApi - functional programming interface
3014
- * @export
3015
2940
  */
3016
2941
  var CreditApiFp = function (configuration) {
3017
2942
  var localVarAxiosParamCreator = (0, exports.CreditApiAxiosParamCreator)(configuration);
@@ -3143,7 +3068,6 @@ var CreditApiFp = function (configuration) {
3143
3068
  exports.CreditApiFp = CreditApiFp;
3144
3069
  /**
3145
3070
  * CreditApi - factory interface
3146
- * @export
3147
3071
  */
3148
3072
  var CreditApiFactory = function (configuration, basePath, axios) {
3149
3073
  var localVarFp = (0, exports.CreditApiFp)(configuration);
@@ -3210,9 +3134,6 @@ var CreditApiFactory = function (configuration, basePath, axios) {
3210
3134
  exports.CreditApiFactory = CreditApiFactory;
3211
3135
  /**
3212
3136
  * CreditApi - object-oriented interface
3213
- * @export
3214
- * @class CreditApi
3215
- * @extends {BaseAPI}
3216
3137
  */
3217
3138
  var CreditApi = /** @class */ (function (_super) {
3218
3139
  __extends(CreditApi, _super);
@@ -3225,7 +3146,6 @@ var CreditApi = /** @class */ (function (_super) {
3225
3146
  * @param {string} eventId Credit event ID
3226
3147
  * @param {*} [options] Override http request option.
3227
3148
  * @throws {RequiredError}
3228
- * @memberof CreditApi
3229
3149
  */
3230
3150
  CreditApi.prototype.fetchCreditEvent = function (eventId, options) {
3231
3151
  var _this = this;
@@ -3236,7 +3156,6 @@ var CreditApi = /** @class */ (function (_super) {
3236
3156
  * @summary Get User Account
3237
3157
  * @param {*} [options] Override http request option.
3238
3158
  * @throws {RequiredError}
3239
- * @memberof CreditApi
3240
3159
  */
3241
3160
  CreditApi.prototype.getUserAccount = function (options) {
3242
3161
  var _this = this;
@@ -3250,7 +3169,6 @@ var CreditApi = /** @class */ (function (_super) {
3250
3169
  * @param {number} [limit] Maximum number of events to return
3251
3170
  * @param {*} [options] Override http request option.
3252
3171
  * @throws {RequiredError}
3253
- * @memberof CreditApi
3254
3172
  */
3255
3173
  CreditApi.prototype.listAgentIncomeEvents = function (agentId, cursor, limit, options) {
3256
3174
  var _this = this;
@@ -3265,7 +3183,6 @@ var CreditApi = /** @class */ (function (_super) {
3265
3183
  * @param {number} [limit] Maximum number of events to return
3266
3184
  * @param {*} [options] Override http request option.
3267
3185
  * @throws {RequiredError}
3268
- * @memberof CreditApi
3269
3186
  */
3270
3187
  CreditApi.prototype.listUserEvents = function (eventType, direction, cursor, limit, options) {
3271
3188
  var _this = this;
@@ -3280,7 +3197,6 @@ var CreditApi = /** @class */ (function (_super) {
3280
3197
  * @param {number} [limit] Maximum number of transactions to return
3281
3198
  * @param {*} [options] Override http request option.
3282
3199
  * @throws {RequiredError}
3283
- * @memberof CreditApi
3284
3200
  */
3285
3201
  CreditApi.prototype.listUserTransactions = function (txType, creditDebit, cursor, limit, options) {
3286
3202
  var _this = this;
@@ -3291,7 +3207,6 @@ var CreditApi = /** @class */ (function (_super) {
3291
3207
  exports.CreditApi = CreditApi;
3292
3208
  /**
3293
3209
  * GeneratorApi - axios parameter creator
3294
- * @export
3295
3210
  */
3296
3211
  var GeneratorApiAxiosParamCreator = function (configuration) {
3297
3212
  var _this = this;
@@ -3443,7 +3358,6 @@ var GeneratorApiAxiosParamCreator = function (configuration) {
3443
3358
  exports.GeneratorApiAxiosParamCreator = GeneratorApiAxiosParamCreator;
3444
3359
  /**
3445
3360
  * GeneratorApi - functional programming interface
3446
- * @export
3447
3361
  */
3448
3362
  var GeneratorApiFp = function (configuration) {
3449
3363
  var localVarAxiosParamCreator = (0, exports.GeneratorApiAxiosParamCreator)(configuration);
@@ -3522,7 +3436,6 @@ var GeneratorApiFp = function (configuration) {
3522
3436
  exports.GeneratorApiFp = GeneratorApiFp;
3523
3437
  /**
3524
3438
  * GeneratorApi - factory interface
3525
- * @export
3526
3439
  */
3527
3440
  var GeneratorApiFactory = function (configuration, basePath, axios) {
3528
3441
  var localVarFp = (0, exports.GeneratorApiFp)(configuration);
@@ -3562,9 +3475,6 @@ var GeneratorApiFactory = function (configuration, basePath, axios) {
3562
3475
  exports.GeneratorApiFactory = GeneratorApiFactory;
3563
3476
  /**
3564
3477
  * GeneratorApi - object-oriented interface
3565
- * @export
3566
- * @class GeneratorApi
3567
- * @extends {BaseAPI}
3568
3478
  */
3569
3479
  var GeneratorApi = /** @class */ (function (_super) {
3570
3480
  __extends(GeneratorApi, _super);
@@ -3577,7 +3487,6 @@ var GeneratorApi = /** @class */ (function (_super) {
3577
3487
  * @param {AgentGenerateRequest} agentGenerateRequest
3578
3488
  * @param {*} [options] Override http request option.
3579
3489
  * @throws {RequiredError}
3580
- * @memberof GeneratorApi
3581
3490
  */
3582
3491
  GeneratorApi.prototype.generateAgent = function (agentGenerateRequest, options) {
3583
3492
  var _this = this;
@@ -3589,7 +3498,6 @@ var GeneratorApi = /** @class */ (function (_super) {
3589
3498
  * @param {string} projectId
3590
3499
  * @param {*} [options] Override http request option.
3591
3500
  * @throws {RequiredError}
3592
- * @memberof GeneratorApi
3593
3501
  */
3594
3502
  GeneratorApi.prototype.getGenerationHistory = function (projectId, options) {
3595
3503
  var _this = this;
@@ -3601,7 +3509,6 @@ var GeneratorApi = /** @class */ (function (_super) {
3601
3509
  * @param {number} [limit]
3602
3510
  * @param {*} [options] Override http request option.
3603
3511
  * @throws {RequiredError}
3604
- * @memberof GeneratorApi
3605
3512
  */
3606
3513
  GeneratorApi.prototype.getGenerations = function (limit, options) {
3607
3514
  var _this = this;
@@ -3612,7 +3519,6 @@ var GeneratorApi = /** @class */ (function (_super) {
3612
3519
  exports.GeneratorApi = GeneratorApi;
3613
3520
  /**
3614
3521
  * HealthApi - axios parameter creator
3615
- * @export
3616
3522
  */
3617
3523
  var HealthApiAxiosParamCreator = function (configuration) {
3618
3524
  var _this = this;
@@ -3655,7 +3561,6 @@ var HealthApiAxiosParamCreator = function (configuration) {
3655
3561
  exports.HealthApiAxiosParamCreator = HealthApiAxiosParamCreator;
3656
3562
  /**
3657
3563
  * HealthApi - functional programming interface
3658
- * @export
3659
3564
  */
3660
3565
  var HealthApiFp = function (configuration) {
3661
3566
  var localVarAxiosParamCreator = (0, exports.HealthApiAxiosParamCreator)(configuration);
@@ -3687,7 +3592,6 @@ var HealthApiFp = function (configuration) {
3687
3592
  exports.HealthApiFp = HealthApiFp;
3688
3593
  /**
3689
3594
  * HealthApi - factory interface
3690
- * @export
3691
3595
  */
3692
3596
  var HealthApiFactory = function (configuration, basePath, axios) {
3693
3597
  var localVarFp = (0, exports.HealthApiFp)(configuration);
@@ -3706,9 +3610,6 @@ var HealthApiFactory = function (configuration, basePath, axios) {
3706
3610
  exports.HealthApiFactory = HealthApiFactory;
3707
3611
  /**
3708
3612
  * HealthApi - object-oriented interface
3709
- * @export
3710
- * @class HealthApi
3711
- * @extends {BaseAPI}
3712
3613
  */
3713
3614
  var HealthApi = /** @class */ (function (_super) {
3714
3615
  __extends(HealthApi, _super);
@@ -3720,7 +3621,6 @@ var HealthApi = /** @class */ (function (_super) {
3720
3621
  * @summary Health check endpoint
3721
3622
  * @param {*} [options] Override http request option.
3722
3623
  * @throws {RequiredError}
3723
- * @memberof HealthApi
3724
3624
  */
3725
3625
  HealthApi.prototype.healthCheck = function (options) {
3726
3626
  var _this = this;
@@ -3731,7 +3631,6 @@ var HealthApi = /** @class */ (function (_super) {
3731
3631
  exports.HealthApi = HealthApi;
3732
3632
  /**
3733
3633
  * MetadataApi - axios parameter creator
3734
- * @export
3735
3634
  */
3736
3635
  var MetadataApiAxiosParamCreator = function (configuration) {
3737
3636
  var _this = this;
@@ -3922,7 +3821,6 @@ var MetadataApiAxiosParamCreator = function (configuration) {
3922
3821
  exports.MetadataApiAxiosParamCreator = MetadataApiAxiosParamCreator;
3923
3822
  /**
3924
3823
  * MetadataApi - functional programming interface
3925
- * @export
3926
3824
  */
3927
3825
  var MetadataApiFp = function (configuration) {
3928
3826
  var localVarAxiosParamCreator = (0, exports.MetadataApiAxiosParamCreator)(configuration);
@@ -4046,7 +3944,6 @@ var MetadataApiFp = function (configuration) {
4046
3944
  exports.MetadataApiFp = MetadataApiFp;
4047
3945
  /**
4048
3946
  * MetadataApi - factory interface
4049
- * @export
4050
3947
  */
4051
3948
  var MetadataApiFactory = function (configuration, basePath, axios) {
4052
3949
  var localVarFp = (0, exports.MetadataApiFp)(configuration);
@@ -4105,9 +4002,6 @@ var MetadataApiFactory = function (configuration, basePath, axios) {
4105
4002
  exports.MetadataApiFactory = MetadataApiFactory;
4106
4003
  /**
4107
4004
  * MetadataApi - object-oriented interface
4108
- * @export
4109
- * @class MetadataApi
4110
- * @extends {BaseAPI}
4111
4005
  */
4112
4006
  var MetadataApi = /** @class */ (function (_super) {
4113
4007
  __extends(MetadataApi, _super);
@@ -4119,7 +4013,6 @@ var MetadataApi = /** @class */ (function (_super) {
4119
4013
  * @summary Get agent schema
4120
4014
  * @param {*} [options] Override http request option.
4121
4015
  * @throws {RequiredError}
4122
- * @memberof MetadataApi
4123
4016
  */
4124
4017
  MetadataApi.prototype.getAgentSchema = function (options) {
4125
4018
  var _this = this;
@@ -4130,7 +4023,6 @@ var MetadataApi = /** @class */ (function (_super) {
4130
4023
  * @summary Get all LLM models
4131
4024
  * @param {*} [options] Override http request option.
4132
4025
  * @throws {RequiredError}
4133
- * @memberof MetadataApi
4134
4026
  */
4135
4027
  MetadataApi.prototype.getLlms = function (options) {
4136
4028
  var _this = this;
@@ -4144,7 +4036,6 @@ var MetadataApi = /** @class */ (function (_super) {
4144
4036
  * @param {string} ext Icon file extension
4145
4037
  * @param {*} [options] Override http request option.
4146
4038
  * @throws {RequiredError}
4147
- * @memberof MetadataApi
4148
4039
  */
4149
4040
  MetadataApi.prototype.getSkillIcon = function (skill, iconName, ext, options) {
4150
4041
  var _this = this;
@@ -4156,7 +4047,6 @@ var MetadataApi = /** @class */ (function (_super) {
4156
4047
  * @param {string} skill Skill name
4157
4048
  * @param {*} [options] Override http request option.
4158
4049
  * @throws {RequiredError}
4159
- * @memberof MetadataApi
4160
4050
  */
4161
4051
  MetadataApi.prototype.getSkillSchema = function (skill, options) {
4162
4052
  var _this = this;
@@ -4167,7 +4057,6 @@ var MetadataApi = /** @class */ (function (_super) {
4167
4057
  * @summary Get all skills
4168
4058
  * @param {*} [options] Override http request option.
4169
4059
  * @throws {RequiredError}
4170
- * @memberof MetadataApi
4171
4060
  */
4172
4061
  MetadataApi.prototype.getSkills = function (options) {
4173
4062
  var _this = this;
@@ -4178,7 +4067,6 @@ var MetadataApi = /** @class */ (function (_super) {
4178
4067
  exports.MetadataApi = MetadataApi;
4179
4068
  /**
4180
4069
  * OAuthApi - axios parameter creator
4181
- * @export
4182
4070
  */
4183
4071
  var OAuthApiAxiosParamCreator = function (configuration) {
4184
4072
  var _this = this;
@@ -4339,7 +4227,6 @@ var OAuthApiAxiosParamCreator = function (configuration) {
4339
4227
  exports.OAuthApiAxiosParamCreator = OAuthApiAxiosParamCreator;
4340
4228
  /**
4341
4229
  * OAuthApi - functional programming interface
4342
- * @export
4343
4230
  */
4344
4231
  var OAuthApiFp = function (configuration) {
4345
4232
  var localVarAxiosParamCreator = (0, exports.OAuthApiAxiosParamCreator)(configuration);
@@ -4421,7 +4308,6 @@ var OAuthApiFp = function (configuration) {
4421
4308
  exports.OAuthApiFp = OAuthApiFp;
4422
4309
  /**
4423
4310
  * OAuthApi - factory interface
4424
- * @export
4425
4311
  */
4426
4312
  var OAuthApiFactory = function (configuration, basePath, axios) {
4427
4313
  var localVarFp = (0, exports.OAuthApiFp)(configuration);
@@ -4464,9 +4350,6 @@ var OAuthApiFactory = function (configuration, basePath, axios) {
4464
4350
  exports.OAuthApiFactory = OAuthApiFactory;
4465
4351
  /**
4466
4352
  * OAuthApi - object-oriented interface
4467
- * @export
4468
- * @class OAuthApi
4469
- * @extends {BaseAPI}
4470
4353
  */
4471
4354
  var OAuthApi = /** @class */ (function (_super) {
4472
4355
  __extends(OAuthApi, _super);
@@ -4480,7 +4363,6 @@ var OAuthApi = /** @class */ (function (_super) {
4480
4363
  * @param {string} redirectUri
4481
4364
  * @param {*} [options] Override http request option.
4482
4365
  * @throws {RequiredError}
4483
- * @memberof OAuthApi
4484
4366
  */
4485
4367
  OAuthApi.prototype.getTwitterAuthUrl = function (agentId, redirectUri, options) {
4486
4368
  var _this = this;
@@ -4494,7 +4376,6 @@ var OAuthApi = /** @class */ (function (_super) {
4494
4376
  * @param {string | null} [error]
4495
4377
  * @param {*} [options] Override http request option.
4496
4378
  * @throws {RequiredError}
4497
- * @memberof OAuthApi
4498
4379
  */
4499
4380
  OAuthApi.prototype.twitterOauthCallback = function (state, code, error, options) {
4500
4381
  var _this = this;
@@ -4506,7 +4387,6 @@ var OAuthApi = /** @class */ (function (_super) {
4506
4387
  * @param {string} agentId ID of the agent to unlink from X
4507
4388
  * @param {*} [options] Override http request option.
4508
4389
  * @throws {RequiredError}
4509
- * @memberof OAuthApi
4510
4390
  */
4511
4391
  OAuthApi.prototype.unlinkTwitter = function (agentId, options) {
4512
4392
  var _this = this;
@@ -4517,7 +4397,6 @@ var OAuthApi = /** @class */ (function (_super) {
4517
4397
  exports.OAuthApi = OAuthApi;
4518
4398
  /**
4519
4399
  * UserApi - axios parameter creator
4520
- * @export
4521
4400
  */
4522
4401
  var UserApiAxiosParamCreator = function (configuration) {
4523
4402
  var _this = this;
@@ -4625,7 +4504,6 @@ var UserApiAxiosParamCreator = function (configuration) {
4625
4504
  exports.UserApiAxiosParamCreator = UserApiAxiosParamCreator;
4626
4505
  /**
4627
4506
  * UserApi - functional programming interface
4628
- * @export
4629
4507
  */
4630
4508
  var UserApiFp = function (configuration) {
4631
4509
  var localVarAxiosParamCreator = (0, exports.UserApiAxiosParamCreator)(configuration);
@@ -4682,7 +4560,6 @@ var UserApiFp = function (configuration) {
4682
4560
  exports.UserApiFp = UserApiFp;
4683
4561
  /**
4684
4562
  * UserApi - factory interface
4685
- * @export
4686
4563
  */
4687
4564
  var UserApiFactory = function (configuration, basePath, axios) {
4688
4565
  var localVarFp = (0, exports.UserApiFp)(configuration);
@@ -4713,9 +4590,6 @@ var UserApiFactory = function (configuration, basePath, axios) {
4713
4590
  exports.UserApiFactory = UserApiFactory;
4714
4591
  /**
4715
4592
  * UserApi - object-oriented interface
4716
- * @export
4717
- * @class UserApi
4718
- * @extends {BaseAPI}
4719
4593
  */
4720
4594
  var UserApi = /** @class */ (function (_super) {
4721
4595
  __extends(UserApi, _super);
@@ -4728,7 +4602,6 @@ var UserApi = /** @class */ (function (_super) {
4728
4602
  * @param {string} agentId Agent ID
4729
4603
  * @param {*} [options] Override http request option.
4730
4604
  * @throws {RequiredError}
4731
- * @memberof UserApi
4732
4605
  */
4733
4606
  UserApi.prototype.getUserAgentById = function (agentId, options) {
4734
4607
  var _this = this;
@@ -4741,7 +4614,6 @@ var UserApi = /** @class */ (function (_super) {
4741
4614
  * @param {number} [limit] Maximum number of agents to return
4742
4615
  * @param {*} [options] Override http request option.
4743
4616
  * @throws {RequiredError}
4744
- * @memberof UserApi
4745
4617
  */
4746
4618
  UserApi.prototype.getUserAgents = function (cursor, limit, options) {
4747
4619
  var _this = this;