@wowok/agent-mcp 2.3.13 → 2.3.16
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/config/index.d.ts +1 -0
- package/dist/config/index.js +1 -0
- package/dist/config/runtime.d.ts +26 -0
- package/dist/config/runtime.js +217 -0
- package/dist/customer/industry-risks.d.ts +36 -0
- package/dist/customer/industry-risks.js +424 -0
- package/dist/customer/info-puzzle.d.ts +102 -0
- package/dist/customer/info-puzzle.js +312 -0
- package/dist/customer/order-monitor.d.ts +75 -0
- package/dist/customer/order-monitor.js +327 -0
- package/dist/customer/order-strategy.d.ts +36 -0
- package/dist/customer/order-strategy.js +373 -0
- package/dist/customer/post-purchase.d.ts +42 -0
- package/dist/customer/post-purchase.js +350 -0
- package/dist/customer/reminder-system.d.ts +42 -0
- package/dist/customer/reminder-system.js +295 -0
- package/dist/customer/risk-assessment.d.ts +8 -0
- package/dist/customer/risk-assessment.js +337 -0
- package/dist/customer/types.d.ts +193 -0
- package/dist/customer/types.js +13 -0
- package/dist/customer/user-preferences.d.ts +67 -0
- package/dist/customer/user-preferences.js +451 -0
- package/dist/experience/experience-reuse.d.ts +10 -0
- package/dist/experience/experience-reuse.js +103 -0
- package/dist/experience/index.d.ts +6 -0
- package/dist/experience/index.js +5 -0
- package/dist/experience/intent-distill.d.ts +3 -0
- package/dist/experience/intent-distill.js +83 -0
- package/dist/experience/realtime-feedback.d.ts +5 -0
- package/dist/experience/realtime-feedback.js +77 -0
- package/dist/experience/types.d.ts +50 -0
- package/dist/experience/types.js +1 -0
- package/dist/experience/user-profile.d.ts +25 -0
- package/dist/experience/user-profile.js +171 -0
- package/dist/harness/checkpoint.d.ts +8 -0
- package/dist/harness/checkpoint.js +129 -0
- package/dist/harness/index.d.ts +33 -0
- package/dist/harness/index.js +75 -0
- package/dist/harness/plan.d.ts +18 -0
- package/dist/harness/plan.js +252 -0
- package/dist/harness/recover.d.ts +17 -0
- package/dist/harness/recover.js +139 -0
- package/dist/harness/types.d.ts +137 -0
- package/dist/harness/types.js +1 -0
- package/dist/harness/verify.d.ts +42 -0
- package/dist/harness/verify.js +237 -0
- package/dist/index.js +667 -201
- package/dist/knowledge/acquisition-flywheel.d.ts +50 -0
- package/dist/knowledge/acquisition-flywheel.js +183 -0
- package/dist/knowledge/arbitration-trust.d.ts +24 -0
- package/dist/knowledge/arbitration-trust.js +117 -0
- package/dist/knowledge/audit-rules.d.ts +28 -0
- package/dist/knowledge/audit-rules.js +141 -0
- package/dist/knowledge/demand-matching.d.ts +29 -0
- package/dist/knowledge/demand-matching.js +132 -0
- package/dist/knowledge/dynamic-pricing.d.ts +31 -0
- package/dist/knowledge/dynamic-pricing.js +87 -0
- package/dist/knowledge/flywheel-loop.d.ts +87 -0
- package/dist/knowledge/flywheel-loop.js +378 -0
- package/dist/knowledge/glossary.d.ts +18 -0
- package/dist/knowledge/glossary.js +209 -0
- package/dist/knowledge/index.d.ts +64 -0
- package/dist/knowledge/index.js +66 -0
- package/dist/knowledge/industry-evolution.d.ts +82 -0
- package/dist/knowledge/industry-evolution.js +323 -0
- package/dist/knowledge/industry-generalizer.d.ts +17 -0
- package/dist/knowledge/industry-generalizer.js +381 -0
- package/dist/knowledge/industry-registry.d.ts +49 -0
- package/dist/knowledge/industry-registry.js +167 -0
- package/dist/knowledge/intent-metrics.d.ts +42 -0
- package/dist/knowledge/intent-metrics.js +566 -0
- package/dist/knowledge/process-model.d.ts +24 -0
- package/dist/knowledge/process-model.js +160 -0
- package/dist/knowledge/reputation-rules.d.ts +42 -0
- package/dist/knowledge/reputation-rules.js +99 -0
- package/dist/knowledge/reward-templates.d.ts +25 -0
- package/dist/knowledge/reward-templates.js +125 -0
- package/dist/knowledge/safety-rules.d.ts +36 -0
- package/dist/knowledge/safety-rules.js +171 -0
- package/dist/knowledge/tool-constraints.d.ts +30 -0
- package/dist/knowledge/tool-constraints.js +185 -0
- package/dist/knowledge/trust-metrics.d.ts +37 -0
- package/dist/knowledge/trust-metrics.js +138 -0
- package/dist/loop-engineering/aggregate.d.ts +50 -0
- package/dist/loop-engineering/aggregate.js +132 -0
- package/dist/loop-engineering/diagnose.d.ts +22 -0
- package/dist/loop-engineering/diagnose.js +273 -0
- package/dist/loop-engineering/improve.d.ts +26 -0
- package/dist/loop-engineering/improve.js +229 -0
- package/dist/loop-engineering/index.d.ts +4 -0
- package/dist/loop-engineering/index.js +4 -0
- package/dist/loop-engineering/pipeline.d.ts +17 -0
- package/dist/loop-engineering/pipeline.js +56 -0
- package/dist/mode-market/index.d.ts +3 -0
- package/dist/mode-market/index.js +3 -0
- package/dist/mode-market/registry.d.ts +53 -0
- package/dist/mode-market/registry.js +124 -0
- package/dist/mode-market/review.d.ts +27 -0
- package/dist/mode-market/review.js +214 -0
- package/dist/mode-market/submission.d.ts +25 -0
- package/dist/mode-market/submission.js +85 -0
- package/dist/project/graph.d.ts +71 -0
- package/dist/project/graph.js +314 -0
- package/dist/project/index.d.ts +62 -0
- package/dist/project/index.js +167 -0
- package/dist/project/namespace.d.ts +62 -0
- package/dist/project/namespace.js +181 -0
- package/dist/project/query.d.ts +40 -0
- package/dist/project/query.js +110 -0
- package/dist/safety/confirm-gate.d.ts +15 -0
- package/dist/safety/confirm-gate.js +44 -0
- package/dist/safety/index.d.ts +3 -0
- package/dist/safety/index.js +3 -0
- package/dist/safety/preview.d.ts +2 -0
- package/dist/safety/preview.js +36 -0
- package/dist/schema/call/allocation.d.ts +55 -40
- package/dist/schema/call/arbitration.d.ts +201 -186
- package/dist/schema/call/base.d.ts +2104 -24
- package/dist/schema/call/base.js +168 -22
- package/dist/schema/call/bridge-handler.js +36 -18
- package/dist/schema/call/bridge.d.ts +777 -120
- package/dist/schema/call/bridge.js +13 -2
- package/dist/schema/call/contact.d.ts +15 -0
- package/dist/schema/call/demand.d.ts +69 -54
- package/dist/schema/call/guard.d.ts +125 -80
- package/dist/schema/call/handler.d.ts +5 -1
- package/dist/schema/call/handler.js +108 -3
- package/dist/schema/call/index.d.ts +1 -0
- package/dist/schema/call/index.js +1 -0
- package/dist/schema/call/machine.d.ts +830 -800
- package/dist/schema/call/order.d.ts +27 -12
- package/dist/schema/call/payment.d.ts +15 -0
- package/dist/schema/call/permission.d.ts +15 -0
- package/dist/schema/call/personal.d.ts +15 -0
- package/dist/schema/call/progress.d.ts +21 -6
- package/dist/schema/call/proof.d.ts +42 -12
- package/dist/schema/call/proof.js +3 -3
- package/dist/schema/call/repository.d.ts +91 -76
- package/dist/schema/call/reward.d.ts +51 -36
- package/dist/schema/call/semantic.d.ts +24 -0
- package/dist/schema/call/semantic.js +981 -0
- package/dist/schema/call/service.d.ts +444 -429
- package/dist/schema/call/treasury.d.ts +219 -204
- package/dist/schema/common/index.js +3 -3
- package/dist/schema/local/index.d.ts +341 -74
- package/dist/schema/local/index.js +44 -7
- package/dist/schema/messenger/index.d.ts +1034 -92
- package/dist/schema/messenger/index.js +18 -0
- package/dist/schema/operations.d.ts +2634 -1817
- package/dist/schema/operations.js +16 -5
- package/dist/schema/query/index.d.ts +2293 -2289
- package/dist/schema/query/index.js +34 -28
- package/dist/schemas/account_operation.output.json +28 -16
- package/dist/schemas/account_operation.schema.json +2 -2
- package/dist/schemas/bridge_operation.output.json +520 -0
- package/dist/schemas/bridge_operation.schema.json +15 -0
- package/dist/schemas/guard2file.schema.json +15 -0
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/local_info_operation.output.json +26 -0
- package/dist/schemas/local_info_operation.schema.json +1 -1
- package/dist/schemas/local_mark_operation.output.json +27 -1
- package/dist/schemas/local_mark_operation.schema.json +4 -4
- package/dist/schemas/machineNode2file.schema.json +15 -0
- package/dist/schemas/messenger_operation.output.json +549 -0
- package/dist/schemas/messenger_operation.schema.json +21 -0
- package/dist/schemas/onchain_events.output.json +3 -0
- package/dist/schemas/onchain_operations.output.json +814 -37
- package/dist/schemas/onchain_operations.schema.json +117 -40
- package/dist/schemas/onchain_operations_allocation.schema.json +26 -9
- package/dist/schemas/onchain_operations_arbitration.schema.json +26 -9
- package/dist/schemas/onchain_operations_contact.schema.json +26 -9
- package/dist/schemas/onchain_operations_demand.schema.json +26 -9
- package/dist/schemas/onchain_operations_gen_passport.schema.json +51 -17
- package/dist/schemas/onchain_operations_guard.schema.json +26 -9
- package/dist/schemas/onchain_operations_machine.schema.json +92 -32
- package/dist/schemas/onchain_operations_order.schema.json +26 -9
- package/dist/schemas/onchain_operations_payment.schema.json +26 -9
- package/dist/schemas/onchain_operations_permission.schema.json +26 -9
- package/dist/schemas/onchain_operations_personal.schema.json +26 -9
- package/dist/schemas/onchain_operations_progress.schema.json +26 -9
- package/dist/schemas/onchain_operations_repository.schema.json +26 -9
- package/dist/schemas/onchain_operations_reward.schema.json +26 -9
- package/dist/schemas/onchain_operations_service.schema.json +26 -9
- package/dist/schemas/onchain_operations_treasury.schema.json +26 -9
- package/dist/schemas/onchain_table_data.output.json +224 -69
- package/dist/schemas/onchain_table_data.schema.json +2 -2
- package/dist/schemas/query_toolkit.schema.json +5 -1
- package/dist/telemetry/index.d.ts +19 -0
- package/dist/telemetry/index.js +112 -0
- package/dist/telemetry/redact.d.ts +2 -0
- package/dist/telemetry/redact.js +23 -0
- package/dist/telemetry/storage.d.ts +8 -0
- package/dist/telemetry/storage.js +80 -0
- package/package.json +6 -3
|
@@ -175,7 +175,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
|
|
|
175
175
|
txDigest: string;
|
|
176
176
|
}>;
|
|
177
177
|
packageId: z.ZodString;
|
|
178
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
178
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
179
179
|
sender: z.ZodString;
|
|
180
180
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
181
181
|
transactionModule: z.ZodString;
|
|
@@ -190,7 +190,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
|
|
|
190
190
|
};
|
|
191
191
|
bcsEncoding: "base64";
|
|
192
192
|
packageId: string;
|
|
193
|
-
parsedJson: Record<string,
|
|
193
|
+
parsedJson: Record<string, unknown>;
|
|
194
194
|
sender: string;
|
|
195
195
|
transactionModule: string;
|
|
196
196
|
bcs: string;
|
|
@@ -203,7 +203,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
|
|
|
203
203
|
};
|
|
204
204
|
bcsEncoding: "base64";
|
|
205
205
|
packageId: string;
|
|
206
|
-
parsedJson: Record<string,
|
|
206
|
+
parsedJson: Record<string, unknown>;
|
|
207
207
|
sender: string;
|
|
208
208
|
transactionModule: string;
|
|
209
209
|
bcs: string;
|
|
@@ -220,7 +220,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
|
|
|
220
220
|
txDigest: string;
|
|
221
221
|
}>;
|
|
222
222
|
packageId: z.ZodString;
|
|
223
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
223
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
224
224
|
sender: z.ZodString;
|
|
225
225
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
226
226
|
transactionModule: z.ZodString;
|
|
@@ -235,7 +235,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
|
|
|
235
235
|
};
|
|
236
236
|
bcsEncoding: "base58";
|
|
237
237
|
packageId: string;
|
|
238
|
-
parsedJson: Record<string,
|
|
238
|
+
parsedJson: Record<string, unknown>;
|
|
239
239
|
sender: string;
|
|
240
240
|
transactionModule: string;
|
|
241
241
|
bcs: string;
|
|
@@ -248,7 +248,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
|
|
|
248
248
|
};
|
|
249
249
|
bcsEncoding: "base58";
|
|
250
250
|
packageId: string;
|
|
251
|
-
parsedJson: Record<string,
|
|
251
|
+
parsedJson: Record<string, unknown>;
|
|
252
252
|
sender: string;
|
|
253
253
|
transactionModule: string;
|
|
254
254
|
bcs: string;
|
|
@@ -2808,7 +2808,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
2808
2808
|
txDigest: string;
|
|
2809
2809
|
}>;
|
|
2810
2810
|
packageId: z.ZodString;
|
|
2811
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
2811
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2812
2812
|
sender: z.ZodString;
|
|
2813
2813
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
2814
2814
|
transactionModule: z.ZodString;
|
|
@@ -2823,7 +2823,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
2823
2823
|
};
|
|
2824
2824
|
bcsEncoding: "base64";
|
|
2825
2825
|
packageId: string;
|
|
2826
|
-
parsedJson: Record<string,
|
|
2826
|
+
parsedJson: Record<string, unknown>;
|
|
2827
2827
|
sender: string;
|
|
2828
2828
|
transactionModule: string;
|
|
2829
2829
|
bcs: string;
|
|
@@ -2836,7 +2836,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
2836
2836
|
};
|
|
2837
2837
|
bcsEncoding: "base64";
|
|
2838
2838
|
packageId: string;
|
|
2839
|
-
parsedJson: Record<string,
|
|
2839
|
+
parsedJson: Record<string, unknown>;
|
|
2840
2840
|
sender: string;
|
|
2841
2841
|
transactionModule: string;
|
|
2842
2842
|
bcs: string;
|
|
@@ -2853,7 +2853,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
2853
2853
|
txDigest: string;
|
|
2854
2854
|
}>;
|
|
2855
2855
|
packageId: z.ZodString;
|
|
2856
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
2856
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2857
2857
|
sender: z.ZodString;
|
|
2858
2858
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
2859
2859
|
transactionModule: z.ZodString;
|
|
@@ -2868,7 +2868,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
2868
2868
|
};
|
|
2869
2869
|
bcsEncoding: "base58";
|
|
2870
2870
|
packageId: string;
|
|
2871
|
-
parsedJson: Record<string,
|
|
2871
|
+
parsedJson: Record<string, unknown>;
|
|
2872
2872
|
sender: string;
|
|
2873
2873
|
transactionModule: string;
|
|
2874
2874
|
bcs: string;
|
|
@@ -2881,7 +2881,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
2881
2881
|
};
|
|
2882
2882
|
bcsEncoding: "base58";
|
|
2883
2883
|
packageId: string;
|
|
2884
|
-
parsedJson: Record<string,
|
|
2884
|
+
parsedJson: Record<string, unknown>;
|
|
2885
2885
|
sender: string;
|
|
2886
2886
|
transactionModule: string;
|
|
2887
2887
|
bcs: string;
|
|
@@ -3558,7 +3558,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3558
3558
|
};
|
|
3559
3559
|
bcsEncoding: "base64";
|
|
3560
3560
|
packageId: string;
|
|
3561
|
-
parsedJson: Record<string,
|
|
3561
|
+
parsedJson: Record<string, unknown>;
|
|
3562
3562
|
sender: string;
|
|
3563
3563
|
transactionModule: string;
|
|
3564
3564
|
bcs: string;
|
|
@@ -3571,7 +3571,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3571
3571
|
};
|
|
3572
3572
|
bcsEncoding: "base58";
|
|
3573
3573
|
packageId: string;
|
|
3574
|
-
parsedJson: Record<string,
|
|
3574
|
+
parsedJson: Record<string, unknown>;
|
|
3575
3575
|
sender: string;
|
|
3576
3576
|
transactionModule: string;
|
|
3577
3577
|
bcs: string;
|
|
@@ -3847,7 +3847,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3847
3847
|
};
|
|
3848
3848
|
bcsEncoding: "base64";
|
|
3849
3849
|
packageId: string;
|
|
3850
|
-
parsedJson: Record<string,
|
|
3850
|
+
parsedJson: Record<string, unknown>;
|
|
3851
3851
|
sender: string;
|
|
3852
3852
|
transactionModule: string;
|
|
3853
3853
|
bcs: string;
|
|
@@ -3860,7 +3860,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
|
|
|
3860
3860
|
};
|
|
3861
3861
|
bcsEncoding: "base58";
|
|
3862
3862
|
packageId: string;
|
|
3863
|
-
parsedJson: Record<string,
|
|
3863
|
+
parsedJson: Record<string, unknown>;
|
|
3864
3864
|
sender: string;
|
|
3865
3865
|
transactionModule: string;
|
|
3866
3866
|
bcs: string;
|
|
@@ -4356,7 +4356,7 @@ export declare const QueryAccountResultSchema: z.ZodObject<{
|
|
|
4356
4356
|
nextCursor?: string | null | undefined;
|
|
4357
4357
|
} | undefined;
|
|
4358
4358
|
}>;
|
|
4359
|
-
export declare const AccountOperationSchema: z.ZodObject<{
|
|
4359
|
+
export declare const AccountOperationSchema: z.ZodEffects<z.ZodObject<{
|
|
4360
4360
|
gen: z.ZodOptional<z.ZodObject<{
|
|
4361
4361
|
name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4362
4362
|
replaceExistName: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4475,7 +4475,101 @@ export declare const AccountOperationSchema: z.ZodObject<{
|
|
|
4475
4475
|
m: string | null;
|
|
4476
4476
|
name_or_account?: string | undefined;
|
|
4477
4477
|
}>>;
|
|
4478
|
-
}, "
|
|
4478
|
+
}, "strict", z.ZodTypeAny, {
|
|
4479
|
+
gen?: {
|
|
4480
|
+
name?: string | undefined;
|
|
4481
|
+
replaceExistName?: boolean | undefined;
|
|
4482
|
+
m?: string | null | undefined;
|
|
4483
|
+
} | undefined;
|
|
4484
|
+
faucet?: {
|
|
4485
|
+
network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
|
|
4486
|
+
name_or_address?: string | undefined;
|
|
4487
|
+
} | undefined;
|
|
4488
|
+
suspend?: {
|
|
4489
|
+
name_or_address?: string | undefined;
|
|
4490
|
+
} | undefined;
|
|
4491
|
+
resume?: {
|
|
4492
|
+
address: string;
|
|
4493
|
+
name?: string | undefined;
|
|
4494
|
+
} | undefined;
|
|
4495
|
+
rename?: {
|
|
4496
|
+
new_name: string;
|
|
4497
|
+
name_or_address?: string | undefined;
|
|
4498
|
+
} | undefined;
|
|
4499
|
+
swap_name?: {
|
|
4500
|
+
name1?: string | undefined;
|
|
4501
|
+
name2?: string | undefined;
|
|
4502
|
+
} | undefined;
|
|
4503
|
+
transfer?: {
|
|
4504
|
+
amount: string | number;
|
|
4505
|
+
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
4506
|
+
token_type?: string | undefined;
|
|
4507
|
+
name_or_address_from?: string | undefined;
|
|
4508
|
+
name_or_address_to?: string | undefined;
|
|
4509
|
+
} | undefined;
|
|
4510
|
+
get?: {
|
|
4511
|
+
balance_required: string | number;
|
|
4512
|
+
name_or_address?: string | undefined;
|
|
4513
|
+
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
4514
|
+
token_type?: string | undefined;
|
|
4515
|
+
} | undefined;
|
|
4516
|
+
signData?: {
|
|
4517
|
+
data: string;
|
|
4518
|
+
name_or_address?: string | undefined;
|
|
4519
|
+
data_encoding?: "base64" | "utf8" | "hex" | undefined;
|
|
4520
|
+
} | undefined;
|
|
4521
|
+
messenger?: {
|
|
4522
|
+
m: string | null;
|
|
4523
|
+
name_or_account?: string | undefined;
|
|
4524
|
+
} | undefined;
|
|
4525
|
+
}, {
|
|
4526
|
+
gen?: {
|
|
4527
|
+
name?: string | undefined;
|
|
4528
|
+
replaceExistName?: boolean | undefined;
|
|
4529
|
+
m?: string | null | undefined;
|
|
4530
|
+
} | undefined;
|
|
4531
|
+
faucet?: {
|
|
4532
|
+
network: import("@wowok/wowok").ENTRYPOINT.Testnet | import("@wowok/wowok").ENTRYPOINT.Localnet;
|
|
4533
|
+
name_or_address?: string | undefined;
|
|
4534
|
+
} | undefined;
|
|
4535
|
+
suspend?: {
|
|
4536
|
+
name_or_address?: string | undefined;
|
|
4537
|
+
} | undefined;
|
|
4538
|
+
resume?: {
|
|
4539
|
+
address: string;
|
|
4540
|
+
name?: string | undefined;
|
|
4541
|
+
} | undefined;
|
|
4542
|
+
rename?: {
|
|
4543
|
+
new_name: string;
|
|
4544
|
+
name_or_address?: string | undefined;
|
|
4545
|
+
} | undefined;
|
|
4546
|
+
swap_name?: {
|
|
4547
|
+
name1?: string | undefined;
|
|
4548
|
+
name2?: string | undefined;
|
|
4549
|
+
} | undefined;
|
|
4550
|
+
transfer?: {
|
|
4551
|
+
amount: string | number;
|
|
4552
|
+
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
4553
|
+
token_type?: string | undefined;
|
|
4554
|
+
name_or_address_from?: string | undefined;
|
|
4555
|
+
name_or_address_to?: string | undefined;
|
|
4556
|
+
} | undefined;
|
|
4557
|
+
get?: {
|
|
4558
|
+
balance_required: string | number;
|
|
4559
|
+
name_or_address?: string | undefined;
|
|
4560
|
+
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
4561
|
+
token_type?: string | undefined;
|
|
4562
|
+
} | undefined;
|
|
4563
|
+
signData?: {
|
|
4564
|
+
data: string;
|
|
4565
|
+
name_or_address?: string | undefined;
|
|
4566
|
+
data_encoding?: "base64" | "utf8" | "hex" | undefined;
|
|
4567
|
+
} | undefined;
|
|
4568
|
+
messenger?: {
|
|
4569
|
+
m: string | null;
|
|
4570
|
+
name_or_account?: string | undefined;
|
|
4571
|
+
} | undefined;
|
|
4572
|
+
}>, {
|
|
4479
4573
|
gen?: {
|
|
4480
4574
|
name?: string | undefined;
|
|
4481
4575
|
replaceExistName?: boolean | undefined;
|
|
@@ -5562,7 +5656,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5562
5656
|
txDigest: string;
|
|
5563
5657
|
}>;
|
|
5564
5658
|
packageId: z.ZodString;
|
|
5565
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
5659
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5566
5660
|
sender: z.ZodString;
|
|
5567
5661
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
5568
5662
|
transactionModule: z.ZodString;
|
|
@@ -5577,7 +5671,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5577
5671
|
};
|
|
5578
5672
|
bcsEncoding: "base64";
|
|
5579
5673
|
packageId: string;
|
|
5580
|
-
parsedJson: Record<string,
|
|
5674
|
+
parsedJson: Record<string, unknown>;
|
|
5581
5675
|
sender: string;
|
|
5582
5676
|
transactionModule: string;
|
|
5583
5677
|
bcs: string;
|
|
@@ -5590,7 +5684,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5590
5684
|
};
|
|
5591
5685
|
bcsEncoding: "base64";
|
|
5592
5686
|
packageId: string;
|
|
5593
|
-
parsedJson: Record<string,
|
|
5687
|
+
parsedJson: Record<string, unknown>;
|
|
5594
5688
|
sender: string;
|
|
5595
5689
|
transactionModule: string;
|
|
5596
5690
|
bcs: string;
|
|
@@ -5607,7 +5701,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5607
5701
|
txDigest: string;
|
|
5608
5702
|
}>;
|
|
5609
5703
|
packageId: z.ZodString;
|
|
5610
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
5704
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5611
5705
|
sender: z.ZodString;
|
|
5612
5706
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
5613
5707
|
transactionModule: z.ZodString;
|
|
@@ -5622,7 +5716,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5622
5716
|
};
|
|
5623
5717
|
bcsEncoding: "base58";
|
|
5624
5718
|
packageId: string;
|
|
5625
|
-
parsedJson: Record<string,
|
|
5719
|
+
parsedJson: Record<string, unknown>;
|
|
5626
5720
|
sender: string;
|
|
5627
5721
|
transactionModule: string;
|
|
5628
5722
|
bcs: string;
|
|
@@ -5635,7 +5729,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5635
5729
|
};
|
|
5636
5730
|
bcsEncoding: "base58";
|
|
5637
5731
|
packageId: string;
|
|
5638
|
-
parsedJson: Record<string,
|
|
5732
|
+
parsedJson: Record<string, unknown>;
|
|
5639
5733
|
sender: string;
|
|
5640
5734
|
transactionModule: string;
|
|
5641
5735
|
bcs: string;
|
|
@@ -6312,7 +6406,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6312
6406
|
};
|
|
6313
6407
|
bcsEncoding: "base64";
|
|
6314
6408
|
packageId: string;
|
|
6315
|
-
parsedJson: Record<string,
|
|
6409
|
+
parsedJson: Record<string, unknown>;
|
|
6316
6410
|
sender: string;
|
|
6317
6411
|
transactionModule: string;
|
|
6318
6412
|
bcs: string;
|
|
@@ -6325,7 +6419,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6325
6419
|
};
|
|
6326
6420
|
bcsEncoding: "base58";
|
|
6327
6421
|
packageId: string;
|
|
6328
|
-
parsedJson: Record<string,
|
|
6422
|
+
parsedJson: Record<string, unknown>;
|
|
6329
6423
|
sender: string;
|
|
6330
6424
|
transactionModule: string;
|
|
6331
6425
|
bcs: string;
|
|
@@ -6601,7 +6695,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6601
6695
|
};
|
|
6602
6696
|
bcsEncoding: "base64";
|
|
6603
6697
|
packageId: string;
|
|
6604
|
-
parsedJson: Record<string,
|
|
6698
|
+
parsedJson: Record<string, unknown>;
|
|
6605
6699
|
sender: string;
|
|
6606
6700
|
transactionModule: string;
|
|
6607
6701
|
bcs: string;
|
|
@@ -6614,7 +6708,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6614
6708
|
};
|
|
6615
6709
|
bcsEncoding: "base58";
|
|
6616
6710
|
packageId: string;
|
|
6617
|
-
parsedJson: Record<string,
|
|
6711
|
+
parsedJson: Record<string, unknown>;
|
|
6618
6712
|
sender: string;
|
|
6619
6713
|
transactionModule: string;
|
|
6620
6714
|
bcs: string;
|
|
@@ -6970,7 +7064,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6970
7064
|
};
|
|
6971
7065
|
bcsEncoding: "base64";
|
|
6972
7066
|
packageId: string;
|
|
6973
|
-
parsedJson: Record<string,
|
|
7067
|
+
parsedJson: Record<string, unknown>;
|
|
6974
7068
|
sender: string;
|
|
6975
7069
|
transactionModule: string;
|
|
6976
7070
|
bcs: string;
|
|
@@ -6983,7 +7077,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6983
7077
|
};
|
|
6984
7078
|
bcsEncoding: "base58";
|
|
6985
7079
|
packageId: string;
|
|
6986
|
-
parsedJson: Record<string,
|
|
7080
|
+
parsedJson: Record<string, unknown>;
|
|
6987
7081
|
sender: string;
|
|
6988
7082
|
transactionModule: string;
|
|
6989
7083
|
bcs: string;
|
|
@@ -7311,7 +7405,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7311
7405
|
};
|
|
7312
7406
|
bcsEncoding: "base64";
|
|
7313
7407
|
packageId: string;
|
|
7314
|
-
parsedJson: Record<string,
|
|
7408
|
+
parsedJson: Record<string, unknown>;
|
|
7315
7409
|
sender: string;
|
|
7316
7410
|
transactionModule: string;
|
|
7317
7411
|
bcs: string;
|
|
@@ -7324,7 +7418,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7324
7418
|
};
|
|
7325
7419
|
bcsEncoding: "base58";
|
|
7326
7420
|
packageId: string;
|
|
7327
|
-
parsedJson: Record<string,
|
|
7421
|
+
parsedJson: Record<string, unknown>;
|
|
7328
7422
|
sender: string;
|
|
7329
7423
|
transactionModule: string;
|
|
7330
7424
|
bcs: string;
|
|
@@ -7434,7 +7528,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7434
7528
|
name_or_account?: string | undefined;
|
|
7435
7529
|
} | undefined;
|
|
7436
7530
|
}>;
|
|
7437
|
-
export declare const LocalMarkOperationSchema: z.ZodObject<{
|
|
7531
|
+
export declare const LocalMarkOperationSchema: z.ZodEffects<z.ZodObject<{
|
|
7438
7532
|
add: z.ZodOptional<z.ZodObject<{
|
|
7439
7533
|
op: z.ZodLiteral<"add">;
|
|
7440
7534
|
data: z.ZodArray<z.ZodObject<{
|
|
@@ -7541,6 +7635,44 @@ export declare const LocalMarkOperationSchema: z.ZodObject<{
|
|
|
7541
7635
|
clear?: {
|
|
7542
7636
|
op: "clear";
|
|
7543
7637
|
} | undefined;
|
|
7638
|
+
}>, {
|
|
7639
|
+
add?: {
|
|
7640
|
+
data: {
|
|
7641
|
+
address: string;
|
|
7642
|
+
name?: {
|
|
7643
|
+
value: string;
|
|
7644
|
+
replaceExistName: boolean;
|
|
7645
|
+
} | undefined;
|
|
7646
|
+
tags?: string[] | undefined;
|
|
7647
|
+
}[];
|
|
7648
|
+
op: "add";
|
|
7649
|
+
} | undefined;
|
|
7650
|
+
remove?: {
|
|
7651
|
+
op: "remove";
|
|
7652
|
+
names: string[];
|
|
7653
|
+
} | undefined;
|
|
7654
|
+
clear?: {
|
|
7655
|
+
op: "clear";
|
|
7656
|
+
} | undefined;
|
|
7657
|
+
}, {
|
|
7658
|
+
add?: {
|
|
7659
|
+
data: {
|
|
7660
|
+
address: string;
|
|
7661
|
+
name?: {
|
|
7662
|
+
value: string;
|
|
7663
|
+
replaceExistName?: boolean | undefined;
|
|
7664
|
+
} | undefined;
|
|
7665
|
+
tags?: string[] | undefined;
|
|
7666
|
+
}[];
|
|
7667
|
+
op: "add";
|
|
7668
|
+
} | undefined;
|
|
7669
|
+
remove?: {
|
|
7670
|
+
op: "remove";
|
|
7671
|
+
names: string[];
|
|
7672
|
+
} | undefined;
|
|
7673
|
+
clear?: {
|
|
7674
|
+
op: "clear";
|
|
7675
|
+
} | undefined;
|
|
7544
7676
|
}>;
|
|
7545
7677
|
export declare const LocalMarkOperationResultSchema: z.ZodObject<{
|
|
7546
7678
|
clear: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7615,7 +7747,7 @@ export declare const LocalMarkOperationResultSchema: z.ZodObject<{
|
|
|
7615
7747
|
}[] | undefined;
|
|
7616
7748
|
clear?: boolean | undefined;
|
|
7617
7749
|
}>;
|
|
7618
|
-
export declare const LocalInfoOperationSchema: z.ZodObject<{
|
|
7750
|
+
export declare const LocalInfoOperationSchema: z.ZodEffects<z.ZodObject<{
|
|
7619
7751
|
add: z.ZodOptional<z.ZodObject<{
|
|
7620
7752
|
op: z.ZodLiteral<"add">;
|
|
7621
7753
|
data: z.ZodArray<z.ZodObject<{
|
|
@@ -7733,6 +7865,52 @@ export declare const LocalInfoOperationSchema: z.ZodObject<{
|
|
|
7733
7865
|
contents: string[];
|
|
7734
7866
|
op: "reset";
|
|
7735
7867
|
} | undefined;
|
|
7868
|
+
}>, {
|
|
7869
|
+
add?: {
|
|
7870
|
+
data: {
|
|
7871
|
+
name: string;
|
|
7872
|
+
default: string;
|
|
7873
|
+
createdAt?: number | undefined;
|
|
7874
|
+
updatedAt?: number | undefined;
|
|
7875
|
+
contents?: string[] | undefined;
|
|
7876
|
+
}[];
|
|
7877
|
+
op: "add";
|
|
7878
|
+
} | undefined;
|
|
7879
|
+
remove?: {
|
|
7880
|
+
data: string[];
|
|
7881
|
+
op: "remove";
|
|
7882
|
+
} | undefined;
|
|
7883
|
+
clear?: {
|
|
7884
|
+
op: "clear";
|
|
7885
|
+
} | undefined;
|
|
7886
|
+
reset?: {
|
|
7887
|
+
name: string;
|
|
7888
|
+
contents: string[];
|
|
7889
|
+
op: "reset";
|
|
7890
|
+
} | undefined;
|
|
7891
|
+
}, {
|
|
7892
|
+
add?: {
|
|
7893
|
+
data: {
|
|
7894
|
+
name: string;
|
|
7895
|
+
default: string;
|
|
7896
|
+
createdAt?: number | undefined;
|
|
7897
|
+
updatedAt?: number | undefined;
|
|
7898
|
+
contents?: string[] | undefined;
|
|
7899
|
+
}[];
|
|
7900
|
+
op: "add";
|
|
7901
|
+
} | undefined;
|
|
7902
|
+
remove?: {
|
|
7903
|
+
data: string[];
|
|
7904
|
+
op: "remove";
|
|
7905
|
+
} | undefined;
|
|
7906
|
+
clear?: {
|
|
7907
|
+
op: "clear";
|
|
7908
|
+
} | undefined;
|
|
7909
|
+
reset?: {
|
|
7910
|
+
name: string;
|
|
7911
|
+
contents: string[];
|
|
7912
|
+
op: "reset";
|
|
7913
|
+
} | undefined;
|
|
7736
7914
|
}>;
|
|
7737
7915
|
export declare const LocalInfoOperationResultSchema: z.ZodObject<{
|
|
7738
7916
|
success: z.ZodBoolean;
|
|
@@ -7896,6 +8074,7 @@ export declare const AccountFilterSchema: z.ZodObject<{
|
|
|
7896
8074
|
gte?: number | undefined;
|
|
7897
8075
|
lte?: number | undefined;
|
|
7898
8076
|
}>>;
|
|
8077
|
+
includePubkey: z.ZodOptional<z.ZodBoolean>;
|
|
7899
8078
|
}, "strip", z.ZodTypeAny, {
|
|
7900
8079
|
address?: string | undefined;
|
|
7901
8080
|
name?: string | undefined;
|
|
@@ -7910,6 +8089,7 @@ export declare const AccountFilterSchema: z.ZodObject<{
|
|
|
7910
8089
|
m?: string | undefined;
|
|
7911
8090
|
suspended?: boolean | undefined;
|
|
7912
8091
|
hasMessenger?: boolean | undefined;
|
|
8092
|
+
includePubkey?: boolean | undefined;
|
|
7913
8093
|
}, {
|
|
7914
8094
|
address?: string | undefined;
|
|
7915
8095
|
name?: string | undefined;
|
|
@@ -7924,6 +8104,7 @@ export declare const AccountFilterSchema: z.ZodObject<{
|
|
|
7924
8104
|
m?: string | undefined;
|
|
7925
8105
|
suspended?: boolean | undefined;
|
|
7926
8106
|
hasMessenger?: boolean | undefined;
|
|
8107
|
+
includePubkey?: boolean | undefined;
|
|
7927
8108
|
}>;
|
|
7928
8109
|
export declare const QueryAccountListSchema: z.ZodObject<{
|
|
7929
8110
|
filter: z.ZodOptional<z.ZodObject<{
|
|
@@ -7952,6 +8133,7 @@ export declare const QueryAccountListSchema: z.ZodObject<{
|
|
|
7952
8133
|
gte?: number | undefined;
|
|
7953
8134
|
lte?: number | undefined;
|
|
7954
8135
|
}>>;
|
|
8136
|
+
includePubkey: z.ZodOptional<z.ZodBoolean>;
|
|
7955
8137
|
}, "strip", z.ZodTypeAny, {
|
|
7956
8138
|
address?: string | undefined;
|
|
7957
8139
|
name?: string | undefined;
|
|
@@ -7966,6 +8148,7 @@ export declare const QueryAccountListSchema: z.ZodObject<{
|
|
|
7966
8148
|
m?: string | undefined;
|
|
7967
8149
|
suspended?: boolean | undefined;
|
|
7968
8150
|
hasMessenger?: boolean | undefined;
|
|
8151
|
+
includePubkey?: boolean | undefined;
|
|
7969
8152
|
}, {
|
|
7970
8153
|
address?: string | undefined;
|
|
7971
8154
|
name?: string | undefined;
|
|
@@ -7980,6 +8163,7 @@ export declare const QueryAccountListSchema: z.ZodObject<{
|
|
|
7980
8163
|
m?: string | undefined;
|
|
7981
8164
|
suspended?: boolean | undefined;
|
|
7982
8165
|
hasMessenger?: boolean | undefined;
|
|
8166
|
+
includePubkey?: boolean | undefined;
|
|
7983
8167
|
}>>;
|
|
7984
8168
|
}, "strip", z.ZodTypeAny, {
|
|
7985
8169
|
filter?: {
|
|
@@ -7996,6 +8180,7 @@ export declare const QueryAccountListSchema: z.ZodObject<{
|
|
|
7996
8180
|
m?: string | undefined;
|
|
7997
8181
|
suspended?: boolean | undefined;
|
|
7998
8182
|
hasMessenger?: boolean | undefined;
|
|
8183
|
+
includePubkey?: boolean | undefined;
|
|
7999
8184
|
} | undefined;
|
|
8000
8185
|
}, {
|
|
8001
8186
|
filter?: {
|
|
@@ -8012,6 +8197,7 @@ export declare const QueryAccountListSchema: z.ZodObject<{
|
|
|
8012
8197
|
m?: string | undefined;
|
|
8013
8198
|
suspended?: boolean | undefined;
|
|
8014
8199
|
hasMessenger?: boolean | undefined;
|
|
8200
|
+
includePubkey?: boolean | undefined;
|
|
8015
8201
|
} | undefined;
|
|
8016
8202
|
}>;
|
|
8017
8203
|
export declare const AccountDataSchema: z.ZodObject<{
|
|
@@ -9219,7 +9405,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9219
9405
|
txDigest: string;
|
|
9220
9406
|
}>;
|
|
9221
9407
|
packageId: z.ZodString;
|
|
9222
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
9408
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
9223
9409
|
sender: z.ZodString;
|
|
9224
9410
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
9225
9411
|
transactionModule: z.ZodString;
|
|
@@ -9234,7 +9420,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9234
9420
|
};
|
|
9235
9421
|
bcsEncoding: "base64";
|
|
9236
9422
|
packageId: string;
|
|
9237
|
-
parsedJson: Record<string,
|
|
9423
|
+
parsedJson: Record<string, unknown>;
|
|
9238
9424
|
sender: string;
|
|
9239
9425
|
transactionModule: string;
|
|
9240
9426
|
bcs: string;
|
|
@@ -9247,7 +9433,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9247
9433
|
};
|
|
9248
9434
|
bcsEncoding: "base64";
|
|
9249
9435
|
packageId: string;
|
|
9250
|
-
parsedJson: Record<string,
|
|
9436
|
+
parsedJson: Record<string, unknown>;
|
|
9251
9437
|
sender: string;
|
|
9252
9438
|
transactionModule: string;
|
|
9253
9439
|
bcs: string;
|
|
@@ -9264,7 +9450,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9264
9450
|
txDigest: string;
|
|
9265
9451
|
}>;
|
|
9266
9452
|
packageId: z.ZodString;
|
|
9267
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
9453
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
9268
9454
|
sender: z.ZodString;
|
|
9269
9455
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
9270
9456
|
transactionModule: z.ZodString;
|
|
@@ -9279,7 +9465,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9279
9465
|
};
|
|
9280
9466
|
bcsEncoding: "base58";
|
|
9281
9467
|
packageId: string;
|
|
9282
|
-
parsedJson: Record<string,
|
|
9468
|
+
parsedJson: Record<string, unknown>;
|
|
9283
9469
|
sender: string;
|
|
9284
9470
|
transactionModule: string;
|
|
9285
9471
|
bcs: string;
|
|
@@ -9292,7 +9478,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9292
9478
|
};
|
|
9293
9479
|
bcsEncoding: "base58";
|
|
9294
9480
|
packageId: string;
|
|
9295
|
-
parsedJson: Record<string,
|
|
9481
|
+
parsedJson: Record<string, unknown>;
|
|
9296
9482
|
sender: string;
|
|
9297
9483
|
transactionModule: string;
|
|
9298
9484
|
bcs: string;
|
|
@@ -9969,7 +10155,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9969
10155
|
};
|
|
9970
10156
|
bcsEncoding: "base64";
|
|
9971
10157
|
packageId: string;
|
|
9972
|
-
parsedJson: Record<string,
|
|
10158
|
+
parsedJson: Record<string, unknown>;
|
|
9973
10159
|
sender: string;
|
|
9974
10160
|
transactionModule: string;
|
|
9975
10161
|
bcs: string;
|
|
@@ -9982,7 +10168,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9982
10168
|
};
|
|
9983
10169
|
bcsEncoding: "base58";
|
|
9984
10170
|
packageId: string;
|
|
9985
|
-
parsedJson: Record<string,
|
|
10171
|
+
parsedJson: Record<string, unknown>;
|
|
9986
10172
|
sender: string;
|
|
9987
10173
|
transactionModule: string;
|
|
9988
10174
|
bcs: string;
|
|
@@ -10258,7 +10444,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10258
10444
|
};
|
|
10259
10445
|
bcsEncoding: "base64";
|
|
10260
10446
|
packageId: string;
|
|
10261
|
-
parsedJson: Record<string,
|
|
10447
|
+
parsedJson: Record<string, unknown>;
|
|
10262
10448
|
sender: string;
|
|
10263
10449
|
transactionModule: string;
|
|
10264
10450
|
bcs: string;
|
|
@@ -10271,7 +10457,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10271
10457
|
};
|
|
10272
10458
|
bcsEncoding: "base58";
|
|
10273
10459
|
packageId: string;
|
|
10274
|
-
parsedJson: Record<string,
|
|
10460
|
+
parsedJson: Record<string, unknown>;
|
|
10275
10461
|
sender: string;
|
|
10276
10462
|
transactionModule: string;
|
|
10277
10463
|
bcs: string;
|
|
@@ -10627,7 +10813,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10627
10813
|
};
|
|
10628
10814
|
bcsEncoding: "base64";
|
|
10629
10815
|
packageId: string;
|
|
10630
|
-
parsedJson: Record<string,
|
|
10816
|
+
parsedJson: Record<string, unknown>;
|
|
10631
10817
|
sender: string;
|
|
10632
10818
|
transactionModule: string;
|
|
10633
10819
|
bcs: string;
|
|
@@ -10640,7 +10826,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10640
10826
|
};
|
|
10641
10827
|
bcsEncoding: "base58";
|
|
10642
10828
|
packageId: string;
|
|
10643
|
-
parsedJson: Record<string,
|
|
10829
|
+
parsedJson: Record<string, unknown>;
|
|
10644
10830
|
sender: string;
|
|
10645
10831
|
transactionModule: string;
|
|
10646
10832
|
bcs: string;
|
|
@@ -10968,7 +11154,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10968
11154
|
};
|
|
10969
11155
|
bcsEncoding: "base64";
|
|
10970
11156
|
packageId: string;
|
|
10971
|
-
parsedJson: Record<string,
|
|
11157
|
+
parsedJson: Record<string, unknown>;
|
|
10972
11158
|
sender: string;
|
|
10973
11159
|
transactionModule: string;
|
|
10974
11160
|
bcs: string;
|
|
@@ -10981,7 +11167,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10981
11167
|
};
|
|
10982
11168
|
bcsEncoding: "base58";
|
|
10983
11169
|
packageId: string;
|
|
10984
|
-
parsedJson: Record<string,
|
|
11170
|
+
parsedJson: Record<string, unknown>;
|
|
10985
11171
|
sender: string;
|
|
10986
11172
|
transactionModule: string;
|
|
10987
11173
|
bcs: string;
|
|
@@ -11312,7 +11498,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11312
11498
|
};
|
|
11313
11499
|
bcsEncoding: "base64";
|
|
11314
11500
|
packageId: string;
|
|
11315
|
-
parsedJson: Record<string,
|
|
11501
|
+
parsedJson: Record<string, unknown>;
|
|
11316
11502
|
sender: string;
|
|
11317
11503
|
transactionModule: string;
|
|
11318
11504
|
bcs: string;
|
|
@@ -11325,7 +11511,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11325
11511
|
};
|
|
11326
11512
|
bcsEncoding: "base58";
|
|
11327
11513
|
packageId: string;
|
|
11328
|
-
parsedJson: Record<string,
|
|
11514
|
+
parsedJson: Record<string, unknown>;
|
|
11329
11515
|
sender: string;
|
|
11330
11516
|
transactionModule: string;
|
|
11331
11517
|
bcs: string;
|
|
@@ -11656,7 +11842,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11656
11842
|
};
|
|
11657
11843
|
bcsEncoding: "base64";
|
|
11658
11844
|
packageId: string;
|
|
11659
|
-
parsedJson: Record<string,
|
|
11845
|
+
parsedJson: Record<string, unknown>;
|
|
11660
11846
|
sender: string;
|
|
11661
11847
|
transactionModule: string;
|
|
11662
11848
|
bcs: string;
|
|
@@ -11669,7 +11855,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11669
11855
|
};
|
|
11670
11856
|
bcsEncoding: "base58";
|
|
11671
11857
|
packageId: string;
|
|
11672
|
-
parsedJson: Record<string,
|
|
11858
|
+
parsedJson: Record<string, unknown>;
|
|
11673
11859
|
sender: string;
|
|
11674
11860
|
transactionModule: string;
|
|
11675
11861
|
bcs: string;
|
|
@@ -11780,14 +11966,23 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11780
11966
|
} | undefined;
|
|
11781
11967
|
};
|
|
11782
11968
|
}>, z.ZodObject<{
|
|
11969
|
+
error_code: z.ZodOptional<z.ZodEnum<["invalid_parameter", "guard_rejected", "state_conflict", "insufficient_balance", "object_not_found", "permission_denied", "immutable_violation", "network_error", "unknown"]>>;
|
|
11970
|
+
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
11971
|
+
recovery_hint: z.ZodOptional<z.ZodString>;
|
|
11783
11972
|
status: z.ZodLiteral<"error">;
|
|
11784
11973
|
error: z.ZodString;
|
|
11785
11974
|
}, "strip", z.ZodTypeAny, {
|
|
11786
11975
|
status: "error";
|
|
11787
11976
|
error: string;
|
|
11977
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
11978
|
+
retryable?: boolean | undefined;
|
|
11979
|
+
recovery_hint?: string | undefined;
|
|
11788
11980
|
}, {
|
|
11789
11981
|
status: "error";
|
|
11790
11982
|
error: string;
|
|
11983
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
11984
|
+
retryable?: boolean | undefined;
|
|
11985
|
+
recovery_hint?: string | undefined;
|
|
11791
11986
|
}>]>;
|
|
11792
11987
|
export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
11793
11988
|
result: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -12784,7 +12979,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12784
12979
|
txDigest: string;
|
|
12785
12980
|
}>;
|
|
12786
12981
|
packageId: z.ZodString;
|
|
12787
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
12982
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12788
12983
|
sender: z.ZodString;
|
|
12789
12984
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12790
12985
|
transactionModule: z.ZodString;
|
|
@@ -12799,7 +12994,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12799
12994
|
};
|
|
12800
12995
|
bcsEncoding: "base64";
|
|
12801
12996
|
packageId: string;
|
|
12802
|
-
parsedJson: Record<string,
|
|
12997
|
+
parsedJson: Record<string, unknown>;
|
|
12803
12998
|
sender: string;
|
|
12804
12999
|
transactionModule: string;
|
|
12805
13000
|
bcs: string;
|
|
@@ -12812,7 +13007,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12812
13007
|
};
|
|
12813
13008
|
bcsEncoding: "base64";
|
|
12814
13009
|
packageId: string;
|
|
12815
|
-
parsedJson: Record<string,
|
|
13010
|
+
parsedJson: Record<string, unknown>;
|
|
12816
13011
|
sender: string;
|
|
12817
13012
|
transactionModule: string;
|
|
12818
13013
|
bcs: string;
|
|
@@ -12829,7 +13024,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12829
13024
|
txDigest: string;
|
|
12830
13025
|
}>;
|
|
12831
13026
|
packageId: z.ZodString;
|
|
12832
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
13027
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12833
13028
|
sender: z.ZodString;
|
|
12834
13029
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12835
13030
|
transactionModule: z.ZodString;
|
|
@@ -12844,7 +13039,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12844
13039
|
};
|
|
12845
13040
|
bcsEncoding: "base58";
|
|
12846
13041
|
packageId: string;
|
|
12847
|
-
parsedJson: Record<string,
|
|
13042
|
+
parsedJson: Record<string, unknown>;
|
|
12848
13043
|
sender: string;
|
|
12849
13044
|
transactionModule: string;
|
|
12850
13045
|
bcs: string;
|
|
@@ -12857,7 +13052,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12857
13052
|
};
|
|
12858
13053
|
bcsEncoding: "base58";
|
|
12859
13054
|
packageId: string;
|
|
12860
|
-
parsedJson: Record<string,
|
|
13055
|
+
parsedJson: Record<string, unknown>;
|
|
12861
13056
|
sender: string;
|
|
12862
13057
|
transactionModule: string;
|
|
12863
13058
|
bcs: string;
|
|
@@ -13534,7 +13729,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13534
13729
|
};
|
|
13535
13730
|
bcsEncoding: "base64";
|
|
13536
13731
|
packageId: string;
|
|
13537
|
-
parsedJson: Record<string,
|
|
13732
|
+
parsedJson: Record<string, unknown>;
|
|
13538
13733
|
sender: string;
|
|
13539
13734
|
transactionModule: string;
|
|
13540
13735
|
bcs: string;
|
|
@@ -13547,7 +13742,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13547
13742
|
};
|
|
13548
13743
|
bcsEncoding: "base58";
|
|
13549
13744
|
packageId: string;
|
|
13550
|
-
parsedJson: Record<string,
|
|
13745
|
+
parsedJson: Record<string, unknown>;
|
|
13551
13746
|
sender: string;
|
|
13552
13747
|
transactionModule: string;
|
|
13553
13748
|
bcs: string;
|
|
@@ -13823,7 +14018,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13823
14018
|
};
|
|
13824
14019
|
bcsEncoding: "base64";
|
|
13825
14020
|
packageId: string;
|
|
13826
|
-
parsedJson: Record<string,
|
|
14021
|
+
parsedJson: Record<string, unknown>;
|
|
13827
14022
|
sender: string;
|
|
13828
14023
|
transactionModule: string;
|
|
13829
14024
|
bcs: string;
|
|
@@ -13836,7 +14031,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13836
14031
|
};
|
|
13837
14032
|
bcsEncoding: "base58";
|
|
13838
14033
|
packageId: string;
|
|
13839
|
-
parsedJson: Record<string,
|
|
14034
|
+
parsedJson: Record<string, unknown>;
|
|
13840
14035
|
sender: string;
|
|
13841
14036
|
transactionModule: string;
|
|
13842
14037
|
bcs: string;
|
|
@@ -14192,7 +14387,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14192
14387
|
};
|
|
14193
14388
|
bcsEncoding: "base64";
|
|
14194
14389
|
packageId: string;
|
|
14195
|
-
parsedJson: Record<string,
|
|
14390
|
+
parsedJson: Record<string, unknown>;
|
|
14196
14391
|
sender: string;
|
|
14197
14392
|
transactionModule: string;
|
|
14198
14393
|
bcs: string;
|
|
@@ -14205,7 +14400,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14205
14400
|
};
|
|
14206
14401
|
bcsEncoding: "base58";
|
|
14207
14402
|
packageId: string;
|
|
14208
|
-
parsedJson: Record<string,
|
|
14403
|
+
parsedJson: Record<string, unknown>;
|
|
14209
14404
|
sender: string;
|
|
14210
14405
|
transactionModule: string;
|
|
14211
14406
|
bcs: string;
|
|
@@ -14533,7 +14728,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14533
14728
|
};
|
|
14534
14729
|
bcsEncoding: "base64";
|
|
14535
14730
|
packageId: string;
|
|
14536
|
-
parsedJson: Record<string,
|
|
14731
|
+
parsedJson: Record<string, unknown>;
|
|
14537
14732
|
sender: string;
|
|
14538
14733
|
transactionModule: string;
|
|
14539
14734
|
bcs: string;
|
|
@@ -14546,7 +14741,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14546
14741
|
};
|
|
14547
14742
|
bcsEncoding: "base58";
|
|
14548
14743
|
packageId: string;
|
|
14549
|
-
parsedJson: Record<string,
|
|
14744
|
+
parsedJson: Record<string, unknown>;
|
|
14550
14745
|
sender: string;
|
|
14551
14746
|
transactionModule: string;
|
|
14552
14747
|
bcs: string;
|
|
@@ -14877,7 +15072,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14877
15072
|
};
|
|
14878
15073
|
bcsEncoding: "base64";
|
|
14879
15074
|
packageId: string;
|
|
14880
|
-
parsedJson: Record<string,
|
|
15075
|
+
parsedJson: Record<string, unknown>;
|
|
14881
15076
|
sender: string;
|
|
14882
15077
|
transactionModule: string;
|
|
14883
15078
|
bcs: string;
|
|
@@ -14890,7 +15085,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14890
15085
|
};
|
|
14891
15086
|
bcsEncoding: "base58";
|
|
14892
15087
|
packageId: string;
|
|
14893
|
-
parsedJson: Record<string,
|
|
15088
|
+
parsedJson: Record<string, unknown>;
|
|
14894
15089
|
sender: string;
|
|
14895
15090
|
transactionModule: string;
|
|
14896
15091
|
bcs: string;
|
|
@@ -15221,7 +15416,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15221
15416
|
};
|
|
15222
15417
|
bcsEncoding: "base64";
|
|
15223
15418
|
packageId: string;
|
|
15224
|
-
parsedJson: Record<string,
|
|
15419
|
+
parsedJson: Record<string, unknown>;
|
|
15225
15420
|
sender: string;
|
|
15226
15421
|
transactionModule: string;
|
|
15227
15422
|
bcs: string;
|
|
@@ -15234,7 +15429,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15234
15429
|
};
|
|
15235
15430
|
bcsEncoding: "base58";
|
|
15236
15431
|
packageId: string;
|
|
15237
|
-
parsedJson: Record<string,
|
|
15432
|
+
parsedJson: Record<string, unknown>;
|
|
15238
15433
|
sender: string;
|
|
15239
15434
|
transactionModule: string;
|
|
15240
15435
|
bcs: string;
|
|
@@ -15345,15 +15540,25 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15345
15540
|
} | undefined;
|
|
15346
15541
|
};
|
|
15347
15542
|
}>, z.ZodObject<{
|
|
15543
|
+
error_code: z.ZodOptional<z.ZodEnum<["invalid_parameter", "guard_rejected", "state_conflict", "insufficient_balance", "object_not_found", "permission_denied", "immutable_violation", "network_error", "unknown"]>>;
|
|
15544
|
+
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
15545
|
+
recovery_hint: z.ZodOptional<z.ZodString>;
|
|
15348
15546
|
status: z.ZodLiteral<"error">;
|
|
15349
15547
|
error: z.ZodString;
|
|
15350
15548
|
}, "strip", z.ZodTypeAny, {
|
|
15351
15549
|
status: "error";
|
|
15352
15550
|
error: string;
|
|
15551
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
15552
|
+
retryable?: boolean | undefined;
|
|
15553
|
+
recovery_hint?: string | undefined;
|
|
15353
15554
|
}, {
|
|
15354
15555
|
status: "error";
|
|
15355
15556
|
error: string;
|
|
15557
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
15558
|
+
retryable?: boolean | undefined;
|
|
15559
|
+
recovery_hint?: string | undefined;
|
|
15356
15560
|
}>]>;
|
|
15561
|
+
semantic: z.ZodOptional<z.ZodAny>;
|
|
15357
15562
|
}, "strip", z.ZodTypeAny, {
|
|
15358
15563
|
result: {
|
|
15359
15564
|
status: "success";
|
|
@@ -15576,7 +15781,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15576
15781
|
};
|
|
15577
15782
|
bcsEncoding: "base64";
|
|
15578
15783
|
packageId: string;
|
|
15579
|
-
parsedJson: Record<string,
|
|
15784
|
+
parsedJson: Record<string, unknown>;
|
|
15580
15785
|
sender: string;
|
|
15581
15786
|
transactionModule: string;
|
|
15582
15787
|
bcs: string;
|
|
@@ -15589,7 +15794,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15589
15794
|
};
|
|
15590
15795
|
bcsEncoding: "base58";
|
|
15591
15796
|
packageId: string;
|
|
15592
|
-
parsedJson: Record<string,
|
|
15797
|
+
parsedJson: Record<string, unknown>;
|
|
15593
15798
|
sender: string;
|
|
15594
15799
|
transactionModule: string;
|
|
15595
15800
|
bcs: string;
|
|
@@ -15702,7 +15907,11 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15702
15907
|
} | {
|
|
15703
15908
|
status: "error";
|
|
15704
15909
|
error: string;
|
|
15910
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
15911
|
+
retryable?: boolean | undefined;
|
|
15912
|
+
recovery_hint?: string | undefined;
|
|
15705
15913
|
};
|
|
15914
|
+
semantic?: any;
|
|
15706
15915
|
}, {
|
|
15707
15916
|
result: {
|
|
15708
15917
|
status: "success";
|
|
@@ -15925,7 +16134,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15925
16134
|
};
|
|
15926
16135
|
bcsEncoding: "base64";
|
|
15927
16136
|
packageId: string;
|
|
15928
|
-
parsedJson: Record<string,
|
|
16137
|
+
parsedJson: Record<string, unknown>;
|
|
15929
16138
|
sender: string;
|
|
15930
16139
|
transactionModule: string;
|
|
15931
16140
|
bcs: string;
|
|
@@ -15938,7 +16147,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15938
16147
|
};
|
|
15939
16148
|
bcsEncoding: "base58";
|
|
15940
16149
|
packageId: string;
|
|
15941
|
-
parsedJson: Record<string,
|
|
16150
|
+
parsedJson: Record<string, unknown>;
|
|
15942
16151
|
sender: string;
|
|
15943
16152
|
transactionModule: string;
|
|
15944
16153
|
bcs: string;
|
|
@@ -16051,7 +16260,11 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16051
16260
|
} | {
|
|
16052
16261
|
status: "error";
|
|
16053
16262
|
error: string;
|
|
16263
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16264
|
+
retryable?: boolean | undefined;
|
|
16265
|
+
recovery_hint?: string | undefined;
|
|
16054
16266
|
};
|
|
16267
|
+
semantic?: any;
|
|
16055
16268
|
}>;
|
|
16056
16269
|
export declare const LocalMarkOperationOutputSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
16057
16270
|
status: z.ZodLiteral<"success">;
|
|
@@ -16167,14 +16380,23 @@ export declare const LocalMarkOperationOutputSchema: z.ZodDiscriminatedUnion<"st
|
|
|
16167
16380
|
clear?: boolean | undefined;
|
|
16168
16381
|
};
|
|
16169
16382
|
}>, z.ZodObject<{
|
|
16383
|
+
error_code: z.ZodOptional<z.ZodEnum<["invalid_parameter", "guard_rejected", "state_conflict", "insufficient_balance", "object_not_found", "permission_denied", "immutable_violation", "network_error", "unknown"]>>;
|
|
16384
|
+
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
16385
|
+
recovery_hint: z.ZodOptional<z.ZodString>;
|
|
16170
16386
|
status: z.ZodLiteral<"error">;
|
|
16171
16387
|
error: z.ZodString;
|
|
16172
16388
|
}, "strip", z.ZodTypeAny, {
|
|
16173
16389
|
status: "error";
|
|
16174
16390
|
error: string;
|
|
16391
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16392
|
+
retryable?: boolean | undefined;
|
|
16393
|
+
recovery_hint?: string | undefined;
|
|
16175
16394
|
}, {
|
|
16176
16395
|
status: "error";
|
|
16177
16396
|
error: string;
|
|
16397
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16398
|
+
retryable?: boolean | undefined;
|
|
16399
|
+
recovery_hint?: string | undefined;
|
|
16178
16400
|
}>]>;
|
|
16179
16401
|
export declare const LocalMarkOperationOutputWrappedSchema: z.ZodObject<{
|
|
16180
16402
|
result: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -16291,15 +16513,25 @@ export declare const LocalMarkOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16291
16513
|
clear?: boolean | undefined;
|
|
16292
16514
|
};
|
|
16293
16515
|
}>, z.ZodObject<{
|
|
16516
|
+
error_code: z.ZodOptional<z.ZodEnum<["invalid_parameter", "guard_rejected", "state_conflict", "insufficient_balance", "object_not_found", "permission_denied", "immutable_violation", "network_error", "unknown"]>>;
|
|
16517
|
+
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
16518
|
+
recovery_hint: z.ZodOptional<z.ZodString>;
|
|
16294
16519
|
status: z.ZodLiteral<"error">;
|
|
16295
16520
|
error: z.ZodString;
|
|
16296
16521
|
}, "strip", z.ZodTypeAny, {
|
|
16297
16522
|
status: "error";
|
|
16298
16523
|
error: string;
|
|
16524
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16525
|
+
retryable?: boolean | undefined;
|
|
16526
|
+
recovery_hint?: string | undefined;
|
|
16299
16527
|
}, {
|
|
16300
16528
|
status: "error";
|
|
16301
16529
|
error: string;
|
|
16530
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16531
|
+
retryable?: boolean | undefined;
|
|
16532
|
+
recovery_hint?: string | undefined;
|
|
16302
16533
|
}>]>;
|
|
16534
|
+
semantic: z.ZodOptional<z.ZodAny>;
|
|
16303
16535
|
}, "strip", z.ZodTypeAny, {
|
|
16304
16536
|
result: {
|
|
16305
16537
|
status: "success";
|
|
@@ -16323,7 +16555,11 @@ export declare const LocalMarkOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16323
16555
|
} | {
|
|
16324
16556
|
status: "error";
|
|
16325
16557
|
error: string;
|
|
16558
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16559
|
+
retryable?: boolean | undefined;
|
|
16560
|
+
recovery_hint?: string | undefined;
|
|
16326
16561
|
};
|
|
16562
|
+
semantic?: any;
|
|
16327
16563
|
}, {
|
|
16328
16564
|
result: {
|
|
16329
16565
|
status: "success";
|
|
@@ -16347,7 +16583,11 @@ export declare const LocalMarkOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16347
16583
|
} | {
|
|
16348
16584
|
status: "error";
|
|
16349
16585
|
error: string;
|
|
16586
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16587
|
+
retryable?: boolean | undefined;
|
|
16588
|
+
recovery_hint?: string | undefined;
|
|
16350
16589
|
};
|
|
16590
|
+
semantic?: any;
|
|
16351
16591
|
}>;
|
|
16352
16592
|
export declare const LocalInfoOperationOutputSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
16353
16593
|
status: z.ZodLiteral<"success">;
|
|
@@ -16369,14 +16609,23 @@ export declare const LocalInfoOperationOutputSchema: z.ZodDiscriminatedUnion<"st
|
|
|
16369
16609
|
success: boolean;
|
|
16370
16610
|
};
|
|
16371
16611
|
}>, z.ZodObject<{
|
|
16612
|
+
error_code: z.ZodOptional<z.ZodEnum<["invalid_parameter", "guard_rejected", "state_conflict", "insufficient_balance", "object_not_found", "permission_denied", "immutable_violation", "network_error", "unknown"]>>;
|
|
16613
|
+
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
16614
|
+
recovery_hint: z.ZodOptional<z.ZodString>;
|
|
16372
16615
|
status: z.ZodLiteral<"error">;
|
|
16373
16616
|
error: z.ZodString;
|
|
16374
16617
|
}, "strip", z.ZodTypeAny, {
|
|
16375
16618
|
status: "error";
|
|
16376
16619
|
error: string;
|
|
16620
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16621
|
+
retryable?: boolean | undefined;
|
|
16622
|
+
recovery_hint?: string | undefined;
|
|
16377
16623
|
}, {
|
|
16378
16624
|
status: "error";
|
|
16379
16625
|
error: string;
|
|
16626
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16627
|
+
retryable?: boolean | undefined;
|
|
16628
|
+
recovery_hint?: string | undefined;
|
|
16380
16629
|
}>]>;
|
|
16381
16630
|
export declare const LocalInfoOperationOutputWrappedSchema: z.ZodObject<{
|
|
16382
16631
|
result: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -16399,15 +16648,25 @@ export declare const LocalInfoOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16399
16648
|
success: boolean;
|
|
16400
16649
|
};
|
|
16401
16650
|
}>, z.ZodObject<{
|
|
16651
|
+
error_code: z.ZodOptional<z.ZodEnum<["invalid_parameter", "guard_rejected", "state_conflict", "insufficient_balance", "object_not_found", "permission_denied", "immutable_violation", "network_error", "unknown"]>>;
|
|
16652
|
+
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
16653
|
+
recovery_hint: z.ZodOptional<z.ZodString>;
|
|
16402
16654
|
status: z.ZodLiteral<"error">;
|
|
16403
16655
|
error: z.ZodString;
|
|
16404
16656
|
}, "strip", z.ZodTypeAny, {
|
|
16405
16657
|
status: "error";
|
|
16406
16658
|
error: string;
|
|
16659
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16660
|
+
retryable?: boolean | undefined;
|
|
16661
|
+
recovery_hint?: string | undefined;
|
|
16407
16662
|
}, {
|
|
16408
16663
|
status: "error";
|
|
16409
16664
|
error: string;
|
|
16665
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16666
|
+
retryable?: boolean | undefined;
|
|
16667
|
+
recovery_hint?: string | undefined;
|
|
16410
16668
|
}>]>;
|
|
16669
|
+
semantic: z.ZodOptional<z.ZodAny>;
|
|
16411
16670
|
}, "strip", z.ZodTypeAny, {
|
|
16412
16671
|
result: {
|
|
16413
16672
|
status: "success";
|
|
@@ -16417,7 +16676,11 @@ export declare const LocalInfoOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16417
16676
|
} | {
|
|
16418
16677
|
status: "error";
|
|
16419
16678
|
error: string;
|
|
16679
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16680
|
+
retryable?: boolean | undefined;
|
|
16681
|
+
recovery_hint?: string | undefined;
|
|
16420
16682
|
};
|
|
16683
|
+
semantic?: any;
|
|
16421
16684
|
}, {
|
|
16422
16685
|
result: {
|
|
16423
16686
|
status: "success";
|
|
@@ -16427,7 +16690,11 @@ export declare const LocalInfoOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16427
16690
|
} | {
|
|
16428
16691
|
status: "error";
|
|
16429
16692
|
error: string;
|
|
16693
|
+
error_code?: "unknown" | "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | undefined;
|
|
16694
|
+
retryable?: boolean | undefined;
|
|
16695
|
+
recovery_hint?: string | undefined;
|
|
16430
16696
|
};
|
|
16697
|
+
semantic?: any;
|
|
16431
16698
|
}>;
|
|
16432
16699
|
export type CoinBalance = z.infer<typeof CoinBalanceSchema>;
|
|
16433
16700
|
export type CoinStruct = z.infer<typeof CoinStructSchema>;
|