@wowok/agent-mcp 2.3.16 → 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 (136) 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 +45 -31
  5. package/dist/customer/order-monitor.js +57 -57
  6. package/dist/customer/order-strategy.js +89 -89
  7. package/dist/customer/post-purchase.js +97 -97
  8. package/dist/customer/reminder-system.js +26 -26
  9. package/dist/customer/risk-assessment.js +46 -46
  10. package/dist/customer/types.d.ts +4 -4
  11. package/dist/customer/types.js +4 -4
  12. package/dist/customer/user-preferences.d.ts +3 -0
  13. package/dist/customer/user-preferences.js +59 -50
  14. package/dist/experience/intent-distill.js +6 -6
  15. package/dist/experience/realtime-feedback.js +17 -0
  16. package/dist/index.js +360 -273
  17. package/dist/knowledge/acquisition-flywheel.d.ts +3 -0
  18. package/dist/knowledge/acquisition-flywheel.js +73 -64
  19. package/dist/knowledge/arbitration-trust.js +10 -10
  20. package/dist/knowledge/demand-matching.js +8 -8
  21. package/dist/knowledge/dynamic-pricing.js +18 -18
  22. package/dist/knowledge/flywheel-loop.js +11 -11
  23. package/dist/knowledge/glossary.js +22 -22
  24. package/dist/knowledge/guard-ledger.d.ts +19 -0
  25. package/dist/knowledge/guard-ledger.js +246 -0
  26. package/dist/knowledge/guard-lint.d.ts +76 -0
  27. package/dist/knowledge/guard-lint.js +590 -0
  28. package/dist/knowledge/guard-puzzle.d.ts +188 -0
  29. package/dist/knowledge/guard-puzzle.js +804 -0
  30. package/dist/knowledge/guard-risk.d.ts +67 -0
  31. package/dist/knowledge/guard-risk.js +1046 -0
  32. package/dist/knowledge/guard-templates.d.ts +37 -0
  33. package/dist/knowledge/guard-templates.js +329 -0
  34. package/dist/knowledge/guard-translation.d.ts +58 -0
  35. package/dist/knowledge/guard-translation.js +1118 -0
  36. package/dist/knowledge/index.d.ts +17 -0
  37. package/dist/knowledge/index.js +17 -0
  38. package/dist/knowledge/industry-evolution.js +29 -29
  39. package/dist/knowledge/industry-generalizer.js +52 -52
  40. package/dist/knowledge/industry-registry.d.ts +1 -2
  41. package/dist/knowledge/industry-registry.js +43 -36
  42. package/dist/knowledge/intent-metrics.js +67 -67
  43. package/dist/knowledge/process-model.js +80 -80
  44. package/dist/knowledge/reputation-rules.js +9 -9
  45. package/dist/knowledge/reward-templates.js +51 -51
  46. package/dist/knowledge/safety-rules.js +63 -2
  47. package/dist/knowledge/tool-constraints.js +17 -11
  48. package/dist/knowledge/trust-metrics.js +26 -26
  49. package/dist/safety/confirm-gate.d.ts +4 -2
  50. package/dist/safety/confirm-gate.js +48 -4
  51. package/dist/schema/call/allocation.d.ts +24 -14
  52. package/dist/schema/call/arbitration.d.ts +142 -132
  53. package/dist/schema/call/base.d.ts +901 -43
  54. package/dist/schema/call/base.js +77 -13
  55. package/dist/schema/call/bridge-handler.js +15 -2
  56. package/dist/schema/call/bridge.d.ts +795 -27
  57. package/dist/schema/call/bridge.js +37 -0
  58. package/dist/schema/call/contact.d.ts +10 -0
  59. package/dist/schema/call/demand.d.ts +94 -84
  60. package/dist/schema/call/guard.d.ts +229 -46
  61. package/dist/schema/call/guard.js +50 -0
  62. package/dist/schema/call/handler.js +46 -14
  63. package/dist/schema/call/machine.d.ts +158 -138
  64. package/dist/schema/call/order.d.ts +10 -0
  65. package/dist/schema/call/payment.d.ts +10 -0
  66. package/dist/schema/call/permission.d.ts +314 -304
  67. package/dist/schema/call/personal.d.ts +10 -0
  68. package/dist/schema/call/progress.d.ts +10 -0
  69. package/dist/schema/call/proof.d.ts +20 -0
  70. package/dist/schema/call/repository.d.ts +32 -22
  71. package/dist/schema/call/reward.d.ts +10 -0
  72. package/dist/schema/call/semantic.d.ts +9 -2
  73. package/dist/schema/call/semantic.js +617 -25
  74. package/dist/schema/call/service.d.ts +20 -10
  75. package/dist/schema/call/treasury.d.ts +10 -0
  76. package/dist/schema/config/index.d.ts +18 -0
  77. package/dist/schema/config/index.js +17 -0
  78. package/dist/schema/index.d.ts +6 -0
  79. package/dist/schema/index.js +5 -0
  80. package/dist/schema/local/index.d.ts +9 -9
  81. package/dist/schema/local/index.js +9 -0
  82. package/dist/schema/local/wip.d.ts +39 -19
  83. package/dist/schema/local/wip.js +5 -5
  84. package/dist/schema/messenger/index.d.ts +376 -55
  85. package/dist/schema/messenger/index.js +19 -19
  86. package/dist/schema/operations.d.ts +1881 -681
  87. package/dist/schema/operations.js +91 -96
  88. package/dist/schema/project/index.d.ts +21 -0
  89. package/dist/schema/project/index.js +32 -0
  90. package/dist/schema/query/index.d.ts +1074 -168
  91. package/dist/schema/query/index.js +8 -8
  92. package/dist/schema/schema-query/index.d.ts +33 -0
  93. package/dist/schema/schema-query/index.js +36 -0
  94. package/dist/schema/schema-version.d.ts +25 -0
  95. package/dist/schema/schema-version.js +76 -0
  96. package/dist/schema/trust/index.d.ts +407 -0
  97. package/dist/schema/trust/index.js +113 -0
  98. package/dist/schema/utils/guard-parser.js +4 -4
  99. package/dist/schema/utils/node-parser.js +14 -14
  100. package/dist/schemas/bridge_operation.output.json +233 -9
  101. package/dist/schemas/bridge_operation.schema.json +67 -8
  102. package/dist/schemas/config_operation.output.json +18 -0
  103. package/dist/schemas/config_operation.schema.json +34 -0
  104. package/dist/schemas/guard-node-schema.json +82 -0
  105. package/dist/schemas/guard2file.schema.json +8 -0
  106. package/dist/schemas/index.json +19 -1
  107. package/dist/schemas/machineNode2file.schema.json +8 -0
  108. package/dist/schemas/messenger_operation.output.json +236 -10
  109. package/dist/schemas/onchain_events.output.json +718 -0
  110. package/dist/schemas/onchain_operations.output.json +286 -11
  111. package/dist/schemas/onchain_operations.schema.json +19 -16
  112. package/dist/schemas/onchain_operations_allocation.schema.json +8 -0
  113. package/dist/schemas/onchain_operations_arbitration.schema.json +8 -0
  114. package/dist/schemas/onchain_operations_contact.schema.json +8 -0
  115. package/dist/schemas/onchain_operations_demand.schema.json +8 -0
  116. package/dist/schemas/onchain_operations_gen_passport.schema.json +16 -0
  117. package/dist/schemas/onchain_operations_guard.schema.json +11 -16
  118. package/dist/schemas/onchain_operations_machine.schema.json +8 -0
  119. package/dist/schemas/onchain_operations_order.schema.json +8 -0
  120. package/dist/schemas/onchain_operations_payment.schema.json +8 -0
  121. package/dist/schemas/onchain_operations_permission.schema.json +8 -0
  122. package/dist/schemas/onchain_operations_personal.schema.json +8 -0
  123. package/dist/schemas/onchain_operations_progress.schema.json +8 -0
  124. package/dist/schemas/onchain_operations_repository.schema.json +8 -0
  125. package/dist/schemas/onchain_operations_reward.schema.json +8 -0
  126. package/dist/schemas/onchain_operations_service.schema.json +8 -0
  127. package/dist/schemas/onchain_operations_treasury.schema.json +8 -0
  128. package/dist/schemas/onchain_table_data.output.json +718 -0
  129. package/dist/schemas/project_operation.output.json +18 -0
  130. package/dist/schemas/project_operation.schema.json +42 -0
  131. package/dist/schemas/query_toolkit.schema.json +360 -368
  132. package/dist/schemas/schema_query.schema.json +6 -3
  133. package/dist/schemas/trust_score.output.json +327 -0
  134. package/dist/schemas/trust_score.schema.json +46 -0
  135. package/dist/schemas/wip_file.output.json +24 -1
  136. package/package.json +2 -2
@@ -1393,19 +1393,58 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
1393
1393
  onChain?: boolean | undefined;
1394
1394
  } | undefined;
1395
1395
  description?: string | undefined;
1396
- owner_receive?: {
1397
- received: {
1398
- id: string;
1399
- balance: string | number;
1400
- payment: string;
1401
- }[];
1402
- balance: string | number;
1403
- token_type: string;
1404
- } | "recently" | {
1405
- type: string;
1406
- id: string;
1407
- content_raw?: any;
1408
- }[] | 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;
1409
1448
  entity?: {
1410
1449
  op: "swap";
1411
1450
  entity1: {
@@ -1443,6 +1482,19 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
1443
1482
  local_mark_first?: boolean | undefined;
1444
1483
  };
1445
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;
1446
1498
  um?: string | null | undefined;
1447
1499
  builder?: {
1448
1500
  name_or_address?: string | undefined;
@@ -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,28 +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
- owner_receive?: {
1533
- received: {
1534
- id: string;
1535
- balance: string | number;
1536
- payment: string;
1537
- }[];
1538
- balance: string | number;
1539
- token_type: string;
1540
- } | "recently" | {
1541
- type: string;
1542
- id: string;
1543
- content_raw?: any;
1544
- }[] | undefined;
1545
1584
  entity?: {
1546
1585
  op: "swap";
1547
1586
  entity1: {
@@ -1579,6 +1618,19 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
1579
1618
  local_mark_first?: boolean | undefined;
1580
1619
  };
1581
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;
1582
1634
  um?: string | null | undefined;
1583
1635
  builder?: {
1584
1636
  name_or_address?: string | undefined;
@@ -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,19 +2193,58 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2193
2193
  onChain?: boolean | undefined;
2194
2194
  } | undefined;
2195
2195
  description?: string | undefined;
2196
- owner_receive?: {
2197
- received: {
2198
- id: string;
2199
- balance: string | number;
2200
- payment: string;
2201
- }[];
2202
- balance: string | number;
2203
- token_type: string;
2204
- } | "recently" | {
2205
- type: string;
2206
- id: string;
2207
- content_raw?: any;
2208
- }[] | 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;
2209
2248
  entity?: {
2210
2249
  op: "swap";
2211
2250
  entity1: {
@@ -2243,6 +2282,19 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2243
2282
  local_mark_first?: boolean | undefined;
2244
2283
  };
2245
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;
2246
2298
  um?: string | null | undefined;
2247
2299
  builder?: {
2248
2300
  name_or_address?: string | undefined;
@@ -2268,10 +2320,19 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2268
2320
  } | {
2269
2321
  op: "clear";
2270
2322
  } | undefined;
2271
- table?: {
2272
- op: "add perm by index";
2273
- entity: {
2274
- entities: {
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
+ table?: {
2333
+ op: "add perm by index";
2334
+ entity: {
2335
+ entities: {
2275
2336
  name_or_address?: string | undefined;
2276
2337
  local_mark_first?: boolean | undefined;
2277
2338
  }[];
@@ -2320,28 +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
- owner_receive?: {
2333
- received: {
2334
- id: string;
2335
- balance: string | number;
2336
- payment: string;
2337
- }[];
2338
- balance: string | number;
2339
- token_type: string;
2340
- } | "recently" | {
2341
- type: string;
2342
- id: string;
2343
- content_raw?: any;
2344
- }[] | undefined;
2345
2384
  entity?: {
2346
2385
  op: "swap";
2347
2386
  entity1: {
@@ -2379,6 +2418,19 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2379
2418
  local_mark_first?: boolean | undefined;
2380
2419
  };
2381
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;
2382
2434
  um?: string | null | undefined;
2383
2435
  builder?: {
2384
2436
  name_or_address?: string | undefined;
@@ -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,19 +2681,58 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2675
2681
  onChain?: boolean | undefined;
2676
2682
  } | undefined;
2677
2683
  description?: string | undefined;
2678
- owner_receive?: {
2679
- received: {
2680
- id: string;
2681
- balance: string | number;
2682
- payment: string;
2683
- }[];
2684
- balance: string | number;
2685
- token_type: string;
2686
- } | "recently" | {
2687
- type: string;
2688
- id: string;
2689
- content_raw?: any;
2690
- }[] | 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;
2691
2736
  entity?: {
2692
2737
  op: "swap";
2693
2738
  entity1: {
@@ -2725,6 +2770,19 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2725
2770
  local_mark_first?: boolean | undefined;
2726
2771
  };
2727
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;
2728
2786
  um?: string | null | undefined;
2729
2787
  builder?: {
2730
2788
  name_or_address?: string | undefined;
@@ -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,67 +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
- owner_receive?: {
2854
- received: {
2855
- id: string;
2856
- balance: string | number;
2857
- payment: string;
2858
- }[];
2859
- balance: string | number;
2860
- token_type: string;
2861
- } | "recently" | {
2862
- type: string;
2863
- id: string;
2864
- content_raw?: any;
2865
- }[] | undefined;
2866
2913
  entity?: {
2867
2914
  op: "swap";
2868
2915
  entity1: {
@@ -2900,6 +2947,19 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2900
2947
  local_mark_first?: boolean | undefined;
2901
2948
  };
2902
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;
2903
2963
  um?: string | null | undefined;
2904
2964
  builder?: {
2905
2965
  name_or_address?: string | undefined;
@@ -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>;