@lit-protocol/vincent-ability-sdk 2.3.4 → 2.4.1-mma
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/README.md +49 -1
- package/dist/CHANGELOG.md +6 -0
- package/dist/README.md +49 -1
- package/dist/package.json +7 -1
- package/dist/src/gatedSigner.d.ts +2 -0
- package/dist/src/gatedSigner.d.ts.map +1 -0
- package/dist/src/gatedSigner.js +5 -0
- package/dist/src/gatedSigner.js.map +1 -0
- package/dist/src/lib/abilityHelpers/gasSponsorship/get-alchemy-chain-config.js +1 -1
- package/dist/src/lib/abilityHelpers/gasSponsorship/get-alchemy-chain-config.js.map +1 -1
- package/dist/src/lib/gatedSigner/helpers/eip712.d.ts +34 -0
- package/dist/src/lib/gatedSigner/helpers/eip712.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/eip712.js +30 -0
- package/dist/src/lib/gatedSigner/helpers/eip712.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/hex.d.ts +5 -0
- package/dist/src/lib/gatedSigner/helpers/hex.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/hex.js +16 -0
- package/dist/src/lib/gatedSigner/helpers/hex.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/lifecycleFunctions.d.ts +54 -0
- package/dist/src/lib/gatedSigner/helpers/lifecycleFunctions.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/lifecycleFunctions.js +91 -0
- package/dist/src/lib/gatedSigner/helpers/lifecycleFunctions.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/lowLevelCall.d.ts +13 -0
- package/dist/src/lib/gatedSigner/helpers/lowLevelCall.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/lowLevelCall.js +21 -0
- package/dist/src/lib/gatedSigner/helpers/lowLevelCall.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/schemas.d.ts +925 -0
- package/dist/src/lib/gatedSigner/helpers/schemas.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/schemas.js +64 -0
- package/dist/src/lib/gatedSigner/helpers/schemas.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/signTransaction.d.ts +9 -0
- package/dist/src/lib/gatedSigner/helpers/signTransaction.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/signTransaction.js +30 -0
- package/dist/src/lib/gatedSigner/helpers/signTransaction.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/signUserOperation.d.ts +15 -0
- package/dist/src/lib/gatedSigner/helpers/signUserOperation.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/signUserOperation.js +115 -0
- package/dist/src/lib/gatedSigner/helpers/signUserOperation.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/simulation.d.ts +204 -0
- package/dist/src/lib/gatedSigner/helpers/simulation.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/simulation.js +93 -0
- package/dist/src/lib/gatedSigner/helpers/simulation.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/smartAccounts/kernel.d.ts +8 -0
- package/dist/src/lib/gatedSigner/helpers/smartAccounts/kernel.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/smartAccounts/kernel.js +177 -0
- package/dist/src/lib/gatedSigner/helpers/smartAccounts/kernel.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/smartAccounts/safe.d.ts +26 -0
- package/dist/src/lib/gatedSigner/helpers/smartAccounts/safe.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/smartAccounts/safe.js +195 -0
- package/dist/src/lib/gatedSigner/helpers/smartAccounts/safe.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/toLitActionAccount.d.ts +20 -0
- package/dist/src/lib/gatedSigner/helpers/toLitActionAccount.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/toLitActionAccount.js +69 -0
- package/dist/src/lib/gatedSigner/helpers/toLitActionAccount.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/transaction.d.ts +148 -0
- package/dist/src/lib/gatedSigner/helpers/transaction.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/transaction.js +87 -0
- package/dist/src/lib/gatedSigner/helpers/transaction.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/userOperation.d.ts +200 -0
- package/dist/src/lib/gatedSigner/helpers/userOperation.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/userOperation.js +106 -0
- package/dist/src/lib/gatedSigner/helpers/userOperation.js.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/validation.d.ts +43 -0
- package/dist/src/lib/gatedSigner/helpers/validation.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/helpers/validation.js +81 -0
- package/dist/src/lib/gatedSigner/helpers/validation.js.map +1 -0
- package/dist/src/lib/gatedSigner/index.d.ts +12 -0
- package/dist/src/lib/gatedSigner/index.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/index.js +19 -0
- package/dist/src/lib/gatedSigner/index.js.map +1 -0
- package/dist/src/lib/gatedSigner/vincentGatedSignerAbility.d.ts +566 -0
- package/dist/src/lib/gatedSigner/vincentGatedSignerAbility.d.ts.map +1 -0
- package/dist/src/lib/gatedSigner/vincentGatedSignerAbility.js +48 -0
- package/dist/src/lib/gatedSigner/vincentGatedSignerAbility.js.map +1 -0
- package/dist/src/type-inference-verification/ability-definition-tests.d.ts +6 -6
- package/dist/src/type-inference-verification/allow-deny-test-cases-ability.d.ts +90 -90
- package/dist/src/type-inference-verification/allow-deny-test-cases.d.ts +8 -8
- package/dist/src/type-inference-verification/context-switching-tests.d.ts +3 -3
- package/dist/src/type-inference-verification/create-vincent-gated-signer-ability.d.ts +533 -0
- package/dist/src/type-inference-verification/create-vincent-gated-signer-ability.d.ts.map +1 -0
- package/dist/src/type-inference-verification/create-vincent-gated-signer-ability.js +19 -0
- package/dist/src/type-inference-verification/create-vincent-gated-signer-ability.js.map +1 -0
- package/dist/src/type-inference-verification/parameter-inference-tests-tool.d.ts +58 -58
- package/dist/src/type-inference-verification/parameter-inference-tests.d.ts +5 -5
- package/dist/src/type-inference-verification/playground.d.ts +8 -8
- package/dist/src/type-inference-verification/schema-test.d.ts +5 -5
- package/package.json +8 -2
|
@@ -14,12 +14,12 @@ export declare function testNoSchemas(): import("..").VincentAbility<z.ZodObject
|
|
|
14
14
|
target: z.ZodString;
|
|
15
15
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
|
17
|
-
action: string;
|
|
18
17
|
target: string;
|
|
18
|
+
action: string;
|
|
19
19
|
amount?: number | undefined;
|
|
20
20
|
}, {
|
|
21
|
-
action: string;
|
|
22
21
|
target: string;
|
|
22
|
+
action: string;
|
|
23
23
|
amount?: number | undefined;
|
|
24
24
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
25
25
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -55,8 +55,8 @@ export declare function testNoSchemas(): import("..").VincentAbility<z.ZodObject
|
|
|
55
55
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
56
56
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
57
57
|
abilityParameterMappings: Partial<{
|
|
58
|
-
action: "actionType";
|
|
59
58
|
target: "actionType";
|
|
59
|
+
action: "actionType";
|
|
60
60
|
amount?: "actionType" | undefined;
|
|
61
61
|
}>;
|
|
62
62
|
vincentAbilityApiVersion: string;
|
|
@@ -139,8 +139,8 @@ export declare function testNoSchemas(): import("..").VincentAbility<z.ZodObject
|
|
|
139
139
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
140
140
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
141
141
|
abilityParameterMappings: Partial<{
|
|
142
|
-
action: "actionType";
|
|
143
142
|
target: "actionType";
|
|
143
|
+
action: "actionType";
|
|
144
144
|
amount?: "actionType" | undefined;
|
|
145
145
|
}>;
|
|
146
146
|
vincentAbilityApiVersion: string;
|
|
@@ -199,12 +199,12 @@ export declare function tesWithSchemas(): import("..").VincentAbility<z.ZodObjec
|
|
|
199
199
|
target: z.ZodString;
|
|
200
200
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
201
201
|
}, "strip", z.ZodTypeAny, {
|
|
202
|
-
action: string;
|
|
203
202
|
target: string;
|
|
203
|
+
action: string;
|
|
204
204
|
amount?: number | undefined;
|
|
205
205
|
}, {
|
|
206
|
-
action: string;
|
|
207
206
|
target: string;
|
|
207
|
+
action: string;
|
|
208
208
|
amount?: number | undefined;
|
|
209
209
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
210
210
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -240,8 +240,8 @@ export declare function tesWithSchemas(): import("..").VincentAbility<z.ZodObjec
|
|
|
240
240
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
241
241
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
242
242
|
abilityParameterMappings: Partial<{
|
|
243
|
-
action: "actionType";
|
|
244
243
|
target: "actionType";
|
|
244
|
+
action: "actionType";
|
|
245
245
|
amount?: "actionType" | undefined;
|
|
246
246
|
}>;
|
|
247
247
|
vincentAbilityApiVersion: string;
|
|
@@ -324,8 +324,8 @@ export declare function tesWithSchemas(): import("..").VincentAbility<z.ZodObjec
|
|
|
324
324
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
325
325
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
326
326
|
abilityParameterMappings: Partial<{
|
|
327
|
-
action: "actionType";
|
|
328
327
|
target: "actionType";
|
|
328
|
+
action: "actionType";
|
|
329
329
|
amount?: "actionType" | undefined;
|
|
330
330
|
}>;
|
|
331
331
|
vincentAbilityApiVersion: string;
|
|
@@ -399,12 +399,12 @@ export declare function testDifferentSchemas(): import("..").VincentAbility<z.Zo
|
|
|
399
399
|
target: z.ZodString;
|
|
400
400
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
|
402
|
-
action: string;
|
|
403
402
|
target: string;
|
|
403
|
+
action: string;
|
|
404
404
|
amount?: number | undefined;
|
|
405
405
|
}, {
|
|
406
|
-
action: string;
|
|
407
406
|
target: string;
|
|
407
|
+
action: string;
|
|
408
408
|
amount?: number | undefined;
|
|
409
409
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
410
410
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -440,8 +440,8 @@ export declare function testDifferentSchemas(): import("..").VincentAbility<z.Zo
|
|
|
440
440
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
441
441
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
442
442
|
abilityParameterMappings: Partial<{
|
|
443
|
-
action: "actionType";
|
|
444
443
|
target: "actionType";
|
|
444
|
+
action: "actionType";
|
|
445
445
|
amount?: "actionType" | undefined;
|
|
446
446
|
}>;
|
|
447
447
|
vincentAbilityApiVersion: string;
|
|
@@ -524,8 +524,8 @@ export declare function testDifferentSchemas(): import("..").VincentAbility<z.Zo
|
|
|
524
524
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
525
525
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
526
526
|
abilityParameterMappings: Partial<{
|
|
527
|
-
action: "actionType";
|
|
528
527
|
target: "actionType";
|
|
528
|
+
action: "actionType";
|
|
529
529
|
amount?: "actionType" | undefined;
|
|
530
530
|
}>;
|
|
531
531
|
vincentAbilityApiVersion: string;
|
|
@@ -611,12 +611,12 @@ export declare function testPolicyResultTypes(): import("..").VincentAbility<z.Z
|
|
|
611
611
|
target: z.ZodString;
|
|
612
612
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
613
613
|
}, "strip", z.ZodTypeAny, {
|
|
614
|
-
action: string;
|
|
615
614
|
target: string;
|
|
615
|
+
action: string;
|
|
616
616
|
amount?: number | undefined;
|
|
617
617
|
}, {
|
|
618
|
-
action: string;
|
|
619
618
|
target: string;
|
|
619
|
+
action: string;
|
|
620
620
|
amount?: number | undefined;
|
|
621
621
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
622
622
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -652,8 +652,8 @@ export declare function testPolicyResultTypes(): import("..").VincentAbility<z.Z
|
|
|
652
652
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
653
653
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
654
654
|
abilityParameterMappings: Partial<{
|
|
655
|
-
action: "actionType";
|
|
656
655
|
target: "actionType";
|
|
656
|
+
action: "actionType";
|
|
657
657
|
amount?: "actionType" | undefined;
|
|
658
658
|
}>;
|
|
659
659
|
vincentAbilityApiVersion: string;
|
|
@@ -736,8 +736,8 @@ export declare function testPolicyResultTypes(): import("..").VincentAbility<z.Z
|
|
|
736
736
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
737
737
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
738
738
|
abilityParameterMappings: Partial<{
|
|
739
|
-
action: "actionType";
|
|
740
739
|
target: "actionType";
|
|
740
|
+
action: "actionType";
|
|
741
741
|
amount?: "actionType" | undefined;
|
|
742
742
|
}>;
|
|
743
743
|
vincentAbilityApiVersion: string;
|
|
@@ -795,12 +795,12 @@ export declare function testExecutePolicyResultTyping(): import("..").VincentAbi
|
|
|
795
795
|
target: z.ZodString;
|
|
796
796
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
797
797
|
}, "strip", z.ZodTypeAny, {
|
|
798
|
-
action: string;
|
|
799
798
|
target: string;
|
|
799
|
+
action: string;
|
|
800
800
|
amount?: number | undefined;
|
|
801
801
|
}, {
|
|
802
|
-
action: string;
|
|
803
802
|
target: string;
|
|
803
|
+
action: string;
|
|
804
804
|
amount?: number | undefined;
|
|
805
805
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
806
806
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -836,8 +836,8 @@ export declare function testExecutePolicyResultTyping(): import("..").VincentAbi
|
|
|
836
836
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
837
837
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
838
838
|
abilityParameterMappings: Partial<{
|
|
839
|
-
action: "actionType";
|
|
840
839
|
target: "actionType";
|
|
840
|
+
action: "actionType";
|
|
841
841
|
amount?: "actionType" | undefined;
|
|
842
842
|
}>;
|
|
843
843
|
vincentAbilityApiVersion: string;
|
|
@@ -920,8 +920,8 @@ export declare function testExecutePolicyResultTyping(): import("..").VincentAbi
|
|
|
920
920
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
921
921
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
922
922
|
abilityParameterMappings: Partial<{
|
|
923
|
-
action: "actionType";
|
|
924
923
|
target: "actionType";
|
|
924
|
+
action: "actionType";
|
|
925
925
|
amount?: "actionType" | undefined;
|
|
926
926
|
}>;
|
|
927
927
|
vincentAbilityApiVersion: string;
|
|
@@ -976,12 +976,12 @@ export declare const missingExecute: import("..").VincentAbility<z.ZodObject<{
|
|
|
976
976
|
target: z.ZodString;
|
|
977
977
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
978
978
|
}, "strip", z.ZodTypeAny, {
|
|
979
|
-
action: string;
|
|
980
979
|
target: string;
|
|
980
|
+
action: string;
|
|
981
981
|
amount?: number | undefined;
|
|
982
982
|
}, {
|
|
983
|
-
action: string;
|
|
984
983
|
target: string;
|
|
984
|
+
action: string;
|
|
985
985
|
amount?: number | undefined;
|
|
986
986
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
987
987
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -1017,8 +1017,8 @@ export declare const missingExecute: import("..").VincentAbility<z.ZodObject<{
|
|
|
1017
1017
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1018
1018
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
1019
1019
|
abilityParameterMappings: Partial<{
|
|
1020
|
-
action: "actionType";
|
|
1021
1020
|
target: "actionType";
|
|
1021
|
+
action: "actionType";
|
|
1022
1022
|
amount?: "actionType" | undefined;
|
|
1023
1023
|
}>;
|
|
1024
1024
|
vincentAbilityApiVersion: string;
|
|
@@ -1101,8 +1101,8 @@ export declare const missingExecute: import("..").VincentAbility<z.ZodObject<{
|
|
|
1101
1101
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1102
1102
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
1103
1103
|
abilityParameterMappings: Partial<{
|
|
1104
|
-
action: "actionType";
|
|
1105
1104
|
target: "actionType";
|
|
1105
|
+
action: "actionType";
|
|
1106
1106
|
amount?: "actionType" | undefined;
|
|
1107
1107
|
}>;
|
|
1108
1108
|
vincentAbilityApiVersion: string;
|
|
@@ -1186,8 +1186,8 @@ export declare const missingSchema: import("..").VincentAbility<z.ZodType<any, z
|
|
|
1186
1186
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1187
1187
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
1188
1188
|
abilityParameterMappings: Partial<{
|
|
1189
|
-
action: "actionType";
|
|
1190
1189
|
target: "actionType";
|
|
1190
|
+
action: "actionType";
|
|
1191
1191
|
amount?: "actionType" | undefined;
|
|
1192
1192
|
}>;
|
|
1193
1193
|
vincentAbilityApiVersion: string;
|
|
@@ -1270,8 +1270,8 @@ export declare const missingSchema: import("..").VincentAbility<z.ZodType<any, z
|
|
|
1270
1270
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1271
1271
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
1272
1272
|
abilityParameterMappings: Partial<{
|
|
1273
|
-
action: "actionType";
|
|
1274
1273
|
target: "actionType";
|
|
1274
|
+
action: "actionType";
|
|
1275
1275
|
amount?: "actionType" | undefined;
|
|
1276
1276
|
}>;
|
|
1277
1277
|
vincentAbilityApiVersion: string;
|
|
@@ -1330,12 +1330,12 @@ export declare const testReturnNoSchema: () => import("..").VincentAbility<z.Zod
|
|
|
1330
1330
|
target: z.ZodString;
|
|
1331
1331
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
1332
1332
|
}, "strip", z.ZodTypeAny, {
|
|
1333
|
-
action: string;
|
|
1334
1333
|
target: string;
|
|
1334
|
+
action: string;
|
|
1335
1335
|
amount?: number | undefined;
|
|
1336
1336
|
}, {
|
|
1337
|
-
action: string;
|
|
1338
1337
|
target: string;
|
|
1338
|
+
action: string;
|
|
1339
1339
|
amount?: number | undefined;
|
|
1340
1340
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
1341
1341
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -1371,8 +1371,8 @@ export declare const testReturnNoSchema: () => import("..").VincentAbility<z.Zod
|
|
|
1371
1371
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1372
1372
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
1373
1373
|
abilityParameterMappings: Partial<{
|
|
1374
|
-
action: "actionType";
|
|
1375
1374
|
target: "actionType";
|
|
1375
|
+
action: "actionType";
|
|
1376
1376
|
amount?: "actionType" | undefined;
|
|
1377
1377
|
}>;
|
|
1378
1378
|
vincentAbilityApiVersion: string;
|
|
@@ -1455,8 +1455,8 @@ export declare const testReturnNoSchema: () => import("..").VincentAbility<z.Zod
|
|
|
1455
1455
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1456
1456
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
1457
1457
|
abilityParameterMappings: Partial<{
|
|
1458
|
-
action: "actionType";
|
|
1459
1458
|
target: "actionType";
|
|
1459
|
+
action: "actionType";
|
|
1460
1460
|
amount?: "actionType" | undefined;
|
|
1461
1461
|
}>;
|
|
1462
1462
|
vincentAbilityApiVersion: string;
|
|
@@ -1511,12 +1511,12 @@ export declare const testPrecheckNoReturn: () => import("..").VincentAbility<z.Z
|
|
|
1511
1511
|
target: z.ZodString;
|
|
1512
1512
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
1513
1513
|
}, "strip", z.ZodTypeAny, {
|
|
1514
|
-
action: string;
|
|
1515
1514
|
target: string;
|
|
1515
|
+
action: string;
|
|
1516
1516
|
amount?: number | undefined;
|
|
1517
1517
|
}, {
|
|
1518
|
-
action: string;
|
|
1519
1518
|
target: string;
|
|
1519
|
+
action: string;
|
|
1520
1520
|
amount?: number | undefined;
|
|
1521
1521
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
1522
1522
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -1552,8 +1552,8 @@ export declare const testPrecheckNoReturn: () => import("..").VincentAbility<z.Z
|
|
|
1552
1552
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1553
1553
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
1554
1554
|
abilityParameterMappings: Partial<{
|
|
1555
|
-
action: "actionType";
|
|
1556
1555
|
target: "actionType";
|
|
1556
|
+
action: "actionType";
|
|
1557
1557
|
amount?: "actionType" | undefined;
|
|
1558
1558
|
}>;
|
|
1559
1559
|
vincentAbilityApiVersion: string;
|
|
@@ -1636,8 +1636,8 @@ export declare const testPrecheckNoReturn: () => import("..").VincentAbility<z.Z
|
|
|
1636
1636
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1637
1637
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
1638
1638
|
abilityParameterMappings: Partial<{
|
|
1639
|
-
action: "actionType";
|
|
1640
1639
|
target: "actionType";
|
|
1640
|
+
action: "actionType";
|
|
1641
1641
|
amount?: "actionType" | undefined;
|
|
1642
1642
|
}>;
|
|
1643
1643
|
vincentAbilityApiVersion: string;
|
|
@@ -1692,12 +1692,12 @@ export declare const testExecuteNoReturn: () => import("..").VincentAbility<z.Zo
|
|
|
1692
1692
|
target: z.ZodString;
|
|
1693
1693
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
1694
1694
|
}, "strip", z.ZodTypeAny, {
|
|
1695
|
-
action: string;
|
|
1696
1695
|
target: string;
|
|
1696
|
+
action: string;
|
|
1697
1697
|
amount?: number | undefined;
|
|
1698
1698
|
}, {
|
|
1699
|
-
action: string;
|
|
1700
1699
|
target: string;
|
|
1700
|
+
action: string;
|
|
1701
1701
|
amount?: number | undefined;
|
|
1702
1702
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
1703
1703
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -1733,8 +1733,8 @@ export declare const testExecuteNoReturn: () => import("..").VincentAbility<z.Zo
|
|
|
1733
1733
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1734
1734
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
1735
1735
|
abilityParameterMappings: Partial<{
|
|
1736
|
-
action: "actionType";
|
|
1737
1736
|
target: "actionType";
|
|
1737
|
+
action: "actionType";
|
|
1738
1738
|
amount?: "actionType" | undefined;
|
|
1739
1739
|
}>;
|
|
1740
1740
|
vincentAbilityApiVersion: string;
|
|
@@ -1817,8 +1817,8 @@ export declare const testExecuteNoReturn: () => import("..").VincentAbility<z.Zo
|
|
|
1817
1817
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1818
1818
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
1819
1819
|
abilityParameterMappings: Partial<{
|
|
1820
|
-
action: "actionType";
|
|
1821
1820
|
target: "actionType";
|
|
1821
|
+
action: "actionType";
|
|
1822
1822
|
amount?: "actionType" | undefined;
|
|
1823
1823
|
}>;
|
|
1824
1824
|
vincentAbilityApiVersion: string;
|
|
@@ -1873,12 +1873,12 @@ export declare const testPrecheckRawReturn: () => import("..").VincentAbility<z.
|
|
|
1873
1873
|
target: z.ZodString;
|
|
1874
1874
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
1875
1875
|
}, "strip", z.ZodTypeAny, {
|
|
1876
|
-
action: string;
|
|
1877
1876
|
target: string;
|
|
1877
|
+
action: string;
|
|
1878
1878
|
amount?: number | undefined;
|
|
1879
1879
|
}, {
|
|
1880
|
-
action: string;
|
|
1881
1880
|
target: string;
|
|
1881
|
+
action: string;
|
|
1882
1882
|
amount?: number | undefined;
|
|
1883
1883
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
1884
1884
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -1914,8 +1914,8 @@ export declare const testPrecheckRawReturn: () => import("..").VincentAbility<z.
|
|
|
1914
1914
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1915
1915
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
1916
1916
|
abilityParameterMappings: Partial<{
|
|
1917
|
-
action: "actionType";
|
|
1918
1917
|
target: "actionType";
|
|
1918
|
+
action: "actionType";
|
|
1919
1919
|
amount?: "actionType" | undefined;
|
|
1920
1920
|
}>;
|
|
1921
1921
|
vincentAbilityApiVersion: string;
|
|
@@ -1998,8 +1998,8 @@ export declare const testPrecheckRawReturn: () => import("..").VincentAbility<z.
|
|
|
1998
1998
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
1999
1999
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
2000
2000
|
abilityParameterMappings: Partial<{
|
|
2001
|
-
action: "actionType";
|
|
2002
2001
|
target: "actionType";
|
|
2002
|
+
action: "actionType";
|
|
2003
2003
|
amount?: "actionType" | undefined;
|
|
2004
2004
|
}>;
|
|
2005
2005
|
vincentAbilityApiVersion: string;
|
|
@@ -2054,12 +2054,12 @@ export declare const testExecuteRawReturn: () => import("..").VincentAbility<z.Z
|
|
|
2054
2054
|
target: z.ZodString;
|
|
2055
2055
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
2056
2056
|
}, "strip", z.ZodTypeAny, {
|
|
2057
|
-
action: string;
|
|
2058
2057
|
target: string;
|
|
2058
|
+
action: string;
|
|
2059
2059
|
amount?: number | undefined;
|
|
2060
2060
|
}, {
|
|
2061
|
-
action: string;
|
|
2062
2061
|
target: string;
|
|
2062
|
+
action: string;
|
|
2063
2063
|
amount?: number | undefined;
|
|
2064
2064
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
2065
2065
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -2095,8 +2095,8 @@ export declare const testExecuteRawReturn: () => import("..").VincentAbility<z.Z
|
|
|
2095
2095
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
2096
2096
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
2097
2097
|
abilityParameterMappings: Partial<{
|
|
2098
|
-
action: "actionType";
|
|
2099
2098
|
target: "actionType";
|
|
2099
|
+
action: "actionType";
|
|
2100
2100
|
amount?: "actionType" | undefined;
|
|
2101
2101
|
}>;
|
|
2102
2102
|
vincentAbilityApiVersion: string;
|
|
@@ -2179,8 +2179,8 @@ export declare const testExecuteRawReturn: () => import("..").VincentAbility<z.Z
|
|
|
2179
2179
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
2180
2180
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
2181
2181
|
abilityParameterMappings: Partial<{
|
|
2182
|
-
action: "actionType";
|
|
2183
2182
|
target: "actionType";
|
|
2183
|
+
action: "actionType";
|
|
2184
2184
|
amount?: "actionType" | undefined;
|
|
2185
2185
|
}>;
|
|
2186
2186
|
vincentAbilityApiVersion: string;
|
|
@@ -2244,12 +2244,12 @@ export declare const testExecuteWrongTypeReturn: () => import("..").VincentAbili
|
|
|
2244
2244
|
target: z.ZodString;
|
|
2245
2245
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
2246
2246
|
}, "strip", z.ZodTypeAny, {
|
|
2247
|
-
action: string;
|
|
2248
2247
|
target: string;
|
|
2248
|
+
action: string;
|
|
2249
2249
|
amount?: number | undefined;
|
|
2250
2250
|
}, {
|
|
2251
|
-
action: string;
|
|
2252
2251
|
target: string;
|
|
2252
|
+
action: string;
|
|
2253
2253
|
amount?: number | undefined;
|
|
2254
2254
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
2255
2255
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -2285,8 +2285,8 @@ export declare const testExecuteWrongTypeReturn: () => import("..").VincentAbili
|
|
|
2285
2285
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
2286
2286
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
2287
2287
|
abilityParameterMappings: Partial<{
|
|
2288
|
-
action: "actionType";
|
|
2289
2288
|
target: "actionType";
|
|
2289
|
+
action: "actionType";
|
|
2290
2290
|
amount?: "actionType" | undefined;
|
|
2291
2291
|
}>;
|
|
2292
2292
|
vincentAbilityApiVersion: string;
|
|
@@ -2369,8 +2369,8 @@ export declare const testExecuteWrongTypeReturn: () => import("..").VincentAbili
|
|
|
2369
2369
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
2370
2370
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
2371
2371
|
abilityParameterMappings: Partial<{
|
|
2372
|
-
action: "actionType";
|
|
2373
2372
|
target: "actionType";
|
|
2373
|
+
action: "actionType";
|
|
2374
2374
|
amount?: "actionType" | undefined;
|
|
2375
2375
|
}>;
|
|
2376
2376
|
vincentAbilityApiVersion: string;
|
|
@@ -2434,12 +2434,12 @@ export declare const testPrecheckWrongSchema: () => import("..").VincentAbility<
|
|
|
2434
2434
|
target: z.ZodString;
|
|
2435
2435
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
2436
2436
|
}, "strip", z.ZodTypeAny, {
|
|
2437
|
-
action: string;
|
|
2438
2437
|
target: string;
|
|
2438
|
+
action: string;
|
|
2439
2439
|
amount?: number | undefined;
|
|
2440
2440
|
}, {
|
|
2441
|
-
action: string;
|
|
2442
2441
|
target: string;
|
|
2442
|
+
action: string;
|
|
2443
2443
|
amount?: number | undefined;
|
|
2444
2444
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
2445
2445
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -2475,8 +2475,8 @@ export declare const testPrecheckWrongSchema: () => import("..").VincentAbility<
|
|
|
2475
2475
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
2476
2476
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
2477
2477
|
abilityParameterMappings: Partial<{
|
|
2478
|
-
action: "actionType";
|
|
2479
2478
|
target: "actionType";
|
|
2479
|
+
action: "actionType";
|
|
2480
2480
|
amount?: "actionType" | undefined;
|
|
2481
2481
|
}>;
|
|
2482
2482
|
vincentAbilityApiVersion: string;
|
|
@@ -2559,8 +2559,8 @@ export declare const testPrecheckWrongSchema: () => import("..").VincentAbility<
|
|
|
2559
2559
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
2560
2560
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
2561
2561
|
abilityParameterMappings: Partial<{
|
|
2562
|
-
action: "actionType";
|
|
2563
2562
|
target: "actionType";
|
|
2563
|
+
action: "actionType";
|
|
2564
2564
|
amount?: "actionType" | undefined;
|
|
2565
2565
|
}>;
|
|
2566
2566
|
vincentAbilityApiVersion: string;
|
|
@@ -2627,12 +2627,12 @@ export declare const testExecuteWrongSchema: () => import("..").VincentAbility<z
|
|
|
2627
2627
|
target: z.ZodString;
|
|
2628
2628
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
2629
2629
|
}, "strip", z.ZodTypeAny, {
|
|
2630
|
-
action: string;
|
|
2631
2630
|
target: string;
|
|
2631
|
+
action: string;
|
|
2632
2632
|
amount?: number | undefined;
|
|
2633
2633
|
}, {
|
|
2634
|
-
action: string;
|
|
2635
2634
|
target: string;
|
|
2635
|
+
action: string;
|
|
2636
2636
|
amount?: number | undefined;
|
|
2637
2637
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
2638
2638
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -2668,8 +2668,8 @@ export declare const testExecuteWrongSchema: () => import("..").VincentAbility<z
|
|
|
2668
2668
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
2669
2669
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
2670
2670
|
abilityParameterMappings: Partial<{
|
|
2671
|
-
action: "actionType";
|
|
2672
2671
|
target: "actionType";
|
|
2672
|
+
action: "actionType";
|
|
2673
2673
|
amount?: "actionType" | undefined;
|
|
2674
2674
|
}>;
|
|
2675
2675
|
vincentAbilityApiVersion: string;
|
|
@@ -2752,8 +2752,8 @@ export declare const testExecuteWrongSchema: () => import("..").VincentAbility<z
|
|
|
2752
2752
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
2753
2753
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
2754
2754
|
abilityParameterMappings: Partial<{
|
|
2755
|
-
action: "actionType";
|
|
2756
2755
|
target: "actionType";
|
|
2756
|
+
action: "actionType";
|
|
2757
2757
|
amount?: "actionType" | undefined;
|
|
2758
2758
|
}>;
|
|
2759
2759
|
vincentAbilityApiVersion: string;
|
|
@@ -2820,12 +2820,12 @@ export declare const testPrecheckSuccessWithFailSchema: () => import("..").Vince
|
|
|
2820
2820
|
target: z.ZodString;
|
|
2821
2821
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
2822
2822
|
}, "strip", z.ZodTypeAny, {
|
|
2823
|
-
action: string;
|
|
2824
2823
|
target: string;
|
|
2824
|
+
action: string;
|
|
2825
2825
|
amount?: number | undefined;
|
|
2826
2826
|
}, {
|
|
2827
|
-
action: string;
|
|
2828
2827
|
target: string;
|
|
2828
|
+
action: string;
|
|
2829
2829
|
amount?: number | undefined;
|
|
2830
2830
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
2831
2831
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -2861,8 +2861,8 @@ export declare const testPrecheckSuccessWithFailSchema: () => import("..").Vince
|
|
|
2861
2861
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
2862
2862
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
2863
2863
|
abilityParameterMappings: Partial<{
|
|
2864
|
-
action: "actionType";
|
|
2865
2864
|
target: "actionType";
|
|
2865
|
+
action: "actionType";
|
|
2866
2866
|
amount?: "actionType" | undefined;
|
|
2867
2867
|
}>;
|
|
2868
2868
|
vincentAbilityApiVersion: string;
|
|
@@ -2945,8 +2945,8 @@ export declare const testPrecheckSuccessWithFailSchema: () => import("..").Vince
|
|
|
2945
2945
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
2946
2946
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
2947
2947
|
abilityParameterMappings: Partial<{
|
|
2948
|
-
action: "actionType";
|
|
2949
2948
|
target: "actionType";
|
|
2949
|
+
action: "actionType";
|
|
2950
2950
|
amount?: "actionType" | undefined;
|
|
2951
2951
|
}>;
|
|
2952
2952
|
vincentAbilityApiVersion: string;
|
|
@@ -3016,12 +3016,12 @@ export declare const testExecuteFailWithSuccessSchema: () => import("..").Vincen
|
|
|
3016
3016
|
target: z.ZodString;
|
|
3017
3017
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
3018
3018
|
}, "strip", z.ZodTypeAny, {
|
|
3019
|
-
action: string;
|
|
3020
3019
|
target: string;
|
|
3020
|
+
action: string;
|
|
3021
3021
|
amount?: number | undefined;
|
|
3022
3022
|
}, {
|
|
3023
|
-
action: string;
|
|
3024
3023
|
target: string;
|
|
3024
|
+
action: string;
|
|
3025
3025
|
amount?: number | undefined;
|
|
3026
3026
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
3027
3027
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -3057,8 +3057,8 @@ export declare const testExecuteFailWithSuccessSchema: () => import("..").Vincen
|
|
|
3057
3057
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
3058
3058
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
3059
3059
|
abilityParameterMappings: Partial<{
|
|
3060
|
-
action: "actionType";
|
|
3061
3060
|
target: "actionType";
|
|
3061
|
+
action: "actionType";
|
|
3062
3062
|
amount?: "actionType" | undefined;
|
|
3063
3063
|
}>;
|
|
3064
3064
|
vincentAbilityApiVersion: string;
|
|
@@ -3141,8 +3141,8 @@ export declare const testExecuteFailWithSuccessSchema: () => import("..").Vincen
|
|
|
3141
3141
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
3142
3142
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
3143
3143
|
abilityParameterMappings: Partial<{
|
|
3144
|
-
action: "actionType";
|
|
3145
3144
|
target: "actionType";
|
|
3145
|
+
action: "actionType";
|
|
3146
3146
|
amount?: "actionType" | undefined;
|
|
3147
3147
|
}>;
|
|
3148
3148
|
vincentAbilityApiVersion: string;
|
|
@@ -3212,12 +3212,12 @@ export declare const testReturnWithInnerFunctions: () => import("..").VincentAbi
|
|
|
3212
3212
|
target: z.ZodString;
|
|
3213
3213
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
3214
3214
|
}, "strip", z.ZodTypeAny, {
|
|
3215
|
-
action: string;
|
|
3216
3215
|
target: string;
|
|
3216
|
+
action: string;
|
|
3217
3217
|
amount?: number | undefined;
|
|
3218
3218
|
}, {
|
|
3219
|
-
action: string;
|
|
3220
3219
|
target: string;
|
|
3220
|
+
action: string;
|
|
3221
3221
|
amount?: number | undefined;
|
|
3222
3222
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
3223
3223
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -3253,8 +3253,8 @@ export declare const testReturnWithInnerFunctions: () => import("..").VincentAbi
|
|
|
3253
3253
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
3254
3254
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
3255
3255
|
abilityParameterMappings: Partial<{
|
|
3256
|
-
action: "actionType";
|
|
3257
3256
|
target: "actionType";
|
|
3257
|
+
action: "actionType";
|
|
3258
3258
|
amount?: "actionType" | undefined;
|
|
3259
3259
|
}>;
|
|
3260
3260
|
vincentAbilityApiVersion: string;
|
|
@@ -3337,8 +3337,8 @@ export declare const testReturnWithInnerFunctions: () => import("..").VincentAbi
|
|
|
3337
3337
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
3338
3338
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
3339
3339
|
abilityParameterMappings: Partial<{
|
|
3340
|
-
action: "actionType";
|
|
3341
3340
|
target: "actionType";
|
|
3341
|
+
action: "actionType";
|
|
3342
3342
|
amount?: "actionType" | undefined;
|
|
3343
3343
|
}>;
|
|
3344
3344
|
vincentAbilityApiVersion: string;
|
|
@@ -3393,12 +3393,12 @@ export declare const testPrecheckConditionalReturns: () => import("..").VincentA
|
|
|
3393
3393
|
target: z.ZodString;
|
|
3394
3394
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
3395
3395
|
}, "strip", z.ZodTypeAny, {
|
|
3396
|
-
action: string;
|
|
3397
3396
|
target: string;
|
|
3397
|
+
action: string;
|
|
3398
3398
|
amount?: number | undefined;
|
|
3399
3399
|
}, {
|
|
3400
|
-
action: string;
|
|
3401
3400
|
target: string;
|
|
3401
|
+
action: string;
|
|
3402
3402
|
amount?: number | undefined;
|
|
3403
3403
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
3404
3404
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -3434,8 +3434,8 @@ export declare const testPrecheckConditionalReturns: () => import("..").VincentA
|
|
|
3434
3434
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
3435
3435
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
3436
3436
|
abilityParameterMappings: Partial<{
|
|
3437
|
-
action: "actionType";
|
|
3438
3437
|
target: "actionType";
|
|
3438
|
+
action: "actionType";
|
|
3439
3439
|
amount?: "actionType" | undefined;
|
|
3440
3440
|
}>;
|
|
3441
3441
|
vincentAbilityApiVersion: string;
|
|
@@ -3518,8 +3518,8 @@ export declare const testPrecheckConditionalReturns: () => import("..").VincentA
|
|
|
3518
3518
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
3519
3519
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
3520
3520
|
abilityParameterMappings: Partial<{
|
|
3521
|
-
action: "actionType";
|
|
3522
3521
|
target: "actionType";
|
|
3522
|
+
action: "actionType";
|
|
3523
3523
|
amount?: "actionType" | undefined;
|
|
3524
3524
|
}>;
|
|
3525
3525
|
vincentAbilityApiVersion: string;
|
|
@@ -3574,12 +3574,12 @@ export declare const testExecuteConditionalReturns: () => import("..").VincentAb
|
|
|
3574
3574
|
target: z.ZodString;
|
|
3575
3575
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
3576
3576
|
}, "strip", z.ZodTypeAny, {
|
|
3577
|
-
action: string;
|
|
3578
3577
|
target: string;
|
|
3578
|
+
action: string;
|
|
3579
3579
|
amount?: number | undefined;
|
|
3580
3580
|
}, {
|
|
3581
|
-
action: string;
|
|
3582
3581
|
target: string;
|
|
3582
|
+
action: string;
|
|
3583
3583
|
amount?: number | undefined;
|
|
3584
3584
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
3585
3585
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -3615,8 +3615,8 @@ export declare const testExecuteConditionalReturns: () => import("..").VincentAb
|
|
|
3615
3615
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
3616
3616
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
3617
3617
|
abilityParameterMappings: Partial<{
|
|
3618
|
-
action: "actionType";
|
|
3619
3618
|
target: "actionType";
|
|
3619
|
+
action: "actionType";
|
|
3620
3620
|
amount?: "actionType" | undefined;
|
|
3621
3621
|
}>;
|
|
3622
3622
|
vincentAbilityApiVersion: string;
|
|
@@ -3699,8 +3699,8 @@ export declare const testExecuteConditionalReturns: () => import("..").VincentAb
|
|
|
3699
3699
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
3700
3700
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
3701
3701
|
abilityParameterMappings: Partial<{
|
|
3702
|
-
action: "actionType";
|
|
3703
3702
|
target: "actionType";
|
|
3703
|
+
action: "actionType";
|
|
3704
3704
|
amount?: "actionType" | undefined;
|
|
3705
3705
|
}>;
|
|
3706
3706
|
vincentAbilityApiVersion: string;
|
|
@@ -3755,12 +3755,12 @@ export declare const testPrecheckAsyncWithoutAwait: () => import("..").VincentAb
|
|
|
3755
3755
|
target: z.ZodString;
|
|
3756
3756
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
3757
3757
|
}, "strip", z.ZodTypeAny, {
|
|
3758
|
-
action: string;
|
|
3759
3758
|
target: string;
|
|
3759
|
+
action: string;
|
|
3760
3760
|
amount?: number | undefined;
|
|
3761
3761
|
}, {
|
|
3762
|
-
action: string;
|
|
3763
3762
|
target: string;
|
|
3763
|
+
action: string;
|
|
3764
3764
|
amount?: number | undefined;
|
|
3765
3765
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
3766
3766
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -3796,8 +3796,8 @@ export declare const testPrecheckAsyncWithoutAwait: () => import("..").VincentAb
|
|
|
3796
3796
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
3797
3797
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
3798
3798
|
abilityParameterMappings: Partial<{
|
|
3799
|
-
action: "actionType";
|
|
3800
3799
|
target: "actionType";
|
|
3800
|
+
action: "actionType";
|
|
3801
3801
|
amount?: "actionType" | undefined;
|
|
3802
3802
|
}>;
|
|
3803
3803
|
vincentAbilityApiVersion: string;
|
|
@@ -3880,8 +3880,8 @@ export declare const testPrecheckAsyncWithoutAwait: () => import("..").VincentAb
|
|
|
3880
3880
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
3881
3881
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
3882
3882
|
abilityParameterMappings: Partial<{
|
|
3883
|
-
action: "actionType";
|
|
3884
3883
|
target: "actionType";
|
|
3884
|
+
action: "actionType";
|
|
3885
3885
|
amount?: "actionType" | undefined;
|
|
3886
3886
|
}>;
|
|
3887
3887
|
vincentAbilityApiVersion: string;
|
|
@@ -3936,12 +3936,12 @@ export declare const testExecuteTryCatchReturn: () => import("..").VincentAbilit
|
|
|
3936
3936
|
target: z.ZodString;
|
|
3937
3937
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
3938
3938
|
}, "strip", z.ZodTypeAny, {
|
|
3939
|
-
action: string;
|
|
3940
3939
|
target: string;
|
|
3940
|
+
action: string;
|
|
3941
3941
|
amount?: number | undefined;
|
|
3942
3942
|
}, {
|
|
3943
|
-
action: string;
|
|
3944
3943
|
target: string;
|
|
3944
|
+
action: string;
|
|
3945
3945
|
amount?: number | undefined;
|
|
3946
3946
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
3947
3947
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -3977,8 +3977,8 @@ export declare const testExecuteTryCatchReturn: () => import("..").VincentAbilit
|
|
|
3977
3977
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
3978
3978
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
3979
3979
|
abilityParameterMappings: Partial<{
|
|
3980
|
-
action: "actionType";
|
|
3981
3980
|
target: "actionType";
|
|
3981
|
+
action: "actionType";
|
|
3982
3982
|
amount?: "actionType" | undefined;
|
|
3983
3983
|
}>;
|
|
3984
3984
|
vincentAbilityApiVersion: string;
|
|
@@ -4061,8 +4061,8 @@ export declare const testExecuteTryCatchReturn: () => import("..").VincentAbilit
|
|
|
4061
4061
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
4062
4062
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
4063
4063
|
abilityParameterMappings: Partial<{
|
|
4064
|
-
action: "actionType";
|
|
4065
4064
|
target: "actionType";
|
|
4065
|
+
action: "actionType";
|
|
4066
4066
|
amount?: "actionType" | undefined;
|
|
4067
4067
|
}>;
|
|
4068
4068
|
vincentAbilityApiVersion: string;
|
|
@@ -4120,12 +4120,12 @@ export declare function testContextDestructuring(): import("..").VincentAbility<
|
|
|
4120
4120
|
target: z.ZodString;
|
|
4121
4121
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
4122
4122
|
}, "strip", z.ZodTypeAny, {
|
|
4123
|
-
action: string;
|
|
4124
4123
|
target: string;
|
|
4124
|
+
action: string;
|
|
4125
4125
|
amount?: number | undefined;
|
|
4126
4126
|
}, {
|
|
4127
|
-
action: string;
|
|
4128
4127
|
target: string;
|
|
4128
|
+
action: string;
|
|
4129
4129
|
amount?: number | undefined;
|
|
4130
4130
|
}>, string, import("../lib/abilityCore/helpers").AbilityPolicyMap<readonly [{
|
|
4131
4131
|
vincentPolicy: import("../internal").VincentPolicy<"@lit-protocol/test-policy@1.0.0", z.ZodObject<{
|
|
@@ -4161,8 +4161,8 @@ export declare function testContextDestructuring(): import("..").VincentAbility<
|
|
|
4161
4161
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
4162
4162
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
4163
4163
|
abilityParameterMappings: Partial<{
|
|
4164
|
-
action: "actionType";
|
|
4165
4164
|
target: "actionType";
|
|
4165
|
+
action: "actionType";
|
|
4166
4166
|
amount?: "actionType" | undefined;
|
|
4167
4167
|
}>;
|
|
4168
4168
|
vincentAbilityApiVersion: string;
|
|
@@ -4245,8 +4245,8 @@ export declare function testContextDestructuring(): import("..").VincentAbility<
|
|
|
4245
4245
|
}>, z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>, import("../lib/types").CommitLifecycleFunction<z.ZodUndefined, z.ZodUndefined, z.ZodUndefined>>;
|
|
4246
4246
|
ipfsCid: "j298jhodf9024j4jfg";
|
|
4247
4247
|
abilityParameterMappings: Partial<{
|
|
4248
|
-
action: "actionType";
|
|
4249
4248
|
target: "actionType";
|
|
4249
|
+
action: "actionType";
|
|
4250
4250
|
amount?: "actionType" | undefined;
|
|
4251
4251
|
}>;
|
|
4252
4252
|
vincentAbilityApiVersion: string;
|