@wowok/agent-mcp 2.3.14 → 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/index.js +570 -186
- 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/diagnose.d.ts +3 -2
- package/dist/loop-engineering/diagnose.js +94 -0
- package/dist/loop-engineering/improve.d.ts +1 -1
- package/dist/loop-engineering/improve.js +52 -1
- 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 +15 -0
- package/dist/schema/call/arbitration.d.ts +111 -96
- package/dist/schema/call/base.d.ts +1070 -44
- package/dist/schema/call/base.js +69 -1
- package/dist/schema/call/bridge.d.ts +709 -52
- 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 +3 -0
- package/dist/schema/call/handler.js +14 -0
- package/dist/schema/call/machine.d.ts +830 -800
- package/dist/schema/call/order.d.ts +15 -0
- 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 +15 -0
- 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 +45 -30
- package/dist/schema/call/semantic.d.ts +1 -0
- package/dist/schema/call/semantic.js +217 -0
- package/dist/schema/call/service.d.ts +407 -392
- package/dist/schema/call/treasury.d.ts +15 -0
- package/dist/schema/common/index.js +3 -3
- package/dist/schema/local/index.d.ts +228 -72
- package/dist/schema/local/index.js +33 -6
- package/dist/schema/messenger/index.d.ts +668 -50
- package/dist/schema/messenger/index.js +9 -0
- package/dist/schema/operations.d.ts +1693 -1369
- package/dist/schema/operations.js +2 -2
- package/dist/schema/query/index.d.ts +1614 -1614
- package/dist/schema/query/index.js +30 -27
- package/dist/schemas/account_operation.output.json +25 -16
- package/dist/schemas/account_operation.schema.json +1 -1
- 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 +23 -0
- package/dist/schemas/local_info_operation.schema.json +1 -1
- package/dist/schemas/local_mark_operation.output.json +24 -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 +528 -0
- package/dist/schemas/onchain_operations.output.json +350 -16
- package/dist/schemas/onchain_operations.schema.json +96 -23
- package/dist/schemas/onchain_operations_allocation.schema.json +15 -0
- package/dist/schemas/onchain_operations_arbitration.schema.json +15 -0
- package/dist/schemas/onchain_operations_contact.schema.json +15 -0
- package/dist/schemas/onchain_operations_demand.schema.json +15 -0
- package/dist/schemas/onchain_operations_gen_passport.schema.json +30 -0
- package/dist/schemas/onchain_operations_guard.schema.json +15 -0
- package/dist/schemas/onchain_operations_machine.schema.json +81 -23
- package/dist/schemas/onchain_operations_order.schema.json +15 -0
- package/dist/schemas/onchain_operations_payment.schema.json +15 -0
- package/dist/schemas/onchain_operations_permission.schema.json +15 -0
- package/dist/schemas/onchain_operations_personal.schema.json +15 -0
- package/dist/schemas/onchain_operations_progress.schema.json +15 -0
- package/dist/schemas/onchain_operations_repository.schema.json +15 -0
- package/dist/schemas/onchain_operations_reward.schema.json +15 -0
- package/dist/schemas/onchain_operations_service.schema.json +15 -0
- package/dist/schemas/onchain_operations_treasury.schema.json +15 -0
- package/dist/schemas/onchain_table_data.output.json +221 -69
- package/dist/schemas/onchain_table_data.schema.json +2 -2
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -5656,7 +5656,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5656
5656
|
txDigest: string;
|
|
5657
5657
|
}>;
|
|
5658
5658
|
packageId: z.ZodString;
|
|
5659
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
5659
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5660
5660
|
sender: z.ZodString;
|
|
5661
5661
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
5662
5662
|
transactionModule: z.ZodString;
|
|
@@ -5671,7 +5671,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5671
5671
|
};
|
|
5672
5672
|
bcsEncoding: "base64";
|
|
5673
5673
|
packageId: string;
|
|
5674
|
-
parsedJson: Record<string,
|
|
5674
|
+
parsedJson: Record<string, unknown>;
|
|
5675
5675
|
sender: string;
|
|
5676
5676
|
transactionModule: string;
|
|
5677
5677
|
bcs: string;
|
|
@@ -5684,7 +5684,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5684
5684
|
};
|
|
5685
5685
|
bcsEncoding: "base64";
|
|
5686
5686
|
packageId: string;
|
|
5687
|
-
parsedJson: Record<string,
|
|
5687
|
+
parsedJson: Record<string, unknown>;
|
|
5688
5688
|
sender: string;
|
|
5689
5689
|
transactionModule: string;
|
|
5690
5690
|
bcs: string;
|
|
@@ -5701,7 +5701,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5701
5701
|
txDigest: string;
|
|
5702
5702
|
}>;
|
|
5703
5703
|
packageId: z.ZodString;
|
|
5704
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
5704
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5705
5705
|
sender: z.ZodString;
|
|
5706
5706
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
5707
5707
|
transactionModule: z.ZodString;
|
|
@@ -5716,7 +5716,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5716
5716
|
};
|
|
5717
5717
|
bcsEncoding: "base58";
|
|
5718
5718
|
packageId: string;
|
|
5719
|
-
parsedJson: Record<string,
|
|
5719
|
+
parsedJson: Record<string, unknown>;
|
|
5720
5720
|
sender: string;
|
|
5721
5721
|
transactionModule: string;
|
|
5722
5722
|
bcs: string;
|
|
@@ -5729,7 +5729,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
5729
5729
|
};
|
|
5730
5730
|
bcsEncoding: "base58";
|
|
5731
5731
|
packageId: string;
|
|
5732
|
-
parsedJson: Record<string,
|
|
5732
|
+
parsedJson: Record<string, unknown>;
|
|
5733
5733
|
sender: string;
|
|
5734
5734
|
transactionModule: string;
|
|
5735
5735
|
bcs: string;
|
|
@@ -6406,7 +6406,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6406
6406
|
};
|
|
6407
6407
|
bcsEncoding: "base64";
|
|
6408
6408
|
packageId: string;
|
|
6409
|
-
parsedJson: Record<string,
|
|
6409
|
+
parsedJson: Record<string, unknown>;
|
|
6410
6410
|
sender: string;
|
|
6411
6411
|
transactionModule: string;
|
|
6412
6412
|
bcs: string;
|
|
@@ -6419,7 +6419,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6419
6419
|
};
|
|
6420
6420
|
bcsEncoding: "base58";
|
|
6421
6421
|
packageId: string;
|
|
6422
|
-
parsedJson: Record<string,
|
|
6422
|
+
parsedJson: Record<string, unknown>;
|
|
6423
6423
|
sender: string;
|
|
6424
6424
|
transactionModule: string;
|
|
6425
6425
|
bcs: string;
|
|
@@ -6695,7 +6695,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6695
6695
|
};
|
|
6696
6696
|
bcsEncoding: "base64";
|
|
6697
6697
|
packageId: string;
|
|
6698
|
-
parsedJson: Record<string,
|
|
6698
|
+
parsedJson: Record<string, unknown>;
|
|
6699
6699
|
sender: string;
|
|
6700
6700
|
transactionModule: string;
|
|
6701
6701
|
bcs: string;
|
|
@@ -6708,7 +6708,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
6708
6708
|
};
|
|
6709
6709
|
bcsEncoding: "base58";
|
|
6710
6710
|
packageId: string;
|
|
6711
|
-
parsedJson: Record<string,
|
|
6711
|
+
parsedJson: Record<string, unknown>;
|
|
6712
6712
|
sender: string;
|
|
6713
6713
|
transactionModule: string;
|
|
6714
6714
|
bcs: string;
|
|
@@ -7064,7 +7064,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7064
7064
|
};
|
|
7065
7065
|
bcsEncoding: "base64";
|
|
7066
7066
|
packageId: string;
|
|
7067
|
-
parsedJson: Record<string,
|
|
7067
|
+
parsedJson: Record<string, unknown>;
|
|
7068
7068
|
sender: string;
|
|
7069
7069
|
transactionModule: string;
|
|
7070
7070
|
bcs: string;
|
|
@@ -7077,7 +7077,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7077
7077
|
};
|
|
7078
7078
|
bcsEncoding: "base58";
|
|
7079
7079
|
packageId: string;
|
|
7080
|
-
parsedJson: Record<string,
|
|
7080
|
+
parsedJson: Record<string, unknown>;
|
|
7081
7081
|
sender: string;
|
|
7082
7082
|
transactionModule: string;
|
|
7083
7083
|
bcs: string;
|
|
@@ -7405,7 +7405,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7405
7405
|
};
|
|
7406
7406
|
bcsEncoding: "base64";
|
|
7407
7407
|
packageId: string;
|
|
7408
|
-
parsedJson: Record<string,
|
|
7408
|
+
parsedJson: Record<string, unknown>;
|
|
7409
7409
|
sender: string;
|
|
7410
7410
|
transactionModule: string;
|
|
7411
7411
|
bcs: string;
|
|
@@ -7418,7 +7418,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7418
7418
|
};
|
|
7419
7419
|
bcsEncoding: "base58";
|
|
7420
7420
|
packageId: string;
|
|
7421
|
-
parsedJson: Record<string,
|
|
7421
|
+
parsedJson: Record<string, unknown>;
|
|
7422
7422
|
sender: string;
|
|
7423
7423
|
transactionModule: string;
|
|
7424
7424
|
bcs: string;
|
|
@@ -7528,7 +7528,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
|
|
|
7528
7528
|
name_or_account?: string | undefined;
|
|
7529
7529
|
} | undefined;
|
|
7530
7530
|
}>;
|
|
7531
|
-
export declare const LocalMarkOperationSchema: z.ZodObject<{
|
|
7531
|
+
export declare const LocalMarkOperationSchema: z.ZodEffects<z.ZodObject<{
|
|
7532
7532
|
add: z.ZodOptional<z.ZodObject<{
|
|
7533
7533
|
op: z.ZodLiteral<"add">;
|
|
7534
7534
|
data: z.ZodArray<z.ZodObject<{
|
|
@@ -7635,6 +7635,44 @@ export declare const LocalMarkOperationSchema: z.ZodObject<{
|
|
|
7635
7635
|
clear?: {
|
|
7636
7636
|
op: "clear";
|
|
7637
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;
|
|
7638
7676
|
}>;
|
|
7639
7677
|
export declare const LocalMarkOperationResultSchema: z.ZodObject<{
|
|
7640
7678
|
clear: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7709,7 +7747,7 @@ export declare const LocalMarkOperationResultSchema: z.ZodObject<{
|
|
|
7709
7747
|
}[] | undefined;
|
|
7710
7748
|
clear?: boolean | undefined;
|
|
7711
7749
|
}>;
|
|
7712
|
-
export declare const LocalInfoOperationSchema: z.ZodObject<{
|
|
7750
|
+
export declare const LocalInfoOperationSchema: z.ZodEffects<z.ZodObject<{
|
|
7713
7751
|
add: z.ZodOptional<z.ZodObject<{
|
|
7714
7752
|
op: z.ZodLiteral<"add">;
|
|
7715
7753
|
data: z.ZodArray<z.ZodObject<{
|
|
@@ -7827,6 +7865,52 @@ export declare const LocalInfoOperationSchema: z.ZodObject<{
|
|
|
7827
7865
|
contents: string[];
|
|
7828
7866
|
op: "reset";
|
|
7829
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;
|
|
7830
7914
|
}>;
|
|
7831
7915
|
export declare const LocalInfoOperationResultSchema: z.ZodObject<{
|
|
7832
7916
|
success: z.ZodBoolean;
|
|
@@ -9321,7 +9405,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9321
9405
|
txDigest: string;
|
|
9322
9406
|
}>;
|
|
9323
9407
|
packageId: z.ZodString;
|
|
9324
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
9408
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
9325
9409
|
sender: z.ZodString;
|
|
9326
9410
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
9327
9411
|
transactionModule: z.ZodString;
|
|
@@ -9336,7 +9420,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9336
9420
|
};
|
|
9337
9421
|
bcsEncoding: "base64";
|
|
9338
9422
|
packageId: string;
|
|
9339
|
-
parsedJson: Record<string,
|
|
9423
|
+
parsedJson: Record<string, unknown>;
|
|
9340
9424
|
sender: string;
|
|
9341
9425
|
transactionModule: string;
|
|
9342
9426
|
bcs: string;
|
|
@@ -9349,7 +9433,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9349
9433
|
};
|
|
9350
9434
|
bcsEncoding: "base64";
|
|
9351
9435
|
packageId: string;
|
|
9352
|
-
parsedJson: Record<string,
|
|
9436
|
+
parsedJson: Record<string, unknown>;
|
|
9353
9437
|
sender: string;
|
|
9354
9438
|
transactionModule: string;
|
|
9355
9439
|
bcs: string;
|
|
@@ -9366,7 +9450,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9366
9450
|
txDigest: string;
|
|
9367
9451
|
}>;
|
|
9368
9452
|
packageId: z.ZodString;
|
|
9369
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
9453
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
9370
9454
|
sender: z.ZodString;
|
|
9371
9455
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
9372
9456
|
transactionModule: z.ZodString;
|
|
@@ -9381,7 +9465,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9381
9465
|
};
|
|
9382
9466
|
bcsEncoding: "base58";
|
|
9383
9467
|
packageId: string;
|
|
9384
|
-
parsedJson: Record<string,
|
|
9468
|
+
parsedJson: Record<string, unknown>;
|
|
9385
9469
|
sender: string;
|
|
9386
9470
|
transactionModule: string;
|
|
9387
9471
|
bcs: string;
|
|
@@ -9394,7 +9478,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
9394
9478
|
};
|
|
9395
9479
|
bcsEncoding: "base58";
|
|
9396
9480
|
packageId: string;
|
|
9397
|
-
parsedJson: Record<string,
|
|
9481
|
+
parsedJson: Record<string, unknown>;
|
|
9398
9482
|
sender: string;
|
|
9399
9483
|
transactionModule: string;
|
|
9400
9484
|
bcs: string;
|
|
@@ -10071,7 +10155,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10071
10155
|
};
|
|
10072
10156
|
bcsEncoding: "base64";
|
|
10073
10157
|
packageId: string;
|
|
10074
|
-
parsedJson: Record<string,
|
|
10158
|
+
parsedJson: Record<string, unknown>;
|
|
10075
10159
|
sender: string;
|
|
10076
10160
|
transactionModule: string;
|
|
10077
10161
|
bcs: string;
|
|
@@ -10084,7 +10168,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10084
10168
|
};
|
|
10085
10169
|
bcsEncoding: "base58";
|
|
10086
10170
|
packageId: string;
|
|
10087
|
-
parsedJson: Record<string,
|
|
10171
|
+
parsedJson: Record<string, unknown>;
|
|
10088
10172
|
sender: string;
|
|
10089
10173
|
transactionModule: string;
|
|
10090
10174
|
bcs: string;
|
|
@@ -10360,7 +10444,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10360
10444
|
};
|
|
10361
10445
|
bcsEncoding: "base64";
|
|
10362
10446
|
packageId: string;
|
|
10363
|
-
parsedJson: Record<string,
|
|
10447
|
+
parsedJson: Record<string, unknown>;
|
|
10364
10448
|
sender: string;
|
|
10365
10449
|
transactionModule: string;
|
|
10366
10450
|
bcs: string;
|
|
@@ -10373,7 +10457,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10373
10457
|
};
|
|
10374
10458
|
bcsEncoding: "base58";
|
|
10375
10459
|
packageId: string;
|
|
10376
|
-
parsedJson: Record<string,
|
|
10460
|
+
parsedJson: Record<string, unknown>;
|
|
10377
10461
|
sender: string;
|
|
10378
10462
|
transactionModule: string;
|
|
10379
10463
|
bcs: string;
|
|
@@ -10729,7 +10813,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10729
10813
|
};
|
|
10730
10814
|
bcsEncoding: "base64";
|
|
10731
10815
|
packageId: string;
|
|
10732
|
-
parsedJson: Record<string,
|
|
10816
|
+
parsedJson: Record<string, unknown>;
|
|
10733
10817
|
sender: string;
|
|
10734
10818
|
transactionModule: string;
|
|
10735
10819
|
bcs: string;
|
|
@@ -10742,7 +10826,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
10742
10826
|
};
|
|
10743
10827
|
bcsEncoding: "base58";
|
|
10744
10828
|
packageId: string;
|
|
10745
|
-
parsedJson: Record<string,
|
|
10829
|
+
parsedJson: Record<string, unknown>;
|
|
10746
10830
|
sender: string;
|
|
10747
10831
|
transactionModule: string;
|
|
10748
10832
|
bcs: string;
|
|
@@ -11070,7 +11154,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11070
11154
|
};
|
|
11071
11155
|
bcsEncoding: "base64";
|
|
11072
11156
|
packageId: string;
|
|
11073
|
-
parsedJson: Record<string,
|
|
11157
|
+
parsedJson: Record<string, unknown>;
|
|
11074
11158
|
sender: string;
|
|
11075
11159
|
transactionModule: string;
|
|
11076
11160
|
bcs: string;
|
|
@@ -11083,7 +11167,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11083
11167
|
};
|
|
11084
11168
|
bcsEncoding: "base58";
|
|
11085
11169
|
packageId: string;
|
|
11086
|
-
parsedJson: Record<string,
|
|
11170
|
+
parsedJson: Record<string, unknown>;
|
|
11087
11171
|
sender: string;
|
|
11088
11172
|
transactionModule: string;
|
|
11089
11173
|
bcs: string;
|
|
@@ -11414,7 +11498,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11414
11498
|
};
|
|
11415
11499
|
bcsEncoding: "base64";
|
|
11416
11500
|
packageId: string;
|
|
11417
|
-
parsedJson: Record<string,
|
|
11501
|
+
parsedJson: Record<string, unknown>;
|
|
11418
11502
|
sender: string;
|
|
11419
11503
|
transactionModule: string;
|
|
11420
11504
|
bcs: string;
|
|
@@ -11427,7 +11511,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11427
11511
|
};
|
|
11428
11512
|
bcsEncoding: "base58";
|
|
11429
11513
|
packageId: string;
|
|
11430
|
-
parsedJson: Record<string,
|
|
11514
|
+
parsedJson: Record<string, unknown>;
|
|
11431
11515
|
sender: string;
|
|
11432
11516
|
transactionModule: string;
|
|
11433
11517
|
bcs: string;
|
|
@@ -11758,7 +11842,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11758
11842
|
};
|
|
11759
11843
|
bcsEncoding: "base64";
|
|
11760
11844
|
packageId: string;
|
|
11761
|
-
parsedJson: Record<string,
|
|
11845
|
+
parsedJson: Record<string, unknown>;
|
|
11762
11846
|
sender: string;
|
|
11763
11847
|
transactionModule: string;
|
|
11764
11848
|
bcs: string;
|
|
@@ -11771,7 +11855,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11771
11855
|
};
|
|
11772
11856
|
bcsEncoding: "base58";
|
|
11773
11857
|
packageId: string;
|
|
11774
|
-
parsedJson: Record<string,
|
|
11858
|
+
parsedJson: Record<string, unknown>;
|
|
11775
11859
|
sender: string;
|
|
11776
11860
|
transactionModule: string;
|
|
11777
11861
|
bcs: string;
|
|
@@ -11882,14 +11966,23 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
|
|
|
11882
11966
|
} | undefined;
|
|
11883
11967
|
};
|
|
11884
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>;
|
|
11885
11972
|
status: z.ZodLiteral<"error">;
|
|
11886
11973
|
error: z.ZodString;
|
|
11887
11974
|
}, "strip", z.ZodTypeAny, {
|
|
11888
11975
|
status: "error";
|
|
11889
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;
|
|
11890
11980
|
}, {
|
|
11891
11981
|
status: "error";
|
|
11892
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;
|
|
11893
11986
|
}>]>;
|
|
11894
11987
|
export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
11895
11988
|
result: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -12886,7 +12979,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12886
12979
|
txDigest: string;
|
|
12887
12980
|
}>;
|
|
12888
12981
|
packageId: z.ZodString;
|
|
12889
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
12982
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12890
12983
|
sender: z.ZodString;
|
|
12891
12984
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12892
12985
|
transactionModule: z.ZodString;
|
|
@@ -12901,7 +12994,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12901
12994
|
};
|
|
12902
12995
|
bcsEncoding: "base64";
|
|
12903
12996
|
packageId: string;
|
|
12904
|
-
parsedJson: Record<string,
|
|
12997
|
+
parsedJson: Record<string, unknown>;
|
|
12905
12998
|
sender: string;
|
|
12906
12999
|
transactionModule: string;
|
|
12907
13000
|
bcs: string;
|
|
@@ -12914,7 +13007,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12914
13007
|
};
|
|
12915
13008
|
bcsEncoding: "base64";
|
|
12916
13009
|
packageId: string;
|
|
12917
|
-
parsedJson: Record<string,
|
|
13010
|
+
parsedJson: Record<string, unknown>;
|
|
12918
13011
|
sender: string;
|
|
12919
13012
|
transactionModule: string;
|
|
12920
13013
|
bcs: string;
|
|
@@ -12931,7 +13024,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12931
13024
|
txDigest: string;
|
|
12932
13025
|
}>;
|
|
12933
13026
|
packageId: z.ZodString;
|
|
12934
|
-
parsedJson: z.ZodRecord<z.ZodString, z.
|
|
13027
|
+
parsedJson: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12935
13028
|
sender: z.ZodString;
|
|
12936
13029
|
timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
12937
13030
|
transactionModule: z.ZodString;
|
|
@@ -12946,7 +13039,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12946
13039
|
};
|
|
12947
13040
|
bcsEncoding: "base58";
|
|
12948
13041
|
packageId: string;
|
|
12949
|
-
parsedJson: Record<string,
|
|
13042
|
+
parsedJson: Record<string, unknown>;
|
|
12950
13043
|
sender: string;
|
|
12951
13044
|
transactionModule: string;
|
|
12952
13045
|
bcs: string;
|
|
@@ -12959,7 +13052,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
12959
13052
|
};
|
|
12960
13053
|
bcsEncoding: "base58";
|
|
12961
13054
|
packageId: string;
|
|
12962
|
-
parsedJson: Record<string,
|
|
13055
|
+
parsedJson: Record<string, unknown>;
|
|
12963
13056
|
sender: string;
|
|
12964
13057
|
transactionModule: string;
|
|
12965
13058
|
bcs: string;
|
|
@@ -13636,7 +13729,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13636
13729
|
};
|
|
13637
13730
|
bcsEncoding: "base64";
|
|
13638
13731
|
packageId: string;
|
|
13639
|
-
parsedJson: Record<string,
|
|
13732
|
+
parsedJson: Record<string, unknown>;
|
|
13640
13733
|
sender: string;
|
|
13641
13734
|
transactionModule: string;
|
|
13642
13735
|
bcs: string;
|
|
@@ -13649,7 +13742,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13649
13742
|
};
|
|
13650
13743
|
bcsEncoding: "base58";
|
|
13651
13744
|
packageId: string;
|
|
13652
|
-
parsedJson: Record<string,
|
|
13745
|
+
parsedJson: Record<string, unknown>;
|
|
13653
13746
|
sender: string;
|
|
13654
13747
|
transactionModule: string;
|
|
13655
13748
|
bcs: string;
|
|
@@ -13925,7 +14018,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13925
14018
|
};
|
|
13926
14019
|
bcsEncoding: "base64";
|
|
13927
14020
|
packageId: string;
|
|
13928
|
-
parsedJson: Record<string,
|
|
14021
|
+
parsedJson: Record<string, unknown>;
|
|
13929
14022
|
sender: string;
|
|
13930
14023
|
transactionModule: string;
|
|
13931
14024
|
bcs: string;
|
|
@@ -13938,7 +14031,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
13938
14031
|
};
|
|
13939
14032
|
bcsEncoding: "base58";
|
|
13940
14033
|
packageId: string;
|
|
13941
|
-
parsedJson: Record<string,
|
|
14034
|
+
parsedJson: Record<string, unknown>;
|
|
13942
14035
|
sender: string;
|
|
13943
14036
|
transactionModule: string;
|
|
13944
14037
|
bcs: string;
|
|
@@ -14294,7 +14387,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14294
14387
|
};
|
|
14295
14388
|
bcsEncoding: "base64";
|
|
14296
14389
|
packageId: string;
|
|
14297
|
-
parsedJson: Record<string,
|
|
14390
|
+
parsedJson: Record<string, unknown>;
|
|
14298
14391
|
sender: string;
|
|
14299
14392
|
transactionModule: string;
|
|
14300
14393
|
bcs: string;
|
|
@@ -14307,7 +14400,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14307
14400
|
};
|
|
14308
14401
|
bcsEncoding: "base58";
|
|
14309
14402
|
packageId: string;
|
|
14310
|
-
parsedJson: Record<string,
|
|
14403
|
+
parsedJson: Record<string, unknown>;
|
|
14311
14404
|
sender: string;
|
|
14312
14405
|
transactionModule: string;
|
|
14313
14406
|
bcs: string;
|
|
@@ -14635,7 +14728,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14635
14728
|
};
|
|
14636
14729
|
bcsEncoding: "base64";
|
|
14637
14730
|
packageId: string;
|
|
14638
|
-
parsedJson: Record<string,
|
|
14731
|
+
parsedJson: Record<string, unknown>;
|
|
14639
14732
|
sender: string;
|
|
14640
14733
|
transactionModule: string;
|
|
14641
14734
|
bcs: string;
|
|
@@ -14648,7 +14741,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14648
14741
|
};
|
|
14649
14742
|
bcsEncoding: "base58";
|
|
14650
14743
|
packageId: string;
|
|
14651
|
-
parsedJson: Record<string,
|
|
14744
|
+
parsedJson: Record<string, unknown>;
|
|
14652
14745
|
sender: string;
|
|
14653
14746
|
transactionModule: string;
|
|
14654
14747
|
bcs: string;
|
|
@@ -14979,7 +15072,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14979
15072
|
};
|
|
14980
15073
|
bcsEncoding: "base64";
|
|
14981
15074
|
packageId: string;
|
|
14982
|
-
parsedJson: Record<string,
|
|
15075
|
+
parsedJson: Record<string, unknown>;
|
|
14983
15076
|
sender: string;
|
|
14984
15077
|
transactionModule: string;
|
|
14985
15078
|
bcs: string;
|
|
@@ -14992,7 +15085,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
14992
15085
|
};
|
|
14993
15086
|
bcsEncoding: "base58";
|
|
14994
15087
|
packageId: string;
|
|
14995
|
-
parsedJson: Record<string,
|
|
15088
|
+
parsedJson: Record<string, unknown>;
|
|
14996
15089
|
sender: string;
|
|
14997
15090
|
transactionModule: string;
|
|
14998
15091
|
bcs: string;
|
|
@@ -15323,7 +15416,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15323
15416
|
};
|
|
15324
15417
|
bcsEncoding: "base64";
|
|
15325
15418
|
packageId: string;
|
|
15326
|
-
parsedJson: Record<string,
|
|
15419
|
+
parsedJson: Record<string, unknown>;
|
|
15327
15420
|
sender: string;
|
|
15328
15421
|
transactionModule: string;
|
|
15329
15422
|
bcs: string;
|
|
@@ -15336,7 +15429,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15336
15429
|
};
|
|
15337
15430
|
bcsEncoding: "base58";
|
|
15338
15431
|
packageId: string;
|
|
15339
|
-
parsedJson: Record<string,
|
|
15432
|
+
parsedJson: Record<string, unknown>;
|
|
15340
15433
|
sender: string;
|
|
15341
15434
|
transactionModule: string;
|
|
15342
15435
|
bcs: string;
|
|
@@ -15447,14 +15540,23 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15447
15540
|
} | undefined;
|
|
15448
15541
|
};
|
|
15449
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>;
|
|
15450
15546
|
status: z.ZodLiteral<"error">;
|
|
15451
15547
|
error: z.ZodString;
|
|
15452
15548
|
}, "strip", z.ZodTypeAny, {
|
|
15453
15549
|
status: "error";
|
|
15454
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;
|
|
15455
15554
|
}, {
|
|
15456
15555
|
status: "error";
|
|
15457
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;
|
|
15458
15560
|
}>]>;
|
|
15459
15561
|
semantic: z.ZodOptional<z.ZodAny>;
|
|
15460
15562
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15679,7 +15781,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15679
15781
|
};
|
|
15680
15782
|
bcsEncoding: "base64";
|
|
15681
15783
|
packageId: string;
|
|
15682
|
-
parsedJson: Record<string,
|
|
15784
|
+
parsedJson: Record<string, unknown>;
|
|
15683
15785
|
sender: string;
|
|
15684
15786
|
transactionModule: string;
|
|
15685
15787
|
bcs: string;
|
|
@@ -15692,7 +15794,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15692
15794
|
};
|
|
15693
15795
|
bcsEncoding: "base58";
|
|
15694
15796
|
packageId: string;
|
|
15695
|
-
parsedJson: Record<string,
|
|
15797
|
+
parsedJson: Record<string, unknown>;
|
|
15696
15798
|
sender: string;
|
|
15697
15799
|
transactionModule: string;
|
|
15698
15800
|
bcs: string;
|
|
@@ -15805,6 +15907,9 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
15805
15907
|
} | {
|
|
15806
15908
|
status: "error";
|
|
15807
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;
|
|
15808
15913
|
};
|
|
15809
15914
|
semantic?: any;
|
|
15810
15915
|
}, {
|
|
@@ -16029,7 +16134,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16029
16134
|
};
|
|
16030
16135
|
bcsEncoding: "base64";
|
|
16031
16136
|
packageId: string;
|
|
16032
|
-
parsedJson: Record<string,
|
|
16137
|
+
parsedJson: Record<string, unknown>;
|
|
16033
16138
|
sender: string;
|
|
16034
16139
|
transactionModule: string;
|
|
16035
16140
|
bcs: string;
|
|
@@ -16042,7 +16147,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16042
16147
|
};
|
|
16043
16148
|
bcsEncoding: "base58";
|
|
16044
16149
|
packageId: string;
|
|
16045
|
-
parsedJson: Record<string,
|
|
16150
|
+
parsedJson: Record<string, unknown>;
|
|
16046
16151
|
sender: string;
|
|
16047
16152
|
transactionModule: string;
|
|
16048
16153
|
bcs: string;
|
|
@@ -16155,6 +16260,9 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16155
16260
|
} | {
|
|
16156
16261
|
status: "error";
|
|
16157
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;
|
|
16158
16266
|
};
|
|
16159
16267
|
semantic?: any;
|
|
16160
16268
|
}>;
|
|
@@ -16272,14 +16380,23 @@ export declare const LocalMarkOperationOutputSchema: z.ZodDiscriminatedUnion<"st
|
|
|
16272
16380
|
clear?: boolean | undefined;
|
|
16273
16381
|
};
|
|
16274
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>;
|
|
16275
16386
|
status: z.ZodLiteral<"error">;
|
|
16276
16387
|
error: z.ZodString;
|
|
16277
16388
|
}, "strip", z.ZodTypeAny, {
|
|
16278
16389
|
status: "error";
|
|
16279
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;
|
|
16280
16394
|
}, {
|
|
16281
16395
|
status: "error";
|
|
16282
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;
|
|
16283
16400
|
}>]>;
|
|
16284
16401
|
export declare const LocalMarkOperationOutputWrappedSchema: z.ZodObject<{
|
|
16285
16402
|
result: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -16396,14 +16513,23 @@ export declare const LocalMarkOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16396
16513
|
clear?: boolean | undefined;
|
|
16397
16514
|
};
|
|
16398
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>;
|
|
16399
16519
|
status: z.ZodLiteral<"error">;
|
|
16400
16520
|
error: z.ZodString;
|
|
16401
16521
|
}, "strip", z.ZodTypeAny, {
|
|
16402
16522
|
status: "error";
|
|
16403
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;
|
|
16404
16527
|
}, {
|
|
16405
16528
|
status: "error";
|
|
16406
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;
|
|
16407
16533
|
}>]>;
|
|
16408
16534
|
semantic: z.ZodOptional<z.ZodAny>;
|
|
16409
16535
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16429,6 +16555,9 @@ export declare const LocalMarkOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16429
16555
|
} | {
|
|
16430
16556
|
status: "error";
|
|
16431
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;
|
|
16432
16561
|
};
|
|
16433
16562
|
semantic?: any;
|
|
16434
16563
|
}, {
|
|
@@ -16454,6 +16583,9 @@ export declare const LocalMarkOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16454
16583
|
} | {
|
|
16455
16584
|
status: "error";
|
|
16456
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;
|
|
16457
16589
|
};
|
|
16458
16590
|
semantic?: any;
|
|
16459
16591
|
}>;
|
|
@@ -16477,14 +16609,23 @@ export declare const LocalInfoOperationOutputSchema: z.ZodDiscriminatedUnion<"st
|
|
|
16477
16609
|
success: boolean;
|
|
16478
16610
|
};
|
|
16479
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>;
|
|
16480
16615
|
status: z.ZodLiteral<"error">;
|
|
16481
16616
|
error: z.ZodString;
|
|
16482
16617
|
}, "strip", z.ZodTypeAny, {
|
|
16483
16618
|
status: "error";
|
|
16484
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;
|
|
16485
16623
|
}, {
|
|
16486
16624
|
status: "error";
|
|
16487
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;
|
|
16488
16629
|
}>]>;
|
|
16489
16630
|
export declare const LocalInfoOperationOutputWrappedSchema: z.ZodObject<{
|
|
16490
16631
|
result: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
@@ -16507,14 +16648,23 @@ export declare const LocalInfoOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16507
16648
|
success: boolean;
|
|
16508
16649
|
};
|
|
16509
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>;
|
|
16510
16654
|
status: z.ZodLiteral<"error">;
|
|
16511
16655
|
error: z.ZodString;
|
|
16512
16656
|
}, "strip", z.ZodTypeAny, {
|
|
16513
16657
|
status: "error";
|
|
16514
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;
|
|
16515
16662
|
}, {
|
|
16516
16663
|
status: "error";
|
|
16517
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;
|
|
16518
16668
|
}>]>;
|
|
16519
16669
|
semantic: z.ZodOptional<z.ZodAny>;
|
|
16520
16670
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16526,6 +16676,9 @@ export declare const LocalInfoOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16526
16676
|
} | {
|
|
16527
16677
|
status: "error";
|
|
16528
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;
|
|
16529
16682
|
};
|
|
16530
16683
|
semantic?: any;
|
|
16531
16684
|
}, {
|
|
@@ -16537,6 +16690,9 @@ export declare const LocalInfoOperationOutputWrappedSchema: z.ZodObject<{
|
|
|
16537
16690
|
} | {
|
|
16538
16691
|
status: "error";
|
|
16539
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;
|
|
16540
16696
|
};
|
|
16541
16697
|
semantic?: any;
|
|
16542
16698
|
}>;
|