@optimex-xyz/market-maker-sdk 0.5.0-dev-476e502 → 0.5.0-dev-64f8b30
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.mts +16 -3
- package/dist/index.d.ts +16 -3
- package/dist/index.js +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4666,11 +4666,24 @@ declare const SubmitSettlementRequestSchema: z.ZodObject<{
|
|
|
4666
4666
|
startIndex: number;
|
|
4667
4667
|
}>;
|
|
4668
4668
|
declare const SubmitSettlementResponseSchema: z.ZodObject<{
|
|
4669
|
-
|
|
4669
|
+
data: z.ZodObject<{
|
|
4670
|
+
message: z.ZodString;
|
|
4671
|
+
}, "strip", z.ZodTypeAny, {
|
|
4672
|
+
message: string;
|
|
4673
|
+
}, {
|
|
4674
|
+
message: string;
|
|
4675
|
+
}>;
|
|
4676
|
+
traceId: z.ZodString;
|
|
4670
4677
|
}, "strip", z.ZodTypeAny, {
|
|
4671
|
-
|
|
4678
|
+
data: {
|
|
4679
|
+
message: string;
|
|
4680
|
+
};
|
|
4681
|
+
traceId: string;
|
|
4672
4682
|
}, {
|
|
4673
|
-
|
|
4683
|
+
data: {
|
|
4684
|
+
message: string;
|
|
4685
|
+
};
|
|
4686
|
+
traceId: string;
|
|
4674
4687
|
}>;
|
|
4675
4688
|
declare const TradeDetailResponseSchema: z.ZodObject<{
|
|
4676
4689
|
data: z.ZodObject<{
|
package/dist/index.d.ts
CHANGED
|
@@ -4666,11 +4666,24 @@ declare const SubmitSettlementRequestSchema: z.ZodObject<{
|
|
|
4666
4666
|
startIndex: number;
|
|
4667
4667
|
}>;
|
|
4668
4668
|
declare const SubmitSettlementResponseSchema: z.ZodObject<{
|
|
4669
|
-
|
|
4669
|
+
data: z.ZodObject<{
|
|
4670
|
+
message: z.ZodString;
|
|
4671
|
+
}, "strip", z.ZodTypeAny, {
|
|
4672
|
+
message: string;
|
|
4673
|
+
}, {
|
|
4674
|
+
message: string;
|
|
4675
|
+
}>;
|
|
4676
|
+
traceId: z.ZodString;
|
|
4670
4677
|
}, "strip", z.ZodTypeAny, {
|
|
4671
|
-
|
|
4678
|
+
data: {
|
|
4679
|
+
message: string;
|
|
4680
|
+
};
|
|
4681
|
+
traceId: string;
|
|
4672
4682
|
}, {
|
|
4673
|
-
|
|
4683
|
+
data: {
|
|
4684
|
+
message: string;
|
|
4685
|
+
};
|
|
4686
|
+
traceId: string;
|
|
4674
4687
|
}>;
|
|
4675
4688
|
declare const TradeDetailResponseSchema: z.ZodObject<{
|
|
4676
4689
|
data: z.ZodObject<{
|
package/dist/index.js
CHANGED
|
@@ -3671,7 +3671,10 @@ var SubmitSettlementRequestSchema = import_zod.z.object({
|
|
|
3671
3671
|
signedAt: import_zod.z.number()
|
|
3672
3672
|
});
|
|
3673
3673
|
var SubmitSettlementResponseSchema = import_zod.z.object({
|
|
3674
|
-
|
|
3674
|
+
data: import_zod.z.object({
|
|
3675
|
+
message: import_zod.z.string()
|
|
3676
|
+
}),
|
|
3677
|
+
traceId: import_zod.z.string()
|
|
3675
3678
|
});
|
|
3676
3679
|
var TokenInfoSchema = import_zod.z.object({
|
|
3677
3680
|
tokenId: import_zod.z.string(),
|
package/dist/index.mjs
CHANGED
|
@@ -3606,7 +3606,10 @@ var SubmitSettlementRequestSchema = z.object({
|
|
|
3606
3606
|
signedAt: z.number()
|
|
3607
3607
|
});
|
|
3608
3608
|
var SubmitSettlementResponseSchema = z.object({
|
|
3609
|
-
|
|
3609
|
+
data: z.object({
|
|
3610
|
+
message: z.string()
|
|
3611
|
+
}),
|
|
3612
|
+
traceId: z.string()
|
|
3610
3613
|
});
|
|
3611
3614
|
var TokenInfoSchema = z.object({
|
|
3612
3615
|
tokenId: z.string(),
|