@nexeraid/identity-schemas 2.11.0-dev → 2.12.0-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{customers.schema-bc9ea241.esm.js → customers.schema-c77f9377.esm.js} +3 -3
- package/dist/{customers.schema-a23a7d7d.cjs.dev.js → customers.schema-cd456746.cjs.dev.js} +3 -3
- package/dist/{customers.schema-f2cbacca.cjs.prod.js → customers.schema-febb8ae2.cjs.prod.js} +3 -3
- package/dist/declarations/src/blockchain.schema.d.ts +5 -5
- package/dist/declarations/src/blockchain.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/host-requests.schema.d.ts +12 -12
- package/dist/declarations/src/identity/identity-v2.schema.d.ts +26 -26
- package/dist/declarations/src/identity/kyc.schema.d.ts +6 -6
- package/dist/declarations/src/identity/txAuthData.schema.d.ts +142 -16
- package/dist/declarations/src/identity/txAuthData.schema.d.ts.map +1 -1
- package/dist/{frontend-utilities.schema-5587da47.esm.js → frontend-utilities.schema-31d5bec4.esm.js} +1 -1
- package/dist/{frontend-utilities.schema-1a37ad51.cjs.prod.js → frontend-utilities.schema-46767d1d.cjs.prod.js} +1 -1
- package/dist/{frontend-utilities.schema-b01c1889.cjs.dev.js → frontend-utilities.schema-7f7addfe.cjs.dev.js} +1 -1
- package/dist/{identity-api.schema-ee362a66.esm.js → identity-api.schema-2f759865.esm.js} +9 -13
- package/dist/{identity-api.schema-2fb2ff78.cjs.prod.js → identity-api.schema-d736140e.cjs.dev.js} +9 -12
- package/dist/{identity-api.schema-841bc821.cjs.dev.js → identity-api.schema-f3ba0b71.cjs.prod.js} +9 -12
- package/dist/nexeraid-identity-schemas.cjs.dev.js +4 -3
- package/dist/nexeraid-identity-schemas.cjs.prod.js +4 -3
- package/dist/nexeraid-identity-schemas.esm.js +4 -4
- package/dist/package.json +1 -1
- package/dist/{transaction.schema-62a16b38.esm.js → transaction.schema-0393003a.esm.js} +1 -1
- package/dist/{transaction.schema-fda3d623.cjs.dev.js → transaction.schema-578785c4.cjs.dev.js} +1 -1
- package/dist/{transaction.schema-2f3eb4e6.cjs.prod.js → transaction.schema-b2ad8256.cjs.prod.js} +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +2 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +2 -1
- package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +3 -3
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +3 -3
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const TxAuthInput: z.ZodObject<{
|
|
3
|
-
chainId: z.
|
|
3
|
+
chainId: 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.SWISSTRONIK_TESTNET]>;
|
|
4
4
|
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
5
5
|
contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
6
6
|
functionName: z.ZodString;
|
|
@@ -19,17 +19,17 @@ export declare const TxAuthInput: z.ZodObject<{
|
|
|
19
19
|
nonce?: number | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
userAddress: string;
|
|
22
|
+
chainId: 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 | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
|
|
22
23
|
contractAbi: Record<string, unknown>[];
|
|
23
24
|
contractAddress: string;
|
|
24
25
|
functionName: string;
|
|
25
26
|
args: unknown[];
|
|
26
|
-
chainId?: unknown;
|
|
27
27
|
blockExpiration?: number | undefined;
|
|
28
28
|
nonce?: number | undefined;
|
|
29
29
|
}>;
|
|
30
30
|
export type TxAuthInput = z.infer<typeof TxAuthInput>;
|
|
31
31
|
export declare const ApiTxAuthInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
32
|
-
chainId: z.
|
|
32
|
+
chainId: 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.SWISSTRONIK_TESTNET]>;
|
|
33
33
|
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
34
34
|
contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
35
35
|
functionName: z.ZodString;
|
|
@@ -49,12 +49,12 @@ export declare const ApiTxAuthInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
49
49
|
blockExpiration?: number | undefined;
|
|
50
50
|
nonce?: number | undefined;
|
|
51
51
|
}, {
|
|
52
|
+
chainId: 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 | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
|
|
52
53
|
contractAbi: Record<string, unknown>[];
|
|
53
54
|
contractAddress: string;
|
|
54
55
|
functionName: string;
|
|
55
56
|
args: unknown[];
|
|
56
57
|
userAddress?: string | undefined;
|
|
57
|
-
chainId?: unknown;
|
|
58
58
|
blockExpiration?: number | undefined;
|
|
59
59
|
nonce?: number | undefined;
|
|
60
60
|
}>;
|
|
@@ -97,7 +97,7 @@ export declare const GetTxAuthDataSignatureResponse: z.ZodUnion<[z.ZodObject<{
|
|
|
97
97
|
}>]>;
|
|
98
98
|
export type GetTxAuthDataSignatureResponse = z.infer<typeof GetTxAuthDataSignatureResponse>;
|
|
99
99
|
export declare const TezosTxAuthInput: z.ZodObject<{
|
|
100
|
-
chainID: z.
|
|
100
|
+
chainID: z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>;
|
|
101
101
|
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
|
|
102
102
|
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
|
|
103
103
|
args: z.ZodString;
|
|
@@ -117,13 +117,13 @@ export declare const TezosTxAuthInput: z.ZodObject<{
|
|
|
117
117
|
contractAddress: string;
|
|
118
118
|
functionName: string;
|
|
119
119
|
args: string;
|
|
120
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
120
121
|
blockExpiration?: number | undefined;
|
|
121
122
|
nonce?: number | undefined;
|
|
122
|
-
chainID?: unknown;
|
|
123
123
|
}>;
|
|
124
124
|
export type TezosTxAuthInput = z.infer<typeof TezosTxAuthInput>;
|
|
125
125
|
export declare const ApiTezosTxAuthInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
126
|
-
chainID: z.
|
|
126
|
+
chainID: z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>;
|
|
127
127
|
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
|
|
128
128
|
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
|
|
129
129
|
args: z.ZodString;
|
|
@@ -144,10 +144,10 @@ export declare const ApiTezosTxAuthInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
144
144
|
contractAddress: string;
|
|
145
145
|
functionName: string;
|
|
146
146
|
args: string;
|
|
147
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
147
148
|
userAddress?: string | undefined;
|
|
148
149
|
blockExpiration?: number | undefined;
|
|
149
150
|
nonce?: number | undefined;
|
|
150
|
-
chainID?: unknown;
|
|
151
151
|
}>;
|
|
152
152
|
export type ApiTezosTxAuthInput = z.infer<typeof ApiTezosTxAuthInput>;
|
|
153
153
|
export declare const TezosTxSignatureResponse: z.ZodObject<{
|
|
@@ -185,7 +185,7 @@ export declare const GetTezosTxAuthDataSignatureResponse: z.ZodUnion<[z.ZodObjec
|
|
|
185
185
|
}>]>;
|
|
186
186
|
export type GetTezosTxAuthDataSignatureResponse = z.infer<typeof GetTezosTxAuthDataSignatureResponse>;
|
|
187
187
|
export declare const ExtendedTxAuthInput: z.ZodIntersection<z.ZodObject<{
|
|
188
|
-
chainId: z.
|
|
188
|
+
chainId: 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.SWISSTRONIK_TESTNET]>;
|
|
189
189
|
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
190
190
|
contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
191
191
|
functionName: z.ZodString;
|
|
@@ -204,11 +204,11 @@ export declare const ExtendedTxAuthInput: z.ZodIntersection<z.ZodObject<{
|
|
|
204
204
|
nonce?: number | undefined;
|
|
205
205
|
}, {
|
|
206
206
|
userAddress: string;
|
|
207
|
+
chainId: 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 | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
|
|
207
208
|
contractAbi: Record<string, unknown>[];
|
|
208
209
|
contractAddress: string;
|
|
209
210
|
functionName: string;
|
|
210
211
|
args: unknown[];
|
|
211
|
-
chainId?: unknown;
|
|
212
212
|
blockExpiration?: number | undefined;
|
|
213
213
|
nonce?: number | undefined;
|
|
214
214
|
}>, z.ZodObject<{
|
|
@@ -223,7 +223,7 @@ export declare const ExtendedTxAuthInput: z.ZodIntersection<z.ZodObject<{
|
|
|
223
223
|
}>>;
|
|
224
224
|
export type ExtendedTxAuthInput = z.infer<typeof ExtendedTxAuthInput>;
|
|
225
225
|
export declare const ExtendedTezosTxAuthInput: z.ZodIntersection<z.ZodObject<{
|
|
226
|
-
chainID: z.
|
|
226
|
+
chainID: z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>;
|
|
227
227
|
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
|
|
228
228
|
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
|
|
229
229
|
args: z.ZodString;
|
|
@@ -243,9 +243,9 @@ export declare const ExtendedTezosTxAuthInput: z.ZodIntersection<z.ZodObject<{
|
|
|
243
243
|
contractAddress: string;
|
|
244
244
|
functionName: string;
|
|
245
245
|
args: string;
|
|
246
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
246
247
|
blockExpiration?: number | undefined;
|
|
247
248
|
nonce?: number | undefined;
|
|
248
|
-
chainID?: unknown;
|
|
249
249
|
}>, z.ZodObject<{
|
|
250
250
|
namespace: z.ZodLiteral<"tezos">;
|
|
251
251
|
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
|
|
@@ -258,7 +258,7 @@ export declare const ExtendedTezosTxAuthInput: z.ZodIntersection<z.ZodObject<{
|
|
|
258
258
|
}>>;
|
|
259
259
|
export type ExtendedTezosTxAuthInput = z.infer<typeof ExtendedTezosTxAuthInput>;
|
|
260
260
|
export declare const AnyTxAuthInput: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
|
|
261
|
-
chainId: z.
|
|
261
|
+
chainId: 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.SWISSTRONIK_TESTNET]>;
|
|
262
262
|
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
263
263
|
contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
264
264
|
functionName: z.ZodString;
|
|
@@ -277,11 +277,11 @@ export declare const AnyTxAuthInput: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
|
|
|
277
277
|
nonce?: number | undefined;
|
|
278
278
|
}, {
|
|
279
279
|
userAddress: string;
|
|
280
|
+
chainId: 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 | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
|
|
280
281
|
contractAbi: Record<string, unknown>[];
|
|
281
282
|
contractAddress: string;
|
|
282
283
|
functionName: string;
|
|
283
284
|
args: unknown[];
|
|
284
|
-
chainId?: unknown;
|
|
285
285
|
blockExpiration?: number | undefined;
|
|
286
286
|
nonce?: number | undefined;
|
|
287
287
|
}>, z.ZodObject<{
|
|
@@ -294,7 +294,7 @@ export declare const AnyTxAuthInput: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
|
|
|
294
294
|
namespace: "eip155";
|
|
295
295
|
userAddress: string;
|
|
296
296
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
297
|
-
chainID: z.
|
|
297
|
+
chainID: z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>;
|
|
298
298
|
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
|
|
299
299
|
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
|
|
300
300
|
args: z.ZodString;
|
|
@@ -314,9 +314,9 @@ export declare const AnyTxAuthInput: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
|
|
|
314
314
|
contractAddress: string;
|
|
315
315
|
functionName: string;
|
|
316
316
|
args: string;
|
|
317
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
317
318
|
blockExpiration?: number | undefined;
|
|
318
319
|
nonce?: number | undefined;
|
|
319
|
-
chainID?: unknown;
|
|
320
320
|
}>, z.ZodObject<{
|
|
321
321
|
namespace: z.ZodLiteral<"tezos">;
|
|
322
322
|
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
|
|
@@ -328,6 +328,132 @@ export declare const AnyTxAuthInput: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
|
|
|
328
328
|
userAddress: string;
|
|
329
329
|
}>>]>;
|
|
330
330
|
export type AnyTxAuthInput = z.infer<typeof AnyTxAuthInput>;
|
|
331
|
+
export declare const AnyTxAuthInputJsSdk: z.ZodObject<{
|
|
332
|
+
workflowId: z.ZodString;
|
|
333
|
+
txAuthInput: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
|
|
334
|
+
chainId: 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.SWISSTRONIK_TESTNET]>;
|
|
335
|
+
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
336
|
+
contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
337
|
+
functionName: z.ZodString;
|
|
338
|
+
args: z.ZodArray<z.ZodUnknown, "many">;
|
|
339
|
+
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
340
|
+
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
341
|
+
nonce: z.ZodOptional<z.ZodNumber>;
|
|
342
|
+
}, "strip", z.ZodTypeAny, {
|
|
343
|
+
userAddress: `0x${string}`;
|
|
344
|
+
chainId: 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 | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
|
|
345
|
+
contractAbi: Record<string, unknown>[];
|
|
346
|
+
contractAddress: `0x${string}`;
|
|
347
|
+
functionName: string;
|
|
348
|
+
args: unknown[];
|
|
349
|
+
blockExpiration?: number | undefined;
|
|
350
|
+
nonce?: number | undefined;
|
|
351
|
+
}, {
|
|
352
|
+
userAddress: string;
|
|
353
|
+
chainId: 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 | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
|
|
354
|
+
contractAbi: Record<string, unknown>[];
|
|
355
|
+
contractAddress: string;
|
|
356
|
+
functionName: string;
|
|
357
|
+
args: unknown[];
|
|
358
|
+
blockExpiration?: number | undefined;
|
|
359
|
+
nonce?: number | undefined;
|
|
360
|
+
}>, z.ZodObject<{
|
|
361
|
+
namespace: z.ZodLiteral<"eip155">;
|
|
362
|
+
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
363
|
+
}, "strip", z.ZodTypeAny, {
|
|
364
|
+
namespace: "eip155";
|
|
365
|
+
userAddress: `0x${string}`;
|
|
366
|
+
}, {
|
|
367
|
+
namespace: "eip155";
|
|
368
|
+
userAddress: string;
|
|
369
|
+
}>>, z.ZodIntersection<z.ZodObject<{
|
|
370
|
+
chainID: z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>;
|
|
371
|
+
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
|
|
372
|
+
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
|
|
373
|
+
args: z.ZodString;
|
|
374
|
+
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
|
|
375
|
+
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
376
|
+
nonce: z.ZodOptional<z.ZodNumber>;
|
|
377
|
+
}, "strip", z.ZodTypeAny, {
|
|
378
|
+
userAddress: `tz${string}`;
|
|
379
|
+
contractAddress: `KT1${string}`;
|
|
380
|
+
functionName: `%${string}`;
|
|
381
|
+
args: string;
|
|
382
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
383
|
+
blockExpiration?: number | undefined;
|
|
384
|
+
nonce?: number | undefined;
|
|
385
|
+
}, {
|
|
386
|
+
userAddress: string;
|
|
387
|
+
contractAddress: string;
|
|
388
|
+
functionName: string;
|
|
389
|
+
args: string;
|
|
390
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
391
|
+
blockExpiration?: number | undefined;
|
|
392
|
+
nonce?: number | undefined;
|
|
393
|
+
}>, z.ZodObject<{
|
|
394
|
+
namespace: z.ZodLiteral<"tezos">;
|
|
395
|
+
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
|
|
396
|
+
}, "strip", z.ZodTypeAny, {
|
|
397
|
+
namespace: "tezos";
|
|
398
|
+
userAddress: `tz${string}`;
|
|
399
|
+
}, {
|
|
400
|
+
namespace: "tezos";
|
|
401
|
+
userAddress: string;
|
|
402
|
+
}>>]>;
|
|
403
|
+
}, "strip", z.ZodTypeAny, {
|
|
404
|
+
workflowId: string;
|
|
405
|
+
txAuthInput: ({
|
|
406
|
+
userAddress: `0x${string}`;
|
|
407
|
+
chainId: 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 | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
|
|
408
|
+
contractAbi: Record<string, unknown>[];
|
|
409
|
+
contractAddress: `0x${string}`;
|
|
410
|
+
functionName: string;
|
|
411
|
+
args: unknown[];
|
|
412
|
+
blockExpiration?: number | undefined;
|
|
413
|
+
nonce?: number | undefined;
|
|
414
|
+
} & {
|
|
415
|
+
namespace: "eip155";
|
|
416
|
+
userAddress: `0x${string}`;
|
|
417
|
+
}) | ({
|
|
418
|
+
userAddress: `tz${string}`;
|
|
419
|
+
contractAddress: `KT1${string}`;
|
|
420
|
+
functionName: `%${string}`;
|
|
421
|
+
args: string;
|
|
422
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
423
|
+
blockExpiration?: number | undefined;
|
|
424
|
+
nonce?: number | undefined;
|
|
425
|
+
} & {
|
|
426
|
+
namespace: "tezos";
|
|
427
|
+
userAddress: `tz${string}`;
|
|
428
|
+
});
|
|
429
|
+
}, {
|
|
430
|
+
workflowId: string;
|
|
431
|
+
txAuthInput: ({
|
|
432
|
+
userAddress: string;
|
|
433
|
+
chainId: 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 | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
|
|
434
|
+
contractAbi: Record<string, unknown>[];
|
|
435
|
+
contractAddress: string;
|
|
436
|
+
functionName: string;
|
|
437
|
+
args: unknown[];
|
|
438
|
+
blockExpiration?: number | undefined;
|
|
439
|
+
nonce?: number | undefined;
|
|
440
|
+
} & {
|
|
441
|
+
namespace: "eip155";
|
|
442
|
+
userAddress: string;
|
|
443
|
+
}) | ({
|
|
444
|
+
userAddress: string;
|
|
445
|
+
contractAddress: string;
|
|
446
|
+
functionName: string;
|
|
447
|
+
args: string;
|
|
448
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
449
|
+
blockExpiration?: number | undefined;
|
|
450
|
+
nonce?: number | undefined;
|
|
451
|
+
} & {
|
|
452
|
+
namespace: "tezos";
|
|
453
|
+
userAddress: string;
|
|
454
|
+
});
|
|
455
|
+
}>;
|
|
456
|
+
export type AnyTxAuthInputJsSdk = z.infer<typeof AnyTxAuthInputJsSdk>;
|
|
331
457
|
export declare const ExtendedTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
332
458
|
isAuthorized: z.ZodLiteral<true>;
|
|
333
459
|
signature: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -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,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,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,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;EAE9B,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,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,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAM7C,CAAC;AACJ,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,KAAK,CACvD,OAAO,mCAAmC,CAC3C,CAAC;AAEF,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAMlD,CAAC;AACJ,MAAM,MAAM,wCAAwC,GAAG,CAAC,CAAC,KAAK,CAC5D,OAAO,wCAAwC,CAChD,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,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,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,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,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;EAE9B,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,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,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG9B,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAM7C,CAAC;AACJ,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,KAAK,CACvD,OAAO,mCAAmC,CAC3C,CAAC;AAEF,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAMlD,CAAC;AACJ,MAAM,MAAM,wCAAwC,GAAG,CAAC,CAAC,KAAK,CAC5D,OAAO,wCAAwC,CAChD,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC"}
|
package/dist/{frontend-utilities.schema-5587da47.esm.js → frontend-utilities.schema-31d5bec4.esm.js}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { dk as SupportedType,
|
|
1
|
+
import { dk as SupportedType, eN as _toConsumableArray, d9 as ARRAY_OPERATORS, df as BOOLEAN_OPERATORS, dd as NUMERIC_OPERATORS, db as STRING_OPERATORS } from './identity-api.schema-2f759865.esm.js';
|
|
2
2
|
|
|
3
3
|
var VC_JSON_SCHEMA_MAP = {
|
|
4
4
|
ProofOfResidence: {
|
|
@@ -76,9 +76,7 @@ var EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC = [NEXERA_EVM_CHAINS.MOONBEAM, NEXERA_
|
|
|
76
76
|
var ACTIVE_EVM_CHAIN_VALUES = [NEXERA_EVM_CHAINS.ETHEREUM, NEXERA_EVM_CHAINS.POLYGON, NEXERA_EVM_CHAINS.POLYGON_AMOY, NEXERA_EVM_CHAINS.AVALANCHE, NEXERA_EVM_CHAINS.AVALANCHE_FUJI, NEXERA_EVM_CHAINS.ARBITRUM, NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, NEXERA_EVM_CHAINS.SEPOLIA, NEXERA_EVM_CHAINS.BASE, NEXERA_EVM_CHAINS.BASE_SEPOLIA, NEXERA_EVM_CHAINS.BNB,
|
|
77
77
|
// for Bsc
|
|
78
78
|
NEXERA_EVM_CHAINS.BNB_TESTNET, NEXERA_EVM_CHAINS.MOONBEAM, NEXERA_EVM_CHAINS.MOONRIVER, NEXERA_EVM_CHAINS.OPTIMISM, NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA, NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET];
|
|
79
|
-
var EvmChainId = z.
|
|
80
|
-
return String(val);
|
|
81
|
-
}, z["enum"](ACTIVE_EVM_CHAIN_VALUES).describe("a numeric value that identifies the chain of the address. There are many sites that retrieve information on chainIDs such as <a href='https://chainlist.org/'>https://chainlist.org</a>."));
|
|
79
|
+
var EvmChainId = z["enum"](ACTIVE_EVM_CHAIN_VALUES).describe("a numeric value that identifies the chain of the address. There are many sites that retrieve information on chainIDs such as <a href='https://chainlist.org/'>https://chainlist.org</a>.");
|
|
82
80
|
/////////////////////////////////////////
|
|
83
81
|
// Polygon //
|
|
84
82
|
/////////////////////////////////////////
|
|
@@ -93,9 +91,7 @@ var NEXERA_TEZOS_CHAIN_NAMES = _defineProperty(_defineProperty({}, NEXERA_TEZOS_
|
|
|
93
91
|
var NEXERA_TEZOS_CHAIN_NAMES_LIST = Object.values(NEXERA_TEZOS_CHAIN_NAMES);
|
|
94
92
|
var NEXERA_TEZOS_CHAIN_VALUES = _defineProperty(_defineProperty({}, NEXERA_TEZOS_CHAINS.TEZOS, "NetXdQprcVkpaWU"), NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET, "NetXnHfVqm9iesp");
|
|
95
93
|
var ACTIVE_TEZOS_CHAIN_VALUES = [NEXERA_TEZOS_CHAINS.TEZOS, NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET];
|
|
96
|
-
var TezosChainId = z.
|
|
97
|
-
return String(val);
|
|
98
|
-
}, z["enum"](ACTIVE_TEZOS_CHAIN_VALUES).describe("a numeric value that identifies the chain of the address. There are many sites that retrieve information on chainIDs such as <a href='https://chainlist.org/'>https://chainlist.org</a>."));
|
|
94
|
+
var TezosChainId = z["enum"](ACTIVE_TEZOS_CHAIN_VALUES).describe("a numeric value that identifies the chain of the address. There are many sites that retrieve information on chainIDs such as <a href='https://chainlist.org/'>https://chainlist.org</a>.");
|
|
99
95
|
/////////////////////////////////////////
|
|
100
96
|
// COSMOS //
|
|
101
97
|
/////////////////////////////////////////
|
|
@@ -104,9 +100,7 @@ var COSMOS_CHAIN_NAMES = _defineProperty(_defineProperty({}, NEXERA_COSMOS_CHAIN
|
|
|
104
100
|
var COSMOS_CHAIN_NAMES_LIST = Object.values(COSMOS_CHAIN_NAMES);
|
|
105
101
|
var COSMOS_CHAIN_VALUES = _defineProperty(_defineProperty({}, NEXERA_COSMOS_CHAINS.COSMOS, "cosmoshub-4"), NEXERA_COSMOS_CHAINS.COSMOS_TESTNET, "theta-testnet-001");
|
|
106
102
|
var ACTIVE_COSMOS_CHAIN_VALUES = [NEXERA_COSMOS_CHAINS.COSMOS, NEXERA_COSMOS_CHAINS.COSMOS_TESTNET];
|
|
107
|
-
var CosmosChainId = z.
|
|
108
|
-
return String(val);
|
|
109
|
-
}, z["enum"](ACTIVE_COSMOS_CHAIN_VALUES).describe("a value that identifies the chain of the address."));
|
|
103
|
+
var CosmosChainId = z["enum"](ACTIVE_COSMOS_CHAIN_VALUES).describe("a value that identifies the chain of the address.");
|
|
110
104
|
/////////////////////////////////////////
|
|
111
105
|
// STARKNET //
|
|
112
106
|
/////////////////////////////////////////
|
|
@@ -120,9 +114,7 @@ var NEXERA_STARKNET_CHAIN_VALUES = {
|
|
|
120
114
|
STARKNET_SEPOLIA: "0x534e5f5345504f4c4941"
|
|
121
115
|
};
|
|
122
116
|
var NEXERA_ACTIVE_STARKNET_CHAIN_VALUES = [NEXERA_STARKNET_CHAIN_VALUES.STARKNET_MAIN, NEXERA_STARKNET_CHAIN_VALUES.STARKNET_SEPOLIA];
|
|
123
|
-
var StarknetChainId = z.
|
|
124
|
-
return String(val);
|
|
125
|
-
}, z["enum"](NEXERA_ACTIVE_STARKNET_CHAIN_VALUES).describe("a value that identifies the chain of the address."));
|
|
117
|
+
var StarknetChainId = z["enum"](NEXERA_ACTIVE_STARKNET_CHAIN_VALUES).describe("a value that identifies the chain of the address.");
|
|
126
118
|
/////////////////////////////////////////
|
|
127
119
|
// MERGED //
|
|
128
120
|
/////////////////////////////////////////
|
|
@@ -2881,6 +2873,10 @@ var ExtendedTezosTxAuthInput = TezosTxAuthInput.and(z.object({
|
|
|
2881
2873
|
userAddress: TezosImplicitAddress
|
|
2882
2874
|
}));
|
|
2883
2875
|
var AnyTxAuthInput = z.union([ExtendedTxAuthInput, ExtendedTezosTxAuthInput]);
|
|
2876
|
+
var AnyTxAuthInputJsSdk = z.object({
|
|
2877
|
+
workflowId: z.string().uuid(),
|
|
2878
|
+
txAuthInput: AnyTxAuthInput
|
|
2879
|
+
});
|
|
2884
2880
|
var ExtendedTxAuthDataSignatureResponse = GetTxAuthDataSignatureResponse.and(z.object({
|
|
2885
2881
|
namespace: z.literal(BlockchainNamespace.Enum.eip155),
|
|
2886
2882
|
userAddress: AddressSchema
|
|
@@ -3320,4 +3316,4 @@ var VerifyWalletChallengeRequest = WalletSignatureResponse.and(z.object({
|
|
|
3320
3316
|
blockchainId: BlockchainId.optional()
|
|
3321
3317
|
}));
|
|
3322
3318
|
|
|
3323
|
-
export { SpSignature as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, PublicKey as D, EVM_BLOCK_TIME as E, AddressSchema as F, TxHash as G, EIP155Signature as H, FunctionCallData as I, shortAddress as J, AptosAddress as K, AptosSignature as L, StarknetAddress as M, NEXERA_EVM_CHAINS as N, StarknetSignature as O, POLYGON_NETWORK_NAMES as P, PolkadotAddress as Q, PolkadotSignature as R, StarknetChainId as S, TezosChainId as T, CosmosAddress as U, CosmosSignature as V, TezosImplicitAddress as W, TezosContractAddress as X, TezosAddress as Y, TezosEntrypointName as Z, EdSignature as _, NEXERA_EVM_CHAINS_ID as a, TransactionMethodsPrefix as a$, P2Signature as a0, TezosSignature as a1, CardanoAddress as a2, CardanoSignature as a3, BlockchainAddress as a4, BlockchainSignature as a5, BLOCKCHAIN_NAMESPACES as a6, BlockchainNamespace as a7, BLOCKCHAIN_NAMESPACES_NAMES as a8, DISPLAYED_LOCKCHAIN_NAMESPACES as a9, CustomerOnboardingLevels as aA, CustomerOnboardingLevel as aB, CustomerStatuses as aC, CustomerStatus as aD, BasicCustomerContactInformation as aE, CUSTOMERS_CHARTS as aF, CustomersChartType as aG, CUSTOMER_TABLE_COLUMNS as aH, CustomerTableColumn as aI, CUSTOMER_AUTOMATION_REASONS as aJ, StoragePrefix as aK, IdentityPrefix as aL, EmailPrefix as aM, WalletPrefix as aN, AppPrefix as aO, ChallengePrefix as aP, TestPrefix as aQ, CustomerScreeningPrefix as aR, TagPrefix as aS, TagsToTransactionReviewsPrefix as aT, TransactionAddressesPrefix as aU, TransactionPrefix as aV, TransactionFeesPrefix as aW, TransactionReviewPrefix as aX, TransactionPartiesPrefix as aY, TransactionInfosPrefix as aZ, TransactionExtractedInfosPrefix as a_, DisplayedBlockchainNamespace as aa, BLOCKCHAIN_NAME_TO_NAMESPACE as ab, BLOCKCHAIN_NAMESPACE_TO_NAME as ac, ENVS as ad, EnvironmentSchema as ae, UuidString as af, OtpCode as ag, ZodParse as ah, shortBlockchainAddress as ai, PUBLIC_SERVICES_SCHEMA_MAP as aj, IpAddress as ak, ISO3CountryCode as al, ALPHA_2_COUNTRIES as am, Alpha2Country as an, countryISO3toISO2Mapping as ao, countryISO2toISO3Mapping as ap, isoCountriesNameFromISO2 as aq, parseISO3CountryCode as ar, RiskScoreTypes as as, RiskScoreType as at, CustomerTypes as au, CustomerType as av, KycOnboardingLevels as aw, KycOnboardingLevel as ax, KybOnboardingLevels as ay, KybOnboardingLevel as az, NexeraEvmChains as b, ScenarioType as b$, TransactionMethodExtractedInfosPrefix as b0, InstitutionPrefix as b1, InstitutionExtractedInfosPrefix as b2, ScenarioPrefix as b3, ListPrefix as b4, QueryPrefix as b5, ActionPrefix as b6, createBrandedSchemaId as b7, StorageId as b8, IdentityId as b9, SdkVerificationResponseSchema as bA, CloseScreenNotification as bB, KycCompletionData as bC, KycCompletionNotification as bD, RuleEngineScenarioExecutionData as bE, OffChainScenarioExecutionData as bF, OnChainScenarioExecutionData as bG, ScenarioExecutionData as bH, ScenarioExecutionNotification as bI, IsVerifiedNotification as bJ, PolygonIdInitialized as bK, OcvSdkInitialized as bL, StartCompletedNotification as bM, IdentityNotificationMessage as bN, InitialDataRequest as bO, SignatureRequest as bP, TransactionData as bQ, SendTransactionRequest as bR, IdentityRequestMessage as bS, AVAILABLE_FLOWS as bT, AvailableFlow as bU, DataAvailableOnStart as bV, InitialDataResponse as bW, SignatureResponse as bX, TransactionResponse as bY, HostResponseMessage as bZ, ScenarioTypes as b_, EmailId as ba, WalletId as bb, AppId as bc, ChallengeId as bd, TestId as be, CustomerScreeningId as bf, TagId as bg, ActionId as bh, TagsToTransactionReviewsId as bi, TransactionAddressesId as bj, TransactionId as bk, TransactionFeesId as bl, TransactionReviewId as bm, TransactionPartiesId as bn, TransactionInfosId as bo, TransactionExtractedInfosId as bp, TransactionMethodsId as bq, TransactionMethodExtractedInfosId as br, InstitutionId as bs, InstitutionExtractedInfosId as bt, ScenarioId as bu, ListId as bv, QueryId as bw, generateId as bx, MemberId as by, ScenarioAuthorizationData as bz, NEXERA_TEZOS_CHAINS as c, AuthQrCodeData as c$, BaseQueryResponse as c0, OffChainZKPRuleResult as c1, ExecuteQueryResponse as c2, RuleEngineResponse as c3, ScenarioExecutionResponse as c4, RuleResultStatuses as c5, RuleResultStatus as c6, RuleResultStatusLabels as c7, SdkVerificationOutput as c8, VerificationSessionStatuses as c9, ChallengeResponse as cA, WalletSignResponse as cB, TxAuthDataSignatureGatingRequest as cC, GetCustomerStatusRequest as cD, IdentitySdkMessage as cE, IdentitySdkMessageWithIdentifier as cF, TxAuthDataSignatureResponse as cG, GetCustomerStatusResponse as cH, IdentityAppMessage as cI, IdentityWallet as cJ, HostMessage as cK, IdentityMessage as cL, RequiredDataRowSchema as cM, RequiredVerificationData as cN, MediaType as cO, MediaTypePID as cP, CIRCUIT_IDS as cQ, CircuitId as cR, ZeroKnowledgeProofRequest as cS, AUTHORIZATION_REQUEST_MESSAGE_TYPES as cT, AuthorizationRequestMessageTypes as cU, AuthorizationRequestMessageType as cV, AuthorizationRequestMessage as cW, ProofData as cX, ZeroKnowledgeProofResponse as cY, AuthorizationResponseMessage as cZ, CredentialQrCodeData as c_, VerificationSessionStatus as ca, VerificationOutput as cb, Scenario as cc, AbbreviatedWorkflowScenario as cd, TemplateScenario as ce, CreateTemplateScenario as cf, ComplianceImplementationStepsInput as cg, SimplifiedCredential as ch, GetCredentialsRequest as ci, GetCredentialsResponse as cj, PolygonIdRequestData as ck, PolygonIdRequest as cl, PolygonIdResponseData as cm, PolygonIdResponse as cn, StartFlowRequest as co, IsVerifiedRequest as cp, IsVerifiedResponse as cq, GetTxAuthSigRequest as cr, GetTxAuthSigResponse as cs, GetTxAuthSigRequestTezos as ct, GetTxAuthSigResponseTezos as cu, HostRequestMessage as cv, IdentityResponseMessage as cw, GenerateWalletChallengeRequest as cx, AuthSession as cy, AuthSessionData as cz, NEXERA_COSMOS_CHAINS as d, AllScenarioExecutionAuthorizationData as d$, QrCodeLinkWithSchemaType as d0, parseIden3Message as d1, parseSessionIdFromUrl as d2, AllCredentialAttributes as d3, AllCredentialValues as d4, OPERATORS as d5, Operator as d6, ZKPOperator as d7, operatorDisplayMap as d8, ARRAY_OPERATORS as d9, DeleteQueryConfigurationResponse as dA, QueryCredentialTypes as dB, QueryCredentialType as dC, ChallengeQuerySchema as dD, CHALLENGE_QUERY_OPERATORS as dE, ChallengeQueryOperator as dF, OperatorMappings as dG, OperatorToChallengeQueryOperator as dH, ChallengeQueryOperatorToOperator as dI, TxAuthInput as dJ, ApiTxAuthInput as dK, TxSignatureResponse as dL, GetTxAuthDataSignatureResponse as dM, TezosTxAuthInput as dN, ApiTezosTxAuthInput as dO, TezosTxSignatureResponse as dP, GetTezosTxAuthDataSignatureResponse as dQ, ExtendedTxAuthInput as dR, ExtendedTezosTxAuthInput as dS, AnyTxAuthInput as dT, ExtendedTxAuthDataSignatureResponse as dU, ExtendedTezosTxAuthDataSignatureResponse as dV, AnyTxAuthDataSignatureResponse as dW, ZKPRequest as dX, ZKPRequestFromZKVerifier as dY, OffChainZKP as dZ, CreateAuthRequestProps as d_, ArrayOperator as da, STRING_OPERATORS as db, StringOperator as dc, NUMERIC_OPERATORS as dd, NumericOperator as de, BOOLEAN_OPERATORS as df, BooleanOperator as dg, DATE_OPERATORS as dh, DateOperator as di, SUPPORTED_TYPES as dj, SupportedType as dk, SupportedTypes as dl, IDInformation as dm, QueryConfig as dn, QueryType as dp, QueryConfigSimplified as dq, PartialQueryConfigSimplified as dr, QueryConfigSimplifiedParsed as ds, QueryConfiguration as dt, NonParsedQueryConfiguration as du, CreateQueryConfigurationInput as dv, CreateQueryConfigurationResponse as dw, UpdateQueryConfigurationInput as dx, UpdateQueryConfigurationResponse as dy, DeleteQueryConfigurationInput as dz, NEXERA_STARKNET_CHAINS as e, SCENARIO_AUTHORIZATION_STATUSES as e0, ScenarioAuthorizationStatus as e1, WalletSignatureResponse as e2, VerifyWalletChallengeRequest as e3, FLOW_TYPES as e4, FlowType as e5, VerificationModes as e6, VerificationMode as e7, IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS as e8, IdentityDocumentCountryListOption as e9, IDInformationCredentialSubjectSchema as eA, IDImageCredentialSubjectSchema as eB, SelfieImageCredentialSubjectSchema as eC, ProofOfResidenceCredentialSubjectSchema as eD, GenericVerifiableCredentialSchema as eE, CredentialSchemas as eF, CredentialNames as eG, NexeraCredentialType as eH, getCredentialName as eI, CredentialType as eJ, VerifiableCredential as eK, CredentialMediaType as eL, _toConsumableArray as eM, _toArray as eN, _arrayWithHoles as eO, _unsupportedIterableToArray as eP, _nonIterableRest as eQ, _defineProperty as eR, IDENTITY_DOCUMENT_OPTIONS as ea, IdentityDocumentOptionsType as eb, PERSONAL_INFORMATION_FIELDS as ec, PersonalInformationFieldsIdentityDocuments as ed, Identifier as ee, AdditionalCustomerInformationParams as ef, OrganizationId as eg, WorkspaceId as eh, WorkflowId as ei, CustomerId as ej, IdentityWidgetAccessToken as ek, ExternalCustomerId as el, IdentityAppV2Web3JWT as em, IdentityAppV2Web2JWT as en, IdentityWidgetAccessToken_NEW as eo, IdentityWidgetSessionToken as ep, Web2CreateSessionParams as eq, ID3CredentialSubjectSchema as er, IDScanCredentialSubjectSchema as es, IDScanPassportCredentialSubjectSchema as et, IDScanSelfieCredentialSubjectSchema as eu, OLD_IDImageCredentialSubjectSchema as ev, OLD_IDInformationCredentialSubjectSchema as ew, OLD_ProofOfResidenceCredentialSubjectSchema as ex, OLD_SelfieImageCredentialSubjectSchema as ey, OLD_AMLScreeningsResultsCredentialSubjectSchema as ez, NEXERA_EVM_CHAIN_NAMES as f, NEXERA_EVM_CHAIN_NAMES_LIST as g, NEXERA_CHAIN_VALUES as h, EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC as i, EvmChainId as j, PolygonNetworkNames as k, NEXERA_TEZOS_CHAIN_NAMES as l, NEXERA_TEZOS_CHAIN_NAMES_LIST as m, NEXERA_TEZOS_CHAIN_VALUES as n, ACTIVE_TEZOS_CHAIN_VALUES as o, COSMOS_CHAIN_NAMES as p, COSMOS_CHAIN_NAMES_LIST as q, COSMOS_CHAIN_VALUES as r, ACTIVE_COSMOS_CHAIN_VALUES as s, CosmosChainId as t, NEXERA_STARKNET_CHAIN_NAMES as u, NEXERA_STARKNET_CHAIN_VALUES as v, NEXERA_ACTIVE_STARKNET_CHAIN_VALUES as w, isValidAddress as x, String0x as y, PrivateKey as z };
|
|
3319
|
+
export { SpSignature as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, PublicKey as D, EVM_BLOCK_TIME as E, AddressSchema as F, TxHash as G, EIP155Signature as H, FunctionCallData as I, shortAddress as J, AptosAddress as K, AptosSignature as L, StarknetAddress as M, NEXERA_EVM_CHAINS as N, StarknetSignature as O, POLYGON_NETWORK_NAMES as P, PolkadotAddress as Q, PolkadotSignature as R, StarknetChainId as S, TezosChainId as T, CosmosAddress as U, CosmosSignature as V, TezosImplicitAddress as W, TezosContractAddress as X, TezosAddress as Y, TezosEntrypointName as Z, EdSignature as _, NEXERA_EVM_CHAINS_ID as a, TransactionMethodsPrefix as a$, P2Signature as a0, TezosSignature as a1, CardanoAddress as a2, CardanoSignature as a3, BlockchainAddress as a4, BlockchainSignature as a5, BLOCKCHAIN_NAMESPACES as a6, BlockchainNamespace as a7, BLOCKCHAIN_NAMESPACES_NAMES as a8, DISPLAYED_LOCKCHAIN_NAMESPACES as a9, CustomerOnboardingLevels as aA, CustomerOnboardingLevel as aB, CustomerStatuses as aC, CustomerStatus as aD, BasicCustomerContactInformation as aE, CUSTOMERS_CHARTS as aF, CustomersChartType as aG, CUSTOMER_TABLE_COLUMNS as aH, CustomerTableColumn as aI, CUSTOMER_AUTOMATION_REASONS as aJ, StoragePrefix as aK, IdentityPrefix as aL, EmailPrefix as aM, WalletPrefix as aN, AppPrefix as aO, ChallengePrefix as aP, TestPrefix as aQ, CustomerScreeningPrefix as aR, TagPrefix as aS, TagsToTransactionReviewsPrefix as aT, TransactionAddressesPrefix as aU, TransactionPrefix as aV, TransactionFeesPrefix as aW, TransactionReviewPrefix as aX, TransactionPartiesPrefix as aY, TransactionInfosPrefix as aZ, TransactionExtractedInfosPrefix as a_, DisplayedBlockchainNamespace as aa, BLOCKCHAIN_NAME_TO_NAMESPACE as ab, BLOCKCHAIN_NAMESPACE_TO_NAME as ac, ENVS as ad, EnvironmentSchema as ae, UuidString as af, OtpCode as ag, ZodParse as ah, shortBlockchainAddress as ai, PUBLIC_SERVICES_SCHEMA_MAP as aj, IpAddress as ak, ISO3CountryCode as al, ALPHA_2_COUNTRIES as am, Alpha2Country as an, countryISO3toISO2Mapping as ao, countryISO2toISO3Mapping as ap, isoCountriesNameFromISO2 as aq, parseISO3CountryCode as ar, RiskScoreTypes as as, RiskScoreType as at, CustomerTypes as au, CustomerType as av, KycOnboardingLevels as aw, KycOnboardingLevel as ax, KybOnboardingLevels as ay, KybOnboardingLevel as az, NexeraEvmChains as b, ScenarioType as b$, TransactionMethodExtractedInfosPrefix as b0, InstitutionPrefix as b1, InstitutionExtractedInfosPrefix as b2, ScenarioPrefix as b3, ListPrefix as b4, QueryPrefix as b5, ActionPrefix as b6, createBrandedSchemaId as b7, StorageId as b8, IdentityId as b9, SdkVerificationResponseSchema as bA, CloseScreenNotification as bB, KycCompletionData as bC, KycCompletionNotification as bD, RuleEngineScenarioExecutionData as bE, OffChainScenarioExecutionData as bF, OnChainScenarioExecutionData as bG, ScenarioExecutionData as bH, ScenarioExecutionNotification as bI, IsVerifiedNotification as bJ, PolygonIdInitialized as bK, OcvSdkInitialized as bL, StartCompletedNotification as bM, IdentityNotificationMessage as bN, InitialDataRequest as bO, SignatureRequest as bP, TransactionData as bQ, SendTransactionRequest as bR, IdentityRequestMessage as bS, AVAILABLE_FLOWS as bT, AvailableFlow as bU, DataAvailableOnStart as bV, InitialDataResponse as bW, SignatureResponse as bX, TransactionResponse as bY, HostResponseMessage as bZ, ScenarioTypes as b_, EmailId as ba, WalletId as bb, AppId as bc, ChallengeId as bd, TestId as be, CustomerScreeningId as bf, TagId as bg, ActionId as bh, TagsToTransactionReviewsId as bi, TransactionAddressesId as bj, TransactionId as bk, TransactionFeesId as bl, TransactionReviewId as bm, TransactionPartiesId as bn, TransactionInfosId as bo, TransactionExtractedInfosId as bp, TransactionMethodsId as bq, TransactionMethodExtractedInfosId as br, InstitutionId as bs, InstitutionExtractedInfosId as bt, ScenarioId as bu, ListId as bv, QueryId as bw, generateId as bx, MemberId as by, ScenarioAuthorizationData as bz, NEXERA_TEZOS_CHAINS as c, AuthQrCodeData as c$, BaseQueryResponse as c0, OffChainZKPRuleResult as c1, ExecuteQueryResponse as c2, RuleEngineResponse as c3, ScenarioExecutionResponse as c4, RuleResultStatuses as c5, RuleResultStatus as c6, RuleResultStatusLabels as c7, SdkVerificationOutput as c8, VerificationSessionStatuses as c9, ChallengeResponse as cA, WalletSignResponse as cB, TxAuthDataSignatureGatingRequest as cC, GetCustomerStatusRequest as cD, IdentitySdkMessage as cE, IdentitySdkMessageWithIdentifier as cF, TxAuthDataSignatureResponse as cG, GetCustomerStatusResponse as cH, IdentityAppMessage as cI, IdentityWallet as cJ, HostMessage as cK, IdentityMessage as cL, RequiredDataRowSchema as cM, RequiredVerificationData as cN, MediaType as cO, MediaTypePID as cP, CIRCUIT_IDS as cQ, CircuitId as cR, ZeroKnowledgeProofRequest as cS, AUTHORIZATION_REQUEST_MESSAGE_TYPES as cT, AuthorizationRequestMessageTypes as cU, AuthorizationRequestMessageType as cV, AuthorizationRequestMessage as cW, ProofData as cX, ZeroKnowledgeProofResponse as cY, AuthorizationResponseMessage as cZ, CredentialQrCodeData as c_, VerificationSessionStatus as ca, VerificationOutput as cb, Scenario as cc, AbbreviatedWorkflowScenario as cd, TemplateScenario as ce, CreateTemplateScenario as cf, ComplianceImplementationStepsInput as cg, SimplifiedCredential as ch, GetCredentialsRequest as ci, GetCredentialsResponse as cj, PolygonIdRequestData as ck, PolygonIdRequest as cl, PolygonIdResponseData as cm, PolygonIdResponse as cn, StartFlowRequest as co, IsVerifiedRequest as cp, IsVerifiedResponse as cq, GetTxAuthSigRequest as cr, GetTxAuthSigResponse as cs, GetTxAuthSigRequestTezos as ct, GetTxAuthSigResponseTezos as cu, HostRequestMessage as cv, IdentityResponseMessage as cw, GenerateWalletChallengeRequest as cx, AuthSession as cy, AuthSessionData as cz, NEXERA_COSMOS_CHAINS as d, CreateAuthRequestProps as d$, QrCodeLinkWithSchemaType as d0, parseIden3Message as d1, parseSessionIdFromUrl as d2, AllCredentialAttributes as d3, AllCredentialValues as d4, OPERATORS as d5, Operator as d6, ZKPOperator as d7, operatorDisplayMap as d8, ARRAY_OPERATORS as d9, DeleteQueryConfigurationResponse as dA, QueryCredentialTypes as dB, QueryCredentialType as dC, ChallengeQuerySchema as dD, CHALLENGE_QUERY_OPERATORS as dE, ChallengeQueryOperator as dF, OperatorMappings as dG, OperatorToChallengeQueryOperator as dH, ChallengeQueryOperatorToOperator as dI, TxAuthInput as dJ, ApiTxAuthInput as dK, TxSignatureResponse as dL, GetTxAuthDataSignatureResponse as dM, TezosTxAuthInput as dN, ApiTezosTxAuthInput as dO, TezosTxSignatureResponse as dP, GetTezosTxAuthDataSignatureResponse as dQ, ExtendedTxAuthInput as dR, ExtendedTezosTxAuthInput as dS, AnyTxAuthInput as dT, AnyTxAuthInputJsSdk as dU, ExtendedTxAuthDataSignatureResponse as dV, ExtendedTezosTxAuthDataSignatureResponse as dW, AnyTxAuthDataSignatureResponse as dX, ZKPRequest as dY, ZKPRequestFromZKVerifier as dZ, OffChainZKP as d_, ArrayOperator as da, STRING_OPERATORS as db, StringOperator as dc, NUMERIC_OPERATORS as dd, NumericOperator as de, BOOLEAN_OPERATORS as df, BooleanOperator as dg, DATE_OPERATORS as dh, DateOperator as di, SUPPORTED_TYPES as dj, SupportedType as dk, SupportedTypes as dl, IDInformation as dm, QueryConfig as dn, QueryType as dp, QueryConfigSimplified as dq, PartialQueryConfigSimplified as dr, QueryConfigSimplifiedParsed as ds, QueryConfiguration as dt, NonParsedQueryConfiguration as du, CreateQueryConfigurationInput as dv, CreateQueryConfigurationResponse as dw, UpdateQueryConfigurationInput as dx, UpdateQueryConfigurationResponse as dy, DeleteQueryConfigurationInput as dz, NEXERA_STARKNET_CHAINS as e, AllScenarioExecutionAuthorizationData as e0, SCENARIO_AUTHORIZATION_STATUSES as e1, ScenarioAuthorizationStatus as e2, WalletSignatureResponse as e3, VerifyWalletChallengeRequest as e4, FLOW_TYPES as e5, FlowType as e6, VerificationModes as e7, VerificationMode as e8, IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS as e9, OLD_AMLScreeningsResultsCredentialSubjectSchema as eA, IDInformationCredentialSubjectSchema as eB, IDImageCredentialSubjectSchema as eC, SelfieImageCredentialSubjectSchema as eD, ProofOfResidenceCredentialSubjectSchema as eE, GenericVerifiableCredentialSchema as eF, CredentialSchemas as eG, CredentialNames as eH, NexeraCredentialType as eI, getCredentialName as eJ, CredentialType as eK, VerifiableCredential as eL, CredentialMediaType as eM, _toConsumableArray as eN, _toArray as eO, _arrayWithHoles as eP, _unsupportedIterableToArray as eQ, _nonIterableRest as eR, _defineProperty as eS, IdentityDocumentCountryListOption as ea, IDENTITY_DOCUMENT_OPTIONS as eb, IdentityDocumentOptionsType as ec, PERSONAL_INFORMATION_FIELDS as ed, PersonalInformationFieldsIdentityDocuments as ee, Identifier as ef, AdditionalCustomerInformationParams as eg, OrganizationId as eh, WorkspaceId as ei, WorkflowId as ej, CustomerId as ek, IdentityWidgetAccessToken as el, ExternalCustomerId as em, IdentityAppV2Web3JWT as en, IdentityAppV2Web2JWT as eo, IdentityWidgetAccessToken_NEW as ep, IdentityWidgetSessionToken as eq, Web2CreateSessionParams as er, ID3CredentialSubjectSchema as es, IDScanCredentialSubjectSchema as et, IDScanPassportCredentialSubjectSchema as eu, IDScanSelfieCredentialSubjectSchema as ev, OLD_IDImageCredentialSubjectSchema as ew, OLD_IDInformationCredentialSubjectSchema as ex, OLD_ProofOfResidenceCredentialSubjectSchema as ey, OLD_SelfieImageCredentialSubjectSchema as ez, NEXERA_EVM_CHAIN_NAMES as f, NEXERA_EVM_CHAIN_NAMES_LIST as g, NEXERA_CHAIN_VALUES as h, EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC as i, EvmChainId as j, PolygonNetworkNames as k, NEXERA_TEZOS_CHAIN_NAMES as l, NEXERA_TEZOS_CHAIN_NAMES_LIST as m, NEXERA_TEZOS_CHAIN_VALUES as n, ACTIVE_TEZOS_CHAIN_VALUES as o, COSMOS_CHAIN_NAMES as p, COSMOS_CHAIN_NAMES_LIST as q, COSMOS_CHAIN_VALUES as r, ACTIVE_COSMOS_CHAIN_VALUES as s, CosmosChainId as t, NEXERA_STARKNET_CHAIN_NAMES as u, NEXERA_STARKNET_CHAIN_VALUES as v, NEXERA_ACTIVE_STARKNET_CHAIN_VALUES as w, isValidAddress as x, String0x as y, PrivateKey as z };
|
package/dist/{identity-api.schema-2fb2ff78.cjs.prod.js → identity-api.schema-d736140e.cjs.dev.js}
RENAMED
|
@@ -78,9 +78,7 @@ var EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC = [NEXERA_EVM_CHAINS.MOONBEAM, NEXERA_
|
|
|
78
78
|
var ACTIVE_EVM_CHAIN_VALUES = [NEXERA_EVM_CHAINS.ETHEREUM, NEXERA_EVM_CHAINS.POLYGON, NEXERA_EVM_CHAINS.POLYGON_AMOY, NEXERA_EVM_CHAINS.AVALANCHE, NEXERA_EVM_CHAINS.AVALANCHE_FUJI, NEXERA_EVM_CHAINS.ARBITRUM, NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, NEXERA_EVM_CHAINS.SEPOLIA, NEXERA_EVM_CHAINS.BASE, NEXERA_EVM_CHAINS.BASE_SEPOLIA, NEXERA_EVM_CHAINS.BNB,
|
|
79
79
|
// for Bsc
|
|
80
80
|
NEXERA_EVM_CHAINS.BNB_TESTNET, NEXERA_EVM_CHAINS.MOONBEAM, NEXERA_EVM_CHAINS.MOONRIVER, NEXERA_EVM_CHAINS.OPTIMISM, NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA, NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET];
|
|
81
|
-
var EvmChainId = zod.z.
|
|
82
|
-
return String(val);
|
|
83
|
-
}, zod.z["enum"](ACTIVE_EVM_CHAIN_VALUES).describe("a numeric value that identifies the chain of the address. There are many sites that retrieve information on chainIDs such as <a href='https://chainlist.org/'>https://chainlist.org</a>."));
|
|
81
|
+
var EvmChainId = zod.z["enum"](ACTIVE_EVM_CHAIN_VALUES).describe("a numeric value that identifies the chain of the address. There are many sites that retrieve information on chainIDs such as <a href='https://chainlist.org/'>https://chainlist.org</a>.");
|
|
84
82
|
/////////////////////////////////////////
|
|
85
83
|
// Polygon //
|
|
86
84
|
/////////////////////////////////////////
|
|
@@ -95,9 +93,7 @@ var NEXERA_TEZOS_CHAIN_NAMES = _defineProperty(_defineProperty({}, NEXERA_TEZOS_
|
|
|
95
93
|
var NEXERA_TEZOS_CHAIN_NAMES_LIST = Object.values(NEXERA_TEZOS_CHAIN_NAMES);
|
|
96
94
|
var NEXERA_TEZOS_CHAIN_VALUES = _defineProperty(_defineProperty({}, NEXERA_TEZOS_CHAINS.TEZOS, "NetXdQprcVkpaWU"), NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET, "NetXnHfVqm9iesp");
|
|
97
95
|
var ACTIVE_TEZOS_CHAIN_VALUES = [NEXERA_TEZOS_CHAINS.TEZOS, NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET];
|
|
98
|
-
var TezosChainId = zod.z.
|
|
99
|
-
return String(val);
|
|
100
|
-
}, zod.z["enum"](ACTIVE_TEZOS_CHAIN_VALUES).describe("a numeric value that identifies the chain of the address. There are many sites that retrieve information on chainIDs such as <a href='https://chainlist.org/'>https://chainlist.org</a>."));
|
|
96
|
+
var TezosChainId = zod.z["enum"](ACTIVE_TEZOS_CHAIN_VALUES).describe("a numeric value that identifies the chain of the address. There are many sites that retrieve information on chainIDs such as <a href='https://chainlist.org/'>https://chainlist.org</a>.");
|
|
101
97
|
/////////////////////////////////////////
|
|
102
98
|
// COSMOS //
|
|
103
99
|
/////////////////////////////////////////
|
|
@@ -106,9 +102,7 @@ var COSMOS_CHAIN_NAMES = _defineProperty(_defineProperty({}, NEXERA_COSMOS_CHAIN
|
|
|
106
102
|
var COSMOS_CHAIN_NAMES_LIST = Object.values(COSMOS_CHAIN_NAMES);
|
|
107
103
|
var COSMOS_CHAIN_VALUES = _defineProperty(_defineProperty({}, NEXERA_COSMOS_CHAINS.COSMOS, "cosmoshub-4"), NEXERA_COSMOS_CHAINS.COSMOS_TESTNET, "theta-testnet-001");
|
|
108
104
|
var ACTIVE_COSMOS_CHAIN_VALUES = [NEXERA_COSMOS_CHAINS.COSMOS, NEXERA_COSMOS_CHAINS.COSMOS_TESTNET];
|
|
109
|
-
var CosmosChainId = zod.z.
|
|
110
|
-
return String(val);
|
|
111
|
-
}, zod.z["enum"](ACTIVE_COSMOS_CHAIN_VALUES).describe("a value that identifies the chain of the address."));
|
|
105
|
+
var CosmosChainId = zod.z["enum"](ACTIVE_COSMOS_CHAIN_VALUES).describe("a value that identifies the chain of the address.");
|
|
112
106
|
/////////////////////////////////////////
|
|
113
107
|
// STARKNET //
|
|
114
108
|
/////////////////////////////////////////
|
|
@@ -122,9 +116,7 @@ var NEXERA_STARKNET_CHAIN_VALUES = {
|
|
|
122
116
|
STARKNET_SEPOLIA: "0x534e5f5345504f4c4941"
|
|
123
117
|
};
|
|
124
118
|
var NEXERA_ACTIVE_STARKNET_CHAIN_VALUES = [NEXERA_STARKNET_CHAIN_VALUES.STARKNET_MAIN, NEXERA_STARKNET_CHAIN_VALUES.STARKNET_SEPOLIA];
|
|
125
|
-
var StarknetChainId = zod.z.
|
|
126
|
-
return String(val);
|
|
127
|
-
}, zod.z["enum"](NEXERA_ACTIVE_STARKNET_CHAIN_VALUES).describe("a value that identifies the chain of the address."));
|
|
119
|
+
var StarknetChainId = zod.z["enum"](NEXERA_ACTIVE_STARKNET_CHAIN_VALUES).describe("a value that identifies the chain of the address.");
|
|
128
120
|
/////////////////////////////////////////
|
|
129
121
|
// MERGED //
|
|
130
122
|
/////////////////////////////////////////
|
|
@@ -2883,6 +2875,10 @@ var ExtendedTezosTxAuthInput = TezosTxAuthInput.and(zod.z.object({
|
|
|
2883
2875
|
userAddress: TezosImplicitAddress
|
|
2884
2876
|
}));
|
|
2885
2877
|
var AnyTxAuthInput = zod.z.union([ExtendedTxAuthInput, ExtendedTezosTxAuthInput]);
|
|
2878
|
+
var AnyTxAuthInputJsSdk = zod.z.object({
|
|
2879
|
+
workflowId: zod.z.string().uuid(),
|
|
2880
|
+
txAuthInput: AnyTxAuthInput
|
|
2881
|
+
});
|
|
2886
2882
|
var ExtendedTxAuthDataSignatureResponse = GetTxAuthDataSignatureResponse.and(zod.z.object({
|
|
2887
2883
|
namespace: zod.z.literal(BlockchainNamespace.Enum.eip155),
|
|
2888
2884
|
userAddress: AddressSchema
|
|
@@ -3340,6 +3336,7 @@ exports.AllScenarioExecutionAuthorizationData = AllScenarioExecutionAuthorizatio
|
|
|
3340
3336
|
exports.Alpha2Country = Alpha2Country;
|
|
3341
3337
|
exports.AnyTxAuthDataSignatureResponse = AnyTxAuthDataSignatureResponse;
|
|
3342
3338
|
exports.AnyTxAuthInput = AnyTxAuthInput;
|
|
3339
|
+
exports.AnyTxAuthInputJsSdk = AnyTxAuthInputJsSdk;
|
|
3343
3340
|
exports.ApiTezosTxAuthInput = ApiTezosTxAuthInput;
|
|
3344
3341
|
exports.ApiTxAuthInput = ApiTxAuthInput;
|
|
3345
3342
|
exports.AppId = AppId;
|