@nexeraid/identity-schemas
Advanced tools
Comparing version 1.12.8-dev to 1.12.9-dev
@@ -11,5 +11,4 @@ export * from "./app-requests.schema.js"; | ||
export * from "./txAuthData.schema.js"; | ||
export * from "./txAuthDataTezos.schema.js"; | ||
export * from "./zkps.schema.js"; | ||
export * from "./identity-api.schema.js"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -42,22 +42,382 @@ import { z } from "zod"; | ||
export type TxSignatureResponse = z.infer<typeof TxSignatureResponse>; | ||
export declare const GetTxAuthDataSignatureResponse: z.ZodObject<{ | ||
payload: z.ZodOptional<z.ZodString>; | ||
signature: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>; | ||
export declare const GetTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodObject<{ | ||
blockExpiration: z.ZodOptional<z.ZodNumber>; | ||
isAuthorized: z.ZodBoolean; | ||
errorMessage: z.ZodOptional<z.ZodAny>; | ||
}, "strip", z.ZodTypeAny, { | ||
isAuthorized: boolean; | ||
signature?: string | undefined; | ||
blockExpiration?: number | undefined; | ||
payload?: string | undefined; | ||
}, { | ||
blockExpiration?: number | undefined; | ||
}>, z.ZodUnion<[z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<true>; | ||
signature: z.ZodEffects<z.ZodString, string, string>; | ||
payload: z.ZodString; | ||
}, "strip", z.ZodTypeAny, { | ||
signature: string; | ||
isAuthorized: true; | ||
payload: string; | ||
}, { | ||
signature: string; | ||
isAuthorized: true; | ||
payload: string; | ||
}>, z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<false>; | ||
errorMessage: z.ZodAny; | ||
}, "strip", z.ZodTypeAny, { | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}, { | ||
isAuthorized: boolean; | ||
signature?: string | undefined; | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}>]>>; | ||
export type GetTxAuthDataSignatureResponse = z.infer<typeof GetTxAuthDataSignatureResponse>; | ||
export declare const TezosTxAuthInput: z.ZodObject<{ | ||
chainID: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS, unknown>; | ||
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>; | ||
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>; | ||
args: z.ZodString; | ||
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>; | ||
blockExpiration: z.ZodOptional<z.ZodNumber>; | ||
nonce: z.ZodOptional<z.ZodNumber>; | ||
}, "strip", z.ZodTypeAny, { | ||
userAddress: `tz${string}`; | ||
contractAddress: `KT1${string}`; | ||
functionName: `%${string}`; | ||
args: string; | ||
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS; | ||
blockExpiration?: number | undefined; | ||
payload?: string | undefined; | ||
nonce?: number | undefined; | ||
}, { | ||
userAddress: string; | ||
contractAddress: string; | ||
functionName: string; | ||
args: string; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
chainID?: unknown; | ||
}>; | ||
export type TezosTxAuthInput = z.infer<typeof TezosTxAuthInput>; | ||
export declare const TezosTxSignatureResponse: z.ZodObject<{ | ||
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>; | ||
blockExpiration: z.ZodNumber; | ||
}, "strip", z.ZodTypeAny, { | ||
signature: `edsig${string}`; | ||
blockExpiration: number; | ||
}, { | ||
signature: string; | ||
blockExpiration: number; | ||
}>; | ||
export type TezosTxSignatureResponse = z.infer<typeof TezosTxSignatureResponse>; | ||
export declare const GetTezosTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodObject<{ | ||
blockExpiration: z.ZodOptional<z.ZodNumber>; | ||
}, "strip", z.ZodTypeAny, { | ||
blockExpiration?: number | undefined; | ||
}, { | ||
blockExpiration?: number | undefined; | ||
}>, z.ZodUnion<[z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<true>; | ||
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>; | ||
}, "strip", z.ZodTypeAny, { | ||
signature: `edsig${string}`; | ||
isAuthorized: true; | ||
}, { | ||
signature: string; | ||
isAuthorized: true; | ||
}>, z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<false>; | ||
errorMessage: z.ZodAny; | ||
}, "strip", z.ZodTypeAny, { | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}>; | ||
export type GetTxAuthDataSignatureResponse = z.infer<typeof GetTxAuthDataSignatureResponse>; | ||
}, { | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}>]>>; | ||
export type GetTezosTxAuthDataSignatureResponse = z.infer<typeof GetTezosTxAuthDataSignatureResponse>; | ||
export declare const ExtendedTxAuthInput: z.ZodIntersection<z.ZodObject<{ | ||
chainId: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA]>, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, unknown>; | ||
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">; | ||
contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>; | ||
functionName: z.ZodString; | ||
args: z.ZodArray<z.ZodUnknown, "many">; | ||
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>; | ||
blockExpiration: z.ZodOptional<z.ZodNumber>; | ||
nonce: z.ZodOptional<z.ZodNumber>; | ||
}, "strip", z.ZodTypeAny, { | ||
userAddress: `0x${string}`; | ||
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; | ||
contractAbi: Record<string, unknown>[]; | ||
contractAddress: `0x${string}`; | ||
functionName: string; | ||
args: unknown[]; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
}, { | ||
userAddress: string; | ||
contractAbi: Record<string, unknown>[]; | ||
contractAddress: string; | ||
functionName: string; | ||
args: unknown[]; | ||
chainId?: unknown; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
}>, z.ZodObject<{ | ||
namespace: z.ZodLiteral<"eip155">; | ||
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>; | ||
}, "strip", z.ZodTypeAny, { | ||
namespace: "eip155"; | ||
userAddress: `0x${string}`; | ||
}, { | ||
namespace: "eip155"; | ||
userAddress: string; | ||
}>>; | ||
export type ExtendedTxAuthInput = z.infer<typeof ExtendedTxAuthInput>; | ||
export declare const ExtendedTezosTxAuthInput: z.ZodIntersection<z.ZodObject<{ | ||
chainID: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS, unknown>; | ||
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>; | ||
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>; | ||
args: z.ZodString; | ||
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>; | ||
blockExpiration: z.ZodOptional<z.ZodNumber>; | ||
nonce: z.ZodOptional<z.ZodNumber>; | ||
}, "strip", z.ZodTypeAny, { | ||
userAddress: `tz${string}`; | ||
contractAddress: `KT1${string}`; | ||
functionName: `%${string}`; | ||
args: string; | ||
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
}, { | ||
userAddress: string; | ||
contractAddress: string; | ||
functionName: string; | ||
args: string; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
chainID?: unknown; | ||
}>, z.ZodObject<{ | ||
namespace: z.ZodLiteral<"tezos">; | ||
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>; | ||
}, "strip", z.ZodTypeAny, { | ||
namespace: "tezos"; | ||
userAddress: `tz${string}`; | ||
}, { | ||
namespace: "tezos"; | ||
userAddress: string; | ||
}>>; | ||
export type ExtendedTezosTxAuthInput = z.infer<typeof ExtendedTezosTxAuthInput>; | ||
export declare const AnyTxAuthInput: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{ | ||
chainId: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA]>, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, unknown>; | ||
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">; | ||
contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>; | ||
functionName: z.ZodString; | ||
args: z.ZodArray<z.ZodUnknown, "many">; | ||
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>; | ||
blockExpiration: z.ZodOptional<z.ZodNumber>; | ||
nonce: z.ZodOptional<z.ZodNumber>; | ||
}, "strip", z.ZodTypeAny, { | ||
userAddress: `0x${string}`; | ||
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; | ||
contractAbi: Record<string, unknown>[]; | ||
contractAddress: `0x${string}`; | ||
functionName: string; | ||
args: unknown[]; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
}, { | ||
userAddress: string; | ||
contractAbi: Record<string, unknown>[]; | ||
contractAddress: string; | ||
functionName: string; | ||
args: unknown[]; | ||
chainId?: unknown; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
}>, z.ZodObject<{ | ||
namespace: z.ZodLiteral<"eip155">; | ||
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>; | ||
}, "strip", z.ZodTypeAny, { | ||
namespace: "eip155"; | ||
userAddress: `0x${string}`; | ||
}, { | ||
namespace: "eip155"; | ||
userAddress: string; | ||
}>>, z.ZodIntersection<z.ZodObject<{ | ||
chainID: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS, unknown>; | ||
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>; | ||
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>; | ||
args: z.ZodString; | ||
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>; | ||
blockExpiration: z.ZodOptional<z.ZodNumber>; | ||
nonce: z.ZodOptional<z.ZodNumber>; | ||
}, "strip", z.ZodTypeAny, { | ||
userAddress: `tz${string}`; | ||
contractAddress: `KT1${string}`; | ||
functionName: `%${string}`; | ||
args: string; | ||
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
}, { | ||
userAddress: string; | ||
contractAddress: string; | ||
functionName: string; | ||
args: string; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
chainID?: unknown; | ||
}>, z.ZodObject<{ | ||
namespace: z.ZodLiteral<"tezos">; | ||
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>; | ||
}, "strip", z.ZodTypeAny, { | ||
namespace: "tezos"; | ||
userAddress: `tz${string}`; | ||
}, { | ||
namespace: "tezos"; | ||
userAddress: string; | ||
}>>]>; | ||
export type AnyTxAuthInput = z.infer<typeof AnyTxAuthInput>; | ||
export declare const ExtendedTxSignatureResponse: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{ | ||
blockExpiration: z.ZodOptional<z.ZodNumber>; | ||
}, "strip", z.ZodTypeAny, { | ||
blockExpiration?: number | undefined; | ||
}, { | ||
blockExpiration?: number | undefined; | ||
}>, z.ZodUnion<[z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<true>; | ||
signature: z.ZodEffects<z.ZodString, string, string>; | ||
payload: z.ZodString; | ||
}, "strip", z.ZodTypeAny, { | ||
signature: string; | ||
isAuthorized: true; | ||
payload: string; | ||
}, { | ||
signature: string; | ||
isAuthorized: true; | ||
payload: string; | ||
}>, z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<false>; | ||
errorMessage: z.ZodAny; | ||
}, "strip", z.ZodTypeAny, { | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}, { | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}>]>>, z.ZodObject<{ | ||
namespace: z.ZodLiteral<"eip155">; | ||
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>; | ||
}, "strip", z.ZodTypeAny, { | ||
namespace: "eip155"; | ||
userAddress: `0x${string}`; | ||
}, { | ||
namespace: "eip155"; | ||
userAddress: string; | ||
}>>; | ||
export type ExtendedTxSignatureResponse = z.infer<typeof ExtendedTxSignatureResponse>; | ||
export declare const ExtendedTezosTxSignatureResponse: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{ | ||
blockExpiration: z.ZodOptional<z.ZodNumber>; | ||
}, "strip", z.ZodTypeAny, { | ||
blockExpiration?: number | undefined; | ||
}, { | ||
blockExpiration?: number | undefined; | ||
}>, z.ZodUnion<[z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<true>; | ||
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>; | ||
}, "strip", z.ZodTypeAny, { | ||
signature: `edsig${string}`; | ||
isAuthorized: true; | ||
}, { | ||
signature: string; | ||
isAuthorized: true; | ||
}>, z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<false>; | ||
errorMessage: z.ZodAny; | ||
}, "strip", z.ZodTypeAny, { | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}, { | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}>]>>, z.ZodObject<{ | ||
namespace: z.ZodLiteral<"tezos">; | ||
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>; | ||
}, "strip", z.ZodTypeAny, { | ||
namespace: "tezos"; | ||
userAddress: `tz${string}`; | ||
}, { | ||
namespace: "tezos"; | ||
userAddress: string; | ||
}>>; | ||
export type ExtendedTezosTxSignatureResponse = z.infer<typeof ExtendedTezosTxSignatureResponse>; | ||
export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.ZodIntersection<z.ZodObject<{ | ||
blockExpiration: z.ZodOptional<z.ZodNumber>; | ||
}, "strip", z.ZodTypeAny, { | ||
blockExpiration?: number | undefined; | ||
}, { | ||
blockExpiration?: number | undefined; | ||
}>, z.ZodUnion<[z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<true>; | ||
signature: z.ZodEffects<z.ZodString, string, string>; | ||
payload: z.ZodString; | ||
}, "strip", z.ZodTypeAny, { | ||
signature: string; | ||
isAuthorized: true; | ||
payload: string; | ||
}, { | ||
signature: string; | ||
isAuthorized: true; | ||
payload: string; | ||
}>, z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<false>; | ||
errorMessage: z.ZodAny; | ||
}, "strip", z.ZodTypeAny, { | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}, { | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}>]>>, z.ZodObject<{ | ||
namespace: z.ZodLiteral<"eip155">; | ||
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>; | ||
}, "strip", z.ZodTypeAny, { | ||
namespace: "eip155"; | ||
userAddress: `0x${string}`; | ||
}, { | ||
namespace: "eip155"; | ||
userAddress: string; | ||
}>>, z.ZodIntersection<z.ZodIntersection<z.ZodObject<{ | ||
blockExpiration: z.ZodOptional<z.ZodNumber>; | ||
}, "strip", z.ZodTypeAny, { | ||
blockExpiration?: number | undefined; | ||
}, { | ||
blockExpiration?: number | undefined; | ||
}>, z.ZodUnion<[z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<true>; | ||
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>; | ||
}, "strip", z.ZodTypeAny, { | ||
signature: `edsig${string}`; | ||
isAuthorized: true; | ||
}, { | ||
signature: string; | ||
isAuthorized: true; | ||
}>, z.ZodObject<{ | ||
isAuthorized: z.ZodLiteral<false>; | ||
errorMessage: z.ZodAny; | ||
}, "strip", z.ZodTypeAny, { | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}, { | ||
isAuthorized: false; | ||
errorMessage?: any; | ||
}>]>>, z.ZodObject<{ | ||
namespace: z.ZodLiteral<"tezos">; | ||
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>; | ||
}, "strip", z.ZodTypeAny, { | ||
namespace: "tezos"; | ||
userAddress: `tz${string}`; | ||
}, { | ||
namespace: "tezos"; | ||
userAddress: string; | ||
}>>]>; | ||
export type AnyTxSignatureResponse = z.infer<typeof AnyTxSignatureResponse>; | ||
//# sourceMappingURL=txAuthData.schema.d.ts.map |
@@ -6,3 +6,3 @@ 'use strict'; | ||
var zod = require('zod'); | ||
var identityApi_schema = require('./identity-api.schema-c0e6e89e.cjs.dev.js'); | ||
var identityApi_schema = require('./identity-api.schema-46a66e5e.cjs.dev.js'); | ||
require('nanoid'); | ||
@@ -86,2 +86,4 @@ | ||
exports.Alpha2Country = identityApi_schema.Alpha2Country; | ||
exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput; | ||
exports.AnyTxSignatureResponse = identityApi_schema.AnyTxSignatureResponse; | ||
exports.AppId = identityApi_schema.AppId; | ||
@@ -145,2 +147,6 @@ exports.AptosAddress = identityApi_schema.AptosAddress; | ||
exports.ExecuteChallengeQueryResponse = identityApi_schema.ExecuteChallengeQueryResponse; | ||
exports.ExtendedTezosTxAuthInput = identityApi_schema.ExtendedTezosTxAuthInput; | ||
exports.ExtendedTezosTxSignatureResponse = identityApi_schema.ExtendedTezosTxSignatureResponse; | ||
exports.ExtendedTxAuthInput = identityApi_schema.ExtendedTxAuthInput; | ||
exports.ExtendedTxSignatureResponse = identityApi_schema.ExtendedTxSignatureResponse; | ||
exports.ExternalClientId = identityApi_schema.ExternalClientId; | ||
@@ -294,2 +300,4 @@ exports.FLOW_TYPES = identityApi_schema.FLOW_TYPES; | ||
exports.TransactionResponse = identityApi_schema.TransactionResponse; | ||
exports.TrxSignatureGatingRequest = identityApi_schema.TrxSignatureGatingRequest; | ||
exports.TrxSignatureGatingResponse = identityApi_schema.TrxSignatureGatingResponse; | ||
exports.TxAuthInput = identityApi_schema.TxAuthInput; | ||
@@ -296,0 +304,0 @@ exports.TxHash = identityApi_schema.TxHash; |
@@ -6,3 +6,3 @@ 'use strict'; | ||
var zod = require('zod'); | ||
var identityApi_schema = require('./identity-api.schema-d228c39a.cjs.prod.js'); | ||
var identityApi_schema = require('./identity-api.schema-b63a1396.cjs.prod.js'); | ||
require('nanoid'); | ||
@@ -86,2 +86,4 @@ | ||
exports.Alpha2Country = identityApi_schema.Alpha2Country; | ||
exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput; | ||
exports.AnyTxSignatureResponse = identityApi_schema.AnyTxSignatureResponse; | ||
exports.AppId = identityApi_schema.AppId; | ||
@@ -145,2 +147,6 @@ exports.AptosAddress = identityApi_schema.AptosAddress; | ||
exports.ExecuteChallengeQueryResponse = identityApi_schema.ExecuteChallengeQueryResponse; | ||
exports.ExtendedTezosTxAuthInput = identityApi_schema.ExtendedTezosTxAuthInput; | ||
exports.ExtendedTezosTxSignatureResponse = identityApi_schema.ExtendedTezosTxSignatureResponse; | ||
exports.ExtendedTxAuthInput = identityApi_schema.ExtendedTxAuthInput; | ||
exports.ExtendedTxSignatureResponse = identityApi_schema.ExtendedTxSignatureResponse; | ||
exports.ExternalClientId = identityApi_schema.ExternalClientId; | ||
@@ -294,2 +300,4 @@ exports.FLOW_TYPES = identityApi_schema.FLOW_TYPES; | ||
exports.TransactionResponse = identityApi_schema.TransactionResponse; | ||
exports.TrxSignatureGatingRequest = identityApi_schema.TrxSignatureGatingRequest; | ||
exports.TrxSignatureGatingResponse = identityApi_schema.TrxSignatureGatingResponse; | ||
exports.TxAuthInput = identityApi_schema.TxAuthInput; | ||
@@ -296,0 +304,0 @@ exports.TxHash = identityApi_schema.TxHash; |
import { z } from 'zod'; | ||
import { C as CredentialTypes } from './identity-api.schema-0c864891.esm.js'; | ||
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, aj as ALPHA_2_COUNTRIES, ck as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, aJ as AdditionalUserInformationParams, z as AddressSchema, cf as AllCredentialAttributes, cg as AllCredentialValues, cY as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, au as AppId, I as AptosAddress, J as AptosSignature, cl as ArrayOperator, cb as AuthQrCodeData, bV as AuthSession, c6 as AuthorizationRequestMessage, c9 as AuthorizationResponseMessage, bc as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cq as BOOLEAN_OPERATORS, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cr as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, a0 as CardanoAddress, a1 as CardanoSignature, av as ChallengeId, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, cW as CreateAuthRequestProps, cF as CreateQueryConfigurationInput, cG as CreateQueryConfigurationResponse, cX as CreateZKProofRequestProps, ca as CredentialQrCodeData, cs as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bd as DataAvailableOnStart, ct as DateOperator, cJ as DeleteQueryConfigurationInput, cK as DeleteQueryConfigurationResponse, a8 as DisplayedBlockchainNamespace, F as EIP155Signature, ac as ENVS, E as EVM_BLOCK_TIME, g as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, Y as EdSignature, as as EmailId, ad as EnvironmentSchema, h as EvmChainId, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, aO as ExternalClientId, ay as FLOW_TYPES, az as FlowType, G as FunctionCallData, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cS as GetTezosTxAuthDataSignatureResponse, cP as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, b$ as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, aC as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, aE as IDENTITY_DOCUMENT_OPTIONS, cx as IDInformation, ai as ISO3CountryCode, aI as Identifier, b_ as IdentityAppMessage, aQ as IdentityAppV2Web2JWT, aP as IdentityAppV2Web3JWT, aD as IdentityDocumentCountryListOption, aF as IdentityDocumentOptionsType, ar as IdentityId, c0 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bY as IdentitySdkMessage, bZ as IdentitySdkMessageWithIdentifier, aK as IdentityWidgetAccessToken, aR as IdentityWidgetAccessToken_NEW, aS as IdentityWidgetSessionToken, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c3 as MediaType, c4 as MediaTypePID, u as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, f as NEXERA_CHAIN_VALUES, b as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAIN_NAMES, e as NEXERA_EVM_CHAIN_NAMES_LIST, c as NEXERA_STARKNET_CHAINS, s as NEXERA_STARKNET_CHAIN_NAMES, t as NEXERA_STARKNET_CHAIN_VALUES, a as NEXERA_TEZOS_CHAINS, j as NEXERA_TEZOS_CHAIN_NAMES, k as NEXERA_TEZOS_CHAIN_NAMES_LIST, l as NEXERA_TEZOS_CHAIN_VALUES, co as NUMERIC_OPERATORS, cE as NonParsedQueryConfiguration, cp as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, cV as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, c_ as OnChainZKP, c$ as OnChainZKPFromNexeraID, d1 as OnChainZKPPayload, d0 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, ch as Operator, bk as OperatorToChallengeQueryOperator, aL as OrganizationId, _ as P2Signature, aG as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ah as PUBLIC_SERVICES_SCHEMA_MAP, cB as PartialQueryConfigSimplified, aH as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, cZ as ProjectAuthorizationData, c7 as ProofData, y as PublicKey, cc as QrCodeLinkWithSchemaType, cy as QueryConfig, cA as QueryConfigSimplified, cC as QueryConfigSimplifiedParsed, cD as QueryConfiguration, cM as QueryCredentialType, cL as QueryCredentialTypes, cz as QueryType, c1 as RequiredDataRowSchema, c2 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, d2 as SCENARIO_AUTHORIZATION_STATUSES, cm as STRING_OPERATORS, cu as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, d3 as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b4 as StartCompletedNotification, bM as StartFlowRequest, aq as StorageId, w as String0x, cn as StringOperator, cv as SupportedType, cw as SupportedTypes, aw as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cQ as TezosTxAuthInput, cR as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, cN as TxAuthInput, D as TxHash, cO as TxSignatureResponse, cH as UpdateQueryConfigurationInput, cI as UpdateQueryConfigurationResponse, ae as UuidString, aB as VerificationMode, aA as VerificationModes, at as WalletId, bX as WalletSignResponse, d5 as WalletSignatureData, d4 as WalletSignatureResponse, aN as WorkflowId, aM as WorkspaceId, ci as ZKPOperator, cT as ZKPRequest, cU as ZKPRequestFromZKVerifier, c5 as ZeroKnowledgeProofRequest, c8 as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, ap as createBrandedSchemaId, ax as generateId, v as isValidAddress, an as isoCountriesNameFromISO2, cj as operatorDisplayMap, ao as parseISO3CountryCode, cd as parseIden3Message, ce as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-0c864891.esm.js'; | ||
import { C as CredentialTypes } from './identity-api.schema-38f27d6b.esm.js'; | ||
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, aj as ALPHA_2_COUNTRIES, cm as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, aJ as AdditionalUserInformationParams, z as AddressSchema, ch as AllCredentialAttributes, ci as AllCredentialValues, d4 as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, cX as AnyTxAuthInput, c_ as AnyTxSignatureResponse, au as AppId, I as AptosAddress, J as AptosSignature, cn as ArrayOperator, cd as AuthQrCodeData, bV as AuthSession, c8 as AuthorizationRequestMessage, cb as AuthorizationResponseMessage, bc as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cs as BOOLEAN_OPERATORS, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, ct as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, a0 as CardanoAddress, a1 as CardanoSignature, av as ChallengeId, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d2 as CreateAuthRequestProps, cH as CreateQueryConfigurationInput, cI as CreateQueryConfigurationResponse, d3 as CreateZKProofRequestProps, cc as CredentialQrCodeData, cu as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bd as DataAvailableOnStart, cv as DateOperator, cL as DeleteQueryConfigurationInput, cM as DeleteQueryConfigurationResponse, a8 as DisplayedBlockchainNamespace, F as EIP155Signature, ac as ENVS, E as EVM_BLOCK_TIME, g as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, Y as EdSignature, as as EmailId, ad as EnvironmentSchema, h as EvmChainId, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, cW as ExtendedTezosTxAuthInput, cZ as ExtendedTezosTxSignatureResponse, cV as ExtendedTxAuthInput, cY as ExtendedTxSignatureResponse, aO as ExternalClientId, ay as FLOW_TYPES, az as FlowType, G as FunctionCallData, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cU as GetTezosTxAuthDataSignatureResponse, cR as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c1 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, aC as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, aE as IDENTITY_DOCUMENT_OPTIONS, cz as IDInformation, ai as ISO3CountryCode, aI as Identifier, c0 as IdentityAppMessage, aQ as IdentityAppV2Web2JWT, aP as IdentityAppV2Web3JWT, aD as IdentityDocumentCountryListOption, aF as IdentityDocumentOptionsType, ar as IdentityId, c2 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bZ as IdentitySdkMessage, b_ as IdentitySdkMessageWithIdentifier, aK as IdentityWidgetAccessToken, aR as IdentityWidgetAccessToken_NEW, aS as IdentityWidgetSessionToken, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c5 as MediaType, c6 as MediaTypePID, u as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, f as NEXERA_CHAIN_VALUES, b as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAIN_NAMES, e as NEXERA_EVM_CHAIN_NAMES_LIST, c as NEXERA_STARKNET_CHAINS, s as NEXERA_STARKNET_CHAIN_NAMES, t as NEXERA_STARKNET_CHAIN_VALUES, a as NEXERA_TEZOS_CHAINS, j as NEXERA_TEZOS_CHAIN_NAMES, k as NEXERA_TEZOS_CHAIN_NAMES_LIST, l as NEXERA_TEZOS_CHAIN_VALUES, cq as NUMERIC_OPERATORS, cG as NonParsedQueryConfiguration, cr as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d1 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d6 as OnChainZKP, d7 as OnChainZKPFromNexeraID, d9 as OnChainZKPPayload, d8 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cj as Operator, bk as OperatorToChallengeQueryOperator, aL as OrganizationId, _ as P2Signature, aG as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ah as PUBLIC_SERVICES_SCHEMA_MAP, cD as PartialQueryConfigSimplified, aH as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, d5 as ProjectAuthorizationData, c9 as ProofData, y as PublicKey, ce as QrCodeLinkWithSchemaType, cA as QueryConfig, cC as QueryConfigSimplified, cE as QueryConfigSimplifiedParsed, cF as QueryConfiguration, cO as QueryCredentialType, cN as QueryCredentialTypes, cB as QueryType, c3 as RequiredDataRowSchema, c4 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, da as SCENARIO_AUTHORIZATION_STATUSES, co as STRING_OPERATORS, cw as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, db as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b4 as StartCompletedNotification, bM as StartFlowRequest, aq as StorageId, w as String0x, cp as StringOperator, cx as SupportedType, cy as SupportedTypes, aw as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cS as TezosTxAuthInput, cT as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bY as TrxSignatureGatingRequest, b$ as TrxSignatureGatingResponse, cP as TxAuthInput, D as TxHash, cQ as TxSignatureResponse, cJ as UpdateQueryConfigurationInput, cK as UpdateQueryConfigurationResponse, ae as UuidString, aB as VerificationMode, aA as VerificationModes, at as WalletId, bX as WalletSignResponse, dd as WalletSignatureData, dc as WalletSignatureResponse, aN as WorkflowId, aM as WorkspaceId, ck as ZKPOperator, c$ as ZKPRequest, d0 as ZKPRequestFromZKVerifier, c7 as ZeroKnowledgeProofRequest, ca as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, ap as createBrandedSchemaId, ax as generateId, v as isValidAddress, an as isoCountriesNameFromISO2, cl as operatorDisplayMap, ao as parseISO3CountryCode, cf as parseIden3Message, cg as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-38f27d6b.esm.js'; | ||
import 'nanoid'; | ||
@@ -5,0 +5,0 @@ |
{ | ||
"name": "@nexeraid/identity-schemas", | ||
"version": "1.12.8", | ||
"version": "1.12.9", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
@@ -5,3 +5,3 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-c0e6e89e.cjs.dev.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-46a66e5e.cjs.dev.js'); | ||
require('zod'); | ||
@@ -17,2 +17,4 @@ require('nanoid'); | ||
exports.AllScenarioExecutionAuthorizationData = identityApi_schema.AllScenarioExecutionAuthorizationData; | ||
exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput; | ||
exports.AnyTxSignatureResponse = identityApi_schema.AnyTxSignatureResponse; | ||
exports.ArrayOperator = identityApi_schema.ArrayOperator; | ||
@@ -46,2 +48,6 @@ exports.AuthQrCodeData = identityApi_schema.AuthQrCodeData; | ||
exports.ExecuteChallengeQueryResponse = identityApi_schema.ExecuteChallengeQueryResponse; | ||
exports.ExtendedTezosTxAuthInput = identityApi_schema.ExtendedTezosTxAuthInput; | ||
exports.ExtendedTezosTxSignatureResponse = identityApi_schema.ExtendedTezosTxSignatureResponse; | ||
exports.ExtendedTxAuthInput = identityApi_schema.ExtendedTxAuthInput; | ||
exports.ExtendedTxSignatureResponse = identityApi_schema.ExtendedTxSignatureResponse; | ||
exports.GetCredentialsRequest = identityApi_schema.GetCredentialsRequest; | ||
@@ -142,2 +148,4 @@ exports.GetCredentialsResponse = identityApi_schema.GetCredentialsResponse; | ||
exports.TransactionResponse = identityApi_schema.TransactionResponse; | ||
exports.TrxSignatureGatingRequest = identityApi_schema.TrxSignatureGatingRequest; | ||
exports.TrxSignatureGatingResponse = identityApi_schema.TrxSignatureGatingResponse; | ||
exports.TxAuthInput = identityApi_schema.TxAuthInput; | ||
@@ -144,0 +152,0 @@ exports.TxSignatureResponse = identityApi_schema.TxSignatureResponse; |
@@ -5,3 +5,3 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-d228c39a.cjs.prod.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-b63a1396.cjs.prod.js'); | ||
require('zod'); | ||
@@ -17,2 +17,4 @@ require('nanoid'); | ||
exports.AllScenarioExecutionAuthorizationData = identityApi_schema.AllScenarioExecutionAuthorizationData; | ||
exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput; | ||
exports.AnyTxSignatureResponse = identityApi_schema.AnyTxSignatureResponse; | ||
exports.ArrayOperator = identityApi_schema.ArrayOperator; | ||
@@ -46,2 +48,6 @@ exports.AuthQrCodeData = identityApi_schema.AuthQrCodeData; | ||
exports.ExecuteChallengeQueryResponse = identityApi_schema.ExecuteChallengeQueryResponse; | ||
exports.ExtendedTezosTxAuthInput = identityApi_schema.ExtendedTezosTxAuthInput; | ||
exports.ExtendedTezosTxSignatureResponse = identityApi_schema.ExtendedTezosTxSignatureResponse; | ||
exports.ExtendedTxAuthInput = identityApi_schema.ExtendedTxAuthInput; | ||
exports.ExtendedTxSignatureResponse = identityApi_schema.ExtendedTxSignatureResponse; | ||
exports.GetCredentialsRequest = identityApi_schema.GetCredentialsRequest; | ||
@@ -142,2 +148,4 @@ exports.GetCredentialsResponse = identityApi_schema.GetCredentialsResponse; | ||
exports.TransactionResponse = identityApi_schema.TransactionResponse; | ||
exports.TrxSignatureGatingRequest = identityApi_schema.TrxSignatureGatingRequest; | ||
exports.TrxSignatureGatingResponse = identityApi_schema.TrxSignatureGatingResponse; | ||
exports.TxAuthInput = identityApi_schema.TxAuthInput; | ||
@@ -144,0 +152,0 @@ exports.TxSignatureResponse = identityApi_schema.TxSignatureResponse; |
@@ -1,3 +0,3 @@ | ||
export { ck as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, cf as AllCredentialAttributes, cg as AllCredentialValues, cY as AllScenarioExecutionAuthorizationData, cl as ArrayOperator, cb as AuthQrCodeData, bV as AuthSession, c6 as AuthorizationRequestMessage, c9 as AuthorizationResponseMessage, bc as AvailableFlow, cq as BOOLEAN_OPERATORS, cr as BooleanOperator, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, cW as CreateAuthRequestProps, cF as CreateQueryConfigurationInput, cG as CreateQueryConfigurationResponse, cX as CreateZKProofRequestProps, ca as CredentialQrCodeData, cs as DATE_OPERATORS, bd as DataAvailableOnStart, ct as DateOperator, cJ as DeleteQueryConfigurationInput, cK as DeleteQueryConfigurationResponse, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cS as GetTezosTxAuthDataSignatureResponse, cP as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, b$ as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, cx as IDInformation, b_ as IdentityAppMessage, c0 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bY as IdentitySdkMessage, bZ as IdentitySdkMessageWithIdentifier, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c3 as MediaType, c4 as MediaTypePID, co as NUMERIC_OPERATORS, cE as NonParsedQueryConfiguration, cp as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, cV as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, c_ as OnChainZKP, c$ as OnChainZKPFromNexeraID, d1 as OnChainZKPPayload, d0 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, ch as Operator, bk as OperatorToChallengeQueryOperator, cB as PartialQueryConfigSimplified, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, cZ as ProjectAuthorizationData, c7 as ProofData, cc as QrCodeLinkWithSchemaType, cy as QueryConfig, cA as QueryConfigSimplified, cC as QueryConfigSimplifiedParsed, cD as QueryConfiguration, cM as QueryCredentialType, cL as QueryCredentialTypes, cz as QueryType, c1 as RequiredDataRowSchema, c2 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, d2 as SCENARIO_AUTHORIZATION_STATUSES, cm as STRING_OPERATORS, cu as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, d3 as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, b4 as StartCompletedNotification, bM as StartFlowRequest, cn as StringOperator, cv as SupportedType, cw as SupportedTypes, cQ as TezosTxAuthInput, cR as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, cN as TxAuthInput, cO as TxSignatureResponse, cH as UpdateQueryConfigurationInput, cI as UpdateQueryConfigurationResponse, bX as WalletSignResponse, d5 as WalletSignatureData, d4 as WalletSignatureResponse, ci as ZKPOperator, cT as ZKPRequest, cU as ZKPRequestFromZKVerifier, c5 as ZeroKnowledgeProofRequest, c8 as ZeroKnowledgeProofResponse, cj as operatorDisplayMap, cd as parseIden3Message, ce as parseSessionIdFromUrl } from '../../dist/identity-api.schema-0c864891.esm.js'; | ||
export { cm as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, ch as AllCredentialAttributes, ci as AllCredentialValues, d4 as AllScenarioExecutionAuthorizationData, cX as AnyTxAuthInput, c_ as AnyTxSignatureResponse, cn as ArrayOperator, cd as AuthQrCodeData, bV as AuthSession, c8 as AuthorizationRequestMessage, cb as AuthorizationResponseMessage, bc as AvailableFlow, cs as BOOLEAN_OPERATORS, ct as BooleanOperator, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, d2 as CreateAuthRequestProps, cH as CreateQueryConfigurationInput, cI as CreateQueryConfigurationResponse, d3 as CreateZKProofRequestProps, cc as CredentialQrCodeData, cu as DATE_OPERATORS, bd as DataAvailableOnStart, cv as DateOperator, cL as DeleteQueryConfigurationInput, cM as DeleteQueryConfigurationResponse, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, cW as ExtendedTezosTxAuthInput, cZ as ExtendedTezosTxSignatureResponse, cV as ExtendedTxAuthInput, cY as ExtendedTxSignatureResponse, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cU as GetTezosTxAuthDataSignatureResponse, cR as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c1 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, cz as IDInformation, c0 as IdentityAppMessage, c2 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bZ as IdentitySdkMessage, b_ as IdentitySdkMessageWithIdentifier, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c5 as MediaType, c6 as MediaTypePID, cq as NUMERIC_OPERATORS, cG as NonParsedQueryConfiguration, cr as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d1 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d6 as OnChainZKP, d7 as OnChainZKPFromNexeraID, d9 as OnChainZKPPayload, d8 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cj as Operator, bk as OperatorToChallengeQueryOperator, cD as PartialQueryConfigSimplified, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, d5 as ProjectAuthorizationData, c9 as ProofData, ce as QrCodeLinkWithSchemaType, cA as QueryConfig, cC as QueryConfigSimplified, cE as QueryConfigSimplifiedParsed, cF as QueryConfiguration, cO as QueryCredentialType, cN as QueryCredentialTypes, cB as QueryType, c3 as RequiredDataRowSchema, c4 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, da as SCENARIO_AUTHORIZATION_STATUSES, co as STRING_OPERATORS, cw as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, db as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, b4 as StartCompletedNotification, bM as StartFlowRequest, cp as StringOperator, cx as SupportedType, cy as SupportedTypes, cS as TezosTxAuthInput, cT as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bY as TrxSignatureGatingRequest, b$ as TrxSignatureGatingResponse, cP as TxAuthInput, cQ as TxSignatureResponse, cJ as UpdateQueryConfigurationInput, cK as UpdateQueryConfigurationResponse, bX as WalletSignResponse, dd as WalletSignatureData, dc as WalletSignatureResponse, ck as ZKPOperator, c$ as ZKPRequest, d0 as ZKPRequestFromZKVerifier, c7 as ZeroKnowledgeProofRequest, ca as ZeroKnowledgeProofResponse, cl as operatorDisplayMap, cf as parseIden3Message, cg as parseSessionIdFromUrl } from '../../dist/identity-api.schema-38f27d6b.esm.js'; | ||
import 'zod'; | ||
import 'nanoid'; |
{ | ||
"name": "@nexeraid/identity-schemas", | ||
"version": "1.12.8-dev", | ||
"version": "1.12.9-dev", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2843694
48902
105