@wowok/agent-mcp 2.3.13 → 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.
- package/dist/config/index.d.ts +1 -0
- package/dist/config/index.js +1 -0
- package/dist/config/runtime.d.ts +26 -0
- package/dist/config/runtime.js +217 -0
- package/dist/customer/industry-risks.d.ts +36 -0
- package/dist/customer/industry-risks.js +424 -0
- package/dist/customer/info-puzzle.d.ts +102 -0
- package/dist/customer/info-puzzle.js +312 -0
- package/dist/customer/order-monitor.d.ts +75 -0
- package/dist/customer/order-monitor.js +327 -0
- package/dist/customer/order-strategy.d.ts +36 -0
- package/dist/customer/order-strategy.js +373 -0
- package/dist/customer/post-purchase.d.ts +42 -0
- package/dist/customer/post-purchase.js +350 -0
- package/dist/customer/reminder-system.d.ts +42 -0
- package/dist/customer/reminder-system.js +295 -0
- package/dist/customer/risk-assessment.d.ts +8 -0
- package/dist/customer/risk-assessment.js +337 -0
- package/dist/customer/types.d.ts +193 -0
- package/dist/customer/types.js +13 -0
- package/dist/customer/user-preferences.d.ts +67 -0
- package/dist/customer/user-preferences.js +451 -0
- package/dist/experience/experience-reuse.d.ts +10 -0
- package/dist/experience/experience-reuse.js +103 -0
- package/dist/experience/index.d.ts +6 -0
- package/dist/experience/index.js +5 -0
- package/dist/experience/intent-distill.d.ts +3 -0
- package/dist/experience/intent-distill.js +83 -0
- package/dist/experience/realtime-feedback.d.ts +5 -0
- package/dist/experience/realtime-feedback.js +77 -0
- package/dist/experience/types.d.ts +50 -0
- package/dist/experience/types.js +1 -0
- package/dist/experience/user-profile.d.ts +25 -0
- package/dist/experience/user-profile.js +171 -0
- package/dist/harness/checkpoint.d.ts +8 -0
- package/dist/harness/checkpoint.js +129 -0
- package/dist/harness/index.d.ts +33 -0
- package/dist/harness/index.js +75 -0
- package/dist/harness/plan.d.ts +18 -0
- package/dist/harness/plan.js +252 -0
- package/dist/harness/recover.d.ts +17 -0
- package/dist/harness/recover.js +139 -0
- package/dist/harness/types.d.ts +137 -0
- package/dist/harness/types.js +1 -0
- package/dist/harness/verify.d.ts +42 -0
- package/dist/harness/verify.js +237 -0
- package/dist/index.js +667 -201
- package/dist/knowledge/acquisition-flywheel.d.ts +50 -0
- package/dist/knowledge/acquisition-flywheel.js +183 -0
- package/dist/knowledge/arbitration-trust.d.ts +24 -0
- package/dist/knowledge/arbitration-trust.js +117 -0
- package/dist/knowledge/audit-rules.d.ts +28 -0
- package/dist/knowledge/audit-rules.js +141 -0
- package/dist/knowledge/demand-matching.d.ts +29 -0
- package/dist/knowledge/demand-matching.js +132 -0
- package/dist/knowledge/dynamic-pricing.d.ts +31 -0
- package/dist/knowledge/dynamic-pricing.js +87 -0
- package/dist/knowledge/flywheel-loop.d.ts +87 -0
- package/dist/knowledge/flywheel-loop.js +378 -0
- package/dist/knowledge/glossary.d.ts +18 -0
- package/dist/knowledge/glossary.js +209 -0
- package/dist/knowledge/index.d.ts +64 -0
- package/dist/knowledge/index.js +66 -0
- package/dist/knowledge/industry-evolution.d.ts +82 -0
- package/dist/knowledge/industry-evolution.js +323 -0
- package/dist/knowledge/industry-generalizer.d.ts +17 -0
- package/dist/knowledge/industry-generalizer.js +381 -0
- package/dist/knowledge/industry-registry.d.ts +49 -0
- package/dist/knowledge/industry-registry.js +167 -0
- package/dist/knowledge/intent-metrics.d.ts +42 -0
- package/dist/knowledge/intent-metrics.js +566 -0
- package/dist/knowledge/process-model.d.ts +24 -0
- package/dist/knowledge/process-model.js +160 -0
- package/dist/knowledge/reputation-rules.d.ts +42 -0
- package/dist/knowledge/reputation-rules.js +99 -0
- package/dist/knowledge/reward-templates.d.ts +25 -0
- package/dist/knowledge/reward-templates.js +125 -0
- package/dist/knowledge/safety-rules.d.ts +36 -0
- package/dist/knowledge/safety-rules.js +171 -0
- package/dist/knowledge/tool-constraints.d.ts +30 -0
- package/dist/knowledge/tool-constraints.js +185 -0
- package/dist/knowledge/trust-metrics.d.ts +37 -0
- package/dist/knowledge/trust-metrics.js +138 -0
- package/dist/loop-engineering/aggregate.d.ts +50 -0
- package/dist/loop-engineering/aggregate.js +132 -0
- package/dist/loop-engineering/diagnose.d.ts +22 -0
- package/dist/loop-engineering/diagnose.js +273 -0
- package/dist/loop-engineering/improve.d.ts +26 -0
- package/dist/loop-engineering/improve.js +229 -0
- package/dist/loop-engineering/index.d.ts +4 -0
- package/dist/loop-engineering/index.js +4 -0
- package/dist/loop-engineering/pipeline.d.ts +17 -0
- package/dist/loop-engineering/pipeline.js +56 -0
- package/dist/mode-market/index.d.ts +3 -0
- package/dist/mode-market/index.js +3 -0
- package/dist/mode-market/registry.d.ts +53 -0
- package/dist/mode-market/registry.js +124 -0
- package/dist/mode-market/review.d.ts +27 -0
- package/dist/mode-market/review.js +214 -0
- package/dist/mode-market/submission.d.ts +25 -0
- package/dist/mode-market/submission.js +85 -0
- package/dist/project/graph.d.ts +71 -0
- package/dist/project/graph.js +314 -0
- package/dist/project/index.d.ts +62 -0
- package/dist/project/index.js +167 -0
- package/dist/project/namespace.d.ts +62 -0
- package/dist/project/namespace.js +181 -0
- package/dist/project/query.d.ts +40 -0
- package/dist/project/query.js +110 -0
- package/dist/safety/confirm-gate.d.ts +15 -0
- package/dist/safety/confirm-gate.js +44 -0
- package/dist/safety/index.d.ts +3 -0
- package/dist/safety/index.js +3 -0
- package/dist/safety/preview.d.ts +2 -0
- package/dist/safety/preview.js +36 -0
- package/dist/schema/call/allocation.d.ts +55 -40
- package/dist/schema/call/arbitration.d.ts +201 -186
- package/dist/schema/call/base.d.ts +2104 -24
- package/dist/schema/call/base.js +168 -22
- package/dist/schema/call/bridge-handler.js +36 -18
- package/dist/schema/call/bridge.d.ts +777 -120
- package/dist/schema/call/bridge.js +13 -2
- package/dist/schema/call/contact.d.ts +15 -0
- package/dist/schema/call/demand.d.ts +69 -54
- package/dist/schema/call/guard.d.ts +125 -80
- package/dist/schema/call/handler.d.ts +5 -1
- package/dist/schema/call/handler.js +108 -3
- package/dist/schema/call/index.d.ts +1 -0
- package/dist/schema/call/index.js +1 -0
- package/dist/schema/call/machine.d.ts +830 -800
- package/dist/schema/call/order.d.ts +27 -12
- package/dist/schema/call/payment.d.ts +15 -0
- package/dist/schema/call/permission.d.ts +15 -0
- package/dist/schema/call/personal.d.ts +15 -0
- package/dist/schema/call/progress.d.ts +21 -6
- package/dist/schema/call/proof.d.ts +42 -12
- package/dist/schema/call/proof.js +3 -3
- package/dist/schema/call/repository.d.ts +91 -76
- package/dist/schema/call/reward.d.ts +51 -36
- package/dist/schema/call/semantic.d.ts +24 -0
- package/dist/schema/call/semantic.js +981 -0
- package/dist/schema/call/service.d.ts +444 -429
- package/dist/schema/call/treasury.d.ts +219 -204
- package/dist/schema/common/index.js +3 -3
- package/dist/schema/local/index.d.ts +341 -74
- package/dist/schema/local/index.js +44 -7
- package/dist/schema/messenger/index.d.ts +1034 -92
- package/dist/schema/messenger/index.js +18 -0
- package/dist/schema/operations.d.ts +2634 -1817
- package/dist/schema/operations.js +16 -5
- package/dist/schema/query/index.d.ts +2293 -2289
- package/dist/schema/query/index.js +34 -28
- package/dist/schemas/account_operation.output.json +28 -16
- package/dist/schemas/account_operation.schema.json +2 -2
- package/dist/schemas/bridge_operation.output.json +520 -0
- package/dist/schemas/bridge_operation.schema.json +15 -0
- package/dist/schemas/guard2file.schema.json +15 -0
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/local_info_operation.output.json +26 -0
- package/dist/schemas/local_info_operation.schema.json +1 -1
- package/dist/schemas/local_mark_operation.output.json +27 -1
- package/dist/schemas/local_mark_operation.schema.json +4 -4
- package/dist/schemas/machineNode2file.schema.json +15 -0
- package/dist/schemas/messenger_operation.output.json +549 -0
- package/dist/schemas/messenger_operation.schema.json +21 -0
- package/dist/schemas/onchain_events.output.json +3 -0
- package/dist/schemas/onchain_operations.output.json +814 -37
- package/dist/schemas/onchain_operations.schema.json +117 -40
- package/dist/schemas/onchain_operations_allocation.schema.json +26 -9
- package/dist/schemas/onchain_operations_arbitration.schema.json +26 -9
- package/dist/schemas/onchain_operations_contact.schema.json +26 -9
- package/dist/schemas/onchain_operations_demand.schema.json +26 -9
- package/dist/schemas/onchain_operations_gen_passport.schema.json +51 -17
- package/dist/schemas/onchain_operations_guard.schema.json +26 -9
- package/dist/schemas/onchain_operations_machine.schema.json +92 -32
- package/dist/schemas/onchain_operations_order.schema.json +26 -9
- package/dist/schemas/onchain_operations_payment.schema.json +26 -9
- package/dist/schemas/onchain_operations_permission.schema.json +26 -9
- package/dist/schemas/onchain_operations_personal.schema.json +26 -9
- package/dist/schemas/onchain_operations_progress.schema.json +26 -9
- package/dist/schemas/onchain_operations_repository.schema.json +26 -9
- package/dist/schemas/onchain_operations_reward.schema.json +26 -9
- package/dist/schemas/onchain_operations_service.schema.json +26 -9
- package/dist/schemas/onchain_operations_treasury.schema.json +26 -9
- package/dist/schemas/onchain_table_data.output.json +224 -69
- package/dist/schemas/onchain_table_data.schema.json +2 -2
- package/dist/schemas/query_toolkit.schema.json +5 -1
- package/dist/telemetry/index.d.ts +19 -0
- package/dist/telemetry/index.js +112 -0
- package/dist/telemetry/redact.d.ts +2 -0
- package/dist/telemetry/redact.js +23 -0
- package/dist/telemetry/storage.d.ts +8 -0
- package/dist/telemetry/storage.js +80 -0
- package/package.json +6 -3
|
@@ -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,
|
|
@@ -450,7 +465,7 @@
|
|
|
450
465
|
"type": {
|
|
451
466
|
"type": "string",
|
|
452
467
|
"const": "submission",
|
|
453
|
-
"description": "
|
|
468
|
+
"description": "Discriminator for this result variant. Constraint: always 'submission'. Example: 'submission'"
|
|
454
469
|
},
|
|
455
470
|
"guard": {
|
|
456
471
|
"type": "array",
|
|
@@ -459,11 +474,11 @@
|
|
|
459
474
|
"properties": {
|
|
460
475
|
"object": {
|
|
461
476
|
"type": "string",
|
|
462
|
-
"description": "Guard object name or ID."
|
|
477
|
+
"description": "Guard object name or ID to verify against. Example: 'my-delivery-guard' or '0x123...'"
|
|
463
478
|
},
|
|
464
479
|
"impack": {
|
|
465
480
|
"type": "boolean",
|
|
466
|
-
"description": "Whether
|
|
481
|
+
"description": "Whether this Guard's verification result participates in the final logic. Constraint: if false, the Guard is checked but does not block the operation. Example: true"
|
|
467
482
|
}
|
|
468
483
|
},
|
|
469
484
|
"required": [
|
|
@@ -471,7 +486,8 @@
|
|
|
471
486
|
"impack"
|
|
472
487
|
],
|
|
473
488
|
"additionalProperties": false
|
|
474
|
-
}
|
|
489
|
+
},
|
|
490
|
+
"description": "Array of Guard objects to verify. Relation: each entry corresponds to a Guard bound to the operation."
|
|
475
491
|
},
|
|
476
492
|
"submission": {
|
|
477
493
|
"type": "array",
|
|
@@ -480,7 +496,7 @@
|
|
|
480
496
|
"properties": {
|
|
481
497
|
"guard": {
|
|
482
498
|
"$ref": "#/definitions/submission/properties/guard/items/properties/object",
|
|
483
|
-
"description": "Guard object name or ID."
|
|
499
|
+
"description": "Guard object name or ID that requires submission data. Example: 'my-delivery-guard'"
|
|
484
500
|
},
|
|
485
501
|
"submission": {
|
|
486
502
|
"type": "array",
|
|
@@ -932,7 +948,7 @@
|
|
|
932
948
|
"additionalProperties": false,
|
|
933
949
|
"description": "Guard table item"
|
|
934
950
|
},
|
|
935
|
-
"description": "User-submitted data required
|
|
951
|
+
"description": "User-submitted data matching the Guard's required fields. Relation: structure must match the Guard table's column definitions. Example: [{field:'delivery_proof', value:'Qm...'}]"
|
|
936
952
|
}
|
|
937
953
|
},
|
|
938
954
|
"required": [
|
|
@@ -940,8 +956,9 @@
|
|
|
940
956
|
"submission"
|
|
941
957
|
],
|
|
942
958
|
"additionalProperties": false,
|
|
943
|
-
"description": "
|
|
944
|
-
}
|
|
959
|
+
"description": "One Guard's submission data: the Guard to verify plus the user-provided data that satisfies its requirements."
|
|
960
|
+
},
|
|
961
|
+
"description": "User-submitted data for each Guard. Relation: one entry per Guard in the guard array; fill submission fields and resubmit via call_with_submission."
|
|
945
962
|
}
|
|
946
963
|
},
|
|
947
964
|
"required": [
|
|
@@ -950,7 +967,7 @@
|
|
|
950
967
|
"submission"
|
|
951
968
|
],
|
|
952
969
|
"additionalProperties": false,
|
|
953
|
-
"description": "Guard verification
|
|
970
|
+
"description": "Guard verification required. The operation was blocked because one or more Guards require user-submitted data. Fill the submission array and resubmit. Semantic status is 'pending_input'."
|
|
954
971
|
}
|
|
955
972
|
}
|
|
956
973
|
}
|
|
@@ -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,
|
|
@@ -909,7 +924,7 @@
|
|
|
909
924
|
"type": {
|
|
910
925
|
"type": "string",
|
|
911
926
|
"const": "submission",
|
|
912
|
-
"description": "
|
|
927
|
+
"description": "Discriminator for this result variant. Constraint: always 'submission'. Example: 'submission'"
|
|
913
928
|
},
|
|
914
929
|
"guard": {
|
|
915
930
|
"type": "array",
|
|
@@ -918,11 +933,11 @@
|
|
|
918
933
|
"properties": {
|
|
919
934
|
"object": {
|
|
920
935
|
"type": "string",
|
|
921
|
-
"description": "Guard object name or ID."
|
|
936
|
+
"description": "Guard object name or ID to verify against. Example: 'my-delivery-guard' or '0x123...'"
|
|
922
937
|
},
|
|
923
938
|
"impack": {
|
|
924
939
|
"type": "boolean",
|
|
925
|
-
"description": "Whether
|
|
940
|
+
"description": "Whether this Guard's verification result participates in the final logic. Constraint: if false, the Guard is checked but does not block the operation. Example: true"
|
|
926
941
|
}
|
|
927
942
|
},
|
|
928
943
|
"required": [
|
|
@@ -930,7 +945,8 @@
|
|
|
930
945
|
"impack"
|
|
931
946
|
],
|
|
932
947
|
"additionalProperties": false
|
|
933
|
-
}
|
|
948
|
+
},
|
|
949
|
+
"description": "Array of Guard objects to verify. Relation: each entry corresponds to a Guard bound to the operation."
|
|
934
950
|
},
|
|
935
951
|
"submission": {
|
|
936
952
|
"type": "array",
|
|
@@ -939,7 +955,7 @@
|
|
|
939
955
|
"properties": {
|
|
940
956
|
"guard": {
|
|
941
957
|
"$ref": "#/definitions/submission/properties/guard/items/properties/object",
|
|
942
|
-
"description": "Guard object name or ID."
|
|
958
|
+
"description": "Guard object name or ID that requires submission data. Example: 'my-delivery-guard'"
|
|
943
959
|
},
|
|
944
960
|
"submission": {
|
|
945
961
|
"type": "array",
|
|
@@ -1391,7 +1407,7 @@
|
|
|
1391
1407
|
"additionalProperties": false,
|
|
1392
1408
|
"description": "Guard table item"
|
|
1393
1409
|
},
|
|
1394
|
-
"description": "User-submitted data required
|
|
1410
|
+
"description": "User-submitted data matching the Guard's required fields. Relation: structure must match the Guard table's column definitions. Example: [{field:'delivery_proof', value:'Qm...'}]"
|
|
1395
1411
|
}
|
|
1396
1412
|
},
|
|
1397
1413
|
"required": [
|
|
@@ -1399,8 +1415,9 @@
|
|
|
1399
1415
|
"submission"
|
|
1400
1416
|
],
|
|
1401
1417
|
"additionalProperties": false,
|
|
1402
|
-
"description": "
|
|
1403
|
-
}
|
|
1418
|
+
"description": "One Guard's submission data: the Guard to verify plus the user-provided data that satisfies its requirements."
|
|
1419
|
+
},
|
|
1420
|
+
"description": "User-submitted data for each Guard. Relation: one entry per Guard in the guard array; fill submission fields and resubmit via call_with_submission."
|
|
1404
1421
|
}
|
|
1405
1422
|
},
|
|
1406
1423
|
"required": [
|
|
@@ -1409,7 +1426,7 @@
|
|
|
1409
1426
|
"submission"
|
|
1410
1427
|
],
|
|
1411
1428
|
"additionalProperties": false,
|
|
1412
|
-
"description": "Guard verification
|
|
1429
|
+
"description": "Guard verification required. The operation was blocked because one or more Guards require user-submitted data. Fill the submission array and resubmit. Semantic status is 'pending_input'."
|
|
1413
1430
|
}
|
|
1414
1431
|
}
|
|
1415
1432
|
}
|
|
@@ -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,
|
|
@@ -650,7 +665,7 @@
|
|
|
650
665
|
"type": {
|
|
651
666
|
"type": "string",
|
|
652
667
|
"const": "submission",
|
|
653
|
-
"description": "
|
|
668
|
+
"description": "Discriminator for this result variant. Constraint: always 'submission'. Example: 'submission'"
|
|
654
669
|
},
|
|
655
670
|
"guard": {
|
|
656
671
|
"type": "array",
|
|
@@ -659,11 +674,11 @@
|
|
|
659
674
|
"properties": {
|
|
660
675
|
"object": {
|
|
661
676
|
"type": "string",
|
|
662
|
-
"description": "Guard object name or ID."
|
|
677
|
+
"description": "Guard object name or ID to verify against. Example: 'my-delivery-guard' or '0x123...'"
|
|
663
678
|
},
|
|
664
679
|
"impack": {
|
|
665
680
|
"type": "boolean",
|
|
666
|
-
"description": "Whether
|
|
681
|
+
"description": "Whether this Guard's verification result participates in the final logic. Constraint: if false, the Guard is checked but does not block the operation. Example: true"
|
|
667
682
|
}
|
|
668
683
|
},
|
|
669
684
|
"required": [
|
|
@@ -671,7 +686,8 @@
|
|
|
671
686
|
"impack"
|
|
672
687
|
],
|
|
673
688
|
"additionalProperties": false
|
|
674
|
-
}
|
|
689
|
+
},
|
|
690
|
+
"description": "Array of Guard objects to verify. Relation: each entry corresponds to a Guard bound to the operation."
|
|
675
691
|
},
|
|
676
692
|
"submission": {
|
|
677
693
|
"type": "array",
|
|
@@ -680,7 +696,7 @@
|
|
|
680
696
|
"properties": {
|
|
681
697
|
"guard": {
|
|
682
698
|
"$ref": "#/definitions/submission/properties/guard/items/properties/object",
|
|
683
|
-
"description": "Guard object name or ID."
|
|
699
|
+
"description": "Guard object name or ID that requires submission data. Example: 'my-delivery-guard'"
|
|
684
700
|
},
|
|
685
701
|
"submission": {
|
|
686
702
|
"type": "array",
|
|
@@ -1132,7 +1148,7 @@
|
|
|
1132
1148
|
"additionalProperties": false,
|
|
1133
1149
|
"description": "Guard table item"
|
|
1134
1150
|
},
|
|
1135
|
-
"description": "User-submitted data required
|
|
1151
|
+
"description": "User-submitted data matching the Guard's required fields. Relation: structure must match the Guard table's column definitions. Example: [{field:'delivery_proof', value:'Qm...'}]"
|
|
1136
1152
|
}
|
|
1137
1153
|
},
|
|
1138
1154
|
"required": [
|
|
@@ -1140,8 +1156,9 @@
|
|
|
1140
1156
|
"submission"
|
|
1141
1157
|
],
|
|
1142
1158
|
"additionalProperties": false,
|
|
1143
|
-
"description": "
|
|
1144
|
-
}
|
|
1159
|
+
"description": "One Guard's submission data: the Guard to verify plus the user-provided data that satisfies its requirements."
|
|
1160
|
+
},
|
|
1161
|
+
"description": "User-submitted data for each Guard. Relation: one entry per Guard in the guard array; fill submission fields and resubmit via call_with_submission."
|
|
1145
1162
|
}
|
|
1146
1163
|
},
|
|
1147
1164
|
"required": [
|
|
@@ -1150,7 +1167,7 @@
|
|
|
1150
1167
|
"submission"
|
|
1151
1168
|
],
|
|
1152
1169
|
"additionalProperties": false,
|
|
1153
|
-
"description": "Guard verification
|
|
1170
|
+
"description": "Guard verification required. The operation was blocked because one or more Guards require user-submitted data. Fill the submission array and resubmit. Semantic status is 'pending_input'."
|
|
1154
1171
|
}
|
|
1155
1172
|
}
|
|
1156
1173
|
}
|