@r2wa-org/eden 0.0.63 → 0.0.65

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.
@@ -11,454 +11,169 @@ export declare const assetConvertProductListQuerySchema: import("@sinclair/typeb
11
11
  pageIndex: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
12
12
  }>;
13
13
  export type AssetConvertProductListQueryType = typeof assetConvertProductListQuerySchema.static;
14
- export declare const assetConvertProductResponseSchema: import("drizzle-typebox").BuildSchema<"select", {
15
- createdAt: import("drizzle-orm/pg-core").PgColumn<{
16
- name: "created_at";
17
- tableName: "asset_convert_product";
18
- dataType: "date";
19
- columnType: "PgTimestamp";
20
- data: Date;
21
- driverParam: string;
22
- notNull: true;
23
- hasDefault: true;
24
- isPrimaryKey: false;
25
- isAutoincrement: false;
26
- hasRuntimeDefault: false;
27
- enumValues: undefined;
28
- baseColumn: never;
29
- identity: undefined;
30
- generated: undefined;
31
- }, {}, {}>;
32
- updatedAt: import("drizzle-orm/pg-core").PgColumn<{
33
- name: "updated_at";
34
- tableName: "asset_convert_product";
35
- dataType: "date";
36
- columnType: "PgTimestamp";
37
- data: Date;
38
- driverParam: string;
39
- notNull: true;
40
- hasDefault: true;
41
- isPrimaryKey: false;
42
- isAutoincrement: false;
43
- hasRuntimeDefault: false;
44
- enumValues: undefined;
45
- baseColumn: never;
46
- identity: undefined;
47
- generated: undefined;
48
- }, {}, {}>;
49
- id: import("drizzle-orm/pg-core").PgColumn<{
50
- name: "id";
51
- tableName: "asset_convert_product";
52
- dataType: "string";
53
- columnType: "PgUUID";
54
- data: string;
55
- driverParam: string;
56
- notNull: true;
57
- hasDefault: true;
58
- isPrimaryKey: true;
59
- isAutoincrement: false;
60
- hasRuntimeDefault: false;
61
- enumValues: undefined;
62
- baseColumn: never;
63
- identity: undefined;
64
- generated: undefined;
65
- }, {}, {}>;
66
- name: import("drizzle-orm/pg-core").PgColumn<{
67
- name: "name";
68
- tableName: "asset_convert_product";
69
- dataType: "string";
70
- columnType: "PgText";
71
- data: string;
72
- driverParam: string;
73
- notNull: true;
74
- hasDefault: false;
75
- isPrimaryKey: false;
76
- isAutoincrement: false;
77
- hasRuntimeDefault: false;
78
- enumValues: [string, ...string[]];
79
- baseColumn: never;
80
- identity: undefined;
81
- generated: undefined;
82
- }, {}, {}>;
83
- description: import("drizzle-orm/pg-core").PgColumn<{
84
- name: "description";
85
- tableName: "asset_convert_product";
86
- dataType: "string";
87
- columnType: "PgText";
88
- data: string;
89
- driverParam: string;
90
- notNull: false;
91
- hasDefault: false;
92
- isPrimaryKey: false;
93
- isAutoincrement: false;
94
- hasRuntimeDefault: false;
95
- enumValues: [string, ...string[]];
96
- baseColumn: never;
97
- identity: undefined;
98
- generated: undefined;
99
- }, {}, {}>;
100
- productCategoryKey: import("drizzle-orm/pg-core").PgColumn<{
101
- name: "product_category_key";
102
- tableName: "asset_convert_product";
103
- dataType: "string";
104
- columnType: "PgEnumColumn";
105
- data: "gold" | "gov_bond" | "real_estate" | "corporate_credit";
106
- driverParam: string;
107
- notNull: true;
108
- hasDefault: false;
109
- isPrimaryKey: false;
110
- isAutoincrement: false;
111
- hasRuntimeDefault: false;
112
- enumValues: ["gold", "gov_bond", "real_estate", "corporate_credit"];
113
- baseColumn: never;
114
- identity: undefined;
115
- generated: undefined;
116
- }, {}, {}>;
117
- targetAssetId: import("drizzle-orm/pg-core").PgColumn<{
118
- name: "target_asset_id";
119
- tableName: "asset_convert_product";
120
- dataType: "string";
121
- columnType: "PgUUID";
122
- data: string;
123
- driverParam: string;
124
- notNull: true;
125
- hasDefault: false;
126
- isPrimaryKey: false;
127
- isAutoincrement: false;
128
- hasRuntimeDefault: false;
129
- enumValues: undefined;
130
- baseColumn: never;
131
- identity: undefined;
132
- generated: undefined;
133
- }, {}, {}>;
134
- payAssetId: import("drizzle-orm/pg-core").PgColumn<{
135
- name: "pay_asset_id";
136
- tableName: "asset_convert_product";
137
- dataType: "string";
138
- columnType: "PgUUID";
139
- data: string;
140
- driverParam: string;
141
- notNull: true;
142
- hasDefault: false;
143
- isPrimaryKey: false;
144
- isAutoincrement: false;
145
- hasRuntimeDefault: false;
146
- enumValues: undefined;
147
- baseColumn: never;
148
- identity: undefined;
149
- generated: undefined;
150
- }, {}, {}>;
151
- payAccountTypeId: import("drizzle-orm/pg-core").PgColumn<{
152
- name: "pay_account_type_id";
153
- tableName: "asset_convert_product";
154
- dataType: "string";
155
- columnType: "PgUUID";
156
- data: string;
157
- driverParam: string;
158
- notNull: true;
159
- hasDefault: false;
160
- isPrimaryKey: false;
161
- isAutoincrement: false;
162
- hasRuntimeDefault: false;
163
- enumValues: undefined;
164
- baseColumn: never;
165
- identity: undefined;
166
- generated: undefined;
167
- }, {}, {}>;
168
- receiveAccountTypeId: import("drizzle-orm/pg-core").PgColumn<{
169
- name: "receive_account_type_id";
170
- tableName: "asset_convert_product";
171
- dataType: "string";
172
- columnType: "PgUUID";
173
- data: string;
174
- driverParam: string;
175
- notNull: true;
176
- hasDefault: false;
177
- isPrimaryKey: false;
178
- isAutoincrement: false;
179
- hasRuntimeDefault: false;
180
- enumValues: undefined;
181
- baseColumn: never;
182
- identity: undefined;
183
- generated: undefined;
184
- }, {}, {}>;
185
- minPayAmount: import("drizzle-orm/pg-core").PgColumn<{
186
- name: "min_pay_amount";
187
- tableName: "asset_convert_product";
188
- dataType: "string";
189
- columnType: "PgNumeric";
190
- data: string;
191
- driverParam: string;
192
- notNull: true;
193
- hasDefault: false;
194
- isPrimaryKey: false;
195
- isAutoincrement: false;
196
- hasRuntimeDefault: false;
197
- enumValues: undefined;
198
- baseColumn: never;
199
- identity: undefined;
200
- generated: undefined;
201
- }, {}, {}>;
202
- settlementMode: import("drizzle-orm/pg-core").PgColumn<{
203
- name: "settlement_mode";
204
- tableName: "asset_convert_product";
205
- dataType: "string";
206
- columnType: "PgEnumColumn";
207
- data: "available" | "locked";
208
- driverParam: string;
209
- notNull: true;
210
- hasDefault: false;
211
- isPrimaryKey: false;
212
- isAutoincrement: false;
213
- hasRuntimeDefault: false;
214
- enumValues: ["locked", "available"];
215
- baseColumn: never;
216
- identity: undefined;
217
- generated: undefined;
218
- }, {}, {}>;
219
- status: import("drizzle-orm/pg-core").PgColumn<{
220
- name: "status";
221
- tableName: "asset_convert_product";
222
- dataType: "string";
223
- columnType: "PgEnumColumn";
224
- data: "active" | "draft" | "paused" | "ended";
225
- driverParam: string;
226
- notNull: true;
227
- hasDefault: true;
228
- isPrimaryKey: false;
229
- isAutoincrement: false;
230
- hasRuntimeDefault: false;
231
- enumValues: ["draft", "active", "paused", "ended"];
232
- baseColumn: never;
233
- identity: undefined;
234
- generated: undefined;
235
- }, {}, {}>;
236
- }, undefined>;
237
- export type AssetConvertProductResponseType = typeof assetConvertProductResponseSchema.static;
14
+ export declare const assetConvertProductListItemResponseSchema: import("@sinclair/typebox").TObject<{
15
+ createdAt: import("@sinclair/typebox").TDate;
16
+ updatedAt: import("@sinclair/typebox").TDate;
17
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
18
+ id: import("@sinclair/typebox").TString;
19
+ name: import("@sinclair/typebox").TString;
20
+ status: import("@sinclair/typebox").TEnum<{
21
+ active: "active";
22
+ draft: "draft";
23
+ paused: "paused";
24
+ ended: "ended";
25
+ }>;
26
+ productCategoryKey: import("@sinclair/typebox").TEnum<{
27
+ gold: "gold";
28
+ gov_bond: "gov_bond";
29
+ real_estate: "real_estate";
30
+ corporate_credit: "corporate_credit";
31
+ }>;
32
+ targetAssetId: import("@sinclair/typebox").TString;
33
+ payAssetId: import("@sinclair/typebox").TString;
34
+ payAccountTypeId: import("@sinclair/typebox").TString;
35
+ receiveAccountTypeId: import("@sinclair/typebox").TString;
36
+ minPayAmount: import("@sinclair/typebox").TString;
37
+ settlementMode: import("@sinclair/typebox").TEnum<{
38
+ available: "available";
39
+ locked: "locked";
40
+ }>;
41
+ targetAsset: import("@sinclair/typebox").TObject<{
42
+ symbol: import("@sinclair/typebox").TString;
43
+ id: import("@sinclair/typebox").TString;
44
+ name: import("@sinclair/typebox").TString;
45
+ code: import("@sinclair/typebox").TString;
46
+ category: import("@sinclair/typebox").TEnum<{
47
+ FIAT: "FIAT";
48
+ CRYPTO: "CRYPTO";
49
+ POINT: "POINT";
50
+ RWA: "RWA";
51
+ }>;
52
+ isActive: import("@sinclair/typebox").TBoolean;
53
+ precision: import("@sinclair/typebox").TInteger;
54
+ }>;
55
+ payAsset: import("@sinclair/typebox").TObject<{
56
+ symbol: import("@sinclair/typebox").TString;
57
+ id: import("@sinclair/typebox").TString;
58
+ name: import("@sinclair/typebox").TString;
59
+ code: import("@sinclair/typebox").TString;
60
+ category: import("@sinclair/typebox").TEnum<{
61
+ FIAT: "FIAT";
62
+ CRYPTO: "CRYPTO";
63
+ POINT: "POINT";
64
+ RWA: "RWA";
65
+ }>;
66
+ isActive: import("@sinclair/typebox").TBoolean;
67
+ precision: import("@sinclair/typebox").TInteger;
68
+ }>;
69
+ payAccountType: import("@sinclair/typebox").TObject<{
70
+ id: import("@sinclair/typebox").TString;
71
+ name: import("@sinclair/typebox").TString;
72
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
73
+ key: import("@sinclair/typebox").TString;
74
+ isActive: import("@sinclair/typebox").TBoolean;
75
+ }>;
76
+ receiveAccountType: import("@sinclair/typebox").TObject<{
77
+ id: import("@sinclair/typebox").TString;
78
+ name: import("@sinclair/typebox").TString;
79
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
80
+ key: import("@sinclair/typebox").TString;
81
+ isActive: import("@sinclair/typebox").TBoolean;
82
+ }>;
83
+ price: import("@sinclair/typebox").TObject<{
84
+ latest: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
85
+ id: import("@sinclair/typebox").TString;
86
+ baseAssetId: import("@sinclair/typebox").TString;
87
+ quoteAssetId: import("@sinclair/typebox").TString;
88
+ price: import("@sinclair/typebox").TString;
89
+ source: import("@sinclair/typebox").TString;
90
+ effectiveAt: import("@sinclair/typebox").TDate;
91
+ }>>;
92
+ dailyChangeRate: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
93
+ }>;
94
+ }>;
238
95
  export declare const assetConvertProductListResponseSchema: import("@sinclair/typebox").TObject<{
239
- data: import("@sinclair/typebox").TArray<import("drizzle-typebox").BuildSchema<"select", {
240
- createdAt: import("drizzle-orm/pg-core").PgColumn<{
241
- name: "created_at";
242
- tableName: "asset_convert_product";
243
- dataType: "date";
244
- columnType: "PgTimestamp";
245
- data: Date;
246
- driverParam: string;
247
- notNull: true;
248
- hasDefault: true;
249
- isPrimaryKey: false;
250
- isAutoincrement: false;
251
- hasRuntimeDefault: false;
252
- enumValues: undefined;
253
- baseColumn: never;
254
- identity: undefined;
255
- generated: undefined;
256
- }, {}, {}>;
257
- updatedAt: import("drizzle-orm/pg-core").PgColumn<{
258
- name: "updated_at";
259
- tableName: "asset_convert_product";
260
- dataType: "date";
261
- columnType: "PgTimestamp";
262
- data: Date;
263
- driverParam: string;
264
- notNull: true;
265
- hasDefault: true;
266
- isPrimaryKey: false;
267
- isAutoincrement: false;
268
- hasRuntimeDefault: false;
269
- enumValues: undefined;
270
- baseColumn: never;
271
- identity: undefined;
272
- generated: undefined;
273
- }, {}, {}>;
274
- id: import("drizzle-orm/pg-core").PgColumn<{
275
- name: "id";
276
- tableName: "asset_convert_product";
277
- dataType: "string";
278
- columnType: "PgUUID";
279
- data: string;
280
- driverParam: string;
281
- notNull: true;
282
- hasDefault: true;
283
- isPrimaryKey: true;
284
- isAutoincrement: false;
285
- hasRuntimeDefault: false;
286
- enumValues: undefined;
287
- baseColumn: never;
288
- identity: undefined;
289
- generated: undefined;
290
- }, {}, {}>;
291
- name: import("drizzle-orm/pg-core").PgColumn<{
292
- name: "name";
293
- tableName: "asset_convert_product";
294
- dataType: "string";
295
- columnType: "PgText";
296
- data: string;
297
- driverParam: string;
298
- notNull: true;
299
- hasDefault: false;
300
- isPrimaryKey: false;
301
- isAutoincrement: false;
302
- hasRuntimeDefault: false;
303
- enumValues: [string, ...string[]];
304
- baseColumn: never;
305
- identity: undefined;
306
- generated: undefined;
307
- }, {}, {}>;
308
- description: import("drizzle-orm/pg-core").PgColumn<{
309
- name: "description";
310
- tableName: "asset_convert_product";
311
- dataType: "string";
312
- columnType: "PgText";
313
- data: string;
314
- driverParam: string;
315
- notNull: false;
316
- hasDefault: false;
317
- isPrimaryKey: false;
318
- isAutoincrement: false;
319
- hasRuntimeDefault: false;
320
- enumValues: [string, ...string[]];
321
- baseColumn: never;
322
- identity: undefined;
323
- generated: undefined;
324
- }, {}, {}>;
325
- productCategoryKey: import("drizzle-orm/pg-core").PgColumn<{
326
- name: "product_category_key";
327
- tableName: "asset_convert_product";
328
- dataType: "string";
329
- columnType: "PgEnumColumn";
330
- data: "gold" | "gov_bond" | "real_estate" | "corporate_credit";
331
- driverParam: string;
332
- notNull: true;
333
- hasDefault: false;
334
- isPrimaryKey: false;
335
- isAutoincrement: false;
336
- hasRuntimeDefault: false;
337
- enumValues: ["gold", "gov_bond", "real_estate", "corporate_credit"];
338
- baseColumn: never;
339
- identity: undefined;
340
- generated: undefined;
341
- }, {}, {}>;
342
- targetAssetId: import("drizzle-orm/pg-core").PgColumn<{
343
- name: "target_asset_id";
344
- tableName: "asset_convert_product";
345
- dataType: "string";
346
- columnType: "PgUUID";
347
- data: string;
348
- driverParam: string;
349
- notNull: true;
350
- hasDefault: false;
351
- isPrimaryKey: false;
352
- isAutoincrement: false;
353
- hasRuntimeDefault: false;
354
- enumValues: undefined;
355
- baseColumn: never;
356
- identity: undefined;
357
- generated: undefined;
358
- }, {}, {}>;
359
- payAssetId: import("drizzle-orm/pg-core").PgColumn<{
360
- name: "pay_asset_id";
361
- tableName: "asset_convert_product";
362
- dataType: "string";
363
- columnType: "PgUUID";
364
- data: string;
365
- driverParam: string;
366
- notNull: true;
367
- hasDefault: false;
368
- isPrimaryKey: false;
369
- isAutoincrement: false;
370
- hasRuntimeDefault: false;
371
- enumValues: undefined;
372
- baseColumn: never;
373
- identity: undefined;
374
- generated: undefined;
375
- }, {}, {}>;
376
- payAccountTypeId: import("drizzle-orm/pg-core").PgColumn<{
377
- name: "pay_account_type_id";
378
- tableName: "asset_convert_product";
379
- dataType: "string";
380
- columnType: "PgUUID";
381
- data: string;
382
- driverParam: string;
383
- notNull: true;
384
- hasDefault: false;
385
- isPrimaryKey: false;
386
- isAutoincrement: false;
387
- hasRuntimeDefault: false;
388
- enumValues: undefined;
389
- baseColumn: never;
390
- identity: undefined;
391
- generated: undefined;
392
- }, {}, {}>;
393
- receiveAccountTypeId: import("drizzle-orm/pg-core").PgColumn<{
394
- name: "receive_account_type_id";
395
- tableName: "asset_convert_product";
396
- dataType: "string";
397
- columnType: "PgUUID";
398
- data: string;
399
- driverParam: string;
400
- notNull: true;
401
- hasDefault: false;
402
- isPrimaryKey: false;
403
- isAutoincrement: false;
404
- hasRuntimeDefault: false;
405
- enumValues: undefined;
406
- baseColumn: never;
407
- identity: undefined;
408
- generated: undefined;
409
- }, {}, {}>;
410
- minPayAmount: import("drizzle-orm/pg-core").PgColumn<{
411
- name: "min_pay_amount";
412
- tableName: "asset_convert_product";
413
- dataType: "string";
414
- columnType: "PgNumeric";
415
- data: string;
416
- driverParam: string;
417
- notNull: true;
418
- hasDefault: false;
419
- isPrimaryKey: false;
420
- isAutoincrement: false;
421
- hasRuntimeDefault: false;
422
- enumValues: undefined;
423
- baseColumn: never;
424
- identity: undefined;
425
- generated: undefined;
426
- }, {}, {}>;
427
- settlementMode: import("drizzle-orm/pg-core").PgColumn<{
428
- name: "settlement_mode";
429
- tableName: "asset_convert_product";
430
- dataType: "string";
431
- columnType: "PgEnumColumn";
432
- data: "available" | "locked";
433
- driverParam: string;
434
- notNull: true;
435
- hasDefault: false;
436
- isPrimaryKey: false;
437
- isAutoincrement: false;
438
- hasRuntimeDefault: false;
439
- enumValues: ["locked", "available"];
440
- baseColumn: never;
441
- identity: undefined;
442
- generated: undefined;
443
- }, {}, {}>;
444
- status: import("drizzle-orm/pg-core").PgColumn<{
445
- name: "status";
446
- tableName: "asset_convert_product";
447
- dataType: "string";
448
- columnType: "PgEnumColumn";
449
- data: "active" | "draft" | "paused" | "ended";
450
- driverParam: string;
451
- notNull: true;
452
- hasDefault: true;
453
- isPrimaryKey: false;
454
- isAutoincrement: false;
455
- hasRuntimeDefault: false;
456
- enumValues: ["draft", "active", "paused", "ended"];
457
- baseColumn: never;
458
- identity: undefined;
459
- generated: undefined;
460
- }, {}, {}>;
461
- }, undefined>>;
96
+ data: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
97
+ createdAt: import("@sinclair/typebox").TDate;
98
+ updatedAt: import("@sinclair/typebox").TDate;
99
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
100
+ id: import("@sinclair/typebox").TString;
101
+ name: import("@sinclair/typebox").TString;
102
+ status: import("@sinclair/typebox").TEnum<{
103
+ active: "active";
104
+ draft: "draft";
105
+ paused: "paused";
106
+ ended: "ended";
107
+ }>;
108
+ productCategoryKey: import("@sinclair/typebox").TEnum<{
109
+ gold: "gold";
110
+ gov_bond: "gov_bond";
111
+ real_estate: "real_estate";
112
+ corporate_credit: "corporate_credit";
113
+ }>;
114
+ targetAssetId: import("@sinclair/typebox").TString;
115
+ payAssetId: import("@sinclair/typebox").TString;
116
+ payAccountTypeId: import("@sinclair/typebox").TString;
117
+ receiveAccountTypeId: import("@sinclair/typebox").TString;
118
+ minPayAmount: import("@sinclair/typebox").TString;
119
+ settlementMode: import("@sinclair/typebox").TEnum<{
120
+ available: "available";
121
+ locked: "locked";
122
+ }>;
123
+ targetAsset: import("@sinclair/typebox").TObject<{
124
+ symbol: import("@sinclair/typebox").TString;
125
+ id: import("@sinclair/typebox").TString;
126
+ name: import("@sinclair/typebox").TString;
127
+ code: import("@sinclair/typebox").TString;
128
+ category: import("@sinclair/typebox").TEnum<{
129
+ FIAT: "FIAT";
130
+ CRYPTO: "CRYPTO";
131
+ POINT: "POINT";
132
+ RWA: "RWA";
133
+ }>;
134
+ isActive: import("@sinclair/typebox").TBoolean;
135
+ precision: import("@sinclair/typebox").TInteger;
136
+ }>;
137
+ payAsset: import("@sinclair/typebox").TObject<{
138
+ symbol: import("@sinclair/typebox").TString;
139
+ id: import("@sinclair/typebox").TString;
140
+ name: import("@sinclair/typebox").TString;
141
+ code: import("@sinclair/typebox").TString;
142
+ category: import("@sinclair/typebox").TEnum<{
143
+ FIAT: "FIAT";
144
+ CRYPTO: "CRYPTO";
145
+ POINT: "POINT";
146
+ RWA: "RWA";
147
+ }>;
148
+ isActive: import("@sinclair/typebox").TBoolean;
149
+ precision: import("@sinclair/typebox").TInteger;
150
+ }>;
151
+ payAccountType: import("@sinclair/typebox").TObject<{
152
+ id: import("@sinclair/typebox").TString;
153
+ name: import("@sinclair/typebox").TString;
154
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
155
+ key: import("@sinclair/typebox").TString;
156
+ isActive: import("@sinclair/typebox").TBoolean;
157
+ }>;
158
+ receiveAccountType: import("@sinclair/typebox").TObject<{
159
+ id: import("@sinclair/typebox").TString;
160
+ name: import("@sinclair/typebox").TString;
161
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
162
+ key: import("@sinclair/typebox").TString;
163
+ isActive: import("@sinclair/typebox").TBoolean;
164
+ }>;
165
+ price: import("@sinclair/typebox").TObject<{
166
+ latest: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
167
+ id: import("@sinclair/typebox").TString;
168
+ baseAssetId: import("@sinclair/typebox").TString;
169
+ quoteAssetId: import("@sinclair/typebox").TString;
170
+ price: import("@sinclair/typebox").TString;
171
+ source: import("@sinclair/typebox").TString;
172
+ effectiveAt: import("@sinclair/typebox").TDate;
173
+ }>>;
174
+ dailyChangeRate: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
175
+ }>;
176
+ }>>;
462
177
  pagination: import("@sinclair/typebox").TObject<{
463
178
  pageSize: import("@sinclair/typebox").TNumber;
464
179
  pageIndex: import("@sinclair/typebox").TNumber;
@@ -468,6 +183,88 @@ export declare const assetConvertProductListResponseSchema: import("@sinclair/ty
468
183
  }>;
469
184
  }>;
470
185
  export type AssetConvertProductListResponseType = typeof assetConvertProductListResponseSchema.static;
186
+ export declare const assetConvertProductResponseSchema: import("@sinclair/typebox").TObject<{
187
+ createdAt: import("@sinclair/typebox").TDate;
188
+ updatedAt: import("@sinclair/typebox").TDate;
189
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
190
+ id: import("@sinclair/typebox").TString;
191
+ name: import("@sinclair/typebox").TString;
192
+ status: import("@sinclair/typebox").TEnum<{
193
+ active: "active";
194
+ draft: "draft";
195
+ paused: "paused";
196
+ ended: "ended";
197
+ }>;
198
+ productCategoryKey: import("@sinclair/typebox").TEnum<{
199
+ gold: "gold";
200
+ gov_bond: "gov_bond";
201
+ real_estate: "real_estate";
202
+ corporate_credit: "corporate_credit";
203
+ }>;
204
+ targetAssetId: import("@sinclair/typebox").TString;
205
+ payAssetId: import("@sinclair/typebox").TString;
206
+ payAccountTypeId: import("@sinclair/typebox").TString;
207
+ receiveAccountTypeId: import("@sinclair/typebox").TString;
208
+ minPayAmount: import("@sinclair/typebox").TString;
209
+ settlementMode: import("@sinclair/typebox").TEnum<{
210
+ available: "available";
211
+ locked: "locked";
212
+ }>;
213
+ targetAsset: import("@sinclair/typebox").TObject<{
214
+ symbol: import("@sinclair/typebox").TString;
215
+ id: import("@sinclair/typebox").TString;
216
+ name: import("@sinclair/typebox").TString;
217
+ code: import("@sinclair/typebox").TString;
218
+ category: import("@sinclair/typebox").TEnum<{
219
+ FIAT: "FIAT";
220
+ CRYPTO: "CRYPTO";
221
+ POINT: "POINT";
222
+ RWA: "RWA";
223
+ }>;
224
+ isActive: import("@sinclair/typebox").TBoolean;
225
+ precision: import("@sinclair/typebox").TInteger;
226
+ }>;
227
+ payAsset: import("@sinclair/typebox").TObject<{
228
+ symbol: import("@sinclair/typebox").TString;
229
+ id: import("@sinclair/typebox").TString;
230
+ name: import("@sinclair/typebox").TString;
231
+ code: import("@sinclair/typebox").TString;
232
+ category: import("@sinclair/typebox").TEnum<{
233
+ FIAT: "FIAT";
234
+ CRYPTO: "CRYPTO";
235
+ POINT: "POINT";
236
+ RWA: "RWA";
237
+ }>;
238
+ isActive: import("@sinclair/typebox").TBoolean;
239
+ precision: import("@sinclair/typebox").TInteger;
240
+ }>;
241
+ payAccountType: import("@sinclair/typebox").TObject<{
242
+ id: import("@sinclair/typebox").TString;
243
+ name: import("@sinclair/typebox").TString;
244
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
245
+ key: import("@sinclair/typebox").TString;
246
+ isActive: import("@sinclair/typebox").TBoolean;
247
+ }>;
248
+ receiveAccountType: import("@sinclair/typebox").TObject<{
249
+ id: import("@sinclair/typebox").TString;
250
+ name: import("@sinclair/typebox").TString;
251
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
252
+ key: import("@sinclair/typebox").TString;
253
+ isActive: import("@sinclair/typebox").TBoolean;
254
+ }>;
255
+ price: import("@sinclair/typebox").TObject<{
256
+ latest: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
257
+ id: import("@sinclair/typebox").TString;
258
+ baseAssetId: import("@sinclair/typebox").TString;
259
+ quoteAssetId: import("@sinclair/typebox").TString;
260
+ price: import("@sinclair/typebox").TString;
261
+ source: import("@sinclair/typebox").TString;
262
+ effectiveAt: import("@sinclair/typebox").TDate;
263
+ }>>;
264
+ dailyChangeRate: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
265
+ }>;
266
+ }>;
267
+ export type AssetConvertProductResponseType = typeof assetConvertProductResponseSchema.static;
471
268
  export declare const assetConvertOrderCreateSchema: import("@sinclair/typebox").TObject<{
472
269
  productId: import("@sinclair/typebox").TString;
473
270
  payAmount: import("@sinclair/typebox").TString;