@crestal/nation-sdk 0.7.40 → 0.7.41

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.
Files changed (75) hide show
  1. package/.openapi-generator/FILES +50 -7
  2. package/.openapi-generator/VERSION +1 -1
  3. package/README.md +52 -9
  4. package/api.ts +481 -2349
  5. package/base.ts +1 -25
  6. package/common.ts +1 -38
  7. package/configuration.ts +1 -18
  8. package/dist/api.d.ts +476 -2352
  9. package/dist/api.js +1 -146
  10. package/dist/base.d.ts +1 -25
  11. package/dist/base.js +1 -20
  12. package/dist/common.d.ts +1 -38
  13. package/dist/common.js +1 -38
  14. package/dist/configuration.d.ts +1 -18
  15. package/dist/configuration.js +1 -1
  16. package/dist/index.d.ts +1 -1
  17. package/dist/index.js +1 -1
  18. package/docs/AgentAssetsResponse.md +1 -1
  19. package/docs/Amount.md +19 -0
  20. package/docs/AssetInput.md +23 -0
  21. package/docs/{Asset.md → AssetOutput.md} +3 -3
  22. package/docs/Balance.md +19 -0
  23. package/docs/BalanceAfter.md +19 -0
  24. package/docs/BaseAmount.md +19 -0
  25. package/docs/BaseDiscountAmount.md +19 -0
  26. package/docs/BaseFreeAmount.md +19 -0
  27. package/docs/BaseLlmAmount.md +19 -0
  28. package/docs/BaseOriginalAmount.md +19 -0
  29. package/docs/BasePermanentAmount.md +19 -0
  30. package/docs/BaseRewardAmount.md +19 -0
  31. package/docs/BaseSkillAmount.md +19 -0
  32. package/docs/ChangeAmount.md +19 -0
  33. package/docs/CreditAmount.md +19 -0
  34. package/docs/CreditApi.md +2 -2
  35. package/docs/CreditEventInput.md +109 -0
  36. package/docs/{CreditEvent.md → CreditEventOutput.md} +3 -3
  37. package/docs/CreditEventWithAgentInput.md +111 -0
  38. package/docs/{CreditEventWithAgent.md → CreditEventWithAgentOutput.md} +3 -3
  39. package/docs/CreditEventsResponse.md +1 -1
  40. package/docs/CreditTransactionRespInput.md +43 -0
  41. package/docs/{CreditTransactionResp.md → CreditTransactionRespOutput.md} +4 -4
  42. package/docs/CreditTransactionsResponse.md +1 -1
  43. package/docs/FeeAgentAmount.md +19 -0
  44. package/docs/FeeAgentFreeAmount.md +19 -0
  45. package/docs/FeeAgentPermanentAmount.md +19 -0
  46. package/docs/FeeAgentRewardAmount.md +19 -0
  47. package/docs/FeeDevAmount.md +19 -0
  48. package/docs/FeeDevFreeAmount.md +19 -0
  49. package/docs/FeeDevPermanentAmount.md +19 -0
  50. package/docs/FeeDevRewardAmount.md +19 -0
  51. package/docs/FeePlatformAmount.md +19 -0
  52. package/docs/FeePlatformFreeAmount.md +19 -0
  53. package/docs/FeePlatformPermanentAmount.md +19 -0
  54. package/docs/FeePlatformRewardAmount.md +19 -0
  55. package/docs/FreeAmount.md +19 -0
  56. package/docs/FreeAmount1.md +19 -0
  57. package/docs/InputPrice.md +18 -0
  58. package/docs/LLMModelInfoWithProviderNameInput.md +67 -0
  59. package/docs/{LLMModelInfoWithProviderName.md → LLMModelInfoWithProviderNameOutput.md} +5 -5
  60. package/docs/MetadataApi.md +4 -4
  61. package/docs/OutputPrice.md +18 -0
  62. package/docs/PermanentAmount.md +19 -0
  63. package/docs/PermanentAmount1.md +19 -0
  64. package/docs/Price.md +19 -0
  65. package/docs/PriceSelfKey.md +19 -0
  66. package/docs/RewardAmount.md +19 -0
  67. package/docs/RewardAmount1.md +19 -0
  68. package/docs/SkillInput.md +43 -0
  69. package/docs/{Skill.md → SkillOutput.md} +3 -3
  70. package/docs/TopupRecordInput.md +47 -0
  71. package/docs/{TopupRecord.md → TopupRecordOutput.md} +3 -3
  72. package/docs/TopupRecordsResponse.md +1 -1
  73. package/docs/TotalAmount.md +19 -0
  74. package/index.ts +1 -1
  75. package/package.json +1 -1
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.7.40
5
+ * The version of the OpenAPI document: 0.7.41
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -12,42 +12,22 @@
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
- */
19
15
  export declare const COLLECTION_FORMATS: {
20
16
  csv: string;
21
17
  ssv: string;
22
18
  tsv: string;
23
19
  pipes: string;
24
20
  };
25
- /**
26
- *
27
- * @export
28
- * @interface RequestArgs
29
- */
30
21
  export interface RequestArgs {
31
22
  url: string;
32
23
  options: RawAxiosRequestConfig;
33
24
  }
34
- /**
35
- *
36
- * @export
37
- * @class BaseAPI
38
- */
39
25
  export declare class BaseAPI {
40
26
  protected basePath: string;
41
27
  protected axios: AxiosInstance;
42
28
  protected configuration: Configuration | undefined;
43
29
  constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
44
30
  }
45
- /**
46
- *
47
- * @export
48
- * @class RequiredError
49
- * @extends {Error}
50
- */
51
31
  export declare class RequiredError extends Error {
52
32
  field: string;
53
33
  constructor(field: string, msg?: string);
@@ -58,9 +38,5 @@ interface ServerMap {
58
38
  description: string;
59
39
  }[];
60
40
  }
61
- /**
62
- *
63
- * @export
64
- */
65
41
  export declare const operationServerMap: ServerMap;
66
42
  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.7.40
8
+ * The version of the OpenAPI document: 0.7.41
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,21 +31,12 @@ 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
- */
38
34
  exports.COLLECTION_FORMATS = {
39
35
  csv: ",",
40
36
  ssv: " ",
41
37
  tsv: "\t",
42
38
  pipes: "|",
43
39
  };
44
- /**
45
- *
46
- * @export
47
- * @class BaseAPI
48
- */
49
40
  var BaseAPI = /** @class */ (function () {
50
41
  function BaseAPI(configuration, basePath, axios) {
51
42
  if (basePath === void 0) { basePath = exports.BASE_PATH; }
@@ -62,12 +53,6 @@ var BaseAPI = /** @class */ (function () {
62
53
  }());
63
54
  exports.BaseAPI = BaseAPI;
64
55
  ;
65
- /**
66
- *
67
- * @export
68
- * @class RequiredError
69
- * @extends {Error}
70
- */
71
56
  var RequiredError = /** @class */ (function (_super) {
72
57
  __extends(RequiredError, _super);
73
58
  function RequiredError(field, msg) {
@@ -79,8 +64,4 @@ var RequiredError = /** @class */ (function (_super) {
79
64
  return RequiredError;
80
65
  }(Error));
81
66
  exports.RequiredError = RequiredError;
82
- /**
83
- *
84
- * @export
85
- */
86
67
  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.7.40
5
+ * The version of the OpenAPI document: 0.7.41
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -12,54 +12,17 @@
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
- */
19
15
  export declare const DUMMY_BASE_URL = "https://example.com";
20
16
  /**
21
17
  *
22
18
  * @throws {RequiredError}
23
- * @export
24
19
  */
25
20
  export declare const assertParamExists: (functionName: string, paramName: string, paramValue: unknown) => void;
26
- /**
27
- *
28
- * @export
29
- */
30
21
  export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration) => Promise<void>;
31
- /**
32
- *
33
- * @export
34
- */
35
22
  export declare const setBasicAuthToObject: (object: any, configuration?: Configuration) => void;
36
- /**
37
- *
38
- * @export
39
- */
40
23
  export declare const setBearerAuthToObject: (object: any, configuration?: Configuration) => Promise<void>;
41
- /**
42
- *
43
- * @export
44
- */
45
24
  export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration) => Promise<void>;
46
- /**
47
- *
48
- * @export
49
- */
50
25
  export declare const setSearchParams: (url: URL, ...objects: any[]) => void;
51
- /**
52
- *
53
- * @export
54
- */
55
26
  export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration) => any;
56
- /**
57
- *
58
- * @export
59
- */
60
27
  export declare const toPathString: (url: URL) => string;
61
- /**
62
- *
63
- * @export
64
- */
65
28
  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.7.40
8
+ * The version of the OpenAPI document: 0.7.41
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -62,15 +62,10 @@ 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
- */
69
65
  exports.DUMMY_BASE_URL = 'https://example.com';
70
66
  /**
71
67
  *
72
68
  * @throws {RequiredError}
73
- * @export
74
69
  */
75
70
  var assertParamExists = function (functionName, paramName, paramValue) {
76
71
  if (paramValue === null || paramValue === undefined) {
@@ -78,10 +73,6 @@ var assertParamExists = function (functionName, paramName, paramValue) {
78
73
  }
79
74
  };
80
75
  exports.assertParamExists = assertParamExists;
81
- /**
82
- *
83
- * @export
84
- */
85
76
  var setApiKeyToObject = function (object, keyParamName, configuration) {
86
77
  return __awaiter(this, void 0, void 0, function () {
87
78
  var localVarApiKeyValue, _a;
@@ -108,20 +99,12 @@ var setApiKeyToObject = function (object, keyParamName, configuration) {
108
99
  });
109
100
  };
110
101
  exports.setApiKeyToObject = setApiKeyToObject;
111
- /**
112
- *
113
- * @export
114
- */
115
102
  var setBasicAuthToObject = function (object, configuration) {
116
103
  if (configuration && (configuration.username || configuration.password)) {
117
104
  object["auth"] = { username: configuration.username, password: configuration.password };
118
105
  }
119
106
  };
120
107
  exports.setBasicAuthToObject = setBasicAuthToObject;
121
- /**
122
- *
123
- * @export
124
- */
125
108
  var setBearerAuthToObject = function (object, configuration) {
126
109
  return __awaiter(this, void 0, void 0, function () {
127
110
  var accessToken, _a;
@@ -148,10 +131,6 @@ var setBearerAuthToObject = function (object, configuration) {
148
131
  });
149
132
  };
150
133
  exports.setBearerAuthToObject = setBearerAuthToObject;
151
- /**
152
- *
153
- * @export
154
- */
155
134
  var setOAuthToObject = function (object, name, scopes, configuration) {
156
135
  return __awaiter(this, void 0, void 0, function () {
157
136
  var localVarAccessTokenValue, _a;
@@ -201,10 +180,6 @@ function setFlattenedQueryParams(urlSearchParams, parameter, key) {
201
180
  }
202
181
  }
203
182
  }
204
- /**
205
- *
206
- * @export
207
- */
208
183
  var setSearchParams = function (url) {
209
184
  var objects = [];
210
185
  for (var _i = 1; _i < arguments.length; _i++) {
@@ -215,10 +190,6 @@ var setSearchParams = function (url) {
215
190
  url.search = searchParams.toString();
216
191
  };
217
192
  exports.setSearchParams = setSearchParams;
218
- /**
219
- *
220
- * @export
221
- */
222
193
  var serializeDataIfNeeded = function (value, requestOptions, configuration) {
223
194
  var nonString = typeof value !== 'string';
224
195
  var needsSerialization = nonString && configuration && configuration.isJsonMime
@@ -229,18 +200,10 @@ var serializeDataIfNeeded = function (value, requestOptions, configuration) {
229
200
  : (value || "");
230
201
  };
231
202
  exports.serializeDataIfNeeded = serializeDataIfNeeded;
232
- /**
233
- *
234
- * @export
235
- */
236
203
  var toPathString = function (url) {
237
204
  return url.pathname + url.search + url.hash;
238
205
  };
239
206
  exports.toPathString = toPathString;
240
- /**
241
- *
242
- * @export
243
- */
244
207
  var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
245
208
  return function (axios, basePath) {
246
209
  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.7.40
5
+ * The version of the OpenAPI document: 0.7.41
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,49 +23,32 @@ export declare class Configuration {
23
23
  /**
24
24
  * parameter for apiKey security
25
25
  * @param name security name
26
- * @memberof Configuration
27
26
  */
28
27
  apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
29
28
  /**
30
29
  * parameter for basic security
31
- *
32
- * @type {string}
33
- * @memberof Configuration
34
30
  */
35
31
  username?: string;
36
32
  /**
37
33
  * parameter for basic security
38
- *
39
- * @type {string}
40
- * @memberof Configuration
41
34
  */
42
35
  password?: string;
43
36
  /**
44
37
  * parameter for oauth2 security
45
38
  * @param name security name
46
39
  * @param scopes oauth2 scope
47
- * @memberof Configuration
48
40
  */
49
41
  accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
50
42
  /**
51
43
  * override base path
52
- *
53
- * @type {string}
54
- * @memberof Configuration
55
44
  */
56
45
  basePath?: string;
57
46
  /**
58
47
  * override server index
59
- *
60
- * @type {number}
61
- * @memberof Configuration
62
48
  */
63
49
  serverIndex?: number;
64
50
  /**
65
51
  * base options for axios calls
66
- *
67
- * @type {any}
68
- * @memberof Configuration
69
52
  */
70
53
  baseOptions?: any;
71
54
  /**
@@ -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.7.40
8
+ * The version of the OpenAPI document: 0.7.41
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.7.40
5
+ * The version of the OpenAPI document: 0.7.41
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.7.40
8
+ * The version of the OpenAPI document: 0.7.41
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
13
13
  **token_address** | **string** | | [default to undefined]
14
14
  **token_pool** | **string** | | [default to undefined]
15
15
  **tvl** | **string** | Total value locked, set to 0 for this version | [optional] [default to '0']
16
- **assets** | [**Array&lt;Asset&gt;**](Asset.md) | List of assets with symbol and balance | [default to undefined]
16
+ **assets** | [**Array&lt;AssetOutput&gt;**](AssetOutput.md) | List of assets with symbol and balance | [default to undefined]
17
17
  **account** | [**CreditAccount**](CreditAccount.md) | Credit account information | [default to undefined]
18
18
 
19
19
  ## Example
package/docs/Amount.md ADDED
@@ -0,0 +1,19 @@
1
+ # Amount
2
+
3
+ Token amount in raw units
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { Amount } from '@crestal/nation-sdk';
14
+
15
+ const instance: Amount = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,23 @@
1
+ # AssetInput
2
+
3
+ Model for individual asset with symbol and balance.
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **symbol** | **string** | Asset symbol (e.g., ETH, USDC, NATION) | [default to undefined]
10
+ **balance** | [**Balance**](Balance.md) | | [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { AssetInput } from '@crestal/nation-sdk';
16
+
17
+ const instance: AssetInput = {
18
+ symbol,
19
+ balance,
20
+ };
21
+ ```
22
+
23
+ [[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
- # Asset
1
+ # AssetOutput
2
2
 
3
3
  Model for individual asset with symbol and balance.
4
4
 
@@ -12,9 +12,9 @@ Name | Type | Description | Notes
12
12
  ## Example
13
13
 
14
14
  ```typescript
15
- import { Asset } from '@crestal/nation-sdk';
15
+ import { AssetOutput } from '@crestal/nation-sdk';
16
16
 
17
- const instance: Asset = {
17
+ const instance: AssetOutput = {
18
18
  symbol,
19
19
  balance,
20
20
  };
@@ -0,0 +1,19 @@
1
+ # Balance
2
+
3
+ Asset balance as decimal
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { Balance } from '@crestal/nation-sdk';
14
+
15
+ const instance: Balance = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,19 @@
1
+ # BalanceAfter
2
+
3
+ Account total balance after the transaction
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { BalanceAfter } from '@crestal/nation-sdk';
14
+
15
+ const instance: BalanceAfter = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,19 @@
1
+ # BaseAmount
2
+
3
+ Base amount of credits involved
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { BaseAmount } from '@crestal/nation-sdk';
14
+
15
+ const instance: BaseAmount = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,19 @@
1
+ # BaseDiscountAmount
2
+
3
+ Base discount amount
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { BaseDiscountAmount } from '@crestal/nation-sdk';
14
+
15
+ const instance: BaseDiscountAmount = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,19 @@
1
+ # BaseFreeAmount
2
+
3
+ Base free credit amount
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { BaseFreeAmount } from '@crestal/nation-sdk';
14
+
15
+ const instance: BaseFreeAmount = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,19 @@
1
+ # BaseLlmAmount
2
+
3
+ Base LLM cost amount
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { BaseLlmAmount } from '@crestal/nation-sdk';
14
+
15
+ const instance: BaseLlmAmount = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,19 @@
1
+ # BaseOriginalAmount
2
+
3
+ Base original amount
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { BaseOriginalAmount } from '@crestal/nation-sdk';
14
+
15
+ const instance: BaseOriginalAmount = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,19 @@
1
+ # BasePermanentAmount
2
+
3
+ Base permanent credit amount
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { BasePermanentAmount } from '@crestal/nation-sdk';
14
+
15
+ const instance: BasePermanentAmount = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,19 @@
1
+ # BaseRewardAmount
2
+
3
+ Base reward credit amount
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { BaseRewardAmount } from '@crestal/nation-sdk';
14
+
15
+ const instance: BaseRewardAmount = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,19 @@
1
+ # BaseSkillAmount
2
+
3
+ Base skill cost amount
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { BaseSkillAmount } from '@crestal/nation-sdk';
14
+
15
+ const instance: BaseSkillAmount = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,19 @@
1
+ # ChangeAmount
2
+
3
+ Amount of credits changed
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { ChangeAmount } from '@crestal/nation-sdk';
14
+
15
+ const instance: ChangeAmount = {
16
+ };
17
+ ```
18
+
19
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)