@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
@@ -585,6 +585,21 @@
585
585
  "referrer": {
586
586
  "$ref": "#/definitions/data/properties/guard/anyOf/0",
587
587
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
588
+ },
589
+ "confirmed": {
590
+ "type": "boolean",
591
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
592
+ },
593
+ "user_intent_phrases": {
594
+ "type": "array",
595
+ "items": {
596
+ "type": "string"
597
+ },
598
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
599
+ },
600
+ "project": {
601
+ "type": "string",
602
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
588
603
  }
589
604
  },
590
605
  "additionalProperties": false,
@@ -628,6 +643,21 @@
628
643
  "referrer": {
629
644
  "$ref": "#/definitions/env/properties/account",
630
645
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
646
+ },
647
+ "confirmed": {
648
+ "type": "boolean",
649
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
650
+ },
651
+ "user_intent_phrases": {
652
+ "type": "array",
653
+ "items": {
654
+ "type": "string"
655
+ },
656
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
657
+ },
658
+ "project": {
659
+ "type": "string",
660
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
631
661
  }
632
662
  },
633
663
  "additionalProperties": false,
@@ -195,6 +195,21 @@
195
195
  "referrer": {
196
196
  "$ref": "#/definitions/env/properties/account",
197
197
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
198
+ },
199
+ "confirmed": {
200
+ "type": "boolean",
201
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
202
+ },
203
+ "user_intent_phrases": {
204
+ "type": "array",
205
+ "items": {
206
+ "type": "string"
207
+ },
208
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
209
+ },
210
+ "project": {
211
+ "type": "string",
212
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
198
213
  }
199
214
  },
200
215
  "additionalProperties": false,
@@ -291,9 +291,10 @@
291
291
  "description": "Previous node name"
292
292
  },
293
293
  "threshold": {
294
- "type": "integer",
295
- "minimum": 0,
296
- "maximum": 4294967295,
294
+ "type": [
295
+ "number",
296
+ "string"
297
+ ],
297
298
  "description": "Threshold to trigger node advancement. If total Forward weight is greater than or equal to threshold, node advancement is triggered."
298
299
  },
299
300
  "forwards": {
@@ -306,38 +307,80 @@
306
307
  "description": "Forward name"
307
308
  },
308
309
  "namedOperator": {
309
- "type": "string",
310
+ "anyOf": [
311
+ {
312
+ "type": "string"
313
+ },
314
+ {
315
+ "type": "null"
316
+ },
317
+ {
318
+ "not": {}
319
+ }
320
+ ],
310
321
  "description": "Forward operation permission 1: Namespace (one of the two must be specified); recommended if Progress object operators are different (e.g., different delivery personnel for different orders)."
311
322
  },
312
323
  "permissionIndex": {
313
- "type": "integer",
324
+ "anyOf": [
325
+ {
326
+ "type": "number"
327
+ },
328
+ {
329
+ "type": "string"
330
+ },
331
+ {
332
+ "type": "null"
333
+ },
334
+ {
335
+ "not": {}
336
+ }
337
+ ],
314
338
  "description": "Forward operation permission 2: Permission index (one of the two must be specified); recommended if all Progress object operators are the same (e.g., same reward reviewers for all orders)."
315
339
  },
316
340
  "weight": {
317
- "type": "integer",
318
- "minimum": 0,
319
- "maximum": 65535,
341
+ "type": [
342
+ "number",
343
+ "string"
344
+ ],
320
345
  "description": "Forward weight"
321
346
  },
322
347
  "guard": {
323
- "type": "object",
324
- "properties": {
325
- "guard": {
326
- "type": "string",
327
- "description": "Guard object ID"
328
- },
329
- "retained_submission": {
330
- "type": "array",
331
- "items": {
332
- "type": "number"
348
+ "anyOf": [
349
+ {
350
+ "type": "object",
351
+ "properties": {
352
+ "guard": {
353
+ "type": "string",
354
+ "description": "Guard object ID"
355
+ },
356
+ "retained_submission": {
357
+ "anyOf": [
358
+ {
359
+ "type": "array",
360
+ "items": {
361
+ "type": [
362
+ "number",
363
+ "string"
364
+ ]
365
+ }
366
+ },
367
+ {
368
+ "type": "null"
369
+ }
370
+ ],
371
+ "description": "Data submitted by user during Guard object verification"
372
+ }
333
373
  },
334
- "description": "Data submitted by user during Guard object verification"
374
+ "required": [
375
+ "guard"
376
+ ],
377
+ "additionalProperties": false,
378
+ "description": "Record of Guard object in MachineForwardGuard object"
379
+ },
380
+ {
381
+ "type": "null"
335
382
  }
336
- },
337
- "required": [
338
- "guard"
339
383
  ],
340
- "additionalProperties": false,
341
384
  "description": "Guard object ID, if defined, Guard verification must also pass to complete Forward (e.g., completed promised supply chain sub-order)."
342
385
  }
343
386
  },
@@ -796,6 +839,21 @@
796
839
  "referrer": {
797
840
  "$ref": "#/definitions/env/properties/account",
798
841
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
842
+ },
843
+ "confirmed": {
844
+ "type": "boolean",
845
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
846
+ },
847
+ "user_intent_phrases": {
848
+ "type": "array",
849
+ "items": {
850
+ "type": "string"
851
+ },
852
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
853
+ },
854
+ "project": {
855
+ "type": "string",
856
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
799
857
  }
800
858
  },
801
859
  "additionalProperties": false,
@@ -314,6 +314,21 @@
314
314
  "referrer": {
315
315
  "$ref": "#/definitions/env/properties/account",
316
316
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
317
+ },
318
+ "confirmed": {
319
+ "type": "boolean",
320
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
321
+ },
322
+ "user_intent_phrases": {
323
+ "type": "array",
324
+ "items": {
325
+ "type": "string"
326
+ },
327
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
328
+ },
329
+ "project": {
330
+ "type": "string",
331
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
317
332
  }
318
333
  },
319
334
  "additionalProperties": false,
@@ -201,6 +201,21 @@
201
201
  "referrer": {
202
202
  "$ref": "#/definitions/env/properties/account",
203
203
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
204
+ },
205
+ "confirmed": {
206
+ "type": "boolean",
207
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
208
+ },
209
+ "user_intent_phrases": {
210
+ "type": "array",
211
+ "items": {
212
+ "type": "string"
213
+ },
214
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
215
+ },
216
+ "project": {
217
+ "type": "string",
218
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
204
219
  }
205
220
  },
206
221
  "additionalProperties": false,
@@ -572,6 +572,21 @@
572
572
  "referrer": {
573
573
  "$ref": "#/definitions/env/properties/account",
574
574
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
575
+ },
576
+ "confirmed": {
577
+ "type": "boolean",
578
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
579
+ },
580
+ "user_intent_phrases": {
581
+ "type": "array",
582
+ "items": {
583
+ "type": "string"
584
+ },
585
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
586
+ },
587
+ "project": {
588
+ "type": "string",
589
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
575
590
  }
576
591
  },
577
592
  "additionalProperties": false,
@@ -766,6 +766,21 @@
766
766
  "referrer": {
767
767
  "$ref": "#/definitions/env/properties/account",
768
768
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
769
+ },
770
+ "confirmed": {
771
+ "type": "boolean",
772
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
773
+ },
774
+ "user_intent_phrases": {
775
+ "type": "array",
776
+ "items": {
777
+ "type": "string"
778
+ },
779
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
780
+ },
781
+ "project": {
782
+ "type": "string",
783
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
769
784
  }
770
785
  },
771
786
  "additionalProperties": false,
@@ -235,6 +235,21 @@
235
235
  "referrer": {
236
236
  "$ref": "#/definitions/env/properties/account",
237
237
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
238
+ },
239
+ "confirmed": {
240
+ "type": "boolean",
241
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
242
+ },
243
+ "user_intent_phrases": {
244
+ "type": "array",
245
+ "items": {
246
+ "type": "string"
247
+ },
248
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
249
+ },
250
+ "project": {
251
+ "type": "string",
252
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
238
253
  }
239
254
  },
240
255
  "additionalProperties": false,
@@ -1059,6 +1059,21 @@
1059
1059
  "referrer": {
1060
1060
  "$ref": "#/definitions/env/properties/account",
1061
1061
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
1062
+ },
1063
+ "confirmed": {
1064
+ "type": "boolean",
1065
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
1066
+ },
1067
+ "user_intent_phrases": {
1068
+ "type": "array",
1069
+ "items": {
1070
+ "type": "string"
1071
+ },
1072
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
1073
+ },
1074
+ "project": {
1075
+ "type": "string",
1076
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
1062
1077
  }
1063
1078
  },
1064
1079
  "additionalProperties": false,
@@ -439,6 +439,21 @@
439
439
  "referrer": {
440
440
  "$ref": "#/definitions/env/properties/account",
441
441
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
442
+ },
443
+ "confirmed": {
444
+ "type": "boolean",
445
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
446
+ },
447
+ "user_intent_phrases": {
448
+ "type": "array",
449
+ "items": {
450
+ "type": "string"
451
+ },
452
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
453
+ },
454
+ "project": {
455
+ "type": "string",
456
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
442
457
  }
443
458
  },
444
459
  "additionalProperties": false,
@@ -898,6 +898,21 @@
898
898
  "referrer": {
899
899
  "$ref": "#/definitions/env/properties/account",
900
900
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
901
+ },
902
+ "confirmed": {
903
+ "type": "boolean",
904
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
905
+ },
906
+ "user_intent_phrases": {
907
+ "type": "array",
908
+ "items": {
909
+ "type": "string"
910
+ },
911
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
912
+ },
913
+ "project": {
914
+ "type": "string",
915
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
901
916
  }
902
917
  },
903
918
  "additionalProperties": false,
@@ -639,6 +639,21 @@
639
639
  "referrer": {
640
640
  "$ref": "#/definitions/env/properties/account",
641
641
  "description": "Referrer ID. If the user is using the network for the first time, the referrer ID will be recorded."
642
+ },
643
+ "confirmed": {
644
+ "type": "boolean",
645
+ "description": "Phase 2 ConfirmGate: set to true to proceed after a 'pending_confirmation' result. The operation is NOT executed until you re-call with confirmed=true after user consent."
646
+ },
647
+ "user_intent_phrases": {
648
+ "type": "array",
649
+ "items": {
650
+ "type": "string"
651
+ },
652
+ "description": "Phase 2 ConfirmGate: explicit user intent phrases collected from conversation context (e.g. 'use default account', 'force publish'). Used to bypass confirmation rules whose bypass_on_explicit_intent matches."
653
+ },
654
+ "project": {
655
+ "type": "string",
656
+ "description": "Phase 2 ProjectService: explicit project prefix to assign this object to (e.g. 'myshop'). When set, the object is tagged with 'project:<prefix>' automatically. Overrides the prefix parsed from the object name."
642
657
  }
643
658
  },
644
659
  "additionalProperties": false,