@wowok/agent-mcp 2.3.16 → 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 (106) hide show
  1. package/dist/customer/index.d.ts +9 -0
  2. package/dist/customer/index.js +9 -0
  3. package/dist/customer/industry-risks.d.ts +4 -0
  4. package/dist/customer/industry-risks.js +14 -0
  5. package/dist/customer/user-preferences.d.ts +3 -0
  6. package/dist/customer/user-preferences.js +9 -0
  7. package/dist/experience/realtime-feedback.js +17 -0
  8. package/dist/index.js +360 -273
  9. package/dist/knowledge/acquisition-flywheel.d.ts +3 -0
  10. package/dist/knowledge/acquisition-flywheel.js +9 -0
  11. package/dist/knowledge/guard-ledger.d.ts +19 -0
  12. package/dist/knowledge/guard-ledger.js +219 -0
  13. package/dist/knowledge/guard-puzzle.d.ts +93 -0
  14. package/dist/knowledge/guard-puzzle.js +278 -0
  15. package/dist/knowledge/guard-risk.d.ts +60 -0
  16. package/dist/knowledge/guard-risk.js +474 -0
  17. package/dist/knowledge/guard-translation.d.ts +46 -0
  18. package/dist/knowledge/guard-translation.js +487 -0
  19. package/dist/knowledge/index.d.ts +13 -0
  20. package/dist/knowledge/index.js +13 -0
  21. package/dist/knowledge/industry-registry.d.ts +1 -2
  22. package/dist/knowledge/industry-registry.js +23 -3
  23. package/dist/knowledge/safety-rules.js +61 -0
  24. package/dist/knowledge/tool-constraints.js +12 -22
  25. package/dist/safety/confirm-gate.d.ts +4 -2
  26. package/dist/safety/confirm-gate.js +48 -4
  27. package/dist/schema/call/allocation.d.ts +24 -14
  28. package/dist/schema/call/arbitration.d.ts +142 -132
  29. package/dist/schema/call/base.d.ts +901 -43
  30. package/dist/schema/call/base.js +66 -2
  31. package/dist/schema/call/bridge-handler.js +15 -2
  32. package/dist/schema/call/bridge.d.ts +769 -1
  33. package/dist/schema/call/bridge.js +37 -0
  34. package/dist/schema/call/contact.d.ts +10 -0
  35. package/dist/schema/call/demand.d.ts +10 -0
  36. package/dist/schema/call/guard.d.ts +76 -46
  37. package/dist/schema/call/handler.js +46 -14
  38. package/dist/schema/call/machine.d.ts +158 -138
  39. package/dist/schema/call/order.d.ts +10 -0
  40. package/dist/schema/call/payment.d.ts +10 -0
  41. package/dist/schema/call/permission.d.ts +232 -222
  42. package/dist/schema/call/personal.d.ts +10 -0
  43. package/dist/schema/call/progress.d.ts +10 -0
  44. package/dist/schema/call/proof.d.ts +20 -0
  45. package/dist/schema/call/repository.d.ts +32 -22
  46. package/dist/schema/call/reward.d.ts +10 -0
  47. package/dist/schema/call/semantic.d.ts +9 -2
  48. package/dist/schema/call/semantic.js +409 -21
  49. package/dist/schema/call/service.d.ts +20 -10
  50. package/dist/schema/call/treasury.d.ts +10 -0
  51. package/dist/schema/config/index.d.ts +18 -0
  52. package/dist/schema/config/index.js +17 -0
  53. package/dist/schema/index.d.ts +6 -0
  54. package/dist/schema/index.js +5 -0
  55. package/dist/schema/local/index.d.ts +9 -9
  56. package/dist/schema/local/index.js +9 -0
  57. package/dist/schema/messenger/index.d.ts +350 -29
  58. package/dist/schema/messenger/index.js +17 -17
  59. package/dist/schema/operations.d.ts +1667 -545
  60. package/dist/schema/operations.js +91 -96
  61. package/dist/schema/project/index.d.ts +21 -0
  62. package/dist/schema/project/index.js +32 -0
  63. package/dist/schema/query/index.d.ts +1074 -168
  64. package/dist/schema/query/index.js +8 -8
  65. package/dist/schema/schema-query/index.d.ts +33 -0
  66. package/dist/schema/schema-query/index.js +36 -0
  67. package/dist/schema/schema-version.d.ts +25 -0
  68. package/dist/schema/schema-version.js +76 -0
  69. package/dist/schema/trust/index.d.ts +407 -0
  70. package/dist/schema/trust/index.js +113 -0
  71. package/dist/schemas/bridge_operation.output.json +224 -0
  72. package/dist/schemas/bridge_operation.schema.json +67 -8
  73. package/dist/schemas/config_operation.output.json +18 -0
  74. package/dist/schemas/config_operation.schema.json +34 -0
  75. package/dist/schemas/guard-node-schema.json +82 -0
  76. package/dist/schemas/guard2file.schema.json +8 -0
  77. package/dist/schemas/index.json +19 -1
  78. package/dist/schemas/machineNode2file.schema.json +8 -0
  79. package/dist/schemas/messenger_operation.output.json +224 -0
  80. package/dist/schemas/onchain_events.output.json +718 -0
  81. package/dist/schemas/onchain_operations.output.json +277 -2
  82. package/dist/schemas/onchain_operations.schema.json +19 -16
  83. package/dist/schemas/onchain_operations_allocation.schema.json +8 -0
  84. package/dist/schemas/onchain_operations_arbitration.schema.json +8 -0
  85. package/dist/schemas/onchain_operations_contact.schema.json +8 -0
  86. package/dist/schemas/onchain_operations_demand.schema.json +8 -0
  87. package/dist/schemas/onchain_operations_gen_passport.schema.json +16 -0
  88. package/dist/schemas/onchain_operations_guard.schema.json +11 -16
  89. package/dist/schemas/onchain_operations_machine.schema.json +8 -0
  90. package/dist/schemas/onchain_operations_order.schema.json +8 -0
  91. package/dist/schemas/onchain_operations_payment.schema.json +8 -0
  92. package/dist/schemas/onchain_operations_permission.schema.json +8 -0
  93. package/dist/schemas/onchain_operations_personal.schema.json +8 -0
  94. package/dist/schemas/onchain_operations_progress.schema.json +8 -0
  95. package/dist/schemas/onchain_operations_repository.schema.json +8 -0
  96. package/dist/schemas/onchain_operations_reward.schema.json +8 -0
  97. package/dist/schemas/onchain_operations_service.schema.json +8 -0
  98. package/dist/schemas/onchain_operations_treasury.schema.json +8 -0
  99. package/dist/schemas/onchain_table_data.output.json +718 -0
  100. package/dist/schemas/project_operation.output.json +18 -0
  101. package/dist/schemas/project_operation.schema.json +42 -0
  102. package/dist/schemas/query_toolkit.schema.json +360 -368
  103. package/dist/schemas/schema_query.schema.json +6 -3
  104. package/dist/schemas/trust_score.output.json +327 -0
  105. package/dist/schemas/trust_score.schema.json +46 -0
  106. package/package.json +2 -2
@@ -1393,6 +1393,58 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
1393
1393
  onChain?: boolean | undefined;
1394
1394
  } | undefined;
1395
1395
  description?: string | undefined;
1396
+ table?: {
1397
+ op: "add perm by index";
1398
+ entity: {
1399
+ entities: {
1400
+ name_or_address?: string | undefined;
1401
+ local_mark_first?: boolean | undefined;
1402
+ }[];
1403
+ check_all_founded?: boolean | undefined;
1404
+ };
1405
+ index: number;
1406
+ } | {
1407
+ op: "set perm by index";
1408
+ entity: {
1409
+ entities: {
1410
+ name_or_address?: string | undefined;
1411
+ local_mark_first?: boolean | undefined;
1412
+ }[];
1413
+ check_all_founded?: boolean | undefined;
1414
+ };
1415
+ index: number;
1416
+ } | {
1417
+ op: "remove perm by index";
1418
+ entity: {
1419
+ entities: {
1420
+ name_or_address?: string | undefined;
1421
+ local_mark_first?: boolean | undefined;
1422
+ }[];
1423
+ check_all_founded?: boolean | undefined;
1424
+ };
1425
+ index: number;
1426
+ } | {
1427
+ op: "add perm by entity";
1428
+ entity: {
1429
+ name_or_address?: string | undefined;
1430
+ local_mark_first?: boolean | undefined;
1431
+ };
1432
+ index: number[];
1433
+ } | {
1434
+ op: "set perm by entity";
1435
+ entity: {
1436
+ name_or_address?: string | undefined;
1437
+ local_mark_first?: boolean | undefined;
1438
+ };
1439
+ index: number[];
1440
+ } | {
1441
+ op: "remove perm by entity";
1442
+ entity: {
1443
+ name_or_address?: string | undefined;
1444
+ local_mark_first?: boolean | undefined;
1445
+ };
1446
+ index: number[];
1447
+ } | undefined;
1396
1448
  owner_receive?: {
1397
1449
  received: {
1398
1450
  id: string;
@@ -1468,6 +1520,15 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
1468
1520
  } | {
1469
1521
  op: "clear";
1470
1522
  } | undefined;
1523
+ apply?: string[] | undefined;
1524
+ }, {
1525
+ object?: string | {
1526
+ name?: string | undefined;
1527
+ replaceExistName?: boolean | undefined;
1528
+ tags?: string[] | undefined;
1529
+ onChain?: boolean | undefined;
1530
+ } | undefined;
1531
+ description?: string | undefined;
1471
1532
  table?: {
1472
1533
  op: "add perm by index";
1473
1534
  entity: {
@@ -1520,15 +1581,6 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
1520
1581
  };
1521
1582
  index: number[];
1522
1583
  } | undefined;
1523
- apply?: string[] | undefined;
1524
- }, {
1525
- object?: string | {
1526
- name?: string | undefined;
1527
- replaceExistName?: boolean | undefined;
1528
- tags?: string[] | undefined;
1529
- onChain?: boolean | undefined;
1530
- } | undefined;
1531
- description?: string | undefined;
1532
1584
  owner_receive?: {
1533
1585
  received: {
1534
1586
  id: string;
@@ -1604,58 +1656,6 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
1604
1656
  } | {
1605
1657
  op: "clear";
1606
1658
  } | undefined;
1607
- table?: {
1608
- op: "add perm by index";
1609
- entity: {
1610
- entities: {
1611
- name_or_address?: string | undefined;
1612
- local_mark_first?: boolean | undefined;
1613
- }[];
1614
- check_all_founded?: boolean | undefined;
1615
- };
1616
- index: number;
1617
- } | {
1618
- op: "set perm by index";
1619
- entity: {
1620
- entities: {
1621
- name_or_address?: string | undefined;
1622
- local_mark_first?: boolean | undefined;
1623
- }[];
1624
- check_all_founded?: boolean | undefined;
1625
- };
1626
- index: number;
1627
- } | {
1628
- op: "remove perm by index";
1629
- entity: {
1630
- entities: {
1631
- name_or_address?: string | undefined;
1632
- local_mark_first?: boolean | undefined;
1633
- }[];
1634
- check_all_founded?: boolean | undefined;
1635
- };
1636
- index: number;
1637
- } | {
1638
- op: "add perm by entity";
1639
- entity: {
1640
- name_or_address?: string | undefined;
1641
- local_mark_first?: boolean | undefined;
1642
- };
1643
- index: number[];
1644
- } | {
1645
- op: "set perm by entity";
1646
- entity: {
1647
- name_or_address?: string | undefined;
1648
- local_mark_first?: boolean | undefined;
1649
- };
1650
- index: number[];
1651
- } | {
1652
- op: "remove perm by entity";
1653
- entity: {
1654
- name_or_address?: string | undefined;
1655
- local_mark_first?: boolean | undefined;
1656
- };
1657
- index: number[];
1658
- } | undefined;
1659
1659
  apply?: string[] | undefined;
1660
1660
  }>;
1661
1661
  export declare const CallPermission_InputSchema: z.ZodObject<{
@@ -2193,6 +2193,58 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2193
2193
  onChain?: boolean | undefined;
2194
2194
  } | undefined;
2195
2195
  description?: string | undefined;
2196
+ table?: {
2197
+ op: "add perm by index";
2198
+ entity: {
2199
+ entities: {
2200
+ name_or_address?: string | undefined;
2201
+ local_mark_first?: boolean | undefined;
2202
+ }[];
2203
+ check_all_founded?: boolean | undefined;
2204
+ };
2205
+ index: number;
2206
+ } | {
2207
+ op: "set perm by index";
2208
+ entity: {
2209
+ entities: {
2210
+ name_or_address?: string | undefined;
2211
+ local_mark_first?: boolean | undefined;
2212
+ }[];
2213
+ check_all_founded?: boolean | undefined;
2214
+ };
2215
+ index: number;
2216
+ } | {
2217
+ op: "remove perm by index";
2218
+ entity: {
2219
+ entities: {
2220
+ name_or_address?: string | undefined;
2221
+ local_mark_first?: boolean | undefined;
2222
+ }[];
2223
+ check_all_founded?: boolean | undefined;
2224
+ };
2225
+ index: number;
2226
+ } | {
2227
+ op: "add perm by entity";
2228
+ entity: {
2229
+ name_or_address?: string | undefined;
2230
+ local_mark_first?: boolean | undefined;
2231
+ };
2232
+ index: number[];
2233
+ } | {
2234
+ op: "set perm by entity";
2235
+ entity: {
2236
+ name_or_address?: string | undefined;
2237
+ local_mark_first?: boolean | undefined;
2238
+ };
2239
+ index: number[];
2240
+ } | {
2241
+ op: "remove perm by entity";
2242
+ entity: {
2243
+ name_or_address?: string | undefined;
2244
+ local_mark_first?: boolean | undefined;
2245
+ };
2246
+ index: number[];
2247
+ } | undefined;
2196
2248
  owner_receive?: {
2197
2249
  received: {
2198
2250
  id: string;
@@ -2268,6 +2320,15 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2268
2320
  } | {
2269
2321
  op: "clear";
2270
2322
  } | undefined;
2323
+ apply?: string[] | undefined;
2324
+ }, {
2325
+ object?: string | {
2326
+ name?: string | undefined;
2327
+ replaceExistName?: boolean | undefined;
2328
+ tags?: string[] | undefined;
2329
+ onChain?: boolean | undefined;
2330
+ } | undefined;
2331
+ description?: string | undefined;
2271
2332
  table?: {
2272
2333
  op: "add perm by index";
2273
2334
  entity: {
@@ -2320,15 +2381,6 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2320
2381
  };
2321
2382
  index: number[];
2322
2383
  } | undefined;
2323
- apply?: string[] | undefined;
2324
- }, {
2325
- object?: string | {
2326
- name?: string | undefined;
2327
- replaceExistName?: boolean | undefined;
2328
- tags?: string[] | undefined;
2329
- onChain?: boolean | undefined;
2330
- } | undefined;
2331
- description?: string | undefined;
2332
2384
  owner_receive?: {
2333
2385
  received: {
2334
2386
  id: string;
@@ -2404,58 +2456,6 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2404
2456
  } | {
2405
2457
  op: "clear";
2406
2458
  } | undefined;
2407
- table?: {
2408
- op: "add perm by index";
2409
- entity: {
2410
- entities: {
2411
- name_or_address?: string | undefined;
2412
- local_mark_first?: boolean | undefined;
2413
- }[];
2414
- check_all_founded?: boolean | undefined;
2415
- };
2416
- index: number;
2417
- } | {
2418
- op: "set perm by index";
2419
- entity: {
2420
- entities: {
2421
- name_or_address?: string | undefined;
2422
- local_mark_first?: boolean | undefined;
2423
- }[];
2424
- check_all_founded?: boolean | undefined;
2425
- };
2426
- index: number;
2427
- } | {
2428
- op: "remove perm by index";
2429
- entity: {
2430
- entities: {
2431
- name_or_address?: string | undefined;
2432
- local_mark_first?: boolean | undefined;
2433
- }[];
2434
- check_all_founded?: boolean | undefined;
2435
- };
2436
- index: number;
2437
- } | {
2438
- op: "add perm by entity";
2439
- entity: {
2440
- name_or_address?: string | undefined;
2441
- local_mark_first?: boolean | undefined;
2442
- };
2443
- index: number[];
2444
- } | {
2445
- op: "set perm by entity";
2446
- entity: {
2447
- name_or_address?: string | undefined;
2448
- local_mark_first?: boolean | undefined;
2449
- };
2450
- index: number[];
2451
- } | {
2452
- op: "remove perm by entity";
2453
- entity: {
2454
- name_or_address?: string | undefined;
2455
- local_mark_first?: boolean | undefined;
2456
- };
2457
- index: number[];
2458
- } | undefined;
2459
2459
  apply?: string[] | undefined;
2460
2460
  }>;
2461
2461
  env: z.ZodOptional<z.ZodObject<{
@@ -2467,6 +2467,8 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2467
2467
  confirmed: z.ZodOptional<z.ZodBoolean>;
2468
2468
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2469
2469
  project: z.ZodOptional<z.ZodString>;
2470
+ client_schema_version: z.ZodOptional<z.ZodString>;
2471
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
2470
2472
  }, "strict", z.ZodTypeAny, {
2471
2473
  account: string;
2472
2474
  no_cache?: boolean | undefined;
@@ -2476,6 +2478,8 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2476
2478
  confirmed?: boolean | undefined;
2477
2479
  user_intent_phrases?: string[] | undefined;
2478
2480
  project?: string | undefined;
2481
+ client_schema_version?: string | undefined;
2482
+ schema_strict_mode?: boolean | undefined;
2479
2483
  }, {
2480
2484
  no_cache?: boolean | undefined;
2481
2485
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -2485,6 +2489,8 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2485
2489
  confirmed?: boolean | undefined;
2486
2490
  user_intent_phrases?: string[] | undefined;
2487
2491
  project?: string | undefined;
2492
+ client_schema_version?: string | undefined;
2493
+ schema_strict_mode?: boolean | undefined;
2488
2494
  }>>;
2489
2495
  submission: z.ZodOptional<z.ZodObject<{
2490
2496
  type: z.ZodLiteral<"submission">;
@@ -2675,6 +2681,58 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2675
2681
  onChain?: boolean | undefined;
2676
2682
  } | undefined;
2677
2683
  description?: string | undefined;
2684
+ table?: {
2685
+ op: "add perm by index";
2686
+ entity: {
2687
+ entities: {
2688
+ name_or_address?: string | undefined;
2689
+ local_mark_first?: boolean | undefined;
2690
+ }[];
2691
+ check_all_founded?: boolean | undefined;
2692
+ };
2693
+ index: number;
2694
+ } | {
2695
+ op: "set perm by index";
2696
+ entity: {
2697
+ entities: {
2698
+ name_or_address?: string | undefined;
2699
+ local_mark_first?: boolean | undefined;
2700
+ }[];
2701
+ check_all_founded?: boolean | undefined;
2702
+ };
2703
+ index: number;
2704
+ } | {
2705
+ op: "remove perm by index";
2706
+ entity: {
2707
+ entities: {
2708
+ name_or_address?: string | undefined;
2709
+ local_mark_first?: boolean | undefined;
2710
+ }[];
2711
+ check_all_founded?: boolean | undefined;
2712
+ };
2713
+ index: number;
2714
+ } | {
2715
+ op: "add perm by entity";
2716
+ entity: {
2717
+ name_or_address?: string | undefined;
2718
+ local_mark_first?: boolean | undefined;
2719
+ };
2720
+ index: number[];
2721
+ } | {
2722
+ op: "set perm by entity";
2723
+ entity: {
2724
+ name_or_address?: string | undefined;
2725
+ local_mark_first?: boolean | undefined;
2726
+ };
2727
+ index: number[];
2728
+ } | {
2729
+ op: "remove perm by entity";
2730
+ entity: {
2731
+ name_or_address?: string | undefined;
2732
+ local_mark_first?: boolean | undefined;
2733
+ };
2734
+ index: number[];
2735
+ } | undefined;
2678
2736
  owner_receive?: {
2679
2737
  received: {
2680
2738
  id: string;
@@ -2750,6 +2808,56 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2750
2808
  } | {
2751
2809
  op: "clear";
2752
2810
  } | undefined;
2811
+ apply?: string[] | undefined;
2812
+ };
2813
+ submission?: {
2814
+ type: "submission";
2815
+ guard: {
2816
+ object: string;
2817
+ impack: boolean;
2818
+ }[];
2819
+ submission: {
2820
+ guard: string;
2821
+ submission: {
2822
+ identifier: number;
2823
+ b_submission: boolean;
2824
+ 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 | import("@wowok/wowok").ValueType.Address | import("@wowok/wowok").ValueType.String | import("@wowok/wowok").ValueType.U8 | import("@wowok/wowok").ValueType.U16 | import("@wowok/wowok").ValueType.U32 | import("@wowok/wowok").ValueType.U64 | import("@wowok/wowok").ValueType.U128 | import("@wowok/wowok").ValueType.U256 | import("@wowok/wowok").ValueType.VecBool | import("@wowok/wowok").ValueType.VecAddress | import("@wowok/wowok").ValueType.VecString | import("@wowok/wowok").ValueType.VecU8 | import("@wowok/wowok").ValueType.VecU16 | import("@wowok/wowok").ValueType.VecU32 | import("@wowok/wowok").ValueType.VecU64 | import("@wowok/wowok").ValueType.VecU128 | import("@wowok/wowok").ValueType.VecU256 | import("@wowok/wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
2825
+ name: string;
2826
+ value?: string | number | boolean | {
2827
+ name_or_address?: string | undefined;
2828
+ local_mark_first?: boolean | undefined;
2829
+ } | {
2830
+ entities: {
2831
+ name_or_address?: string | undefined;
2832
+ local_mark_first?: boolean | undefined;
2833
+ }[];
2834
+ check_all_founded?: boolean | undefined;
2835
+ } | string[] | boolean[] | number[] | number[][] | undefined;
2836
+ object_type?: import("@wowok/wowok").ObjectType | undefined;
2837
+ }[];
2838
+ }[];
2839
+ } | undefined;
2840
+ env?: {
2841
+ account: string;
2842
+ no_cache?: boolean | undefined;
2843
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
2844
+ permission_guard?: string[] | undefined;
2845
+ referrer?: string | undefined;
2846
+ confirmed?: boolean | undefined;
2847
+ user_intent_phrases?: string[] | undefined;
2848
+ project?: string | undefined;
2849
+ client_schema_version?: string | undefined;
2850
+ schema_strict_mode?: boolean | undefined;
2851
+ } | undefined;
2852
+ }, {
2853
+ data: {
2854
+ object?: string | {
2855
+ name?: string | undefined;
2856
+ replaceExistName?: boolean | undefined;
2857
+ tags?: string[] | undefined;
2858
+ onChain?: boolean | undefined;
2859
+ } | undefined;
2860
+ description?: string | undefined;
2753
2861
  table?: {
2754
2862
  op: "add perm by index";
2755
2863
  entity: {
@@ -2802,54 +2910,6 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2802
2910
  };
2803
2911
  index: number[];
2804
2912
  } | undefined;
2805
- apply?: string[] | undefined;
2806
- };
2807
- submission?: {
2808
- type: "submission";
2809
- guard: {
2810
- object: string;
2811
- impack: boolean;
2812
- }[];
2813
- submission: {
2814
- guard: string;
2815
- submission: {
2816
- identifier: number;
2817
- b_submission: boolean;
2818
- 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 | import("@wowok/wowok").ValueType.Address | import("@wowok/wowok").ValueType.String | import("@wowok/wowok").ValueType.U8 | import("@wowok/wowok").ValueType.U16 | import("@wowok/wowok").ValueType.U32 | import("@wowok/wowok").ValueType.U64 | import("@wowok/wowok").ValueType.U128 | import("@wowok/wowok").ValueType.U256 | import("@wowok/wowok").ValueType.VecBool | import("@wowok/wowok").ValueType.VecAddress | import("@wowok/wowok").ValueType.VecString | import("@wowok/wowok").ValueType.VecU8 | import("@wowok/wowok").ValueType.VecU16 | import("@wowok/wowok").ValueType.VecU32 | import("@wowok/wowok").ValueType.VecU64 | import("@wowok/wowok").ValueType.VecU128 | import("@wowok/wowok").ValueType.VecU256 | import("@wowok/wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
2819
- name: string;
2820
- value?: string | number | boolean | {
2821
- name_or_address?: string | undefined;
2822
- local_mark_first?: boolean | undefined;
2823
- } | {
2824
- entities: {
2825
- name_or_address?: string | undefined;
2826
- local_mark_first?: boolean | undefined;
2827
- }[];
2828
- check_all_founded?: boolean | undefined;
2829
- } | string[] | boolean[] | number[] | number[][] | undefined;
2830
- object_type?: import("@wowok/wowok").ObjectType | undefined;
2831
- }[];
2832
- }[];
2833
- } | undefined;
2834
- env?: {
2835
- account: string;
2836
- no_cache?: boolean | undefined;
2837
- network?: import("@wowok/wowok").ENTRYPOINT | undefined;
2838
- permission_guard?: string[] | undefined;
2839
- referrer?: string | undefined;
2840
- confirmed?: boolean | undefined;
2841
- user_intent_phrases?: string[] | undefined;
2842
- project?: string | undefined;
2843
- } | undefined;
2844
- }, {
2845
- data: {
2846
- object?: string | {
2847
- name?: string | undefined;
2848
- replaceExistName?: boolean | undefined;
2849
- tags?: string[] | undefined;
2850
- onChain?: boolean | undefined;
2851
- } | undefined;
2852
- description?: string | undefined;
2853
2913
  owner_receive?: {
2854
2914
  received: {
2855
2915
  id: string;
@@ -2925,58 +2985,6 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2925
2985
  } | {
2926
2986
  op: "clear";
2927
2987
  } | undefined;
2928
- table?: {
2929
- op: "add perm by index";
2930
- entity: {
2931
- entities: {
2932
- name_or_address?: string | undefined;
2933
- local_mark_first?: boolean | undefined;
2934
- }[];
2935
- check_all_founded?: boolean | undefined;
2936
- };
2937
- index: number;
2938
- } | {
2939
- op: "set perm by index";
2940
- entity: {
2941
- entities: {
2942
- name_or_address?: string | undefined;
2943
- local_mark_first?: boolean | undefined;
2944
- }[];
2945
- check_all_founded?: boolean | undefined;
2946
- };
2947
- index: number;
2948
- } | {
2949
- op: "remove perm by index";
2950
- entity: {
2951
- entities: {
2952
- name_or_address?: string | undefined;
2953
- local_mark_first?: boolean | undefined;
2954
- }[];
2955
- check_all_founded?: boolean | undefined;
2956
- };
2957
- index: number;
2958
- } | {
2959
- op: "add perm by entity";
2960
- entity: {
2961
- name_or_address?: string | undefined;
2962
- local_mark_first?: boolean | undefined;
2963
- };
2964
- index: number[];
2965
- } | {
2966
- op: "set perm by entity";
2967
- entity: {
2968
- name_or_address?: string | undefined;
2969
- local_mark_first?: boolean | undefined;
2970
- };
2971
- index: number[];
2972
- } | {
2973
- op: "remove perm by entity";
2974
- entity: {
2975
- name_or_address?: string | undefined;
2976
- local_mark_first?: boolean | undefined;
2977
- };
2978
- index: number[];
2979
- } | undefined;
2980
2988
  apply?: string[] | undefined;
2981
2989
  };
2982
2990
  submission?: {
@@ -3015,6 +3023,8 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
3015
3023
  confirmed?: boolean | undefined;
3016
3024
  user_intent_phrases?: string[] | undefined;
3017
3025
  project?: string | undefined;
3026
+ client_schema_version?: string | undefined;
3027
+ schema_strict_mode?: boolean | undefined;
3018
3028
  } | undefined;
3019
3029
  }>;
3020
3030
  export type RemarkSet = z.infer<typeof RemarkSetSchema>;
@@ -1310,6 +1310,8 @@ export declare const CallPersonal_InputSchema: z.ZodObject<{
1310
1310
  confirmed: z.ZodOptional<z.ZodBoolean>;
1311
1311
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1312
1312
  project: z.ZodOptional<z.ZodString>;
1313
+ client_schema_version: z.ZodOptional<z.ZodString>;
1314
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
1313
1315
  }, "strict", z.ZodTypeAny, {
1314
1316
  account: string;
1315
1317
  no_cache?: boolean | undefined;
@@ -1319,6 +1321,8 @@ export declare const CallPersonal_InputSchema: z.ZodObject<{
1319
1321
  confirmed?: boolean | undefined;
1320
1322
  user_intent_phrases?: string[] | undefined;
1321
1323
  project?: string | undefined;
1324
+ client_schema_version?: string | undefined;
1325
+ schema_strict_mode?: boolean | undefined;
1322
1326
  }, {
1323
1327
  no_cache?: boolean | undefined;
1324
1328
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -1328,6 +1332,8 @@ export declare const CallPersonal_InputSchema: z.ZodObject<{
1328
1332
  confirmed?: boolean | undefined;
1329
1333
  user_intent_phrases?: string[] | undefined;
1330
1334
  project?: string | undefined;
1335
+ client_schema_version?: string | undefined;
1336
+ schema_strict_mode?: boolean | undefined;
1331
1337
  }>>;
1332
1338
  }, "strict", z.ZodTypeAny, {
1333
1339
  data: {
@@ -1399,6 +1405,8 @@ export declare const CallPersonal_InputSchema: z.ZodObject<{
1399
1405
  confirmed?: boolean | undefined;
1400
1406
  user_intent_phrases?: string[] | undefined;
1401
1407
  project?: string | undefined;
1408
+ client_schema_version?: string | undefined;
1409
+ schema_strict_mode?: boolean | undefined;
1402
1410
  } | undefined;
1403
1411
  }, {
1404
1412
  data: {
@@ -1470,6 +1478,8 @@ export declare const CallPersonal_InputSchema: z.ZodObject<{
1470
1478
  confirmed?: boolean | undefined;
1471
1479
  user_intent_phrases?: string[] | undefined;
1472
1480
  project?: string | undefined;
1481
+ client_schema_version?: string | undefined;
1482
+ schema_strict_mode?: boolean | undefined;
1473
1483
  } | undefined;
1474
1484
  }>;
1475
1485
  export type InformationAdd = z.infer<typeof InformationAddSchema>;
@@ -396,6 +396,8 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
396
396
  confirmed: z.ZodOptional<z.ZodBoolean>;
397
397
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
398
398
  project: z.ZodOptional<z.ZodString>;
399
+ client_schema_version: z.ZodOptional<z.ZodString>;
400
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
399
401
  }, "strict", z.ZodTypeAny, {
400
402
  account: string;
401
403
  no_cache?: boolean | undefined;
@@ -405,6 +407,8 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
405
407
  confirmed?: boolean | undefined;
406
408
  user_intent_phrases?: string[] | undefined;
407
409
  project?: string | undefined;
410
+ client_schema_version?: string | undefined;
411
+ schema_strict_mode?: boolean | undefined;
408
412
  }, {
409
413
  no_cache?: boolean | undefined;
410
414
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -414,6 +418,8 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
414
418
  confirmed?: boolean | undefined;
415
419
  user_intent_phrases?: string[] | undefined;
416
420
  project?: string | undefined;
421
+ client_schema_version?: string | undefined;
422
+ schema_strict_mode?: boolean | undefined;
417
423
  }>>;
418
424
  submission: z.ZodOptional<z.ZodObject<{
419
425
  type: z.ZodLiteral<"submission">;
@@ -665,6 +671,8 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
665
671
  confirmed?: boolean | undefined;
666
672
  user_intent_phrases?: string[] | undefined;
667
673
  project?: string | undefined;
674
+ client_schema_version?: string | undefined;
675
+ schema_strict_mode?: boolean | undefined;
668
676
  } | undefined;
669
677
  }, {
670
678
  data: {
@@ -736,5 +744,7 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
736
744
  confirmed?: boolean | undefined;
737
745
  user_intent_phrases?: string[] | undefined;
738
746
  project?: string | undefined;
747
+ client_schema_version?: string | undefined;
748
+ schema_strict_mode?: boolean | undefined;
739
749
  } | undefined;
740
750
  }>;