@ixo/editor 6.1.2 → 6.2.0
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/action-manifest.json +91 -90
- package/dist/{chunk-ZVN55I7Q.js → chunk-5JGB36AV.js} +2 -2
- package/dist/{chunk-5Y2WABQE.js → chunk-GUKGNTGT.js} +117 -354
- package/dist/chunk-GUKGNTGT.js.map +1 -0
- package/dist/{chunk-3WFCW7U7.js → chunk-IF7OSQVJ.js} +1190 -2308
- package/dist/chunk-IF7OSQVJ.js.map +1 -0
- package/dist/core/index.d.ts +4 -4
- package/dist/core/index.js +2 -2
- package/dist/{graphql-client-COOgxW6T.d.ts → graphql-client-Bje1zG1x.d.ts} +1 -1
- package/dist/{index-DQOd905K.d.ts → index-KtqCT-bj.d.ts} +61 -36
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/mantine/index.d.ts +3 -3
- package/dist/mantine/index.js +2 -2
- package/dist/{store-Kob5Setw.d.ts → store-CZP9PIO-.d.ts} +77 -1
- package/package.json +1 -1
- package/style-core.css +22 -0
- package/style-mantine.css +22 -0
- package/style-scoped.css +22 -0
- package/style.css +22 -0
- package/dist/chunk-3WFCW7U7.js.map +0 -1
- package/dist/chunk-5Y2WABQE.js.map +0 -1
- /package/dist/{chunk-ZVN55I7Q.js.map → chunk-5JGB36AV.js.map} +0 -0
|
@@ -2737,6 +2737,97 @@
|
|
|
2737
2737
|
}
|
|
2738
2738
|
]
|
|
2739
2739
|
},
|
|
2740
|
+
{
|
|
2741
|
+
"type": "qi/kyc.verify",
|
|
2742
|
+
"aliases": [],
|
|
2743
|
+
"sideEffect": true,
|
|
2744
|
+
"defaultRequiresConfirmation": false,
|
|
2745
|
+
"proof": {
|
|
2746
|
+
"kind": "fields",
|
|
2747
|
+
"fields": [
|
|
2748
|
+
"credentialCid"
|
|
2749
|
+
]
|
|
2750
|
+
},
|
|
2751
|
+
"hasDynamicEvents": false,
|
|
2752
|
+
"hasDynamicOutputSchema": false,
|
|
2753
|
+
"eligibleForEventTrigger": false,
|
|
2754
|
+
"can": "kyc/verify",
|
|
2755
|
+
"inputSchema": {
|
|
2756
|
+
"type": "object",
|
|
2757
|
+
"required": [
|
|
2758
|
+
"protocolDid"
|
|
2759
|
+
],
|
|
2760
|
+
"properties": {
|
|
2761
|
+
"protocolDid": {
|
|
2762
|
+
"type": "string",
|
|
2763
|
+
"description": "DID of the KYC protocol entity to verify against. The protocol determines the KYC level and check plan."
|
|
2764
|
+
},
|
|
2765
|
+
"credentialType": {
|
|
2766
|
+
"type": "string",
|
|
2767
|
+
"description": "Vault index key of the credential the protocol issues (e.g. 'kycamllevel1', 'kycamllevel2'). Defaults to level 1 when omitted."
|
|
2768
|
+
},
|
|
2769
|
+
"credentialCid": {
|
|
2770
|
+
"type": "string",
|
|
2771
|
+
"description": "Runtime-selected CID of an existing Vault credential to use (set by the FlowDetail when the user picks one of several)."
|
|
2772
|
+
}
|
|
2773
|
+
}
|
|
2774
|
+
},
|
|
2775
|
+
"outputSchema": [
|
|
2776
|
+
{
|
|
2777
|
+
"path": "credentialCid",
|
|
2778
|
+
"displayName": "Credential CID",
|
|
2779
|
+
"type": "string",
|
|
2780
|
+
"description": "CID of the SD-JWT credential saved to the Vault (proof of completion)."
|
|
2781
|
+
},
|
|
2782
|
+
{
|
|
2783
|
+
"path": "credentialType",
|
|
2784
|
+
"displayName": "Credential Type",
|
|
2785
|
+
"type": "string",
|
|
2786
|
+
"description": "Type of the issued credential."
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
"path": "protocolId",
|
|
2790
|
+
"displayName": "Protocol ID",
|
|
2791
|
+
"type": "string",
|
|
2792
|
+
"description": "The KYC protocol this verification ran against."
|
|
2793
|
+
},
|
|
2794
|
+
{
|
|
2795
|
+
"path": "status",
|
|
2796
|
+
"displayName": "Status",
|
|
2797
|
+
"type": "string",
|
|
2798
|
+
"description": "Terminal lifecycle status — 'complete' once the credential is saved."
|
|
2799
|
+
}
|
|
2800
|
+
],
|
|
2801
|
+
"events": [
|
|
2802
|
+
{
|
|
2803
|
+
"name": "kyc.completed",
|
|
2804
|
+
"displayName": "KYC completed",
|
|
2805
|
+
"description": "Fires when the issued credential has been saved to the Vault and the verification is complete.",
|
|
2806
|
+
"payloadSchema": [
|
|
2807
|
+
{
|
|
2808
|
+
"path": "credentialCid",
|
|
2809
|
+
"displayName": "Credential CID",
|
|
2810
|
+
"type": "string"
|
|
2811
|
+
},
|
|
2812
|
+
{
|
|
2813
|
+
"path": "credentialType",
|
|
2814
|
+
"displayName": "Credential Type",
|
|
2815
|
+
"type": "string"
|
|
2816
|
+
},
|
|
2817
|
+
{
|
|
2818
|
+
"path": "protocolId",
|
|
2819
|
+
"displayName": "Protocol ID",
|
|
2820
|
+
"type": "string"
|
|
2821
|
+
},
|
|
2822
|
+
{
|
|
2823
|
+
"path": "status",
|
|
2824
|
+
"displayName": "Status",
|
|
2825
|
+
"type": "string"
|
|
2826
|
+
}
|
|
2827
|
+
]
|
|
2828
|
+
}
|
|
2829
|
+
]
|
|
2830
|
+
},
|
|
2740
2831
|
{
|
|
2741
2832
|
"type": "qi/matrix.dm",
|
|
2742
2833
|
"aliases": [
|
|
@@ -3813,96 +3904,6 @@
|
|
|
3813
3904
|
}
|
|
3814
3905
|
]
|
|
3815
3906
|
},
|
|
3816
|
-
{
|
|
3817
|
-
"type": "qi/payment.execute",
|
|
3818
|
-
"aliases": [
|
|
3819
|
-
"payment"
|
|
3820
|
-
],
|
|
3821
|
-
"sideEffect": true,
|
|
3822
|
-
"defaultRequiresConfirmation": true,
|
|
3823
|
-
"proof": {
|
|
3824
|
-
"kind": "fields",
|
|
3825
|
-
"fields": [
|
|
3826
|
-
"paymentBlockId"
|
|
3827
|
-
]
|
|
3828
|
-
},
|
|
3829
|
-
"hasDynamicEvents": false,
|
|
3830
|
-
"hasDynamicOutputSchema": false,
|
|
3831
|
-
"eligibleForEventTrigger": false,
|
|
3832
|
-
"can": "payment/execute",
|
|
3833
|
-
"requiredCapability": "flow/block/execute",
|
|
3834
|
-
"inputSchema": {
|
|
3835
|
-
"type": "object",
|
|
3836
|
-
"required": [
|
|
3837
|
-
"rowIds",
|
|
3838
|
-
"verb",
|
|
3839
|
-
"paymentBlockId"
|
|
3840
|
-
],
|
|
3841
|
-
"properties": {
|
|
3842
|
-
"rowIds": {
|
|
3843
|
-
"type": "array",
|
|
3844
|
-
"description": "IDs of the rows in the payment block to operate on (at least one)."
|
|
3845
|
-
},
|
|
3846
|
-
"verb": {
|
|
3847
|
-
"type": "string",
|
|
3848
|
-
"description": "Which worker route to hit: \"propose\", \"execute\", or \"check\"."
|
|
3849
|
-
},
|
|
3850
|
-
"paymentBlockId": {
|
|
3851
|
-
"type": "string",
|
|
3852
|
-
"description": "The payment block ID so the oracle can edit_block back into the right place."
|
|
3853
|
-
},
|
|
3854
|
-
"delegationCid": {
|
|
3855
|
-
"type": "string",
|
|
3856
|
-
"description": "Optional user's UCAN delegation CID to the oracle."
|
|
3857
|
-
},
|
|
3858
|
-
"skill": {
|
|
3859
|
-
"type": "object",
|
|
3860
|
-
"description": "Optional skill context with cid and name."
|
|
3861
|
-
}
|
|
3862
|
-
}
|
|
3863
|
-
},
|
|
3864
|
-
"outputSchema": [
|
|
3865
|
-
{
|
|
3866
|
-
"path": "verb",
|
|
3867
|
-
"displayName": "Action verb",
|
|
3868
|
-
"type": "string"
|
|
3869
|
-
},
|
|
3870
|
-
{
|
|
3871
|
-
"path": "rowCount",
|
|
3872
|
-
"displayName": "Rows targeted",
|
|
3873
|
-
"type": "number"
|
|
3874
|
-
},
|
|
3875
|
-
{
|
|
3876
|
-
"path": "paymentBlockId",
|
|
3877
|
-
"displayName": "Payment block ID",
|
|
3878
|
-
"type": "string"
|
|
3879
|
-
}
|
|
3880
|
-
],
|
|
3881
|
-
"events": [
|
|
3882
|
-
{
|
|
3883
|
-
"name": "rows.completed",
|
|
3884
|
-
"displayName": "Payment rows completed",
|
|
3885
|
-
"description": "Fires after the oracle writes terminal status for one or more rows in this batch. Listeners can react to the just-completed payouts.",
|
|
3886
|
-
"payloadSchema": [
|
|
3887
|
-
{
|
|
3888
|
-
"path": "paymentBlockId",
|
|
3889
|
-
"displayName": "Payment block ID",
|
|
3890
|
-
"type": "string"
|
|
3891
|
-
},
|
|
3892
|
-
{
|
|
3893
|
-
"path": "completedRowIds",
|
|
3894
|
-
"displayName": "Completed row IDs",
|
|
3895
|
-
"type": "string"
|
|
3896
|
-
},
|
|
3897
|
-
{
|
|
3898
|
-
"path": "failedRowIds",
|
|
3899
|
-
"displayName": "Failed row IDs",
|
|
3900
|
-
"type": "string"
|
|
3901
|
-
}
|
|
3902
|
-
]
|
|
3903
|
-
}
|
|
3904
|
-
]
|
|
3905
|
-
},
|
|
3906
3907
|
{
|
|
3907
3908
|
"type": "qi/pod.domain-indexer-lookup",
|
|
3908
3909
|
"aliases": [
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
replaceBlockInFragment,
|
|
11
11
|
swapBlocksInFragment,
|
|
12
12
|
writeCompiledBlocksToFragment
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-GUKGNTGT.js";
|
|
14
14
|
|
|
15
15
|
// src/core/lib/flowCompiler/authoring.ts
|
|
16
16
|
import * as Y from "yjs";
|
|
@@ -257,4 +257,4 @@ export {
|
|
|
257
257
|
resetStepRuntime,
|
|
258
258
|
setFormAnswers
|
|
259
259
|
};
|
|
260
|
-
//# sourceMappingURL=chunk-
|
|
260
|
+
//# sourceMappingURL=chunk-5JGB36AV.js.map
|