@r2wa-org/eden 0.0.62 → 0.0.63
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.
|
@@ -1119,12 +1119,7 @@ export declare const adminRouter: Elysia<"/admin", {
|
|
|
1119
1119
|
post: {
|
|
1120
1120
|
body: {
|
|
1121
1121
|
isActive?: boolean | undefined;
|
|
1122
|
-
|
|
1123
|
-
quoteAsset?: string | undefined;
|
|
1124
|
-
source?: string | undefined;
|
|
1125
|
-
effectiveAt?: Date | undefined;
|
|
1126
|
-
price: string;
|
|
1127
|
-
} | undefined;
|
|
1122
|
+
initialCnyPrice?: string | undefined;
|
|
1128
1123
|
symbol: string;
|
|
1129
1124
|
name: string;
|
|
1130
1125
|
code: string;
|
|
@@ -122,12 +122,7 @@ export declare const assetAdminCreateSchema: import("@sinclair/typebox").TObject
|
|
|
122
122
|
isActive: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
123
123
|
typeId: import("@sinclair/typebox").TString;
|
|
124
124
|
precision: import("@sinclair/typebox").TInteger;
|
|
125
|
-
|
|
126
|
-
price: import("@sinclair/typebox").TString;
|
|
127
|
-
quoteAsset: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
128
|
-
source: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
129
|
-
effectiveAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TDate>;
|
|
130
|
-
}>>;
|
|
125
|
+
initialCnyPrice: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
131
126
|
}>;
|
|
132
127
|
export type AssetAdminCreateInputType = typeof assetAdminCreateSchema.static;
|
|
133
128
|
export declare const assetAdminUpdateSchema: import("@sinclair/typebox").TObject<{
|
|
@@ -493,12 +493,7 @@ export declare const assetAdminRouter: Elysia<"/assets", {
|
|
|
493
493
|
post: {
|
|
494
494
|
body: {
|
|
495
495
|
isActive?: boolean | undefined;
|
|
496
|
-
|
|
497
|
-
quoteAsset?: string | undefined;
|
|
498
|
-
source?: string | undefined;
|
|
499
|
-
effectiveAt?: Date | undefined;
|
|
500
|
-
price: string;
|
|
501
|
-
} | undefined;
|
|
496
|
+
initialCnyPrice?: string | undefined;
|
|
502
497
|
symbol: string;
|
|
503
498
|
name: string;
|
|
504
499
|
code: string;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1442,12 +1442,7 @@ declare const app: Elysia<"/api", {
|
|
|
1442
1442
|
post: {
|
|
1443
1443
|
body: {
|
|
1444
1444
|
isActive?: boolean | undefined;
|
|
1445
|
-
|
|
1446
|
-
quoteAsset?: string | undefined;
|
|
1447
|
-
source?: string | undefined;
|
|
1448
|
-
effectiveAt?: Date | undefined;
|
|
1449
|
-
price: string;
|
|
1450
|
-
} | undefined;
|
|
1445
|
+
initialCnyPrice?: string | undefined;
|
|
1451
1446
|
symbol: string;
|
|
1452
1447
|
name: string;
|
|
1453
1448
|
code: string;
|