@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.
Files changed (65) hide show
  1. package/dist/customer/industry-risks.js +31 -31
  2. package/dist/customer/order-monitor.js +57 -57
  3. package/dist/customer/order-strategy.js +89 -89
  4. package/dist/customer/post-purchase.js +97 -97
  5. package/dist/customer/reminder-system.js +26 -26
  6. package/dist/customer/risk-assessment.js +46 -46
  7. package/dist/customer/types.d.ts +4 -4
  8. package/dist/customer/types.js +4 -4
  9. package/dist/customer/user-preferences.js +50 -50
  10. package/dist/experience/intent-distill.js +6 -6
  11. package/dist/knowledge/acquisition-flywheel.js +64 -64
  12. package/dist/knowledge/arbitration-trust.js +10 -10
  13. package/dist/knowledge/demand-matching.js +8 -8
  14. package/dist/knowledge/dynamic-pricing.js +18 -18
  15. package/dist/knowledge/flywheel-loop.js +11 -11
  16. package/dist/knowledge/glossary.js +22 -22
  17. package/dist/knowledge/guard-ledger.d.ts +1 -1
  18. package/dist/knowledge/guard-ledger.js +131 -104
  19. package/dist/knowledge/guard-lint.d.ts +76 -0
  20. package/dist/knowledge/guard-lint.js +590 -0
  21. package/dist/knowledge/guard-puzzle.d.ts +109 -14
  22. package/dist/knowledge/guard-puzzle.js +627 -101
  23. package/dist/knowledge/guard-risk.d.ts +8 -1
  24. package/dist/knowledge/guard-risk.js +868 -296
  25. package/dist/knowledge/guard-templates.d.ts +37 -0
  26. package/dist/knowledge/guard-templates.js +329 -0
  27. package/dist/knowledge/guard-translation.d.ts +14 -2
  28. package/dist/knowledge/guard-translation.js +825 -194
  29. package/dist/knowledge/index.d.ts +8 -4
  30. package/dist/knowledge/index.js +9 -5
  31. package/dist/knowledge/industry-evolution.js +29 -29
  32. package/dist/knowledge/industry-generalizer.js +52 -52
  33. package/dist/knowledge/industry-registry.js +20 -33
  34. package/dist/knowledge/intent-metrics.js +67 -67
  35. package/dist/knowledge/process-model.js +80 -80
  36. package/dist/knowledge/reputation-rules.js +9 -9
  37. package/dist/knowledge/reward-templates.js +51 -51
  38. package/dist/knowledge/safety-rules.js +3 -3
  39. package/dist/knowledge/tool-constraints.js +20 -4
  40. package/dist/knowledge/trust-metrics.js +26 -26
  41. package/dist/schema/call/base.js +16 -16
  42. package/dist/schema/call/bridge.d.ts +32 -32
  43. package/dist/schema/call/demand.d.ts +84 -84
  44. package/dist/schema/call/guard.d.ts +153 -0
  45. package/dist/schema/call/guard.js +50 -0
  46. package/dist/schema/call/permission.d.ts +78 -78
  47. package/dist/schema/call/repository.d.ts +22 -22
  48. package/dist/schema/call/semantic.js +228 -24
  49. package/dist/schema/local/wip.d.ts +39 -19
  50. package/dist/schema/local/wip.js +5 -5
  51. package/dist/schema/messenger/index.d.ts +26 -26
  52. package/dist/schema/messenger/index.js +2 -2
  53. package/dist/schema/operations.d.ts +222 -144
  54. package/dist/schema/query/index.d.ts +38 -38
  55. package/dist/schema/trust/index.d.ts +4 -4
  56. package/dist/schema/utils/guard-parser.js +4 -4
  57. package/dist/schema/utils/node-parser.js +14 -14
  58. package/dist/schemas/bridge_operation.output.json +14 -14
  59. package/dist/schemas/index.json +1 -1
  60. package/dist/schemas/messenger_operation.output.json +17 -15
  61. package/dist/schemas/onchain_events.output.json +14 -14
  62. package/dist/schemas/onchain_operations.output.json +14 -14
  63. package/dist/schemas/onchain_table_data.output.json +14 -14
  64. package/dist/schemas/wip_file.output.json +24 -1
  65. package/package.json +2 -2
@@ -1445,19 +1445,6 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
1445
1445
  };
1446
1446
  index: number[];
1447
1447
  } | undefined;
1448
- owner_receive?: {
1449
- received: {
1450
- id: string;
1451
- balance: string | number;
1452
- payment: string;
1453
- }[];
1454
- balance: string | number;
1455
- token_type: string;
1456
- } | "recently" | {
1457
- type: string;
1458
- id: string;
1459
- content_raw?: any;
1460
- }[] | undefined;
1461
1448
  entity?: {
1462
1449
  op: "swap";
1463
1450
  entity1: {
@@ -1495,6 +1482,19 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
1495
1482
  local_mark_first?: boolean | undefined;
1496
1483
  };
1497
1484
  } | undefined;
1485
+ owner_receive?: {
1486
+ received: {
1487
+ id: string;
1488
+ balance: string | number;
1489
+ payment: string;
1490
+ }[];
1491
+ balance: string | number;
1492
+ token_type: string;
1493
+ } | "recently" | {
1494
+ type: string;
1495
+ id: string;
1496
+ content_raw?: any;
1497
+ }[] | undefined;
1498
1498
  um?: string | null | undefined;
1499
1499
  builder?: {
1500
1500
  name_or_address?: string | undefined;
@@ -1581,19 +1581,6 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
1581
1581
  };
1582
1582
  index: number[];
1583
1583
  } | undefined;
1584
- owner_receive?: {
1585
- received: {
1586
- id: string;
1587
- balance: string | number;
1588
- payment: string;
1589
- }[];
1590
- balance: string | number;
1591
- token_type: string;
1592
- } | "recently" | {
1593
- type: string;
1594
- id: string;
1595
- content_raw?: any;
1596
- }[] | undefined;
1597
1584
  entity?: {
1598
1585
  op: "swap";
1599
1586
  entity1: {
@@ -1631,6 +1618,19 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
1631
1618
  local_mark_first?: boolean | undefined;
1632
1619
  };
1633
1620
  } | undefined;
1621
+ owner_receive?: {
1622
+ received: {
1623
+ id: string;
1624
+ balance: string | number;
1625
+ payment: string;
1626
+ }[];
1627
+ balance: string | number;
1628
+ token_type: string;
1629
+ } | "recently" | {
1630
+ type: string;
1631
+ id: string;
1632
+ content_raw?: any;
1633
+ }[] | undefined;
1634
1634
  um?: string | null | undefined;
1635
1635
  builder?: {
1636
1636
  name_or_address?: string | undefined;
@@ -2245,19 +2245,6 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2245
2245
  };
2246
2246
  index: number[];
2247
2247
  } | undefined;
2248
- owner_receive?: {
2249
- received: {
2250
- id: string;
2251
- balance: string | number;
2252
- payment: string;
2253
- }[];
2254
- balance: string | number;
2255
- token_type: string;
2256
- } | "recently" | {
2257
- type: string;
2258
- id: string;
2259
- content_raw?: any;
2260
- }[] | undefined;
2261
2248
  entity?: {
2262
2249
  op: "swap";
2263
2250
  entity1: {
@@ -2295,6 +2282,19 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2295
2282
  local_mark_first?: boolean | undefined;
2296
2283
  };
2297
2284
  } | undefined;
2285
+ owner_receive?: {
2286
+ received: {
2287
+ id: string;
2288
+ balance: string | number;
2289
+ payment: string;
2290
+ }[];
2291
+ balance: string | number;
2292
+ token_type: string;
2293
+ } | "recently" | {
2294
+ type: string;
2295
+ id: string;
2296
+ content_raw?: any;
2297
+ }[] | undefined;
2298
2298
  um?: string | null | undefined;
2299
2299
  builder?: {
2300
2300
  name_or_address?: string | undefined;
@@ -2381,19 +2381,6 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2381
2381
  };
2382
2382
  index: number[];
2383
2383
  } | undefined;
2384
- owner_receive?: {
2385
- received: {
2386
- id: string;
2387
- balance: string | number;
2388
- payment: string;
2389
- }[];
2390
- balance: string | number;
2391
- token_type: string;
2392
- } | "recently" | {
2393
- type: string;
2394
- id: string;
2395
- content_raw?: any;
2396
- }[] | undefined;
2397
2384
  entity?: {
2398
2385
  op: "swap";
2399
2386
  entity1: {
@@ -2431,6 +2418,19 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2431
2418
  local_mark_first?: boolean | undefined;
2432
2419
  };
2433
2420
  } | undefined;
2421
+ owner_receive?: {
2422
+ received: {
2423
+ id: string;
2424
+ balance: string | number;
2425
+ payment: string;
2426
+ }[];
2427
+ balance: string | number;
2428
+ token_type: string;
2429
+ } | "recently" | {
2430
+ type: string;
2431
+ id: string;
2432
+ content_raw?: any;
2433
+ }[] | undefined;
2434
2434
  um?: string | null | undefined;
2435
2435
  builder?: {
2436
2436
  name_or_address?: string | undefined;
@@ -2733,19 +2733,6 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2733
2733
  };
2734
2734
  index: number[];
2735
2735
  } | undefined;
2736
- owner_receive?: {
2737
- received: {
2738
- id: string;
2739
- balance: string | number;
2740
- payment: string;
2741
- }[];
2742
- balance: string | number;
2743
- token_type: string;
2744
- } | "recently" | {
2745
- type: string;
2746
- id: string;
2747
- content_raw?: any;
2748
- }[] | undefined;
2749
2736
  entity?: {
2750
2737
  op: "swap";
2751
2738
  entity1: {
@@ -2783,6 +2770,19 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2783
2770
  local_mark_first?: boolean | undefined;
2784
2771
  };
2785
2772
  } | undefined;
2773
+ owner_receive?: {
2774
+ received: {
2775
+ id: string;
2776
+ balance: string | number;
2777
+ payment: string;
2778
+ }[];
2779
+ balance: string | number;
2780
+ token_type: string;
2781
+ } | "recently" | {
2782
+ type: string;
2783
+ id: string;
2784
+ content_raw?: any;
2785
+ }[] | undefined;
2786
2786
  um?: string | null | undefined;
2787
2787
  builder?: {
2788
2788
  name_or_address?: string | undefined;
@@ -2910,19 +2910,6 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2910
2910
  };
2911
2911
  index: number[];
2912
2912
  } | undefined;
2913
- owner_receive?: {
2914
- received: {
2915
- id: string;
2916
- balance: string | number;
2917
- payment: string;
2918
- }[];
2919
- balance: string | number;
2920
- token_type: string;
2921
- } | "recently" | {
2922
- type: string;
2923
- id: string;
2924
- content_raw?: any;
2925
- }[] | undefined;
2926
2913
  entity?: {
2927
2914
  op: "swap";
2928
2915
  entity1: {
@@ -2960,6 +2947,19 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2960
2947
  local_mark_first?: boolean | undefined;
2961
2948
  };
2962
2949
  } | undefined;
2950
+ owner_receive?: {
2951
+ received: {
2952
+ id: string;
2953
+ balance: string | number;
2954
+ payment: string;
2955
+ }[];
2956
+ balance: string | number;
2957
+ token_type: string;
2958
+ } | "recently" | {
2959
+ type: string;
2960
+ id: string;
2961
+ content_raw?: any;
2962
+ }[] | undefined;
2963
2963
  um?: string | null | undefined;
2964
2964
  builder?: {
2965
2965
  name_or_address?: string | undefined;
@@ -257,7 +257,7 @@ export declare const PoliciesAddSetSchema: z.ZodObject<{
257
257
  id_from_submission?: number | undefined;
258
258
  data_from_submission?: number | undefined;
259
259
  }[];
260
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
260
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
261
261
  quote_guard?: string | null | undefined;
262
262
  }, {
263
263
  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";
@@ -268,7 +268,7 @@ export declare const PoliciesAddSetSchema: z.ZodObject<{
268
268
  id_from_submission?: number | undefined;
269
269
  data_from_submission?: number | undefined;
270
270
  }[];
271
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
271
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
272
272
  quote_guard?: string | null | undefined;
273
273
  }>, "many">;
274
274
  }, "strict", z.ZodTypeAny, {
@@ -282,7 +282,7 @@ export declare const PoliciesAddSetSchema: z.ZodObject<{
282
282
  id_from_submission?: number | undefined;
283
283
  data_from_submission?: number | undefined;
284
284
  }[];
285
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
285
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
286
286
  quote_guard?: string | null | undefined;
287
287
  }[];
288
288
  }, {
@@ -296,7 +296,7 @@ export declare const PoliciesAddSetSchema: z.ZodObject<{
296
296
  id_from_submission?: number | undefined;
297
297
  data_from_submission?: number | undefined;
298
298
  }[];
299
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
299
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
300
300
  quote_guard?: string | null | undefined;
301
301
  }[];
302
302
  }>;
@@ -347,7 +347,7 @@ export declare const PoliciesSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<
347
347
  id_from_submission?: number | undefined;
348
348
  data_from_submission?: number | undefined;
349
349
  }[];
350
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
350
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
351
351
  quote_guard?: string | null | undefined;
352
352
  }, {
353
353
  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";
@@ -358,7 +358,7 @@ export declare const PoliciesSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<
358
358
  id_from_submission?: number | undefined;
359
359
  data_from_submission?: number | undefined;
360
360
  }[];
361
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
361
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
362
362
  quote_guard?: string | null | undefined;
363
363
  }>, "many">;
364
364
  }, "strict", z.ZodTypeAny, {
@@ -372,7 +372,7 @@ export declare const PoliciesSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<
372
372
  id_from_submission?: number | undefined;
373
373
  data_from_submission?: number | undefined;
374
374
  }[];
375
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
375
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
376
376
  quote_guard?: string | null | undefined;
377
377
  }[];
378
378
  }, {
@@ -386,7 +386,7 @@ export declare const PoliciesSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<
386
386
  id_from_submission?: number | undefined;
387
387
  data_from_submission?: number | undefined;
388
388
  }[];
389
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
389
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
390
390
  quote_guard?: string | null | undefined;
391
391
  }[];
392
392
  }>, z.ZodObject<{
@@ -800,7 +800,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
800
800
  id_from_submission?: number | undefined;
801
801
  data_from_submission?: number | undefined;
802
802
  }[];
803
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
803
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
804
804
  quote_guard?: string | null | undefined;
805
805
  }, {
806
806
  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";
@@ -811,7 +811,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
811
811
  id_from_submission?: number | undefined;
812
812
  data_from_submission?: number | undefined;
813
813
  }[];
814
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
814
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
815
815
  quote_guard?: string | null | undefined;
816
816
  }>, "many">;
817
817
  }, "strict", z.ZodTypeAny, {
@@ -825,7 +825,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
825
825
  id_from_submission?: number | undefined;
826
826
  data_from_submission?: number | undefined;
827
827
  }[];
828
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
828
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
829
829
  quote_guard?: string | null | undefined;
830
830
  }[];
831
831
  }, {
@@ -839,7 +839,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
839
839
  id_from_submission?: number | undefined;
840
840
  data_from_submission?: number | undefined;
841
841
  }[];
842
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
842
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
843
843
  quote_guard?: string | null | undefined;
844
844
  }[];
845
845
  }>, z.ZodObject<{
@@ -1184,7 +1184,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
1184
1184
  id_from_submission?: number | undefined;
1185
1185
  data_from_submission?: number | undefined;
1186
1186
  }[];
1187
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1187
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
1188
1188
  quote_guard?: string | null | undefined;
1189
1189
  }[];
1190
1190
  } | {
@@ -1272,7 +1272,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
1272
1272
  id_from_submission?: number | undefined;
1273
1273
  data_from_submission?: number | undefined;
1274
1274
  }[];
1275
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1275
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
1276
1276
  quote_guard?: string | null | undefined;
1277
1277
  }[];
1278
1278
  } | {
@@ -1396,7 +1396,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1396
1396
  id_from_submission?: number | undefined;
1397
1397
  data_from_submission?: number | undefined;
1398
1398
  }[];
1399
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1399
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
1400
1400
  quote_guard?: string | null | undefined;
1401
1401
  }, {
1402
1402
  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";
@@ -1407,7 +1407,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1407
1407
  id_from_submission?: number | undefined;
1408
1408
  data_from_submission?: number | undefined;
1409
1409
  }[];
1410
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1410
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
1411
1411
  quote_guard?: string | null | undefined;
1412
1412
  }>, "many">;
1413
1413
  }, "strict", z.ZodTypeAny, {
@@ -1421,7 +1421,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1421
1421
  id_from_submission?: number | undefined;
1422
1422
  data_from_submission?: number | undefined;
1423
1423
  }[];
1424
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1424
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
1425
1425
  quote_guard?: string | null | undefined;
1426
1426
  }[];
1427
1427
  }, {
@@ -1435,7 +1435,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1435
1435
  id_from_submission?: number | undefined;
1436
1436
  data_from_submission?: number | undefined;
1437
1437
  }[];
1438
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1438
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
1439
1439
  quote_guard?: string | null | undefined;
1440
1440
  }[];
1441
1441
  }>, z.ZodObject<{
@@ -1780,7 +1780,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1780
1780
  id_from_submission?: number | undefined;
1781
1781
  data_from_submission?: number | undefined;
1782
1782
  }[];
1783
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1783
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
1784
1784
  quote_guard?: string | null | undefined;
1785
1785
  }[];
1786
1786
  } | {
@@ -1868,7 +1868,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1868
1868
  id_from_submission?: number | undefined;
1869
1869
  data_from_submission?: number | undefined;
1870
1870
  }[];
1871
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1871
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
1872
1872
  quote_guard?: string | null | undefined;
1873
1873
  }[];
1874
1874
  } | {
@@ -2172,7 +2172,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
2172
2172
  id_from_submission?: number | undefined;
2173
2173
  data_from_submission?: number | undefined;
2174
2174
  }[];
2175
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
2175
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
2176
2176
  quote_guard?: string | null | undefined;
2177
2177
  }[];
2178
2178
  } | {
@@ -2301,7 +2301,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
2301
2301
  id_from_submission?: number | undefined;
2302
2302
  data_from_submission?: number | undefined;
2303
2303
  }[];
2304
- id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
2304
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
2305
2305
  quote_guard?: string | null | undefined;
2306
2306
  }[];
2307
2307
  } | {