@wowok/agent-mcp 2.3.14 → 2.3.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) 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/industry-risks.d.ts +36 -0
  6. package/dist/customer/industry-risks.js +424 -0
  7. package/dist/customer/info-puzzle.d.ts +102 -0
  8. package/dist/customer/info-puzzle.js +312 -0
  9. package/dist/customer/order-monitor.d.ts +75 -0
  10. package/dist/customer/order-monitor.js +327 -0
  11. package/dist/customer/order-strategy.d.ts +36 -0
  12. package/dist/customer/order-strategy.js +373 -0
  13. package/dist/customer/post-purchase.d.ts +42 -0
  14. package/dist/customer/post-purchase.js +350 -0
  15. package/dist/customer/reminder-system.d.ts +42 -0
  16. package/dist/customer/reminder-system.js +295 -0
  17. package/dist/customer/risk-assessment.d.ts +8 -0
  18. package/dist/customer/risk-assessment.js +337 -0
  19. package/dist/customer/types.d.ts +193 -0
  20. package/dist/customer/types.js +13 -0
  21. package/dist/customer/user-preferences.d.ts +67 -0
  22. package/dist/customer/user-preferences.js +451 -0
  23. package/dist/experience/experience-reuse.d.ts +10 -0
  24. package/dist/experience/experience-reuse.js +103 -0
  25. package/dist/experience/index.d.ts +6 -0
  26. package/dist/experience/index.js +5 -0
  27. package/dist/experience/intent-distill.d.ts +3 -0
  28. package/dist/experience/intent-distill.js +83 -0
  29. package/dist/experience/realtime-feedback.d.ts +5 -0
  30. package/dist/experience/realtime-feedback.js +77 -0
  31. package/dist/experience/types.d.ts +50 -0
  32. package/dist/experience/types.js +1 -0
  33. package/dist/experience/user-profile.d.ts +25 -0
  34. package/dist/experience/user-profile.js +171 -0
  35. package/dist/index.js +570 -186
  36. package/dist/knowledge/acquisition-flywheel.d.ts +50 -0
  37. package/dist/knowledge/acquisition-flywheel.js +183 -0
  38. package/dist/knowledge/arbitration-trust.d.ts +24 -0
  39. package/dist/knowledge/arbitration-trust.js +117 -0
  40. package/dist/knowledge/audit-rules.d.ts +28 -0
  41. package/dist/knowledge/audit-rules.js +141 -0
  42. package/dist/knowledge/demand-matching.d.ts +29 -0
  43. package/dist/knowledge/demand-matching.js +132 -0
  44. package/dist/knowledge/dynamic-pricing.d.ts +31 -0
  45. package/dist/knowledge/dynamic-pricing.js +87 -0
  46. package/dist/knowledge/flywheel-loop.d.ts +87 -0
  47. package/dist/knowledge/flywheel-loop.js +378 -0
  48. package/dist/knowledge/glossary.d.ts +18 -0
  49. package/dist/knowledge/glossary.js +209 -0
  50. package/dist/knowledge/index.d.ts +64 -0
  51. package/dist/knowledge/index.js +66 -0
  52. package/dist/knowledge/industry-evolution.d.ts +82 -0
  53. package/dist/knowledge/industry-evolution.js +323 -0
  54. package/dist/knowledge/industry-generalizer.d.ts +17 -0
  55. package/dist/knowledge/industry-generalizer.js +381 -0
  56. package/dist/knowledge/industry-registry.d.ts +49 -0
  57. package/dist/knowledge/industry-registry.js +167 -0
  58. package/dist/knowledge/intent-metrics.d.ts +42 -0
  59. package/dist/knowledge/intent-metrics.js +566 -0
  60. package/dist/knowledge/process-model.d.ts +24 -0
  61. package/dist/knowledge/process-model.js +160 -0
  62. package/dist/knowledge/reputation-rules.d.ts +42 -0
  63. package/dist/knowledge/reputation-rules.js +99 -0
  64. package/dist/knowledge/reward-templates.d.ts +25 -0
  65. package/dist/knowledge/reward-templates.js +125 -0
  66. package/dist/knowledge/safety-rules.d.ts +36 -0
  67. package/dist/knowledge/safety-rules.js +171 -0
  68. package/dist/knowledge/tool-constraints.d.ts +30 -0
  69. package/dist/knowledge/tool-constraints.js +185 -0
  70. package/dist/knowledge/trust-metrics.d.ts +37 -0
  71. package/dist/knowledge/trust-metrics.js +138 -0
  72. package/dist/loop-engineering/diagnose.d.ts +3 -2
  73. package/dist/loop-engineering/diagnose.js +94 -0
  74. package/dist/loop-engineering/improve.d.ts +1 -1
  75. package/dist/loop-engineering/improve.js +52 -1
  76. package/dist/project/graph.d.ts +71 -0
  77. package/dist/project/graph.js +314 -0
  78. package/dist/project/index.d.ts +62 -0
  79. package/dist/project/index.js +167 -0
  80. package/dist/project/namespace.d.ts +62 -0
  81. package/dist/project/namespace.js +181 -0
  82. package/dist/project/query.d.ts +40 -0
  83. package/dist/project/query.js +110 -0
  84. package/dist/safety/confirm-gate.d.ts +15 -0
  85. package/dist/safety/confirm-gate.js +44 -0
  86. package/dist/safety/index.d.ts +3 -0
  87. package/dist/safety/index.js +3 -0
  88. package/dist/safety/preview.d.ts +2 -0
  89. package/dist/safety/preview.js +36 -0
  90. package/dist/schema/call/allocation.d.ts +15 -0
  91. package/dist/schema/call/arbitration.d.ts +111 -96
  92. package/dist/schema/call/base.d.ts +1070 -44
  93. package/dist/schema/call/base.js +69 -1
  94. package/dist/schema/call/bridge.d.ts +709 -52
  95. package/dist/schema/call/bridge.js +13 -2
  96. package/dist/schema/call/contact.d.ts +15 -0
  97. package/dist/schema/call/demand.d.ts +69 -54
  98. package/dist/schema/call/guard.d.ts +125 -80
  99. package/dist/schema/call/handler.d.ts +3 -0
  100. package/dist/schema/call/handler.js +14 -0
  101. package/dist/schema/call/machine.d.ts +830 -800
  102. package/dist/schema/call/order.d.ts +15 -0
  103. package/dist/schema/call/payment.d.ts +15 -0
  104. package/dist/schema/call/permission.d.ts +15 -0
  105. package/dist/schema/call/personal.d.ts +15 -0
  106. package/dist/schema/call/progress.d.ts +15 -0
  107. package/dist/schema/call/proof.d.ts +42 -12
  108. package/dist/schema/call/proof.js +3 -3
  109. package/dist/schema/call/repository.d.ts +91 -76
  110. package/dist/schema/call/reward.d.ts +45 -30
  111. package/dist/schema/call/semantic.d.ts +1 -0
  112. package/dist/schema/call/semantic.js +217 -0
  113. package/dist/schema/call/service.d.ts +407 -392
  114. package/dist/schema/call/treasury.d.ts +15 -0
  115. package/dist/schema/common/index.js +3 -3
  116. package/dist/schema/local/index.d.ts +228 -72
  117. package/dist/schema/local/index.js +33 -6
  118. package/dist/schema/messenger/index.d.ts +668 -50
  119. package/dist/schema/messenger/index.js +9 -0
  120. package/dist/schema/operations.d.ts +1693 -1369
  121. package/dist/schema/operations.js +2 -2
  122. package/dist/schema/query/index.d.ts +1614 -1614
  123. package/dist/schema/query/index.js +30 -27
  124. package/dist/schemas/account_operation.output.json +25 -16
  125. package/dist/schemas/account_operation.schema.json +1 -1
  126. package/dist/schemas/bridge_operation.output.json +520 -0
  127. package/dist/schemas/bridge_operation.schema.json +15 -0
  128. package/dist/schemas/guard2file.schema.json +15 -0
  129. package/dist/schemas/index.json +1 -1
  130. package/dist/schemas/local_info_operation.output.json +23 -0
  131. package/dist/schemas/local_info_operation.schema.json +1 -1
  132. package/dist/schemas/local_mark_operation.output.json +24 -1
  133. package/dist/schemas/local_mark_operation.schema.json +4 -4
  134. package/dist/schemas/machineNode2file.schema.json +15 -0
  135. package/dist/schemas/messenger_operation.output.json +528 -0
  136. package/dist/schemas/onchain_operations.output.json +350 -16
  137. package/dist/schemas/onchain_operations.schema.json +96 -23
  138. package/dist/schemas/onchain_operations_allocation.schema.json +15 -0
  139. package/dist/schemas/onchain_operations_arbitration.schema.json +15 -0
  140. package/dist/schemas/onchain_operations_contact.schema.json +15 -0
  141. package/dist/schemas/onchain_operations_demand.schema.json +15 -0
  142. package/dist/schemas/onchain_operations_gen_passport.schema.json +30 -0
  143. package/dist/schemas/onchain_operations_guard.schema.json +15 -0
  144. package/dist/schemas/onchain_operations_machine.schema.json +81 -23
  145. package/dist/schemas/onchain_operations_order.schema.json +15 -0
  146. package/dist/schemas/onchain_operations_payment.schema.json +15 -0
  147. package/dist/schemas/onchain_operations_permission.schema.json +15 -0
  148. package/dist/schemas/onchain_operations_personal.schema.json +15 -0
  149. package/dist/schemas/onchain_operations_progress.schema.json +15 -0
  150. package/dist/schemas/onchain_operations_repository.schema.json +15 -0
  151. package/dist/schemas/onchain_operations_reward.schema.json +15 -0
  152. package/dist/schemas/onchain_operations_service.schema.json +15 -0
  153. package/dist/schemas/onchain_operations_treasury.schema.json +15 -0
  154. package/dist/schemas/onchain_table_data.output.json +221 -69
  155. package/dist/schemas/onchain_table_data.schema.json +2 -2
  156. package/package.json +2 -2
@@ -1289,48 +1289,31 @@ export declare const CallService_DataSchema: z.ZodObject<{
1289
1289
  };
1290
1290
  description?: string | undefined;
1291
1291
  publish?: boolean | undefined;
1292
+ buy_guard?: string | null | undefined;
1292
1293
  machine?: string | null | undefined;
1293
- discount?: {
1294
- name: string;
1295
- recipient: {
1296
- entities: {
1297
- name_or_address?: string | undefined;
1298
- local_mark_first?: boolean | undefined;
1294
+ order_allocators?: {
1295
+ description: string;
1296
+ allocators: {
1297
+ guard: string;
1298
+ sharing: {
1299
+ sharing: string | number;
1300
+ who: {
1301
+ GuardIdentifier: number;
1302
+ } | {
1303
+ Entity: {
1304
+ name_or_address?: string | undefined;
1305
+ local_mark_first?: boolean | undefined;
1306
+ };
1307
+ } | {
1308
+ Signer: "signer";
1309
+ };
1310
+ mode: "Amount" | "Rate" | "Surplus";
1299
1311
  }[];
1300
- check_all_founded?: boolean | undefined;
1301
- };
1302
- count: number;
1303
- discount_type: import("@wowok/wowok").DiscountType;
1304
- transferable: boolean;
1305
- discount_value: string | number;
1306
- time_ms_end: number;
1307
- benchmark?: string | number | undefined;
1308
- time_ms_start?: number | undefined;
1309
- } | undefined;
1310
- location?: string | undefined;
1311
- owner_receive?: {
1312
- received: {
1313
- id: string;
1314
- balance: string | number;
1315
- payment: string;
1312
+ max?: string | number | null | undefined;
1313
+ fix?: string | number | undefined;
1316
1314
  }[];
1317
- balance: string | number;
1318
- token_type: string;
1319
- } | "recently" | {
1320
- type: string;
1321
- id: string;
1322
- content_raw?: any;
1323
- }[] | undefined;
1324
- rewards?: {
1325
- op: "set" | "add";
1326
- objects: string[];
1327
- } | {
1328
- op: "remove";
1329
- objects: string[];
1330
- } | {
1331
- op: "clear";
1332
- } | undefined;
1333
- um?: string | null | undefined;
1315
+ threshold: string | number;
1316
+ } | null | undefined;
1334
1317
  sales?: {
1335
1318
  op: "add";
1336
1319
  sales: {
@@ -1357,7 +1340,24 @@ export declare const CallService_DataSchema: z.ZodObject<{
1357
1340
  } | {
1358
1341
  op: "clear";
1359
1342
  } | undefined;
1360
- repositories?: {
1343
+ discount?: {
1344
+ name: string;
1345
+ recipient: {
1346
+ entities: {
1347
+ name_or_address?: string | undefined;
1348
+ local_mark_first?: boolean | undefined;
1349
+ }[];
1350
+ check_all_founded?: boolean | undefined;
1351
+ };
1352
+ count: number;
1353
+ discount_type: import("@wowok/wowok").DiscountType;
1354
+ transferable: boolean;
1355
+ discount_value: string | number;
1356
+ time_ms_end: number;
1357
+ benchmark?: string | number | undefined;
1358
+ time_ms_start?: number | undefined;
1359
+ } | undefined;
1360
+ rewards?: {
1361
1361
  op: "set" | "add";
1362
1362
  objects: string[];
1363
1363
  } | {
@@ -1366,8 +1366,6 @@ export declare const CallService_DataSchema: z.ZodObject<{
1366
1366
  } | {
1367
1367
  op: "clear";
1368
1368
  } | undefined;
1369
- buy_guard?: string | null | undefined;
1370
- customer_required?: string[] | undefined;
1371
1369
  arbitrations?: {
1372
1370
  op: "set" | "add";
1373
1371
  objects: string[];
@@ -1377,30 +1375,32 @@ export declare const CallService_DataSchema: z.ZodObject<{
1377
1375
  } | {
1378
1376
  op: "clear";
1379
1377
  } | undefined;
1380
- order_allocators?: {
1381
- description: string;
1382
- allocators: {
1383
- guard: string;
1384
- sharing: {
1385
- sharing: string | number;
1386
- who: {
1387
- GuardIdentifier: number;
1388
- } | {
1389
- Entity: {
1390
- name_or_address?: string | undefined;
1391
- local_mark_first?: boolean | undefined;
1392
- };
1393
- } | {
1394
- Signer: "signer";
1395
- };
1396
- mode: "Amount" | "Rate" | "Surplus";
1397
- }[];
1398
- max?: string | number | null | undefined;
1399
- fix?: string | number | undefined;
1400
- }[];
1401
- threshold: string | number;
1402
- } | null | undefined;
1403
1378
  pause?: boolean | undefined;
1379
+ location?: string | undefined;
1380
+ owner_receive?: {
1381
+ received: {
1382
+ id: string;
1383
+ balance: string | number;
1384
+ payment: string;
1385
+ }[];
1386
+ balance: string | number;
1387
+ token_type: string;
1388
+ } | "recently" | {
1389
+ type: string;
1390
+ id: string;
1391
+ content_raw?: any;
1392
+ }[] | undefined;
1393
+ um?: string | null | undefined;
1394
+ repositories?: {
1395
+ op: "set" | "add";
1396
+ objects: string[];
1397
+ } | {
1398
+ op: "remove";
1399
+ objects: string[];
1400
+ } | {
1401
+ op: "clear";
1402
+ } | undefined;
1403
+ customer_required?: string[] | undefined;
1404
1404
  order_new?: {
1405
1405
  buy: {
1406
1406
  items: {
@@ -1481,48 +1481,31 @@ export declare const CallService_DataSchema: z.ZodObject<{
1481
1481
  };
1482
1482
  description?: string | undefined;
1483
1483
  publish?: boolean | undefined;
1484
+ buy_guard?: string | null | undefined;
1484
1485
  machine?: string | null | undefined;
1485
- discount?: {
1486
- name: string;
1487
- recipient: {
1488
- entities: {
1489
- name_or_address?: string | undefined;
1490
- local_mark_first?: boolean | undefined;
1486
+ order_allocators?: {
1487
+ description: string;
1488
+ allocators: {
1489
+ guard: string;
1490
+ sharing: {
1491
+ sharing: string | number;
1492
+ who: {
1493
+ GuardIdentifier: number;
1494
+ } | {
1495
+ Entity: {
1496
+ name_or_address?: string | undefined;
1497
+ local_mark_first?: boolean | undefined;
1498
+ };
1499
+ } | {
1500
+ Signer: "signer";
1501
+ };
1502
+ mode: "Amount" | "Rate" | "Surplus";
1491
1503
  }[];
1492
- check_all_founded?: boolean | undefined;
1493
- };
1494
- count: number;
1495
- discount_type: import("@wowok/wowok").DiscountType;
1496
- transferable: boolean;
1497
- discount_value: string | number;
1498
- time_ms_end: number;
1499
- benchmark?: string | number | undefined;
1500
- time_ms_start?: number | undefined;
1501
- } | undefined;
1502
- location?: string | undefined;
1503
- owner_receive?: {
1504
- received: {
1505
- id: string;
1506
- balance: string | number;
1507
- payment: string;
1504
+ max?: string | number | null | undefined;
1505
+ fix?: string | number | undefined;
1508
1506
  }[];
1509
- balance: string | number;
1510
- token_type: string;
1511
- } | "recently" | {
1512
- type: string;
1513
- id: string;
1514
- content_raw?: any;
1515
- }[] | undefined;
1516
- rewards?: {
1517
- op: "set" | "add";
1518
- objects: string[];
1519
- } | {
1520
- op: "remove";
1521
- objects: string[];
1522
- } | {
1523
- op: "clear";
1524
- } | undefined;
1525
- um?: string | null | undefined;
1507
+ threshold: string | number;
1508
+ } | null | undefined;
1526
1509
  sales?: {
1527
1510
  op: "add";
1528
1511
  sales: {
@@ -1549,7 +1532,24 @@ export declare const CallService_DataSchema: z.ZodObject<{
1549
1532
  } | {
1550
1533
  op: "clear";
1551
1534
  } | undefined;
1552
- repositories?: {
1535
+ discount?: {
1536
+ name: string;
1537
+ recipient: {
1538
+ entities: {
1539
+ name_or_address?: string | undefined;
1540
+ local_mark_first?: boolean | undefined;
1541
+ }[];
1542
+ check_all_founded?: boolean | undefined;
1543
+ };
1544
+ count: number;
1545
+ discount_type: import("@wowok/wowok").DiscountType;
1546
+ transferable: boolean;
1547
+ discount_value: string | number;
1548
+ time_ms_end: number;
1549
+ benchmark?: string | number | undefined;
1550
+ time_ms_start?: number | undefined;
1551
+ } | undefined;
1552
+ rewards?: {
1553
1553
  op: "set" | "add";
1554
1554
  objects: string[];
1555
1555
  } | {
@@ -1558,8 +1558,6 @@ export declare const CallService_DataSchema: z.ZodObject<{
1558
1558
  } | {
1559
1559
  op: "clear";
1560
1560
  } | undefined;
1561
- buy_guard?: string | null | undefined;
1562
- customer_required?: string[] | undefined;
1563
1561
  arbitrations?: {
1564
1562
  op: "set" | "add";
1565
1563
  objects: string[];
@@ -1569,30 +1567,32 @@ export declare const CallService_DataSchema: z.ZodObject<{
1569
1567
  } | {
1570
1568
  op: "clear";
1571
1569
  } | undefined;
1572
- order_allocators?: {
1573
- description: string;
1574
- allocators: {
1575
- guard: string;
1576
- sharing: {
1577
- sharing: string | number;
1578
- who: {
1579
- GuardIdentifier: number;
1580
- } | {
1581
- Entity: {
1582
- name_or_address?: string | undefined;
1583
- local_mark_first?: boolean | undefined;
1584
- };
1585
- } | {
1586
- Signer: "signer";
1587
- };
1588
- mode: "Amount" | "Rate" | "Surplus";
1589
- }[];
1590
- max?: string | number | null | undefined;
1591
- fix?: string | number | undefined;
1592
- }[];
1593
- threshold: string | number;
1594
- } | null | undefined;
1595
1570
  pause?: boolean | undefined;
1571
+ location?: string | undefined;
1572
+ owner_receive?: {
1573
+ received: {
1574
+ id: string;
1575
+ balance: string | number;
1576
+ payment: string;
1577
+ }[];
1578
+ balance: string | number;
1579
+ token_type: string;
1580
+ } | "recently" | {
1581
+ type: string;
1582
+ id: string;
1583
+ content_raw?: any;
1584
+ }[] | undefined;
1585
+ um?: string | null | undefined;
1586
+ repositories?: {
1587
+ op: "set" | "add";
1588
+ objects: string[];
1589
+ } | {
1590
+ op: "remove";
1591
+ objects: string[];
1592
+ } | {
1593
+ op: "clear";
1594
+ } | undefined;
1595
+ customer_required?: string[] | undefined;
1596
1596
  order_new?: {
1597
1597
  buy: {
1598
1598
  items: {
@@ -2468,48 +2468,31 @@ export declare const CallService_InputSchema: z.ZodObject<{
2468
2468
  };
2469
2469
  description?: string | undefined;
2470
2470
  publish?: boolean | undefined;
2471
+ buy_guard?: string | null | undefined;
2471
2472
  machine?: string | null | undefined;
2472
- discount?: {
2473
- name: string;
2474
- recipient: {
2475
- entities: {
2476
- name_or_address?: string | undefined;
2477
- local_mark_first?: boolean | undefined;
2473
+ order_allocators?: {
2474
+ description: string;
2475
+ allocators: {
2476
+ guard: string;
2477
+ sharing: {
2478
+ sharing: string | number;
2479
+ who: {
2480
+ GuardIdentifier: number;
2481
+ } | {
2482
+ Entity: {
2483
+ name_or_address?: string | undefined;
2484
+ local_mark_first?: boolean | undefined;
2485
+ };
2486
+ } | {
2487
+ Signer: "signer";
2488
+ };
2489
+ mode: "Amount" | "Rate" | "Surplus";
2478
2490
  }[];
2479
- check_all_founded?: boolean | undefined;
2480
- };
2481
- count: number;
2482
- discount_type: import("@wowok/wowok").DiscountType;
2483
- transferable: boolean;
2484
- discount_value: string | number;
2485
- time_ms_end: number;
2486
- benchmark?: string | number | undefined;
2487
- time_ms_start?: number | undefined;
2488
- } | undefined;
2489
- location?: string | undefined;
2490
- owner_receive?: {
2491
- received: {
2492
- id: string;
2493
- balance: string | number;
2494
- payment: string;
2491
+ max?: string | number | null | undefined;
2492
+ fix?: string | number | undefined;
2495
2493
  }[];
2496
- balance: string | number;
2497
- token_type: string;
2498
- } | "recently" | {
2499
- type: string;
2500
- id: string;
2501
- content_raw?: any;
2502
- }[] | undefined;
2503
- rewards?: {
2504
- op: "set" | "add";
2505
- objects: string[];
2506
- } | {
2507
- op: "remove";
2508
- objects: string[];
2509
- } | {
2510
- op: "clear";
2511
- } | undefined;
2512
- um?: string | null | undefined;
2494
+ threshold: string | number;
2495
+ } | null | undefined;
2513
2496
  sales?: {
2514
2497
  op: "add";
2515
2498
  sales: {
@@ -2536,7 +2519,24 @@ export declare const CallService_InputSchema: z.ZodObject<{
2536
2519
  } | {
2537
2520
  op: "clear";
2538
2521
  } | undefined;
2539
- repositories?: {
2522
+ discount?: {
2523
+ name: string;
2524
+ recipient: {
2525
+ entities: {
2526
+ name_or_address?: string | undefined;
2527
+ local_mark_first?: boolean | undefined;
2528
+ }[];
2529
+ check_all_founded?: boolean | undefined;
2530
+ };
2531
+ count: number;
2532
+ discount_type: import("@wowok/wowok").DiscountType;
2533
+ transferable: boolean;
2534
+ discount_value: string | number;
2535
+ time_ms_end: number;
2536
+ benchmark?: string | number | undefined;
2537
+ time_ms_start?: number | undefined;
2538
+ } | undefined;
2539
+ rewards?: {
2540
2540
  op: "set" | "add";
2541
2541
  objects: string[];
2542
2542
  } | {
@@ -2545,8 +2545,6 @@ export declare const CallService_InputSchema: z.ZodObject<{
2545
2545
  } | {
2546
2546
  op: "clear";
2547
2547
  } | undefined;
2548
- buy_guard?: string | null | undefined;
2549
- customer_required?: string[] | undefined;
2550
2548
  arbitrations?: {
2551
2549
  op: "set" | "add";
2552
2550
  objects: string[];
@@ -2556,30 +2554,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
2556
2554
  } | {
2557
2555
  op: "clear";
2558
2556
  } | undefined;
2559
- order_allocators?: {
2560
- description: string;
2561
- allocators: {
2562
- guard: string;
2563
- sharing: {
2564
- sharing: string | number;
2565
- who: {
2566
- GuardIdentifier: number;
2567
- } | {
2568
- Entity: {
2569
- name_or_address?: string | undefined;
2570
- local_mark_first?: boolean | undefined;
2571
- };
2572
- } | {
2573
- Signer: "signer";
2574
- };
2575
- mode: "Amount" | "Rate" | "Surplus";
2576
- }[];
2577
- max?: string | number | null | undefined;
2578
- fix?: string | number | undefined;
2579
- }[];
2580
- threshold: string | number;
2581
- } | null | undefined;
2582
2557
  pause?: boolean | undefined;
2558
+ location?: string | undefined;
2559
+ owner_receive?: {
2560
+ received: {
2561
+ id: string;
2562
+ balance: string | number;
2563
+ payment: string;
2564
+ }[];
2565
+ balance: string | number;
2566
+ token_type: string;
2567
+ } | "recently" | {
2568
+ type: string;
2569
+ id: string;
2570
+ content_raw?: any;
2571
+ }[] | undefined;
2572
+ um?: string | null | undefined;
2573
+ repositories?: {
2574
+ op: "set" | "add";
2575
+ objects: string[];
2576
+ } | {
2577
+ op: "remove";
2578
+ objects: string[];
2579
+ } | {
2580
+ op: "clear";
2581
+ } | undefined;
2582
+ customer_required?: string[] | undefined;
2583
2583
  order_new?: {
2584
2584
  buy: {
2585
2585
  items: {
@@ -2660,48 +2660,31 @@ export declare const CallService_InputSchema: z.ZodObject<{
2660
2660
  };
2661
2661
  description?: string | undefined;
2662
2662
  publish?: boolean | undefined;
2663
+ buy_guard?: string | null | undefined;
2663
2664
  machine?: string | null | undefined;
2664
- discount?: {
2665
- name: string;
2666
- recipient: {
2667
- entities: {
2668
- name_or_address?: string | undefined;
2669
- local_mark_first?: boolean | undefined;
2665
+ order_allocators?: {
2666
+ description: string;
2667
+ allocators: {
2668
+ guard: string;
2669
+ sharing: {
2670
+ sharing: string | number;
2671
+ who: {
2672
+ GuardIdentifier: number;
2673
+ } | {
2674
+ Entity: {
2675
+ name_or_address?: string | undefined;
2676
+ local_mark_first?: boolean | undefined;
2677
+ };
2678
+ } | {
2679
+ Signer: "signer";
2680
+ };
2681
+ mode: "Amount" | "Rate" | "Surplus";
2670
2682
  }[];
2671
- check_all_founded?: boolean | undefined;
2672
- };
2673
- count: number;
2674
- discount_type: import("@wowok/wowok").DiscountType;
2675
- transferable: boolean;
2676
- discount_value: string | number;
2677
- time_ms_end: number;
2678
- benchmark?: string | number | undefined;
2679
- time_ms_start?: number | undefined;
2680
- } | undefined;
2681
- location?: string | undefined;
2682
- owner_receive?: {
2683
- received: {
2684
- id: string;
2685
- balance: string | number;
2686
- payment: string;
2683
+ max?: string | number | null | undefined;
2684
+ fix?: string | number | undefined;
2687
2685
  }[];
2688
- balance: string | number;
2689
- token_type: string;
2690
- } | "recently" | {
2691
- type: string;
2692
- id: string;
2693
- content_raw?: any;
2694
- }[] | undefined;
2695
- rewards?: {
2696
- op: "set" | "add";
2697
- objects: string[];
2698
- } | {
2699
- op: "remove";
2700
- objects: string[];
2701
- } | {
2702
- op: "clear";
2703
- } | undefined;
2704
- um?: string | null | undefined;
2686
+ threshold: string | number;
2687
+ } | null | undefined;
2705
2688
  sales?: {
2706
2689
  op: "add";
2707
2690
  sales: {
@@ -2728,7 +2711,24 @@ export declare const CallService_InputSchema: z.ZodObject<{
2728
2711
  } | {
2729
2712
  op: "clear";
2730
2713
  } | undefined;
2731
- repositories?: {
2714
+ discount?: {
2715
+ name: string;
2716
+ recipient: {
2717
+ entities: {
2718
+ name_or_address?: string | undefined;
2719
+ local_mark_first?: boolean | undefined;
2720
+ }[];
2721
+ check_all_founded?: boolean | undefined;
2722
+ };
2723
+ count: number;
2724
+ discount_type: import("@wowok/wowok").DiscountType;
2725
+ transferable: boolean;
2726
+ discount_value: string | number;
2727
+ time_ms_end: number;
2728
+ benchmark?: string | number | undefined;
2729
+ time_ms_start?: number | undefined;
2730
+ } | undefined;
2731
+ rewards?: {
2732
2732
  op: "set" | "add";
2733
2733
  objects: string[];
2734
2734
  } | {
@@ -2737,8 +2737,6 @@ export declare const CallService_InputSchema: z.ZodObject<{
2737
2737
  } | {
2738
2738
  op: "clear";
2739
2739
  } | undefined;
2740
- buy_guard?: string | null | undefined;
2741
- customer_required?: string[] | undefined;
2742
2740
  arbitrations?: {
2743
2741
  op: "set" | "add";
2744
2742
  objects: string[];
@@ -2748,30 +2746,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
2748
2746
  } | {
2749
2747
  op: "clear";
2750
2748
  } | undefined;
2751
- order_allocators?: {
2752
- description: string;
2753
- allocators: {
2754
- guard: string;
2755
- sharing: {
2756
- sharing: string | number;
2757
- who: {
2758
- GuardIdentifier: number;
2759
- } | {
2760
- Entity: {
2761
- name_or_address?: string | undefined;
2762
- local_mark_first?: boolean | undefined;
2763
- };
2764
- } | {
2765
- Signer: "signer";
2766
- };
2767
- mode: "Amount" | "Rate" | "Surplus";
2768
- }[];
2769
- max?: string | number | null | undefined;
2770
- fix?: string | number | undefined;
2771
- }[];
2772
- threshold: string | number;
2773
- } | null | undefined;
2774
2749
  pause?: boolean | undefined;
2750
+ location?: string | undefined;
2751
+ owner_receive?: {
2752
+ received: {
2753
+ id: string;
2754
+ balance: string | number;
2755
+ payment: string;
2756
+ }[];
2757
+ balance: string | number;
2758
+ token_type: string;
2759
+ } | "recently" | {
2760
+ type: string;
2761
+ id: string;
2762
+ content_raw?: any;
2763
+ }[] | undefined;
2764
+ um?: string | null | undefined;
2765
+ repositories?: {
2766
+ op: "set" | "add";
2767
+ objects: string[];
2768
+ } | {
2769
+ op: "remove";
2770
+ objects: string[];
2771
+ } | {
2772
+ op: "clear";
2773
+ } | undefined;
2774
+ customer_required?: string[] | undefined;
2775
2775
  order_new?: {
2776
2776
  buy: {
2777
2777
  items: {
@@ -2842,18 +2842,27 @@ export declare const CallService_InputSchema: z.ZodObject<{
2842
2842
  no_cache: z.ZodOptional<z.ZodBoolean>;
2843
2843
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
2844
2844
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2845
+ confirmed: z.ZodOptional<z.ZodBoolean>;
2846
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2847
+ project: z.ZodOptional<z.ZodString>;
2845
2848
  }, "strict", z.ZodTypeAny, {
2846
2849
  account: string;
2847
2850
  no_cache?: boolean | undefined;
2848
2851
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
2849
2852
  permission_guard?: string[] | undefined;
2850
2853
  referrer?: string | undefined;
2854
+ confirmed?: boolean | undefined;
2855
+ user_intent_phrases?: string[] | undefined;
2856
+ project?: string | undefined;
2851
2857
  }, {
2852
2858
  no_cache?: boolean | undefined;
2853
2859
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
2854
2860
  account?: string | undefined;
2855
2861
  permission_guard?: string[] | undefined;
2856
2862
  referrer?: string | undefined;
2863
+ confirmed?: boolean | undefined;
2864
+ user_intent_phrases?: string[] | undefined;
2865
+ project?: string | undefined;
2857
2866
  }>>;
2858
2867
  submission: z.ZodOptional<z.ZodObject<{
2859
2868
  type: z.ZodLiteral<"submission">;
@@ -3052,49 +3061,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
3052
3061
  } | undefined;
3053
3062
  };
3054
3063
  description?: string | undefined;
3055
- publish?: boolean | undefined;
3056
- machine?: string | null | undefined;
3057
- discount?: {
3058
- name: string;
3059
- recipient: {
3060
- entities: {
3061
- name_or_address?: string | undefined;
3062
- local_mark_first?: boolean | undefined;
3064
+ publish?: boolean | undefined;
3065
+ buy_guard?: string | null | undefined;
3066
+ machine?: string | null | undefined;
3067
+ order_allocators?: {
3068
+ description: string;
3069
+ allocators: {
3070
+ guard: string;
3071
+ sharing: {
3072
+ sharing: string | number;
3073
+ who: {
3074
+ GuardIdentifier: number;
3075
+ } | {
3076
+ Entity: {
3077
+ name_or_address?: string | undefined;
3078
+ local_mark_first?: boolean | undefined;
3079
+ };
3080
+ } | {
3081
+ Signer: "signer";
3082
+ };
3083
+ mode: "Amount" | "Rate" | "Surplus";
3063
3084
  }[];
3064
- check_all_founded?: boolean | undefined;
3065
- };
3066
- count: number;
3067
- discount_type: import("@wowok/wowok").DiscountType;
3068
- transferable: boolean;
3069
- discount_value: string | number;
3070
- time_ms_end: number;
3071
- benchmark?: string | number | undefined;
3072
- time_ms_start?: number | undefined;
3073
- } | undefined;
3074
- location?: string | undefined;
3075
- owner_receive?: {
3076
- received: {
3077
- id: string;
3078
- balance: string | number;
3079
- payment: string;
3085
+ max?: string | number | null | undefined;
3086
+ fix?: string | number | undefined;
3080
3087
  }[];
3081
- balance: string | number;
3082
- token_type: string;
3083
- } | "recently" | {
3084
- type: string;
3085
- id: string;
3086
- content_raw?: any;
3087
- }[] | undefined;
3088
- rewards?: {
3089
- op: "set" | "add";
3090
- objects: string[];
3091
- } | {
3092
- op: "remove";
3093
- objects: string[];
3094
- } | {
3095
- op: "clear";
3096
- } | undefined;
3097
- um?: string | null | undefined;
3088
+ threshold: string | number;
3089
+ } | null | undefined;
3098
3090
  sales?: {
3099
3091
  op: "add";
3100
3092
  sales: {
@@ -3121,7 +3113,24 @@ export declare const CallService_InputSchema: z.ZodObject<{
3121
3113
  } | {
3122
3114
  op: "clear";
3123
3115
  } | undefined;
3124
- repositories?: {
3116
+ discount?: {
3117
+ name: string;
3118
+ recipient: {
3119
+ entities: {
3120
+ name_or_address?: string | undefined;
3121
+ local_mark_first?: boolean | undefined;
3122
+ }[];
3123
+ check_all_founded?: boolean | undefined;
3124
+ };
3125
+ count: number;
3126
+ discount_type: import("@wowok/wowok").DiscountType;
3127
+ transferable: boolean;
3128
+ discount_value: string | number;
3129
+ time_ms_end: number;
3130
+ benchmark?: string | number | undefined;
3131
+ time_ms_start?: number | undefined;
3132
+ } | undefined;
3133
+ rewards?: {
3125
3134
  op: "set" | "add";
3126
3135
  objects: string[];
3127
3136
  } | {
@@ -3130,8 +3139,6 @@ export declare const CallService_InputSchema: z.ZodObject<{
3130
3139
  } | {
3131
3140
  op: "clear";
3132
3141
  } | undefined;
3133
- buy_guard?: string | null | undefined;
3134
- customer_required?: string[] | undefined;
3135
3142
  arbitrations?: {
3136
3143
  op: "set" | "add";
3137
3144
  objects: string[];
@@ -3141,30 +3148,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
3141
3148
  } | {
3142
3149
  op: "clear";
3143
3150
  } | undefined;
3144
- order_allocators?: {
3145
- description: string;
3146
- allocators: {
3147
- guard: string;
3148
- sharing: {
3149
- sharing: string | number;
3150
- who: {
3151
- GuardIdentifier: number;
3152
- } | {
3153
- Entity: {
3154
- name_or_address?: string | undefined;
3155
- local_mark_first?: boolean | undefined;
3156
- };
3157
- } | {
3158
- Signer: "signer";
3159
- };
3160
- mode: "Amount" | "Rate" | "Surplus";
3161
- }[];
3162
- max?: string | number | null | undefined;
3163
- fix?: string | number | undefined;
3164
- }[];
3165
- threshold: string | number;
3166
- } | null | undefined;
3167
3151
  pause?: boolean | undefined;
3152
+ location?: string | undefined;
3153
+ owner_receive?: {
3154
+ received: {
3155
+ id: string;
3156
+ balance: string | number;
3157
+ payment: string;
3158
+ }[];
3159
+ balance: string | number;
3160
+ token_type: string;
3161
+ } | "recently" | {
3162
+ type: string;
3163
+ id: string;
3164
+ content_raw?: any;
3165
+ }[] | undefined;
3166
+ um?: string | null | undefined;
3167
+ repositories?: {
3168
+ op: "set" | "add";
3169
+ objects: string[];
3170
+ } | {
3171
+ op: "remove";
3172
+ objects: string[];
3173
+ } | {
3174
+ op: "clear";
3175
+ } | undefined;
3176
+ customer_required?: string[] | undefined;
3168
3177
  order_new?: {
3169
3178
  buy: {
3170
3179
  items: {
@@ -3262,6 +3271,9 @@ export declare const CallService_InputSchema: z.ZodObject<{
3262
3271
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
3263
3272
  permission_guard?: string[] | undefined;
3264
3273
  referrer?: string | undefined;
3274
+ confirmed?: boolean | undefined;
3275
+ user_intent_phrases?: string[] | undefined;
3276
+ project?: string | undefined;
3265
3277
  } | undefined;
3266
3278
  }, {
3267
3279
  data: {
@@ -3281,48 +3293,31 @@ export declare const CallService_InputSchema: z.ZodObject<{
3281
3293
  };
3282
3294
  description?: string | undefined;
3283
3295
  publish?: boolean | undefined;
3296
+ buy_guard?: string | null | undefined;
3284
3297
  machine?: string | null | undefined;
3285
- discount?: {
3286
- name: string;
3287
- recipient: {
3288
- entities: {
3289
- name_or_address?: string | undefined;
3290
- local_mark_first?: boolean | undefined;
3298
+ order_allocators?: {
3299
+ description: string;
3300
+ allocators: {
3301
+ guard: string;
3302
+ sharing: {
3303
+ sharing: string | number;
3304
+ who: {
3305
+ GuardIdentifier: number;
3306
+ } | {
3307
+ Entity: {
3308
+ name_or_address?: string | undefined;
3309
+ local_mark_first?: boolean | undefined;
3310
+ };
3311
+ } | {
3312
+ Signer: "signer";
3313
+ };
3314
+ mode: "Amount" | "Rate" | "Surplus";
3291
3315
  }[];
3292
- check_all_founded?: boolean | undefined;
3293
- };
3294
- count: number;
3295
- discount_type: import("@wowok/wowok").DiscountType;
3296
- transferable: boolean;
3297
- discount_value: string | number;
3298
- time_ms_end: number;
3299
- benchmark?: string | number | undefined;
3300
- time_ms_start?: number | undefined;
3301
- } | undefined;
3302
- location?: string | undefined;
3303
- owner_receive?: {
3304
- received: {
3305
- id: string;
3306
- balance: string | number;
3307
- payment: string;
3316
+ max?: string | number | null | undefined;
3317
+ fix?: string | number | undefined;
3308
3318
  }[];
3309
- balance: string | number;
3310
- token_type: string;
3311
- } | "recently" | {
3312
- type: string;
3313
- id: string;
3314
- content_raw?: any;
3315
- }[] | undefined;
3316
- rewards?: {
3317
- op: "set" | "add";
3318
- objects: string[];
3319
- } | {
3320
- op: "remove";
3321
- objects: string[];
3322
- } | {
3323
- op: "clear";
3324
- } | undefined;
3325
- um?: string | null | undefined;
3319
+ threshold: string | number;
3320
+ } | null | undefined;
3326
3321
  sales?: {
3327
3322
  op: "add";
3328
3323
  sales: {
@@ -3349,7 +3344,24 @@ export declare const CallService_InputSchema: z.ZodObject<{
3349
3344
  } | {
3350
3345
  op: "clear";
3351
3346
  } | undefined;
3352
- repositories?: {
3347
+ discount?: {
3348
+ name: string;
3349
+ recipient: {
3350
+ entities: {
3351
+ name_or_address?: string | undefined;
3352
+ local_mark_first?: boolean | undefined;
3353
+ }[];
3354
+ check_all_founded?: boolean | undefined;
3355
+ };
3356
+ count: number;
3357
+ discount_type: import("@wowok/wowok").DiscountType;
3358
+ transferable: boolean;
3359
+ discount_value: string | number;
3360
+ time_ms_end: number;
3361
+ benchmark?: string | number | undefined;
3362
+ time_ms_start?: number | undefined;
3363
+ } | undefined;
3364
+ rewards?: {
3353
3365
  op: "set" | "add";
3354
3366
  objects: string[];
3355
3367
  } | {
@@ -3358,8 +3370,6 @@ export declare const CallService_InputSchema: z.ZodObject<{
3358
3370
  } | {
3359
3371
  op: "clear";
3360
3372
  } | undefined;
3361
- buy_guard?: string | null | undefined;
3362
- customer_required?: string[] | undefined;
3363
3373
  arbitrations?: {
3364
3374
  op: "set" | "add";
3365
3375
  objects: string[];
@@ -3369,30 +3379,32 @@ export declare const CallService_InputSchema: z.ZodObject<{
3369
3379
  } | {
3370
3380
  op: "clear";
3371
3381
  } | undefined;
3372
- order_allocators?: {
3373
- description: string;
3374
- allocators: {
3375
- guard: string;
3376
- sharing: {
3377
- sharing: string | number;
3378
- who: {
3379
- GuardIdentifier: number;
3380
- } | {
3381
- Entity: {
3382
- name_or_address?: string | undefined;
3383
- local_mark_first?: boolean | undefined;
3384
- };
3385
- } | {
3386
- Signer: "signer";
3387
- };
3388
- mode: "Amount" | "Rate" | "Surplus";
3389
- }[];
3390
- max?: string | number | null | undefined;
3391
- fix?: string | number | undefined;
3392
- }[];
3393
- threshold: string | number;
3394
- } | null | undefined;
3395
3382
  pause?: boolean | undefined;
3383
+ location?: string | undefined;
3384
+ owner_receive?: {
3385
+ received: {
3386
+ id: string;
3387
+ balance: string | number;
3388
+ payment: string;
3389
+ }[];
3390
+ balance: string | number;
3391
+ token_type: string;
3392
+ } | "recently" | {
3393
+ type: string;
3394
+ id: string;
3395
+ content_raw?: any;
3396
+ }[] | undefined;
3397
+ um?: string | null | undefined;
3398
+ repositories?: {
3399
+ op: "set" | "add";
3400
+ objects: string[];
3401
+ } | {
3402
+ op: "remove";
3403
+ objects: string[];
3404
+ } | {
3405
+ op: "clear";
3406
+ } | undefined;
3407
+ customer_required?: string[] | undefined;
3396
3408
  order_new?: {
3397
3409
  buy: {
3398
3410
  items: {
@@ -3490,5 +3502,8 @@ export declare const CallService_InputSchema: z.ZodObject<{
3490
3502
  account?: string | undefined;
3491
3503
  permission_guard?: string[] | undefined;
3492
3504
  referrer?: string | undefined;
3505
+ confirmed?: boolean | undefined;
3506
+ user_intent_phrases?: string[] | undefined;
3507
+ project?: string | undefined;
3493
3508
  } | undefined;
3494
3509
  }>;