@r2wa-org/eden 0.0.63 → 0.0.64

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,165 @@ 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
+ targetAssetInfo: 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
+ payAssetInfo: 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
+ payAccountTypeInfo: 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
+ receiveAccountTypeInfo: 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
+ latestPriceInfo: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
84
+ id: import("@sinclair/typebox").TString;
85
+ baseAssetId: import("@sinclair/typebox").TString;
86
+ quoteAssetId: import("@sinclair/typebox").TString;
87
+ price: import("@sinclair/typebox").TString;
88
+ source: import("@sinclair/typebox").TString;
89
+ effectiveAt: import("@sinclair/typebox").TDate;
90
+ }>>;
91
+ dailyChangeRate: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
92
+ }>;
238
93
  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>>;
94
+ data: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
95
+ createdAt: import("@sinclair/typebox").TDate;
96
+ updatedAt: import("@sinclair/typebox").TDate;
97
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
98
+ id: import("@sinclair/typebox").TString;
99
+ name: import("@sinclair/typebox").TString;
100
+ status: import("@sinclair/typebox").TEnum<{
101
+ active: "active";
102
+ draft: "draft";
103
+ paused: "paused";
104
+ ended: "ended";
105
+ }>;
106
+ productCategoryKey: import("@sinclair/typebox").TEnum<{
107
+ gold: "gold";
108
+ gov_bond: "gov_bond";
109
+ real_estate: "real_estate";
110
+ corporate_credit: "corporate_credit";
111
+ }>;
112
+ targetAssetId: import("@sinclair/typebox").TString;
113
+ payAssetId: import("@sinclair/typebox").TString;
114
+ payAccountTypeId: import("@sinclair/typebox").TString;
115
+ receiveAccountTypeId: import("@sinclair/typebox").TString;
116
+ minPayAmount: import("@sinclair/typebox").TString;
117
+ settlementMode: import("@sinclair/typebox").TEnum<{
118
+ available: "available";
119
+ locked: "locked";
120
+ }>;
121
+ targetAssetInfo: import("@sinclair/typebox").TObject<{
122
+ symbol: import("@sinclair/typebox").TString;
123
+ id: import("@sinclair/typebox").TString;
124
+ name: import("@sinclair/typebox").TString;
125
+ code: import("@sinclair/typebox").TString;
126
+ category: import("@sinclair/typebox").TEnum<{
127
+ FIAT: "FIAT";
128
+ CRYPTO: "CRYPTO";
129
+ POINT: "POINT";
130
+ RWA: "RWA";
131
+ }>;
132
+ isActive: import("@sinclair/typebox").TBoolean;
133
+ precision: import("@sinclair/typebox").TInteger;
134
+ }>;
135
+ payAssetInfo: import("@sinclair/typebox").TObject<{
136
+ symbol: import("@sinclair/typebox").TString;
137
+ id: import("@sinclair/typebox").TString;
138
+ name: import("@sinclair/typebox").TString;
139
+ code: import("@sinclair/typebox").TString;
140
+ category: import("@sinclair/typebox").TEnum<{
141
+ FIAT: "FIAT";
142
+ CRYPTO: "CRYPTO";
143
+ POINT: "POINT";
144
+ RWA: "RWA";
145
+ }>;
146
+ isActive: import("@sinclair/typebox").TBoolean;
147
+ precision: import("@sinclair/typebox").TInteger;
148
+ }>;
149
+ payAccountTypeInfo: import("@sinclair/typebox").TObject<{
150
+ id: import("@sinclair/typebox").TString;
151
+ name: import("@sinclair/typebox").TString;
152
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
153
+ key: import("@sinclair/typebox").TString;
154
+ isActive: import("@sinclair/typebox").TBoolean;
155
+ }>;
156
+ receiveAccountTypeInfo: import("@sinclair/typebox").TObject<{
157
+ id: import("@sinclair/typebox").TString;
158
+ name: import("@sinclair/typebox").TString;
159
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
160
+ key: import("@sinclair/typebox").TString;
161
+ isActive: import("@sinclair/typebox").TBoolean;
162
+ }>;
163
+ latestPriceInfo: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
164
+ id: import("@sinclair/typebox").TString;
165
+ baseAssetId: import("@sinclair/typebox").TString;
166
+ quoteAssetId: import("@sinclair/typebox").TString;
167
+ price: import("@sinclair/typebox").TString;
168
+ source: import("@sinclair/typebox").TString;
169
+ effectiveAt: import("@sinclair/typebox").TDate;
170
+ }>>;
171
+ dailyChangeRate: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
172
+ }>>;
462
173
  pagination: import("@sinclair/typebox").TObject<{
463
174
  pageSize: import("@sinclair/typebox").TNumber;
464
175
  pageIndex: import("@sinclair/typebox").TNumber;
@@ -468,6 +179,86 @@ export declare const assetConvertProductListResponseSchema: import("@sinclair/ty
468
179
  }>;
469
180
  }>;
470
181
  export type AssetConvertProductListResponseType = typeof assetConvertProductListResponseSchema.static;
182
+ export declare const assetConvertProductResponseSchema: import("@sinclair/typebox").TObject<{
183
+ createdAt: import("@sinclair/typebox").TDate;
184
+ updatedAt: import("@sinclair/typebox").TDate;
185
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
186
+ id: import("@sinclair/typebox").TString;
187
+ name: import("@sinclair/typebox").TString;
188
+ status: import("@sinclair/typebox").TEnum<{
189
+ active: "active";
190
+ draft: "draft";
191
+ paused: "paused";
192
+ ended: "ended";
193
+ }>;
194
+ productCategoryKey: import("@sinclair/typebox").TEnum<{
195
+ gold: "gold";
196
+ gov_bond: "gov_bond";
197
+ real_estate: "real_estate";
198
+ corporate_credit: "corporate_credit";
199
+ }>;
200
+ targetAssetId: import("@sinclair/typebox").TString;
201
+ payAssetId: import("@sinclair/typebox").TString;
202
+ payAccountTypeId: import("@sinclair/typebox").TString;
203
+ receiveAccountTypeId: import("@sinclair/typebox").TString;
204
+ minPayAmount: import("@sinclair/typebox").TString;
205
+ settlementMode: import("@sinclair/typebox").TEnum<{
206
+ available: "available";
207
+ locked: "locked";
208
+ }>;
209
+ targetAssetInfo: import("@sinclair/typebox").TObject<{
210
+ symbol: import("@sinclair/typebox").TString;
211
+ id: import("@sinclair/typebox").TString;
212
+ name: import("@sinclair/typebox").TString;
213
+ code: import("@sinclair/typebox").TString;
214
+ category: import("@sinclair/typebox").TEnum<{
215
+ FIAT: "FIAT";
216
+ CRYPTO: "CRYPTO";
217
+ POINT: "POINT";
218
+ RWA: "RWA";
219
+ }>;
220
+ isActive: import("@sinclair/typebox").TBoolean;
221
+ precision: import("@sinclair/typebox").TInteger;
222
+ }>;
223
+ payAssetInfo: import("@sinclair/typebox").TObject<{
224
+ symbol: import("@sinclair/typebox").TString;
225
+ id: import("@sinclair/typebox").TString;
226
+ name: import("@sinclair/typebox").TString;
227
+ code: import("@sinclair/typebox").TString;
228
+ category: import("@sinclair/typebox").TEnum<{
229
+ FIAT: "FIAT";
230
+ CRYPTO: "CRYPTO";
231
+ POINT: "POINT";
232
+ RWA: "RWA";
233
+ }>;
234
+ isActive: import("@sinclair/typebox").TBoolean;
235
+ precision: import("@sinclair/typebox").TInteger;
236
+ }>;
237
+ payAccountTypeInfo: import("@sinclair/typebox").TObject<{
238
+ id: import("@sinclair/typebox").TString;
239
+ name: import("@sinclair/typebox").TString;
240
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
241
+ key: import("@sinclair/typebox").TString;
242
+ isActive: import("@sinclair/typebox").TBoolean;
243
+ }>;
244
+ receiveAccountTypeInfo: import("@sinclair/typebox").TObject<{
245
+ id: import("@sinclair/typebox").TString;
246
+ name: import("@sinclair/typebox").TString;
247
+ description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
248
+ key: import("@sinclair/typebox").TString;
249
+ isActive: import("@sinclair/typebox").TBoolean;
250
+ }>;
251
+ latestPriceInfo: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
252
+ id: import("@sinclair/typebox").TString;
253
+ baseAssetId: import("@sinclair/typebox").TString;
254
+ quoteAssetId: import("@sinclair/typebox").TString;
255
+ price: import("@sinclair/typebox").TString;
256
+ source: import("@sinclair/typebox").TString;
257
+ effectiveAt: import("@sinclair/typebox").TDate;
258
+ }>>;
259
+ dailyChangeRate: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
260
+ }>;
261
+ export type AssetConvertProductResponseType = typeof assetConvertProductResponseSchema.static;
471
262
  export declare const assetConvertOrderCreateSchema: import("@sinclair/typebox").TObject<{
472
263
  productId: import("@sinclair/typebox").TString;
473
264
  payAmount: import("@sinclair/typebox").TString;