@r2wa-org/eden 0.0.83 → 0.0.84
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/index.d.ts
CHANGED
|
@@ -12971,6 +12971,7 @@ declare const app: Elysia<"/api", {
|
|
|
12971
12971
|
"market-buy": {
|
|
12972
12972
|
post: {
|
|
12973
12973
|
body: {
|
|
12974
|
+
transactionPassword?: string | undefined;
|
|
12974
12975
|
idempotencyKey: string;
|
|
12975
12976
|
marketId: string;
|
|
12976
12977
|
baseAmount: string;
|
|
@@ -13022,6 +13023,7 @@ declare const app: Elysia<"/api", {
|
|
|
13022
13023
|
"market-sell": {
|
|
13023
13024
|
post: {
|
|
13024
13025
|
body: {
|
|
13026
|
+
transactionPassword?: string | undefined;
|
|
13025
13027
|
idempotencyKey: string;
|
|
13026
13028
|
marketId: string;
|
|
13027
13029
|
baseAmount: string;
|
|
@@ -179,6 +179,7 @@ export declare const tradeMarketOrderCreateSchema: import("@sinclair/typebox").T
|
|
|
179
179
|
marketId: import("@sinclair/typebox").TString;
|
|
180
180
|
baseAmount: import("@sinclair/typebox").TString;
|
|
181
181
|
idempotencyKey: import("@sinclair/typebox").TString;
|
|
182
|
+
transactionPassword: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
182
183
|
}>;
|
|
183
184
|
export type TradeMarketOrderCreateInputType = typeof tradeMarketOrderCreateSchema.static;
|
|
184
185
|
export declare const tradeMarketOrderResponseSchema: import("drizzle-typebox").BuildSchema<"select", {
|
|
@@ -522,6 +522,7 @@ export declare const tradeMarketRouter: Elysia<"/trade_market", {
|
|
|
522
522
|
"market-buy": {
|
|
523
523
|
post: {
|
|
524
524
|
body: {
|
|
525
|
+
transactionPassword?: string | undefined;
|
|
525
526
|
idempotencyKey: string;
|
|
526
527
|
marketId: string;
|
|
527
528
|
baseAmount: string;
|
|
@@ -573,6 +574,7 @@ export declare const tradeMarketRouter: Elysia<"/trade_market", {
|
|
|
573
574
|
"market-sell": {
|
|
574
575
|
post: {
|
|
575
576
|
body: {
|
|
577
|
+
transactionPassword?: string | undefined;
|
|
576
578
|
idempotencyKey: string;
|
|
577
579
|
marketId: string;
|
|
578
580
|
baseAmount: string;
|