@wowok/agent-mcp 2.3.18 → 2.4.1
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/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 +131 -104
- package/dist/knowledge/guard-lint.d.ts +76 -0
- package/dist/knowledge/guard-lint.js +590 -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 +8 -1
- package/dist/knowledge/guard-risk.js +868 -296
- package/dist/knowledge/guard-templates.d.ts +37 -0
- package/dist/knowledge/guard-templates.js +329 -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/schema/call/base.js +16 -16
- 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/permission.d.ts +78 -78
- package/dist/schema/call/repository.d.ts +22 -22
- package/dist/schema/call/semantic.js +228 -24
- 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 +222 -144
- package/dist/schema/query/index.d.ts +38 -38
- package/dist/schema/trust/index.d.ts +4 -4
- package/dist/schema/utils/guard-parser.js +4 -4
- package/dist/schema/utils/node-parser.js +14 -14
- package/dist/schemas/bridge_operation.output.json +14 -14
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/messenger_operation.output.json +17 -15
- package/dist/schemas/onchain_events.output.json +14 -14
- package/dist/schemas/onchain_operations.output.json +14 -14
- package/dist/schemas/onchain_table_data.output.json +14 -14
- package/dist/schemas/wip_file.output.json +24 -1
- package/package.json +2 -2
|
@@ -4165,7 +4165,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
4165
4165
|
id_from_submission?: number | undefined;
|
|
4166
4166
|
data_from_submission?: number | undefined;
|
|
4167
4167
|
}[];
|
|
4168
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
4168
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
4169
4169
|
quote_guard?: string | null | undefined;
|
|
4170
4170
|
}, {
|
|
4171
4171
|
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";
|
|
@@ -4176,7 +4176,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
4176
4176
|
id_from_submission?: number | undefined;
|
|
4177
4177
|
data_from_submission?: number | undefined;
|
|
4178
4178
|
}[];
|
|
4179
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
4179
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
4180
4180
|
quote_guard?: string | null | undefined;
|
|
4181
4181
|
}>, "many">;
|
|
4182
4182
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -4190,7 +4190,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
4190
4190
|
id_from_submission?: number | undefined;
|
|
4191
4191
|
data_from_submission?: number | undefined;
|
|
4192
4192
|
}[];
|
|
4193
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
4193
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
4194
4194
|
quote_guard?: string | null | undefined;
|
|
4195
4195
|
}[];
|
|
4196
4196
|
}, {
|
|
@@ -4204,7 +4204,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
4204
4204
|
id_from_submission?: number | undefined;
|
|
4205
4205
|
data_from_submission?: number | undefined;
|
|
4206
4206
|
}[];
|
|
4207
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
4207
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
4208
4208
|
quote_guard?: string | null | undefined;
|
|
4209
4209
|
}[];
|
|
4210
4210
|
}>, z.ZodObject<{
|
|
@@ -4549,7 +4549,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
4549
4549
|
id_from_submission?: number | undefined;
|
|
4550
4550
|
data_from_submission?: number | undefined;
|
|
4551
4551
|
}[];
|
|
4552
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
4552
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
4553
4553
|
quote_guard?: string | null | undefined;
|
|
4554
4554
|
}[];
|
|
4555
4555
|
} | {
|
|
@@ -4637,7 +4637,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
4637
4637
|
id_from_submission?: number | undefined;
|
|
4638
4638
|
data_from_submission?: number | undefined;
|
|
4639
4639
|
}[];
|
|
4640
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
4640
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
4641
4641
|
quote_guard?: string | null | undefined;
|
|
4642
4642
|
}[];
|
|
4643
4643
|
} | {
|
|
@@ -4941,7 +4941,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
4941
4941
|
id_from_submission?: number | undefined;
|
|
4942
4942
|
data_from_submission?: number | undefined;
|
|
4943
4943
|
}[];
|
|
4944
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
4944
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
4945
4945
|
quote_guard?: string | null | undefined;
|
|
4946
4946
|
}[];
|
|
4947
4947
|
} | {
|
|
@@ -5071,7 +5071,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
5071
5071
|
id_from_submission?: number | undefined;
|
|
5072
5072
|
data_from_submission?: number | undefined;
|
|
5073
5073
|
}[];
|
|
5074
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
5074
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
5075
5075
|
quote_guard?: string | null | undefined;
|
|
5076
5076
|
}[];
|
|
5077
5077
|
} | {
|
|
@@ -10355,19 +10355,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
10355
10355
|
};
|
|
10356
10356
|
index: number[];
|
|
10357
10357
|
} | undefined;
|
|
10358
|
-
owner_receive?: {
|
|
10359
|
-
received: {
|
|
10360
|
-
id: string;
|
|
10361
|
-
balance: string | number;
|
|
10362
|
-
payment: string;
|
|
10363
|
-
}[];
|
|
10364
|
-
balance: string | number;
|
|
10365
|
-
token_type: string;
|
|
10366
|
-
} | "recently" | {
|
|
10367
|
-
type: string;
|
|
10368
|
-
id: string;
|
|
10369
|
-
content_raw?: any;
|
|
10370
|
-
}[] | undefined;
|
|
10371
10358
|
entity?: {
|
|
10372
10359
|
op: "swap";
|
|
10373
10360
|
entity1: {
|
|
@@ -10405,6 +10392,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
10405
10392
|
local_mark_first?: boolean | undefined;
|
|
10406
10393
|
};
|
|
10407
10394
|
} | undefined;
|
|
10395
|
+
owner_receive?: {
|
|
10396
|
+
received: {
|
|
10397
|
+
id: string;
|
|
10398
|
+
balance: string | number;
|
|
10399
|
+
payment: string;
|
|
10400
|
+
}[];
|
|
10401
|
+
balance: string | number;
|
|
10402
|
+
token_type: string;
|
|
10403
|
+
} | "recently" | {
|
|
10404
|
+
type: string;
|
|
10405
|
+
id: string;
|
|
10406
|
+
content_raw?: any;
|
|
10407
|
+
}[] | undefined;
|
|
10408
10408
|
um?: string | null | undefined;
|
|
10409
10409
|
builder?: {
|
|
10410
10410
|
name_or_address?: string | undefined;
|
|
@@ -10491,19 +10491,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
10491
10491
|
};
|
|
10492
10492
|
index: number[];
|
|
10493
10493
|
} | undefined;
|
|
10494
|
-
owner_receive?: {
|
|
10495
|
-
received: {
|
|
10496
|
-
id: string;
|
|
10497
|
-
balance: string | number;
|
|
10498
|
-
payment: string;
|
|
10499
|
-
}[];
|
|
10500
|
-
balance: string | number;
|
|
10501
|
-
token_type: string;
|
|
10502
|
-
} | "recently" | {
|
|
10503
|
-
type: string;
|
|
10504
|
-
id: string;
|
|
10505
|
-
content_raw?: any;
|
|
10506
|
-
}[] | undefined;
|
|
10507
10494
|
entity?: {
|
|
10508
10495
|
op: "swap";
|
|
10509
10496
|
entity1: {
|
|
@@ -10541,6 +10528,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
10541
10528
|
local_mark_first?: boolean | undefined;
|
|
10542
10529
|
};
|
|
10543
10530
|
} | undefined;
|
|
10531
|
+
owner_receive?: {
|
|
10532
|
+
received: {
|
|
10533
|
+
id: string;
|
|
10534
|
+
balance: string | number;
|
|
10535
|
+
payment: string;
|
|
10536
|
+
}[];
|
|
10537
|
+
balance: string | number;
|
|
10538
|
+
token_type: string;
|
|
10539
|
+
} | "recently" | {
|
|
10540
|
+
type: string;
|
|
10541
|
+
id: string;
|
|
10542
|
+
content_raw?: any;
|
|
10543
|
+
}[] | undefined;
|
|
10544
10544
|
um?: string | null | undefined;
|
|
10545
10545
|
builder?: {
|
|
10546
10546
|
name_or_address?: string | undefined;
|
|
@@ -10663,19 +10663,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
10663
10663
|
};
|
|
10664
10664
|
index: number[];
|
|
10665
10665
|
} | undefined;
|
|
10666
|
-
owner_receive?: {
|
|
10667
|
-
received: {
|
|
10668
|
-
id: string;
|
|
10669
|
-
balance: string | number;
|
|
10670
|
-
payment: string;
|
|
10671
|
-
}[];
|
|
10672
|
-
balance: string | number;
|
|
10673
|
-
token_type: string;
|
|
10674
|
-
} | "recently" | {
|
|
10675
|
-
type: string;
|
|
10676
|
-
id: string;
|
|
10677
|
-
content_raw?: any;
|
|
10678
|
-
}[] | undefined;
|
|
10679
10666
|
entity?: {
|
|
10680
10667
|
op: "swap";
|
|
10681
10668
|
entity1: {
|
|
@@ -10713,6 +10700,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
10713
10700
|
local_mark_first?: boolean | undefined;
|
|
10714
10701
|
};
|
|
10715
10702
|
} | undefined;
|
|
10703
|
+
owner_receive?: {
|
|
10704
|
+
received: {
|
|
10705
|
+
id: string;
|
|
10706
|
+
balance: string | number;
|
|
10707
|
+
payment: string;
|
|
10708
|
+
}[];
|
|
10709
|
+
balance: string | number;
|
|
10710
|
+
token_type: string;
|
|
10711
|
+
} | "recently" | {
|
|
10712
|
+
type: string;
|
|
10713
|
+
id: string;
|
|
10714
|
+
content_raw?: any;
|
|
10715
|
+
}[] | undefined;
|
|
10716
10716
|
um?: string | null | undefined;
|
|
10717
10717
|
builder?: {
|
|
10718
10718
|
name_or_address?: string | undefined;
|
|
@@ -10814,19 +10814,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
10814
10814
|
};
|
|
10815
10815
|
index: number[];
|
|
10816
10816
|
} | undefined;
|
|
10817
|
-
owner_receive?: {
|
|
10818
|
-
received: {
|
|
10819
|
-
id: string;
|
|
10820
|
-
balance: string | number;
|
|
10821
|
-
payment: string;
|
|
10822
|
-
}[];
|
|
10823
|
-
balance: string | number;
|
|
10824
|
-
token_type: string;
|
|
10825
|
-
} | "recently" | {
|
|
10826
|
-
type: string;
|
|
10827
|
-
id: string;
|
|
10828
|
-
content_raw?: any;
|
|
10829
|
-
}[] | undefined;
|
|
10830
10817
|
entity?: {
|
|
10831
10818
|
op: "swap";
|
|
10832
10819
|
entity1: {
|
|
@@ -10864,6 +10851,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
10864
10851
|
local_mark_first?: boolean | undefined;
|
|
10865
10852
|
};
|
|
10866
10853
|
} | undefined;
|
|
10854
|
+
owner_receive?: {
|
|
10855
|
+
received: {
|
|
10856
|
+
id: string;
|
|
10857
|
+
balance: string | number;
|
|
10858
|
+
payment: string;
|
|
10859
|
+
}[];
|
|
10860
|
+
balance: string | number;
|
|
10861
|
+
token_type: string;
|
|
10862
|
+
} | "recently" | {
|
|
10863
|
+
type: string;
|
|
10864
|
+
id: string;
|
|
10865
|
+
content_raw?: any;
|
|
10866
|
+
}[] | undefined;
|
|
10867
10867
|
um?: string | null | undefined;
|
|
10868
10868
|
builder?: {
|
|
10869
10869
|
name_or_address?: string | undefined;
|
|
@@ -11017,6 +11017,28 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
11017
11017
|
guards: string[];
|
|
11018
11018
|
logic_or?: boolean | undefined;
|
|
11019
11019
|
}>>;
|
|
11020
|
+
binding_hint: z.ZodOptional<z.ZodObject<{
|
|
11021
|
+
action: z.ZodEnum<["buy", "forward", "allocate", "claim_reward", "vote", "dispute", "write_repository", "submit_progress", "gen_passport", "custom"]>;
|
|
11022
|
+
host_object: z.ZodEnum<["Service", "Machine", "Arbitration", "Reward", "Repository", "Progress", "Demand", "Standalone"]>;
|
|
11023
|
+
binding_field: z.ZodEnum<["buy_guard", "order_allocators", "Forward.guard", "submission", "guard", "write_guard", "usage_guard", "voting_guard", "ServiceGuard", "none"]>;
|
|
11024
|
+
rule_sentence: z.ZodOptional<z.ZodString>;
|
|
11025
|
+
failure_conditions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11026
|
+
circular_reference: z.ZodOptional<z.ZodBoolean>;
|
|
11027
|
+
}, "strict", z.ZodTypeAny, {
|
|
11028
|
+
action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
|
|
11029
|
+
host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
|
|
11030
|
+
binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
|
|
11031
|
+
rule_sentence?: string | undefined;
|
|
11032
|
+
failure_conditions?: string[] | undefined;
|
|
11033
|
+
circular_reference?: boolean | undefined;
|
|
11034
|
+
}, {
|
|
11035
|
+
action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
|
|
11036
|
+
host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
|
|
11037
|
+
binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
|
|
11038
|
+
rule_sentence?: string | undefined;
|
|
11039
|
+
failure_conditions?: string[] | undefined;
|
|
11040
|
+
circular_reference?: boolean | undefined;
|
|
11041
|
+
}>>;
|
|
11020
11042
|
}, "strict", z.ZodTypeAny, {
|
|
11021
11043
|
description?: string | undefined;
|
|
11022
11044
|
table?: {
|
|
@@ -11046,6 +11068,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
11046
11068
|
tags?: string[] | undefined;
|
|
11047
11069
|
onChain?: boolean | undefined;
|
|
11048
11070
|
} | undefined;
|
|
11071
|
+
binding_hint?: {
|
|
11072
|
+
action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
|
|
11073
|
+
host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
|
|
11074
|
+
binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
|
|
11075
|
+
rule_sentence?: string | undefined;
|
|
11076
|
+
failure_conditions?: string[] | undefined;
|
|
11077
|
+
circular_reference?: boolean | undefined;
|
|
11078
|
+
} | undefined;
|
|
11049
11079
|
}, {
|
|
11050
11080
|
description?: string | undefined;
|
|
11051
11081
|
table?: {
|
|
@@ -11075,6 +11105,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
11075
11105
|
tags?: string[] | undefined;
|
|
11076
11106
|
onChain?: boolean | undefined;
|
|
11077
11107
|
} | undefined;
|
|
11108
|
+
binding_hint?: {
|
|
11109
|
+
action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
|
|
11110
|
+
host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
|
|
11111
|
+
binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
|
|
11112
|
+
rule_sentence?: string | undefined;
|
|
11113
|
+
failure_conditions?: string[] | undefined;
|
|
11114
|
+
circular_reference?: boolean | undefined;
|
|
11115
|
+
} | undefined;
|
|
11078
11116
|
}>, {
|
|
11079
11117
|
description?: string | undefined;
|
|
11080
11118
|
table?: {
|
|
@@ -11104,6 +11142,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
11104
11142
|
tags?: string[] | undefined;
|
|
11105
11143
|
onChain?: boolean | undefined;
|
|
11106
11144
|
} | undefined;
|
|
11145
|
+
binding_hint?: {
|
|
11146
|
+
action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
|
|
11147
|
+
host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
|
|
11148
|
+
binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
|
|
11149
|
+
rule_sentence?: string | undefined;
|
|
11150
|
+
failure_conditions?: string[] | undefined;
|
|
11151
|
+
circular_reference?: boolean | undefined;
|
|
11152
|
+
} | undefined;
|
|
11107
11153
|
}, {
|
|
11108
11154
|
description?: string | undefined;
|
|
11109
11155
|
table?: {
|
|
@@ -11133,6 +11179,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
11133
11179
|
tags?: string[] | undefined;
|
|
11134
11180
|
onChain?: boolean | undefined;
|
|
11135
11181
|
} | undefined;
|
|
11182
|
+
binding_hint?: {
|
|
11183
|
+
action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
|
|
11184
|
+
host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
|
|
11185
|
+
binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
|
|
11186
|
+
rule_sentence?: string | undefined;
|
|
11187
|
+
failure_conditions?: string[] | undefined;
|
|
11188
|
+
circular_reference?: boolean | undefined;
|
|
11189
|
+
} | undefined;
|
|
11136
11190
|
}>;
|
|
11137
11191
|
env: z.ZodOptional<z.ZodObject<{
|
|
11138
11192
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
@@ -11198,6 +11252,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
11198
11252
|
tags?: string[] | undefined;
|
|
11199
11253
|
onChain?: boolean | undefined;
|
|
11200
11254
|
} | undefined;
|
|
11255
|
+
binding_hint?: {
|
|
11256
|
+
action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
|
|
11257
|
+
host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
|
|
11258
|
+
binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
|
|
11259
|
+
rule_sentence?: string | undefined;
|
|
11260
|
+
failure_conditions?: string[] | undefined;
|
|
11261
|
+
circular_reference?: boolean | undefined;
|
|
11262
|
+
} | undefined;
|
|
11201
11263
|
};
|
|
11202
11264
|
operation_type: "guard";
|
|
11203
11265
|
env?: {
|
|
@@ -11242,6 +11304,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
11242
11304
|
tags?: string[] | undefined;
|
|
11243
11305
|
onChain?: boolean | undefined;
|
|
11244
11306
|
} | undefined;
|
|
11307
|
+
binding_hint?: {
|
|
11308
|
+
action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
|
|
11309
|
+
host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
|
|
11310
|
+
binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
|
|
11311
|
+
rule_sentence?: string | undefined;
|
|
11312
|
+
failure_conditions?: string[] | undefined;
|
|
11313
|
+
circular_reference?: boolean | undefined;
|
|
11314
|
+
} | undefined;
|
|
11245
11315
|
};
|
|
11246
11316
|
operation_type: "guard";
|
|
11247
11317
|
env?: {
|
|
@@ -12334,20 +12404,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
12334
12404
|
} | {
|
|
12335
12405
|
op: "clear";
|
|
12336
12406
|
} | undefined;
|
|
12337
|
-
location?: string | undefined;
|
|
12338
|
-
owner_receive?: {
|
|
12339
|
-
received: {
|
|
12340
|
-
id: string;
|
|
12341
|
-
balance: string | number;
|
|
12342
|
-
payment: string;
|
|
12343
|
-
}[];
|
|
12344
|
-
balance: string | number;
|
|
12345
|
-
token_type: string;
|
|
12346
|
-
} | "recently" | {
|
|
12347
|
-
type: string;
|
|
12348
|
-
id: string;
|
|
12349
|
-
content_raw?: any;
|
|
12350
|
-
}[] | undefined;
|
|
12351
12407
|
guards?: {
|
|
12352
12408
|
op: "add";
|
|
12353
12409
|
guard: {
|
|
@@ -12366,6 +12422,20 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
12366
12422
|
} | {
|
|
12367
12423
|
op: "clear";
|
|
12368
12424
|
} | undefined;
|
|
12425
|
+
location?: string | undefined;
|
|
12426
|
+
owner_receive?: {
|
|
12427
|
+
received: {
|
|
12428
|
+
id: string;
|
|
12429
|
+
balance: string | number;
|
|
12430
|
+
payment: string;
|
|
12431
|
+
}[];
|
|
12432
|
+
balance: string | number;
|
|
12433
|
+
token_type: string;
|
|
12434
|
+
} | "recently" | {
|
|
12435
|
+
type: string;
|
|
12436
|
+
id: string;
|
|
12437
|
+
content_raw?: any;
|
|
12438
|
+
}[] | undefined;
|
|
12369
12439
|
um?: string | null | undefined;
|
|
12370
12440
|
feedback?: {
|
|
12371
12441
|
who: {
|
|
@@ -12404,20 +12474,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
12404
12474
|
} | {
|
|
12405
12475
|
op: "clear";
|
|
12406
12476
|
} | undefined;
|
|
12407
|
-
location?: string | undefined;
|
|
12408
|
-
owner_receive?: {
|
|
12409
|
-
received: {
|
|
12410
|
-
id: string;
|
|
12411
|
-
balance: string | number;
|
|
12412
|
-
payment: string;
|
|
12413
|
-
}[];
|
|
12414
|
-
balance: string | number;
|
|
12415
|
-
token_type: string;
|
|
12416
|
-
} | "recently" | {
|
|
12417
|
-
type: string;
|
|
12418
|
-
id: string;
|
|
12419
|
-
content_raw?: any;
|
|
12420
|
-
}[] | undefined;
|
|
12421
12477
|
guards?: {
|
|
12422
12478
|
op: "add";
|
|
12423
12479
|
guard: {
|
|
@@ -12436,6 +12492,20 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
12436
12492
|
} | {
|
|
12437
12493
|
op: "clear";
|
|
12438
12494
|
} | undefined;
|
|
12495
|
+
location?: string | undefined;
|
|
12496
|
+
owner_receive?: {
|
|
12497
|
+
received: {
|
|
12498
|
+
id: string;
|
|
12499
|
+
balance: string | number;
|
|
12500
|
+
payment: string;
|
|
12501
|
+
}[];
|
|
12502
|
+
balance: string | number;
|
|
12503
|
+
token_type: string;
|
|
12504
|
+
} | "recently" | {
|
|
12505
|
+
type: string;
|
|
12506
|
+
id: string;
|
|
12507
|
+
content_raw?: any;
|
|
12508
|
+
}[] | undefined;
|
|
12439
12509
|
um?: string | null | undefined;
|
|
12440
12510
|
feedback?: {
|
|
12441
12511
|
who: {
|
|
@@ -12690,20 +12760,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
12690
12760
|
} | {
|
|
12691
12761
|
op: "clear";
|
|
12692
12762
|
} | undefined;
|
|
12693
|
-
location?: string | undefined;
|
|
12694
|
-
owner_receive?: {
|
|
12695
|
-
received: {
|
|
12696
|
-
id: string;
|
|
12697
|
-
balance: string | number;
|
|
12698
|
-
payment: string;
|
|
12699
|
-
}[];
|
|
12700
|
-
balance: string | number;
|
|
12701
|
-
token_type: string;
|
|
12702
|
-
} | "recently" | {
|
|
12703
|
-
type: string;
|
|
12704
|
-
id: string;
|
|
12705
|
-
content_raw?: any;
|
|
12706
|
-
}[] | undefined;
|
|
12707
12763
|
guards?: {
|
|
12708
12764
|
op: "add";
|
|
12709
12765
|
guard: {
|
|
@@ -12722,6 +12778,20 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
12722
12778
|
} | {
|
|
12723
12779
|
op: "clear";
|
|
12724
12780
|
} | undefined;
|
|
12781
|
+
location?: string | undefined;
|
|
12782
|
+
owner_receive?: {
|
|
12783
|
+
received: {
|
|
12784
|
+
id: string;
|
|
12785
|
+
balance: string | number;
|
|
12786
|
+
payment: string;
|
|
12787
|
+
}[];
|
|
12788
|
+
balance: string | number;
|
|
12789
|
+
token_type: string;
|
|
12790
|
+
} | "recently" | {
|
|
12791
|
+
type: string;
|
|
12792
|
+
id: string;
|
|
12793
|
+
content_raw?: any;
|
|
12794
|
+
}[] | undefined;
|
|
12725
12795
|
um?: string | null | undefined;
|
|
12726
12796
|
feedback?: {
|
|
12727
12797
|
who: {
|
|
@@ -12802,20 +12872,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
12802
12872
|
} | {
|
|
12803
12873
|
op: "clear";
|
|
12804
12874
|
} | undefined;
|
|
12805
|
-
location?: string | undefined;
|
|
12806
|
-
owner_receive?: {
|
|
12807
|
-
received: {
|
|
12808
|
-
id: string;
|
|
12809
|
-
balance: string | number;
|
|
12810
|
-
payment: string;
|
|
12811
|
-
}[];
|
|
12812
|
-
balance: string | number;
|
|
12813
|
-
token_type: string;
|
|
12814
|
-
} | "recently" | {
|
|
12815
|
-
type: string;
|
|
12816
|
-
id: string;
|
|
12817
|
-
content_raw?: any;
|
|
12818
|
-
}[] | undefined;
|
|
12819
12875
|
guards?: {
|
|
12820
12876
|
op: "add";
|
|
12821
12877
|
guard: {
|
|
@@ -12834,6 +12890,20 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
12834
12890
|
} | {
|
|
12835
12891
|
op: "clear";
|
|
12836
12892
|
} | undefined;
|
|
12893
|
+
location?: string | undefined;
|
|
12894
|
+
owner_receive?: {
|
|
12895
|
+
received: {
|
|
12896
|
+
id: string;
|
|
12897
|
+
balance: string | number;
|
|
12898
|
+
payment: string;
|
|
12899
|
+
}[];
|
|
12900
|
+
balance: string | number;
|
|
12901
|
+
token_type: string;
|
|
12902
|
+
} | "recently" | {
|
|
12903
|
+
type: string;
|
|
12904
|
+
id: string;
|
|
12905
|
+
content_raw?: any;
|
|
12906
|
+
}[] | undefined;
|
|
12837
12907
|
um?: string | null | undefined;
|
|
12838
12908
|
feedback?: {
|
|
12839
12909
|
who: {
|
|
@@ -14894,7 +14964,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
14894
14964
|
id_from_submission?: number | undefined;
|
|
14895
14965
|
data_from_submission?: number | undefined;
|
|
14896
14966
|
}[];
|
|
14897
|
-
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "
|
|
14967
|
+
id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
|
|
14898
14968
|
quote_guard?: string | null | undefined;
|
|
14899
14969
|
}[];
|
|
14900
14970
|
} | {
|
|
@@ -15648,19 +15718,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
15648
15718
|
};
|
|
15649
15719
|
index: number[];
|
|
15650
15720
|
} | undefined;
|
|
15651
|
-
owner_receive?: {
|
|
15652
|
-
received: {
|
|
15653
|
-
id: string;
|
|
15654
|
-
balance: string | number;
|
|
15655
|
-
payment: string;
|
|
15656
|
-
}[];
|
|
15657
|
-
balance: string | number;
|
|
15658
|
-
token_type: string;
|
|
15659
|
-
} | "recently" | {
|
|
15660
|
-
type: string;
|
|
15661
|
-
id: string;
|
|
15662
|
-
content_raw?: any;
|
|
15663
|
-
}[] | undefined;
|
|
15664
15721
|
entity?: {
|
|
15665
15722
|
op: "swap";
|
|
15666
15723
|
entity1: {
|
|
@@ -15698,6 +15755,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
15698
15755
|
local_mark_first?: boolean | undefined;
|
|
15699
15756
|
};
|
|
15700
15757
|
} | undefined;
|
|
15758
|
+
owner_receive?: {
|
|
15759
|
+
received: {
|
|
15760
|
+
id: string;
|
|
15761
|
+
balance: string | number;
|
|
15762
|
+
payment: string;
|
|
15763
|
+
}[];
|
|
15764
|
+
balance: string | number;
|
|
15765
|
+
token_type: string;
|
|
15766
|
+
} | "recently" | {
|
|
15767
|
+
type: string;
|
|
15768
|
+
id: string;
|
|
15769
|
+
content_raw?: any;
|
|
15770
|
+
}[] | undefined;
|
|
15701
15771
|
um?: string | null | undefined;
|
|
15702
15772
|
builder?: {
|
|
15703
15773
|
name_or_address?: string | undefined;
|
|
@@ -15768,6 +15838,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
15768
15838
|
tags?: string[] | undefined;
|
|
15769
15839
|
onChain?: boolean | undefined;
|
|
15770
15840
|
} | undefined;
|
|
15841
|
+
binding_hint?: {
|
|
15842
|
+
action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
|
|
15843
|
+
host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
|
|
15844
|
+
binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
|
|
15845
|
+
rule_sentence?: string | undefined;
|
|
15846
|
+
failure_conditions?: string[] | undefined;
|
|
15847
|
+
circular_reference?: boolean | undefined;
|
|
15848
|
+
} | undefined;
|
|
15771
15849
|
};
|
|
15772
15850
|
operation_type: "guard";
|
|
15773
15851
|
env?: {
|
|
@@ -15921,20 +15999,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
15921
15999
|
} | {
|
|
15922
16000
|
op: "clear";
|
|
15923
16001
|
} | undefined;
|
|
15924
|
-
location?: string | undefined;
|
|
15925
|
-
owner_receive?: {
|
|
15926
|
-
received: {
|
|
15927
|
-
id: string;
|
|
15928
|
-
balance: string | number;
|
|
15929
|
-
payment: string;
|
|
15930
|
-
}[];
|
|
15931
|
-
balance: string | number;
|
|
15932
|
-
token_type: string;
|
|
15933
|
-
} | "recently" | {
|
|
15934
|
-
type: string;
|
|
15935
|
-
id: string;
|
|
15936
|
-
content_raw?: any;
|
|
15937
|
-
}[] | undefined;
|
|
15938
16002
|
guards?: {
|
|
15939
16003
|
op: "add";
|
|
15940
16004
|
guard: {
|
|
@@ -15953,6 +16017,20 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
|
|
|
15953
16017
|
} | {
|
|
15954
16018
|
op: "clear";
|
|
15955
16019
|
} | undefined;
|
|
16020
|
+
location?: string | undefined;
|
|
16021
|
+
owner_receive?: {
|
|
16022
|
+
received: {
|
|
16023
|
+
id: string;
|
|
16024
|
+
balance: string | number;
|
|
16025
|
+
payment: string;
|
|
16026
|
+
}[];
|
|
16027
|
+
balance: string | number;
|
|
16028
|
+
token_type: string;
|
|
16029
|
+
} | "recently" | {
|
|
16030
|
+
type: string;
|
|
16031
|
+
id: string;
|
|
16032
|
+
content_raw?: any;
|
|
16033
|
+
}[] | undefined;
|
|
15956
16034
|
um?: string | null | undefined;
|
|
15957
16035
|
feedback?: {
|
|
15958
16036
|
who: {
|