@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/dist/base.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.6.24
5
+ * The version of the OpenAPI document: 0.6.26
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -12,22 +12,42 @@
12
12
  import type { Configuration } from './configuration';
13
13
  import type { AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  export declare const BASE_PATH: string;
15
+ /**
16
+ *
17
+ * @export
18
+ */
15
19
  export declare const COLLECTION_FORMATS: {
16
20
  csv: string;
17
21
  ssv: string;
18
22
  tsv: string;
19
23
  pipes: string;
20
24
  };
25
+ /**
26
+ *
27
+ * @export
28
+ * @interface RequestArgs
29
+ */
21
30
  export interface RequestArgs {
22
31
  url: string;
23
32
  options: RawAxiosRequestConfig;
24
33
  }
34
+ /**
35
+ *
36
+ * @export
37
+ * @class BaseAPI
38
+ */
25
39
  export declare class BaseAPI {
26
40
  protected basePath: string;
27
41
  protected axios: AxiosInstance;
28
42
  protected configuration: Configuration | undefined;
29
43
  constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
30
44
  }
45
+ /**
46
+ *
47
+ * @export
48
+ * @class RequiredError
49
+ * @extends {Error}
50
+ */
31
51
  export declare class RequiredError extends Error {
32
52
  field: string;
33
53
  constructor(field: string, msg?: string);
@@ -38,5 +58,9 @@ interface ServerMap {
38
58
  description: string;
39
59
  }[];
40
60
  }
61
+ /**
62
+ *
63
+ * @export
64
+ */
41
65
  export declare const operationServerMap: ServerMap;
42
66
  export {};
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.6.24
8
+ * The version of the OpenAPI document: 0.6.26
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,12 +31,21 @@ Object.defineProperty(exports, "__esModule", { value: true });
31
31
  exports.operationServerMap = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
32
32
  var axios_1 = require("axios");
33
33
  exports.BASE_PATH = "http://localhost".replace(/\/+$/, "");
34
+ /**
35
+ *
36
+ * @export
37
+ */
34
38
  exports.COLLECTION_FORMATS = {
35
39
  csv: ",",
36
40
  ssv: " ",
37
41
  tsv: "\t",
38
42
  pipes: "|",
39
43
  };
44
+ /**
45
+ *
46
+ * @export
47
+ * @class BaseAPI
48
+ */
40
49
  var BaseAPI = /** @class */ (function () {
41
50
  function BaseAPI(configuration, basePath, axios) {
42
51
  if (basePath === void 0) { basePath = exports.BASE_PATH; }
@@ -53,6 +62,12 @@ var BaseAPI = /** @class */ (function () {
53
62
  }());
54
63
  exports.BaseAPI = BaseAPI;
55
64
  ;
65
+ /**
66
+ *
67
+ * @export
68
+ * @class RequiredError
69
+ * @extends {Error}
70
+ */
56
71
  var RequiredError = /** @class */ (function (_super) {
57
72
  __extends(RequiredError, _super);
58
73
  function RequiredError(field, msg) {
@@ -64,4 +79,8 @@ var RequiredError = /** @class */ (function (_super) {
64
79
  return RequiredError;
65
80
  }(Error));
66
81
  exports.RequiredError = RequiredError;
82
+ /**
83
+ *
84
+ * @export
85
+ */
67
86
  exports.operationServerMap = {};
package/dist/common.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.6.24
5
+ * The version of the OpenAPI document: 0.6.26
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -12,17 +12,54 @@
12
12
  import type { Configuration } from "./configuration";
13
13
  import type { RequestArgs } from "./base";
14
14
  import type { AxiosInstance, AxiosResponse } from 'axios';
15
+ /**
16
+ *
17
+ * @export
18
+ */
15
19
  export declare const DUMMY_BASE_URL = "https://example.com";
16
20
  /**
17
21
  *
18
22
  * @throws {RequiredError}
23
+ * @export
19
24
  */
20
25
  export declare const assertParamExists: (functionName: string, paramName: string, paramValue: unknown) => void;
26
+ /**
27
+ *
28
+ * @export
29
+ */
21
30
  export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration) => Promise<void>;
31
+ /**
32
+ *
33
+ * @export
34
+ */
22
35
  export declare const setBasicAuthToObject: (object: any, configuration?: Configuration) => void;
36
+ /**
37
+ *
38
+ * @export
39
+ */
23
40
  export declare const setBearerAuthToObject: (object: any, configuration?: Configuration) => Promise<void>;
41
+ /**
42
+ *
43
+ * @export
44
+ */
24
45
  export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration) => Promise<void>;
46
+ /**
47
+ *
48
+ * @export
49
+ */
25
50
  export declare const setSearchParams: (url: URL, ...objects: any[]) => void;
51
+ /**
52
+ *
53
+ * @export
54
+ */
26
55
  export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration) => any;
56
+ /**
57
+ *
58
+ * @export
59
+ */
27
60
  export declare const toPathString: (url: URL) => string;
61
+ /**
62
+ *
63
+ * @export
64
+ */
28
65
  export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
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.6.24
8
+ * The version of the OpenAPI document: 0.6.26
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -62,10 +62,15 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
62
62
  Object.defineProperty(exports, "__esModule", { value: true });
63
63
  exports.createRequestFunction = exports.toPathString = exports.serializeDataIfNeeded = exports.setSearchParams = exports.setOAuthToObject = exports.setBearerAuthToObject = exports.setBasicAuthToObject = exports.setApiKeyToObject = exports.assertParamExists = exports.DUMMY_BASE_URL = void 0;
64
64
  var base_1 = require("./base");
65
+ /**
66
+ *
67
+ * @export
68
+ */
65
69
  exports.DUMMY_BASE_URL = 'https://example.com';
66
70
  /**
67
71
  *
68
72
  * @throws {RequiredError}
73
+ * @export
69
74
  */
70
75
  var assertParamExists = function (functionName, paramName, paramValue) {
71
76
  if (paramValue === null || paramValue === undefined) {
@@ -73,6 +78,10 @@ var assertParamExists = function (functionName, paramName, paramValue) {
73
78
  }
74
79
  };
75
80
  exports.assertParamExists = assertParamExists;
81
+ /**
82
+ *
83
+ * @export
84
+ */
76
85
  var setApiKeyToObject = function (object, keyParamName, configuration) {
77
86
  return __awaiter(this, void 0, void 0, function () {
78
87
  var localVarApiKeyValue, _a;
@@ -99,12 +108,20 @@ var setApiKeyToObject = function (object, keyParamName, configuration) {
99
108
  });
100
109
  };
101
110
  exports.setApiKeyToObject = setApiKeyToObject;
111
+ /**
112
+ *
113
+ * @export
114
+ */
102
115
  var setBasicAuthToObject = function (object, configuration) {
103
116
  if (configuration && (configuration.username || configuration.password)) {
104
117
  object["auth"] = { username: configuration.username, password: configuration.password };
105
118
  }
106
119
  };
107
120
  exports.setBasicAuthToObject = setBasicAuthToObject;
121
+ /**
122
+ *
123
+ * @export
124
+ */
108
125
  var setBearerAuthToObject = function (object, configuration) {
109
126
  return __awaiter(this, void 0, void 0, function () {
110
127
  var accessToken, _a;
@@ -131,6 +148,10 @@ var setBearerAuthToObject = function (object, configuration) {
131
148
  });
132
149
  };
133
150
  exports.setBearerAuthToObject = setBearerAuthToObject;
151
+ /**
152
+ *
153
+ * @export
154
+ */
134
155
  var setOAuthToObject = function (object, name, scopes, configuration) {
135
156
  return __awaiter(this, void 0, void 0, function () {
136
157
  var localVarAccessTokenValue, _a;
@@ -180,6 +201,10 @@ function setFlattenedQueryParams(urlSearchParams, parameter, key) {
180
201
  }
181
202
  }
182
203
  }
204
+ /**
205
+ *
206
+ * @export
207
+ */
183
208
  var setSearchParams = function (url) {
184
209
  var objects = [];
185
210
  for (var _i = 1; _i < arguments.length; _i++) {
@@ -190,6 +215,10 @@ var setSearchParams = function (url) {
190
215
  url.search = searchParams.toString();
191
216
  };
192
217
  exports.setSearchParams = setSearchParams;
218
+ /**
219
+ *
220
+ * @export
221
+ */
193
222
  var serializeDataIfNeeded = function (value, requestOptions, configuration) {
194
223
  var nonString = typeof value !== 'string';
195
224
  var needsSerialization = nonString && configuration && configuration.isJsonMime
@@ -200,10 +229,18 @@ var serializeDataIfNeeded = function (value, requestOptions, configuration) {
200
229
  : (value || "");
201
230
  };
202
231
  exports.serializeDataIfNeeded = serializeDataIfNeeded;
232
+ /**
233
+ *
234
+ * @export
235
+ */
203
236
  var toPathString = function (url) {
204
237
  return url.pathname + url.search + url.hash;
205
238
  };
206
239
  exports.toPathString = toPathString;
240
+ /**
241
+ *
242
+ * @export
243
+ */
207
244
  var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
208
245
  return function (axios, basePath) {
209
246
  var _a;
@@ -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.6.24
5
+ * The version of the OpenAPI document: 0.6.26
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,32 +23,49 @@ export declare class Configuration {
23
23
  /**
24
24
  * parameter for apiKey security
25
25
  * @param name security name
26
+ * @memberof Configuration
26
27
  */
27
28
  apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
28
29
  /**
29
30
  * parameter for basic security
31
+ *
32
+ * @type {string}
33
+ * @memberof Configuration
30
34
  */
31
35
  username?: string;
32
36
  /**
33
37
  * parameter for basic security
38
+ *
39
+ * @type {string}
40
+ * @memberof Configuration
34
41
  */
35
42
  password?: string;
36
43
  /**
37
44
  * parameter for oauth2 security
38
45
  * @param name security name
39
46
  * @param scopes oauth2 scope
47
+ * @memberof Configuration
40
48
  */
41
49
  accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
42
50
  /**
43
51
  * override base path
52
+ *
53
+ * @type {string}
54
+ * @memberof Configuration
44
55
  */
45
56
  basePath?: string;
46
57
  /**
47
58
  * override server index
59
+ *
60
+ * @type {number}
61
+ * @memberof Configuration
48
62
  */
49
63
  serverIndex?: number;
50
64
  /**
51
65
  * base options for axios calls
66
+ *
67
+ * @type {any}
68
+ * @memberof Configuration
52
69
  */
53
70
  baseOptions?: any;
54
71
  /**
@@ -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.6.24
8
+ * The version of the OpenAPI document: 0.6.26
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
@@ -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.6.24
5
+ * The version of the OpenAPI document: 0.6.26
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
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.6.24
8
+ * The version of the OpenAPI document: 0.6.26
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -7,8 +7,9 @@ Request model for agent generation.
7
7
  Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
9
  **prompt** | **string** | Natural language description of the agent\&#39;s desired capabilities | [default to undefined]
10
- **existing_agent** | [**AgentUpdate**](AgentUpdate.md) | | [optional] [default to undefined]
10
+ **existing_agent** | [**AgentInput**](AgentInput.md) | | [optional] [default to undefined]
11
11
  **project_id** | **string** | | [optional] [default to undefined]
12
+ **deploy** | **boolean** | | [optional] [default to undefined]
12
13
 
13
14
  ## Example
14
15
 
@@ -19,6 +20,7 @@ const instance: AgentGenerateRequest = {
19
20
  prompt,
20
21
  existing_agent,
21
22
  project_id,
23
+ deploy,
22
24
  };
23
25
  ```
24
26
 
@@ -10,8 +10,8 @@ Name | Type | Description | Notes
10
10
  **project_id** | **string** | Project ID for this conversation session | [default to undefined]
11
11
  **summary** | **string** | Human-readable summary of the generated agent | [default to undefined]
12
12
  **tags** | **Array&lt;{ [key: string]: number; }&gt;** | Generated tags for the agent as ID objects: [{\&#39;id\&#39;: 1}, {\&#39;id\&#39;: 2}] | [optional] [default to undefined]
13
- **autonomous_tasks** | **Array&lt;object&gt;** | List of autonomous tasks generated for the agent | [optional] [default to undefined]
14
- **activated_skills** | **Array&lt;string&gt;** | List of skills that were activated based on the prompt | [optional] [default to undefined]
13
+ **autonomous_tasks** | **Array&lt;object&gt;** | | [optional] [default to undefined]
14
+ **activated_skills** | **Array&lt;string&gt;** | | [optional] [default to undefined]
15
15
 
16
16
  ## Example
17
17
 
@@ -0,0 +1,95 @@
1
+ # AgentInput
2
+
3
+ Agent model.
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **name** | **string** | | [default to undefined]
10
+ **slug** | **string** | | [optional] [default to undefined]
11
+ **description** | **string** | | [optional] [default to undefined]
12
+ **external_website** | **string** | | [optional] [default to undefined]
13
+ **picture** | **string** | | [optional] [default to undefined]
14
+ **ticker** | **string** | | [optional] [default to undefined]
15
+ **token_address** | **string** | | [optional] [default to undefined]
16
+ **token_pool** | **string** | | [optional] [default to undefined]
17
+ **mode** | **string** | | [optional] [default to undefined]
18
+ **fee_percentage** | [**FeePercentage**](FeePercentage.md) | | [optional] [default to undefined]
19
+ **purpose** | **string** | | [default to undefined]
20
+ **personality** | **string** | | [default to undefined]
21
+ **principles** | **string** | | [default to undefined]
22
+ **owner** | **string** | | [optional] [default to undefined]
23
+ **upstream_id** | **string** | | [optional] [default to undefined]
24
+ **upstream_extra** | **object** | | [optional] [default to undefined]
25
+ **model** | **string** | AI model identifier to be used by this agent for processing requests. | [optional] [default to 'gpt-5-mini']
26
+ **prompt** | **string** | | [optional] [default to undefined]
27
+ **prompt_append** | **string** | | [optional] [default to undefined]
28
+ **temperature** | **number** | | [optional] [default to undefined]
29
+ **frequency_penalty** | **number** | | [optional] [default to undefined]
30
+ **presence_penalty** | **number** | | [optional] [default to undefined]
31
+ **short_term_memory_strategy** | **string** | | [optional] [default to undefined]
32
+ **autonomous** | [**Array&lt;AgentAutonomous&gt;**](AgentAutonomous.md) | | [optional] [default to undefined]
33
+ **example_intro** | **string** | | [optional] [default to undefined]
34
+ **examples** | [**Array&lt;AgentExample&gt;**](AgentExample.md) | | [optional] [default to undefined]
35
+ **skills** | **object** | | [optional] [default to undefined]
36
+ **wallet_provider** | **string** | | [optional] [default to undefined]
37
+ **readonly_wallet_address** | **string** | | [optional] [default to undefined]
38
+ **network_id** | **string** | | [optional] [default to undefined]
39
+ **cdp_network_id** | **string** | | [optional] [default to undefined]
40
+ **telegram_entrypoint_enabled** | **boolean** | | [optional] [default to undefined]
41
+ **telegram_entrypoint_prompt** | **string** | | [optional] [default to undefined]
42
+ **telegram_config** | **object** | | [optional] [default to undefined]
43
+ **xmtp_entrypoint_prompt** | **string** | | [optional] [default to undefined]
44
+ **id** | **string** | Unique identifier for the agent. Must be URL-safe, containing only lowercase letters, numbers, and hyphens | [optional] [default to undefined]
45
+ **created_at** | **string** | Timestamp when the agent was created, will ignore when importing | [optional] [default to undefined]
46
+ **updated_at** | **string** | Timestamp when the agent was last updated, will ignore when importing | [optional] [default to undefined]
47
+
48
+ ## Example
49
+
50
+ ```typescript
51
+ import { AgentInput } from '@crestal/nation-sdk';
52
+
53
+ const instance: AgentInput = {
54
+ name,
55
+ slug,
56
+ description,
57
+ external_website,
58
+ picture,
59
+ ticker,
60
+ token_address,
61
+ token_pool,
62
+ mode,
63
+ fee_percentage,
64
+ purpose,
65
+ personality,
66
+ principles,
67
+ owner,
68
+ upstream_id,
69
+ upstream_extra,
70
+ model,
71
+ prompt,
72
+ prompt_append,
73
+ temperature,
74
+ frequency_penalty,
75
+ presence_penalty,
76
+ short_term_memory_strategy,
77
+ autonomous,
78
+ example_intro,
79
+ examples,
80
+ skills,
81
+ wallet_provider,
82
+ readonly_wallet_address,
83
+ network_id,
84
+ cdp_network_id,
85
+ telegram_entrypoint_enabled,
86
+ telegram_entrypoint_prompt,
87
+ telegram_config,
88
+ xmtp_entrypoint_prompt,
89
+ id,
90
+ created_at,
91
+ updated_at,
92
+ };
93
+ ```
94
+
95
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,4 +1,4 @@
1
- # Agent
1
+ # AgentOutput
2
2
 
3
3
  Agent model.
4
4
 
@@ -7,13 +7,13 @@ Agent model.
7
7
  Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
9
  **name** | **string** | | [default to undefined]
10
- **slug** | **string** | | [optional] [readonly] [default to undefined]
10
+ **slug** | **string** | | [optional] [default to undefined]
11
11
  **description** | **string** | | [optional] [default to undefined]
12
12
  **external_website** | **string** | | [optional] [default to undefined]
13
13
  **picture** | **string** | | [optional] [default to undefined]
14
14
  **ticker** | **string** | | [optional] [default to undefined]
15
- **token_address** | **string** | | [optional] [readonly] [default to undefined]
16
- **token_pool** | **string** | | [optional] [readonly] [default to undefined]
15
+ **token_address** | **string** | | [optional] [default to undefined]
16
+ **token_pool** | **string** | | [optional] [default to undefined]
17
17
  **mode** | **string** | | [optional] [default to undefined]
18
18
  **fee_percentage** | **string** | | [optional] [default to undefined]
19
19
  **purpose** | **string** | | [default to undefined]
@@ -48,9 +48,9 @@ Name | Type | Description | Notes
48
48
  ## Example
49
49
 
50
50
  ```typescript
51
- import { Agent } from '@crestal/nation-sdk';
51
+ import { AgentOutput } from '@crestal/nation-sdk';
52
52
 
53
- const instance: Agent = {
53
+ const instance: AgentOutput = {
54
54
  name,
55
55
  slug,
56
56
  description,
@@ -7,13 +7,13 @@ Agent update model.
7
7
  Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
9
  **name** | **string** | | [default to undefined]
10
- **slug** | **string** | | [optional] [readonly] [default to undefined]
10
+ **slug** | **string** | | [optional] [default to undefined]
11
11
  **description** | **string** | | [optional] [default to undefined]
12
12
  **external_website** | **string** | | [optional] [default to undefined]
13
13
  **picture** | **string** | | [optional] [default to undefined]
14
14
  **ticker** | **string** | | [optional] [default to undefined]
15
- **token_address** | **string** | | [optional] [readonly] [default to undefined]
16
- **token_pool** | **string** | | [optional] [readonly] [default to undefined]
15
+ **token_address** | **string** | | [optional] [default to undefined]
16
+ **token_pool** | **string** | | [optional] [default to undefined]
17
17
  **mode** | **string** | | [optional] [default to undefined]
18
18
  **fee_percentage** | [**FeePercentage**](FeePercentage.md) | | [optional] [default to undefined]
19
19
  **purpose** | **string** | | [default to undefined]
@@ -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-08-29T17:58:35.375+00:00]
31
- **updated_at** | **string** | Timestamp when this data was updated | [optional] [default to 2025-08-29T17:58:35.375+00:00]
30
+ **created_at** | **string** | Timestamp when this data was created | [optional] [default to 2025-09-06T11:12:10.613+00:00]
31
+ **updated_at** | **string** | Timestamp when this data was updated | [optional] [default to 2025-09-06T11:12:10.613+00:00]
32
32
  **provider_name** | **string** | | [default to undefined]
33
33
 
34
34
  ## Example
package/docs/UserApi.md CHANGED
@@ -8,7 +8,7 @@ All URIs are relative to *http://localhost*
8
8
  |[**getUserAgents**](#getuseragents) | **GET** /user/agents | Get User Agents|
9
9
 
10
10
  # **getUserAgentById**
11
- > Agent getUserAgentById()
11
+ > AgentOutput getUserAgentById()
12
12
 
13
13
  Get a specific agent owned by the authenticated user. **Path Parameters:** * `agent_id` - The ID of the agent to retrieve **Returns:** * `Agent` - The agent object **Raises:** * `404` - Agent not found or not owned by the user
14
14
 
@@ -39,7 +39,7 @@ const { status, data } = await apiInstance.getUserAgentById(
39
39
 
40
40
  ### Return type
41
41
 
42
- **Agent**
42
+ **AgentOutput**
43
43
 
44
44
  ### Authorization
45
45
 
package/index.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.6.24
7
+ * The version of the OpenAPI document: 0.6.26
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crestal/nation-sdk",
3
- "version": "0.6.24",
3
+ "version": "0.6.26",
4
4
  "description": "OpenAPI client for @crestal/nation-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {