@wowok/agent-mcp 2.3.18 → 2.4.3
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/customer/industry-risks.js +31 -31
- package/dist/customer/order-monitor.js +57 -57
- package/dist/customer/order-strategy.js +89 -89
- package/dist/customer/post-purchase.js +97 -97
- package/dist/customer/reminder-system.js +26 -26
- package/dist/customer/risk-assessment.js +46 -46
- package/dist/customer/types.d.ts +4 -4
- package/dist/customer/types.js +4 -4
- package/dist/customer/user-preferences.js +50 -50
- package/dist/experience/intent-distill.js +6 -6
- package/dist/index.d.ts +2 -2
- package/dist/index.js +11 -1624
- package/dist/knowledge/acquisition-flywheel.js +64 -64
- package/dist/knowledge/arbitration-trust.js +10 -10
- package/dist/knowledge/demand-matching.js +8 -8
- package/dist/knowledge/dynamic-pricing.js +18 -18
- package/dist/knowledge/flywheel-loop.js +11 -11
- package/dist/knowledge/glossary.js +22 -22
- package/dist/knowledge/guard-ledger.d.ts +1 -1
- package/dist/knowledge/guard-ledger.js +145 -104
- package/dist/knowledge/guard-lint.d.ts +77 -0
- package/dist/knowledge/guard-lint.js +670 -0
- package/dist/knowledge/guard-migration.d.ts +48 -0
- package/dist/knowledge/guard-migration.js +228 -0
- package/dist/knowledge/guard-puzzle.d.ts +109 -14
- package/dist/knowledge/guard-puzzle.js +627 -101
- package/dist/knowledge/guard-risk.d.ts +10 -1
- package/dist/knowledge/guard-risk.js +1634 -292
- package/dist/knowledge/guard-templates.d.ts +38 -0
- package/dist/knowledge/guard-templates.js +605 -0
- package/dist/knowledge/guard-translation.d.ts +14 -2
- package/dist/knowledge/guard-translation.js +825 -194
- package/dist/knowledge/index.d.ts +8 -4
- package/dist/knowledge/index.js +9 -5
- package/dist/knowledge/industry-evolution.js +29 -29
- package/dist/knowledge/industry-generalizer.js +52 -52
- package/dist/knowledge/industry-registry.js +20 -33
- package/dist/knowledge/intent-metrics.js +67 -67
- package/dist/knowledge/process-model.js +80 -80
- package/dist/knowledge/reputation-rules.js +9 -9
- package/dist/knowledge/reward-templates.js +51 -51
- package/dist/knowledge/safety-rules.js +3 -3
- package/dist/knowledge/tool-constraints.js +20 -4
- package/dist/knowledge/trust-metrics.js +26 -26
- package/dist/project/graph.d.ts +1 -0
- package/dist/project/graph.js +27 -1
- package/dist/project/index.d.ts +1 -0
- package/dist/project/index.js +39 -2
- package/dist/project/namespace.d.ts +11 -1
- package/dist/project/namespace.js +27 -2
- package/dist/project/query.d.ts +2 -0
- package/dist/project/query.js +56 -15
- package/dist/rules.d.ts +12 -0
- package/dist/rules.js +9 -0
- package/dist/schema/call/allocation.d.ts +10 -10
- package/dist/schema/call/base.js +19 -19
- package/dist/schema/call/bridge.d.ts +32 -32
- package/dist/schema/call/demand.d.ts +84 -84
- package/dist/schema/call/guard.d.ts +153 -0
- package/dist/schema/call/guard.js +50 -0
- package/dist/schema/call/machine.d.ts +38 -38
- package/dist/schema/call/permission.d.ts +78 -78
- package/dist/schema/call/repository.d.ts +22 -22
- package/dist/schema/call/semantic.js +229 -25
- package/dist/schema/call/service.d.ts +7 -7
- package/dist/schema/local/wip.d.ts +39 -19
- package/dist/schema/local/wip.js +5 -5
- package/dist/schema/messenger/index.d.ts +26 -26
- package/dist/schema/messenger/index.js +2 -2
- package/dist/schema/operations.d.ts +270 -192
- package/dist/schema/query/index.d.ts +184 -184
- package/dist/schema/query/index.js +15 -9
- package/dist/schema/trust/index.d.ts +4 -4
- package/dist/schema/utils/guard-parser.js +4 -4
- package/dist/schema/utils/guard-query-utils.d.ts +7 -0
- package/dist/schema/utils/guard-query-utils.js +14 -1
- package/dist/schema/utils/node-parser.js +14 -14
- package/dist/schemas/bridge_operation.output.json +15 -15
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/messenger_operation.output.json +18 -16
- package/dist/schemas/onchain_events.output.json +15 -15
- package/dist/schemas/onchain_operations.output.json +16 -16
- package/dist/schemas/onchain_operations.schema.json +11 -20
- package/dist/schemas/onchain_operations_allocation.schema.json +7 -10
- package/dist/schemas/onchain_operations_machine.schema.json +2 -5
- package/dist/schemas/onchain_operations_service.schema.json +2 -5
- package/dist/schemas/onchain_table_data.output.json +20 -26
- package/dist/schemas/wip_file.output.json +24 -1
- package/dist/tools/handlers/bridge.d.ts +1 -0
- package/dist/tools/handlers/bridge.js +1 -0
- package/dist/tools/handlers/config.d.ts +2 -0
- package/dist/tools/handlers/config.js +71 -0
- package/dist/tools/handlers/file-export.d.ts +3 -0
- package/dist/tools/handlers/file-export.js +90 -0
- package/dist/tools/handlers/local.d.ts +30 -0
- package/dist/tools/handlers/local.js +27 -0
- package/dist/tools/handlers/messenger.d.ts +16 -0
- package/dist/tools/handlers/messenger.js +187 -0
- package/dist/tools/handlers/onchain.d.ts +2 -0
- package/dist/tools/handlers/onchain.js +246 -0
- package/dist/tools/handlers/project.d.ts +2 -0
- package/dist/tools/handlers/project.js +53 -0
- package/dist/tools/handlers/query.d.ts +5 -0
- package/dist/tools/handlers/query.js +256 -0
- package/dist/tools/handlers/schema-query.d.ts +2 -0
- package/dist/tools/handlers/schema-query.js +92 -0
- package/dist/tools/handlers/trust.d.ts +2 -0
- package/dist/tools/handlers/trust.js +194 -0
- package/dist/tools/handlers/wip.d.ts +2 -0
- package/dist/tools/handlers/wip.js +44 -0
- package/dist/tools/index.d.ts +13 -0
- package/dist/tools/index.js +479 -0
- package/dist/tools/rules-hook.d.ts +2 -0
- package/dist/tools/rules-hook.js +22 -0
- package/dist/tools/shared.d.ts +29 -0
- package/dist/tools/shared.js +130 -0
- package/dist/tools/types.d.ts +35 -0
- package/dist/tools/types.js +1 -0
- package/dist/tools/wrap.d.ts +6 -0
- package/dist/tools/wrap.js +55 -0
- package/package.json +19 -5
|
@@ -2672,7 +2672,7 @@ export declare const ProgressSessionSchema: z.ZodObject<{
|
|
|
2672
2672
|
accomplished: boolean;
|
|
2673
2673
|
}>, "many">;
|
|
2674
2674
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2675
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
2675
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2676
2676
|
}, "strip", z.ZodTypeAny, {
|
|
2677
2677
|
forwards: {
|
|
2678
2678
|
time: string | number;
|
|
@@ -2702,9 +2702,9 @@ export declare const ProgressSessionSchema: z.ZodObject<{
|
|
|
2702
2702
|
msg: string;
|
|
2703
2703
|
accomplished: boolean;
|
|
2704
2704
|
}[];
|
|
2705
|
-
threshold: string | number;
|
|
2706
2705
|
next_node: string;
|
|
2707
2706
|
weights: string | number;
|
|
2707
|
+
threshold?: string | number | undefined;
|
|
2708
2708
|
}>;
|
|
2709
2709
|
export declare const ObjectProgressSchema: z.ZodObject<{
|
|
2710
2710
|
object: z.ZodString;
|
|
@@ -2868,7 +2868,7 @@ export declare const ObjectProgressSchema: z.ZodObject<{
|
|
|
2868
2868
|
accomplished: boolean;
|
|
2869
2869
|
}>, "many">;
|
|
2870
2870
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2871
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
2871
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2872
2872
|
}, "strip", z.ZodTypeAny, {
|
|
2873
2873
|
forwards: {
|
|
2874
2874
|
time: string | number;
|
|
@@ -2898,9 +2898,9 @@ export declare const ObjectProgressSchema: z.ZodObject<{
|
|
|
2898
2898
|
msg: string;
|
|
2899
2899
|
accomplished: boolean;
|
|
2900
2900
|
}[];
|
|
2901
|
-
threshold: string | number;
|
|
2902
2901
|
next_node: string;
|
|
2903
2902
|
weights: string | number;
|
|
2903
|
+
threshold?: string | number | undefined;
|
|
2904
2904
|
}>, "many">;
|
|
2905
2905
|
history_count: z.ZodNumber;
|
|
2906
2906
|
current_time: z.ZodNumber;
|
|
@@ -3066,7 +3066,7 @@ export declare const ObjectProgressSchema: z.ZodObject<{
|
|
|
3066
3066
|
accomplished: boolean;
|
|
3067
3067
|
}>, "many">;
|
|
3068
3068
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3069
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
3069
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3070
3070
|
}, "strip", z.ZodTypeAny, {
|
|
3071
3071
|
forwards: {
|
|
3072
3072
|
time: string | number;
|
|
@@ -3096,9 +3096,9 @@ export declare const ObjectProgressSchema: z.ZodObject<{
|
|
|
3096
3096
|
msg: string;
|
|
3097
3097
|
accomplished: boolean;
|
|
3098
3098
|
}[];
|
|
3099
|
-
threshold: string | number;
|
|
3100
3099
|
next_node: string;
|
|
3101
3100
|
weights: string | number;
|
|
3101
|
+
threshold?: string | number | undefined;
|
|
3102
3102
|
}>, "many">;
|
|
3103
3103
|
history_count: z.ZodNumber;
|
|
3104
3104
|
current_time: z.ZodNumber;
|
|
@@ -3264,7 +3264,7 @@ export declare const ObjectProgressSchema: z.ZodObject<{
|
|
|
3264
3264
|
accomplished: boolean;
|
|
3265
3265
|
}>, "many">;
|
|
3266
3266
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3267
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
3267
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3268
3268
|
}, "strip", z.ZodTypeAny, {
|
|
3269
3269
|
forwards: {
|
|
3270
3270
|
time: string | number;
|
|
@@ -3294,9 +3294,9 @@ export declare const ObjectProgressSchema: z.ZodObject<{
|
|
|
3294
3294
|
msg: string;
|
|
3295
3295
|
accomplished: boolean;
|
|
3296
3296
|
}[];
|
|
3297
|
-
threshold: string | number;
|
|
3298
3297
|
next_node: string;
|
|
3299
3298
|
weights: string | number;
|
|
3299
|
+
threshold?: string | number | undefined;
|
|
3300
3300
|
}>, "many">;
|
|
3301
3301
|
history_count: z.ZodNumber;
|
|
3302
3302
|
current_time: z.ZodNumber;
|
|
@@ -4121,7 +4121,7 @@ export declare const AllocatorSchema: z.ZodObject<{
|
|
|
4121
4121
|
}>;
|
|
4122
4122
|
export declare const AllocatorsSchema: z.ZodObject<{
|
|
4123
4123
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
4124
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
4124
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4125
4125
|
allocators: z.ZodArray<z.ZodObject<{
|
|
4126
4126
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
4127
4127
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -4251,7 +4251,6 @@ export declare const AllocatorsSchema: z.ZodObject<{
|
|
|
4251
4251
|
}[];
|
|
4252
4252
|
}, {
|
|
4253
4253
|
description: string;
|
|
4254
|
-
threshold: string | number;
|
|
4255
4254
|
allocators: {
|
|
4256
4255
|
guard: string;
|
|
4257
4256
|
sharing: {
|
|
@@ -4271,6 +4270,7 @@ export declare const AllocatorsSchema: z.ZodObject<{
|
|
|
4271
4270
|
max?: string | number | null | undefined;
|
|
4272
4271
|
fix?: string | number | undefined;
|
|
4273
4272
|
}[];
|
|
4273
|
+
threshold?: string | number | undefined;
|
|
4274
4274
|
}>;
|
|
4275
4275
|
export declare const ObjectServiceSchema: z.ZodObject<{
|
|
4276
4276
|
object: z.ZodString;
|
|
@@ -4378,7 +4378,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
|
|
|
4378
4378
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
4379
4379
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
4380
4380
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
4381
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
4381
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4382
4382
|
allocators: z.ZodArray<z.ZodObject<{
|
|
4383
4383
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
4384
4384
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -4508,7 +4508,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
|
|
|
4508
4508
|
}[];
|
|
4509
4509
|
}, {
|
|
4510
4510
|
description: string;
|
|
4511
|
-
threshold: string | number;
|
|
4512
4511
|
allocators: {
|
|
4513
4512
|
guard: string;
|
|
4514
4513
|
sharing: {
|
|
@@ -4528,6 +4527,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
|
|
|
4528
4527
|
max?: string | number | null | undefined;
|
|
4529
4528
|
fix?: string | number | undefined;
|
|
4530
4529
|
}[];
|
|
4530
|
+
threshold?: string | number | undefined;
|
|
4531
4531
|
}>, z.ZodNull]>;
|
|
4532
4532
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
4533
4533
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -4638,7 +4638,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
|
|
|
4638
4638
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
4639
4639
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
4640
4640
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
4641
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
4641
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4642
4642
|
allocators: z.ZodArray<z.ZodObject<{
|
|
4643
4643
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
4644
4644
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -4768,7 +4768,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
|
|
|
4768
4768
|
}[];
|
|
4769
4769
|
}, {
|
|
4770
4770
|
description: string;
|
|
4771
|
-
threshold: string | number;
|
|
4772
4771
|
allocators: {
|
|
4773
4772
|
guard: string;
|
|
4774
4773
|
sharing: {
|
|
@@ -4788,6 +4787,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
|
|
|
4788
4787
|
max?: string | number | null | undefined;
|
|
4789
4788
|
fix?: string | number | undefined;
|
|
4790
4789
|
}[];
|
|
4790
|
+
threshold?: string | number | undefined;
|
|
4791
4791
|
}>, z.ZodNull]>;
|
|
4792
4792
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
4793
4793
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -4898,7 +4898,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
|
|
|
4898
4898
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
4899
4899
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
4900
4900
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
4901
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
4901
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4902
4902
|
allocators: z.ZodArray<z.ZodObject<{
|
|
4903
4903
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
4904
4904
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -5028,7 +5028,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
|
|
|
5028
5028
|
}[];
|
|
5029
5029
|
}, {
|
|
5030
5030
|
description: string;
|
|
5031
|
-
threshold: string | number;
|
|
5032
5031
|
allocators: {
|
|
5033
5032
|
guard: string;
|
|
5034
5033
|
sharing: {
|
|
@@ -5048,6 +5047,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
|
|
|
5048
5047
|
max?: string | number | null | undefined;
|
|
5049
5048
|
fix?: string | number | undefined;
|
|
5050
5049
|
}[];
|
|
5050
|
+
threshold?: string | number | undefined;
|
|
5051
5051
|
}>, z.ZodNull]>;
|
|
5052
5052
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
5053
5053
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -6076,7 +6076,7 @@ export declare const PolicyRuleSchema: z.ZodObject<{
|
|
|
6076
6076
|
id_from_submission?: number | undefined;
|
|
6077
6077
|
data_from_submission?: number | undefined;
|
|
6078
6078
|
}[];
|
|
6079
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
6079
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
6080
6080
|
quote_guard?: string | null | undefined;
|
|
6081
6081
|
}, {
|
|
6082
6082
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -6087,7 +6087,7 @@ export declare const PolicyRuleSchema: z.ZodObject<{
|
|
|
6087
6087
|
id_from_submission?: number | undefined;
|
|
6088
6088
|
data_from_submission?: number | undefined;
|
|
6089
6089
|
}[];
|
|
6090
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
6090
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
6091
6091
|
quote_guard?: string | null | undefined;
|
|
6092
6092
|
}>;
|
|
6093
6093
|
export declare const TableItem_RepositoryDataSchema: z.ZodObject<{
|
|
@@ -6797,7 +6797,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
|
|
|
6797
6797
|
id_from_submission?: number | undefined;
|
|
6798
6798
|
data_from_submission?: number | undefined;
|
|
6799
6799
|
}[];
|
|
6800
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
6800
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
6801
6801
|
quote_guard?: string | null | undefined;
|
|
6802
6802
|
}, {
|
|
6803
6803
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -6808,7 +6808,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
|
|
|
6808
6808
|
id_from_submission?: number | undefined;
|
|
6809
6809
|
data_from_submission?: number | undefined;
|
|
6810
6810
|
}[];
|
|
6811
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
6811
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
6812
6812
|
quote_guard?: string | null | undefined;
|
|
6813
6813
|
}>, "many">;
|
|
6814
6814
|
data_count: z.ZodNumber;
|
|
@@ -6914,7 +6914,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
|
|
|
6914
6914
|
id_from_submission?: number | undefined;
|
|
6915
6915
|
data_from_submission?: number | undefined;
|
|
6916
6916
|
}[];
|
|
6917
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
6917
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
6918
6918
|
quote_guard?: string | null | undefined;
|
|
6919
6919
|
}, {
|
|
6920
6920
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -6925,7 +6925,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
|
|
|
6925
6925
|
id_from_submission?: number | undefined;
|
|
6926
6926
|
data_from_submission?: number | undefined;
|
|
6927
6927
|
}[];
|
|
6928
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
6928
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
6929
6929
|
quote_guard?: string | null | undefined;
|
|
6930
6930
|
}>, "many">;
|
|
6931
6931
|
data_count: z.ZodNumber;
|
|
@@ -7031,7 +7031,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
|
|
|
7031
7031
|
id_from_submission?: number | undefined;
|
|
7032
7032
|
data_from_submission?: number | undefined;
|
|
7033
7033
|
}[];
|
|
7034
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
7034
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
7035
7035
|
quote_guard?: string | null | undefined;
|
|
7036
7036
|
}, {
|
|
7037
7037
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -7042,7 +7042,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
|
|
|
7042
7042
|
id_from_submission?: number | undefined;
|
|
7043
7043
|
data_from_submission?: number | undefined;
|
|
7044
7044
|
}[];
|
|
7045
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
7045
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
7046
7046
|
quote_guard?: string | null | undefined;
|
|
7047
7047
|
}>, "many">;
|
|
7048
7048
|
data_count: z.ZodNumber;
|
|
@@ -8478,7 +8478,7 @@ export declare const ObjectPermissionSchema: z.ZodObject<{
|
|
|
8478
8478
|
}>, "many">;
|
|
8479
8479
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
8480
8480
|
}, z.ZodTypeAny, "passthrough">>;
|
|
8481
|
-
export declare const WitnessTypeSchema: z.ZodEffects<z.ZodNumber, import("@wowok/wowok").WitnessType, number>;
|
|
8481
|
+
export declare const WitnessTypeSchema: z.ZodUnion<[z.ZodEffects<z.ZodNumber, import("@wowok/wowok").WitnessType, number>, z.ZodEffects<z.ZodString, string, string>]>;
|
|
8482
8482
|
export declare const GuardQueryIdSchema: z.ZodEffects<z.ZodNumber, number, number>;
|
|
8483
8483
|
export declare const GuardNodeSchema: z.ZodType;
|
|
8484
8484
|
export declare const ObjectGuardSchema: z.ZodObject<{
|
|
@@ -11380,7 +11380,7 @@ export declare const MachineForwardSchema: z.ZodObject<{
|
|
|
11380
11380
|
}>;
|
|
11381
11381
|
export declare const MachineNodePairSchema: z.ZodObject<{
|
|
11382
11382
|
prev_node: z.ZodString;
|
|
11383
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
11383
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
11384
11384
|
forwards: z.ZodArray<z.ZodObject<{
|
|
11385
11385
|
name: z.ZodString;
|
|
11386
11386
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -11439,14 +11439,14 @@ export declare const MachineNodePairSchema: z.ZodObject<{
|
|
|
11439
11439
|
namedOperator?: string | null | undefined;
|
|
11440
11440
|
permissionIndex?: string | number | null | undefined;
|
|
11441
11441
|
}[];
|
|
11442
|
-
threshold: string | number;
|
|
11443
11442
|
prev_node: string;
|
|
11443
|
+
threshold?: string | number | undefined;
|
|
11444
11444
|
}>;
|
|
11445
11445
|
export declare const MachineNodeSchema: z.ZodObject<{
|
|
11446
11446
|
name: z.ZodString;
|
|
11447
11447
|
pairs: z.ZodArray<z.ZodObject<{
|
|
11448
11448
|
prev_node: z.ZodString;
|
|
11449
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
11449
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
11450
11450
|
forwards: z.ZodArray<z.ZodObject<{
|
|
11451
11451
|
name: z.ZodString;
|
|
11452
11452
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -11505,8 +11505,8 @@ export declare const MachineNodeSchema: z.ZodObject<{
|
|
|
11505
11505
|
namedOperator?: string | null | undefined;
|
|
11506
11506
|
permissionIndex?: string | number | null | undefined;
|
|
11507
11507
|
}[];
|
|
11508
|
-
threshold: string | number;
|
|
11509
11508
|
prev_node: string;
|
|
11509
|
+
threshold?: string | number | undefined;
|
|
11510
11510
|
}>, "many">;
|
|
11511
11511
|
}, "strict", z.ZodTypeAny, {
|
|
11512
11512
|
name: string;
|
|
@@ -11537,8 +11537,8 @@ export declare const MachineNodeSchema: z.ZodObject<{
|
|
|
11537
11537
|
namedOperator?: string | null | undefined;
|
|
11538
11538
|
permissionIndex?: string | number | null | undefined;
|
|
11539
11539
|
}[];
|
|
11540
|
-
threshold: string | number;
|
|
11541
11540
|
prev_node: string;
|
|
11541
|
+
threshold?: string | number | undefined;
|
|
11542
11542
|
}[];
|
|
11543
11543
|
}>;
|
|
11544
11544
|
export declare const TableItem_MachineNodeSchema: z.ZodObject<{
|
|
@@ -11614,7 +11614,7 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
|
|
|
11614
11614
|
name: z.ZodString;
|
|
11615
11615
|
value: z.ZodArray<z.ZodObject<{
|
|
11616
11616
|
prev_node: z.ZodString;
|
|
11617
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
11617
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
11618
11618
|
forwards: z.ZodArray<z.ZodObject<{
|
|
11619
11619
|
name: z.ZodString;
|
|
11620
11620
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -11673,8 +11673,8 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
|
|
|
11673
11673
|
namedOperator?: string | null | undefined;
|
|
11674
11674
|
permissionIndex?: string | number | null | undefined;
|
|
11675
11675
|
}[];
|
|
11676
|
-
threshold: string | number;
|
|
11677
11676
|
prev_node: string;
|
|
11677
|
+
threshold?: string | number | undefined;
|
|
11678
11678
|
}>, "many">;
|
|
11679
11679
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
11680
11680
|
object: z.ZodString;
|
|
@@ -11749,7 +11749,7 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
|
|
|
11749
11749
|
name: z.ZodString;
|
|
11750
11750
|
value: z.ZodArray<z.ZodObject<{
|
|
11751
11751
|
prev_node: z.ZodString;
|
|
11752
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
11752
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
11753
11753
|
forwards: z.ZodArray<z.ZodObject<{
|
|
11754
11754
|
name: z.ZodString;
|
|
11755
11755
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -11808,8 +11808,8 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
|
|
|
11808
11808
|
namedOperator?: string | null | undefined;
|
|
11809
11809
|
permissionIndex?: string | number | null | undefined;
|
|
11810
11810
|
}[];
|
|
11811
|
-
threshold: string | number;
|
|
11812
11811
|
prev_node: string;
|
|
11812
|
+
threshold?: string | number | undefined;
|
|
11813
11813
|
}>, "many">;
|
|
11814
11814
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
11815
11815
|
object: z.ZodString;
|
|
@@ -11884,7 +11884,7 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
|
|
|
11884
11884
|
name: z.ZodString;
|
|
11885
11885
|
value: z.ZodArray<z.ZodObject<{
|
|
11886
11886
|
prev_node: z.ZodString;
|
|
11887
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
11887
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
11888
11888
|
forwards: z.ZodArray<z.ZodObject<{
|
|
11889
11889
|
name: z.ZodString;
|
|
11890
11890
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -11943,8 +11943,8 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
|
|
|
11943
11943
|
namedOperator?: string | null | undefined;
|
|
11944
11944
|
permissionIndex?: string | number | null | undefined;
|
|
11945
11945
|
}[];
|
|
11946
|
-
threshold: string | number;
|
|
11947
11946
|
prev_node: string;
|
|
11947
|
+
threshold?: string | number | undefined;
|
|
11948
11948
|
}>, "many">;
|
|
11949
11949
|
}, z.ZodTypeAny, "passthrough">>;
|
|
11950
11950
|
export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
|
|
@@ -12098,7 +12098,7 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
|
|
|
12098
12098
|
accomplished: boolean;
|
|
12099
12099
|
}>, "many">;
|
|
12100
12100
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12101
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
12101
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
12102
12102
|
}, "strip", z.ZodTypeAny, {
|
|
12103
12103
|
forwards: {
|
|
12104
12104
|
time: string | number;
|
|
@@ -12128,9 +12128,9 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
|
|
|
12128
12128
|
msg: string;
|
|
12129
12129
|
accomplished: boolean;
|
|
12130
12130
|
}[];
|
|
12131
|
-
threshold: string | number;
|
|
12132
12131
|
next_node: string;
|
|
12133
12132
|
weights: string | number;
|
|
12133
|
+
threshold?: string | number | undefined;
|
|
12134
12134
|
}>, "many">;
|
|
12135
12135
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
12136
12136
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -12284,7 +12284,7 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
|
|
|
12284
12284
|
accomplished: boolean;
|
|
12285
12285
|
}>, "many">;
|
|
12286
12286
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12287
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
12287
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
12288
12288
|
}, "strip", z.ZodTypeAny, {
|
|
12289
12289
|
forwards: {
|
|
12290
12290
|
time: string | number;
|
|
@@ -12314,9 +12314,9 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
|
|
|
12314
12314
|
msg: string;
|
|
12315
12315
|
accomplished: boolean;
|
|
12316
12316
|
}[];
|
|
12317
|
-
threshold: string | number;
|
|
12318
12317
|
next_node: string;
|
|
12319
12318
|
weights: string | number;
|
|
12319
|
+
threshold?: string | number | undefined;
|
|
12320
12320
|
}>, "many">;
|
|
12321
12321
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
12322
12322
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
@@ -12470,7 +12470,7 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
|
|
|
12470
12470
|
accomplished: boolean;
|
|
12471
12471
|
}>, "many">;
|
|
12472
12472
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12473
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
12473
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
12474
12474
|
}, "strip", z.ZodTypeAny, {
|
|
12475
12475
|
forwards: {
|
|
12476
12476
|
time: string | number;
|
|
@@ -12500,9 +12500,9 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
|
|
|
12500
12500
|
msg: string;
|
|
12501
12501
|
accomplished: boolean;
|
|
12502
12502
|
}[];
|
|
12503
|
-
threshold: string | number;
|
|
12504
12503
|
next_node: string;
|
|
12505
12504
|
weights: string | number;
|
|
12505
|
+
threshold?: string | number | undefined;
|
|
12506
12506
|
}>, "many">;
|
|
12507
12507
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
12508
12508
|
}, z.ZodTypeAny, "passthrough">>;
|
|
@@ -13653,7 +13653,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13653
13653
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
13654
13654
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
13655
13655
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
13656
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
13656
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
13657
13657
|
allocators: z.ZodArray<z.ZodObject<{
|
|
13658
13658
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
13659
13659
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -13783,7 +13783,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13783
13783
|
}[];
|
|
13784
13784
|
}, {
|
|
13785
13785
|
description: string;
|
|
13786
|
-
threshold: string | number;
|
|
13787
13786
|
allocators: {
|
|
13788
13787
|
guard: string;
|
|
13789
13788
|
sharing: {
|
|
@@ -13803,6 +13802,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13803
13802
|
max?: string | number | null | undefined;
|
|
13804
13803
|
fix?: string | number | undefined;
|
|
13805
13804
|
}[];
|
|
13805
|
+
threshold?: string | number | undefined;
|
|
13806
13806
|
}>, z.ZodNull]>;
|
|
13807
13807
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
13808
13808
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -13913,7 +13913,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13913
13913
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
13914
13914
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
13915
13915
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
13916
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
13916
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
13917
13917
|
allocators: z.ZodArray<z.ZodObject<{
|
|
13918
13918
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
13919
13919
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -14043,7 +14043,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14043
14043
|
}[];
|
|
14044
14044
|
}, {
|
|
14045
14045
|
description: string;
|
|
14046
|
-
threshold: string | number;
|
|
14047
14046
|
allocators: {
|
|
14048
14047
|
guard: string;
|
|
14049
14048
|
sharing: {
|
|
@@ -14063,6 +14062,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14063
14062
|
max?: string | number | null | undefined;
|
|
14064
14063
|
fix?: string | number | undefined;
|
|
14065
14064
|
}[];
|
|
14065
|
+
threshold?: string | number | undefined;
|
|
14066
14066
|
}>, z.ZodNull]>;
|
|
14067
14067
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
14068
14068
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -14173,7 +14173,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14173
14173
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
14174
14174
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
14175
14175
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
14176
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
14176
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
14177
14177
|
allocators: z.ZodArray<z.ZodObject<{
|
|
14178
14178
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
14179
14179
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -14303,7 +14303,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14303
14303
|
}[];
|
|
14304
14304
|
}, {
|
|
14305
14305
|
description: string;
|
|
14306
|
-
threshold: string | number;
|
|
14307
14306
|
allocators: {
|
|
14308
14307
|
guard: string;
|
|
14309
14308
|
sharing: {
|
|
@@ -14323,6 +14322,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14323
14322
|
max?: string | number | null | undefined;
|
|
14324
14323
|
fix?: string | number | undefined;
|
|
14325
14324
|
}[];
|
|
14325
|
+
threshold?: string | number | undefined;
|
|
14326
14326
|
}>, z.ZodNull]>;
|
|
14327
14327
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
14328
14328
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -14783,7 +14783,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14783
14783
|
accomplished: boolean;
|
|
14784
14784
|
}>, "many">;
|
|
14785
14785
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
14786
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
14786
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
14787
14787
|
}, "strip", z.ZodTypeAny, {
|
|
14788
14788
|
forwards: {
|
|
14789
14789
|
time: string | number;
|
|
@@ -14813,9 +14813,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14813
14813
|
msg: string;
|
|
14814
14814
|
accomplished: boolean;
|
|
14815
14815
|
}[];
|
|
14816
|
-
threshold: string | number;
|
|
14817
14816
|
next_node: string;
|
|
14818
14817
|
weights: string | number;
|
|
14818
|
+
threshold?: string | number | undefined;
|
|
14819
14819
|
}>, "many">;
|
|
14820
14820
|
history_count: z.ZodNumber;
|
|
14821
14821
|
current_time: z.ZodNumber;
|
|
@@ -14981,7 +14981,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14981
14981
|
accomplished: boolean;
|
|
14982
14982
|
}>, "many">;
|
|
14983
14983
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
14984
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
14984
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
14985
14985
|
}, "strip", z.ZodTypeAny, {
|
|
14986
14986
|
forwards: {
|
|
14987
14987
|
time: string | number;
|
|
@@ -15011,9 +15011,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15011
15011
|
msg: string;
|
|
15012
15012
|
accomplished: boolean;
|
|
15013
15013
|
}[];
|
|
15014
|
-
threshold: string | number;
|
|
15015
15014
|
next_node: string;
|
|
15016
15015
|
weights: string | number;
|
|
15016
|
+
threshold?: string | number | undefined;
|
|
15017
15017
|
}>, "many">;
|
|
15018
15018
|
history_count: z.ZodNumber;
|
|
15019
15019
|
current_time: z.ZodNumber;
|
|
@@ -15179,7 +15179,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15179
15179
|
accomplished: boolean;
|
|
15180
15180
|
}>, "many">;
|
|
15181
15181
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
15182
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
15182
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15183
15183
|
}, "strip", z.ZodTypeAny, {
|
|
15184
15184
|
forwards: {
|
|
15185
15185
|
time: string | number;
|
|
@@ -15209,9 +15209,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15209
15209
|
msg: string;
|
|
15210
15210
|
accomplished: boolean;
|
|
15211
15211
|
}[];
|
|
15212
|
-
threshold: string | number;
|
|
15213
15212
|
next_node: string;
|
|
15214
15213
|
weights: string | number;
|
|
15214
|
+
threshold?: string | number | undefined;
|
|
15215
15215
|
}>, "many">;
|
|
15216
15216
|
history_count: z.ZodNumber;
|
|
15217
15217
|
current_time: z.ZodNumber;
|
|
@@ -17006,7 +17006,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
17006
17006
|
id_from_submission?: number | undefined;
|
|
17007
17007
|
data_from_submission?: number | undefined;
|
|
17008
17008
|
}[];
|
|
17009
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
17009
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
17010
17010
|
quote_guard?: string | null | undefined;
|
|
17011
17011
|
}, {
|
|
17012
17012
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -17017,7 +17017,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
17017
17017
|
id_from_submission?: number | undefined;
|
|
17018
17018
|
data_from_submission?: number | undefined;
|
|
17019
17019
|
}[];
|
|
17020
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
17020
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
17021
17021
|
quote_guard?: string | null | undefined;
|
|
17022
17022
|
}>, "many">;
|
|
17023
17023
|
data_count: z.ZodNumber;
|
|
@@ -17123,7 +17123,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
17123
17123
|
id_from_submission?: number | undefined;
|
|
17124
17124
|
data_from_submission?: number | undefined;
|
|
17125
17125
|
}[];
|
|
17126
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
17126
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
17127
17127
|
quote_guard?: string | null | undefined;
|
|
17128
17128
|
}, {
|
|
17129
17129
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -17134,7 +17134,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
17134
17134
|
id_from_submission?: number | undefined;
|
|
17135
17135
|
data_from_submission?: number | undefined;
|
|
17136
17136
|
}[];
|
|
17137
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
17137
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
17138
17138
|
quote_guard?: string | null | undefined;
|
|
17139
17139
|
}>, "many">;
|
|
17140
17140
|
data_count: z.ZodNumber;
|
|
@@ -17240,7 +17240,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
17240
17240
|
id_from_submission?: number | undefined;
|
|
17241
17241
|
data_from_submission?: number | undefined;
|
|
17242
17242
|
}[];
|
|
17243
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
17243
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
17244
17244
|
quote_guard?: string | null | undefined;
|
|
17245
17245
|
}, {
|
|
17246
17246
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -17251,7 +17251,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
17251
17251
|
id_from_submission?: number | undefined;
|
|
17252
17252
|
data_from_submission?: number | undefined;
|
|
17253
17253
|
}[];
|
|
17254
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
17254
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
17255
17255
|
quote_guard?: string | null | undefined;
|
|
17256
17256
|
}>, "many">;
|
|
17257
17257
|
data_count: z.ZodNumber;
|
|
@@ -21884,7 +21884,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
21884
21884
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
21885
21885
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
21886
21886
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
21887
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
21887
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21888
21888
|
allocators: z.ZodArray<z.ZodObject<{
|
|
21889
21889
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
21890
21890
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -22014,7 +22014,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
22014
22014
|
}[];
|
|
22015
22015
|
}, {
|
|
22016
22016
|
description: string;
|
|
22017
|
-
threshold: string | number;
|
|
22018
22017
|
allocators: {
|
|
22019
22018
|
guard: string;
|
|
22020
22019
|
sharing: {
|
|
@@ -22034,6 +22033,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
22034
22033
|
max?: string | number | null | undefined;
|
|
22035
22034
|
fix?: string | number | undefined;
|
|
22036
22035
|
}[];
|
|
22036
|
+
threshold?: string | number | undefined;
|
|
22037
22037
|
}>, z.ZodNull]>;
|
|
22038
22038
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
22039
22039
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -22144,7 +22144,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
22144
22144
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
22145
22145
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
22146
22146
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
22147
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
22147
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
22148
22148
|
allocators: z.ZodArray<z.ZodObject<{
|
|
22149
22149
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
22150
22150
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -22274,7 +22274,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
22274
22274
|
}[];
|
|
22275
22275
|
}, {
|
|
22276
22276
|
description: string;
|
|
22277
|
-
threshold: string | number;
|
|
22278
22277
|
allocators: {
|
|
22279
22278
|
guard: string;
|
|
22280
22279
|
sharing: {
|
|
@@ -22294,6 +22293,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
22294
22293
|
max?: string | number | null | undefined;
|
|
22295
22294
|
fix?: string | number | undefined;
|
|
22296
22295
|
}[];
|
|
22296
|
+
threshold?: string | number | undefined;
|
|
22297
22297
|
}>, z.ZodNull]>;
|
|
22298
22298
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
22299
22299
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -22404,7 +22404,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
22404
22404
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
22405
22405
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
22406
22406
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
22407
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
22407
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
22408
22408
|
allocators: z.ZodArray<z.ZodObject<{
|
|
22409
22409
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
22410
22410
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -22534,7 +22534,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
22534
22534
|
}[];
|
|
22535
22535
|
}, {
|
|
22536
22536
|
description: string;
|
|
22537
|
-
threshold: string | number;
|
|
22538
22537
|
allocators: {
|
|
22539
22538
|
guard: string;
|
|
22540
22539
|
sharing: {
|
|
@@ -22554,6 +22553,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
22554
22553
|
max?: string | number | null | undefined;
|
|
22555
22554
|
fix?: string | number | undefined;
|
|
22556
22555
|
}[];
|
|
22556
|
+
threshold?: string | number | undefined;
|
|
22557
22557
|
}>, z.ZodNull]>;
|
|
22558
22558
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
22559
22559
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -23014,7 +23014,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
23014
23014
|
accomplished: boolean;
|
|
23015
23015
|
}>, "many">;
|
|
23016
23016
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
23017
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
23017
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
23018
23018
|
}, "strip", z.ZodTypeAny, {
|
|
23019
23019
|
forwards: {
|
|
23020
23020
|
time: string | number;
|
|
@@ -23044,9 +23044,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
23044
23044
|
msg: string;
|
|
23045
23045
|
accomplished: boolean;
|
|
23046
23046
|
}[];
|
|
23047
|
-
threshold: string | number;
|
|
23048
23047
|
next_node: string;
|
|
23049
23048
|
weights: string | number;
|
|
23049
|
+
threshold?: string | number | undefined;
|
|
23050
23050
|
}>, "many">;
|
|
23051
23051
|
history_count: z.ZodNumber;
|
|
23052
23052
|
current_time: z.ZodNumber;
|
|
@@ -23212,7 +23212,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
23212
23212
|
accomplished: boolean;
|
|
23213
23213
|
}>, "many">;
|
|
23214
23214
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
23215
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
23215
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
23216
23216
|
}, "strip", z.ZodTypeAny, {
|
|
23217
23217
|
forwards: {
|
|
23218
23218
|
time: string | number;
|
|
@@ -23242,9 +23242,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
23242
23242
|
msg: string;
|
|
23243
23243
|
accomplished: boolean;
|
|
23244
23244
|
}[];
|
|
23245
|
-
threshold: string | number;
|
|
23246
23245
|
next_node: string;
|
|
23247
23246
|
weights: string | number;
|
|
23247
|
+
threshold?: string | number | undefined;
|
|
23248
23248
|
}>, "many">;
|
|
23249
23249
|
history_count: z.ZodNumber;
|
|
23250
23250
|
current_time: z.ZodNumber;
|
|
@@ -23410,7 +23410,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
23410
23410
|
accomplished: boolean;
|
|
23411
23411
|
}>, "many">;
|
|
23412
23412
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
23413
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
23413
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
23414
23414
|
}, "strip", z.ZodTypeAny, {
|
|
23415
23415
|
forwards: {
|
|
23416
23416
|
time: string | number;
|
|
@@ -23440,9 +23440,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
23440
23440
|
msg: string;
|
|
23441
23441
|
accomplished: boolean;
|
|
23442
23442
|
}[];
|
|
23443
|
-
threshold: string | number;
|
|
23444
23443
|
next_node: string;
|
|
23445
23444
|
weights: string | number;
|
|
23445
|
+
threshold?: string | number | undefined;
|
|
23446
23446
|
}>, "many">;
|
|
23447
23447
|
history_count: z.ZodNumber;
|
|
23448
23448
|
current_time: z.ZodNumber;
|
|
@@ -25237,7 +25237,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
25237
25237
|
id_from_submission?: number | undefined;
|
|
25238
25238
|
data_from_submission?: number | undefined;
|
|
25239
25239
|
}[];
|
|
25240
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
25240
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
25241
25241
|
quote_guard?: string | null | undefined;
|
|
25242
25242
|
}, {
|
|
25243
25243
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -25248,7 +25248,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
25248
25248
|
id_from_submission?: number | undefined;
|
|
25249
25249
|
data_from_submission?: number | undefined;
|
|
25250
25250
|
}[];
|
|
25251
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
25251
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
25252
25252
|
quote_guard?: string | null | undefined;
|
|
25253
25253
|
}>, "many">;
|
|
25254
25254
|
data_count: z.ZodNumber;
|
|
@@ -25354,7 +25354,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
25354
25354
|
id_from_submission?: number | undefined;
|
|
25355
25355
|
data_from_submission?: number | undefined;
|
|
25356
25356
|
}[];
|
|
25357
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
25357
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
25358
25358
|
quote_guard?: string | null | undefined;
|
|
25359
25359
|
}, {
|
|
25360
25360
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -25365,7 +25365,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
25365
25365
|
id_from_submission?: number | undefined;
|
|
25366
25366
|
data_from_submission?: number | undefined;
|
|
25367
25367
|
}[];
|
|
25368
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
25368
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
25369
25369
|
quote_guard?: string | null | undefined;
|
|
25370
25370
|
}>, "many">;
|
|
25371
25371
|
data_count: z.ZodNumber;
|
|
@@ -25471,7 +25471,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
25471
25471
|
id_from_submission?: number | undefined;
|
|
25472
25472
|
data_from_submission?: number | undefined;
|
|
25473
25473
|
}[];
|
|
25474
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
25474
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
25475
25475
|
quote_guard?: string | null | undefined;
|
|
25476
25476
|
}, {
|
|
25477
25477
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -25482,7 +25482,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
25482
25482
|
id_from_submission?: number | undefined;
|
|
25483
25483
|
data_from_submission?: number | undefined;
|
|
25484
25484
|
}[];
|
|
25485
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
25485
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
25486
25486
|
quote_guard?: string | null | undefined;
|
|
25487
25487
|
}>, "many">;
|
|
25488
25488
|
data_count: z.ZodNumber;
|
|
@@ -29919,7 +29919,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
29919
29919
|
accomplished: boolean;
|
|
29920
29920
|
}>, "many">;
|
|
29921
29921
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
29922
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
29922
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
29923
29923
|
}, "strip", z.ZodTypeAny, {
|
|
29924
29924
|
forwards: {
|
|
29925
29925
|
time: string | number;
|
|
@@ -29949,9 +29949,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
29949
29949
|
msg: string;
|
|
29950
29950
|
accomplished: boolean;
|
|
29951
29951
|
}[];
|
|
29952
|
-
threshold: string | number;
|
|
29953
29952
|
next_node: string;
|
|
29954
29953
|
weights: string | number;
|
|
29954
|
+
threshold?: string | number | undefined;
|
|
29955
29955
|
}>, "many">;
|
|
29956
29956
|
history_count: z.ZodNumber;
|
|
29957
29957
|
current_time: z.ZodNumber;
|
|
@@ -30237,7 +30237,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
30237
30237
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
30238
30238
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
30239
30239
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
30240
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
30240
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
30241
30241
|
allocators: z.ZodArray<z.ZodObject<{
|
|
30242
30242
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
30243
30243
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -30367,7 +30367,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
30367
30367
|
}[];
|
|
30368
30368
|
}, {
|
|
30369
30369
|
description: string;
|
|
30370
|
-
threshold: string | number;
|
|
30371
30370
|
allocators: {
|
|
30372
30371
|
guard: string;
|
|
30373
30372
|
sharing: {
|
|
@@ -30387,6 +30386,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
30387
30386
|
max?: string | number | null | undefined;
|
|
30388
30387
|
fix?: string | number | undefined;
|
|
30389
30388
|
}[];
|
|
30389
|
+
threshold?: string | number | undefined;
|
|
30390
30390
|
}>, z.ZodNull]>;
|
|
30391
30391
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
30392
30392
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -30787,7 +30787,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
30787
30787
|
id_from_submission?: number | undefined;
|
|
30788
30788
|
data_from_submission?: number | undefined;
|
|
30789
30789
|
}[];
|
|
30790
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
30790
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
30791
30791
|
quote_guard?: string | null | undefined;
|
|
30792
30792
|
}, {
|
|
30793
30793
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -30798,7 +30798,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
30798
30798
|
id_from_submission?: number | undefined;
|
|
30799
30799
|
data_from_submission?: number | undefined;
|
|
30800
30800
|
}[];
|
|
30801
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
30801
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
30802
30802
|
quote_guard?: string | null | undefined;
|
|
30803
30803
|
}>, "many">;
|
|
30804
30804
|
data_count: z.ZodNumber;
|
|
@@ -32664,7 +32664,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
32664
32664
|
accomplished: boolean;
|
|
32665
32665
|
}>, "many">;
|
|
32666
32666
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
32667
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
32667
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
32668
32668
|
}, "strip", z.ZodTypeAny, {
|
|
32669
32669
|
forwards: {
|
|
32670
32670
|
time: string | number;
|
|
@@ -32694,9 +32694,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
32694
32694
|
msg: string;
|
|
32695
32695
|
accomplished: boolean;
|
|
32696
32696
|
}[];
|
|
32697
|
-
threshold: string | number;
|
|
32698
32697
|
next_node: string;
|
|
32699
32698
|
weights: string | number;
|
|
32699
|
+
threshold?: string | number | undefined;
|
|
32700
32700
|
}>, "many">;
|
|
32701
32701
|
history_count: z.ZodNumber;
|
|
32702
32702
|
current_time: z.ZodNumber;
|
|
@@ -32982,7 +32982,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
32982
32982
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
32983
32983
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
32984
32984
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
32985
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
32985
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
32986
32986
|
allocators: z.ZodArray<z.ZodObject<{
|
|
32987
32987
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
32988
32988
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -33112,7 +33112,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
33112
33112
|
}[];
|
|
33113
33113
|
}, {
|
|
33114
33114
|
description: string;
|
|
33115
|
-
threshold: string | number;
|
|
33116
33115
|
allocators: {
|
|
33117
33116
|
guard: string;
|
|
33118
33117
|
sharing: {
|
|
@@ -33132,6 +33131,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
33132
33131
|
max?: string | number | null | undefined;
|
|
33133
33132
|
fix?: string | number | undefined;
|
|
33134
33133
|
}[];
|
|
33134
|
+
threshold?: string | number | undefined;
|
|
33135
33135
|
}>, z.ZodNull]>;
|
|
33136
33136
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
33137
33137
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -33532,7 +33532,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
33532
33532
|
id_from_submission?: number | undefined;
|
|
33533
33533
|
data_from_submission?: number | undefined;
|
|
33534
33534
|
}[];
|
|
33535
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
33535
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
33536
33536
|
quote_guard?: string | null | undefined;
|
|
33537
33537
|
}, {
|
|
33538
33538
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -33543,7 +33543,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
33543
33543
|
id_from_submission?: number | undefined;
|
|
33544
33544
|
data_from_submission?: number | undefined;
|
|
33545
33545
|
}[];
|
|
33546
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
33546
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
33547
33547
|
quote_guard?: string | null | undefined;
|
|
33548
33548
|
}>, "many">;
|
|
33549
33549
|
data_count: z.ZodNumber;
|
|
@@ -39634,7 +39634,7 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
|
|
|
39634
39634
|
name: z.ZodString;
|
|
39635
39635
|
value: z.ZodArray<z.ZodObject<{
|
|
39636
39636
|
prev_node: z.ZodString;
|
|
39637
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
39637
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
39638
39638
|
forwards: z.ZodArray<z.ZodObject<{
|
|
39639
39639
|
name: z.ZodString;
|
|
39640
39640
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -39693,8 +39693,8 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
|
|
|
39693
39693
|
namedOperator?: string | null | undefined;
|
|
39694
39694
|
permissionIndex?: string | number | null | undefined;
|
|
39695
39695
|
}[];
|
|
39696
|
-
threshold: string | number;
|
|
39697
39696
|
prev_node: string;
|
|
39697
|
+
threshold?: string | number | undefined;
|
|
39698
39698
|
}>, "many">;
|
|
39699
39699
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
39700
39700
|
object: z.ZodString;
|
|
@@ -39769,7 +39769,7 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
|
|
|
39769
39769
|
name: z.ZodString;
|
|
39770
39770
|
value: z.ZodArray<z.ZodObject<{
|
|
39771
39771
|
prev_node: z.ZodString;
|
|
39772
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
39772
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
39773
39773
|
forwards: z.ZodArray<z.ZodObject<{
|
|
39774
39774
|
name: z.ZodString;
|
|
39775
39775
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -39828,8 +39828,8 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
|
|
|
39828
39828
|
namedOperator?: string | null | undefined;
|
|
39829
39829
|
permissionIndex?: string | number | null | undefined;
|
|
39830
39830
|
}[];
|
|
39831
|
-
threshold: string | number;
|
|
39832
39831
|
prev_node: string;
|
|
39832
|
+
threshold?: string | number | undefined;
|
|
39833
39833
|
}>, "many">;
|
|
39834
39834
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
39835
39835
|
object: z.ZodString;
|
|
@@ -39904,7 +39904,7 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
|
|
|
39904
39904
|
name: z.ZodString;
|
|
39905
39905
|
value: z.ZodArray<z.ZodObject<{
|
|
39906
39906
|
prev_node: z.ZodString;
|
|
39907
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
39907
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
39908
39908
|
forwards: z.ZodArray<z.ZodObject<{
|
|
39909
39909
|
name: z.ZodString;
|
|
39910
39910
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -39963,8 +39963,8 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
|
|
|
39963
39963
|
namedOperator?: string | null | undefined;
|
|
39964
39964
|
permissionIndex?: string | number | null | undefined;
|
|
39965
39965
|
}[];
|
|
39966
|
-
threshold: string | number;
|
|
39967
39966
|
prev_node: string;
|
|
39967
|
+
threshold?: string | number | undefined;
|
|
39968
39968
|
}>, "many">;
|
|
39969
39969
|
}, z.ZodTypeAny, "passthrough">>, z.ZodNull]>;
|
|
39970
39970
|
export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.ZodObject<{
|
|
@@ -40118,7 +40118,7 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
|
|
|
40118
40118
|
accomplished: boolean;
|
|
40119
40119
|
}>, "many">;
|
|
40120
40120
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
40121
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
40121
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
40122
40122
|
}, "strip", z.ZodTypeAny, {
|
|
40123
40123
|
forwards: {
|
|
40124
40124
|
time: string | number;
|
|
@@ -40148,9 +40148,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
|
|
|
40148
40148
|
msg: string;
|
|
40149
40149
|
accomplished: boolean;
|
|
40150
40150
|
}[];
|
|
40151
|
-
threshold: string | number;
|
|
40152
40151
|
next_node: string;
|
|
40153
40152
|
weights: string | number;
|
|
40153
|
+
threshold?: string | number | undefined;
|
|
40154
40154
|
}>, "many">;
|
|
40155
40155
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
40156
40156
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -40304,7 +40304,7 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
|
|
|
40304
40304
|
accomplished: boolean;
|
|
40305
40305
|
}>, "many">;
|
|
40306
40306
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
40307
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
40307
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
40308
40308
|
}, "strip", z.ZodTypeAny, {
|
|
40309
40309
|
forwards: {
|
|
40310
40310
|
time: string | number;
|
|
@@ -40334,9 +40334,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
|
|
|
40334
40334
|
msg: string;
|
|
40335
40335
|
accomplished: boolean;
|
|
40336
40336
|
}[];
|
|
40337
|
-
threshold: string | number;
|
|
40338
40337
|
next_node: string;
|
|
40339
40338
|
weights: string | number;
|
|
40339
|
+
threshold?: string | number | undefined;
|
|
40340
40340
|
}>, "many">;
|
|
40341
40341
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
40342
40342
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
@@ -40490,7 +40490,7 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
|
|
|
40490
40490
|
accomplished: boolean;
|
|
40491
40491
|
}>, "many">;
|
|
40492
40492
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
40493
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
40493
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
40494
40494
|
}, "strip", z.ZodTypeAny, {
|
|
40495
40495
|
forwards: {
|
|
40496
40496
|
time: string | number;
|
|
@@ -40520,9 +40520,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
|
|
|
40520
40520
|
msg: string;
|
|
40521
40521
|
accomplished: boolean;
|
|
40522
40522
|
}[];
|
|
40523
|
-
threshold: string | number;
|
|
40524
40523
|
next_node: string;
|
|
40525
40524
|
weights: string | number;
|
|
40525
|
+
threshold?: string | number | undefined;
|
|
40526
40526
|
}>, "many">;
|
|
40527
40527
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
40528
40528
|
}, z.ZodTypeAny, "passthrough">>, z.ZodNull]>;
|
|
@@ -44690,7 +44690,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
44690
44690
|
name: z.ZodString;
|
|
44691
44691
|
value: z.ZodArray<z.ZodObject<{
|
|
44692
44692
|
prev_node: z.ZodString;
|
|
44693
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
44693
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
44694
44694
|
forwards: z.ZodArray<z.ZodObject<{
|
|
44695
44695
|
name: z.ZodString;
|
|
44696
44696
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -44749,8 +44749,8 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
44749
44749
|
namedOperator?: string | null | undefined;
|
|
44750
44750
|
permissionIndex?: string | number | null | undefined;
|
|
44751
44751
|
}[];
|
|
44752
|
-
threshold: string | number;
|
|
44753
44752
|
prev_node: string;
|
|
44753
|
+
threshold?: string | number | undefined;
|
|
44754
44754
|
}>, "many">;
|
|
44755
44755
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
44756
44756
|
object: z.ZodString;
|
|
@@ -44825,7 +44825,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
44825
44825
|
name: z.ZodString;
|
|
44826
44826
|
value: z.ZodArray<z.ZodObject<{
|
|
44827
44827
|
prev_node: z.ZodString;
|
|
44828
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
44828
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
44829
44829
|
forwards: z.ZodArray<z.ZodObject<{
|
|
44830
44830
|
name: z.ZodString;
|
|
44831
44831
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -44884,8 +44884,8 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
44884
44884
|
namedOperator?: string | null | undefined;
|
|
44885
44885
|
permissionIndex?: string | number | null | undefined;
|
|
44886
44886
|
}[];
|
|
44887
|
-
threshold: string | number;
|
|
44888
44887
|
prev_node: string;
|
|
44888
|
+
threshold?: string | number | undefined;
|
|
44889
44889
|
}>, "many">;
|
|
44890
44890
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
44891
44891
|
object: z.ZodString;
|
|
@@ -44960,7 +44960,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
44960
44960
|
name: z.ZodString;
|
|
44961
44961
|
value: z.ZodArray<z.ZodObject<{
|
|
44962
44962
|
prev_node: z.ZodString;
|
|
44963
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
44963
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
44964
44964
|
forwards: z.ZodArray<z.ZodObject<{
|
|
44965
44965
|
name: z.ZodString;
|
|
44966
44966
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -45019,8 +45019,8 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
45019
45019
|
namedOperator?: string | null | undefined;
|
|
45020
45020
|
permissionIndex?: string | number | null | undefined;
|
|
45021
45021
|
}[];
|
|
45022
|
-
threshold: string | number;
|
|
45023
45022
|
prev_node: string;
|
|
45023
|
+
threshold?: string | number | undefined;
|
|
45024
45024
|
}>, "many">;
|
|
45025
45025
|
}, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
|
|
45026
45026
|
object: z.ZodString;
|
|
@@ -45173,7 +45173,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
45173
45173
|
accomplished: boolean;
|
|
45174
45174
|
}>, "many">;
|
|
45175
45175
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
45176
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
45176
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
45177
45177
|
}, "strip", z.ZodTypeAny, {
|
|
45178
45178
|
forwards: {
|
|
45179
45179
|
time: string | number;
|
|
@@ -45203,9 +45203,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
45203
45203
|
msg: string;
|
|
45204
45204
|
accomplished: boolean;
|
|
45205
45205
|
}[];
|
|
45206
|
-
threshold: string | number;
|
|
45207
45206
|
next_node: string;
|
|
45208
45207
|
weights: string | number;
|
|
45208
|
+
threshold?: string | number | undefined;
|
|
45209
45209
|
}>, "many">;
|
|
45210
45210
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
45211
45211
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -45359,7 +45359,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
45359
45359
|
accomplished: boolean;
|
|
45360
45360
|
}>, "many">;
|
|
45361
45361
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
45362
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
45362
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
45363
45363
|
}, "strip", z.ZodTypeAny, {
|
|
45364
45364
|
forwards: {
|
|
45365
45365
|
time: string | number;
|
|
@@ -45389,9 +45389,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
45389
45389
|
msg: string;
|
|
45390
45390
|
accomplished: boolean;
|
|
45391
45391
|
}[];
|
|
45392
|
-
threshold: string | number;
|
|
45393
45392
|
next_node: string;
|
|
45394
45393
|
weights: string | number;
|
|
45394
|
+
threshold?: string | number | undefined;
|
|
45395
45395
|
}>, "many">;
|
|
45396
45396
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
45397
45397
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
@@ -45545,7 +45545,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
45545
45545
|
accomplished: boolean;
|
|
45546
45546
|
}>, "many">;
|
|
45547
45547
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
45548
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
45548
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
45549
45549
|
}, "strip", z.ZodTypeAny, {
|
|
45550
45550
|
forwards: {
|
|
45551
45551
|
time: string | number;
|
|
@@ -45575,9 +45575,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
45575
45575
|
msg: string;
|
|
45576
45576
|
accomplished: boolean;
|
|
45577
45577
|
}[];
|
|
45578
|
-
threshold: string | number;
|
|
45579
45578
|
next_node: string;
|
|
45580
45579
|
weights: string | number;
|
|
45580
|
+
threshold?: string | number | undefined;
|
|
45581
45581
|
}>, "many">;
|
|
45582
45582
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
45583
45583
|
}, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
|
|
@@ -46511,7 +46511,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
46511
46511
|
name: z.ZodString;
|
|
46512
46512
|
value: z.ZodArray<z.ZodObject<{
|
|
46513
46513
|
prev_node: z.ZodString;
|
|
46514
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
46514
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
46515
46515
|
forwards: z.ZodArray<z.ZodObject<{
|
|
46516
46516
|
name: z.ZodString;
|
|
46517
46517
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -46570,8 +46570,8 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
46570
46570
|
namedOperator?: string | null | undefined;
|
|
46571
46571
|
permissionIndex?: string | number | null | undefined;
|
|
46572
46572
|
}[];
|
|
46573
|
-
threshold: string | number;
|
|
46574
46573
|
prev_node: string;
|
|
46574
|
+
threshold?: string | number | undefined;
|
|
46575
46575
|
}>, "many">;
|
|
46576
46576
|
}, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
|
|
46577
46577
|
object: z.ZodString;
|
|
@@ -46724,7 +46724,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
46724
46724
|
accomplished: boolean;
|
|
46725
46725
|
}>, "many">;
|
|
46726
46726
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
46727
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
46727
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
46728
46728
|
}, "strip", z.ZodTypeAny, {
|
|
46729
46729
|
forwards: {
|
|
46730
46730
|
time: string | number;
|
|
@@ -46754,9 +46754,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
46754
46754
|
msg: string;
|
|
46755
46755
|
accomplished: boolean;
|
|
46756
46756
|
}[];
|
|
46757
|
-
threshold: string | number;
|
|
46758
46757
|
next_node: string;
|
|
46759
46758
|
weights: string | number;
|
|
46759
|
+
threshold?: string | number | undefined;
|
|
46760
46760
|
}>, "many">;
|
|
46761
46761
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
46762
46762
|
}, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
|
|
@@ -47548,7 +47548,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
47548
47548
|
name: z.ZodString;
|
|
47549
47549
|
value: z.ZodArray<z.ZodObject<{
|
|
47550
47550
|
prev_node: z.ZodString;
|
|
47551
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
47551
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
47552
47552
|
forwards: z.ZodArray<z.ZodObject<{
|
|
47553
47553
|
name: z.ZodString;
|
|
47554
47554
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -47607,8 +47607,8 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
47607
47607
|
namedOperator?: string | null | undefined;
|
|
47608
47608
|
permissionIndex?: string | number | null | undefined;
|
|
47609
47609
|
}[];
|
|
47610
|
-
threshold: string | number;
|
|
47611
47610
|
prev_node: string;
|
|
47611
|
+
threshold?: string | number | undefined;
|
|
47612
47612
|
}>, "many">;
|
|
47613
47613
|
}, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
|
|
47614
47614
|
object: z.ZodString;
|
|
@@ -47761,7 +47761,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
47761
47761
|
accomplished: boolean;
|
|
47762
47762
|
}>, "many">;
|
|
47763
47763
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
47764
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
47764
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
47765
47765
|
}, "strip", z.ZodTypeAny, {
|
|
47766
47766
|
forwards: {
|
|
47767
47767
|
time: string | number;
|
|
@@ -47791,9 +47791,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
|
|
|
47791
47791
|
msg: string;
|
|
47792
47792
|
accomplished: boolean;
|
|
47793
47793
|
}[];
|
|
47794
|
-
threshold: string | number;
|
|
47795
47794
|
next_node: string;
|
|
47796
47795
|
weights: string | number;
|
|
47796
|
+
threshold?: string | number | undefined;
|
|
47797
47797
|
}>, "many">;
|
|
47798
47798
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
47799
47799
|
}, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
|
|
@@ -50654,7 +50654,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
50654
50654
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
50655
50655
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
50656
50656
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
50657
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
50657
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
50658
50658
|
allocators: z.ZodArray<z.ZodObject<{
|
|
50659
50659
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
50660
50660
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -50784,7 +50784,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
50784
50784
|
}[];
|
|
50785
50785
|
}, {
|
|
50786
50786
|
description: string;
|
|
50787
|
-
threshold: string | number;
|
|
50788
50787
|
allocators: {
|
|
50789
50788
|
guard: string;
|
|
50790
50789
|
sharing: {
|
|
@@ -50804,6 +50803,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
50804
50803
|
max?: string | number | null | undefined;
|
|
50805
50804
|
fix?: string | number | undefined;
|
|
50806
50805
|
}[];
|
|
50806
|
+
threshold?: string | number | undefined;
|
|
50807
50807
|
}>, z.ZodNull]>;
|
|
50808
50808
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
50809
50809
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -50914,7 +50914,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
50914
50914
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
50915
50915
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
50916
50916
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
50917
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
50917
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
50918
50918
|
allocators: z.ZodArray<z.ZodObject<{
|
|
50919
50919
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
50920
50920
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -51044,7 +51044,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
51044
51044
|
}[];
|
|
51045
51045
|
}, {
|
|
51046
51046
|
description: string;
|
|
51047
|
-
threshold: string | number;
|
|
51048
51047
|
allocators: {
|
|
51049
51048
|
guard: string;
|
|
51050
51049
|
sharing: {
|
|
@@ -51064,6 +51063,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
51064
51063
|
max?: string | number | null | undefined;
|
|
51065
51064
|
fix?: string | number | undefined;
|
|
51066
51065
|
}[];
|
|
51066
|
+
threshold?: string | number | undefined;
|
|
51067
51067
|
}>, z.ZodNull]>;
|
|
51068
51068
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
51069
51069
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -51174,7 +51174,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
51174
51174
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
51175
51175
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
51176
51176
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
51177
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
51177
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
51178
51178
|
allocators: z.ZodArray<z.ZodObject<{
|
|
51179
51179
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
51180
51180
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -51304,7 +51304,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
51304
51304
|
}[];
|
|
51305
51305
|
}, {
|
|
51306
51306
|
description: string;
|
|
51307
|
-
threshold: string | number;
|
|
51308
51307
|
allocators: {
|
|
51309
51308
|
guard: string;
|
|
51310
51309
|
sharing: {
|
|
@@ -51324,6 +51323,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
51324
51323
|
max?: string | number | null | undefined;
|
|
51325
51324
|
fix?: string | number | undefined;
|
|
51326
51325
|
}[];
|
|
51326
|
+
threshold?: string | number | undefined;
|
|
51327
51327
|
}>, z.ZodNull]>;
|
|
51328
51328
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
51329
51329
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -51784,7 +51784,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
51784
51784
|
accomplished: boolean;
|
|
51785
51785
|
}>, "many">;
|
|
51786
51786
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
51787
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
51787
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
51788
51788
|
}, "strip", z.ZodTypeAny, {
|
|
51789
51789
|
forwards: {
|
|
51790
51790
|
time: string | number;
|
|
@@ -51814,9 +51814,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
51814
51814
|
msg: string;
|
|
51815
51815
|
accomplished: boolean;
|
|
51816
51816
|
}[];
|
|
51817
|
-
threshold: string | number;
|
|
51818
51817
|
next_node: string;
|
|
51819
51818
|
weights: string | number;
|
|
51819
|
+
threshold?: string | number | undefined;
|
|
51820
51820
|
}>, "many">;
|
|
51821
51821
|
history_count: z.ZodNumber;
|
|
51822
51822
|
current_time: z.ZodNumber;
|
|
@@ -51982,7 +51982,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
51982
51982
|
accomplished: boolean;
|
|
51983
51983
|
}>, "many">;
|
|
51984
51984
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
51985
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
51985
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
51986
51986
|
}, "strip", z.ZodTypeAny, {
|
|
51987
51987
|
forwards: {
|
|
51988
51988
|
time: string | number;
|
|
@@ -52012,9 +52012,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
52012
52012
|
msg: string;
|
|
52013
52013
|
accomplished: boolean;
|
|
52014
52014
|
}[];
|
|
52015
|
-
threshold: string | number;
|
|
52016
52015
|
next_node: string;
|
|
52017
52016
|
weights: string | number;
|
|
52017
|
+
threshold?: string | number | undefined;
|
|
52018
52018
|
}>, "many">;
|
|
52019
52019
|
history_count: z.ZodNumber;
|
|
52020
52020
|
current_time: z.ZodNumber;
|
|
@@ -52180,7 +52180,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
52180
52180
|
accomplished: boolean;
|
|
52181
52181
|
}>, "many">;
|
|
52182
52182
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
52183
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
52183
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
52184
52184
|
}, "strip", z.ZodTypeAny, {
|
|
52185
52185
|
forwards: {
|
|
52186
52186
|
time: string | number;
|
|
@@ -52210,9 +52210,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
52210
52210
|
msg: string;
|
|
52211
52211
|
accomplished: boolean;
|
|
52212
52212
|
}[];
|
|
52213
|
-
threshold: string | number;
|
|
52214
52213
|
next_node: string;
|
|
52215
52214
|
weights: string | number;
|
|
52215
|
+
threshold?: string | number | undefined;
|
|
52216
52216
|
}>, "many">;
|
|
52217
52217
|
history_count: z.ZodNumber;
|
|
52218
52218
|
current_time: z.ZodNumber;
|
|
@@ -54007,7 +54007,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
54007
54007
|
id_from_submission?: number | undefined;
|
|
54008
54008
|
data_from_submission?: number | undefined;
|
|
54009
54009
|
}[];
|
|
54010
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
54010
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
54011
54011
|
quote_guard?: string | null | undefined;
|
|
54012
54012
|
}, {
|
|
54013
54013
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -54018,7 +54018,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
54018
54018
|
id_from_submission?: number | undefined;
|
|
54019
54019
|
data_from_submission?: number | undefined;
|
|
54020
54020
|
}[];
|
|
54021
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
54021
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
54022
54022
|
quote_guard?: string | null | undefined;
|
|
54023
54023
|
}>, "many">;
|
|
54024
54024
|
data_count: z.ZodNumber;
|
|
@@ -54124,7 +54124,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
54124
54124
|
id_from_submission?: number | undefined;
|
|
54125
54125
|
data_from_submission?: number | undefined;
|
|
54126
54126
|
}[];
|
|
54127
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
54127
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
54128
54128
|
quote_guard?: string | null | undefined;
|
|
54129
54129
|
}, {
|
|
54130
54130
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -54135,7 +54135,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
54135
54135
|
id_from_submission?: number | undefined;
|
|
54136
54136
|
data_from_submission?: number | undefined;
|
|
54137
54137
|
}[];
|
|
54138
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
54138
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
54139
54139
|
quote_guard?: string | null | undefined;
|
|
54140
54140
|
}>, "many">;
|
|
54141
54141
|
data_count: z.ZodNumber;
|
|
@@ -54241,7 +54241,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
54241
54241
|
id_from_submission?: number | undefined;
|
|
54242
54242
|
data_from_submission?: number | undefined;
|
|
54243
54243
|
}[];
|
|
54244
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
54244
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
54245
54245
|
quote_guard?: string | null | undefined;
|
|
54246
54246
|
}, {
|
|
54247
54247
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -54252,7 +54252,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
54252
54252
|
id_from_submission?: number | undefined;
|
|
54253
54253
|
data_from_submission?: number | undefined;
|
|
54254
54254
|
}[];
|
|
54255
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
54255
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
54256
54256
|
quote_guard?: string | null | undefined;
|
|
54257
54257
|
}>, "many">;
|
|
54258
54258
|
data_count: z.ZodNumber;
|
|
@@ -58689,7 +58689,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
58689
58689
|
accomplished: boolean;
|
|
58690
58690
|
}>, "many">;
|
|
58691
58691
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
58692
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
58692
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
58693
58693
|
}, "strip", z.ZodTypeAny, {
|
|
58694
58694
|
forwards: {
|
|
58695
58695
|
time: string | number;
|
|
@@ -58719,9 +58719,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
58719
58719
|
msg: string;
|
|
58720
58720
|
accomplished: boolean;
|
|
58721
58721
|
}[];
|
|
58722
|
-
threshold: string | number;
|
|
58723
58722
|
next_node: string;
|
|
58724
58723
|
weights: string | number;
|
|
58724
|
+
threshold?: string | number | undefined;
|
|
58725
58725
|
}>, "many">;
|
|
58726
58726
|
history_count: z.ZodNumber;
|
|
58727
58727
|
current_time: z.ZodNumber;
|
|
@@ -59007,7 +59007,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
59007
59007
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
59008
59008
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
59009
59009
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
59010
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
59010
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
59011
59011
|
allocators: z.ZodArray<z.ZodObject<{
|
|
59012
59012
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
59013
59013
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -59137,7 +59137,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
59137
59137
|
}[];
|
|
59138
59138
|
}, {
|
|
59139
59139
|
description: string;
|
|
59140
|
-
threshold: string | number;
|
|
59141
59140
|
allocators: {
|
|
59142
59141
|
guard: string;
|
|
59143
59142
|
sharing: {
|
|
@@ -59157,6 +59156,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
59157
59156
|
max?: string | number | null | undefined;
|
|
59158
59157
|
fix?: string | number | undefined;
|
|
59159
59158
|
}[];
|
|
59159
|
+
threshold?: string | number | undefined;
|
|
59160
59160
|
}>, z.ZodNull]>;
|
|
59161
59161
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
59162
59162
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -59557,7 +59557,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
59557
59557
|
id_from_submission?: number | undefined;
|
|
59558
59558
|
data_from_submission?: number | undefined;
|
|
59559
59559
|
}[];
|
|
59560
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
59560
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
59561
59561
|
quote_guard?: string | null | undefined;
|
|
59562
59562
|
}, {
|
|
59563
59563
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -59568,7 +59568,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
59568
59568
|
id_from_submission?: number | undefined;
|
|
59569
59569
|
data_from_submission?: number | undefined;
|
|
59570
59570
|
}[];
|
|
59571
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
59571
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
59572
59572
|
quote_guard?: string | null | undefined;
|
|
59573
59573
|
}>, "many">;
|
|
59574
59574
|
data_count: z.ZodNumber;
|
|
@@ -61434,7 +61434,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
61434
61434
|
accomplished: boolean;
|
|
61435
61435
|
}>, "many">;
|
|
61436
61436
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
61437
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
61437
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
61438
61438
|
}, "strip", z.ZodTypeAny, {
|
|
61439
61439
|
forwards: {
|
|
61440
61440
|
time: string | number;
|
|
@@ -61464,9 +61464,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
61464
61464
|
msg: string;
|
|
61465
61465
|
accomplished: boolean;
|
|
61466
61466
|
}[];
|
|
61467
|
-
threshold: string | number;
|
|
61468
61467
|
next_node: string;
|
|
61469
61468
|
weights: string | number;
|
|
61469
|
+
threshold?: string | number | undefined;
|
|
61470
61470
|
}>, "many">;
|
|
61471
61471
|
history_count: z.ZodNumber;
|
|
61472
61472
|
current_time: z.ZodNumber;
|
|
@@ -61752,7 +61752,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
61752
61752
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
61753
61753
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
61754
61754
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
61755
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
61755
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
61756
61756
|
allocators: z.ZodArray<z.ZodObject<{
|
|
61757
61757
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
61758
61758
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -61882,7 +61882,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
61882
61882
|
}[];
|
|
61883
61883
|
}, {
|
|
61884
61884
|
description: string;
|
|
61885
|
-
threshold: string | number;
|
|
61886
61885
|
allocators: {
|
|
61887
61886
|
guard: string;
|
|
61888
61887
|
sharing: {
|
|
@@ -61902,6 +61901,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
61902
61901
|
max?: string | number | null | undefined;
|
|
61903
61902
|
fix?: string | number | undefined;
|
|
61904
61903
|
}[];
|
|
61904
|
+
threshold?: string | number | undefined;
|
|
61905
61905
|
}>, z.ZodNull]>;
|
|
61906
61906
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
61907
61907
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -62302,7 +62302,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
62302
62302
|
id_from_submission?: number | undefined;
|
|
62303
62303
|
data_from_submission?: number | undefined;
|
|
62304
62304
|
}[];
|
|
62305
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
62305
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
62306
62306
|
quote_guard?: string | null | undefined;
|
|
62307
62307
|
}, {
|
|
62308
62308
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -62313,7 +62313,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
62313
62313
|
id_from_submission?: number | undefined;
|
|
62314
62314
|
data_from_submission?: number | undefined;
|
|
62315
62315
|
}[];
|
|
62316
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
62316
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
62317
62317
|
quote_guard?: string | null | undefined;
|
|
62318
62318
|
}>, "many">;
|
|
62319
62319
|
data_count: z.ZodNumber;
|
|
@@ -64181,7 +64181,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
64181
64181
|
accomplished: boolean;
|
|
64182
64182
|
}>, "many">;
|
|
64183
64183
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
64184
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
64184
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
64185
64185
|
}, "strip", z.ZodTypeAny, {
|
|
64186
64186
|
forwards: {
|
|
64187
64187
|
time: string | number;
|
|
@@ -64211,9 +64211,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
64211
64211
|
msg: string;
|
|
64212
64212
|
accomplished: boolean;
|
|
64213
64213
|
}[];
|
|
64214
|
-
threshold: string | number;
|
|
64215
64214
|
next_node: string;
|
|
64216
64215
|
weights: string | number;
|
|
64216
|
+
threshold?: string | number | undefined;
|
|
64217
64217
|
}>, "many">;
|
|
64218
64218
|
history_count: z.ZodNumber;
|
|
64219
64219
|
current_time: z.ZodNumber;
|
|
@@ -64499,7 +64499,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
64499
64499
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
64500
64500
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
64501
64501
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
64502
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
64502
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
64503
64503
|
allocators: z.ZodArray<z.ZodObject<{
|
|
64504
64504
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
64505
64505
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -64629,7 +64629,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
64629
64629
|
}[];
|
|
64630
64630
|
}, {
|
|
64631
64631
|
description: string;
|
|
64632
|
-
threshold: string | number;
|
|
64633
64632
|
allocators: {
|
|
64634
64633
|
guard: string;
|
|
64635
64634
|
sharing: {
|
|
@@ -64649,6 +64648,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
64649
64648
|
max?: string | number | null | undefined;
|
|
64650
64649
|
fix?: string | number | undefined;
|
|
64651
64650
|
}[];
|
|
64651
|
+
threshold?: string | number | undefined;
|
|
64652
64652
|
}>, z.ZodNull]>;
|
|
64653
64653
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
64654
64654
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -65049,7 +65049,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
65049
65049
|
id_from_submission?: number | undefined;
|
|
65050
65050
|
data_from_submission?: number | undefined;
|
|
65051
65051
|
}[];
|
|
65052
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
65052
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
65053
65053
|
quote_guard?: string | null | undefined;
|
|
65054
65054
|
}, {
|
|
65055
65055
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -65060,7 +65060,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
65060
65060
|
id_from_submission?: number | undefined;
|
|
65061
65061
|
data_from_submission?: number | undefined;
|
|
65062
65062
|
}[];
|
|
65063
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
65063
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
65064
65064
|
quote_guard?: string | null | undefined;
|
|
65065
65065
|
}>, "many">;
|
|
65066
65066
|
data_count: z.ZodNumber;
|
|
@@ -66929,7 +66929,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
66929
66929
|
accomplished: boolean;
|
|
66930
66930
|
}>, "many">;
|
|
66931
66931
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
66932
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
66932
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
66933
66933
|
}, "strip", z.ZodTypeAny, {
|
|
66934
66934
|
forwards: {
|
|
66935
66935
|
time: string | number;
|
|
@@ -66959,9 +66959,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
66959
66959
|
msg: string;
|
|
66960
66960
|
accomplished: boolean;
|
|
66961
66961
|
}[];
|
|
66962
|
-
threshold: string | number;
|
|
66963
66962
|
next_node: string;
|
|
66964
66963
|
weights: string | number;
|
|
66964
|
+
threshold?: string | number | undefined;
|
|
66965
66965
|
}>, "many">;
|
|
66966
66966
|
history_count: z.ZodNumber;
|
|
66967
66967
|
current_time: z.ZodNumber;
|
|
@@ -67247,7 +67247,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
67247
67247
|
setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
|
|
67248
67248
|
order_allocators: z.ZodUnion<[z.ZodObject<{
|
|
67249
67249
|
description: z.ZodEffects<z.ZodString, string, string>;
|
|
67250
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
67250
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
67251
67251
|
allocators: z.ZodArray<z.ZodObject<{
|
|
67252
67252
|
guard: z.ZodEffects<z.ZodString, string, string>;
|
|
67253
67253
|
sharing: z.ZodArray<z.ZodObject<{
|
|
@@ -67377,7 +67377,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
67377
67377
|
}[];
|
|
67378
67378
|
}, {
|
|
67379
67379
|
description: string;
|
|
67380
|
-
threshold: string | number;
|
|
67381
67380
|
allocators: {
|
|
67382
67381
|
guard: string;
|
|
67383
67382
|
sharing: {
|
|
@@ -67397,6 +67396,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
67397
67396
|
max?: string | number | null | undefined;
|
|
67398
67397
|
fix?: string | number | undefined;
|
|
67399
67398
|
}[];
|
|
67399
|
+
threshold?: string | number | undefined;
|
|
67400
67400
|
}>, z.ZodNull]>;
|
|
67401
67401
|
rewards: z.ZodArray<z.ZodString, "many">;
|
|
67402
67402
|
um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
@@ -67797,7 +67797,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
67797
67797
|
id_from_submission?: number | undefined;
|
|
67798
67798
|
data_from_submission?: number | undefined;
|
|
67799
67799
|
}[];
|
|
67800
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
67800
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
67801
67801
|
quote_guard?: string | null | undefined;
|
|
67802
67802
|
}, {
|
|
67803
67803
|
value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
|
|
@@ -67808,7 +67808,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
|
|
|
67808
67808
|
id_from_submission?: number | undefined;
|
|
67809
67809
|
data_from_submission?: number | undefined;
|
|
67810
67810
|
}[];
|
|
67811
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
67811
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
67812
67812
|
quote_guard?: string | null | undefined;
|
|
67813
67813
|
}>, "many">;
|
|
67814
67814
|
data_count: z.ZodNumber;
|
|
@@ -72410,7 +72410,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
72410
72410
|
name: z.ZodString;
|
|
72411
72411
|
value: z.ZodArray<z.ZodObject<{
|
|
72412
72412
|
prev_node: z.ZodString;
|
|
72413
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
72413
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
72414
72414
|
forwards: z.ZodArray<z.ZodObject<{
|
|
72415
72415
|
name: z.ZodString;
|
|
72416
72416
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -72469,8 +72469,8 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
72469
72469
|
namedOperator?: string | null | undefined;
|
|
72470
72470
|
permissionIndex?: string | number | null | undefined;
|
|
72471
72471
|
}[];
|
|
72472
|
-
threshold: string | number;
|
|
72473
72472
|
prev_node: string;
|
|
72473
|
+
threshold?: string | number | undefined;
|
|
72474
72474
|
}>, "many">;
|
|
72475
72475
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
72476
72476
|
object: z.ZodString;
|
|
@@ -72545,7 +72545,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
72545
72545
|
name: z.ZodString;
|
|
72546
72546
|
value: z.ZodArray<z.ZodObject<{
|
|
72547
72547
|
prev_node: z.ZodString;
|
|
72548
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
72548
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
72549
72549
|
forwards: z.ZodArray<z.ZodObject<{
|
|
72550
72550
|
name: z.ZodString;
|
|
72551
72551
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -72604,8 +72604,8 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
72604
72604
|
namedOperator?: string | null | undefined;
|
|
72605
72605
|
permissionIndex?: string | number | null | undefined;
|
|
72606
72606
|
}[];
|
|
72607
|
-
threshold: string | number;
|
|
72608
72607
|
prev_node: string;
|
|
72608
|
+
threshold?: string | number | undefined;
|
|
72609
72609
|
}>, "many">;
|
|
72610
72610
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
72611
72611
|
object: z.ZodString;
|
|
@@ -72680,7 +72680,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
72680
72680
|
name: z.ZodString;
|
|
72681
72681
|
value: z.ZodArray<z.ZodObject<{
|
|
72682
72682
|
prev_node: z.ZodString;
|
|
72683
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
72683
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
72684
72684
|
forwards: z.ZodArray<z.ZodObject<{
|
|
72685
72685
|
name: z.ZodString;
|
|
72686
72686
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -72739,8 +72739,8 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
72739
72739
|
namedOperator?: string | null | undefined;
|
|
72740
72740
|
permissionIndex?: string | number | null | undefined;
|
|
72741
72741
|
}[];
|
|
72742
|
-
threshold: string | number;
|
|
72743
72742
|
prev_node: string;
|
|
72743
|
+
threshold?: string | number | undefined;
|
|
72744
72744
|
}>, "many">;
|
|
72745
72745
|
}, z.ZodTypeAny, "passthrough">>, z.ZodUndefined]>;
|
|
72746
72746
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -72818,7 +72818,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
72818
72818
|
name: z.ZodString;
|
|
72819
72819
|
value: z.ZodArray<z.ZodObject<{
|
|
72820
72820
|
prev_node: z.ZodString;
|
|
72821
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
72821
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
72822
72822
|
forwards: z.ZodArray<z.ZodObject<{
|
|
72823
72823
|
name: z.ZodString;
|
|
72824
72824
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -72877,8 +72877,8 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
72877
72877
|
namedOperator?: string | null | undefined;
|
|
72878
72878
|
permissionIndex?: string | number | null | undefined;
|
|
72879
72879
|
}[];
|
|
72880
|
-
threshold: string | number;
|
|
72881
72880
|
prev_node: string;
|
|
72881
|
+
threshold?: string | number | undefined;
|
|
72882
72882
|
}>, "many">;
|
|
72883
72883
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
72884
72884
|
}, {
|
|
@@ -72956,7 +72956,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
72956
72956
|
name: z.ZodString;
|
|
72957
72957
|
value: z.ZodArray<z.ZodObject<{
|
|
72958
72958
|
prev_node: z.ZodString;
|
|
72959
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
72959
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
72960
72960
|
forwards: z.ZodArray<z.ZodObject<{
|
|
72961
72961
|
name: z.ZodString;
|
|
72962
72962
|
namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
@@ -73015,8 +73015,8 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
73015
73015
|
namedOperator?: string | null | undefined;
|
|
73016
73016
|
permissionIndex?: string | number | null | undefined;
|
|
73017
73017
|
}[];
|
|
73018
|
-
threshold: string | number;
|
|
73019
73018
|
prev_node: string;
|
|
73019
|
+
threshold?: string | number | undefined;
|
|
73020
73020
|
}>, "many">;
|
|
73021
73021
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
73022
73022
|
}>, z.ZodObject<{
|
|
@@ -73172,7 +73172,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
73172
73172
|
accomplished: boolean;
|
|
73173
73173
|
}>, "many">;
|
|
73174
73174
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
73175
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
73175
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
73176
73176
|
}, "strip", z.ZodTypeAny, {
|
|
73177
73177
|
forwards: {
|
|
73178
73178
|
time: string | number;
|
|
@@ -73202,9 +73202,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
73202
73202
|
msg: string;
|
|
73203
73203
|
accomplished: boolean;
|
|
73204
73204
|
}[];
|
|
73205
|
-
threshold: string | number;
|
|
73206
73205
|
next_node: string;
|
|
73207
73206
|
weights: string | number;
|
|
73207
|
+
threshold?: string | number | undefined;
|
|
73208
73208
|
}>, "many">;
|
|
73209
73209
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
73210
73210
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
@@ -73358,7 +73358,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
73358
73358
|
accomplished: boolean;
|
|
73359
73359
|
}>, "many">;
|
|
73360
73360
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
73361
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
73361
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
73362
73362
|
}, "strip", z.ZodTypeAny, {
|
|
73363
73363
|
forwards: {
|
|
73364
73364
|
time: string | number;
|
|
@@ -73388,9 +73388,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
73388
73388
|
msg: string;
|
|
73389
73389
|
accomplished: boolean;
|
|
73390
73390
|
}[];
|
|
73391
|
-
threshold: string | number;
|
|
73392
73391
|
next_node: string;
|
|
73393
73392
|
weights: string | number;
|
|
73393
|
+
threshold?: string | number | undefined;
|
|
73394
73394
|
}>, "many">;
|
|
73395
73395
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
73396
73396
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
@@ -73544,7 +73544,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
73544
73544
|
accomplished: boolean;
|
|
73545
73545
|
}>, "many">;
|
|
73546
73546
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
73547
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
73547
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
73548
73548
|
}, "strip", z.ZodTypeAny, {
|
|
73549
73549
|
forwards: {
|
|
73550
73550
|
time: string | number;
|
|
@@ -73574,9 +73574,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
73574
73574
|
msg: string;
|
|
73575
73575
|
accomplished: boolean;
|
|
73576
73576
|
}[];
|
|
73577
|
-
threshold: string | number;
|
|
73578
73577
|
next_node: string;
|
|
73579
73578
|
weights: string | number;
|
|
73579
|
+
threshold?: string | number | undefined;
|
|
73580
73580
|
}>, "many">;
|
|
73581
73581
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
73582
73582
|
}, z.ZodTypeAny, "passthrough">>, z.ZodUndefined]>;
|
|
@@ -73733,7 +73733,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
73733
73733
|
accomplished: boolean;
|
|
73734
73734
|
}>, "many">;
|
|
73735
73735
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
73736
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
73736
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
73737
73737
|
}, "strip", z.ZodTypeAny, {
|
|
73738
73738
|
forwards: {
|
|
73739
73739
|
time: string | number;
|
|
@@ -73763,9 +73763,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
73763
73763
|
msg: string;
|
|
73764
73764
|
accomplished: boolean;
|
|
73765
73765
|
}[];
|
|
73766
|
-
threshold: string | number;
|
|
73767
73766
|
next_node: string;
|
|
73768
73767
|
weights: string | number;
|
|
73768
|
+
threshold?: string | number | undefined;
|
|
73769
73769
|
}>, "many">;
|
|
73770
73770
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
73771
73771
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
@@ -73922,7 +73922,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
73922
73922
|
accomplished: boolean;
|
|
73923
73923
|
}>, "many">;
|
|
73924
73924
|
weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
73925
|
-
threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]
|
|
73925
|
+
threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
73926
73926
|
}, "strip", z.ZodTypeAny, {
|
|
73927
73927
|
forwards: {
|
|
73928
73928
|
time: string | number;
|
|
@@ -73952,9 +73952,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
|
|
|
73952
73952
|
msg: string;
|
|
73953
73953
|
accomplished: boolean;
|
|
73954
73954
|
}[];
|
|
73955
|
-
threshold: string | number;
|
|
73956
73955
|
next_node: string;
|
|
73957
73956
|
weights: string | number;
|
|
73957
|
+
threshold?: string | number | undefined;
|
|
73958
73958
|
}>, "many">;
|
|
73959
73959
|
time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
|
|
73960
73960
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|