@wowok/agent-mcp 2.3.14 → 2.3.18

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.
Files changed (189) hide show
  1. package/dist/config/index.d.ts +1 -0
  2. package/dist/config/index.js +1 -0
  3. package/dist/config/runtime.d.ts +26 -0
  4. package/dist/config/runtime.js +217 -0
  5. package/dist/customer/index.d.ts +9 -0
  6. package/dist/customer/index.js +9 -0
  7. package/dist/customer/industry-risks.d.ts +40 -0
  8. package/dist/customer/industry-risks.js +438 -0
  9. package/dist/customer/info-puzzle.d.ts +102 -0
  10. package/dist/customer/info-puzzle.js +312 -0
  11. package/dist/customer/order-monitor.d.ts +75 -0
  12. package/dist/customer/order-monitor.js +327 -0
  13. package/dist/customer/order-strategy.d.ts +36 -0
  14. package/dist/customer/order-strategy.js +373 -0
  15. package/dist/customer/post-purchase.d.ts +42 -0
  16. package/dist/customer/post-purchase.js +350 -0
  17. package/dist/customer/reminder-system.d.ts +42 -0
  18. package/dist/customer/reminder-system.js +295 -0
  19. package/dist/customer/risk-assessment.d.ts +8 -0
  20. package/dist/customer/risk-assessment.js +337 -0
  21. package/dist/customer/types.d.ts +193 -0
  22. package/dist/customer/types.js +13 -0
  23. package/dist/customer/user-preferences.d.ts +70 -0
  24. package/dist/customer/user-preferences.js +460 -0
  25. package/dist/experience/experience-reuse.d.ts +10 -0
  26. package/dist/experience/experience-reuse.js +103 -0
  27. package/dist/experience/index.d.ts +6 -0
  28. package/dist/experience/index.js +5 -0
  29. package/dist/experience/intent-distill.d.ts +3 -0
  30. package/dist/experience/intent-distill.js +83 -0
  31. package/dist/experience/realtime-feedback.d.ts +5 -0
  32. package/dist/experience/realtime-feedback.js +94 -0
  33. package/dist/experience/types.d.ts +50 -0
  34. package/dist/experience/types.js +1 -0
  35. package/dist/experience/user-profile.d.ts +25 -0
  36. package/dist/experience/user-profile.js +171 -0
  37. package/dist/index.js +842 -371
  38. package/dist/knowledge/acquisition-flywheel.d.ts +53 -0
  39. package/dist/knowledge/acquisition-flywheel.js +192 -0
  40. package/dist/knowledge/arbitration-trust.d.ts +24 -0
  41. package/dist/knowledge/arbitration-trust.js +117 -0
  42. package/dist/knowledge/audit-rules.d.ts +28 -0
  43. package/dist/knowledge/audit-rules.js +141 -0
  44. package/dist/knowledge/demand-matching.d.ts +29 -0
  45. package/dist/knowledge/demand-matching.js +132 -0
  46. package/dist/knowledge/dynamic-pricing.d.ts +31 -0
  47. package/dist/knowledge/dynamic-pricing.js +87 -0
  48. package/dist/knowledge/flywheel-loop.d.ts +87 -0
  49. package/dist/knowledge/flywheel-loop.js +378 -0
  50. package/dist/knowledge/glossary.d.ts +18 -0
  51. package/dist/knowledge/glossary.js +209 -0
  52. package/dist/knowledge/guard-ledger.d.ts +19 -0
  53. package/dist/knowledge/guard-ledger.js +219 -0
  54. package/dist/knowledge/guard-puzzle.d.ts +93 -0
  55. package/dist/knowledge/guard-puzzle.js +278 -0
  56. package/dist/knowledge/guard-risk.d.ts +60 -0
  57. package/dist/knowledge/guard-risk.js +474 -0
  58. package/dist/knowledge/guard-translation.d.ts +46 -0
  59. package/dist/knowledge/guard-translation.js +487 -0
  60. package/dist/knowledge/index.d.ts +77 -0
  61. package/dist/knowledge/index.js +79 -0
  62. package/dist/knowledge/industry-evolution.d.ts +82 -0
  63. package/dist/knowledge/industry-evolution.js +323 -0
  64. package/dist/knowledge/industry-generalizer.d.ts +17 -0
  65. package/dist/knowledge/industry-generalizer.js +381 -0
  66. package/dist/knowledge/industry-registry.d.ts +48 -0
  67. package/dist/knowledge/industry-registry.js +187 -0
  68. package/dist/knowledge/intent-metrics.d.ts +42 -0
  69. package/dist/knowledge/intent-metrics.js +566 -0
  70. package/dist/knowledge/process-model.d.ts +24 -0
  71. package/dist/knowledge/process-model.js +160 -0
  72. package/dist/knowledge/reputation-rules.d.ts +42 -0
  73. package/dist/knowledge/reputation-rules.js +99 -0
  74. package/dist/knowledge/reward-templates.d.ts +25 -0
  75. package/dist/knowledge/reward-templates.js +125 -0
  76. package/dist/knowledge/safety-rules.d.ts +36 -0
  77. package/dist/knowledge/safety-rules.js +232 -0
  78. package/dist/knowledge/tool-constraints.d.ts +30 -0
  79. package/dist/knowledge/tool-constraints.js +175 -0
  80. package/dist/knowledge/trust-metrics.d.ts +37 -0
  81. package/dist/knowledge/trust-metrics.js +138 -0
  82. package/dist/loop-engineering/diagnose.d.ts +3 -2
  83. package/dist/loop-engineering/diagnose.js +94 -0
  84. package/dist/loop-engineering/improve.d.ts +1 -1
  85. package/dist/loop-engineering/improve.js +52 -1
  86. package/dist/project/graph.d.ts +71 -0
  87. package/dist/project/graph.js +314 -0
  88. package/dist/project/index.d.ts +62 -0
  89. package/dist/project/index.js +167 -0
  90. package/dist/project/namespace.d.ts +62 -0
  91. package/dist/project/namespace.js +181 -0
  92. package/dist/project/query.d.ts +40 -0
  93. package/dist/project/query.js +110 -0
  94. package/dist/safety/confirm-gate.d.ts +17 -0
  95. package/dist/safety/confirm-gate.js +88 -0
  96. package/dist/safety/index.d.ts +3 -0
  97. package/dist/safety/index.js +3 -0
  98. package/dist/safety/preview.d.ts +2 -0
  99. package/dist/safety/preview.js +36 -0
  100. package/dist/schema/call/allocation.d.ts +39 -14
  101. package/dist/schema/call/arbitration.d.ts +187 -162
  102. package/dist/schema/call/base.d.ts +1971 -87
  103. package/dist/schema/call/base.js +135 -3
  104. package/dist/schema/call/bridge-handler.js +15 -2
  105. package/dist/schema/call/bridge.d.ts +1478 -53
  106. package/dist/schema/call/bridge.js +50 -2
  107. package/dist/schema/call/contact.d.ts +25 -0
  108. package/dist/schema/call/demand.d.ts +79 -54
  109. package/dist/schema/call/guard.d.ts +125 -50
  110. package/dist/schema/call/handler.d.ts +3 -0
  111. package/dist/schema/call/handler.js +60 -14
  112. package/dist/schema/call/machine.d.ts +988 -938
  113. package/dist/schema/call/order.d.ts +25 -0
  114. package/dist/schema/call/payment.d.ts +25 -0
  115. package/dist/schema/call/permission.d.ts +244 -219
  116. package/dist/schema/call/personal.d.ts +25 -0
  117. package/dist/schema/call/progress.d.ts +25 -0
  118. package/dist/schema/call/proof.d.ts +62 -12
  119. package/dist/schema/call/proof.js +3 -3
  120. package/dist/schema/call/repository.d.ts +101 -76
  121. package/dist/schema/call/reward.d.ts +55 -30
  122. package/dist/schema/call/semantic.d.ts +10 -2
  123. package/dist/schema/call/semantic.js +616 -11
  124. package/dist/schema/call/service.d.ts +442 -417
  125. package/dist/schema/call/treasury.d.ts +25 -0
  126. package/dist/schema/common/index.js +3 -3
  127. package/dist/schema/config/index.d.ts +18 -0
  128. package/dist/schema/config/index.js +17 -0
  129. package/dist/schema/index.d.ts +6 -0
  130. package/dist/schema/index.js +5 -0
  131. package/dist/schema/local/index.d.ts +237 -81
  132. package/dist/schema/local/index.js +42 -6
  133. package/dist/schema/messenger/index.d.ts +1018 -79
  134. package/dist/schema/messenger/index.js +26 -17
  135. package/dist/schema/operations.d.ts +3192 -1746
  136. package/dist/schema/operations.js +93 -98
  137. package/dist/schema/project/index.d.ts +21 -0
  138. package/dist/schema/project/index.js +32 -0
  139. package/dist/schema/query/index.d.ts +2762 -1856
  140. package/dist/schema/query/index.js +38 -35
  141. package/dist/schema/schema-query/index.d.ts +33 -0
  142. package/dist/schema/schema-query/index.js +36 -0
  143. package/dist/schema/schema-version.d.ts +25 -0
  144. package/dist/schema/schema-version.js +76 -0
  145. package/dist/schema/trust/index.d.ts +407 -0
  146. package/dist/schema/trust/index.js +113 -0
  147. package/dist/schemas/account_operation.output.json +25 -16
  148. package/dist/schemas/account_operation.schema.json +1 -1
  149. package/dist/schemas/bridge_operation.output.json +744 -0
  150. package/dist/schemas/bridge_operation.schema.json +82 -8
  151. package/dist/schemas/config_operation.output.json +18 -0
  152. package/dist/schemas/config_operation.schema.json +34 -0
  153. package/dist/schemas/guard-node-schema.json +82 -0
  154. package/dist/schemas/guard2file.schema.json +23 -0
  155. package/dist/schemas/index.json +19 -1
  156. package/dist/schemas/local_info_operation.output.json +23 -0
  157. package/dist/schemas/local_info_operation.schema.json +1 -1
  158. package/dist/schemas/local_mark_operation.output.json +24 -1
  159. package/dist/schemas/local_mark_operation.schema.json +4 -4
  160. package/dist/schemas/machineNode2file.schema.json +23 -0
  161. package/dist/schemas/messenger_operation.output.json +752 -0
  162. package/dist/schemas/onchain_events.output.json +718 -0
  163. package/dist/schemas/onchain_operations.output.json +627 -18
  164. package/dist/schemas/onchain_operations.schema.json +115 -39
  165. package/dist/schemas/onchain_operations_allocation.schema.json +23 -0
  166. package/dist/schemas/onchain_operations_arbitration.schema.json +23 -0
  167. package/dist/schemas/onchain_operations_contact.schema.json +23 -0
  168. package/dist/schemas/onchain_operations_demand.schema.json +23 -0
  169. package/dist/schemas/onchain_operations_gen_passport.schema.json +46 -0
  170. package/dist/schemas/onchain_operations_guard.schema.json +26 -16
  171. package/dist/schemas/onchain_operations_machine.schema.json +89 -23
  172. package/dist/schemas/onchain_operations_order.schema.json +23 -0
  173. package/dist/schemas/onchain_operations_payment.schema.json +23 -0
  174. package/dist/schemas/onchain_operations_permission.schema.json +23 -0
  175. package/dist/schemas/onchain_operations_personal.schema.json +23 -0
  176. package/dist/schemas/onchain_operations_progress.schema.json +23 -0
  177. package/dist/schemas/onchain_operations_repository.schema.json +23 -0
  178. package/dist/schemas/onchain_operations_reward.schema.json +23 -0
  179. package/dist/schemas/onchain_operations_service.schema.json +23 -0
  180. package/dist/schemas/onchain_operations_treasury.schema.json +23 -0
  181. package/dist/schemas/onchain_table_data.output.json +939 -69
  182. package/dist/schemas/onchain_table_data.schema.json +2 -2
  183. package/dist/schemas/project_operation.output.json +18 -0
  184. package/dist/schemas/project_operation.schema.json +42 -0
  185. package/dist/schemas/query_toolkit.schema.json +360 -368
  186. package/dist/schemas/schema_query.schema.json +6 -3
  187. package/dist/schemas/trust_score.output.json +327 -0
  188. package/dist/schemas/trust_score.schema.json +46 -0
  189. package/package.json +2 -2
@@ -0,0 +1,36 @@
1
+ const LEVEL_LABEL = {
2
+ none: "none",
3
+ standard: "Standard confirmation",
4
+ amount: "Amount confirmation",
5
+ publish: "Publish confirmation (irreversible lock)",
6
+ irreversible: "Irreversible operation confirmation",
7
+ };
8
+ export function renderPreview(p) {
9
+ const lines = [];
10
+ lines.push(`⚠️ Confirmation required — ${LEVEL_LABEL[p.level]}`);
11
+ lines.push(` Operation: ${p.operation}`);
12
+ if (p.object)
13
+ lines.push(` Object: ${p.object}`);
14
+ if (p.network)
15
+ lines.push(` Network: ${p.network}`);
16
+ if (p.account !== undefined)
17
+ lines.push(` Account: ${p.account === "" ? "(default)" : p.account}`);
18
+ if (p.amount) {
19
+ lines.push(` Amount: ${p.amount.human_readable} (${p.amount.value} smallest unit)` +
20
+ (p.amount.recipient ? ` → ${p.amount.recipient}` : ""));
21
+ }
22
+ if (p.immutable_after && p.immutable_after.length > 0) {
23
+ lines.push(` Fields becoming immutable: ${p.immutable_after.join(", ")}`);
24
+ }
25
+ if (p.warnings && p.warnings.length > 0) {
26
+ lines.push(" Warnings:");
27
+ for (const w of p.warnings)
28
+ lines.push(` - ${w}`);
29
+ }
30
+ if (p.irreversible) {
31
+ lines.push(" ⛔ This operation is IRREVERSIBLE. It cannot be undone.");
32
+ }
33
+ lines.push("");
34
+ lines.push("Confirm by re-calling with env.confirmed=true, or modify/cancel.");
35
+ return lines.join("\n");
36
+ }
@@ -130,6 +130,7 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
130
130
  }>, "many">;
131
131
  }, "strip", z.ZodTypeAny, {
132
132
  description: string;
133
+ threshold: string | number;
133
134
  allocators: {
134
135
  guard: string;
135
136
  sharing: {
@@ -149,9 +150,9 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
149
150
  max?: string | number | null | undefined;
150
151
  fix?: string | number | undefined;
151
152
  }[];
152
- threshold: string | number;
153
153
  }, {
154
154
  description: string;
155
+ threshold: string | number;
155
156
  allocators: {
156
157
  guard: string;
157
158
  sharing: {
@@ -171,7 +172,6 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
171
172
  max?: string | number | null | undefined;
172
173
  fix?: string | number | undefined;
173
174
  }[];
174
- threshold: string | number;
175
175
  }>;
176
176
  coin: z.ZodUnion<[z.ZodObject<{
177
177
  balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -217,6 +217,7 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
217
217
  };
218
218
  allocators: {
219
219
  description: string;
220
+ threshold: string | number;
220
221
  allocators: {
221
222
  guard: string;
222
223
  sharing: {
@@ -236,7 +237,6 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
236
237
  max?: string | number | null | undefined;
237
238
  fix?: string | number | undefined;
238
239
  }[];
239
- threshold: string | number;
240
240
  };
241
241
  payment_info: {
242
242
  index: string | number;
@@ -259,6 +259,7 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
259
259
  };
260
260
  allocators: {
261
261
  description: string;
262
+ threshold: string | number;
262
263
  allocators: {
263
264
  guard: string;
264
265
  sharing: {
@@ -278,7 +279,6 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
278
279
  max?: string | number | null | undefined;
279
280
  fix?: string | number | undefined;
280
281
  }[];
281
- threshold: string | number;
282
282
  };
283
283
  payment_info: {
284
284
  index: string | number;
@@ -479,6 +479,7 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
479
479
  }>, "many">;
480
480
  }, "strip", z.ZodTypeAny, {
481
481
  description: string;
482
+ threshold: string | number;
482
483
  allocators: {
483
484
  guard: string;
484
485
  sharing: {
@@ -498,9 +499,9 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
498
499
  max?: string | number | null | undefined;
499
500
  fix?: string | number | undefined;
500
501
  }[];
501
- threshold: string | number;
502
502
  }, {
503
503
  description: string;
504
+ threshold: string | number;
504
505
  allocators: {
505
506
  guard: string;
506
507
  sharing: {
@@ -520,7 +521,6 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
520
521
  max?: string | number | null | undefined;
521
522
  fix?: string | number | undefined;
522
523
  }[];
523
- threshold: string | number;
524
524
  }>;
525
525
  coin: z.ZodUnion<[z.ZodObject<{
526
526
  balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -566,6 +566,7 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
566
566
  };
567
567
  allocators: {
568
568
  description: string;
569
+ threshold: string | number;
569
570
  allocators: {
570
571
  guard: string;
571
572
  sharing: {
@@ -585,7 +586,6 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
585
586
  max?: string | number | null | undefined;
586
587
  fix?: string | number | undefined;
587
588
  }[];
588
- threshold: string | number;
589
589
  };
590
590
  payment_info: {
591
591
  index: string | number;
@@ -608,6 +608,7 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
608
608
  };
609
609
  allocators: {
610
610
  description: string;
611
+ threshold: string | number;
611
612
  allocators: {
612
613
  guard: string;
613
614
  sharing: {
@@ -627,7 +628,6 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
627
628
  max?: string | number | null | undefined;
628
629
  fix?: string | number | undefined;
629
630
  }[];
630
- threshold: string | number;
631
631
  };
632
632
  payment_info: {
633
633
  index: string | number;
@@ -828,6 +828,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
828
828
  }>, "many">;
829
829
  }, "strip", z.ZodTypeAny, {
830
830
  description: string;
831
+ threshold: string | number;
831
832
  allocators: {
832
833
  guard: string;
833
834
  sharing: {
@@ -847,9 +848,9 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
847
848
  max?: string | number | null | undefined;
848
849
  fix?: string | number | undefined;
849
850
  }[];
850
- threshold: string | number;
851
851
  }, {
852
852
  description: string;
853
+ threshold: string | number;
853
854
  allocators: {
854
855
  guard: string;
855
856
  sharing: {
@@ -869,7 +870,6 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
869
870
  max?: string | number | null | undefined;
870
871
  fix?: string | number | undefined;
871
872
  }[];
872
- threshold: string | number;
873
873
  }>;
874
874
  coin: z.ZodUnion<[z.ZodObject<{
875
875
  balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -915,6 +915,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
915
915
  };
916
916
  allocators: {
917
917
  description: string;
918
+ threshold: string | number;
918
919
  allocators: {
919
920
  guard: string;
920
921
  sharing: {
@@ -934,7 +935,6 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
934
935
  max?: string | number | null | undefined;
935
936
  fix?: string | number | undefined;
936
937
  }[];
937
- threshold: string | number;
938
938
  };
939
939
  payment_info: {
940
940
  index: string | number;
@@ -957,6 +957,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
957
957
  };
958
958
  allocators: {
959
959
  description: string;
960
+ threshold: string | number;
960
961
  allocators: {
961
962
  guard: string;
962
963
  sharing: {
@@ -976,7 +977,6 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
976
977
  max?: string | number | null | undefined;
977
978
  fix?: string | number | undefined;
978
979
  }[];
979
- threshold: string | number;
980
980
  };
981
981
  payment_info: {
982
982
  index: string | number;
@@ -1051,18 +1051,33 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
1051
1051
  no_cache: z.ZodOptional<z.ZodBoolean>;
1052
1052
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
1053
1053
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1054
+ confirmed: z.ZodOptional<z.ZodBoolean>;
1055
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1056
+ project: z.ZodOptional<z.ZodString>;
1057
+ client_schema_version: z.ZodOptional<z.ZodString>;
1058
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
1054
1059
  }, "strict", z.ZodTypeAny, {
1055
1060
  account: string;
1056
1061
  no_cache?: boolean | undefined;
1057
1062
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1058
1063
  permission_guard?: string[] | undefined;
1059
1064
  referrer?: string | undefined;
1065
+ confirmed?: boolean | undefined;
1066
+ user_intent_phrases?: string[] | undefined;
1067
+ project?: string | undefined;
1068
+ client_schema_version?: string | undefined;
1069
+ schema_strict_mode?: boolean | undefined;
1060
1070
  }, {
1061
1071
  no_cache?: boolean | undefined;
1062
1072
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1063
1073
  account?: string | undefined;
1064
1074
  permission_guard?: string[] | undefined;
1065
1075
  referrer?: string | undefined;
1076
+ confirmed?: boolean | undefined;
1077
+ user_intent_phrases?: string[] | undefined;
1078
+ project?: string | undefined;
1079
+ client_schema_version?: string | undefined;
1080
+ schema_strict_mode?: boolean | undefined;
1066
1081
  }>>;
1067
1082
  submission: z.ZodOptional<z.ZodObject<{
1068
1083
  type: z.ZodLiteral<"submission">;
@@ -1260,6 +1275,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
1260
1275
  };
1261
1276
  allocators: {
1262
1277
  description: string;
1278
+ threshold: string | number;
1263
1279
  allocators: {
1264
1280
  guard: string;
1265
1281
  sharing: {
@@ -1279,7 +1295,6 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
1279
1295
  max?: string | number | null | undefined;
1280
1296
  fix?: string | number | undefined;
1281
1297
  }[];
1282
- threshold: string | number;
1283
1298
  };
1284
1299
  payment_info: {
1285
1300
  index: string | number;
@@ -1333,6 +1348,11 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
1333
1348
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1334
1349
  permission_guard?: string[] | undefined;
1335
1350
  referrer?: string | undefined;
1351
+ confirmed?: boolean | undefined;
1352
+ user_intent_phrases?: string[] | undefined;
1353
+ project?: string | undefined;
1354
+ client_schema_version?: string | undefined;
1355
+ schema_strict_mode?: boolean | undefined;
1336
1356
  } | undefined;
1337
1357
  }, {
1338
1358
  data: {
@@ -1350,6 +1370,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
1350
1370
  };
1351
1371
  allocators: {
1352
1372
  description: string;
1373
+ threshold: string | number;
1353
1374
  allocators: {
1354
1375
  guard: string;
1355
1376
  sharing: {
@@ -1369,7 +1390,6 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
1369
1390
  max?: string | number | null | undefined;
1370
1391
  fix?: string | number | undefined;
1371
1392
  }[];
1372
- threshold: string | number;
1373
1393
  };
1374
1394
  payment_info: {
1375
1395
  index: string | number;
@@ -1423,6 +1443,11 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
1423
1443
  account?: string | undefined;
1424
1444
  permission_guard?: string[] | undefined;
1425
1445
  referrer?: string | undefined;
1446
+ confirmed?: boolean | undefined;
1447
+ user_intent_phrases?: string[] | undefined;
1448
+ project?: string | undefined;
1449
+ client_schema_version?: string | undefined;
1450
+ schema_strict_mode?: boolean | undefined;
1426
1451
  } | undefined;
1427
1452
  }>;
1428
1453
  export type CallAllocation_Create = z.infer<typeof CallAllocation_CreateSchema>;