@nexeraid/identity-schemas 1.12.9-dev → 1.12.11-dev
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/declarations/src/customer.schema.d.ts +93 -0
- package/dist/declarations/src/customer.schema.d.ts.map +1 -0
- package/dist/declarations/src/identity/app-requests.schema.d.ts +10 -10
- package/dist/declarations/src/identity/execute-scenario.schema.d.ts +1 -0
- package/dist/declarations/src/identity/execute-scenario.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/host-requests.schema.d.ts +36 -56
- package/dist/declarations/src/identity/host-requests.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/identity-v2.schema.d.ts +76 -56
- package/dist/declarations/src/identity/identity-v2.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/kyc.schema.d.ts +22 -32
- package/dist/declarations/src/identity/kyc.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/txAuthData.schema.d.ts +30 -48
- package/dist/declarations/src/identity/txAuthData.schema.d.ts.map +1 -1
- package/dist/declarations/src/index.d.ts +2 -0
- package/dist/declarations/src/index.d.ts.map +1 -1
- package/dist/frontend-utilities.schema-205058ee.cjs.dev.js +2129 -0
- package/dist/frontend-utilities.schema-43c7bf6d.esm.js +2124 -0
- package/dist/frontend-utilities.schema-9cf8924c.cjs.prod.js +2129 -0
- package/dist/{identity-api.schema-38f27d6b.esm.js → identity-api.schema-0bb85c0c.esm.js} +106 -13
- package/dist/{identity-api.schema-46a66e5e.cjs.dev.js → identity-api.schema-1f84a316.cjs.prod.js} +125 -12
- package/dist/{identity-api.schema-b63a1396.cjs.prod.js → identity-api.schema-986819d9.cjs.dev.js} +125 -12
- package/dist/nexeraid-identity-schemas.cjs.dev.js +48 -1
- package/dist/nexeraid-identity-schemas.cjs.prod.js +48 -1
- package/dist/nexeraid-identity-schemas.esm.js +3 -2
- package/dist/package.json +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +3 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +3 -1
- package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
- package/package.json +1 -1
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +6 -2124
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +6 -2124
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2125
|
@@ -223,6 +223,14 @@ export declare const TrxSignatureGatingRequest: z.ZodObject<{
|
|
|
223
223
|
};
|
|
224
224
|
}>;
|
|
225
225
|
export type TrxSignatureGatingRequest = z.infer<typeof TrxSignatureGatingRequest>;
|
|
226
|
+
export declare const GetCustomerStatusRequest: z.ZodObject<{
|
|
227
|
+
type: z.ZodLiteral<"getCustomerStatusRequest">;
|
|
228
|
+
}, "strip", z.ZodTypeAny, {
|
|
229
|
+
type: "getCustomerStatusRequest";
|
|
230
|
+
}, {
|
|
231
|
+
type: "getCustomerStatusRequest";
|
|
232
|
+
}>;
|
|
233
|
+
export type GetCustomerStatusRequest = z.infer<typeof GetCustomerStatusRequest>;
|
|
226
234
|
export declare const IdentitySdkMessage: z.ZodUnion<[z.ZodObject<{
|
|
227
235
|
type: z.ZodLiteral<"appConfig">;
|
|
228
236
|
data: z.ZodObject<{
|
|
@@ -498,6 +506,12 @@ export declare const IdentitySdkMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
498
506
|
userAddress: string;
|
|
499
507
|
});
|
|
500
508
|
};
|
|
509
|
+
}>, z.ZodObject<{
|
|
510
|
+
type: z.ZodLiteral<"getCustomerStatusRequest">;
|
|
511
|
+
}, "strip", z.ZodTypeAny, {
|
|
512
|
+
type: "getCustomerStatusRequest";
|
|
513
|
+
}, {
|
|
514
|
+
type: "getCustomerStatusRequest";
|
|
501
515
|
}>]>;
|
|
502
516
|
export type IdentitySdkMessage = z.infer<typeof IdentitySdkMessage>;
|
|
503
517
|
export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
@@ -775,6 +789,12 @@ export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUn
|
|
|
775
789
|
userAddress: string;
|
|
776
790
|
});
|
|
777
791
|
};
|
|
792
|
+
}>, z.ZodObject<{
|
|
793
|
+
type: z.ZodLiteral<"getCustomerStatusRequest">;
|
|
794
|
+
}, "strip", z.ZodTypeAny, {
|
|
795
|
+
type: "getCustomerStatusRequest";
|
|
796
|
+
}, {
|
|
797
|
+
type: "getCustomerStatusRequest";
|
|
778
798
|
}>]>, z.ZodObject<{
|
|
779
799
|
identifier: z.ZodString;
|
|
780
800
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -785,22 +805,19 @@ export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUn
|
|
|
785
805
|
export type IdentitySdkMessageWithIdentifier = z.infer<typeof IdentitySdkMessageWithIdentifier>;
|
|
786
806
|
export declare const TrxSignatureGatingResponse: z.ZodObject<{
|
|
787
807
|
type: z.ZodLiteral<"trxSignatureGatingResponse">;
|
|
788
|
-
data: z.ZodUnion<[z.ZodIntersection<z.
|
|
789
|
-
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
790
|
-
}, "strip", z.ZodTypeAny, {
|
|
791
|
-
blockExpiration?: number | undefined;
|
|
792
|
-
}, {
|
|
793
|
-
blockExpiration?: number | undefined;
|
|
794
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
808
|
+
data: z.ZodUnion<[z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
795
809
|
isAuthorized: z.ZodLiteral<true>;
|
|
796
810
|
signature: z.ZodEffects<z.ZodString, string, string>;
|
|
797
811
|
payload: z.ZodString;
|
|
812
|
+
blockExpiration: z.ZodNumber;
|
|
798
813
|
}, "strip", z.ZodTypeAny, {
|
|
799
814
|
signature: string;
|
|
815
|
+
blockExpiration: number;
|
|
800
816
|
isAuthorized: true;
|
|
801
817
|
payload: string;
|
|
802
818
|
}, {
|
|
803
819
|
signature: string;
|
|
820
|
+
blockExpiration: number;
|
|
804
821
|
isAuthorized: true;
|
|
805
822
|
payload: string;
|
|
806
823
|
}>, z.ZodObject<{
|
|
@@ -812,7 +829,7 @@ export declare const TrxSignatureGatingResponse: z.ZodObject<{
|
|
|
812
829
|
}, {
|
|
813
830
|
isAuthorized: false;
|
|
814
831
|
errorMessage?: any;
|
|
815
|
-
}>]
|
|
832
|
+
}>]>, z.ZodObject<{
|
|
816
833
|
namespace: z.ZodLiteral<"eip155">;
|
|
817
834
|
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
818
835
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -821,20 +838,17 @@ export declare const TrxSignatureGatingResponse: z.ZodObject<{
|
|
|
821
838
|
}, {
|
|
822
839
|
namespace: "eip155";
|
|
823
840
|
userAddress: string;
|
|
824
|
-
}>>, z.ZodIntersection<z.
|
|
825
|
-
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
826
|
-
}, "strip", z.ZodTypeAny, {
|
|
827
|
-
blockExpiration?: number | undefined;
|
|
828
|
-
}, {
|
|
829
|
-
blockExpiration?: number | undefined;
|
|
830
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
841
|
+
}>>, z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
831
842
|
isAuthorized: z.ZodLiteral<true>;
|
|
832
843
|
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
|
|
844
|
+
blockExpiration: z.ZodNumber;
|
|
833
845
|
}, "strip", z.ZodTypeAny, {
|
|
834
846
|
signature: `edsig${string}`;
|
|
847
|
+
blockExpiration: number;
|
|
835
848
|
isAuthorized: true;
|
|
836
849
|
}, {
|
|
837
850
|
signature: string;
|
|
851
|
+
blockExpiration: number;
|
|
838
852
|
isAuthorized: true;
|
|
839
853
|
}>, z.ZodObject<{
|
|
840
854
|
isAuthorized: z.ZodLiteral<false>;
|
|
@@ -845,7 +859,7 @@ export declare const TrxSignatureGatingResponse: z.ZodObject<{
|
|
|
845
859
|
}, {
|
|
846
860
|
isAuthorized: false;
|
|
847
861
|
errorMessage?: any;
|
|
848
|
-
}>]
|
|
862
|
+
}>]>, z.ZodObject<{
|
|
849
863
|
namespace: z.ZodLiteral<"tezos">;
|
|
850
864
|
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
|
|
851
865
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -858,57 +872,64 @@ export declare const TrxSignatureGatingResponse: z.ZodObject<{
|
|
|
858
872
|
}, "strip", z.ZodTypeAny, {
|
|
859
873
|
type: "trxSignatureGatingResponse";
|
|
860
874
|
data: (({
|
|
861
|
-
blockExpiration?: number | undefined;
|
|
862
|
-
} & ({
|
|
863
875
|
signature: string;
|
|
876
|
+
blockExpiration: number;
|
|
864
877
|
isAuthorized: true;
|
|
865
878
|
payload: string;
|
|
866
879
|
} | {
|
|
867
880
|
isAuthorized: false;
|
|
868
881
|
errorMessage?: any;
|
|
869
|
-
})
|
|
882
|
+
}) & {
|
|
870
883
|
namespace: "eip155";
|
|
871
884
|
userAddress: `0x${string}`;
|
|
872
885
|
}) | (({
|
|
873
|
-
blockExpiration?: number | undefined;
|
|
874
|
-
} & ({
|
|
875
886
|
signature: `edsig${string}`;
|
|
887
|
+
blockExpiration: number;
|
|
876
888
|
isAuthorized: true;
|
|
877
889
|
} | {
|
|
878
890
|
isAuthorized: false;
|
|
879
891
|
errorMessage?: any;
|
|
880
|
-
})
|
|
892
|
+
}) & {
|
|
881
893
|
namespace: "tezos";
|
|
882
894
|
userAddress: `tz${string}`;
|
|
883
895
|
});
|
|
884
896
|
}, {
|
|
885
897
|
type: "trxSignatureGatingResponse";
|
|
886
898
|
data: (({
|
|
887
|
-
blockExpiration?: number | undefined;
|
|
888
|
-
} & ({
|
|
889
899
|
signature: string;
|
|
900
|
+
blockExpiration: number;
|
|
890
901
|
isAuthorized: true;
|
|
891
902
|
payload: string;
|
|
892
903
|
} | {
|
|
893
904
|
isAuthorized: false;
|
|
894
905
|
errorMessage?: any;
|
|
895
|
-
})
|
|
906
|
+
}) & {
|
|
896
907
|
namespace: "eip155";
|
|
897
908
|
userAddress: string;
|
|
898
909
|
}) | (({
|
|
899
|
-
blockExpiration?: number | undefined;
|
|
900
|
-
} & ({
|
|
901
910
|
signature: string;
|
|
911
|
+
blockExpiration: number;
|
|
902
912
|
isAuthorized: true;
|
|
903
913
|
} | {
|
|
904
914
|
isAuthorized: false;
|
|
905
915
|
errorMessage?: any;
|
|
906
|
-
})
|
|
916
|
+
}) & {
|
|
907
917
|
namespace: "tezos";
|
|
908
918
|
userAddress: string;
|
|
909
919
|
});
|
|
910
920
|
}>;
|
|
911
921
|
export type TrxSignatureGatingResponse = z.infer<typeof TrxSignatureGatingResponse>;
|
|
922
|
+
export declare const GetCustomerStatusResponse: z.ZodObject<{
|
|
923
|
+
type: z.ZodLiteral<"getCustomerStatusResponse">;
|
|
924
|
+
data: z.ZodUnion<[z.ZodEffects<z.ZodEnum<["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"]>, "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status", unknown>, z.ZodNull]>;
|
|
925
|
+
}, "strip", z.ZodTypeAny, {
|
|
926
|
+
type: "getCustomerStatusResponse";
|
|
927
|
+
data: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null;
|
|
928
|
+
}, {
|
|
929
|
+
type: "getCustomerStatusResponse";
|
|
930
|
+
data?: unknown;
|
|
931
|
+
}>;
|
|
932
|
+
export type GetCustomerStatusResponse = z.infer<typeof GetCustomerStatusResponse>;
|
|
912
933
|
export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
913
934
|
type: z.ZodLiteral<"identityAppLoaded">;
|
|
914
935
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -969,22 +990,19 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
969
990
|
};
|
|
970
991
|
}>, z.ZodObject<{
|
|
971
992
|
type: z.ZodLiteral<"trxSignatureGatingResponse">;
|
|
972
|
-
data: z.ZodUnion<[z.ZodIntersection<z.
|
|
973
|
-
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
974
|
-
}, "strip", z.ZodTypeAny, {
|
|
975
|
-
blockExpiration?: number | undefined;
|
|
976
|
-
}, {
|
|
977
|
-
blockExpiration?: number | undefined;
|
|
978
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
993
|
+
data: z.ZodUnion<[z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
979
994
|
isAuthorized: z.ZodLiteral<true>;
|
|
980
995
|
signature: z.ZodEffects<z.ZodString, string, string>;
|
|
981
996
|
payload: z.ZodString;
|
|
997
|
+
blockExpiration: z.ZodNumber;
|
|
982
998
|
}, "strip", z.ZodTypeAny, {
|
|
983
999
|
signature: string;
|
|
1000
|
+
blockExpiration: number;
|
|
984
1001
|
isAuthorized: true;
|
|
985
1002
|
payload: string;
|
|
986
1003
|
}, {
|
|
987
1004
|
signature: string;
|
|
1005
|
+
blockExpiration: number;
|
|
988
1006
|
isAuthorized: true;
|
|
989
1007
|
payload: string;
|
|
990
1008
|
}>, z.ZodObject<{
|
|
@@ -996,7 +1014,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
996
1014
|
}, {
|
|
997
1015
|
isAuthorized: false;
|
|
998
1016
|
errorMessage?: any;
|
|
999
|
-
}>]
|
|
1017
|
+
}>]>, z.ZodObject<{
|
|
1000
1018
|
namespace: z.ZodLiteral<"eip155">;
|
|
1001
1019
|
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
1002
1020
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1005,20 +1023,17 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
1005
1023
|
}, {
|
|
1006
1024
|
namespace: "eip155";
|
|
1007
1025
|
userAddress: string;
|
|
1008
|
-
}>>, z.ZodIntersection<z.
|
|
1009
|
-
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
1010
|
-
}, "strip", z.ZodTypeAny, {
|
|
1011
|
-
blockExpiration?: number | undefined;
|
|
1012
|
-
}, {
|
|
1013
|
-
blockExpiration?: number | undefined;
|
|
1014
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1026
|
+
}>>, z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
1015
1027
|
isAuthorized: z.ZodLiteral<true>;
|
|
1016
1028
|
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
|
|
1029
|
+
blockExpiration: z.ZodNumber;
|
|
1017
1030
|
}, "strip", z.ZodTypeAny, {
|
|
1018
1031
|
signature: `edsig${string}`;
|
|
1032
|
+
blockExpiration: number;
|
|
1019
1033
|
isAuthorized: true;
|
|
1020
1034
|
}, {
|
|
1021
1035
|
signature: string;
|
|
1036
|
+
blockExpiration: number;
|
|
1022
1037
|
isAuthorized: true;
|
|
1023
1038
|
}>, z.ZodObject<{
|
|
1024
1039
|
isAuthorized: z.ZodLiteral<false>;
|
|
@@ -1029,7 +1044,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
1029
1044
|
}, {
|
|
1030
1045
|
isAuthorized: false;
|
|
1031
1046
|
errorMessage?: any;
|
|
1032
|
-
}>]
|
|
1047
|
+
}>]>, z.ZodObject<{
|
|
1033
1048
|
namespace: z.ZodLiteral<"tezos">;
|
|
1034
1049
|
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
|
|
1035
1050
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1042,55 +1057,60 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
1042
1057
|
}, "strip", z.ZodTypeAny, {
|
|
1043
1058
|
type: "trxSignatureGatingResponse";
|
|
1044
1059
|
data: (({
|
|
1045
|
-
blockExpiration?: number | undefined;
|
|
1046
|
-
} & ({
|
|
1047
1060
|
signature: string;
|
|
1061
|
+
blockExpiration: number;
|
|
1048
1062
|
isAuthorized: true;
|
|
1049
1063
|
payload: string;
|
|
1050
1064
|
} | {
|
|
1051
1065
|
isAuthorized: false;
|
|
1052
1066
|
errorMessage?: any;
|
|
1053
|
-
})
|
|
1067
|
+
}) & {
|
|
1054
1068
|
namespace: "eip155";
|
|
1055
1069
|
userAddress: `0x${string}`;
|
|
1056
1070
|
}) | (({
|
|
1057
|
-
blockExpiration?: number | undefined;
|
|
1058
|
-
} & ({
|
|
1059
1071
|
signature: `edsig${string}`;
|
|
1072
|
+
blockExpiration: number;
|
|
1060
1073
|
isAuthorized: true;
|
|
1061
1074
|
} | {
|
|
1062
1075
|
isAuthorized: false;
|
|
1063
1076
|
errorMessage?: any;
|
|
1064
|
-
})
|
|
1077
|
+
}) & {
|
|
1065
1078
|
namespace: "tezos";
|
|
1066
1079
|
userAddress: `tz${string}`;
|
|
1067
1080
|
});
|
|
1068
1081
|
}, {
|
|
1069
1082
|
type: "trxSignatureGatingResponse";
|
|
1070
1083
|
data: (({
|
|
1071
|
-
blockExpiration?: number | undefined;
|
|
1072
|
-
} & ({
|
|
1073
1084
|
signature: string;
|
|
1085
|
+
blockExpiration: number;
|
|
1074
1086
|
isAuthorized: true;
|
|
1075
1087
|
payload: string;
|
|
1076
1088
|
} | {
|
|
1077
1089
|
isAuthorized: false;
|
|
1078
1090
|
errorMessage?: any;
|
|
1079
|
-
})
|
|
1091
|
+
}) & {
|
|
1080
1092
|
namespace: "eip155";
|
|
1081
1093
|
userAddress: string;
|
|
1082
1094
|
}) | (({
|
|
1083
|
-
blockExpiration?: number | undefined;
|
|
1084
|
-
} & ({
|
|
1085
1095
|
signature: string;
|
|
1096
|
+
blockExpiration: number;
|
|
1086
1097
|
isAuthorized: true;
|
|
1087
1098
|
} | {
|
|
1088
1099
|
isAuthorized: false;
|
|
1089
1100
|
errorMessage?: any;
|
|
1090
|
-
})
|
|
1101
|
+
}) & {
|
|
1091
1102
|
namespace: "tezos";
|
|
1092
1103
|
userAddress: string;
|
|
1093
1104
|
});
|
|
1105
|
+
}>, z.ZodObject<{
|
|
1106
|
+
type: z.ZodLiteral<"getCustomerStatusResponse">;
|
|
1107
|
+
data: z.ZodUnion<[z.ZodEffects<z.ZodEnum<["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"]>, "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status", unknown>, z.ZodNull]>;
|
|
1108
|
+
}, "strip", z.ZodTypeAny, {
|
|
1109
|
+
type: "getCustomerStatusResponse";
|
|
1110
|
+
data: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null;
|
|
1111
|
+
}, {
|
|
1112
|
+
type: "getCustomerStatusResponse";
|
|
1113
|
+
data?: unknown;
|
|
1094
1114
|
}>, z.ZodObject<Omit<{
|
|
1095
1115
|
type: z.ZodLiteral<"kycCompletion">;
|
|
1096
1116
|
identifier: z.ZodString;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"identity-v2.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["identity-v2.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"identity-v2.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["identity-v2.schema.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAa7B,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
|
|
@@ -447,13 +447,13 @@ export declare const HostMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
447
447
|
accessToken: string;
|
|
448
448
|
signature: string;
|
|
449
449
|
identifier?: string | undefined;
|
|
450
|
-
flow?: "
|
|
450
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
451
451
|
}, {
|
|
452
452
|
signingMessage: string;
|
|
453
453
|
accessToken: string;
|
|
454
454
|
signature: string;
|
|
455
455
|
identifier?: string | undefined;
|
|
456
|
-
flow?: "
|
|
456
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
457
457
|
}>;
|
|
458
458
|
}, "strip", z.ZodTypeAny, {
|
|
459
459
|
type: "onStartKyc";
|
|
@@ -462,7 +462,7 @@ export declare const HostMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
462
462
|
accessToken: string;
|
|
463
463
|
signature: string;
|
|
464
464
|
identifier?: string | undefined;
|
|
465
|
-
flow?: "
|
|
465
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
466
466
|
};
|
|
467
467
|
}, {
|
|
468
468
|
type: "onStartKyc";
|
|
@@ -471,7 +471,7 @@ export declare const HostMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
471
471
|
accessToken: string;
|
|
472
472
|
signature: string;
|
|
473
473
|
identifier?: string | undefined;
|
|
474
|
-
flow?: "
|
|
474
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
475
475
|
};
|
|
476
476
|
}>, z.ZodObject<{
|
|
477
477
|
type: z.ZodLiteral<"signature">;
|
|
@@ -2118,22 +2118,19 @@ export declare const IdentityMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2118
2118
|
isVerified: boolean;
|
|
2119
2119
|
}>, z.ZodObject<{
|
|
2120
2120
|
type: z.ZodLiteral<"getTxAuthSigResponse">;
|
|
2121
|
-
signatureResponse: z.
|
|
2122
|
-
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
2123
|
-
}, "strip", z.ZodTypeAny, {
|
|
2124
|
-
blockExpiration?: number | undefined;
|
|
2125
|
-
}, {
|
|
2126
|
-
blockExpiration?: number | undefined;
|
|
2127
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
2121
|
+
signatureResponse: z.ZodUnion<[z.ZodObject<{
|
|
2128
2122
|
isAuthorized: z.ZodLiteral<true>;
|
|
2129
2123
|
signature: z.ZodEffects<z.ZodString, string, string>;
|
|
2130
2124
|
payload: z.ZodString;
|
|
2125
|
+
blockExpiration: z.ZodNumber;
|
|
2131
2126
|
}, "strip", z.ZodTypeAny, {
|
|
2132
2127
|
signature: string;
|
|
2128
|
+
blockExpiration: number;
|
|
2133
2129
|
isAuthorized: true;
|
|
2134
2130
|
payload: string;
|
|
2135
2131
|
}, {
|
|
2136
2132
|
signature: string;
|
|
2133
|
+
blockExpiration: number;
|
|
2137
2134
|
isAuthorized: true;
|
|
2138
2135
|
payload: string;
|
|
2139
2136
|
}>, z.ZodObject<{
|
|
@@ -2145,50 +2142,45 @@ export declare const IdentityMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2145
2142
|
}, {
|
|
2146
2143
|
isAuthorized: false;
|
|
2147
2144
|
errorMessage?: any;
|
|
2148
|
-
}>]
|
|
2145
|
+
}>]>;
|
|
2149
2146
|
identifier: z.ZodString;
|
|
2150
2147
|
}, "strip", z.ZodTypeAny, {
|
|
2151
2148
|
type: "getTxAuthSigResponse";
|
|
2152
2149
|
identifier: string;
|
|
2153
2150
|
signatureResponse: {
|
|
2154
|
-
blockExpiration?: number | undefined;
|
|
2155
|
-
} & ({
|
|
2156
2151
|
signature: string;
|
|
2152
|
+
blockExpiration: number;
|
|
2157
2153
|
isAuthorized: true;
|
|
2158
2154
|
payload: string;
|
|
2159
2155
|
} | {
|
|
2160
2156
|
isAuthorized: false;
|
|
2161
2157
|
errorMessage?: any;
|
|
2162
|
-
}
|
|
2158
|
+
};
|
|
2163
2159
|
}, {
|
|
2164
2160
|
type: "getTxAuthSigResponse";
|
|
2165
2161
|
identifier: string;
|
|
2166
2162
|
signatureResponse: {
|
|
2167
|
-
blockExpiration?: number | undefined;
|
|
2168
|
-
} & ({
|
|
2169
2163
|
signature: string;
|
|
2164
|
+
blockExpiration: number;
|
|
2170
2165
|
isAuthorized: true;
|
|
2171
2166
|
payload: string;
|
|
2172
2167
|
} | {
|
|
2173
2168
|
isAuthorized: false;
|
|
2174
2169
|
errorMessage?: any;
|
|
2175
|
-
}
|
|
2170
|
+
};
|
|
2176
2171
|
}>, z.ZodObject<{
|
|
2177
2172
|
type: z.ZodLiteral<"getTezosTxAuthSigResponse">;
|
|
2178
|
-
signatureResponse: z.
|
|
2179
|
-
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
2180
|
-
}, "strip", z.ZodTypeAny, {
|
|
2181
|
-
blockExpiration?: number | undefined;
|
|
2182
|
-
}, {
|
|
2183
|
-
blockExpiration?: number | undefined;
|
|
2184
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
2173
|
+
signatureResponse: z.ZodUnion<[z.ZodObject<{
|
|
2185
2174
|
isAuthorized: z.ZodLiteral<true>;
|
|
2186
2175
|
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
|
|
2176
|
+
blockExpiration: z.ZodNumber;
|
|
2187
2177
|
}, "strip", z.ZodTypeAny, {
|
|
2188
2178
|
signature: `edsig${string}`;
|
|
2179
|
+
blockExpiration: number;
|
|
2189
2180
|
isAuthorized: true;
|
|
2190
2181
|
}, {
|
|
2191
2182
|
signature: string;
|
|
2183
|
+
blockExpiration: number;
|
|
2192
2184
|
isAuthorized: true;
|
|
2193
2185
|
}>, z.ZodObject<{
|
|
2194
2186
|
isAuthorized: z.ZodLiteral<false>;
|
|
@@ -2199,32 +2191,30 @@ export declare const IdentityMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2199
2191
|
}, {
|
|
2200
2192
|
isAuthorized: false;
|
|
2201
2193
|
errorMessage?: any;
|
|
2202
|
-
}>]
|
|
2194
|
+
}>]>;
|
|
2203
2195
|
identifier: z.ZodString;
|
|
2204
2196
|
}, "strip", z.ZodTypeAny, {
|
|
2205
2197
|
type: "getTezosTxAuthSigResponse";
|
|
2206
2198
|
identifier: string;
|
|
2207
2199
|
signatureResponse: {
|
|
2208
|
-
blockExpiration?: number | undefined;
|
|
2209
|
-
} & ({
|
|
2210
2200
|
signature: `edsig${string}`;
|
|
2201
|
+
blockExpiration: number;
|
|
2211
2202
|
isAuthorized: true;
|
|
2212
2203
|
} | {
|
|
2213
2204
|
isAuthorized: false;
|
|
2214
2205
|
errorMessage?: any;
|
|
2215
|
-
}
|
|
2206
|
+
};
|
|
2216
2207
|
}, {
|
|
2217
2208
|
type: "getTezosTxAuthSigResponse";
|
|
2218
2209
|
identifier: string;
|
|
2219
2210
|
signatureResponse: {
|
|
2220
|
-
blockExpiration?: number | undefined;
|
|
2221
|
-
} & ({
|
|
2222
2211
|
signature: string;
|
|
2212
|
+
blockExpiration: number;
|
|
2223
2213
|
isAuthorized: true;
|
|
2224
2214
|
} | {
|
|
2225
2215
|
isAuthorized: false;
|
|
2226
2216
|
errorMessage?: any;
|
|
2227
|
-
}
|
|
2217
|
+
};
|
|
2228
2218
|
}>]>]>;
|
|
2229
2219
|
export type IdentityMessage = z.infer<typeof IdentityMessage>;
|
|
2230
2220
|
export declare const RequiredDataRowSchema: z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kyc.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["kyc.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EAAE,uCAAuC,EAAE,wCAAqC;AAa5F,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAqD,CAAC;AAC9E,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"kyc.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["kyc.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EAAE,uCAAuC,EAAE,wCAAqC;AAa5F,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAqD,CAAC;AAC9E,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAI1B,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAShC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBnC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAChF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,KAAK,CACrD,OAAO,uCAAuC,CAC/C,CAAC"}
|