@nexeraid/identity-schemas 1.12.9-dev → 1.12.10-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.
Files changed (22) hide show
  1. package/dist/declarations/src/identity/host-requests.schema.d.ts +36 -56
  2. package/dist/declarations/src/identity/host-requests.schema.d.ts.map +1 -1
  3. package/dist/declarations/src/identity/identity-v2.schema.d.ts +36 -56
  4. package/dist/declarations/src/identity/identity-v2.schema.d.ts.map +1 -1
  5. package/dist/declarations/src/identity/kyc.schema.d.ts +18 -28
  6. package/dist/declarations/src/identity/kyc.schema.d.ts.map +1 -1
  7. package/dist/declarations/src/identity/txAuthData.schema.d.ts +30 -48
  8. package/dist/declarations/src/identity/txAuthData.schema.d.ts.map +1 -1
  9. package/dist/{identity-api.schema-46a66e5e.cjs.dev.js → identity-api.schema-5844b144.cjs.prod.js} +8 -10
  10. package/dist/{identity-api.schema-38f27d6b.esm.js → identity-api.schema-b8687390.esm.js} +8 -10
  11. package/dist/{identity-api.schema-b63a1396.cjs.prod.js → identity-api.schema-f78923c5.cjs.dev.js} +8 -10
  12. package/dist/nexeraid-identity-schemas.cjs.dev.js +1 -1
  13. package/dist/nexeraid-identity-schemas.cjs.prod.js +1 -1
  14. package/dist/nexeraid-identity-schemas.esm.js +2 -2
  15. package/dist/package.json +1 -1
  16. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +1 -1
  17. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +1 -1
  18. package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
  19. package/package.json +1 -1
  20. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +1 -1
  21. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +1 -1
  22. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
@@ -1646,22 +1646,19 @@ export type GetTxAuthSigRequest = z.infer<typeof GetTxAuthSigRequest>;
1646
1646
  */
1647
1647
  export declare const GetTxAuthSigResponse: z.ZodObject<{
1648
1648
  type: z.ZodLiteral<"getTxAuthSigResponse">;
1649
- signatureResponse: z.ZodIntersection<z.ZodObject<{
1650
- blockExpiration: z.ZodOptional<z.ZodNumber>;
1651
- }, "strip", z.ZodTypeAny, {
1652
- blockExpiration?: number | undefined;
1653
- }, {
1654
- blockExpiration?: number | undefined;
1655
- }>, z.ZodUnion<[z.ZodObject<{
1649
+ signatureResponse: z.ZodUnion<[z.ZodObject<{
1656
1650
  isAuthorized: z.ZodLiteral<true>;
1657
1651
  signature: z.ZodEffects<z.ZodString, string, string>;
1658
1652
  payload: z.ZodString;
1653
+ blockExpiration: z.ZodNumber;
1659
1654
  }, "strip", z.ZodTypeAny, {
1660
1655
  signature: string;
1656
+ blockExpiration: number;
1661
1657
  isAuthorized: true;
1662
1658
  payload: string;
1663
1659
  }, {
1664
1660
  signature: string;
1661
+ blockExpiration: number;
1665
1662
  isAuthorized: true;
1666
1663
  payload: string;
1667
1664
  }>, z.ZodObject<{
@@ -1673,34 +1670,32 @@ export declare const GetTxAuthSigResponse: z.ZodObject<{
1673
1670
  }, {
1674
1671
  isAuthorized: false;
1675
1672
  errorMessage?: any;
1676
- }>]>>;
1673
+ }>]>;
1677
1674
  identifier: z.ZodString;
1678
1675
  }, "strip", z.ZodTypeAny, {
1679
1676
  type: "getTxAuthSigResponse";
1680
1677
  identifier: string;
1681
1678
  signatureResponse: {
1682
- blockExpiration?: number | undefined;
1683
- } & ({
1684
1679
  signature: string;
1680
+ blockExpiration: number;
1685
1681
  isAuthorized: true;
1686
1682
  payload: string;
1687
1683
  } | {
1688
1684
  isAuthorized: false;
1689
1685
  errorMessage?: any;
1690
- });
1686
+ };
1691
1687
  }, {
1692
1688
  type: "getTxAuthSigResponse";
1693
1689
  identifier: string;
1694
1690
  signatureResponse: {
1695
- blockExpiration?: number | undefined;
1696
- } & ({
1697
1691
  signature: string;
1692
+ blockExpiration: number;
1698
1693
  isAuthorized: true;
1699
1694
  payload: string;
1700
1695
  } | {
1701
1696
  isAuthorized: false;
1702
1697
  errorMessage?: any;
1703
- });
1698
+ };
1704
1699
  }>;
1705
1700
  export type GetTxAuthSigResponse = z.infer<typeof GetTxAuthSigResponse>;
1706
1701
  /**
@@ -1761,20 +1756,17 @@ export type GetTxAuthSigRequestTezos = z.infer<typeof GetTxAuthSigRequestTezos>;
1761
1756
  */
1762
1757
  export declare const GetTxAuthSigResponseTezos: z.ZodObject<{
1763
1758
  type: z.ZodLiteral<"getTezosTxAuthSigResponse">;
1764
- signatureResponse: z.ZodIntersection<z.ZodObject<{
1765
- blockExpiration: z.ZodOptional<z.ZodNumber>;
1766
- }, "strip", z.ZodTypeAny, {
1767
- blockExpiration?: number | undefined;
1768
- }, {
1769
- blockExpiration?: number | undefined;
1770
- }>, z.ZodUnion<[z.ZodObject<{
1759
+ signatureResponse: z.ZodUnion<[z.ZodObject<{
1771
1760
  isAuthorized: z.ZodLiteral<true>;
1772
1761
  signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
1762
+ blockExpiration: z.ZodNumber;
1773
1763
  }, "strip", z.ZodTypeAny, {
1774
1764
  signature: `edsig${string}`;
1765
+ blockExpiration: number;
1775
1766
  isAuthorized: true;
1776
1767
  }, {
1777
1768
  signature: string;
1769
+ blockExpiration: number;
1778
1770
  isAuthorized: true;
1779
1771
  }>, z.ZodObject<{
1780
1772
  isAuthorized: z.ZodLiteral<false>;
@@ -1785,32 +1777,30 @@ export declare const GetTxAuthSigResponseTezos: z.ZodObject<{
1785
1777
  }, {
1786
1778
  isAuthorized: false;
1787
1779
  errorMessage?: any;
1788
- }>]>>;
1780
+ }>]>;
1789
1781
  identifier: z.ZodString;
1790
1782
  }, "strip", z.ZodTypeAny, {
1791
1783
  type: "getTezosTxAuthSigResponse";
1792
1784
  identifier: string;
1793
1785
  signatureResponse: {
1794
- blockExpiration?: number | undefined;
1795
- } & ({
1796
1786
  signature: `edsig${string}`;
1787
+ blockExpiration: number;
1797
1788
  isAuthorized: true;
1798
1789
  } | {
1799
1790
  isAuthorized: false;
1800
1791
  errorMessage?: any;
1801
- });
1792
+ };
1802
1793
  }, {
1803
1794
  type: "getTezosTxAuthSigResponse";
1804
1795
  identifier: string;
1805
1796
  signatureResponse: {
1806
- blockExpiration?: number | undefined;
1807
- } & ({
1808
1797
  signature: string;
1798
+ blockExpiration: number;
1809
1799
  isAuthorized: true;
1810
1800
  } | {
1811
1801
  isAuthorized: false;
1812
1802
  errorMessage?: any;
1813
- });
1803
+ };
1814
1804
  }>;
1815
1805
  export type GetTxAuthSigResponseTezos = z.infer<typeof GetTxAuthSigResponseTezos>;
1816
1806
  export declare const HostRequestMessage: z.ZodUnion<[z.ZodObject<{
@@ -2849,22 +2839,19 @@ export declare const IdentityResponseMessage: z.ZodUnion<[z.ZodObject<{
2849
2839
  isVerified: boolean;
2850
2840
  }>, z.ZodObject<{
2851
2841
  type: z.ZodLiteral<"getTxAuthSigResponse">;
2852
- signatureResponse: z.ZodIntersection<z.ZodObject<{
2853
- blockExpiration: z.ZodOptional<z.ZodNumber>;
2854
- }, "strip", z.ZodTypeAny, {
2855
- blockExpiration?: number | undefined;
2856
- }, {
2857
- blockExpiration?: number | undefined;
2858
- }>, z.ZodUnion<[z.ZodObject<{
2842
+ signatureResponse: z.ZodUnion<[z.ZodObject<{
2859
2843
  isAuthorized: z.ZodLiteral<true>;
2860
2844
  signature: z.ZodEffects<z.ZodString, string, string>;
2861
2845
  payload: z.ZodString;
2846
+ blockExpiration: z.ZodNumber;
2862
2847
  }, "strip", z.ZodTypeAny, {
2863
2848
  signature: string;
2849
+ blockExpiration: number;
2864
2850
  isAuthorized: true;
2865
2851
  payload: string;
2866
2852
  }, {
2867
2853
  signature: string;
2854
+ blockExpiration: number;
2868
2855
  isAuthorized: true;
2869
2856
  payload: string;
2870
2857
  }>, z.ZodObject<{
@@ -2876,50 +2863,45 @@ export declare const IdentityResponseMessage: z.ZodUnion<[z.ZodObject<{
2876
2863
  }, {
2877
2864
  isAuthorized: false;
2878
2865
  errorMessage?: any;
2879
- }>]>>;
2866
+ }>]>;
2880
2867
  identifier: z.ZodString;
2881
2868
  }, "strip", z.ZodTypeAny, {
2882
2869
  type: "getTxAuthSigResponse";
2883
2870
  identifier: string;
2884
2871
  signatureResponse: {
2885
- blockExpiration?: number | undefined;
2886
- } & ({
2887
2872
  signature: string;
2873
+ blockExpiration: number;
2888
2874
  isAuthorized: true;
2889
2875
  payload: string;
2890
2876
  } | {
2891
2877
  isAuthorized: false;
2892
2878
  errorMessage?: any;
2893
- });
2879
+ };
2894
2880
  }, {
2895
2881
  type: "getTxAuthSigResponse";
2896
2882
  identifier: string;
2897
2883
  signatureResponse: {
2898
- blockExpiration?: number | undefined;
2899
- } & ({
2900
2884
  signature: string;
2885
+ blockExpiration: number;
2901
2886
  isAuthorized: true;
2902
2887
  payload: string;
2903
2888
  } | {
2904
2889
  isAuthorized: false;
2905
2890
  errorMessage?: any;
2906
- });
2891
+ };
2907
2892
  }>, z.ZodObject<{
2908
2893
  type: z.ZodLiteral<"getTezosTxAuthSigResponse">;
2909
- signatureResponse: z.ZodIntersection<z.ZodObject<{
2910
- blockExpiration: z.ZodOptional<z.ZodNumber>;
2911
- }, "strip", z.ZodTypeAny, {
2912
- blockExpiration?: number | undefined;
2913
- }, {
2914
- blockExpiration?: number | undefined;
2915
- }>, z.ZodUnion<[z.ZodObject<{
2894
+ signatureResponse: z.ZodUnion<[z.ZodObject<{
2916
2895
  isAuthorized: z.ZodLiteral<true>;
2917
2896
  signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
2897
+ blockExpiration: z.ZodNumber;
2918
2898
  }, "strip", z.ZodTypeAny, {
2919
2899
  signature: `edsig${string}`;
2900
+ blockExpiration: number;
2920
2901
  isAuthorized: true;
2921
2902
  }, {
2922
2903
  signature: string;
2904
+ blockExpiration: number;
2923
2905
  isAuthorized: true;
2924
2906
  }>, z.ZodObject<{
2925
2907
  isAuthorized: z.ZodLiteral<false>;
@@ -2930,32 +2912,30 @@ export declare const IdentityResponseMessage: z.ZodUnion<[z.ZodObject<{
2930
2912
  }, {
2931
2913
  isAuthorized: false;
2932
2914
  errorMessage?: any;
2933
- }>]>>;
2915
+ }>]>;
2934
2916
  identifier: z.ZodString;
2935
2917
  }, "strip", z.ZodTypeAny, {
2936
2918
  type: "getTezosTxAuthSigResponse";
2937
2919
  identifier: string;
2938
2920
  signatureResponse: {
2939
- blockExpiration?: number | undefined;
2940
- } & ({
2941
2921
  signature: `edsig${string}`;
2922
+ blockExpiration: number;
2942
2923
  isAuthorized: true;
2943
2924
  } | {
2944
2925
  isAuthorized: false;
2945
2926
  errorMessage?: any;
2946
- });
2927
+ };
2947
2928
  }, {
2948
2929
  type: "getTezosTxAuthSigResponse";
2949
2930
  identifier: string;
2950
2931
  signatureResponse: {
2951
- blockExpiration?: number | undefined;
2952
- } & ({
2953
2932
  signature: string;
2933
+ blockExpiration: number;
2954
2934
  isAuthorized: true;
2955
2935
  } | {
2956
2936
  isAuthorized: false;
2957
2937
  errorMessage?: any;
2958
- });
2938
+ };
2959
2939
  }>]>;
2960
2940
  export type IdentityResponseMessage = z.infer<typeof IdentityResponseMessage>;
2961
2941
  //# sourceMappingURL=host-requests.schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"host-requests.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["host-requests.schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"host-requests.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["host-requests.schema.ts"],"names":[],"mappings":"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"}
@@ -785,22 +785,19 @@ export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUn
785
785
  export type IdentitySdkMessageWithIdentifier = z.infer<typeof IdentitySdkMessageWithIdentifier>;
786
786
  export declare const TrxSignatureGatingResponse: z.ZodObject<{
787
787
  type: z.ZodLiteral<"trxSignatureGatingResponse">;
788
- data: z.ZodUnion<[z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
789
- blockExpiration: z.ZodOptional<z.ZodNumber>;
790
- }, "strip", z.ZodTypeAny, {
791
- blockExpiration?: number | undefined;
792
- }, {
793
- blockExpiration?: number | undefined;
794
- }>, z.ZodUnion<[z.ZodObject<{
788
+ data: z.ZodUnion<[z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
795
789
  isAuthorized: z.ZodLiteral<true>;
796
790
  signature: z.ZodEffects<z.ZodString, string, string>;
797
791
  payload: z.ZodString;
792
+ blockExpiration: z.ZodNumber;
798
793
  }, "strip", z.ZodTypeAny, {
799
794
  signature: string;
795
+ blockExpiration: number;
800
796
  isAuthorized: true;
801
797
  payload: string;
802
798
  }, {
803
799
  signature: string;
800
+ blockExpiration: number;
804
801
  isAuthorized: true;
805
802
  payload: string;
806
803
  }>, z.ZodObject<{
@@ -812,7 +809,7 @@ export declare const TrxSignatureGatingResponse: z.ZodObject<{
812
809
  }, {
813
810
  isAuthorized: false;
814
811
  errorMessage?: any;
815
- }>]>>, z.ZodObject<{
812
+ }>]>, z.ZodObject<{
816
813
  namespace: z.ZodLiteral<"eip155">;
817
814
  userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
818
815
  }, "strip", z.ZodTypeAny, {
@@ -821,20 +818,17 @@ export declare const TrxSignatureGatingResponse: z.ZodObject<{
821
818
  }, {
822
819
  namespace: "eip155";
823
820
  userAddress: string;
824
- }>>, z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
825
- blockExpiration: z.ZodOptional<z.ZodNumber>;
826
- }, "strip", z.ZodTypeAny, {
827
- blockExpiration?: number | undefined;
828
- }, {
829
- blockExpiration?: number | undefined;
830
- }>, z.ZodUnion<[z.ZodObject<{
821
+ }>>, z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
831
822
  isAuthorized: z.ZodLiteral<true>;
832
823
  signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
824
+ blockExpiration: z.ZodNumber;
833
825
  }, "strip", z.ZodTypeAny, {
834
826
  signature: `edsig${string}`;
827
+ blockExpiration: number;
835
828
  isAuthorized: true;
836
829
  }, {
837
830
  signature: string;
831
+ blockExpiration: number;
838
832
  isAuthorized: true;
839
833
  }>, z.ZodObject<{
840
834
  isAuthorized: z.ZodLiteral<false>;
@@ -845,7 +839,7 @@ export declare const TrxSignatureGatingResponse: z.ZodObject<{
845
839
  }, {
846
840
  isAuthorized: false;
847
841
  errorMessage?: any;
848
- }>]>>, z.ZodObject<{
842
+ }>]>, z.ZodObject<{
849
843
  namespace: z.ZodLiteral<"tezos">;
850
844
  userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
851
845
  }, "strip", z.ZodTypeAny, {
@@ -858,52 +852,48 @@ export declare const TrxSignatureGatingResponse: z.ZodObject<{
858
852
  }, "strip", z.ZodTypeAny, {
859
853
  type: "trxSignatureGatingResponse";
860
854
  data: (({
861
- blockExpiration?: number | undefined;
862
- } & ({
863
855
  signature: string;
856
+ blockExpiration: number;
864
857
  isAuthorized: true;
865
858
  payload: string;
866
859
  } | {
867
860
  isAuthorized: false;
868
861
  errorMessage?: any;
869
- })) & {
862
+ }) & {
870
863
  namespace: "eip155";
871
864
  userAddress: `0x${string}`;
872
865
  }) | (({
873
- blockExpiration?: number | undefined;
874
- } & ({
875
866
  signature: `edsig${string}`;
867
+ blockExpiration: number;
876
868
  isAuthorized: true;
877
869
  } | {
878
870
  isAuthorized: false;
879
871
  errorMessage?: any;
880
- })) & {
872
+ }) & {
881
873
  namespace: "tezos";
882
874
  userAddress: `tz${string}`;
883
875
  });
884
876
  }, {
885
877
  type: "trxSignatureGatingResponse";
886
878
  data: (({
887
- blockExpiration?: number | undefined;
888
- } & ({
889
879
  signature: string;
880
+ blockExpiration: number;
890
881
  isAuthorized: true;
891
882
  payload: string;
892
883
  } | {
893
884
  isAuthorized: false;
894
885
  errorMessage?: any;
895
- })) & {
886
+ }) & {
896
887
  namespace: "eip155";
897
888
  userAddress: string;
898
889
  }) | (({
899
- blockExpiration?: number | undefined;
900
- } & ({
901
890
  signature: string;
891
+ blockExpiration: number;
902
892
  isAuthorized: true;
903
893
  } | {
904
894
  isAuthorized: false;
905
895
  errorMessage?: any;
906
- })) & {
896
+ }) & {
907
897
  namespace: "tezos";
908
898
  userAddress: string;
909
899
  });
@@ -969,22 +959,19 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
969
959
  };
970
960
  }>, z.ZodObject<{
971
961
  type: z.ZodLiteral<"trxSignatureGatingResponse">;
972
- data: z.ZodUnion<[z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
973
- blockExpiration: z.ZodOptional<z.ZodNumber>;
974
- }, "strip", z.ZodTypeAny, {
975
- blockExpiration?: number | undefined;
976
- }, {
977
- blockExpiration?: number | undefined;
978
- }>, z.ZodUnion<[z.ZodObject<{
962
+ data: z.ZodUnion<[z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
979
963
  isAuthorized: z.ZodLiteral<true>;
980
964
  signature: z.ZodEffects<z.ZodString, string, string>;
981
965
  payload: z.ZodString;
966
+ blockExpiration: z.ZodNumber;
982
967
  }, "strip", z.ZodTypeAny, {
983
968
  signature: string;
969
+ blockExpiration: number;
984
970
  isAuthorized: true;
985
971
  payload: string;
986
972
  }, {
987
973
  signature: string;
974
+ blockExpiration: number;
988
975
  isAuthorized: true;
989
976
  payload: string;
990
977
  }>, z.ZodObject<{
@@ -996,7 +983,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
996
983
  }, {
997
984
  isAuthorized: false;
998
985
  errorMessage?: any;
999
- }>]>>, z.ZodObject<{
986
+ }>]>, z.ZodObject<{
1000
987
  namespace: z.ZodLiteral<"eip155">;
1001
988
  userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
1002
989
  }, "strip", z.ZodTypeAny, {
@@ -1005,20 +992,17 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1005
992
  }, {
1006
993
  namespace: "eip155";
1007
994
  userAddress: string;
1008
- }>>, z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1009
- blockExpiration: z.ZodOptional<z.ZodNumber>;
1010
- }, "strip", z.ZodTypeAny, {
1011
- blockExpiration?: number | undefined;
1012
- }, {
1013
- blockExpiration?: number | undefined;
1014
- }>, z.ZodUnion<[z.ZodObject<{
995
+ }>>, z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
1015
996
  isAuthorized: z.ZodLiteral<true>;
1016
997
  signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
998
+ blockExpiration: z.ZodNumber;
1017
999
  }, "strip", z.ZodTypeAny, {
1018
1000
  signature: `edsig${string}`;
1001
+ blockExpiration: number;
1019
1002
  isAuthorized: true;
1020
1003
  }, {
1021
1004
  signature: string;
1005
+ blockExpiration: number;
1022
1006
  isAuthorized: true;
1023
1007
  }>, z.ZodObject<{
1024
1008
  isAuthorized: z.ZodLiteral<false>;
@@ -1029,7 +1013,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1029
1013
  }, {
1030
1014
  isAuthorized: false;
1031
1015
  errorMessage?: any;
1032
- }>]>>, z.ZodObject<{
1016
+ }>]>, z.ZodObject<{
1033
1017
  namespace: z.ZodLiteral<"tezos">;
1034
1018
  userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
1035
1019
  }, "strip", z.ZodTypeAny, {
@@ -1042,52 +1026,48 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1042
1026
  }, "strip", z.ZodTypeAny, {
1043
1027
  type: "trxSignatureGatingResponse";
1044
1028
  data: (({
1045
- blockExpiration?: number | undefined;
1046
- } & ({
1047
1029
  signature: string;
1030
+ blockExpiration: number;
1048
1031
  isAuthorized: true;
1049
1032
  payload: string;
1050
1033
  } | {
1051
1034
  isAuthorized: false;
1052
1035
  errorMessage?: any;
1053
- })) & {
1036
+ }) & {
1054
1037
  namespace: "eip155";
1055
1038
  userAddress: `0x${string}`;
1056
1039
  }) | (({
1057
- blockExpiration?: number | undefined;
1058
- } & ({
1059
1040
  signature: `edsig${string}`;
1041
+ blockExpiration: number;
1060
1042
  isAuthorized: true;
1061
1043
  } | {
1062
1044
  isAuthorized: false;
1063
1045
  errorMessage?: any;
1064
- })) & {
1046
+ }) & {
1065
1047
  namespace: "tezos";
1066
1048
  userAddress: `tz${string}`;
1067
1049
  });
1068
1050
  }, {
1069
1051
  type: "trxSignatureGatingResponse";
1070
1052
  data: (({
1071
- blockExpiration?: number | undefined;
1072
- } & ({
1073
1053
  signature: string;
1054
+ blockExpiration: number;
1074
1055
  isAuthorized: true;
1075
1056
  payload: string;
1076
1057
  } | {
1077
1058
  isAuthorized: false;
1078
1059
  errorMessage?: any;
1079
- })) & {
1060
+ }) & {
1080
1061
  namespace: "eip155";
1081
1062
  userAddress: string;
1082
1063
  }) | (({
1083
- blockExpiration?: number | undefined;
1084
- } & ({
1085
1064
  signature: string;
1065
+ blockExpiration: number;
1086
1066
  isAuthorized: true;
1087
1067
  } | {
1088
1068
  isAuthorized: false;
1089
1069
  errorMessage?: any;
1090
- })) & {
1070
+ }) & {
1091
1071
  namespace: "tezos";
1092
1072
  userAddress: string;
1093
1073
  });
@@ -1 +1 @@
1
- {"version":3,"file":"identity-v2.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["identity-v2.schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"identity-v2.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["identity-v2.schema.ts"],"names":[],"mappings":"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"}
@@ -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.ZodIntersection<z.ZodObject<{
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.ZodIntersection<z.ZodObject<{
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
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"}
@@ -39,22 +39,19 @@ export declare const TxSignatureResponse: z.ZodObject<{
39
39
  blockExpiration: number;
40
40
  }>;
41
41
  export type TxSignatureResponse = z.infer<typeof TxSignatureResponse>;
42
- export declare const GetTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodObject<{
43
- blockExpiration: z.ZodOptional<z.ZodNumber>;
44
- }, "strip", z.ZodTypeAny, {
45
- blockExpiration?: number | undefined;
46
- }, {
47
- blockExpiration?: number | undefined;
48
- }>, z.ZodUnion<[z.ZodObject<{
42
+ export declare const GetTxAuthDataSignatureResponse: z.ZodUnion<[z.ZodObject<{
49
43
  isAuthorized: z.ZodLiteral<true>;
50
44
  signature: z.ZodEffects<z.ZodString, string, string>;
51
45
  payload: z.ZodString;
46
+ blockExpiration: z.ZodNumber;
52
47
  }, "strip", z.ZodTypeAny, {
53
48
  signature: string;
49
+ blockExpiration: number;
54
50
  isAuthorized: true;
55
51
  payload: string;
56
52
  }, {
57
53
  signature: string;
54
+ blockExpiration: number;
58
55
  isAuthorized: true;
59
56
  payload: string;
60
57
  }>, z.ZodObject<{
@@ -66,7 +63,7 @@ export declare const GetTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodObje
66
63
  }, {
67
64
  isAuthorized: false;
68
65
  errorMessage?: any;
69
- }>]>>;
66
+ }>]>;
70
67
  export type GetTxAuthDataSignatureResponse = z.infer<typeof GetTxAuthDataSignatureResponse>;
71
68
  export declare const TezosTxAuthInput: z.ZodObject<{
72
69
  chainID: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS, unknown>;
@@ -105,20 +102,17 @@ export declare const TezosTxSignatureResponse: z.ZodObject<{
105
102
  blockExpiration: number;
106
103
  }>;
107
104
  export type TezosTxSignatureResponse = z.infer<typeof TezosTxSignatureResponse>;
108
- export declare const GetTezosTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodObject<{
109
- blockExpiration: z.ZodOptional<z.ZodNumber>;
110
- }, "strip", z.ZodTypeAny, {
111
- blockExpiration?: number | undefined;
112
- }, {
113
- blockExpiration?: number | undefined;
114
- }>, z.ZodUnion<[z.ZodObject<{
105
+ export declare const GetTezosTxAuthDataSignatureResponse: z.ZodUnion<[z.ZodObject<{
115
106
  isAuthorized: z.ZodLiteral<true>;
116
107
  signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
108
+ blockExpiration: z.ZodNumber;
117
109
  }, "strip", z.ZodTypeAny, {
118
110
  signature: `edsig${string}`;
111
+ blockExpiration: number;
119
112
  isAuthorized: true;
120
113
  }, {
121
114
  signature: string;
115
+ blockExpiration: number;
122
116
  isAuthorized: true;
123
117
  }>, z.ZodObject<{
124
118
  isAuthorized: z.ZodLiteral<false>;
@@ -129,7 +123,7 @@ export declare const GetTezosTxAuthDataSignatureResponse: z.ZodIntersection<z.Zo
129
123
  }, {
130
124
  isAuthorized: false;
131
125
  errorMessage?: any;
132
- }>]>>;
126
+ }>]>;
133
127
  export type GetTezosTxAuthDataSignatureResponse = z.infer<typeof GetTezosTxAuthDataSignatureResponse>;
134
128
  export declare const ExtendedTxAuthInput: z.ZodIntersection<z.ZodObject<{
135
129
  chainId: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA]>, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, unknown>;
@@ -275,22 +269,19 @@ export declare const AnyTxAuthInput: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
275
269
  userAddress: string;
276
270
  }>>]>;
277
271
  export type AnyTxAuthInput = z.infer<typeof AnyTxAuthInput>;
278
- export declare const ExtendedTxSignatureResponse: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
279
- blockExpiration: z.ZodOptional<z.ZodNumber>;
280
- }, "strip", z.ZodTypeAny, {
281
- blockExpiration?: number | undefined;
282
- }, {
283
- blockExpiration?: number | undefined;
284
- }>, z.ZodUnion<[z.ZodObject<{
272
+ export declare const ExtendedTxSignatureResponse: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
285
273
  isAuthorized: z.ZodLiteral<true>;
286
274
  signature: z.ZodEffects<z.ZodString, string, string>;
287
275
  payload: z.ZodString;
276
+ blockExpiration: z.ZodNumber;
288
277
  }, "strip", z.ZodTypeAny, {
289
278
  signature: string;
279
+ blockExpiration: number;
290
280
  isAuthorized: true;
291
281
  payload: string;
292
282
  }, {
293
283
  signature: string;
284
+ blockExpiration: number;
294
285
  isAuthorized: true;
295
286
  payload: string;
296
287
  }>, z.ZodObject<{
@@ -302,7 +293,7 @@ export declare const ExtendedTxSignatureResponse: z.ZodIntersection<z.ZodInterse
302
293
  }, {
303
294
  isAuthorized: false;
304
295
  errorMessage?: any;
305
- }>]>>, z.ZodObject<{
296
+ }>]>, z.ZodObject<{
306
297
  namespace: z.ZodLiteral<"eip155">;
307
298
  userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
308
299
  }, "strip", z.ZodTypeAny, {
@@ -313,20 +304,17 @@ export declare const ExtendedTxSignatureResponse: z.ZodIntersection<z.ZodInterse
313
304
  userAddress: string;
314
305
  }>>;
315
306
  export type ExtendedTxSignatureResponse = z.infer<typeof ExtendedTxSignatureResponse>;
316
- export declare const ExtendedTezosTxSignatureResponse: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
317
- blockExpiration: z.ZodOptional<z.ZodNumber>;
318
- }, "strip", z.ZodTypeAny, {
319
- blockExpiration?: number | undefined;
320
- }, {
321
- blockExpiration?: number | undefined;
322
- }>, z.ZodUnion<[z.ZodObject<{
307
+ export declare const ExtendedTezosTxSignatureResponse: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
323
308
  isAuthorized: z.ZodLiteral<true>;
324
309
  signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
310
+ blockExpiration: z.ZodNumber;
325
311
  }, "strip", z.ZodTypeAny, {
326
312
  signature: `edsig${string}`;
313
+ blockExpiration: number;
327
314
  isAuthorized: true;
328
315
  }, {
329
316
  signature: string;
317
+ blockExpiration: number;
330
318
  isAuthorized: true;
331
319
  }>, z.ZodObject<{
332
320
  isAuthorized: z.ZodLiteral<false>;
@@ -337,7 +325,7 @@ export declare const ExtendedTezosTxSignatureResponse: z.ZodIntersection<z.ZodIn
337
325
  }, {
338
326
  isAuthorized: false;
339
327
  errorMessage?: any;
340
- }>]>>, z.ZodObject<{
328
+ }>]>, z.ZodObject<{
341
329
  namespace: z.ZodLiteral<"tezos">;
342
330
  userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
343
331
  }, "strip", z.ZodTypeAny, {
@@ -348,22 +336,19 @@ export declare const ExtendedTezosTxSignatureResponse: z.ZodIntersection<z.ZodIn
348
336
  userAddress: string;
349
337
  }>>;
350
338
  export type ExtendedTezosTxSignatureResponse = z.infer<typeof ExtendedTezosTxSignatureResponse>;
351
- export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
352
- blockExpiration: z.ZodOptional<z.ZodNumber>;
353
- }, "strip", z.ZodTypeAny, {
354
- blockExpiration?: number | undefined;
355
- }, {
356
- blockExpiration?: number | undefined;
357
- }>, z.ZodUnion<[z.ZodObject<{
339
+ export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
358
340
  isAuthorized: z.ZodLiteral<true>;
359
341
  signature: z.ZodEffects<z.ZodString, string, string>;
360
342
  payload: z.ZodString;
343
+ blockExpiration: z.ZodNumber;
361
344
  }, "strip", z.ZodTypeAny, {
362
345
  signature: string;
346
+ blockExpiration: number;
363
347
  isAuthorized: true;
364
348
  payload: string;
365
349
  }, {
366
350
  signature: string;
351
+ blockExpiration: number;
367
352
  isAuthorized: true;
368
353
  payload: string;
369
354
  }>, z.ZodObject<{
@@ -375,7 +360,7 @@ export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.Zod
375
360
  }, {
376
361
  isAuthorized: false;
377
362
  errorMessage?: any;
378
- }>]>>, z.ZodObject<{
363
+ }>]>, z.ZodObject<{
379
364
  namespace: z.ZodLiteral<"eip155">;
380
365
  userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
381
366
  }, "strip", z.ZodTypeAny, {
@@ -384,20 +369,17 @@ export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.Zod
384
369
  }, {
385
370
  namespace: "eip155";
386
371
  userAddress: string;
387
- }>>, z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
388
- blockExpiration: z.ZodOptional<z.ZodNumber>;
389
- }, "strip", z.ZodTypeAny, {
390
- blockExpiration?: number | undefined;
391
- }, {
392
- blockExpiration?: number | undefined;
393
- }>, z.ZodUnion<[z.ZodObject<{
372
+ }>>, z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
394
373
  isAuthorized: z.ZodLiteral<true>;
395
374
  signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
375
+ blockExpiration: z.ZodNumber;
396
376
  }, "strip", z.ZodTypeAny, {
397
377
  signature: `edsig${string}`;
378
+ blockExpiration: number;
398
379
  isAuthorized: true;
399
380
  }, {
400
381
  signature: string;
382
+ blockExpiration: number;
401
383
  isAuthorized: true;
402
384
  }>, z.ZodObject<{
403
385
  isAuthorized: z.ZodLiteral<false>;
@@ -408,7 +390,7 @@ export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.Zod
408
390
  }, {
409
391
  isAuthorized: false;
410
392
  errorMessage?: any;
411
- }>]>>, z.ZodObject<{
393
+ }>]>, z.ZodObject<{
412
394
  namespace: z.ZodLiteral<"tezos">;
413
395
  userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
414
396
  }, "strip", z.ZodTypeAny, {
@@ -1 +1 @@
1
- {"version":3,"file":"txAuthData.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["txAuthData.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAiBxB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;EAStB,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,mBAAmB;;;;;;;;;EAG9B,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;KAgBxC,CAAC;AACJ,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC;AAMF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;EAQ3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,wBAAwB;;;;;;;;;EAGnC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;KAe7C,CAAC;AACJ,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,KAAK,CACvD,OAAO,mCAAmC,CAC3C,CAAC;AAMF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAK/B,CAAC;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AACtE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKpC,CAAC;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKvC,CAAC;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,2BAA2B,CACnC,CAAC;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAM1C,CAAC;AACJ,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CACpD,OAAO,gCAAgC,CACxC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGjC,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
1
+ {"version":3,"file":"txAuthData.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["txAuthData.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAiBxB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;EAStB,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,mBAAmB;;;;;;;;;EAG9B,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;IAWzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC;AAMF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;EAQ3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,wBAAwB;;;;;;;;;EAGnC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;IAU9C,CAAC;AACH,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,KAAK,CACvD,OAAO,mCAAmC,CAC3C,CAAC;AAMF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAK/B,CAAC;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AACtE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKpC,CAAC;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKvC,CAAC;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,2BAA2B,CACnC,CAAC;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAM1C,CAAC;AACJ,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CACpD,OAAO,gCAAgC,CACxC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGjC,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
@@ -2717,16 +2717,15 @@ var TxSignatureResponse = zod.z.object({
2717
2717
  signature: EIP155Signature,
2718
2718
  blockExpiration: zod.z.number()
2719
2719
  });
2720
- var GetTxAuthDataSignatureResponse = zod.z.object({
2721
- blockExpiration: zod.z.number().optional()
2722
- }).and(zod.z.union([zod.z.object({
2720
+ var GetTxAuthDataSignatureResponse = zod.z.union([zod.z.object({
2723
2721
  isAuthorized: zod.z.literal(true),
2724
2722
  signature: EIP155Signature,
2725
- payload: zod.z.string()
2723
+ payload: zod.z.string(),
2724
+ blockExpiration: zod.z.number()
2726
2725
  }), zod.z.object({
2727
2726
  isAuthorized: zod.z.literal(false),
2728
2727
  errorMessage: zod.z.any()
2729
- })]));
2728
+ })]);
2730
2729
  /////////////
2731
2730
  // Tezos //
2732
2731
  /////////////
@@ -2744,15 +2743,14 @@ var TezosTxSignatureResponse = zod.z.object({
2744
2743
  signature: EdSignature,
2745
2744
  blockExpiration: zod.z.number()
2746
2745
  });
2747
- var GetTezosTxAuthDataSignatureResponse = zod.z.object({
2748
- blockExpiration: zod.z.number().optional()
2749
- }).and(zod.z.union([zod.z.object({
2746
+ var GetTezosTxAuthDataSignatureResponse = zod.z.union([zod.z.object({
2750
2747
  isAuthorized: zod.z.literal(true),
2751
- signature: EdSignature
2748
+ signature: EdSignature,
2749
+ blockExpiration: zod.z.number()
2752
2750
  }), zod.z.object({
2753
2751
  isAuthorized: zod.z.literal(false),
2754
2752
  errorMessage: zod.z.any()
2755
- })]));
2753
+ })]);
2756
2754
  /////////////
2757
2755
  // General //
2758
2756
  /////////////
@@ -2715,16 +2715,15 @@ var TxSignatureResponse = z.object({
2715
2715
  signature: EIP155Signature,
2716
2716
  blockExpiration: z.number()
2717
2717
  });
2718
- var GetTxAuthDataSignatureResponse = z.object({
2719
- blockExpiration: z.number().optional()
2720
- }).and(z.union([z.object({
2718
+ var GetTxAuthDataSignatureResponse = z.union([z.object({
2721
2719
  isAuthorized: z.literal(true),
2722
2720
  signature: EIP155Signature,
2723
- payload: z.string()
2721
+ payload: z.string(),
2722
+ blockExpiration: z.number()
2724
2723
  }), z.object({
2725
2724
  isAuthorized: z.literal(false),
2726
2725
  errorMessage: z.any()
2727
- })]));
2726
+ })]);
2728
2727
  /////////////
2729
2728
  // Tezos //
2730
2729
  /////////////
@@ -2742,15 +2741,14 @@ var TezosTxSignatureResponse = z.object({
2742
2741
  signature: EdSignature,
2743
2742
  blockExpiration: z.number()
2744
2743
  });
2745
- var GetTezosTxAuthDataSignatureResponse = z.object({
2746
- blockExpiration: z.number().optional()
2747
- }).and(z.union([z.object({
2744
+ var GetTezosTxAuthDataSignatureResponse = z.union([z.object({
2748
2745
  isAuthorized: z.literal(true),
2749
- signature: EdSignature
2746
+ signature: EdSignature,
2747
+ blockExpiration: z.number()
2750
2748
  }), z.object({
2751
2749
  isAuthorized: z.literal(false),
2752
2750
  errorMessage: z.any()
2753
- })]));
2751
+ })]);
2754
2752
  /////////////
2755
2753
  // General //
2756
2754
  /////////////
@@ -2717,16 +2717,15 @@ var TxSignatureResponse = zod.z.object({
2717
2717
  signature: EIP155Signature,
2718
2718
  blockExpiration: zod.z.number()
2719
2719
  });
2720
- var GetTxAuthDataSignatureResponse = zod.z.object({
2721
- blockExpiration: zod.z.number().optional()
2722
- }).and(zod.z.union([zod.z.object({
2720
+ var GetTxAuthDataSignatureResponse = zod.z.union([zod.z.object({
2723
2721
  isAuthorized: zod.z.literal(true),
2724
2722
  signature: EIP155Signature,
2725
- payload: zod.z.string()
2723
+ payload: zod.z.string(),
2724
+ blockExpiration: zod.z.number()
2726
2725
  }), zod.z.object({
2727
2726
  isAuthorized: zod.z.literal(false),
2728
2727
  errorMessage: zod.z.any()
2729
- })]));
2728
+ })]);
2730
2729
  /////////////
2731
2730
  // Tezos //
2732
2731
  /////////////
@@ -2744,15 +2743,14 @@ var TezosTxSignatureResponse = zod.z.object({
2744
2743
  signature: EdSignature,
2745
2744
  blockExpiration: zod.z.number()
2746
2745
  });
2747
- var GetTezosTxAuthDataSignatureResponse = zod.z.object({
2748
- blockExpiration: zod.z.number().optional()
2749
- }).and(zod.z.union([zod.z.object({
2746
+ var GetTezosTxAuthDataSignatureResponse = zod.z.union([zod.z.object({
2750
2747
  isAuthorized: zod.z.literal(true),
2751
- signature: EdSignature
2748
+ signature: EdSignature,
2749
+ blockExpiration: zod.z.number()
2752
2750
  }), zod.z.object({
2753
2751
  isAuthorized: zod.z.literal(false),
2754
2752
  errorMessage: zod.z.any()
2755
- })]));
2753
+ })]);
2756
2754
  /////////////
2757
2755
  // General //
2758
2756
  /////////////
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var zod = require('zod');
6
- var identityApi_schema = require('./identity-api.schema-46a66e5e.cjs.dev.js');
6
+ var identityApi_schema = require('./identity-api.schema-f78923c5.cjs.dev.js');
7
7
  require('nanoid');
8
8
 
9
9
  var decodeUint8Array = function decodeUint8Array(data) {
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var zod = require('zod');
6
- var identityApi_schema = require('./identity-api.schema-b63a1396.cjs.prod.js');
6
+ var identityApi_schema = require('./identity-api.schema-5844b144.cjs.prod.js');
7
7
  require('nanoid');
8
8
 
9
9
  var decodeUint8Array = function decodeUint8Array(data) {
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
- import { C as CredentialTypes } from './identity-api.schema-38f27d6b.esm.js';
3
- export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, aj as ALPHA_2_COUNTRIES, cm as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, aJ as AdditionalUserInformationParams, z as AddressSchema, ch as AllCredentialAttributes, ci as AllCredentialValues, d4 as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, cX as AnyTxAuthInput, c_ as AnyTxSignatureResponse, au as AppId, I as AptosAddress, J as AptosSignature, cn as ArrayOperator, cd as AuthQrCodeData, bV as AuthSession, c8 as AuthorizationRequestMessage, cb as AuthorizationResponseMessage, bc as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cs as BOOLEAN_OPERATORS, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, ct as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, a0 as CardanoAddress, a1 as CardanoSignature, av as ChallengeId, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d2 as CreateAuthRequestProps, cH as CreateQueryConfigurationInput, cI as CreateQueryConfigurationResponse, d3 as CreateZKProofRequestProps, cc as CredentialQrCodeData, cu as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bd as DataAvailableOnStart, cv as DateOperator, cL as DeleteQueryConfigurationInput, cM as DeleteQueryConfigurationResponse, a8 as DisplayedBlockchainNamespace, F as EIP155Signature, ac as ENVS, E as EVM_BLOCK_TIME, g as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, Y as EdSignature, as as EmailId, ad as EnvironmentSchema, h as EvmChainId, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, cW as ExtendedTezosTxAuthInput, cZ as ExtendedTezosTxSignatureResponse, cV as ExtendedTxAuthInput, cY as ExtendedTxSignatureResponse, aO as ExternalClientId, ay as FLOW_TYPES, az as FlowType, G as FunctionCallData, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cU as GetTezosTxAuthDataSignatureResponse, cR as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c1 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, aC as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, aE as IDENTITY_DOCUMENT_OPTIONS, cz as IDInformation, ai as ISO3CountryCode, aI as Identifier, c0 as IdentityAppMessage, aQ as IdentityAppV2Web2JWT, aP as IdentityAppV2Web3JWT, aD as IdentityDocumentCountryListOption, aF as IdentityDocumentOptionsType, ar as IdentityId, c2 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bZ as IdentitySdkMessage, b_ as IdentitySdkMessageWithIdentifier, aK as IdentityWidgetAccessToken, aR as IdentityWidgetAccessToken_NEW, aS as IdentityWidgetSessionToken, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c5 as MediaType, c6 as MediaTypePID, u as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, f as NEXERA_CHAIN_VALUES, b as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAIN_NAMES, e as NEXERA_EVM_CHAIN_NAMES_LIST, c as NEXERA_STARKNET_CHAINS, s as NEXERA_STARKNET_CHAIN_NAMES, t as NEXERA_STARKNET_CHAIN_VALUES, a as NEXERA_TEZOS_CHAINS, j as NEXERA_TEZOS_CHAIN_NAMES, k as NEXERA_TEZOS_CHAIN_NAMES_LIST, l as NEXERA_TEZOS_CHAIN_VALUES, cq as NUMERIC_OPERATORS, cG as NonParsedQueryConfiguration, cr as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d1 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d6 as OnChainZKP, d7 as OnChainZKPFromNexeraID, d9 as OnChainZKPPayload, d8 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cj as Operator, bk as OperatorToChallengeQueryOperator, aL as OrganizationId, _ as P2Signature, aG as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ah as PUBLIC_SERVICES_SCHEMA_MAP, cD as PartialQueryConfigSimplified, aH as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, d5 as ProjectAuthorizationData, c9 as ProofData, y as PublicKey, ce as QrCodeLinkWithSchemaType, cA as QueryConfig, cC as QueryConfigSimplified, cE as QueryConfigSimplifiedParsed, cF as QueryConfiguration, cO as QueryCredentialType, cN as QueryCredentialTypes, cB as QueryType, c3 as RequiredDataRowSchema, c4 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, da as SCENARIO_AUTHORIZATION_STATUSES, co as STRING_OPERATORS, cw as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, db as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b4 as StartCompletedNotification, bM as StartFlowRequest, aq as StorageId, w as String0x, cp as StringOperator, cx as SupportedType, cy as SupportedTypes, aw as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cS as TezosTxAuthInput, cT as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bY as TrxSignatureGatingRequest, b$ as TrxSignatureGatingResponse, cP as TxAuthInput, D as TxHash, cQ as TxSignatureResponse, cJ as UpdateQueryConfigurationInput, cK as UpdateQueryConfigurationResponse, ae as UuidString, aB as VerificationMode, aA as VerificationModes, at as WalletId, bX as WalletSignResponse, dd as WalletSignatureData, dc as WalletSignatureResponse, aN as WorkflowId, aM as WorkspaceId, ck as ZKPOperator, c$ as ZKPRequest, d0 as ZKPRequestFromZKVerifier, c7 as ZeroKnowledgeProofRequest, ca as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, ap as createBrandedSchemaId, ax as generateId, v as isValidAddress, an as isoCountriesNameFromISO2, cl as operatorDisplayMap, ao as parseISO3CountryCode, cf as parseIden3Message, cg as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-38f27d6b.esm.js';
2
+ import { C as CredentialTypes } from './identity-api.schema-b8687390.esm.js';
3
+ export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, aj as ALPHA_2_COUNTRIES, cm as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, aJ as AdditionalUserInformationParams, z as AddressSchema, ch as AllCredentialAttributes, ci as AllCredentialValues, d4 as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, cX as AnyTxAuthInput, c_ as AnyTxSignatureResponse, au as AppId, I as AptosAddress, J as AptosSignature, cn as ArrayOperator, cd as AuthQrCodeData, bV as AuthSession, c8 as AuthorizationRequestMessage, cb as AuthorizationResponseMessage, bc as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cs as BOOLEAN_OPERATORS, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, ct as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, a0 as CardanoAddress, a1 as CardanoSignature, av as ChallengeId, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d2 as CreateAuthRequestProps, cH as CreateQueryConfigurationInput, cI as CreateQueryConfigurationResponse, d3 as CreateZKProofRequestProps, cc as CredentialQrCodeData, cu as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bd as DataAvailableOnStart, cv as DateOperator, cL as DeleteQueryConfigurationInput, cM as DeleteQueryConfigurationResponse, a8 as DisplayedBlockchainNamespace, F as EIP155Signature, ac as ENVS, E as EVM_BLOCK_TIME, g as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, Y as EdSignature, as as EmailId, ad as EnvironmentSchema, h as EvmChainId, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, cW as ExtendedTezosTxAuthInput, cZ as ExtendedTezosTxSignatureResponse, cV as ExtendedTxAuthInput, cY as ExtendedTxSignatureResponse, aO as ExternalClientId, ay as FLOW_TYPES, az as FlowType, G as FunctionCallData, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cU as GetTezosTxAuthDataSignatureResponse, cR as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c1 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, aC as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, aE as IDENTITY_DOCUMENT_OPTIONS, cz as IDInformation, ai as ISO3CountryCode, aI as Identifier, c0 as IdentityAppMessage, aQ as IdentityAppV2Web2JWT, aP as IdentityAppV2Web3JWT, aD as IdentityDocumentCountryListOption, aF as IdentityDocumentOptionsType, ar as IdentityId, c2 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bZ as IdentitySdkMessage, b_ as IdentitySdkMessageWithIdentifier, aK as IdentityWidgetAccessToken, aR as IdentityWidgetAccessToken_NEW, aS as IdentityWidgetSessionToken, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c5 as MediaType, c6 as MediaTypePID, u as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, f as NEXERA_CHAIN_VALUES, b as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAIN_NAMES, e as NEXERA_EVM_CHAIN_NAMES_LIST, c as NEXERA_STARKNET_CHAINS, s as NEXERA_STARKNET_CHAIN_NAMES, t as NEXERA_STARKNET_CHAIN_VALUES, a as NEXERA_TEZOS_CHAINS, j as NEXERA_TEZOS_CHAIN_NAMES, k as NEXERA_TEZOS_CHAIN_NAMES_LIST, l as NEXERA_TEZOS_CHAIN_VALUES, cq as NUMERIC_OPERATORS, cG as NonParsedQueryConfiguration, cr as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d1 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d6 as OnChainZKP, d7 as OnChainZKPFromNexeraID, d9 as OnChainZKPPayload, d8 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cj as Operator, bk as OperatorToChallengeQueryOperator, aL as OrganizationId, _ as P2Signature, aG as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ah as PUBLIC_SERVICES_SCHEMA_MAP, cD as PartialQueryConfigSimplified, aH as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, d5 as ProjectAuthorizationData, c9 as ProofData, y as PublicKey, ce as QrCodeLinkWithSchemaType, cA as QueryConfig, cC as QueryConfigSimplified, cE as QueryConfigSimplifiedParsed, cF as QueryConfiguration, cO as QueryCredentialType, cN as QueryCredentialTypes, cB as QueryType, c3 as RequiredDataRowSchema, c4 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, da as SCENARIO_AUTHORIZATION_STATUSES, co as STRING_OPERATORS, cw as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, db as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b4 as StartCompletedNotification, bM as StartFlowRequest, aq as StorageId, w as String0x, cp as StringOperator, cx as SupportedType, cy as SupportedTypes, aw as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cS as TezosTxAuthInput, cT as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bY as TrxSignatureGatingRequest, b$ as TrxSignatureGatingResponse, cP as TxAuthInput, D as TxHash, cQ as TxSignatureResponse, cJ as UpdateQueryConfigurationInput, cK as UpdateQueryConfigurationResponse, ae as UuidString, aB as VerificationMode, aA as VerificationModes, at as WalletId, bX as WalletSignResponse, dd as WalletSignatureData, dc as WalletSignatureResponse, aN as WorkflowId, aM as WorkspaceId, ck as ZKPOperator, c$ as ZKPRequest, d0 as ZKPRequestFromZKVerifier, c7 as ZeroKnowledgeProofRequest, ca as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, ap as createBrandedSchemaId, ax as generateId, v as isValidAddress, an as isoCountriesNameFromISO2, cl as operatorDisplayMap, ao as parseISO3CountryCode, cf as parseIden3Message, cg as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-b8687390.esm.js';
4
4
  import 'nanoid';
5
5
 
6
6
  var decodeUint8Array = function decodeUint8Array(data) {
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "1.12.9",
3
+ "version": "1.12.10",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var identityApi_schema = require('../../dist/identity-api.schema-46a66e5e.cjs.dev.js');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-f78923c5.cjs.dev.js');
6
6
  require('zod');
7
7
  require('nanoid');
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var identityApi_schema = require('../../dist/identity-api.schema-b63a1396.cjs.prod.js');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-5844b144.cjs.prod.js');
6
6
  require('zod');
7
7
  require('nanoid');
8
8
 
@@ -1,3 +1,3 @@
1
- export { cm as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, ch as AllCredentialAttributes, ci as AllCredentialValues, d4 as AllScenarioExecutionAuthorizationData, cX as AnyTxAuthInput, c_ as AnyTxSignatureResponse, cn as ArrayOperator, cd as AuthQrCodeData, bV as AuthSession, c8 as AuthorizationRequestMessage, cb as AuthorizationResponseMessage, bc as AvailableFlow, cs as BOOLEAN_OPERATORS, ct as BooleanOperator, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, d2 as CreateAuthRequestProps, cH as CreateQueryConfigurationInput, cI as CreateQueryConfigurationResponse, d3 as CreateZKProofRequestProps, cc as CredentialQrCodeData, cu as DATE_OPERATORS, bd as DataAvailableOnStart, cv as DateOperator, cL as DeleteQueryConfigurationInput, cM as DeleteQueryConfigurationResponse, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, cW as ExtendedTezosTxAuthInput, cZ as ExtendedTezosTxSignatureResponse, cV as ExtendedTxAuthInput, cY as ExtendedTxSignatureResponse, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cU as GetTezosTxAuthDataSignatureResponse, cR as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c1 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, cz as IDInformation, c0 as IdentityAppMessage, c2 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bZ as IdentitySdkMessage, b_ as IdentitySdkMessageWithIdentifier, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c5 as MediaType, c6 as MediaTypePID, cq as NUMERIC_OPERATORS, cG as NonParsedQueryConfiguration, cr as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d1 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d6 as OnChainZKP, d7 as OnChainZKPFromNexeraID, d9 as OnChainZKPPayload, d8 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cj as Operator, bk as OperatorToChallengeQueryOperator, cD as PartialQueryConfigSimplified, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, d5 as ProjectAuthorizationData, c9 as ProofData, ce as QrCodeLinkWithSchemaType, cA as QueryConfig, cC as QueryConfigSimplified, cE as QueryConfigSimplifiedParsed, cF as QueryConfiguration, cO as QueryCredentialType, cN as QueryCredentialTypes, cB as QueryType, c3 as RequiredDataRowSchema, c4 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, da as SCENARIO_AUTHORIZATION_STATUSES, co as STRING_OPERATORS, cw as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, db as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, b4 as StartCompletedNotification, bM as StartFlowRequest, cp as StringOperator, cx as SupportedType, cy as SupportedTypes, cS as TezosTxAuthInput, cT as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bY as TrxSignatureGatingRequest, b$ as TrxSignatureGatingResponse, cP as TxAuthInput, cQ as TxSignatureResponse, cJ as UpdateQueryConfigurationInput, cK as UpdateQueryConfigurationResponse, bX as WalletSignResponse, dd as WalletSignatureData, dc as WalletSignatureResponse, ck as ZKPOperator, c$ as ZKPRequest, d0 as ZKPRequestFromZKVerifier, c7 as ZeroKnowledgeProofRequest, ca as ZeroKnowledgeProofResponse, cl as operatorDisplayMap, cf as parseIden3Message, cg as parseSessionIdFromUrl } from '../../dist/identity-api.schema-38f27d6b.esm.js';
1
+ export { cm as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, ch as AllCredentialAttributes, ci as AllCredentialValues, d4 as AllScenarioExecutionAuthorizationData, cX as AnyTxAuthInput, c_ as AnyTxSignatureResponse, cn as ArrayOperator, cd as AuthQrCodeData, bV as AuthSession, c8 as AuthorizationRequestMessage, cb as AuthorizationResponseMessage, bc as AvailableFlow, cs as BOOLEAN_OPERATORS, ct as BooleanOperator, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, d2 as CreateAuthRequestProps, cH as CreateQueryConfigurationInput, cI as CreateQueryConfigurationResponse, d3 as CreateZKProofRequestProps, cc as CredentialQrCodeData, cu as DATE_OPERATORS, bd as DataAvailableOnStart, cv as DateOperator, cL as DeleteQueryConfigurationInput, cM as DeleteQueryConfigurationResponse, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, cW as ExtendedTezosTxAuthInput, cZ as ExtendedTezosTxSignatureResponse, cV as ExtendedTxAuthInput, cY as ExtendedTxSignatureResponse, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cU as GetTezosTxAuthDataSignatureResponse, cR as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c1 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, cz as IDInformation, c0 as IdentityAppMessage, c2 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bZ as IdentitySdkMessage, b_ as IdentitySdkMessageWithIdentifier, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c5 as MediaType, c6 as MediaTypePID, cq as NUMERIC_OPERATORS, cG as NonParsedQueryConfiguration, cr as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d1 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d6 as OnChainZKP, d7 as OnChainZKPFromNexeraID, d9 as OnChainZKPPayload, d8 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cj as Operator, bk as OperatorToChallengeQueryOperator, cD as PartialQueryConfigSimplified, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, d5 as ProjectAuthorizationData, c9 as ProofData, ce as QrCodeLinkWithSchemaType, cA as QueryConfig, cC as QueryConfigSimplified, cE as QueryConfigSimplifiedParsed, cF as QueryConfiguration, cO as QueryCredentialType, cN as QueryCredentialTypes, cB as QueryType, c3 as RequiredDataRowSchema, c4 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, da as SCENARIO_AUTHORIZATION_STATUSES, co as STRING_OPERATORS, cw as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, db as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, b4 as StartCompletedNotification, bM as StartFlowRequest, cp as StringOperator, cx as SupportedType, cy as SupportedTypes, cS as TezosTxAuthInput, cT as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bY as TrxSignatureGatingRequest, b$ as TrxSignatureGatingResponse, cP as TxAuthInput, cQ as TxSignatureResponse, cJ as UpdateQueryConfigurationInput, cK as UpdateQueryConfigurationResponse, bX as WalletSignResponse, dd as WalletSignatureData, dc as WalletSignatureResponse, ck as ZKPOperator, c$ as ZKPRequest, d0 as ZKPRequestFromZKVerifier, c7 as ZeroKnowledgeProofRequest, ca as ZeroKnowledgeProofResponse, cl as operatorDisplayMap, cf as parseIden3Message, cg as parseSessionIdFromUrl } from '../../dist/identity-api.schema-b8687390.esm.js';
2
2
  import 'zod';
3
3
  import 'nanoid';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "1.12.9-dev",
3
+ "version": "1.12.10-dev",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var identityApi_schema = require('../../dist/identity-api.schema-46a66e5e.cjs.dev.js');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-f78923c5.cjs.dev.js');
6
6
  require('zod');
7
7
  require('nanoid');
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var identityApi_schema = require('../../dist/identity-api.schema-b63a1396.cjs.prod.js');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-5844b144.cjs.prod.js');
6
6
  require('zod');
7
7
  require('nanoid');
8
8
 
@@ -1,5 +1,5 @@
1
- import { cx as SupportedType, de as _toConsumableArray, cm as ARRAY_OPERATORS, cs as BOOLEAN_OPERATORS, cq as NUMERIC_OPERATORS, co as STRING_OPERATORS } from '../../dist/identity-api.schema-38f27d6b.esm.js';
2
- export { ak as Alpha2Country, dA as CredentialMediaType, dv as CredentialNames, du as CredentialSchemas, dy as CredentialType, C as CredentialTypes, dt as GenericVerifiableCredentialSchema, df as ID3CredentialSubjectSchema, dq as IDImageCredentialSubjectSchema, dp as IDInformationCredentialSubjectSchema, dg as IDScanCredentialSubjectSchema, dh as IDScanPassportCredentialSubjectSchema, di as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, dw as NexeraCredentialType, dn as OLD_AMLScreeningsResultsCredentialSubjectSchema, dj as OLD_IDImageCredentialSubjectSchema, dk as OLD_IDInformationCredentialSubjectSchema, dl as OLD_ProofOfResidenceCredentialSubjectSchema, dm as OLD_SelfieImageCredentialSubjectSchema, ds as ProofOfResidenceCredentialSubjectSchema, dr as SelfieImageCredentialSubjectSchema, dz as VerifiableCredential, al as countryISO3toISO2Mapping, dx as getCredentialName, an as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-38f27d6b.esm.js';
1
+ import { cx as SupportedType, de as _toConsumableArray, cm as ARRAY_OPERATORS, cs as BOOLEAN_OPERATORS, cq as NUMERIC_OPERATORS, co as STRING_OPERATORS } from '../../dist/identity-api.schema-b8687390.esm.js';
2
+ export { ak as Alpha2Country, dA as CredentialMediaType, dv as CredentialNames, du as CredentialSchemas, dy as CredentialType, C as CredentialTypes, dt as GenericVerifiableCredentialSchema, df as ID3CredentialSubjectSchema, dq as IDImageCredentialSubjectSchema, dp as IDInformationCredentialSubjectSchema, dg as IDScanCredentialSubjectSchema, dh as IDScanPassportCredentialSubjectSchema, di as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, dw as NexeraCredentialType, dn as OLD_AMLScreeningsResultsCredentialSubjectSchema, dj as OLD_IDImageCredentialSubjectSchema, dk as OLD_IDInformationCredentialSubjectSchema, dl as OLD_ProofOfResidenceCredentialSubjectSchema, dm as OLD_SelfieImageCredentialSubjectSchema, ds as ProofOfResidenceCredentialSubjectSchema, dr as SelfieImageCredentialSubjectSchema, dz as VerifiableCredential, al as countryISO3toISO2Mapping, dx as getCredentialName, an as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-b8687390.esm.js';
3
3
  import 'zod';
4
4
  import 'nanoid';
5
5