@nexeraid/identity-schemas 1.12.1-dev → 1.12.2-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.
@@ -1647,6 +1647,9 @@ export type GetTxAuthSigRequest = z.infer<typeof GetTxAuthSigRequest>;
1647
1647
  export declare const GetTxAuthSigResponse: z.ZodObject<{
1648
1648
  type: z.ZodLiteral<"getTxAuthSigResponse">;
1649
1649
  signatureResponse: z.ZodObject<{
1650
+ /**
1651
+ * GetCredentialsRequest
1652
+ */
1650
1653
  payload: z.ZodOptional<z.ZodString>;
1651
1654
  signature: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1652
1655
  blockExpiration: z.ZodOptional<z.ZodNumber>;
@@ -1688,6 +1691,101 @@ export declare const GetTxAuthSigResponse: z.ZodObject<{
1688
1691
  };
1689
1692
  }>;
1690
1693
  export type GetTxAuthSigResponse = z.infer<typeof GetTxAuthSigResponse>;
1694
+ /**
1695
+ * GetTxAuthSigRequest Tezos
1696
+ */
1697
+ export declare const GetTxAuthSigRequestTezos: z.ZodObject<{
1698
+ type: z.ZodLiteral<"getTxAuthSigRequestTezos">;
1699
+ data: z.ZodObject<Omit<{
1700
+ chainID: z.ZodEffects<z.ZodEnum<[import("../index.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../index.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../index.js").NEXERA_TEZOS_CHAINS, unknown>;
1701
+ contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
1702
+ functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
1703
+ args: z.ZodString;
1704
+ userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
1705
+ blockExpiration: z.ZodOptional<z.ZodNumber>;
1706
+ nonce: z.ZodOptional<z.ZodNumber>;
1707
+ }, "userAddress">, "strip", z.ZodTypeAny, {
1708
+ contractAddress: `KT1${string}`;
1709
+ functionName: `%${string}`;
1710
+ args: string;
1711
+ chainID: import("../index.js").NEXERA_TEZOS_CHAINS;
1712
+ blockExpiration?: number | undefined;
1713
+ nonce?: number | undefined;
1714
+ }, {
1715
+ contractAddress: string;
1716
+ functionName: string;
1717
+ args: string;
1718
+ blockExpiration?: number | undefined;
1719
+ nonce?: number | undefined;
1720
+ chainID?: unknown;
1721
+ }>;
1722
+ identifier: z.ZodString;
1723
+ }, "strip", z.ZodTypeAny, {
1724
+ type: "getTxAuthSigRequestTezos";
1725
+ data: {
1726
+ contractAddress: `KT1${string}`;
1727
+ functionName: `%${string}`;
1728
+ args: string;
1729
+ chainID: import("../index.js").NEXERA_TEZOS_CHAINS;
1730
+ blockExpiration?: number | undefined;
1731
+ nonce?: number | undefined;
1732
+ };
1733
+ identifier: string;
1734
+ }, {
1735
+ type: "getTxAuthSigRequestTezos";
1736
+ data: {
1737
+ contractAddress: string;
1738
+ functionName: string;
1739
+ args: string;
1740
+ blockExpiration?: number | undefined;
1741
+ nonce?: number | undefined;
1742
+ chainID?: unknown;
1743
+ };
1744
+ identifier: string;
1745
+ }>;
1746
+ export type GetTxAuthSigRequestTezos = z.infer<typeof GetTxAuthSigRequestTezos>;
1747
+ /**
1748
+ * GetTxAuthSigResponse Tezos
1749
+ */
1750
+ export declare const GetTxAuthSigResponseTezos: z.ZodObject<{
1751
+ type: z.ZodLiteral<"getTezosTxAuthSigResponse">;
1752
+ signatureResponse: z.ZodObject<{
1753
+ signature: z.ZodOptional<z.ZodEffects<z.ZodString, `edsig${string}`, string>>;
1754
+ blockExpiration: z.ZodOptional<z.ZodNumber>;
1755
+ isAuthorized: z.ZodBoolean;
1756
+ errorMessage: z.ZodOptional<z.ZodAny>;
1757
+ }, "strip", z.ZodTypeAny, {
1758
+ isAuthorized: boolean;
1759
+ signature?: `edsig${string}` | undefined;
1760
+ blockExpiration?: number | undefined;
1761
+ errorMessage?: any;
1762
+ }, {
1763
+ isAuthorized: boolean;
1764
+ signature?: string | undefined;
1765
+ blockExpiration?: number | undefined;
1766
+ errorMessage?: any;
1767
+ }>;
1768
+ identifier: z.ZodString;
1769
+ }, "strip", z.ZodTypeAny, {
1770
+ type: "getTezosTxAuthSigResponse";
1771
+ identifier: string;
1772
+ signatureResponse: {
1773
+ isAuthorized: boolean;
1774
+ signature?: `edsig${string}` | undefined;
1775
+ blockExpiration?: number | undefined;
1776
+ errorMessage?: any;
1777
+ };
1778
+ }, {
1779
+ type: "getTezosTxAuthSigResponse";
1780
+ identifier: string;
1781
+ signatureResponse: {
1782
+ isAuthorized: boolean;
1783
+ signature?: string | undefined;
1784
+ blockExpiration?: number | undefined;
1785
+ errorMessage?: any;
1786
+ };
1787
+ }>;
1788
+ export type GetTxAuthSigResponseTezos = z.infer<typeof GetTxAuthSigResponseTezos>;
1691
1789
  export declare const HostRequestMessage: z.ZodUnion<[z.ZodObject<{
1692
1790
  type: z.ZodLiteral<"getCredentials">;
1693
1791
  data: z.ZodUndefined;
@@ -2074,6 +2172,54 @@ export declare const HostRequestMessage: z.ZodUnion<[z.ZodObject<{
2074
2172
  nonce?: number | undefined;
2075
2173
  };
2076
2174
  identifier: string;
2175
+ }>, z.ZodObject<{
2176
+ type: z.ZodLiteral<"getTxAuthSigRequestTezos">;
2177
+ data: z.ZodObject<Omit<{
2178
+ chainID: z.ZodEffects<z.ZodEnum<[import("../index.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../index.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../index.js").NEXERA_TEZOS_CHAINS, unknown>;
2179
+ contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
2180
+ functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
2181
+ args: z.ZodString;
2182
+ userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
2183
+ blockExpiration: z.ZodOptional<z.ZodNumber>;
2184
+ nonce: z.ZodOptional<z.ZodNumber>;
2185
+ }, "userAddress">, "strip", z.ZodTypeAny, {
2186
+ contractAddress: `KT1${string}`;
2187
+ functionName: `%${string}`;
2188
+ args: string;
2189
+ chainID: import("../index.js").NEXERA_TEZOS_CHAINS;
2190
+ blockExpiration?: number | undefined;
2191
+ nonce?: number | undefined;
2192
+ }, {
2193
+ contractAddress: string;
2194
+ functionName: string;
2195
+ args: string;
2196
+ blockExpiration?: number | undefined;
2197
+ nonce?: number | undefined;
2198
+ chainID?: unknown;
2199
+ }>;
2200
+ identifier: z.ZodString;
2201
+ }, "strip", z.ZodTypeAny, {
2202
+ type: "getTxAuthSigRequestTezos";
2203
+ data: {
2204
+ contractAddress: `KT1${string}`;
2205
+ functionName: `%${string}`;
2206
+ args: string;
2207
+ chainID: import("../index.js").NEXERA_TEZOS_CHAINS;
2208
+ blockExpiration?: number | undefined;
2209
+ nonce?: number | undefined;
2210
+ };
2211
+ identifier: string;
2212
+ }, {
2213
+ type: "getTxAuthSigRequestTezos";
2214
+ data: {
2215
+ contractAddress: string;
2216
+ functionName: string;
2217
+ args: string;
2218
+ blockExpiration?: number | undefined;
2219
+ nonce?: number | undefined;
2220
+ chainID?: unknown;
2221
+ };
2222
+ identifier: string;
2077
2223
  }>]>;
2078
2224
  export type HostRequestMessage = z.infer<typeof HostRequestMessage>;
2079
2225
  export declare const IdentityResponseMessage: z.ZodUnion<[z.ZodObject<{
@@ -2677,6 +2823,9 @@ export declare const IdentityResponseMessage: z.ZodUnion<[z.ZodObject<{
2677
2823
  }>, z.ZodObject<{
2678
2824
  type: z.ZodLiteral<"getTxAuthSigResponse">;
2679
2825
  signatureResponse: z.ZodObject<{
2826
+ /**
2827
+ * GetCredentialsRequest
2828
+ */
2680
2829
  payload: z.ZodOptional<z.ZodString>;
2681
2830
  signature: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2682
2831
  blockExpiration: z.ZodOptional<z.ZodNumber>;
@@ -2716,6 +2865,43 @@ export declare const IdentityResponseMessage: z.ZodUnion<[z.ZodObject<{
2716
2865
  payload?: string | undefined;
2717
2866
  errorMessage?: any;
2718
2867
  };
2868
+ }>, z.ZodObject<{
2869
+ type: z.ZodLiteral<"getTezosTxAuthSigResponse">;
2870
+ signatureResponse: z.ZodObject<{
2871
+ signature: z.ZodOptional<z.ZodEffects<z.ZodString, `edsig${string}`, string>>;
2872
+ blockExpiration: z.ZodOptional<z.ZodNumber>;
2873
+ isAuthorized: z.ZodBoolean;
2874
+ errorMessage: z.ZodOptional<z.ZodAny>;
2875
+ }, "strip", z.ZodTypeAny, {
2876
+ isAuthorized: boolean;
2877
+ signature?: `edsig${string}` | undefined;
2878
+ blockExpiration?: number | undefined;
2879
+ errorMessage?: any;
2880
+ }, {
2881
+ isAuthorized: boolean;
2882
+ signature?: string | undefined;
2883
+ blockExpiration?: number | undefined;
2884
+ errorMessage?: any;
2885
+ }>;
2886
+ identifier: z.ZodString;
2887
+ }, "strip", z.ZodTypeAny, {
2888
+ type: "getTezosTxAuthSigResponse";
2889
+ identifier: string;
2890
+ signatureResponse: {
2891
+ isAuthorized: boolean;
2892
+ signature?: `edsig${string}` | undefined;
2893
+ blockExpiration?: number | undefined;
2894
+ errorMessage?: any;
2895
+ };
2896
+ }, {
2897
+ type: "getTezosTxAuthSigResponse";
2898
+ identifier: string;
2899
+ signatureResponse: {
2900
+ isAuthorized: boolean;
2901
+ signature?: string | undefined;
2902
+ blockExpiration?: number | undefined;
2903
+ errorMessage?: any;
2904
+ };
2719
2905
  }>]>;
2720
2906
  export type IdentityResponseMessage = z.infer<typeof IdentityResponseMessage>;
2721
2907
  //# 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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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKlC,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
1
+ {"version":3,"file":"host-requests.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["host-requests.schema.ts"],"names":[],"mappings":"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"}
@@ -386,6 +386,54 @@ export declare const HostMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
386
386
  nonce?: number | undefined;
387
387
  };
388
388
  identifier: string;
389
+ }>, z.ZodObject<{
390
+ type: z.ZodLiteral<"getTxAuthSigRequestTezos">;
391
+ data: z.ZodObject<Omit<{
392
+ chainID: z.ZodEffects<z.ZodEnum<[import("../index.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../index.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../index.js").NEXERA_TEZOS_CHAINS, unknown>;
393
+ contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
394
+ functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
395
+ args: z.ZodString;
396
+ userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
397
+ blockExpiration: z.ZodOptional<z.ZodNumber>;
398
+ nonce: z.ZodOptional<z.ZodNumber>;
399
+ }, "userAddress">, "strip", z.ZodTypeAny, {
400
+ contractAddress: `KT1${string}`;
401
+ functionName: `%${string}`;
402
+ args: string;
403
+ chainID: import("../index.js").NEXERA_TEZOS_CHAINS;
404
+ blockExpiration?: number | undefined;
405
+ nonce?: number | undefined;
406
+ }, {
407
+ contractAddress: string;
408
+ functionName: string;
409
+ args: string;
410
+ blockExpiration?: number | undefined;
411
+ nonce?: number | undefined;
412
+ chainID?: unknown;
413
+ }>;
414
+ identifier: z.ZodString;
415
+ }, "strip", z.ZodTypeAny, {
416
+ type: "getTxAuthSigRequestTezos";
417
+ data: {
418
+ contractAddress: `KT1${string}`;
419
+ functionName: `%${string}`;
420
+ args: string;
421
+ chainID: import("../index.js").NEXERA_TEZOS_CHAINS;
422
+ blockExpiration?: number | undefined;
423
+ nonce?: number | undefined;
424
+ };
425
+ identifier: string;
426
+ }, {
427
+ type: "getTxAuthSigRequestTezos";
428
+ data: {
429
+ contractAddress: string;
430
+ functionName: string;
431
+ args: string;
432
+ blockExpiration?: number | undefined;
433
+ nonce?: number | undefined;
434
+ chainID?: unknown;
435
+ };
436
+ identifier: string;
389
437
  }>]>, z.ZodUnion<[z.ZodObject<{
390
438
  type: z.ZodLiteral<"onStartKyc">;
391
439
  data: z.ZodObject<{
@@ -2110,6 +2158,43 @@ export declare const IdentityMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2110
2158
  payload?: string | undefined;
2111
2159
  errorMessage?: any;
2112
2160
  };
2161
+ }>, z.ZodObject<{
2162
+ type: z.ZodLiteral<"getTezosTxAuthSigResponse">;
2163
+ signatureResponse: z.ZodObject<{
2164
+ signature: z.ZodOptional<z.ZodEffects<z.ZodString, `edsig${string}`, string>>;
2165
+ blockExpiration: z.ZodOptional<z.ZodNumber>;
2166
+ isAuthorized: z.ZodBoolean;
2167
+ errorMessage: z.ZodOptional<z.ZodAny>;
2168
+ }, "strip", z.ZodTypeAny, {
2169
+ isAuthorized: boolean;
2170
+ signature?: `edsig${string}` | undefined;
2171
+ blockExpiration?: number | undefined;
2172
+ errorMessage?: any;
2173
+ }, {
2174
+ isAuthorized: boolean;
2175
+ signature?: string | undefined;
2176
+ blockExpiration?: number | undefined;
2177
+ errorMessage?: any;
2178
+ }>;
2179
+ identifier: z.ZodString;
2180
+ }, "strip", z.ZodTypeAny, {
2181
+ type: "getTezosTxAuthSigResponse";
2182
+ identifier: string;
2183
+ signatureResponse: {
2184
+ isAuthorized: boolean;
2185
+ signature?: `edsig${string}` | undefined;
2186
+ blockExpiration?: number | undefined;
2187
+ errorMessage?: any;
2188
+ };
2189
+ }, {
2190
+ type: "getTezosTxAuthSigResponse";
2191
+ identifier: string;
2192
+ signatureResponse: {
2193
+ isAuthorized: boolean;
2194
+ signature?: string | undefined;
2195
+ blockExpiration?: number | undefined;
2196
+ errorMessage?: any;
2197
+ };
2113
2198
  }>]>]>;
2114
2199
  export type IdentityMessage = z.infer<typeof IdentityMessage>;
2115
2200
  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":"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"}
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"}
@@ -2548,6 +2548,26 @@ var GetTxAuthDataSignatureResponse = z.object({
2548
2548
  errorMessage: z.any().optional()
2549
2549
  });
2550
2550
 
2551
+ var TezosTxAuthInput = z.object({
2552
+ chainID: TezosChainId,
2553
+ contractAddress: TezosContractAddress,
2554
+ functionName: TezosEntrypointName,
2555
+ args: z.string(),
2556
+ userAddress: TezosImplicitAddress,
2557
+ blockExpiration: z.number()["int"]().optional(),
2558
+ nonce: z.number()["int"]().optional()
2559
+ });
2560
+ var TezosTxSignatureResponse = z.object({
2561
+ signature: EdSignature,
2562
+ blockExpiration: z.number()
2563
+ });
2564
+ var GetTezosTxAuthDataSignatureResponse = z.object({
2565
+ signature: EdSignature.optional(),
2566
+ blockExpiration: z.number().optional(),
2567
+ isAuthorized: z["boolean"](),
2568
+ errorMessage: z.any().optional()
2569
+ });
2570
+
2551
2571
  var SimplifiedCredential = z.object({
2552
2572
  id: z.string(),
2553
2573
  type: z.array(z.string()),
@@ -2657,8 +2677,26 @@ var GetTxAuthSigResponse = z.object({
2657
2677
  signatureResponse: GetTxAuthDataSignatureResponse,
2658
2678
  identifier: z.string()
2659
2679
  });
2660
- var HostRequestMessage = z.union([GetCredentialsRequest, PolygonIdRequest, StartFlowRequest, IsVerifiedRequest, GetTxAuthSigRequest]);
2661
- var IdentityResponseMessage = z.union([GetCredentialsResponse, PolygonIdResponse, IsVerifiedResponse, GetTxAuthSigResponse]);
2680
+ /**
2681
+ * GetTxAuthSigRequest Tezos
2682
+ */
2683
+ var GetTxAuthSigRequestTezos = z.object({
2684
+ type: z.literal("getTxAuthSigRequestTezos"),
2685
+ data: TezosTxAuthInput.omit({
2686
+ userAddress: true
2687
+ }),
2688
+ identifier: z.string()
2689
+ });
2690
+ /**
2691
+ * GetTxAuthSigResponse Tezos
2692
+ */
2693
+ var GetTxAuthSigResponseTezos = z.object({
2694
+ type: z.literal("getTezosTxAuthSigResponse"),
2695
+ signatureResponse: GetTezosTxAuthDataSignatureResponse,
2696
+ identifier: z.string()
2697
+ });
2698
+ var HostRequestMessage = z.union([GetCredentialsRequest, PolygonIdRequest, StartFlowRequest, IsVerifiedRequest, GetTxAuthSigRequest, GetTxAuthSigRequestTezos]);
2699
+ var IdentityResponseMessage = z.union([GetCredentialsResponse, PolygonIdResponse, IsVerifiedResponse, GetTxAuthSigResponse, GetTxAuthSigResponseTezos]);
2662
2700
 
2663
2701
  var ZKPRequest = z.object({
2664
2702
  id: z.number(),
@@ -2752,24 +2790,4 @@ var RequiredVerificationData = z.object({
2752
2790
  })
2753
2791
  });
2754
2792
 
2755
- var TezosTxAuthInput = z.object({
2756
- chainID: TezosChainId,
2757
- contractAddress: TezosContractAddress,
2758
- functionName: TezosEntrypointName,
2759
- args: z.string(),
2760
- userAddress: TezosImplicitAddress,
2761
- blockExpiration: z.number()["int"]().optional(),
2762
- nonce: z.number()["int"]().optional()
2763
- });
2764
- var TezosTxSignatureResponse = z.object({
2765
- signature: EdSignature,
2766
- blockExpiration: z.number()
2767
- });
2768
- var GetTezosTxAuthDataSignatureResponse = z.object({
2769
- signature: EdSignature.optional(),
2770
- blockExpiration: z.number().optional(),
2771
- isAuthorized: z["boolean"](),
2772
- errorMessage: z.any().optional()
2773
- });
2774
-
2775
- export { ENVS as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, TezosAddress as D, EVM_BLOCK_TIME as E, FunctionCallData as F, TezosEntrypointName as G, EdSignature as H, SpSignature as I, P2Signature as J, TezosSignature as K, CardanoAddress as L, CardanoSignature as M, NEXERA_EVM_CHAINS as N, BlockchainAddress as O, POLYGON_NETWORK_NAMES as P, BlockchainSignature as Q, BLOCKCHAIN_NAMESPACES as R, StarknetAddress as S, TezosChainId as T, BlockchainNamespace as U, BLOCKCHAIN_NAMESPACES_NAMES as V, DISPLAYED_LOCKCHAIN_NAMESPACES as W, DisplayedBlockchainNamespace as X, BLOCKCHAIN_NAME_TO_NAMESPACE as Y, BLOCKCHAIN_NAMESPACE_TO_NAME as Z, coerceBoolean as _, NEXERA_TEZOS_CHAINS as a, GetCredentialsResponse as a$, EnvironmentSchema as a0, UuidString as a1, ZodParse as a2, shortBlockchainAddress as a3, ISO3CountryCode as a4, ALPHA_2_COUNTRIES as a5, Alpha2Country as a6, countryISO3toISO2Mapping as a7, countryISO2toISO3Mapping as a8, isoCountriesNameFromISO2 as a9, TransactionResponse as aA, HostResponseMessage as aB, ChallengeQueryOperators as aC, ChallengeQueryOperator as aD, OperatorToChallengeQueryOperator as aE, ChallengeQueryOperatorToOperator as aF, ChallengeQuerySchema as aG, ExecuteChallengeQueryInput as aH, ExecuteChallengeQueryConfig as aI, OpaChallengeQueryResponse as aJ, ExecuteChallengeQueryResponse as aK, OPAChallengeQuery as aL, OnChainRuleResult as aM, OffChainZKPRuleResult as aN, SdkVerificationOutput as aO, ScenarioTypes as aP, ScenarioType as aQ, ScenarioStatuses as aR, ScenarioStatus as aS, RuleEngineResponse as aT, ScenarioExecutionResponse as aU, RuleResultStatuses as aV, RuleResultStatus as aW, RuleResultStatusLabels as aX, ComplianceImplementationStepsInput as aY, SimplifiedCredential as aZ, GetCredentialsRequest as a_, parseISO3CountryCode as aa, ScenarioAuthorizationData as ab, SdkVerificationResponseSchema as ac, CloseScreenNotification as ad, KycCompletionData as ae, KycCompletionNotification as af, RuleEngineScenarioExecutionData as ag, OffChainScenarioExecutionData as ah, OnChainScenarioExecutionData as ai, ScenarioExecutionData as aj, ScenarioExecutionNotification as ak, IsVerifiedNotification as al, PolygonIdInitialized as am, OcvSdkInitialized as an, StartCompletedNotification as ao, IdentityNotificationMessage as ap, InitialDataRequest as aq, SignatureRequest as ar, TransactionData as as, SendTransactionRequest as at, IdentityRequestMessage as au, AVAILABLE_FLOWS as av, AvailableFlow as aw, DataAvailableOnStart as ax, InitialDataResponse as ay, SignatureResponse as az, NEXERA_EVM_CHAIN_NAMES as b, TezosTxAuthInput as b$, PolygonIdRequestData as b0, PolygonIdRequest as b1, PolygonIdResponseData as b2, PolygonIdResponse as b3, StartFlowRequest as b4, IsVerifiedRequest as b5, IsVerifiedResponse as b6, GetTxAuthSigRequest as b7, GetTxAuthSigResponse as b8, HostRequestMessage as b9, NUMERIC_OPERATORS as bA, NumericOperator as bB, BOOLEAN_OPERATORS as bC, BooleanOperator as bD, DATE_OPERATORS as bE, DateOperator as bF, SUPPORTED_TYPES as bG, SupportedType as bH, SupportedTypes as bI, IDInformation as bJ, QueryConfig as bK, QueryConfigSimplified as bL, PartialQueryConfigSimplified as bM, QueryConfigSimplifiedParsed as bN, QueryConfiguration as bO, NonParsedQueryConfiguration as bP, CreateQueryConfigurationInput as bQ, CreateQueryConfigurationResponse as bR, UpdateQueryConfigurationInput as bS, UpdateQueryConfigurationResponse as bT, DeleteQueryConfigurationInput as bU, DeleteQueryConfigurationResponse as bV, QueryCredentialTypes as bW, QueryCredentialType as bX, TxAuthInput as bY, TxSignatureResponse as bZ, GetTxAuthDataSignatureResponse as b_, IdentityResponseMessage as ba, HostMessage as bb, IdentityMessage as bc, RequiredDataRowSchema as bd, RequiredVerificationData as be, MediaType as bf, MediaTypePID as bg, ZeroKnowledgeProofRequest as bh, AuthorizationRequestMessage as bi, ProofData as bj, ZeroKnowledgeProofResponse as bk, AuthorizationResponseMessage as bl, CredentialQrCodeData as bm, AuthQrCodeData as bn, QrCodeLinkWithSchemaType as bo, parseIden3Message as bp, parseSessionIdFromUrl as bq, AllCredentialAttributes as br, AllCredentialValues as bs, Operator as bt, ZKPOperator as bu, operatorDisplayMap as bv, ARRAY_OPERATORS as bw, ArrayOperator as bx, STRING_OPERATORS as by, StringOperator as bz, NEXERA_EVM_CHAIN_NAMES_LIST as c, TezosTxSignatureResponse as c0, GetTezosTxAuthDataSignatureResponse as c1, ZKPRequest as c2, ZKPRequestFromZKVerifier as c3, OffChainZKP as c4, CreateAuthRequestProps as c5, CreateZKProofRequestProps as c6, AllScenarioExecutionAuthorizationData as c7, ProjectAuthorizationData as c8, OnChainZKP as c9, CredentialMediaType as cA, OnChainZKPFromNexeraID as ca, OnChainZKPScenarioFromCms as cb, OnChainZKPPayload as cc, SCENARIO_AUTHORIZATION_STATUSES as cd, ScenarioAuthorizationStatus as ce, _toConsumableArray as cf, ID3CredentialSubjectSchema as cg, IDScanCredentialSubjectSchema as ch, IDScanPassportCredentialSubjectSchema as ci, IDScanSelfieCredentialSubjectSchema as cj, OLD_IDImageCredentialSubjectSchema as ck, OLD_IDInformationCredentialSubjectSchema as cl, OLD_ProofOfResidenceCredentialSubjectSchema as cm, OLD_SelfieImageCredentialSubjectSchema as cn, OLD_AMLScreeningsResultsCredentialSubjectSchema as co, IDInformationCredentialSubjectSchema as cp, IDImageCredentialSubjectSchema as cq, SelfieImageCredentialSubjectSchema as cr, ProofOfResidenceCredentialSubjectSchema as cs, GenericVerifiableCredentialSchema as ct, CredentialSchemas as cu, CredentialNames as cv, NexeraCredentialType as cw, getCredentialName as cx, CredentialType as cy, VerifiableCredential as cz, NEXERA_CHAIN_VALUES as d, CHAINS_WITHOUT_DEDICATED_NODE_RPC as e, EvmChainId as f, PolygonNetworkNames as g, NEXERA_TEZOS_CHAIN_NAMES as h, NEXERA_TEZOS_CHAIN_NAMES_LIST as i, NEXERA_TEZOS_CHAIN_VALUES as j, ACTIVE_TEZOS_CHAIN_VALUES as k, isValidAddress as l, PrivateKey as m, AddressSchema as n, TxHash as o, EIP155Signature as p, AptosAddress as q, AptosSignature as r, shortAddress as s, StarknetSignature as t, PolkadotAddress as u, PolkadotSignature as v, CosmosAddress as w, CosmosSignature as x, TezosImplicitAddress as y, TezosContractAddress as z };
2793
+ export { ENVS as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, TezosAddress as D, EVM_BLOCK_TIME as E, FunctionCallData as F, TezosEntrypointName as G, EdSignature as H, SpSignature as I, P2Signature as J, TezosSignature as K, CardanoAddress as L, CardanoSignature as M, NEXERA_EVM_CHAINS as N, BlockchainAddress as O, POLYGON_NETWORK_NAMES as P, BlockchainSignature as Q, BLOCKCHAIN_NAMESPACES as R, StarknetAddress as S, TezosChainId as T, BlockchainNamespace as U, BLOCKCHAIN_NAMESPACES_NAMES as V, DISPLAYED_LOCKCHAIN_NAMESPACES as W, DisplayedBlockchainNamespace as X, BLOCKCHAIN_NAME_TO_NAMESPACE as Y, BLOCKCHAIN_NAMESPACE_TO_NAME as Z, coerceBoolean as _, NEXERA_TEZOS_CHAINS as a, GetCredentialsResponse as a$, EnvironmentSchema as a0, UuidString as a1, ZodParse as a2, shortBlockchainAddress as a3, ISO3CountryCode as a4, ALPHA_2_COUNTRIES as a5, Alpha2Country as a6, countryISO3toISO2Mapping as a7, countryISO2toISO3Mapping as a8, isoCountriesNameFromISO2 as a9, TransactionResponse as aA, HostResponseMessage as aB, ChallengeQueryOperators as aC, ChallengeQueryOperator as aD, OperatorToChallengeQueryOperator as aE, ChallengeQueryOperatorToOperator as aF, ChallengeQuerySchema as aG, ExecuteChallengeQueryInput as aH, ExecuteChallengeQueryConfig as aI, OpaChallengeQueryResponse as aJ, ExecuteChallengeQueryResponse as aK, OPAChallengeQuery as aL, OnChainRuleResult as aM, OffChainZKPRuleResult as aN, SdkVerificationOutput as aO, ScenarioTypes as aP, ScenarioType as aQ, ScenarioStatuses as aR, ScenarioStatus as aS, RuleEngineResponse as aT, ScenarioExecutionResponse as aU, RuleResultStatuses as aV, RuleResultStatus as aW, RuleResultStatusLabels as aX, ComplianceImplementationStepsInput as aY, SimplifiedCredential as aZ, GetCredentialsRequest as a_, parseISO3CountryCode as aa, ScenarioAuthorizationData as ab, SdkVerificationResponseSchema as ac, CloseScreenNotification as ad, KycCompletionData as ae, KycCompletionNotification as af, RuleEngineScenarioExecutionData as ag, OffChainScenarioExecutionData as ah, OnChainScenarioExecutionData as ai, ScenarioExecutionData as aj, ScenarioExecutionNotification as ak, IsVerifiedNotification as al, PolygonIdInitialized as am, OcvSdkInitialized as an, StartCompletedNotification as ao, IdentityNotificationMessage as ap, InitialDataRequest as aq, SignatureRequest as ar, TransactionData as as, SendTransactionRequest as at, IdentityRequestMessage as au, AVAILABLE_FLOWS as av, AvailableFlow as aw, DataAvailableOnStart as ax, InitialDataResponse as ay, SignatureResponse as az, NEXERA_EVM_CHAIN_NAMES as b, TxSignatureResponse as b$, PolygonIdRequestData as b0, PolygonIdRequest as b1, PolygonIdResponseData as b2, PolygonIdResponse as b3, StartFlowRequest as b4, IsVerifiedRequest as b5, IsVerifiedResponse as b6, GetTxAuthSigRequest as b7, GetTxAuthSigResponse as b8, GetTxAuthSigRequestTezos as b9, STRING_OPERATORS as bA, StringOperator as bB, NUMERIC_OPERATORS as bC, NumericOperator as bD, BOOLEAN_OPERATORS as bE, BooleanOperator as bF, DATE_OPERATORS as bG, DateOperator as bH, SUPPORTED_TYPES as bI, SupportedType as bJ, SupportedTypes as bK, IDInformation as bL, QueryConfig as bM, QueryConfigSimplified as bN, PartialQueryConfigSimplified as bO, QueryConfigSimplifiedParsed as bP, QueryConfiguration as bQ, NonParsedQueryConfiguration as bR, CreateQueryConfigurationInput as bS, CreateQueryConfigurationResponse as bT, UpdateQueryConfigurationInput as bU, UpdateQueryConfigurationResponse as bV, DeleteQueryConfigurationInput as bW, DeleteQueryConfigurationResponse as bX, QueryCredentialTypes as bY, QueryCredentialType as bZ, TxAuthInput as b_, GetTxAuthSigResponseTezos as ba, HostRequestMessage as bb, IdentityResponseMessage as bc, HostMessage as bd, IdentityMessage as be, RequiredDataRowSchema as bf, RequiredVerificationData as bg, MediaType as bh, MediaTypePID as bi, ZeroKnowledgeProofRequest as bj, AuthorizationRequestMessage as bk, ProofData as bl, ZeroKnowledgeProofResponse as bm, AuthorizationResponseMessage as bn, CredentialQrCodeData as bo, AuthQrCodeData as bp, QrCodeLinkWithSchemaType as bq, parseIden3Message as br, parseSessionIdFromUrl as bs, AllCredentialAttributes as bt, AllCredentialValues as bu, Operator as bv, ZKPOperator as bw, operatorDisplayMap as bx, ARRAY_OPERATORS as by, ArrayOperator as bz, NEXERA_EVM_CHAIN_NAMES_LIST as c, GetTxAuthDataSignatureResponse as c0, TezosTxAuthInput as c1, TezosTxSignatureResponse as c2, GetTezosTxAuthDataSignatureResponse as c3, ZKPRequest as c4, ZKPRequestFromZKVerifier as c5, OffChainZKP as c6, CreateAuthRequestProps as c7, CreateZKProofRequestProps as c8, AllScenarioExecutionAuthorizationData as c9, CredentialType as cA, VerifiableCredential as cB, CredentialMediaType as cC, ProjectAuthorizationData as ca, OnChainZKP as cb, OnChainZKPFromNexeraID as cc, OnChainZKPScenarioFromCms as cd, OnChainZKPPayload as ce, SCENARIO_AUTHORIZATION_STATUSES as cf, ScenarioAuthorizationStatus as cg, _toConsumableArray as ch, ID3CredentialSubjectSchema as ci, IDScanCredentialSubjectSchema as cj, IDScanPassportCredentialSubjectSchema as ck, IDScanSelfieCredentialSubjectSchema as cl, OLD_IDImageCredentialSubjectSchema as cm, OLD_IDInformationCredentialSubjectSchema as cn, OLD_ProofOfResidenceCredentialSubjectSchema as co, OLD_SelfieImageCredentialSubjectSchema as cp, OLD_AMLScreeningsResultsCredentialSubjectSchema as cq, IDInformationCredentialSubjectSchema as cr, IDImageCredentialSubjectSchema as cs, SelfieImageCredentialSubjectSchema as ct, ProofOfResidenceCredentialSubjectSchema as cu, GenericVerifiableCredentialSchema as cv, CredentialSchemas as cw, CredentialNames as cx, NexeraCredentialType as cy, getCredentialName as cz, NEXERA_CHAIN_VALUES as d, CHAINS_WITHOUT_DEDICATED_NODE_RPC as e, EvmChainId as f, PolygonNetworkNames as g, NEXERA_TEZOS_CHAIN_NAMES as h, NEXERA_TEZOS_CHAIN_NAMES_LIST as i, NEXERA_TEZOS_CHAIN_VALUES as j, ACTIVE_TEZOS_CHAIN_VALUES as k, isValidAddress as l, PrivateKey as m, AddressSchema as n, TxHash as o, EIP155Signature as p, AptosAddress as q, AptosSignature as r, shortAddress as s, StarknetSignature as t, PolkadotAddress as u, PolkadotSignature as v, CosmosAddress as w, CosmosSignature as x, TezosImplicitAddress as y, TezosContractAddress as z };
@@ -2550,6 +2550,26 @@ var GetTxAuthDataSignatureResponse = zod.z.object({
2550
2550
  errorMessage: zod.z.any().optional()
2551
2551
  });
2552
2552
 
2553
+ var TezosTxAuthInput = zod.z.object({
2554
+ chainID: TezosChainId,
2555
+ contractAddress: TezosContractAddress,
2556
+ functionName: TezosEntrypointName,
2557
+ args: zod.z.string(),
2558
+ userAddress: TezosImplicitAddress,
2559
+ blockExpiration: zod.z.number()["int"]().optional(),
2560
+ nonce: zod.z.number()["int"]().optional()
2561
+ });
2562
+ var TezosTxSignatureResponse = zod.z.object({
2563
+ signature: EdSignature,
2564
+ blockExpiration: zod.z.number()
2565
+ });
2566
+ var GetTezosTxAuthDataSignatureResponse = zod.z.object({
2567
+ signature: EdSignature.optional(),
2568
+ blockExpiration: zod.z.number().optional(),
2569
+ isAuthorized: zod.z["boolean"](),
2570
+ errorMessage: zod.z.any().optional()
2571
+ });
2572
+
2553
2573
  var SimplifiedCredential = zod.z.object({
2554
2574
  id: zod.z.string(),
2555
2575
  type: zod.z.array(zod.z.string()),
@@ -2659,8 +2679,26 @@ var GetTxAuthSigResponse = zod.z.object({
2659
2679
  signatureResponse: GetTxAuthDataSignatureResponse,
2660
2680
  identifier: zod.z.string()
2661
2681
  });
2662
- var HostRequestMessage = zod.z.union([GetCredentialsRequest, PolygonIdRequest, StartFlowRequest, IsVerifiedRequest, GetTxAuthSigRequest]);
2663
- var IdentityResponseMessage = zod.z.union([GetCredentialsResponse, PolygonIdResponse, IsVerifiedResponse, GetTxAuthSigResponse]);
2682
+ /**
2683
+ * GetTxAuthSigRequest Tezos
2684
+ */
2685
+ var GetTxAuthSigRequestTezos = zod.z.object({
2686
+ type: zod.z.literal("getTxAuthSigRequestTezos"),
2687
+ data: TezosTxAuthInput.omit({
2688
+ userAddress: true
2689
+ }),
2690
+ identifier: zod.z.string()
2691
+ });
2692
+ /**
2693
+ * GetTxAuthSigResponse Tezos
2694
+ */
2695
+ var GetTxAuthSigResponseTezos = zod.z.object({
2696
+ type: zod.z.literal("getTezosTxAuthSigResponse"),
2697
+ signatureResponse: GetTezosTxAuthDataSignatureResponse,
2698
+ identifier: zod.z.string()
2699
+ });
2700
+ var HostRequestMessage = zod.z.union([GetCredentialsRequest, PolygonIdRequest, StartFlowRequest, IsVerifiedRequest, GetTxAuthSigRequest, GetTxAuthSigRequestTezos]);
2701
+ var IdentityResponseMessage = zod.z.union([GetCredentialsResponse, PolygonIdResponse, IsVerifiedResponse, GetTxAuthSigResponse, GetTxAuthSigResponseTezos]);
2664
2702
 
2665
2703
  var ZKPRequest = zod.z.object({
2666
2704
  id: zod.z.number(),
@@ -2754,26 +2792,6 @@ var RequiredVerificationData = zod.z.object({
2754
2792
  })
2755
2793
  });
2756
2794
 
2757
- var TezosTxAuthInput = zod.z.object({
2758
- chainID: TezosChainId,
2759
- contractAddress: TezosContractAddress,
2760
- functionName: TezosEntrypointName,
2761
- args: zod.z.string(),
2762
- userAddress: TezosImplicitAddress,
2763
- blockExpiration: zod.z.number()["int"]().optional(),
2764
- nonce: zod.z.number()["int"]().optional()
2765
- });
2766
- var TezosTxSignatureResponse = zod.z.object({
2767
- signature: EdSignature,
2768
- blockExpiration: zod.z.number()
2769
- });
2770
- var GetTezosTxAuthDataSignatureResponse = zod.z.object({
2771
- signature: EdSignature.optional(),
2772
- blockExpiration: zod.z.number().optional(),
2773
- isAuthorized: zod.z["boolean"](),
2774
- errorMessage: zod.z.any().optional()
2775
- });
2776
-
2777
2795
  exports.ACTIVE_EVM_CHAIN_VALUES = ACTIVE_EVM_CHAIN_VALUES;
2778
2796
  exports.ACTIVE_TEZOS_CHAIN_VALUES = ACTIVE_TEZOS_CHAIN_VALUES;
2779
2797
  exports.ALPHA_2_COUNTRIES = ALPHA_2_COUNTRIES;
@@ -2845,7 +2863,9 @@ exports.GetCredentialsResponse = GetCredentialsResponse;
2845
2863
  exports.GetTezosTxAuthDataSignatureResponse = GetTezosTxAuthDataSignatureResponse;
2846
2864
  exports.GetTxAuthDataSignatureResponse = GetTxAuthDataSignatureResponse;
2847
2865
  exports.GetTxAuthSigRequest = GetTxAuthSigRequest;
2866
+ exports.GetTxAuthSigRequestTezos = GetTxAuthSigRequestTezos;
2848
2867
  exports.GetTxAuthSigResponse = GetTxAuthSigResponse;
2868
+ exports.GetTxAuthSigResponseTezos = GetTxAuthSigResponseTezos;
2849
2869
  exports.HostMessage = HostMessage;
2850
2870
  exports.HostRequestMessage = HostRequestMessage;
2851
2871
  exports.HostResponseMessage = HostResponseMessage;
@@ -2550,6 +2550,26 @@ var GetTxAuthDataSignatureResponse = zod.z.object({
2550
2550
  errorMessage: zod.z.any().optional()
2551
2551
  });
2552
2552
 
2553
+ var TezosTxAuthInput = zod.z.object({
2554
+ chainID: TezosChainId,
2555
+ contractAddress: TezosContractAddress,
2556
+ functionName: TezosEntrypointName,
2557
+ args: zod.z.string(),
2558
+ userAddress: TezosImplicitAddress,
2559
+ blockExpiration: zod.z.number()["int"]().optional(),
2560
+ nonce: zod.z.number()["int"]().optional()
2561
+ });
2562
+ var TezosTxSignatureResponse = zod.z.object({
2563
+ signature: EdSignature,
2564
+ blockExpiration: zod.z.number()
2565
+ });
2566
+ var GetTezosTxAuthDataSignatureResponse = zod.z.object({
2567
+ signature: EdSignature.optional(),
2568
+ blockExpiration: zod.z.number().optional(),
2569
+ isAuthorized: zod.z["boolean"](),
2570
+ errorMessage: zod.z.any().optional()
2571
+ });
2572
+
2553
2573
  var SimplifiedCredential = zod.z.object({
2554
2574
  id: zod.z.string(),
2555
2575
  type: zod.z.array(zod.z.string()),
@@ -2659,8 +2679,26 @@ var GetTxAuthSigResponse = zod.z.object({
2659
2679
  signatureResponse: GetTxAuthDataSignatureResponse,
2660
2680
  identifier: zod.z.string()
2661
2681
  });
2662
- var HostRequestMessage = zod.z.union([GetCredentialsRequest, PolygonIdRequest, StartFlowRequest, IsVerifiedRequest, GetTxAuthSigRequest]);
2663
- var IdentityResponseMessage = zod.z.union([GetCredentialsResponse, PolygonIdResponse, IsVerifiedResponse, GetTxAuthSigResponse]);
2682
+ /**
2683
+ * GetTxAuthSigRequest Tezos
2684
+ */
2685
+ var GetTxAuthSigRequestTezos = zod.z.object({
2686
+ type: zod.z.literal("getTxAuthSigRequestTezos"),
2687
+ data: TezosTxAuthInput.omit({
2688
+ userAddress: true
2689
+ }),
2690
+ identifier: zod.z.string()
2691
+ });
2692
+ /**
2693
+ * GetTxAuthSigResponse Tezos
2694
+ */
2695
+ var GetTxAuthSigResponseTezos = zod.z.object({
2696
+ type: zod.z.literal("getTezosTxAuthSigResponse"),
2697
+ signatureResponse: GetTezosTxAuthDataSignatureResponse,
2698
+ identifier: zod.z.string()
2699
+ });
2700
+ var HostRequestMessage = zod.z.union([GetCredentialsRequest, PolygonIdRequest, StartFlowRequest, IsVerifiedRequest, GetTxAuthSigRequest, GetTxAuthSigRequestTezos]);
2701
+ var IdentityResponseMessage = zod.z.union([GetCredentialsResponse, PolygonIdResponse, IsVerifiedResponse, GetTxAuthSigResponse, GetTxAuthSigResponseTezos]);
2664
2702
 
2665
2703
  var ZKPRequest = zod.z.object({
2666
2704
  id: zod.z.number(),
@@ -2754,26 +2792,6 @@ var RequiredVerificationData = zod.z.object({
2754
2792
  })
2755
2793
  });
2756
2794
 
2757
- var TezosTxAuthInput = zod.z.object({
2758
- chainID: TezosChainId,
2759
- contractAddress: TezosContractAddress,
2760
- functionName: TezosEntrypointName,
2761
- args: zod.z.string(),
2762
- userAddress: TezosImplicitAddress,
2763
- blockExpiration: zod.z.number()["int"]().optional(),
2764
- nonce: zod.z.number()["int"]().optional()
2765
- });
2766
- var TezosTxSignatureResponse = zod.z.object({
2767
- signature: EdSignature,
2768
- blockExpiration: zod.z.number()
2769
- });
2770
- var GetTezosTxAuthDataSignatureResponse = zod.z.object({
2771
- signature: EdSignature.optional(),
2772
- blockExpiration: zod.z.number().optional(),
2773
- isAuthorized: zod.z["boolean"](),
2774
- errorMessage: zod.z.any().optional()
2775
- });
2776
-
2777
2795
  exports.ACTIVE_EVM_CHAIN_VALUES = ACTIVE_EVM_CHAIN_VALUES;
2778
2796
  exports.ACTIVE_TEZOS_CHAIN_VALUES = ACTIVE_TEZOS_CHAIN_VALUES;
2779
2797
  exports.ALPHA_2_COUNTRIES = ALPHA_2_COUNTRIES;
@@ -2845,7 +2863,9 @@ exports.GetCredentialsResponse = GetCredentialsResponse;
2845
2863
  exports.GetTezosTxAuthDataSignatureResponse = GetTezosTxAuthDataSignatureResponse;
2846
2864
  exports.GetTxAuthDataSignatureResponse = GetTxAuthDataSignatureResponse;
2847
2865
  exports.GetTxAuthSigRequest = GetTxAuthSigRequest;
2866
+ exports.GetTxAuthSigRequestTezos = GetTxAuthSigRequestTezos;
2848
2867
  exports.GetTxAuthSigResponse = GetTxAuthSigResponse;
2868
+ exports.GetTxAuthSigResponseTezos = GetTxAuthSigResponseTezos;
2849
2869
  exports.HostMessage = HostMessage;
2850
2870
  exports.HostRequestMessage = HostRequestMessage;
2851
2871
  exports.HostResponseMessage = HostResponseMessage;