@wowok/agent-mcp 2.3.13 → 2.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config/index.d.ts +1 -0
- package/dist/config/index.js +1 -0
- package/dist/config/runtime.d.ts +26 -0
- package/dist/config/runtime.js +217 -0
- package/dist/customer/industry-risks.d.ts +36 -0
- package/dist/customer/industry-risks.js +424 -0
- package/dist/customer/info-puzzle.d.ts +102 -0
- package/dist/customer/info-puzzle.js +312 -0
- package/dist/customer/order-monitor.d.ts +75 -0
- package/dist/customer/order-monitor.js +327 -0
- package/dist/customer/order-strategy.d.ts +36 -0
- package/dist/customer/order-strategy.js +373 -0
- package/dist/customer/post-purchase.d.ts +42 -0
- package/dist/customer/post-purchase.js +350 -0
- package/dist/customer/reminder-system.d.ts +42 -0
- package/dist/customer/reminder-system.js +295 -0
- package/dist/customer/risk-assessment.d.ts +8 -0
- package/dist/customer/risk-assessment.js +337 -0
- package/dist/customer/types.d.ts +193 -0
- package/dist/customer/types.js +13 -0
- package/dist/customer/user-preferences.d.ts +67 -0
- package/dist/customer/user-preferences.js +451 -0
- package/dist/experience/experience-reuse.d.ts +10 -0
- package/dist/experience/experience-reuse.js +103 -0
- package/dist/experience/index.d.ts +6 -0
- package/dist/experience/index.js +5 -0
- package/dist/experience/intent-distill.d.ts +3 -0
- package/dist/experience/intent-distill.js +83 -0
- package/dist/experience/realtime-feedback.d.ts +5 -0
- package/dist/experience/realtime-feedback.js +77 -0
- package/dist/experience/types.d.ts +50 -0
- package/dist/experience/types.js +1 -0
- package/dist/experience/user-profile.d.ts +25 -0
- package/dist/experience/user-profile.js +171 -0
- package/dist/harness/checkpoint.d.ts +8 -0
- package/dist/harness/checkpoint.js +129 -0
- package/dist/harness/index.d.ts +33 -0
- package/dist/harness/index.js +75 -0
- package/dist/harness/plan.d.ts +18 -0
- package/dist/harness/plan.js +252 -0
- package/dist/harness/recover.d.ts +17 -0
- package/dist/harness/recover.js +139 -0
- package/dist/harness/types.d.ts +137 -0
- package/dist/harness/types.js +1 -0
- package/dist/harness/verify.d.ts +42 -0
- package/dist/harness/verify.js +237 -0
- package/dist/index.js +667 -201
- package/dist/knowledge/acquisition-flywheel.d.ts +50 -0
- package/dist/knowledge/acquisition-flywheel.js +183 -0
- package/dist/knowledge/arbitration-trust.d.ts +24 -0
- package/dist/knowledge/arbitration-trust.js +117 -0
- package/dist/knowledge/audit-rules.d.ts +28 -0
- package/dist/knowledge/audit-rules.js +141 -0
- package/dist/knowledge/demand-matching.d.ts +29 -0
- package/dist/knowledge/demand-matching.js +132 -0
- package/dist/knowledge/dynamic-pricing.d.ts +31 -0
- package/dist/knowledge/dynamic-pricing.js +87 -0
- package/dist/knowledge/flywheel-loop.d.ts +87 -0
- package/dist/knowledge/flywheel-loop.js +378 -0
- package/dist/knowledge/glossary.d.ts +18 -0
- package/dist/knowledge/glossary.js +209 -0
- package/dist/knowledge/index.d.ts +64 -0
- package/dist/knowledge/index.js +66 -0
- package/dist/knowledge/industry-evolution.d.ts +82 -0
- package/dist/knowledge/industry-evolution.js +323 -0
- package/dist/knowledge/industry-generalizer.d.ts +17 -0
- package/dist/knowledge/industry-generalizer.js +381 -0
- package/dist/knowledge/industry-registry.d.ts +49 -0
- package/dist/knowledge/industry-registry.js +167 -0
- package/dist/knowledge/intent-metrics.d.ts +42 -0
- package/dist/knowledge/intent-metrics.js +566 -0
- package/dist/knowledge/process-model.d.ts +24 -0
- package/dist/knowledge/process-model.js +160 -0
- package/dist/knowledge/reputation-rules.d.ts +42 -0
- package/dist/knowledge/reputation-rules.js +99 -0
- package/dist/knowledge/reward-templates.d.ts +25 -0
- package/dist/knowledge/reward-templates.js +125 -0
- package/dist/knowledge/safety-rules.d.ts +36 -0
- package/dist/knowledge/safety-rules.js +171 -0
- package/dist/knowledge/tool-constraints.d.ts +30 -0
- package/dist/knowledge/tool-constraints.js +185 -0
- package/dist/knowledge/trust-metrics.d.ts +37 -0
- package/dist/knowledge/trust-metrics.js +138 -0
- package/dist/loop-engineering/aggregate.d.ts +50 -0
- package/dist/loop-engineering/aggregate.js +132 -0
- package/dist/loop-engineering/diagnose.d.ts +22 -0
- package/dist/loop-engineering/diagnose.js +273 -0
- package/dist/loop-engineering/improve.d.ts +26 -0
- package/dist/loop-engineering/improve.js +229 -0
- package/dist/loop-engineering/index.d.ts +4 -0
- package/dist/loop-engineering/index.js +4 -0
- package/dist/loop-engineering/pipeline.d.ts +17 -0
- package/dist/loop-engineering/pipeline.js +56 -0
- package/dist/mode-market/index.d.ts +3 -0
- package/dist/mode-market/index.js +3 -0
- package/dist/mode-market/registry.d.ts +53 -0
- package/dist/mode-market/registry.js +124 -0
- package/dist/mode-market/review.d.ts +27 -0
- package/dist/mode-market/review.js +214 -0
- package/dist/mode-market/submission.d.ts +25 -0
- package/dist/mode-market/submission.js +85 -0
- package/dist/project/graph.d.ts +71 -0
- package/dist/project/graph.js +314 -0
- package/dist/project/index.d.ts +62 -0
- package/dist/project/index.js +167 -0
- package/dist/project/namespace.d.ts +62 -0
- package/dist/project/namespace.js +181 -0
- package/dist/project/query.d.ts +40 -0
- package/dist/project/query.js +110 -0
- package/dist/safety/confirm-gate.d.ts +15 -0
- package/dist/safety/confirm-gate.js +44 -0
- package/dist/safety/index.d.ts +3 -0
- package/dist/safety/index.js +3 -0
- package/dist/safety/preview.d.ts +2 -0
- package/dist/safety/preview.js +36 -0
- package/dist/schema/call/allocation.d.ts +55 -40
- package/dist/schema/call/arbitration.d.ts +201 -186
- package/dist/schema/call/base.d.ts +2104 -24
- package/dist/schema/call/base.js +168 -22
- package/dist/schema/call/bridge-handler.js +36 -18
- package/dist/schema/call/bridge.d.ts +777 -120
- package/dist/schema/call/bridge.js +13 -2
- package/dist/schema/call/contact.d.ts +15 -0
- package/dist/schema/call/demand.d.ts +69 -54
- package/dist/schema/call/guard.d.ts +125 -80
- package/dist/schema/call/handler.d.ts +5 -1
- package/dist/schema/call/handler.js +108 -3
- package/dist/schema/call/index.d.ts +1 -0
- package/dist/schema/call/index.js +1 -0
- package/dist/schema/call/machine.d.ts +830 -800
- package/dist/schema/call/order.d.ts +27 -12
- package/dist/schema/call/payment.d.ts +15 -0
- package/dist/schema/call/permission.d.ts +15 -0
- package/dist/schema/call/personal.d.ts +15 -0
- package/dist/schema/call/progress.d.ts +21 -6
- package/dist/schema/call/proof.d.ts +42 -12
- package/dist/schema/call/proof.js +3 -3
- package/dist/schema/call/repository.d.ts +91 -76
- package/dist/schema/call/reward.d.ts +51 -36
- package/dist/schema/call/semantic.d.ts +24 -0
- package/dist/schema/call/semantic.js +981 -0
- package/dist/schema/call/service.d.ts +444 -429
- package/dist/schema/call/treasury.d.ts +219 -204
- package/dist/schema/common/index.js +3 -3
- package/dist/schema/local/index.d.ts +341 -74
- package/dist/schema/local/index.js +44 -7
- package/dist/schema/messenger/index.d.ts +1034 -92
- package/dist/schema/messenger/index.js +18 -0
- package/dist/schema/operations.d.ts +2634 -1817
- package/dist/schema/operations.js +16 -5
- package/dist/schema/query/index.d.ts +2293 -2289
- package/dist/schema/query/index.js +34 -28
- package/dist/schemas/account_operation.output.json +28 -16
- package/dist/schemas/account_operation.schema.json +2 -2
- package/dist/schemas/bridge_operation.output.json +520 -0
- package/dist/schemas/bridge_operation.schema.json +15 -0
- package/dist/schemas/guard2file.schema.json +15 -0
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/local_info_operation.output.json +26 -0
- package/dist/schemas/local_info_operation.schema.json +1 -1
- package/dist/schemas/local_mark_operation.output.json +27 -1
- package/dist/schemas/local_mark_operation.schema.json +4 -4
- package/dist/schemas/machineNode2file.schema.json +15 -0
- package/dist/schemas/messenger_operation.output.json +549 -0
- package/dist/schemas/messenger_operation.schema.json +21 -0
- package/dist/schemas/onchain_events.output.json +3 -0
- package/dist/schemas/onchain_operations.output.json +814 -37
- package/dist/schemas/onchain_operations.schema.json +117 -40
- package/dist/schemas/onchain_operations_allocation.schema.json +26 -9
- package/dist/schemas/onchain_operations_arbitration.schema.json +26 -9
- package/dist/schemas/onchain_operations_contact.schema.json +26 -9
- package/dist/schemas/onchain_operations_demand.schema.json +26 -9
- package/dist/schemas/onchain_operations_gen_passport.schema.json +51 -17
- package/dist/schemas/onchain_operations_guard.schema.json +26 -9
- package/dist/schemas/onchain_operations_machine.schema.json +92 -32
- package/dist/schemas/onchain_operations_order.schema.json +26 -9
- package/dist/schemas/onchain_operations_payment.schema.json +26 -9
- package/dist/schemas/onchain_operations_permission.schema.json +26 -9
- package/dist/schemas/onchain_operations_personal.schema.json +26 -9
- package/dist/schemas/onchain_operations_progress.schema.json +26 -9
- package/dist/schemas/onchain_operations_repository.schema.json +26 -9
- package/dist/schemas/onchain_operations_reward.schema.json +26 -9
- package/dist/schemas/onchain_operations_service.schema.json +26 -9
- package/dist/schemas/onchain_operations_treasury.schema.json +26 -9
- package/dist/schemas/onchain_table_data.output.json +224 -69
- package/dist/schemas/onchain_table_data.schema.json +2 -2
- package/dist/schemas/query_toolkit.schema.json +5 -1
- package/dist/telemetry/index.d.ts +19 -0
- package/dist/telemetry/index.js +112 -0
- package/dist/telemetry/redact.d.ts +2 -0
- package/dist/telemetry/redact.js +23 -0
- package/dist/telemetry/storage.d.ts +8 -0
- package/dist/telemetry/storage.js +80 -0
- package/package.json +6 -3
|
@@ -1066,6 +1066,7 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1066
1066
|
sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1067
1067
|
mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
|
|
1068
1068
|
}, "strip", z.ZodTypeAny, {
|
|
1069
|
+
sharing: string | number;
|
|
1069
1070
|
who: {
|
|
1070
1071
|
GuardIdentifier: number;
|
|
1071
1072
|
} | {
|
|
@@ -1076,9 +1077,9 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1076
1077
|
} | {
|
|
1077
1078
|
Signer: "signer";
|
|
1078
1079
|
};
|
|
1079
|
-
sharing: string | number;
|
|
1080
1080
|
mode: "Amount" | "Rate" | "Surplus";
|
|
1081
1081
|
}, {
|
|
1082
|
+
sharing: string | number;
|
|
1082
1083
|
who: {
|
|
1083
1084
|
GuardIdentifier: number;
|
|
1084
1085
|
} | {
|
|
@@ -1089,7 +1090,6 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1089
1090
|
} | {
|
|
1090
1091
|
Signer: "signer";
|
|
1091
1092
|
};
|
|
1092
|
-
sharing: string | number;
|
|
1093
1093
|
mode: "Amount" | "Rate" | "Surplus";
|
|
1094
1094
|
}>, "many">;
|
|
1095
1095
|
fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -1097,6 +1097,7 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1097
1097
|
}, "strip", z.ZodTypeAny, {
|
|
1098
1098
|
guard: string;
|
|
1099
1099
|
sharing: {
|
|
1100
|
+
sharing: string | number;
|
|
1100
1101
|
who: {
|
|
1101
1102
|
GuardIdentifier: number;
|
|
1102
1103
|
} | {
|
|
@@ -1107,7 +1108,6 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1107
1108
|
} | {
|
|
1108
1109
|
Signer: "signer";
|
|
1109
1110
|
};
|
|
1110
|
-
sharing: string | number;
|
|
1111
1111
|
mode: "Amount" | "Rate" | "Surplus";
|
|
1112
1112
|
}[];
|
|
1113
1113
|
max?: string | number | null | undefined;
|
|
@@ -1115,6 +1115,7 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1115
1115
|
}, {
|
|
1116
1116
|
guard: string;
|
|
1117
1117
|
sharing: {
|
|
1118
|
+
sharing: string | number;
|
|
1118
1119
|
who: {
|
|
1119
1120
|
GuardIdentifier: number;
|
|
1120
1121
|
} | {
|
|
@@ -1125,7 +1126,6 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1125
1126
|
} | {
|
|
1126
1127
|
Signer: "signer";
|
|
1127
1128
|
};
|
|
1128
|
-
sharing: string | number;
|
|
1129
1129
|
mode: "Amount" | "Rate" | "Surplus";
|
|
1130
1130
|
}[];
|
|
1131
1131
|
max?: string | number | null | undefined;
|
|
@@ -1133,10 +1133,10 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1133
1133
|
}>, "many">;
|
|
1134
1134
|
}, "strip", z.ZodTypeAny, {
|
|
1135
1135
|
description: string;
|
|
1136
|
-
threshold: string | number;
|
|
1137
1136
|
allocators: {
|
|
1138
1137
|
guard: string;
|
|
1139
1138
|
sharing: {
|
|
1139
|
+
sharing: string | number;
|
|
1140
1140
|
who: {
|
|
1141
1141
|
GuardIdentifier: number;
|
|
1142
1142
|
} | {
|
|
@@ -1147,18 +1147,18 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1147
1147
|
} | {
|
|
1148
1148
|
Signer: "signer";
|
|
1149
1149
|
};
|
|
1150
|
-
sharing: string | number;
|
|
1151
1150
|
mode: "Amount" | "Rate" | "Surplus";
|
|
1152
1151
|
}[];
|
|
1153
1152
|
max?: string | number | null | undefined;
|
|
1154
1153
|
fix?: string | number | undefined;
|
|
1155
1154
|
}[];
|
|
1155
|
+
threshold: string | number;
|
|
1156
1156
|
}, {
|
|
1157
1157
|
description: string;
|
|
1158
|
-
threshold: string | number;
|
|
1159
1158
|
allocators: {
|
|
1160
1159
|
guard: string;
|
|
1161
1160
|
sharing: {
|
|
1161
|
+
sharing: string | number;
|
|
1162
1162
|
who: {
|
|
1163
1163
|
GuardIdentifier: number;
|
|
1164
1164
|
} | {
|
|
@@ -1169,12 +1169,12 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1169
1169
|
} | {
|
|
1170
1170
|
Signer: "signer";
|
|
1171
1171
|
};
|
|
1172
|
-
sharing: string | number;
|
|
1173
1172
|
mode: "Amount" | "Rate" | "Surplus";
|
|
1174
1173
|
}[];
|
|
1175
1174
|
max?: string | number | null | undefined;
|
|
1176
1175
|
fix?: string | number | undefined;
|
|
1177
1176
|
}[];
|
|
1177
|
+
threshold: string | number;
|
|
1178
1178
|
}>, z.ZodNull]>>;
|
|
1179
1179
|
buy_guard: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
|
|
1180
1180
|
compensation_fund_add: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -1288,48 +1288,32 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1288
1288
|
} | undefined;
|
|
1289
1289
|
};
|
|
1290
1290
|
description?: string | undefined;
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
received: {
|
|
1294
|
-
id: string;
|
|
1295
|
-
balance: string | number;
|
|
1296
|
-
payment: string;
|
|
1297
|
-
}[];
|
|
1298
|
-
balance: string | number;
|
|
1299
|
-
token_type: string;
|
|
1300
|
-
} | "recently" | {
|
|
1301
|
-
type: string;
|
|
1302
|
-
id: string;
|
|
1303
|
-
content_raw?: any;
|
|
1304
|
-
}[] | undefined;
|
|
1305
|
-
rewards?: {
|
|
1306
|
-
op: "set" | "add";
|
|
1307
|
-
objects: string[];
|
|
1308
|
-
} | {
|
|
1309
|
-
op: "remove";
|
|
1310
|
-
objects: string[];
|
|
1311
|
-
} | {
|
|
1312
|
-
op: "clear";
|
|
1313
|
-
} | undefined;
|
|
1314
|
-
um?: string | null | undefined;
|
|
1315
|
-
discount?: {
|
|
1316
|
-
name: string;
|
|
1317
|
-
recipient: {
|
|
1318
|
-
entities: {
|
|
1319
|
-
name_or_address?: string | undefined;
|
|
1320
|
-
local_mark_first?: boolean | undefined;
|
|
1321
|
-
}[];
|
|
1322
|
-
check_all_founded?: boolean | undefined;
|
|
1323
|
-
};
|
|
1324
|
-
count: number;
|
|
1325
|
-
discount_type: import("@wowok/wowok").DiscountType;
|
|
1326
|
-
transferable: boolean;
|
|
1327
|
-
discount_value: string | number;
|
|
1328
|
-
time_ms_end: number;
|
|
1329
|
-
benchmark?: string | number | undefined;
|
|
1330
|
-
time_ms_start?: number | undefined;
|
|
1331
|
-
} | undefined;
|
|
1291
|
+
publish?: boolean | undefined;
|
|
1292
|
+
buy_guard?: string | null | undefined;
|
|
1332
1293
|
machine?: string | null | undefined;
|
|
1294
|
+
order_allocators?: {
|
|
1295
|
+
description: string;
|
|
1296
|
+
allocators: {
|
|
1297
|
+
guard: string;
|
|
1298
|
+
sharing: {
|
|
1299
|
+
sharing: string | number;
|
|
1300
|
+
who: {
|
|
1301
|
+
GuardIdentifier: number;
|
|
1302
|
+
} | {
|
|
1303
|
+
Entity: {
|
|
1304
|
+
name_or_address?: string | undefined;
|
|
1305
|
+
local_mark_first?: boolean | undefined;
|
|
1306
|
+
};
|
|
1307
|
+
} | {
|
|
1308
|
+
Signer: "signer";
|
|
1309
|
+
};
|
|
1310
|
+
mode: "Amount" | "Rate" | "Surplus";
|
|
1311
|
+
}[];
|
|
1312
|
+
max?: string | number | null | undefined;
|
|
1313
|
+
fix?: string | number | undefined;
|
|
1314
|
+
}[];
|
|
1315
|
+
threshold: string | number;
|
|
1316
|
+
} | null | undefined;
|
|
1333
1317
|
sales?: {
|
|
1334
1318
|
op: "add";
|
|
1335
1319
|
sales: {
|
|
@@ -1356,7 +1340,24 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1356
1340
|
} | {
|
|
1357
1341
|
op: "clear";
|
|
1358
1342
|
} | undefined;
|
|
1359
|
-
|
|
1343
|
+
discount?: {
|
|
1344
|
+
name: string;
|
|
1345
|
+
recipient: {
|
|
1346
|
+
entities: {
|
|
1347
|
+
name_or_address?: string | undefined;
|
|
1348
|
+
local_mark_first?: boolean | undefined;
|
|
1349
|
+
}[];
|
|
1350
|
+
check_all_founded?: boolean | undefined;
|
|
1351
|
+
};
|
|
1352
|
+
count: number;
|
|
1353
|
+
discount_type: import("@wowok/wowok").DiscountType;
|
|
1354
|
+
transferable: boolean;
|
|
1355
|
+
discount_value: string | number;
|
|
1356
|
+
time_ms_end: number;
|
|
1357
|
+
benchmark?: string | number | undefined;
|
|
1358
|
+
time_ms_start?: number | undefined;
|
|
1359
|
+
} | undefined;
|
|
1360
|
+
rewards?: {
|
|
1360
1361
|
op: "set" | "add";
|
|
1361
1362
|
objects: string[];
|
|
1362
1363
|
} | {
|
|
@@ -1365,8 +1366,6 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1365
1366
|
} | {
|
|
1366
1367
|
op: "clear";
|
|
1367
1368
|
} | undefined;
|
|
1368
|
-
buy_guard?: string | null | undefined;
|
|
1369
|
-
customer_required?: string[] | undefined;
|
|
1370
1369
|
arbitrations?: {
|
|
1371
1370
|
op: "set" | "add";
|
|
1372
1371
|
objects: string[];
|
|
@@ -1376,31 +1375,32 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1376
1375
|
} | {
|
|
1377
1376
|
op: "clear";
|
|
1378
1377
|
} | undefined;
|
|
1379
|
-
order_allocators?: {
|
|
1380
|
-
description: string;
|
|
1381
|
-
threshold: string | number;
|
|
1382
|
-
allocators: {
|
|
1383
|
-
guard: string;
|
|
1384
|
-
sharing: {
|
|
1385
|
-
who: {
|
|
1386
|
-
GuardIdentifier: number;
|
|
1387
|
-
} | {
|
|
1388
|
-
Entity: {
|
|
1389
|
-
name_or_address?: string | undefined;
|
|
1390
|
-
local_mark_first?: boolean | undefined;
|
|
1391
|
-
};
|
|
1392
|
-
} | {
|
|
1393
|
-
Signer: "signer";
|
|
1394
|
-
};
|
|
1395
|
-
sharing: string | number;
|
|
1396
|
-
mode: "Amount" | "Rate" | "Surplus";
|
|
1397
|
-
}[];
|
|
1398
|
-
max?: string | number | null | undefined;
|
|
1399
|
-
fix?: string | number | undefined;
|
|
1400
|
-
}[];
|
|
1401
|
-
} | null | undefined;
|
|
1402
1378
|
pause?: boolean | undefined;
|
|
1403
|
-
|
|
1379
|
+
location?: string | undefined;
|
|
1380
|
+
owner_receive?: {
|
|
1381
|
+
received: {
|
|
1382
|
+
id: string;
|
|
1383
|
+
balance: string | number;
|
|
1384
|
+
payment: string;
|
|
1385
|
+
}[];
|
|
1386
|
+
balance: string | number;
|
|
1387
|
+
token_type: string;
|
|
1388
|
+
} | "recently" | {
|
|
1389
|
+
type: string;
|
|
1390
|
+
id: string;
|
|
1391
|
+
content_raw?: any;
|
|
1392
|
+
}[] | undefined;
|
|
1393
|
+
um?: string | null | undefined;
|
|
1394
|
+
repositories?: {
|
|
1395
|
+
op: "set" | "add";
|
|
1396
|
+
objects: string[];
|
|
1397
|
+
} | {
|
|
1398
|
+
op: "remove";
|
|
1399
|
+
objects: string[];
|
|
1400
|
+
} | {
|
|
1401
|
+
op: "clear";
|
|
1402
|
+
} | undefined;
|
|
1403
|
+
customer_required?: string[] | undefined;
|
|
1404
1404
|
order_new?: {
|
|
1405
1405
|
buy: {
|
|
1406
1406
|
items: {
|
|
@@ -1480,48 +1480,32 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1480
1480
|
} | undefined;
|
|
1481
1481
|
};
|
|
1482
1482
|
description?: string | undefined;
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
received: {
|
|
1486
|
-
id: string;
|
|
1487
|
-
balance: string | number;
|
|
1488
|
-
payment: string;
|
|
1489
|
-
}[];
|
|
1490
|
-
balance: string | number;
|
|
1491
|
-
token_type: string;
|
|
1492
|
-
} | "recently" | {
|
|
1493
|
-
type: string;
|
|
1494
|
-
id: string;
|
|
1495
|
-
content_raw?: any;
|
|
1496
|
-
}[] | undefined;
|
|
1497
|
-
rewards?: {
|
|
1498
|
-
op: "set" | "add";
|
|
1499
|
-
objects: string[];
|
|
1500
|
-
} | {
|
|
1501
|
-
op: "remove";
|
|
1502
|
-
objects: string[];
|
|
1503
|
-
} | {
|
|
1504
|
-
op: "clear";
|
|
1505
|
-
} | undefined;
|
|
1506
|
-
um?: string | null | undefined;
|
|
1507
|
-
discount?: {
|
|
1508
|
-
name: string;
|
|
1509
|
-
recipient: {
|
|
1510
|
-
entities: {
|
|
1511
|
-
name_or_address?: string | undefined;
|
|
1512
|
-
local_mark_first?: boolean | undefined;
|
|
1513
|
-
}[];
|
|
1514
|
-
check_all_founded?: boolean | undefined;
|
|
1515
|
-
};
|
|
1516
|
-
count: number;
|
|
1517
|
-
discount_type: import("@wowok/wowok").DiscountType;
|
|
1518
|
-
transferable: boolean;
|
|
1519
|
-
discount_value: string | number;
|
|
1520
|
-
time_ms_end: number;
|
|
1521
|
-
benchmark?: string | number | undefined;
|
|
1522
|
-
time_ms_start?: number | undefined;
|
|
1523
|
-
} | undefined;
|
|
1483
|
+
publish?: boolean | undefined;
|
|
1484
|
+
buy_guard?: string | null | undefined;
|
|
1524
1485
|
machine?: string | null | undefined;
|
|
1486
|
+
order_allocators?: {
|
|
1487
|
+
description: string;
|
|
1488
|
+
allocators: {
|
|
1489
|
+
guard: string;
|
|
1490
|
+
sharing: {
|
|
1491
|
+
sharing: string | number;
|
|
1492
|
+
who: {
|
|
1493
|
+
GuardIdentifier: number;
|
|
1494
|
+
} | {
|
|
1495
|
+
Entity: {
|
|
1496
|
+
name_or_address?: string | undefined;
|
|
1497
|
+
local_mark_first?: boolean | undefined;
|
|
1498
|
+
};
|
|
1499
|
+
} | {
|
|
1500
|
+
Signer: "signer";
|
|
1501
|
+
};
|
|
1502
|
+
mode: "Amount" | "Rate" | "Surplus";
|
|
1503
|
+
}[];
|
|
1504
|
+
max?: string | number | null | undefined;
|
|
1505
|
+
fix?: string | number | undefined;
|
|
1506
|
+
}[];
|
|
1507
|
+
threshold: string | number;
|
|
1508
|
+
} | null | undefined;
|
|
1525
1509
|
sales?: {
|
|
1526
1510
|
op: "add";
|
|
1527
1511
|
sales: {
|
|
@@ -1548,7 +1532,24 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1548
1532
|
} | {
|
|
1549
1533
|
op: "clear";
|
|
1550
1534
|
} | undefined;
|
|
1551
|
-
|
|
1535
|
+
discount?: {
|
|
1536
|
+
name: string;
|
|
1537
|
+
recipient: {
|
|
1538
|
+
entities: {
|
|
1539
|
+
name_or_address?: string | undefined;
|
|
1540
|
+
local_mark_first?: boolean | undefined;
|
|
1541
|
+
}[];
|
|
1542
|
+
check_all_founded?: boolean | undefined;
|
|
1543
|
+
};
|
|
1544
|
+
count: number;
|
|
1545
|
+
discount_type: import("@wowok/wowok").DiscountType;
|
|
1546
|
+
transferable: boolean;
|
|
1547
|
+
discount_value: string | number;
|
|
1548
|
+
time_ms_end: number;
|
|
1549
|
+
benchmark?: string | number | undefined;
|
|
1550
|
+
time_ms_start?: number | undefined;
|
|
1551
|
+
} | undefined;
|
|
1552
|
+
rewards?: {
|
|
1552
1553
|
op: "set" | "add";
|
|
1553
1554
|
objects: string[];
|
|
1554
1555
|
} | {
|
|
@@ -1557,8 +1558,6 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1557
1558
|
} | {
|
|
1558
1559
|
op: "clear";
|
|
1559
1560
|
} | undefined;
|
|
1560
|
-
buy_guard?: string | null | undefined;
|
|
1561
|
-
customer_required?: string[] | undefined;
|
|
1562
1561
|
arbitrations?: {
|
|
1563
1562
|
op: "set" | "add";
|
|
1564
1563
|
objects: string[];
|
|
@@ -1568,31 +1567,32 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1568
1567
|
} | {
|
|
1569
1568
|
op: "clear";
|
|
1570
1569
|
} | undefined;
|
|
1571
|
-
order_allocators?: {
|
|
1572
|
-
description: string;
|
|
1573
|
-
threshold: string | number;
|
|
1574
|
-
allocators: {
|
|
1575
|
-
guard: string;
|
|
1576
|
-
sharing: {
|
|
1577
|
-
who: {
|
|
1578
|
-
GuardIdentifier: number;
|
|
1579
|
-
} | {
|
|
1580
|
-
Entity: {
|
|
1581
|
-
name_or_address?: string | undefined;
|
|
1582
|
-
local_mark_first?: boolean | undefined;
|
|
1583
|
-
};
|
|
1584
|
-
} | {
|
|
1585
|
-
Signer: "signer";
|
|
1586
|
-
};
|
|
1587
|
-
sharing: string | number;
|
|
1588
|
-
mode: "Amount" | "Rate" | "Surplus";
|
|
1589
|
-
}[];
|
|
1590
|
-
max?: string | number | null | undefined;
|
|
1591
|
-
fix?: string | number | undefined;
|
|
1592
|
-
}[];
|
|
1593
|
-
} | null | undefined;
|
|
1594
1570
|
pause?: boolean | undefined;
|
|
1595
|
-
|
|
1571
|
+
location?: string | undefined;
|
|
1572
|
+
owner_receive?: {
|
|
1573
|
+
received: {
|
|
1574
|
+
id: string;
|
|
1575
|
+
balance: string | number;
|
|
1576
|
+
payment: string;
|
|
1577
|
+
}[];
|
|
1578
|
+
balance: string | number;
|
|
1579
|
+
token_type: string;
|
|
1580
|
+
} | "recently" | {
|
|
1581
|
+
type: string;
|
|
1582
|
+
id: string;
|
|
1583
|
+
content_raw?: any;
|
|
1584
|
+
}[] | undefined;
|
|
1585
|
+
um?: string | null | undefined;
|
|
1586
|
+
repositories?: {
|
|
1587
|
+
op: "set" | "add";
|
|
1588
|
+
objects: string[];
|
|
1589
|
+
} | {
|
|
1590
|
+
op: "remove";
|
|
1591
|
+
objects: string[];
|
|
1592
|
+
} | {
|
|
1593
|
+
op: "clear";
|
|
1594
|
+
} | undefined;
|
|
1595
|
+
customer_required?: string[] | undefined;
|
|
1596
1596
|
order_new?: {
|
|
1597
1597
|
buy: {
|
|
1598
1598
|
items: {
|
|
@@ -2245,6 +2245,7 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2245
2245
|
sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2246
2246
|
mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
|
|
2247
2247
|
}, "strip", z.ZodTypeAny, {
|
|
2248
|
+
sharing: string | number;
|
|
2248
2249
|
who: {
|
|
2249
2250
|
GuardIdentifier: number;
|
|
2250
2251
|
} | {
|
|
@@ -2255,9 +2256,9 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2255
2256
|
} | {
|
|
2256
2257
|
Signer: "signer";
|
|
2257
2258
|
};
|
|
2258
|
-
sharing: string | number;
|
|
2259
2259
|
mode: "Amount" | "Rate" | "Surplus";
|
|
2260
2260
|
}, {
|
|
2261
|
+
sharing: string | number;
|
|
2261
2262
|
who: {
|
|
2262
2263
|
GuardIdentifier: number;
|
|
2263
2264
|
} | {
|
|
@@ -2268,7 +2269,6 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2268
2269
|
} | {
|
|
2269
2270
|
Signer: "signer";
|
|
2270
2271
|
};
|
|
2271
|
-
sharing: string | number;
|
|
2272
2272
|
mode: "Amount" | "Rate" | "Surplus";
|
|
2273
2273
|
}>, "many">;
|
|
2274
2274
|
fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -2276,6 +2276,7 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2276
2276
|
}, "strip", z.ZodTypeAny, {
|
|
2277
2277
|
guard: string;
|
|
2278
2278
|
sharing: {
|
|
2279
|
+
sharing: string | number;
|
|
2279
2280
|
who: {
|
|
2280
2281
|
GuardIdentifier: number;
|
|
2281
2282
|
} | {
|
|
@@ -2286,7 +2287,6 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2286
2287
|
} | {
|
|
2287
2288
|
Signer: "signer";
|
|
2288
2289
|
};
|
|
2289
|
-
sharing: string | number;
|
|
2290
2290
|
mode: "Amount" | "Rate" | "Surplus";
|
|
2291
2291
|
}[];
|
|
2292
2292
|
max?: string | number | null | undefined;
|
|
@@ -2294,6 +2294,7 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2294
2294
|
}, {
|
|
2295
2295
|
guard: string;
|
|
2296
2296
|
sharing: {
|
|
2297
|
+
sharing: string | number;
|
|
2297
2298
|
who: {
|
|
2298
2299
|
GuardIdentifier: number;
|
|
2299
2300
|
} | {
|
|
@@ -2304,7 +2305,6 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2304
2305
|
} | {
|
|
2305
2306
|
Signer: "signer";
|
|
2306
2307
|
};
|
|
2307
|
-
sharing: string | number;
|
|
2308
2308
|
mode: "Amount" | "Rate" | "Surplus";
|
|
2309
2309
|
}[];
|
|
2310
2310
|
max?: string | number | null | undefined;
|
|
@@ -2312,10 +2312,10 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2312
2312
|
}>, "many">;
|
|
2313
2313
|
}, "strip", z.ZodTypeAny, {
|
|
2314
2314
|
description: string;
|
|
2315
|
-
threshold: string | number;
|
|
2316
2315
|
allocators: {
|
|
2317
2316
|
guard: string;
|
|
2318
2317
|
sharing: {
|
|
2318
|
+
sharing: string | number;
|
|
2319
2319
|
who: {
|
|
2320
2320
|
GuardIdentifier: number;
|
|
2321
2321
|
} | {
|
|
@@ -2326,18 +2326,18 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2326
2326
|
} | {
|
|
2327
2327
|
Signer: "signer";
|
|
2328
2328
|
};
|
|
2329
|
-
sharing: string | number;
|
|
2330
2329
|
mode: "Amount" | "Rate" | "Surplus";
|
|
2331
2330
|
}[];
|
|
2332
2331
|
max?: string | number | null | undefined;
|
|
2333
2332
|
fix?: string | number | undefined;
|
|
2334
2333
|
}[];
|
|
2334
|
+
threshold: string | number;
|
|
2335
2335
|
}, {
|
|
2336
2336
|
description: string;
|
|
2337
|
-
threshold: string | number;
|
|
2338
2337
|
allocators: {
|
|
2339
2338
|
guard: string;
|
|
2340
2339
|
sharing: {
|
|
2340
|
+
sharing: string | number;
|
|
2341
2341
|
who: {
|
|
2342
2342
|
GuardIdentifier: number;
|
|
2343
2343
|
} | {
|
|
@@ -2348,12 +2348,12 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2348
2348
|
} | {
|
|
2349
2349
|
Signer: "signer";
|
|
2350
2350
|
};
|
|
2351
|
-
sharing: string | number;
|
|
2352
2351
|
mode: "Amount" | "Rate" | "Surplus";
|
|
2353
2352
|
}[];
|
|
2354
2353
|
max?: string | number | null | undefined;
|
|
2355
2354
|
fix?: string | number | undefined;
|
|
2356
2355
|
}[];
|
|
2356
|
+
threshold: string | number;
|
|
2357
2357
|
}>, z.ZodNull]>>;
|
|
2358
2358
|
buy_guard: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
|
|
2359
2359
|
compensation_fund_add: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -2467,48 +2467,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2467
2467
|
} | undefined;
|
|
2468
2468
|
};
|
|
2469
2469
|
description?: string | undefined;
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
received: {
|
|
2473
|
-
id: string;
|
|
2474
|
-
balance: string | number;
|
|
2475
|
-
payment: string;
|
|
2476
|
-
}[];
|
|
2477
|
-
balance: string | number;
|
|
2478
|
-
token_type: string;
|
|
2479
|
-
} | "recently" | {
|
|
2480
|
-
type: string;
|
|
2481
|
-
id: string;
|
|
2482
|
-
content_raw?: any;
|
|
2483
|
-
}[] | undefined;
|
|
2484
|
-
rewards?: {
|
|
2485
|
-
op: "set" | "add";
|
|
2486
|
-
objects: string[];
|
|
2487
|
-
} | {
|
|
2488
|
-
op: "remove";
|
|
2489
|
-
objects: string[];
|
|
2490
|
-
} | {
|
|
2491
|
-
op: "clear";
|
|
2492
|
-
} | undefined;
|
|
2493
|
-
um?: string | null | undefined;
|
|
2494
|
-
discount?: {
|
|
2495
|
-
name: string;
|
|
2496
|
-
recipient: {
|
|
2497
|
-
entities: {
|
|
2498
|
-
name_or_address?: string | undefined;
|
|
2499
|
-
local_mark_first?: boolean | undefined;
|
|
2500
|
-
}[];
|
|
2501
|
-
check_all_founded?: boolean | undefined;
|
|
2502
|
-
};
|
|
2503
|
-
count: number;
|
|
2504
|
-
discount_type: import("@wowok/wowok").DiscountType;
|
|
2505
|
-
transferable: boolean;
|
|
2506
|
-
discount_value: string | number;
|
|
2507
|
-
time_ms_end: number;
|
|
2508
|
-
benchmark?: string | number | undefined;
|
|
2509
|
-
time_ms_start?: number | undefined;
|
|
2510
|
-
} | undefined;
|
|
2470
|
+
publish?: boolean | undefined;
|
|
2471
|
+
buy_guard?: string | null | undefined;
|
|
2511
2472
|
machine?: string | null | undefined;
|
|
2473
|
+
order_allocators?: {
|
|
2474
|
+
description: string;
|
|
2475
|
+
allocators: {
|
|
2476
|
+
guard: string;
|
|
2477
|
+
sharing: {
|
|
2478
|
+
sharing: string | number;
|
|
2479
|
+
who: {
|
|
2480
|
+
GuardIdentifier: number;
|
|
2481
|
+
} | {
|
|
2482
|
+
Entity: {
|
|
2483
|
+
name_or_address?: string | undefined;
|
|
2484
|
+
local_mark_first?: boolean | undefined;
|
|
2485
|
+
};
|
|
2486
|
+
} | {
|
|
2487
|
+
Signer: "signer";
|
|
2488
|
+
};
|
|
2489
|
+
mode: "Amount" | "Rate" | "Surplus";
|
|
2490
|
+
}[];
|
|
2491
|
+
max?: string | number | null | undefined;
|
|
2492
|
+
fix?: string | number | undefined;
|
|
2493
|
+
}[];
|
|
2494
|
+
threshold: string | number;
|
|
2495
|
+
} | null | undefined;
|
|
2512
2496
|
sales?: {
|
|
2513
2497
|
op: "add";
|
|
2514
2498
|
sales: {
|
|
@@ -2535,7 +2519,24 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2535
2519
|
} | {
|
|
2536
2520
|
op: "clear";
|
|
2537
2521
|
} | undefined;
|
|
2538
|
-
|
|
2522
|
+
discount?: {
|
|
2523
|
+
name: string;
|
|
2524
|
+
recipient: {
|
|
2525
|
+
entities: {
|
|
2526
|
+
name_or_address?: string | undefined;
|
|
2527
|
+
local_mark_first?: boolean | undefined;
|
|
2528
|
+
}[];
|
|
2529
|
+
check_all_founded?: boolean | undefined;
|
|
2530
|
+
};
|
|
2531
|
+
count: number;
|
|
2532
|
+
discount_type: import("@wowok/wowok").DiscountType;
|
|
2533
|
+
transferable: boolean;
|
|
2534
|
+
discount_value: string | number;
|
|
2535
|
+
time_ms_end: number;
|
|
2536
|
+
benchmark?: string | number | undefined;
|
|
2537
|
+
time_ms_start?: number | undefined;
|
|
2538
|
+
} | undefined;
|
|
2539
|
+
rewards?: {
|
|
2539
2540
|
op: "set" | "add";
|
|
2540
2541
|
objects: string[];
|
|
2541
2542
|
} | {
|
|
@@ -2544,8 +2545,6 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2544
2545
|
} | {
|
|
2545
2546
|
op: "clear";
|
|
2546
2547
|
} | undefined;
|
|
2547
|
-
buy_guard?: string | null | undefined;
|
|
2548
|
-
customer_required?: string[] | undefined;
|
|
2549
2548
|
arbitrations?: {
|
|
2550
2549
|
op: "set" | "add";
|
|
2551
2550
|
objects: string[];
|
|
@@ -2555,31 +2554,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2555
2554
|
} | {
|
|
2556
2555
|
op: "clear";
|
|
2557
2556
|
} | undefined;
|
|
2558
|
-
order_allocators?: {
|
|
2559
|
-
description: string;
|
|
2560
|
-
threshold: string | number;
|
|
2561
|
-
allocators: {
|
|
2562
|
-
guard: string;
|
|
2563
|
-
sharing: {
|
|
2564
|
-
who: {
|
|
2565
|
-
GuardIdentifier: number;
|
|
2566
|
-
} | {
|
|
2567
|
-
Entity: {
|
|
2568
|
-
name_or_address?: string | undefined;
|
|
2569
|
-
local_mark_first?: boolean | undefined;
|
|
2570
|
-
};
|
|
2571
|
-
} | {
|
|
2572
|
-
Signer: "signer";
|
|
2573
|
-
};
|
|
2574
|
-
sharing: string | number;
|
|
2575
|
-
mode: "Amount" | "Rate" | "Surplus";
|
|
2576
|
-
}[];
|
|
2577
|
-
max?: string | number | null | undefined;
|
|
2578
|
-
fix?: string | number | undefined;
|
|
2579
|
-
}[];
|
|
2580
|
-
} | null | undefined;
|
|
2581
2557
|
pause?: boolean | undefined;
|
|
2582
|
-
|
|
2558
|
+
location?: string | undefined;
|
|
2559
|
+
owner_receive?: {
|
|
2560
|
+
received: {
|
|
2561
|
+
id: string;
|
|
2562
|
+
balance: string | number;
|
|
2563
|
+
payment: string;
|
|
2564
|
+
}[];
|
|
2565
|
+
balance: string | number;
|
|
2566
|
+
token_type: string;
|
|
2567
|
+
} | "recently" | {
|
|
2568
|
+
type: string;
|
|
2569
|
+
id: string;
|
|
2570
|
+
content_raw?: any;
|
|
2571
|
+
}[] | undefined;
|
|
2572
|
+
um?: string | null | undefined;
|
|
2573
|
+
repositories?: {
|
|
2574
|
+
op: "set" | "add";
|
|
2575
|
+
objects: string[];
|
|
2576
|
+
} | {
|
|
2577
|
+
op: "remove";
|
|
2578
|
+
objects: string[];
|
|
2579
|
+
} | {
|
|
2580
|
+
op: "clear";
|
|
2581
|
+
} | undefined;
|
|
2582
|
+
customer_required?: string[] | undefined;
|
|
2583
2583
|
order_new?: {
|
|
2584
2584
|
buy: {
|
|
2585
2585
|
items: {
|
|
@@ -2659,48 +2659,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2659
2659
|
} | undefined;
|
|
2660
2660
|
};
|
|
2661
2661
|
description?: string | undefined;
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
received: {
|
|
2665
|
-
id: string;
|
|
2666
|
-
balance: string | number;
|
|
2667
|
-
payment: string;
|
|
2668
|
-
}[];
|
|
2669
|
-
balance: string | number;
|
|
2670
|
-
token_type: string;
|
|
2671
|
-
} | "recently" | {
|
|
2672
|
-
type: string;
|
|
2673
|
-
id: string;
|
|
2674
|
-
content_raw?: any;
|
|
2675
|
-
}[] | undefined;
|
|
2676
|
-
rewards?: {
|
|
2677
|
-
op: "set" | "add";
|
|
2678
|
-
objects: string[];
|
|
2679
|
-
} | {
|
|
2680
|
-
op: "remove";
|
|
2681
|
-
objects: string[];
|
|
2682
|
-
} | {
|
|
2683
|
-
op: "clear";
|
|
2684
|
-
} | undefined;
|
|
2685
|
-
um?: string | null | undefined;
|
|
2686
|
-
discount?: {
|
|
2687
|
-
name: string;
|
|
2688
|
-
recipient: {
|
|
2689
|
-
entities: {
|
|
2690
|
-
name_or_address?: string | undefined;
|
|
2691
|
-
local_mark_first?: boolean | undefined;
|
|
2692
|
-
}[];
|
|
2693
|
-
check_all_founded?: boolean | undefined;
|
|
2694
|
-
};
|
|
2695
|
-
count: number;
|
|
2696
|
-
discount_type: import("@wowok/wowok").DiscountType;
|
|
2697
|
-
transferable: boolean;
|
|
2698
|
-
discount_value: string | number;
|
|
2699
|
-
time_ms_end: number;
|
|
2700
|
-
benchmark?: string | number | undefined;
|
|
2701
|
-
time_ms_start?: number | undefined;
|
|
2702
|
-
} | undefined;
|
|
2662
|
+
publish?: boolean | undefined;
|
|
2663
|
+
buy_guard?: string | null | undefined;
|
|
2703
2664
|
machine?: string | null | undefined;
|
|
2665
|
+
order_allocators?: {
|
|
2666
|
+
description: string;
|
|
2667
|
+
allocators: {
|
|
2668
|
+
guard: string;
|
|
2669
|
+
sharing: {
|
|
2670
|
+
sharing: string | number;
|
|
2671
|
+
who: {
|
|
2672
|
+
GuardIdentifier: number;
|
|
2673
|
+
} | {
|
|
2674
|
+
Entity: {
|
|
2675
|
+
name_or_address?: string | undefined;
|
|
2676
|
+
local_mark_first?: boolean | undefined;
|
|
2677
|
+
};
|
|
2678
|
+
} | {
|
|
2679
|
+
Signer: "signer";
|
|
2680
|
+
};
|
|
2681
|
+
mode: "Amount" | "Rate" | "Surplus";
|
|
2682
|
+
}[];
|
|
2683
|
+
max?: string | number | null | undefined;
|
|
2684
|
+
fix?: string | number | undefined;
|
|
2685
|
+
}[];
|
|
2686
|
+
threshold: string | number;
|
|
2687
|
+
} | null | undefined;
|
|
2704
2688
|
sales?: {
|
|
2705
2689
|
op: "add";
|
|
2706
2690
|
sales: {
|
|
@@ -2727,17 +2711,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2727
2711
|
} | {
|
|
2728
2712
|
op: "clear";
|
|
2729
2713
|
} | undefined;
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2714
|
+
discount?: {
|
|
2715
|
+
name: string;
|
|
2716
|
+
recipient: {
|
|
2717
|
+
entities: {
|
|
2718
|
+
name_or_address?: string | undefined;
|
|
2719
|
+
local_mark_first?: boolean | undefined;
|
|
2720
|
+
}[];
|
|
2721
|
+
check_all_founded?: boolean | undefined;
|
|
2722
|
+
};
|
|
2723
|
+
count: number;
|
|
2724
|
+
discount_type: import("@wowok/wowok").DiscountType;
|
|
2725
|
+
transferable: boolean;
|
|
2726
|
+
discount_value: string | number;
|
|
2727
|
+
time_ms_end: number;
|
|
2728
|
+
benchmark?: string | number | undefined;
|
|
2729
|
+
time_ms_start?: number | undefined;
|
|
2730
|
+
} | undefined;
|
|
2731
|
+
rewards?: {
|
|
2732
|
+
op: "set" | "add";
|
|
2733
|
+
objects: string[];
|
|
2734
|
+
} | {
|
|
2735
|
+
op: "remove";
|
|
2736
|
+
objects: string[];
|
|
2736
2737
|
} | {
|
|
2737
2738
|
op: "clear";
|
|
2738
2739
|
} | undefined;
|
|
2739
|
-
buy_guard?: string | null | undefined;
|
|
2740
|
-
customer_required?: string[] | undefined;
|
|
2741
2740
|
arbitrations?: {
|
|
2742
2741
|
op: "set" | "add";
|
|
2743
2742
|
objects: string[];
|
|
@@ -2747,31 +2746,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2747
2746
|
} | {
|
|
2748
2747
|
op: "clear";
|
|
2749
2748
|
} | undefined;
|
|
2750
|
-
order_allocators?: {
|
|
2751
|
-
description: string;
|
|
2752
|
-
threshold: string | number;
|
|
2753
|
-
allocators: {
|
|
2754
|
-
guard: string;
|
|
2755
|
-
sharing: {
|
|
2756
|
-
who: {
|
|
2757
|
-
GuardIdentifier: number;
|
|
2758
|
-
} | {
|
|
2759
|
-
Entity: {
|
|
2760
|
-
name_or_address?: string | undefined;
|
|
2761
|
-
local_mark_first?: boolean | undefined;
|
|
2762
|
-
};
|
|
2763
|
-
} | {
|
|
2764
|
-
Signer: "signer";
|
|
2765
|
-
};
|
|
2766
|
-
sharing: string | number;
|
|
2767
|
-
mode: "Amount" | "Rate" | "Surplus";
|
|
2768
|
-
}[];
|
|
2769
|
-
max?: string | number | null | undefined;
|
|
2770
|
-
fix?: string | number | undefined;
|
|
2771
|
-
}[];
|
|
2772
|
-
} | null | undefined;
|
|
2773
2749
|
pause?: boolean | undefined;
|
|
2774
|
-
|
|
2750
|
+
location?: string | undefined;
|
|
2751
|
+
owner_receive?: {
|
|
2752
|
+
received: {
|
|
2753
|
+
id: string;
|
|
2754
|
+
balance: string | number;
|
|
2755
|
+
payment: string;
|
|
2756
|
+
}[];
|
|
2757
|
+
balance: string | number;
|
|
2758
|
+
token_type: string;
|
|
2759
|
+
} | "recently" | {
|
|
2760
|
+
type: string;
|
|
2761
|
+
id: string;
|
|
2762
|
+
content_raw?: any;
|
|
2763
|
+
}[] | undefined;
|
|
2764
|
+
um?: string | null | undefined;
|
|
2765
|
+
repositories?: {
|
|
2766
|
+
op: "set" | "add";
|
|
2767
|
+
objects: string[];
|
|
2768
|
+
} | {
|
|
2769
|
+
op: "remove";
|
|
2770
|
+
objects: string[];
|
|
2771
|
+
} | {
|
|
2772
|
+
op: "clear";
|
|
2773
|
+
} | undefined;
|
|
2774
|
+
customer_required?: string[] | undefined;
|
|
2775
2775
|
order_new?: {
|
|
2776
2776
|
buy: {
|
|
2777
2777
|
items: {
|
|
@@ -2842,18 +2842,27 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2842
2842
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
2843
2843
|
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
|
|
2844
2844
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2845
|
+
confirmed: z.ZodOptional<z.ZodBoolean>;
|
|
2846
|
+
user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2847
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2845
2848
|
}, "strict", z.ZodTypeAny, {
|
|
2846
2849
|
account: string;
|
|
2847
2850
|
no_cache?: boolean | undefined;
|
|
2848
2851
|
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
2849
2852
|
permission_guard?: string[] | undefined;
|
|
2850
2853
|
referrer?: string | undefined;
|
|
2854
|
+
confirmed?: boolean | undefined;
|
|
2855
|
+
user_intent_phrases?: string[] | undefined;
|
|
2856
|
+
project?: string | undefined;
|
|
2851
2857
|
}, {
|
|
2852
2858
|
no_cache?: boolean | undefined;
|
|
2853
2859
|
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
2854
2860
|
account?: string | undefined;
|
|
2855
2861
|
permission_guard?: string[] | undefined;
|
|
2856
2862
|
referrer?: string | undefined;
|
|
2863
|
+
confirmed?: boolean | undefined;
|
|
2864
|
+
user_intent_phrases?: string[] | undefined;
|
|
2865
|
+
project?: string | undefined;
|
|
2857
2866
|
}>>;
|
|
2858
2867
|
submission: z.ZodOptional<z.ZodObject<{
|
|
2859
2868
|
type: z.ZodLiteral<"submission">;
|
|
@@ -3052,48 +3061,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3052
3061
|
} | undefined;
|
|
3053
3062
|
};
|
|
3054
3063
|
description?: string | undefined;
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
received: {
|
|
3058
|
-
id: string;
|
|
3059
|
-
balance: string | number;
|
|
3060
|
-
payment: string;
|
|
3061
|
-
}[];
|
|
3062
|
-
balance: string | number;
|
|
3063
|
-
token_type: string;
|
|
3064
|
-
} | "recently" | {
|
|
3065
|
-
type: string;
|
|
3066
|
-
id: string;
|
|
3067
|
-
content_raw?: any;
|
|
3068
|
-
}[] | undefined;
|
|
3069
|
-
rewards?: {
|
|
3070
|
-
op: "set" | "add";
|
|
3071
|
-
objects: string[];
|
|
3072
|
-
} | {
|
|
3073
|
-
op: "remove";
|
|
3074
|
-
objects: string[];
|
|
3075
|
-
} | {
|
|
3076
|
-
op: "clear";
|
|
3077
|
-
} | undefined;
|
|
3078
|
-
um?: string | null | undefined;
|
|
3079
|
-
discount?: {
|
|
3080
|
-
name: string;
|
|
3081
|
-
recipient: {
|
|
3082
|
-
entities: {
|
|
3083
|
-
name_or_address?: string | undefined;
|
|
3084
|
-
local_mark_first?: boolean | undefined;
|
|
3085
|
-
}[];
|
|
3086
|
-
check_all_founded?: boolean | undefined;
|
|
3087
|
-
};
|
|
3088
|
-
count: number;
|
|
3089
|
-
discount_type: import("@wowok/wowok").DiscountType;
|
|
3090
|
-
transferable: boolean;
|
|
3091
|
-
discount_value: string | number;
|
|
3092
|
-
time_ms_end: number;
|
|
3093
|
-
benchmark?: string | number | undefined;
|
|
3094
|
-
time_ms_start?: number | undefined;
|
|
3095
|
-
} | undefined;
|
|
3064
|
+
publish?: boolean | undefined;
|
|
3065
|
+
buy_guard?: string | null | undefined;
|
|
3096
3066
|
machine?: string | null | undefined;
|
|
3067
|
+
order_allocators?: {
|
|
3068
|
+
description: string;
|
|
3069
|
+
allocators: {
|
|
3070
|
+
guard: string;
|
|
3071
|
+
sharing: {
|
|
3072
|
+
sharing: string | number;
|
|
3073
|
+
who: {
|
|
3074
|
+
GuardIdentifier: number;
|
|
3075
|
+
} | {
|
|
3076
|
+
Entity: {
|
|
3077
|
+
name_or_address?: string | undefined;
|
|
3078
|
+
local_mark_first?: boolean | undefined;
|
|
3079
|
+
};
|
|
3080
|
+
} | {
|
|
3081
|
+
Signer: "signer";
|
|
3082
|
+
};
|
|
3083
|
+
mode: "Amount" | "Rate" | "Surplus";
|
|
3084
|
+
}[];
|
|
3085
|
+
max?: string | number | null | undefined;
|
|
3086
|
+
fix?: string | number | undefined;
|
|
3087
|
+
}[];
|
|
3088
|
+
threshold: string | number;
|
|
3089
|
+
} | null | undefined;
|
|
3097
3090
|
sales?: {
|
|
3098
3091
|
op: "add";
|
|
3099
3092
|
sales: {
|
|
@@ -3120,7 +3113,24 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3120
3113
|
} | {
|
|
3121
3114
|
op: "clear";
|
|
3122
3115
|
} | undefined;
|
|
3123
|
-
|
|
3116
|
+
discount?: {
|
|
3117
|
+
name: string;
|
|
3118
|
+
recipient: {
|
|
3119
|
+
entities: {
|
|
3120
|
+
name_or_address?: string | undefined;
|
|
3121
|
+
local_mark_first?: boolean | undefined;
|
|
3122
|
+
}[];
|
|
3123
|
+
check_all_founded?: boolean | undefined;
|
|
3124
|
+
};
|
|
3125
|
+
count: number;
|
|
3126
|
+
discount_type: import("@wowok/wowok").DiscountType;
|
|
3127
|
+
transferable: boolean;
|
|
3128
|
+
discount_value: string | number;
|
|
3129
|
+
time_ms_end: number;
|
|
3130
|
+
benchmark?: string | number | undefined;
|
|
3131
|
+
time_ms_start?: number | undefined;
|
|
3132
|
+
} | undefined;
|
|
3133
|
+
rewards?: {
|
|
3124
3134
|
op: "set" | "add";
|
|
3125
3135
|
objects: string[];
|
|
3126
3136
|
} | {
|
|
@@ -3129,8 +3139,6 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3129
3139
|
} | {
|
|
3130
3140
|
op: "clear";
|
|
3131
3141
|
} | undefined;
|
|
3132
|
-
buy_guard?: string | null | undefined;
|
|
3133
|
-
customer_required?: string[] | undefined;
|
|
3134
3142
|
arbitrations?: {
|
|
3135
3143
|
op: "set" | "add";
|
|
3136
3144
|
objects: string[];
|
|
@@ -3140,31 +3148,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3140
3148
|
} | {
|
|
3141
3149
|
op: "clear";
|
|
3142
3150
|
} | undefined;
|
|
3143
|
-
order_allocators?: {
|
|
3144
|
-
description: string;
|
|
3145
|
-
threshold: string | number;
|
|
3146
|
-
allocators: {
|
|
3147
|
-
guard: string;
|
|
3148
|
-
sharing: {
|
|
3149
|
-
who: {
|
|
3150
|
-
GuardIdentifier: number;
|
|
3151
|
-
} | {
|
|
3152
|
-
Entity: {
|
|
3153
|
-
name_or_address?: string | undefined;
|
|
3154
|
-
local_mark_first?: boolean | undefined;
|
|
3155
|
-
};
|
|
3156
|
-
} | {
|
|
3157
|
-
Signer: "signer";
|
|
3158
|
-
};
|
|
3159
|
-
sharing: string | number;
|
|
3160
|
-
mode: "Amount" | "Rate" | "Surplus";
|
|
3161
|
-
}[];
|
|
3162
|
-
max?: string | number | null | undefined;
|
|
3163
|
-
fix?: string | number | undefined;
|
|
3164
|
-
}[];
|
|
3165
|
-
} | null | undefined;
|
|
3166
3151
|
pause?: boolean | undefined;
|
|
3167
|
-
|
|
3152
|
+
location?: string | undefined;
|
|
3153
|
+
owner_receive?: {
|
|
3154
|
+
received: {
|
|
3155
|
+
id: string;
|
|
3156
|
+
balance: string | number;
|
|
3157
|
+
payment: string;
|
|
3158
|
+
}[];
|
|
3159
|
+
balance: string | number;
|
|
3160
|
+
token_type: string;
|
|
3161
|
+
} | "recently" | {
|
|
3162
|
+
type: string;
|
|
3163
|
+
id: string;
|
|
3164
|
+
content_raw?: any;
|
|
3165
|
+
}[] | undefined;
|
|
3166
|
+
um?: string | null | undefined;
|
|
3167
|
+
repositories?: {
|
|
3168
|
+
op: "set" | "add";
|
|
3169
|
+
objects: string[];
|
|
3170
|
+
} | {
|
|
3171
|
+
op: "remove";
|
|
3172
|
+
objects: string[];
|
|
3173
|
+
} | {
|
|
3174
|
+
op: "clear";
|
|
3175
|
+
} | undefined;
|
|
3176
|
+
customer_required?: string[] | undefined;
|
|
3168
3177
|
order_new?: {
|
|
3169
3178
|
buy: {
|
|
3170
3179
|
items: {
|
|
@@ -3262,6 +3271,9 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3262
3271
|
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
3263
3272
|
permission_guard?: string[] | undefined;
|
|
3264
3273
|
referrer?: string | undefined;
|
|
3274
|
+
confirmed?: boolean | undefined;
|
|
3275
|
+
user_intent_phrases?: string[] | undefined;
|
|
3276
|
+
project?: string | undefined;
|
|
3265
3277
|
} | undefined;
|
|
3266
3278
|
}, {
|
|
3267
3279
|
data: {
|
|
@@ -3280,48 +3292,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3280
3292
|
} | undefined;
|
|
3281
3293
|
};
|
|
3282
3294
|
description?: string | undefined;
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
received: {
|
|
3286
|
-
id: string;
|
|
3287
|
-
balance: string | number;
|
|
3288
|
-
payment: string;
|
|
3289
|
-
}[];
|
|
3290
|
-
balance: string | number;
|
|
3291
|
-
token_type: string;
|
|
3292
|
-
} | "recently" | {
|
|
3293
|
-
type: string;
|
|
3294
|
-
id: string;
|
|
3295
|
-
content_raw?: any;
|
|
3296
|
-
}[] | undefined;
|
|
3297
|
-
rewards?: {
|
|
3298
|
-
op: "set" | "add";
|
|
3299
|
-
objects: string[];
|
|
3300
|
-
} | {
|
|
3301
|
-
op: "remove";
|
|
3302
|
-
objects: string[];
|
|
3303
|
-
} | {
|
|
3304
|
-
op: "clear";
|
|
3305
|
-
} | undefined;
|
|
3306
|
-
um?: string | null | undefined;
|
|
3307
|
-
discount?: {
|
|
3308
|
-
name: string;
|
|
3309
|
-
recipient: {
|
|
3310
|
-
entities: {
|
|
3311
|
-
name_or_address?: string | undefined;
|
|
3312
|
-
local_mark_first?: boolean | undefined;
|
|
3313
|
-
}[];
|
|
3314
|
-
check_all_founded?: boolean | undefined;
|
|
3315
|
-
};
|
|
3316
|
-
count: number;
|
|
3317
|
-
discount_type: import("@wowok/wowok").DiscountType;
|
|
3318
|
-
transferable: boolean;
|
|
3319
|
-
discount_value: string | number;
|
|
3320
|
-
time_ms_end: number;
|
|
3321
|
-
benchmark?: string | number | undefined;
|
|
3322
|
-
time_ms_start?: number | undefined;
|
|
3323
|
-
} | undefined;
|
|
3295
|
+
publish?: boolean | undefined;
|
|
3296
|
+
buy_guard?: string | null | undefined;
|
|
3324
3297
|
machine?: string | null | undefined;
|
|
3298
|
+
order_allocators?: {
|
|
3299
|
+
description: string;
|
|
3300
|
+
allocators: {
|
|
3301
|
+
guard: string;
|
|
3302
|
+
sharing: {
|
|
3303
|
+
sharing: string | number;
|
|
3304
|
+
who: {
|
|
3305
|
+
GuardIdentifier: number;
|
|
3306
|
+
} | {
|
|
3307
|
+
Entity: {
|
|
3308
|
+
name_or_address?: string | undefined;
|
|
3309
|
+
local_mark_first?: boolean | undefined;
|
|
3310
|
+
};
|
|
3311
|
+
} | {
|
|
3312
|
+
Signer: "signer";
|
|
3313
|
+
};
|
|
3314
|
+
mode: "Amount" | "Rate" | "Surplus";
|
|
3315
|
+
}[];
|
|
3316
|
+
max?: string | number | null | undefined;
|
|
3317
|
+
fix?: string | number | undefined;
|
|
3318
|
+
}[];
|
|
3319
|
+
threshold: string | number;
|
|
3320
|
+
} | null | undefined;
|
|
3325
3321
|
sales?: {
|
|
3326
3322
|
op: "add";
|
|
3327
3323
|
sales: {
|
|
@@ -3348,7 +3344,24 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3348
3344
|
} | {
|
|
3349
3345
|
op: "clear";
|
|
3350
3346
|
} | undefined;
|
|
3351
|
-
|
|
3347
|
+
discount?: {
|
|
3348
|
+
name: string;
|
|
3349
|
+
recipient: {
|
|
3350
|
+
entities: {
|
|
3351
|
+
name_or_address?: string | undefined;
|
|
3352
|
+
local_mark_first?: boolean | undefined;
|
|
3353
|
+
}[];
|
|
3354
|
+
check_all_founded?: boolean | undefined;
|
|
3355
|
+
};
|
|
3356
|
+
count: number;
|
|
3357
|
+
discount_type: import("@wowok/wowok").DiscountType;
|
|
3358
|
+
transferable: boolean;
|
|
3359
|
+
discount_value: string | number;
|
|
3360
|
+
time_ms_end: number;
|
|
3361
|
+
benchmark?: string | number | undefined;
|
|
3362
|
+
time_ms_start?: number | undefined;
|
|
3363
|
+
} | undefined;
|
|
3364
|
+
rewards?: {
|
|
3352
3365
|
op: "set" | "add";
|
|
3353
3366
|
objects: string[];
|
|
3354
3367
|
} | {
|
|
@@ -3357,8 +3370,6 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3357
3370
|
} | {
|
|
3358
3371
|
op: "clear";
|
|
3359
3372
|
} | undefined;
|
|
3360
|
-
buy_guard?: string | null | undefined;
|
|
3361
|
-
customer_required?: string[] | undefined;
|
|
3362
3373
|
arbitrations?: {
|
|
3363
3374
|
op: "set" | "add";
|
|
3364
3375
|
objects: string[];
|
|
@@ -3368,31 +3379,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3368
3379
|
} | {
|
|
3369
3380
|
op: "clear";
|
|
3370
3381
|
} | undefined;
|
|
3371
|
-
order_allocators?: {
|
|
3372
|
-
description: string;
|
|
3373
|
-
threshold: string | number;
|
|
3374
|
-
allocators: {
|
|
3375
|
-
guard: string;
|
|
3376
|
-
sharing: {
|
|
3377
|
-
who: {
|
|
3378
|
-
GuardIdentifier: number;
|
|
3379
|
-
} | {
|
|
3380
|
-
Entity: {
|
|
3381
|
-
name_or_address?: string | undefined;
|
|
3382
|
-
local_mark_first?: boolean | undefined;
|
|
3383
|
-
};
|
|
3384
|
-
} | {
|
|
3385
|
-
Signer: "signer";
|
|
3386
|
-
};
|
|
3387
|
-
sharing: string | number;
|
|
3388
|
-
mode: "Amount" | "Rate" | "Surplus";
|
|
3389
|
-
}[];
|
|
3390
|
-
max?: string | number | null | undefined;
|
|
3391
|
-
fix?: string | number | undefined;
|
|
3392
|
-
}[];
|
|
3393
|
-
} | null | undefined;
|
|
3394
3382
|
pause?: boolean | undefined;
|
|
3395
|
-
|
|
3383
|
+
location?: string | undefined;
|
|
3384
|
+
owner_receive?: {
|
|
3385
|
+
received: {
|
|
3386
|
+
id: string;
|
|
3387
|
+
balance: string | number;
|
|
3388
|
+
payment: string;
|
|
3389
|
+
}[];
|
|
3390
|
+
balance: string | number;
|
|
3391
|
+
token_type: string;
|
|
3392
|
+
} | "recently" | {
|
|
3393
|
+
type: string;
|
|
3394
|
+
id: string;
|
|
3395
|
+
content_raw?: any;
|
|
3396
|
+
}[] | undefined;
|
|
3397
|
+
um?: string | null | undefined;
|
|
3398
|
+
repositories?: {
|
|
3399
|
+
op: "set" | "add";
|
|
3400
|
+
objects: string[];
|
|
3401
|
+
} | {
|
|
3402
|
+
op: "remove";
|
|
3403
|
+
objects: string[];
|
|
3404
|
+
} | {
|
|
3405
|
+
op: "clear";
|
|
3406
|
+
} | undefined;
|
|
3407
|
+
customer_required?: string[] | undefined;
|
|
3396
3408
|
order_new?: {
|
|
3397
3409
|
buy: {
|
|
3398
3410
|
items: {
|
|
@@ -3490,5 +3502,8 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3490
3502
|
account?: string | undefined;
|
|
3491
3503
|
permission_guard?: string[] | undefined;
|
|
3492
3504
|
referrer?: string | undefined;
|
|
3505
|
+
confirmed?: boolean | undefined;
|
|
3506
|
+
user_intent_phrases?: string[] | undefined;
|
|
3507
|
+
project?: string | undefined;
|
|
3493
3508
|
} | undefined;
|
|
3494
3509
|
}>;
|