@nexeraid/identity-schemas 1.12.12-dev → 1.12.14-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/declarations/src/identity/app-requests.schema.d.ts +27 -0
- package/dist/declarations/src/identity/app-requests.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/identity-v2.schema.d.ts +98 -24
- package/dist/declarations/src/identity/identity-v2.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/kyc.schema.d.ts +7 -0
- package/dist/declarations/src/identity/kyc.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/zkps.schema.d.ts +5 -0
- package/dist/declarations/src/identity/zkps.schema.d.ts.map +1 -1
- package/dist/{frontend-utilities.schema-ff93910a.cjs.prod.js → frontend-utilities.schema-31908328.cjs.prod.js} +1 -1
- package/dist/{frontend-utilities.schema-16074d35.esm.js → frontend-utilities.schema-6232efb8.esm.js} +1 -1
- package/dist/{frontend-utilities.schema-6b27c823.cjs.dev.js → frontend-utilities.schema-7a3086ac.cjs.dev.js} +1 -1
- package/dist/{identity-api.schema-2ad5ade4.esm.js → identity-api.schema-5ea5d70a.esm.js} +12 -2
- package/dist/{identity-api.schema-37b8d83d.cjs.dev.js → identity-api.schema-7141ff26.cjs.prod.js} +12 -1
- package/dist/{identity-api.schema-83828ec9.cjs.prod.js → identity-api.schema-9b3fe72e.cjs.dev.js} +12 -1
- package/dist/nexeraid-identity-schemas.cjs.dev.js +3 -2
- package/dist/nexeraid-identity-schemas.cjs.prod.js +3 -2
- package/dist/nexeraid-identity-schemas.esm.js +3 -3
- package/dist/package.json +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/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
|
@@ -258,6 +258,7 @@ export declare const ScenarioAuthorizationData: z.ZodObject<{
|
|
|
258
258
|
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
259
259
|
requestId?: number | null | undefined;
|
|
260
260
|
}>;
|
|
261
|
+
workflowSessionId: z.ZodOptional<z.ZodString>;
|
|
261
262
|
}, "strip", z.ZodTypeAny, {
|
|
262
263
|
status: "pending" | "authorised" | "unauthorised";
|
|
263
264
|
projectId: string;
|
|
@@ -319,6 +320,7 @@ export declare const ScenarioAuthorizationData: z.ZodObject<{
|
|
|
319
320
|
to?: string | undefined;
|
|
320
321
|
} | null | undefined;
|
|
321
322
|
verificationError?: string | null | undefined;
|
|
323
|
+
workflowSessionId?: string | undefined;
|
|
322
324
|
}, {
|
|
323
325
|
status: "pending" | "authorised" | "unauthorised";
|
|
324
326
|
projectId: string;
|
|
@@ -380,6 +382,7 @@ export declare const ScenarioAuthorizationData: z.ZodObject<{
|
|
|
380
382
|
to?: string | undefined;
|
|
381
383
|
} | null | undefined;
|
|
382
384
|
verificationError?: string | null | undefined;
|
|
385
|
+
workflowSessionId?: string | undefined;
|
|
383
386
|
}>;
|
|
384
387
|
export type ScenarioAuthorizationData = z.infer<typeof ScenarioAuthorizationData>;
|
|
385
388
|
export declare const SdkVerificationResponseSchema: z.ZodObject<{
|
|
@@ -958,6 +961,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
|
|
|
958
961
|
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
959
962
|
requestId?: number | null | undefined;
|
|
960
963
|
}>;
|
|
964
|
+
workflowSessionId: z.ZodOptional<z.ZodString>;
|
|
961
965
|
}, "strip", z.ZodTypeAny, {
|
|
962
966
|
status: "pending" | "authorised" | "unauthorised";
|
|
963
967
|
projectId: string;
|
|
@@ -1019,6 +1023,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
|
|
|
1019
1023
|
to?: string | undefined;
|
|
1020
1024
|
} | null | undefined;
|
|
1021
1025
|
verificationError?: string | null | undefined;
|
|
1026
|
+
workflowSessionId?: string | undefined;
|
|
1022
1027
|
}, {
|
|
1023
1028
|
status: "pending" | "authorised" | "unauthorised";
|
|
1024
1029
|
projectId: string;
|
|
@@ -1080,6 +1085,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
|
|
|
1080
1085
|
to?: string | undefined;
|
|
1081
1086
|
} | null | undefined;
|
|
1082
1087
|
verificationError?: string | null | undefined;
|
|
1088
|
+
workflowSessionId?: string | undefined;
|
|
1083
1089
|
}>, "many">;
|
|
1084
1090
|
}, "strip", z.ZodTypeAny, {
|
|
1085
1091
|
type: "OffChainScenarioExecution";
|
|
@@ -1144,6 +1150,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
|
|
|
1144
1150
|
to?: string | undefined;
|
|
1145
1151
|
} | null | undefined;
|
|
1146
1152
|
verificationError?: string | null | undefined;
|
|
1153
|
+
workflowSessionId?: string | undefined;
|
|
1147
1154
|
}[];
|
|
1148
1155
|
}, {
|
|
1149
1156
|
type: "OffChainScenarioExecution";
|
|
@@ -1208,6 +1215,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
|
|
|
1208
1215
|
to?: string | undefined;
|
|
1209
1216
|
} | null | undefined;
|
|
1210
1217
|
verificationError?: string | null | undefined;
|
|
1218
|
+
workflowSessionId?: string | undefined;
|
|
1211
1219
|
}[];
|
|
1212
1220
|
}>;
|
|
1213
1221
|
export declare const OnChainScenarioExecutionData: z.ZodObject<{
|
|
@@ -1631,6 +1639,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1631
1639
|
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
1632
1640
|
requestId?: number | null | undefined;
|
|
1633
1641
|
}>;
|
|
1642
|
+
workflowSessionId: z.ZodOptional<z.ZodString>;
|
|
1634
1643
|
}, "strip", z.ZodTypeAny, {
|
|
1635
1644
|
status: "pending" | "authorised" | "unauthorised";
|
|
1636
1645
|
projectId: string;
|
|
@@ -1692,6 +1701,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1692
1701
|
to?: string | undefined;
|
|
1693
1702
|
} | null | undefined;
|
|
1694
1703
|
verificationError?: string | null | undefined;
|
|
1704
|
+
workflowSessionId?: string | undefined;
|
|
1695
1705
|
}, {
|
|
1696
1706
|
status: "pending" | "authorised" | "unauthorised";
|
|
1697
1707
|
projectId: string;
|
|
@@ -1753,6 +1763,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1753
1763
|
to?: string | undefined;
|
|
1754
1764
|
} | null | undefined;
|
|
1755
1765
|
verificationError?: string | null | undefined;
|
|
1766
|
+
workflowSessionId?: string | undefined;
|
|
1756
1767
|
}>, "many">;
|
|
1757
1768
|
}, "strip", z.ZodTypeAny, {
|
|
1758
1769
|
type: "OffChainScenarioExecution";
|
|
@@ -1817,6 +1828,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1817
1828
|
to?: string | undefined;
|
|
1818
1829
|
} | null | undefined;
|
|
1819
1830
|
verificationError?: string | null | undefined;
|
|
1831
|
+
workflowSessionId?: string | undefined;
|
|
1820
1832
|
}[];
|
|
1821
1833
|
}, {
|
|
1822
1834
|
type: "OffChainScenarioExecution";
|
|
@@ -1881,6 +1893,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1881
1893
|
to?: string | undefined;
|
|
1882
1894
|
} | null | undefined;
|
|
1883
1895
|
verificationError?: string | null | undefined;
|
|
1896
|
+
workflowSessionId?: string | undefined;
|
|
1884
1897
|
}[];
|
|
1885
1898
|
}>, z.ZodObject<{
|
|
1886
1899
|
type: z.ZodLiteral<"OnChainScenarioExecution">;
|
|
@@ -2306,6 +2319,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2306
2319
|
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
2307
2320
|
requestId?: number | null | undefined;
|
|
2308
2321
|
}>;
|
|
2322
|
+
workflowSessionId: z.ZodOptional<z.ZodString>;
|
|
2309
2323
|
}, "strip", z.ZodTypeAny, {
|
|
2310
2324
|
status: "pending" | "authorised" | "unauthorised";
|
|
2311
2325
|
projectId: string;
|
|
@@ -2367,6 +2381,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2367
2381
|
to?: string | undefined;
|
|
2368
2382
|
} | null | undefined;
|
|
2369
2383
|
verificationError?: string | null | undefined;
|
|
2384
|
+
workflowSessionId?: string | undefined;
|
|
2370
2385
|
}, {
|
|
2371
2386
|
status: "pending" | "authorised" | "unauthorised";
|
|
2372
2387
|
projectId: string;
|
|
@@ -2428,6 +2443,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2428
2443
|
to?: string | undefined;
|
|
2429
2444
|
} | null | undefined;
|
|
2430
2445
|
verificationError?: string | null | undefined;
|
|
2446
|
+
workflowSessionId?: string | undefined;
|
|
2431
2447
|
}>, "many">;
|
|
2432
2448
|
}, "strip", z.ZodTypeAny, {
|
|
2433
2449
|
type: "OffChainScenarioExecution";
|
|
@@ -2492,6 +2508,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2492
2508
|
to?: string | undefined;
|
|
2493
2509
|
} | null | undefined;
|
|
2494
2510
|
verificationError?: string | null | undefined;
|
|
2511
|
+
workflowSessionId?: string | undefined;
|
|
2495
2512
|
}[];
|
|
2496
2513
|
}, {
|
|
2497
2514
|
type: "OffChainScenarioExecution";
|
|
@@ -2556,6 +2573,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2556
2573
|
to?: string | undefined;
|
|
2557
2574
|
} | null | undefined;
|
|
2558
2575
|
verificationError?: string | null | undefined;
|
|
2576
|
+
workflowSessionId?: string | undefined;
|
|
2559
2577
|
}[];
|
|
2560
2578
|
}>, z.ZodObject<{
|
|
2561
2579
|
type: z.ZodLiteral<"OnChainScenarioExecution">;
|
|
@@ -2654,6 +2672,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2654
2672
|
to?: string | undefined;
|
|
2655
2673
|
} | null | undefined;
|
|
2656
2674
|
verificationError?: string | null | undefined;
|
|
2675
|
+
workflowSessionId?: string | undefined;
|
|
2657
2676
|
}[];
|
|
2658
2677
|
} | {
|
|
2659
2678
|
type: "OnChainScenarioExecution";
|
|
@@ -2747,6 +2766,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2747
2766
|
to?: string | undefined;
|
|
2748
2767
|
} | null | undefined;
|
|
2749
2768
|
verificationError?: string | null | undefined;
|
|
2769
|
+
workflowSessionId?: string | undefined;
|
|
2750
2770
|
}[];
|
|
2751
2771
|
} | {
|
|
2752
2772
|
type: "OnChainScenarioExecution";
|
|
@@ -3288,6 +3308,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
3288
3308
|
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
3289
3309
|
requestId?: number | null | undefined;
|
|
3290
3310
|
}>;
|
|
3311
|
+
workflowSessionId: z.ZodOptional<z.ZodString>;
|
|
3291
3312
|
}, "strip", z.ZodTypeAny, {
|
|
3292
3313
|
status: "pending" | "authorised" | "unauthorised";
|
|
3293
3314
|
projectId: string;
|
|
@@ -3349,6 +3370,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
3349
3370
|
to?: string | undefined;
|
|
3350
3371
|
} | null | undefined;
|
|
3351
3372
|
verificationError?: string | null | undefined;
|
|
3373
|
+
workflowSessionId?: string | undefined;
|
|
3352
3374
|
}, {
|
|
3353
3375
|
status: "pending" | "authorised" | "unauthorised";
|
|
3354
3376
|
projectId: string;
|
|
@@ -3410,6 +3432,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
3410
3432
|
to?: string | undefined;
|
|
3411
3433
|
} | null | undefined;
|
|
3412
3434
|
verificationError?: string | null | undefined;
|
|
3435
|
+
workflowSessionId?: string | undefined;
|
|
3413
3436
|
}>, "many">;
|
|
3414
3437
|
}, "strip", z.ZodTypeAny, {
|
|
3415
3438
|
type: "OffChainScenarioExecution";
|
|
@@ -3474,6 +3497,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
3474
3497
|
to?: string | undefined;
|
|
3475
3498
|
} | null | undefined;
|
|
3476
3499
|
verificationError?: string | null | undefined;
|
|
3500
|
+
workflowSessionId?: string | undefined;
|
|
3477
3501
|
}[];
|
|
3478
3502
|
}, {
|
|
3479
3503
|
type: "OffChainScenarioExecution";
|
|
@@ -3538,6 +3562,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
3538
3562
|
to?: string | undefined;
|
|
3539
3563
|
} | null | undefined;
|
|
3540
3564
|
verificationError?: string | null | undefined;
|
|
3565
|
+
workflowSessionId?: string | undefined;
|
|
3541
3566
|
}[];
|
|
3542
3567
|
}>, z.ZodObject<{
|
|
3543
3568
|
type: z.ZodLiteral<"OnChainScenarioExecution">;
|
|
@@ -3636,6 +3661,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
3636
3661
|
to?: string | undefined;
|
|
3637
3662
|
} | null | undefined;
|
|
3638
3663
|
verificationError?: string | null | undefined;
|
|
3664
|
+
workflowSessionId?: string | undefined;
|
|
3639
3665
|
}[];
|
|
3640
3666
|
} | {
|
|
3641
3667
|
type: "OnChainScenarioExecution";
|
|
@@ -3729,6 +3755,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
3729
3755
|
to?: string | undefined;
|
|
3730
3756
|
} | null | undefined;
|
|
3731
3757
|
verificationError?: string | null | undefined;
|
|
3758
|
+
workflowSessionId?: string | undefined;
|
|
3732
3759
|
}[];
|
|
3733
3760
|
} | {
|
|
3734
3761
|
type: "OnChainScenarioExecution";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app-requests.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["app-requests.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAoBxB,eAAO,MAAM,yBAAyB
|
|
1
|
+
{"version":3,"file":"app-requests.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["app-requests.schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,71 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
+
export declare const WalletChallengeRequest: z.ZodObject<{
|
|
3
|
+
address: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
|
|
4
|
+
namespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
|
|
5
|
+
blockchainId: z.ZodOptional<z.ZodUnion<[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>, 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>, z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_COSMOS_CHAINS.COSMOS, import("../blockchain.schema.js").NEXERA_COSMOS_CHAINS.COSMOS_TESTNET]>, import("../blockchain.schema.js").NEXERA_COSMOS_CHAINS, unknown>, z.ZodEffects<z.ZodEnum<["0x534e5f4d41494e", "0x534e5f5345504f4c4941"]>, "0x534e5f4d41494e" | "0x534e5f5345504f4c4941", unknown>]>>;
|
|
6
|
+
origin: z.ZodString;
|
|
7
|
+
workflowId: z.ZodString;
|
|
8
|
+
externalUserId: z.ZodOptional<z.ZodString>;
|
|
9
|
+
additionalInformation: z.ZodOptional<z.ZodObject<{
|
|
10
|
+
email: z.ZodOptional<z.ZodString>;
|
|
11
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
12
|
+
wallet: z.ZodOptional<z.ZodObject<{
|
|
13
|
+
address: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
|
|
14
|
+
namespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
|
|
15
|
+
}, "strip", z.ZodTypeAny, {
|
|
16
|
+
address: string;
|
|
17
|
+
namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
|
|
18
|
+
}, {
|
|
19
|
+
address: string;
|
|
20
|
+
namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
|
|
21
|
+
}>>;
|
|
22
|
+
}, "strip", z.ZodTypeAny, {
|
|
23
|
+
email?: string | undefined;
|
|
24
|
+
wallet?: {
|
|
25
|
+
address: string;
|
|
26
|
+
namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
|
|
27
|
+
} | undefined;
|
|
28
|
+
phone?: string | undefined;
|
|
29
|
+
}, {
|
|
30
|
+
email?: string | undefined;
|
|
31
|
+
wallet?: {
|
|
32
|
+
address: string;
|
|
33
|
+
namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
|
|
34
|
+
} | undefined;
|
|
35
|
+
phone?: string | undefined;
|
|
36
|
+
}>>;
|
|
37
|
+
}, "strip", z.ZodTypeAny, {
|
|
38
|
+
address: string;
|
|
39
|
+
namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
|
|
40
|
+
workflowId: string;
|
|
41
|
+
origin: string;
|
|
42
|
+
blockchainId?: 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 | "0x534e5f4d41494e" | "0x534e5f5345504f4c4941" | import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS | import("../blockchain.schema.js").NEXERA_COSMOS_CHAINS | undefined;
|
|
43
|
+
externalUserId?: string | undefined;
|
|
44
|
+
additionalInformation?: {
|
|
45
|
+
email?: string | undefined;
|
|
46
|
+
wallet?: {
|
|
47
|
+
address: string;
|
|
48
|
+
namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
|
|
49
|
+
} | undefined;
|
|
50
|
+
phone?: string | undefined;
|
|
51
|
+
} | undefined;
|
|
52
|
+
}, {
|
|
53
|
+
address: string;
|
|
54
|
+
namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
|
|
55
|
+
workflowId: string;
|
|
56
|
+
origin: string;
|
|
57
|
+
blockchainId?: unknown;
|
|
58
|
+
externalUserId?: string | undefined;
|
|
59
|
+
additionalInformation?: {
|
|
60
|
+
email?: string | undefined;
|
|
61
|
+
wallet?: {
|
|
62
|
+
address: string;
|
|
63
|
+
namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
|
|
64
|
+
} | undefined;
|
|
65
|
+
phone?: string | undefined;
|
|
66
|
+
} | undefined;
|
|
67
|
+
}>;
|
|
68
|
+
export type WalletChallengeRequest = z.infer<typeof WalletChallengeRequest>;
|
|
2
69
|
export declare const AuthSession: z.ZodObject<{
|
|
3
70
|
token: z.ZodString;
|
|
4
71
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -45,7 +112,7 @@ export declare const TrxSignatureGatingRequest: z.ZodObject<{
|
|
|
45
112
|
type: z.ZodLiteral<"trxSignatureGatingRequest">;
|
|
46
113
|
data: z.ZodObject<{
|
|
47
114
|
input: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
|
|
48
|
-
chainId: z.ZodEffects<z.ZodEnum<[import("../
|
|
115
|
+
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>;
|
|
49
116
|
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
50
117
|
contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
51
118
|
functionName: z.ZodString;
|
|
@@ -55,7 +122,7 @@ export declare const TrxSignatureGatingRequest: z.ZodObject<{
|
|
|
55
122
|
nonce: z.ZodOptional<z.ZodNumber>;
|
|
56
123
|
}, "strip", z.ZodTypeAny, {
|
|
57
124
|
userAddress: `0x${string}`;
|
|
58
|
-
chainId: import("../
|
|
125
|
+
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;
|
|
59
126
|
contractAbi: Record<string, unknown>[];
|
|
60
127
|
contractAddress: `0x${string}`;
|
|
61
128
|
functionName: string;
|
|
@@ -81,7 +148,7 @@ export declare const TrxSignatureGatingRequest: z.ZodObject<{
|
|
|
81
148
|
namespace: "eip155";
|
|
82
149
|
userAddress: string;
|
|
83
150
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
84
|
-
chainID: z.ZodEffects<z.ZodEnum<[import("../
|
|
151
|
+
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>;
|
|
85
152
|
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
|
|
86
153
|
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
|
|
87
154
|
args: z.ZodString;
|
|
@@ -93,7 +160,7 @@ export declare const TrxSignatureGatingRequest: z.ZodObject<{
|
|
|
93
160
|
contractAddress: `KT1${string}`;
|
|
94
161
|
functionName: `%${string}`;
|
|
95
162
|
args: string;
|
|
96
|
-
chainID: import("../
|
|
163
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
97
164
|
blockExpiration?: number | undefined;
|
|
98
165
|
nonce?: number | undefined;
|
|
99
166
|
}, {
|
|
@@ -117,7 +184,7 @@ export declare const TrxSignatureGatingRequest: z.ZodObject<{
|
|
|
117
184
|
}, "strip", z.ZodTypeAny, {
|
|
118
185
|
input: ({
|
|
119
186
|
userAddress: `0x${string}`;
|
|
120
|
-
chainId: import("../
|
|
187
|
+
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;
|
|
121
188
|
contractAbi: Record<string, unknown>[];
|
|
122
189
|
contractAddress: `0x${string}`;
|
|
123
190
|
functionName: string;
|
|
@@ -132,7 +199,7 @@ export declare const TrxSignatureGatingRequest: z.ZodObject<{
|
|
|
132
199
|
contractAddress: `KT1${string}`;
|
|
133
200
|
functionName: `%${string}`;
|
|
134
201
|
args: string;
|
|
135
|
-
chainID: import("../
|
|
202
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
136
203
|
blockExpiration?: number | undefined;
|
|
137
204
|
nonce?: number | undefined;
|
|
138
205
|
} & {
|
|
@@ -170,7 +237,7 @@ export declare const TrxSignatureGatingRequest: z.ZodObject<{
|
|
|
170
237
|
data: {
|
|
171
238
|
input: ({
|
|
172
239
|
userAddress: `0x${string}`;
|
|
173
|
-
chainId: import("../
|
|
240
|
+
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;
|
|
174
241
|
contractAbi: Record<string, unknown>[];
|
|
175
242
|
contractAddress: `0x${string}`;
|
|
176
243
|
functionName: string;
|
|
@@ -185,7 +252,7 @@ export declare const TrxSignatureGatingRequest: z.ZodObject<{
|
|
|
185
252
|
contractAddress: `KT1${string}`;
|
|
186
253
|
functionName: `%${string}`;
|
|
187
254
|
args: string;
|
|
188
|
-
chainID: import("../
|
|
255
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
189
256
|
blockExpiration?: number | undefined;
|
|
190
257
|
nonce?: number | undefined;
|
|
191
258
|
} & {
|
|
@@ -330,7 +397,7 @@ export declare const IdentitySdkMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
330
397
|
type: z.ZodLiteral<"trxSignatureGatingRequest">;
|
|
331
398
|
data: z.ZodObject<{
|
|
332
399
|
input: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
|
|
333
|
-
chainId: z.ZodEffects<z.ZodEnum<[import("../
|
|
400
|
+
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>;
|
|
334
401
|
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
335
402
|
contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
336
403
|
functionName: z.ZodString;
|
|
@@ -340,7 +407,7 @@ export declare const IdentitySdkMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
340
407
|
nonce: z.ZodOptional<z.ZodNumber>;
|
|
341
408
|
}, "strip", z.ZodTypeAny, {
|
|
342
409
|
userAddress: `0x${string}`;
|
|
343
|
-
chainId: import("../
|
|
410
|
+
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;
|
|
344
411
|
contractAbi: Record<string, unknown>[];
|
|
345
412
|
contractAddress: `0x${string}`;
|
|
346
413
|
functionName: string;
|
|
@@ -366,7 +433,7 @@ export declare const IdentitySdkMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
366
433
|
namespace: "eip155";
|
|
367
434
|
userAddress: string;
|
|
368
435
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
369
|
-
chainID: z.ZodEffects<z.ZodEnum<[import("../
|
|
436
|
+
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>;
|
|
370
437
|
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
|
|
371
438
|
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
|
|
372
439
|
args: z.ZodString;
|
|
@@ -378,7 +445,7 @@ export declare const IdentitySdkMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
378
445
|
contractAddress: `KT1${string}`;
|
|
379
446
|
functionName: `%${string}`;
|
|
380
447
|
args: string;
|
|
381
|
-
chainID: import("../
|
|
448
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
382
449
|
blockExpiration?: number | undefined;
|
|
383
450
|
nonce?: number | undefined;
|
|
384
451
|
}, {
|
|
@@ -402,7 +469,7 @@ export declare const IdentitySdkMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
402
469
|
}, "strip", z.ZodTypeAny, {
|
|
403
470
|
input: ({
|
|
404
471
|
userAddress: `0x${string}`;
|
|
405
|
-
chainId: import("../
|
|
472
|
+
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;
|
|
406
473
|
contractAbi: Record<string, unknown>[];
|
|
407
474
|
contractAddress: `0x${string}`;
|
|
408
475
|
functionName: string;
|
|
@@ -417,7 +484,7 @@ export declare const IdentitySdkMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
417
484
|
contractAddress: `KT1${string}`;
|
|
418
485
|
functionName: `%${string}`;
|
|
419
486
|
args: string;
|
|
420
|
-
chainID: import("../
|
|
487
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
421
488
|
blockExpiration?: number | undefined;
|
|
422
489
|
nonce?: number | undefined;
|
|
423
490
|
} & {
|
|
@@ -455,7 +522,7 @@ export declare const IdentitySdkMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
455
522
|
data: {
|
|
456
523
|
input: ({
|
|
457
524
|
userAddress: `0x${string}`;
|
|
458
|
-
chainId: import("../
|
|
525
|
+
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;
|
|
459
526
|
contractAbi: Record<string, unknown>[];
|
|
460
527
|
contractAddress: `0x${string}`;
|
|
461
528
|
functionName: string;
|
|
@@ -470,7 +537,7 @@ export declare const IdentitySdkMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
470
537
|
contractAddress: `KT1${string}`;
|
|
471
538
|
functionName: `%${string}`;
|
|
472
539
|
args: string;
|
|
473
|
-
chainID: import("../
|
|
540
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
474
541
|
blockExpiration?: number | undefined;
|
|
475
542
|
nonce?: number | undefined;
|
|
476
543
|
} & {
|
|
@@ -613,7 +680,7 @@ export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUn
|
|
|
613
680
|
type: z.ZodLiteral<"trxSignatureGatingRequest">;
|
|
614
681
|
data: z.ZodObject<{
|
|
615
682
|
input: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
|
|
616
|
-
chainId: z.ZodEffects<z.ZodEnum<[import("../
|
|
683
|
+
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>;
|
|
617
684
|
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
618
685
|
contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
|
|
619
686
|
functionName: z.ZodString;
|
|
@@ -623,7 +690,7 @@ export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUn
|
|
|
623
690
|
nonce: z.ZodOptional<z.ZodNumber>;
|
|
624
691
|
}, "strip", z.ZodTypeAny, {
|
|
625
692
|
userAddress: `0x${string}`;
|
|
626
|
-
chainId: import("../
|
|
693
|
+
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;
|
|
627
694
|
contractAbi: Record<string, unknown>[];
|
|
628
695
|
contractAddress: `0x${string}`;
|
|
629
696
|
functionName: string;
|
|
@@ -649,7 +716,7 @@ export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUn
|
|
|
649
716
|
namespace: "eip155";
|
|
650
717
|
userAddress: string;
|
|
651
718
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
652
|
-
chainID: z.ZodEffects<z.ZodEnum<[import("../
|
|
719
|
+
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>;
|
|
653
720
|
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
|
|
654
721
|
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
|
|
655
722
|
args: z.ZodString;
|
|
@@ -661,7 +728,7 @@ export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUn
|
|
|
661
728
|
contractAddress: `KT1${string}`;
|
|
662
729
|
functionName: `%${string}`;
|
|
663
730
|
args: string;
|
|
664
|
-
chainID: import("../
|
|
731
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
665
732
|
blockExpiration?: number | undefined;
|
|
666
733
|
nonce?: number | undefined;
|
|
667
734
|
}, {
|
|
@@ -685,7 +752,7 @@ export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUn
|
|
|
685
752
|
}, "strip", z.ZodTypeAny, {
|
|
686
753
|
input: ({
|
|
687
754
|
userAddress: `0x${string}`;
|
|
688
|
-
chainId: import("../
|
|
755
|
+
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;
|
|
689
756
|
contractAbi: Record<string, unknown>[];
|
|
690
757
|
contractAddress: `0x${string}`;
|
|
691
758
|
functionName: string;
|
|
@@ -700,7 +767,7 @@ export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUn
|
|
|
700
767
|
contractAddress: `KT1${string}`;
|
|
701
768
|
functionName: `%${string}`;
|
|
702
769
|
args: string;
|
|
703
|
-
chainID: import("../
|
|
770
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
704
771
|
blockExpiration?: number | undefined;
|
|
705
772
|
nonce?: number | undefined;
|
|
706
773
|
} & {
|
|
@@ -738,7 +805,7 @@ export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUn
|
|
|
738
805
|
data: {
|
|
739
806
|
input: ({
|
|
740
807
|
userAddress: `0x${string}`;
|
|
741
|
-
chainId: import("../
|
|
808
|
+
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;
|
|
742
809
|
contractAbi: Record<string, unknown>[];
|
|
743
810
|
contractAddress: `0x${string}`;
|
|
744
811
|
functionName: string;
|
|
@@ -753,7 +820,7 @@ export declare const IdentitySdkMessageWithIdentifier: z.ZodIntersection<z.ZodUn
|
|
|
753
820
|
contractAddress: `KT1${string}`;
|
|
754
821
|
functionName: `%${string}`;
|
|
755
822
|
args: string;
|
|
756
|
-
chainID: import("../
|
|
823
|
+
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
|
|
757
824
|
blockExpiration?: number | undefined;
|
|
758
825
|
nonce?: number | undefined;
|
|
759
826
|
} & {
|
|
@@ -1555,6 +1622,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
1555
1622
|
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
1556
1623
|
requestId?: number | null | undefined;
|
|
1557
1624
|
}>;
|
|
1625
|
+
workflowSessionId: z.ZodOptional<z.ZodString>;
|
|
1558
1626
|
}, "strip", z.ZodTypeAny, {
|
|
1559
1627
|
status: "pending" | "authorised" | "unauthorised";
|
|
1560
1628
|
projectId: string;
|
|
@@ -1616,6 +1684,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
1616
1684
|
to?: string | undefined;
|
|
1617
1685
|
} | null | undefined;
|
|
1618
1686
|
verificationError?: string | null | undefined;
|
|
1687
|
+
workflowSessionId?: string | undefined;
|
|
1619
1688
|
}, {
|
|
1620
1689
|
status: "pending" | "authorised" | "unauthorised";
|
|
1621
1690
|
projectId: string;
|
|
@@ -1677,6 +1746,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
1677
1746
|
to?: string | undefined;
|
|
1678
1747
|
} | null | undefined;
|
|
1679
1748
|
verificationError?: string | null | undefined;
|
|
1749
|
+
workflowSessionId?: string | undefined;
|
|
1680
1750
|
}>, "many">;
|
|
1681
1751
|
}, "strip", z.ZodTypeAny, {
|
|
1682
1752
|
type: "OffChainScenarioExecution";
|
|
@@ -1741,6 +1811,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
1741
1811
|
to?: string | undefined;
|
|
1742
1812
|
} | null | undefined;
|
|
1743
1813
|
verificationError?: string | null | undefined;
|
|
1814
|
+
workflowSessionId?: string | undefined;
|
|
1744
1815
|
}[];
|
|
1745
1816
|
}, {
|
|
1746
1817
|
type: "OffChainScenarioExecution";
|
|
@@ -1805,6 +1876,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
1805
1876
|
to?: string | undefined;
|
|
1806
1877
|
} | null | undefined;
|
|
1807
1878
|
verificationError?: string | null | undefined;
|
|
1879
|
+
workflowSessionId?: string | undefined;
|
|
1808
1880
|
}[];
|
|
1809
1881
|
}>, z.ZodObject<{
|
|
1810
1882
|
type: z.ZodLiteral<"OnChainScenarioExecution">;
|
|
@@ -1903,6 +1975,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
1903
1975
|
to?: string | undefined;
|
|
1904
1976
|
} | null | undefined;
|
|
1905
1977
|
verificationError?: string | null | undefined;
|
|
1978
|
+
workflowSessionId?: string | undefined;
|
|
1906
1979
|
}[];
|
|
1907
1980
|
} | {
|
|
1908
1981
|
type: "OnChainScenarioExecution";
|
|
@@ -1995,6 +2068,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
1995
2068
|
to?: string | undefined;
|
|
1996
2069
|
} | null | undefined;
|
|
1997
2070
|
verificationError?: string | null | undefined;
|
|
2071
|
+
workflowSessionId?: string | undefined;
|
|
1998
2072
|
}[];
|
|
1999
2073
|
} | {
|
|
2000
2074
|
type: "OnChainScenarioExecution";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"identity-v2.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["identity-v2.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"identity-v2.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["identity-v2.schema.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAa7B,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
|
|
@@ -991,6 +991,7 @@ export declare const IdentityMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
991
991
|
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
992
992
|
requestId?: number | null | undefined;
|
|
993
993
|
}>;
|
|
994
|
+
workflowSessionId: z.ZodOptional<z.ZodString>;
|
|
994
995
|
}, "strip", z.ZodTypeAny, {
|
|
995
996
|
status: "pending" | "authorised" | "unauthorised";
|
|
996
997
|
projectId: string;
|
|
@@ -1052,6 +1053,7 @@ export declare const IdentityMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1052
1053
|
to?: string | undefined;
|
|
1053
1054
|
} | null | undefined;
|
|
1054
1055
|
verificationError?: string | null | undefined;
|
|
1056
|
+
workflowSessionId?: string | undefined;
|
|
1055
1057
|
}, {
|
|
1056
1058
|
status: "pending" | "authorised" | "unauthorised";
|
|
1057
1059
|
projectId: string;
|
|
@@ -1113,6 +1115,7 @@ export declare const IdentityMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1113
1115
|
to?: string | undefined;
|
|
1114
1116
|
} | null | undefined;
|
|
1115
1117
|
verificationError?: string | null | undefined;
|
|
1118
|
+
workflowSessionId?: string | undefined;
|
|
1116
1119
|
}>, "many">;
|
|
1117
1120
|
}, "strip", z.ZodTypeAny, {
|
|
1118
1121
|
type: "OffChainScenarioExecution";
|
|
@@ -1177,6 +1180,7 @@ export declare const IdentityMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1177
1180
|
to?: string | undefined;
|
|
1178
1181
|
} | null | undefined;
|
|
1179
1182
|
verificationError?: string | null | undefined;
|
|
1183
|
+
workflowSessionId?: string | undefined;
|
|
1180
1184
|
}[];
|
|
1181
1185
|
}, {
|
|
1182
1186
|
type: "OffChainScenarioExecution";
|
|
@@ -1241,6 +1245,7 @@ export declare const IdentityMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1241
1245
|
to?: string | undefined;
|
|
1242
1246
|
} | null | undefined;
|
|
1243
1247
|
verificationError?: string | null | undefined;
|
|
1248
|
+
workflowSessionId?: string | undefined;
|
|
1244
1249
|
}[];
|
|
1245
1250
|
}>, z.ZodObject<{
|
|
1246
1251
|
type: z.ZodLiteral<"OnChainScenarioExecution">;
|
|
@@ -1339,6 +1344,7 @@ export declare const IdentityMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1339
1344
|
to?: string | undefined;
|
|
1340
1345
|
} | null | undefined;
|
|
1341
1346
|
verificationError?: string | null | undefined;
|
|
1347
|
+
workflowSessionId?: string | undefined;
|
|
1342
1348
|
}[];
|
|
1343
1349
|
} | {
|
|
1344
1350
|
type: "OnChainScenarioExecution";
|
|
@@ -1432,6 +1438,7 @@ export declare const IdentityMessage: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1432
1438
|
to?: string | undefined;
|
|
1433
1439
|
} | null | undefined;
|
|
1434
1440
|
verificationError?: string | null | undefined;
|
|
1441
|
+
workflowSessionId?: string | undefined;
|
|
1435
1442
|
}[];
|
|
1436
1443
|
} | {
|
|
1437
1444
|
type: "OnChainScenarioExecution";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kyc.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["kyc.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EAAE,uCAAuC,EAAE,wCAAqC;AAa5F,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAqD,CAAC;AAC9E,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"kyc.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["kyc.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EAAE,uCAAuC,EAAE,wCAAqC;AAa5F,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAqD,CAAC;AAC9E,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAI1B,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAShC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBnC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAChF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,KAAK,CACrD,OAAO,uCAAuC,CAC/C,CAAC"}
|
|
@@ -524,6 +524,7 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
|
|
|
524
524
|
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
525
525
|
requestId?: number | null | undefined;
|
|
526
526
|
}>;
|
|
527
|
+
workflowSessionId: z.ZodOptional<z.ZodString>;
|
|
527
528
|
}, "strip", z.ZodTypeAny, {
|
|
528
529
|
status: "pending" | "authorised" | "unauthorised";
|
|
529
530
|
projectId: string;
|
|
@@ -585,6 +586,7 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
|
|
|
585
586
|
to?: string | undefined;
|
|
586
587
|
} | null | undefined;
|
|
587
588
|
verificationError?: string | null | undefined;
|
|
589
|
+
workflowSessionId?: string | undefined;
|
|
588
590
|
}, {
|
|
589
591
|
status: "pending" | "authorised" | "unauthorised";
|
|
590
592
|
projectId: string;
|
|
@@ -646,6 +648,7 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
|
|
|
646
648
|
to?: string | undefined;
|
|
647
649
|
} | null | undefined;
|
|
648
650
|
verificationError?: string | null | undefined;
|
|
651
|
+
workflowSessionId?: string | undefined;
|
|
649
652
|
}>>;
|
|
650
653
|
}, "strip", z.ZodTypeAny, {
|
|
651
654
|
address: string;
|
|
@@ -712,6 +715,7 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
|
|
|
712
715
|
to?: string | undefined;
|
|
713
716
|
} | null | undefined;
|
|
714
717
|
verificationError?: string | null | undefined;
|
|
718
|
+
workflowSessionId?: string | undefined;
|
|
715
719
|
}>;
|
|
716
720
|
}, {
|
|
717
721
|
address: string;
|
|
@@ -778,6 +782,7 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
|
|
|
778
782
|
to?: string | undefined;
|
|
779
783
|
} | null | undefined;
|
|
780
784
|
verificationError?: string | null | undefined;
|
|
785
|
+
workflowSessionId?: string | undefined;
|
|
781
786
|
}>;
|
|
782
787
|
}>;
|
|
783
788
|
export type ProjectAuthorizationData = z.infer<typeof ProjectAuthorizationData>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zkps.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["zkps.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQrB,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAEpD,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;EAKnC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGtB,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAcjC,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE5E,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIpC,CAAC;AACH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,yBAAyB,CACjC,CAAC;AAEF,eAAO,MAAM,qCAAqC;;;;;;;;;;;;EAIhD,CAAC;AACH,MAAM,MAAM,qCAAqC,GAAG,CAAC,CAAC,KAAK,CACzD,OAAO,qCAAqC,CAC7C,CAAC;AAEF,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"zkps.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["zkps.schema.ts"],"names":[],"mappings":"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"}
|
package/dist/{frontend-utilities.schema-16074d35.esm.js → frontend-utilities.schema-6232efb8.esm.js}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { cA as SupportedType, dV as _toConsumableArray, cp as ARRAY_OPERATORS, cv as BOOLEAN_OPERATORS, ct as NUMERIC_OPERATORS, cr as STRING_OPERATORS } from './identity-api.schema-5ea5d70a.esm.js';
|
|
2
2
|
|
|
3
3
|
var VC_JSON_SCHEMA_MAP = {
|
|
4
4
|
ProofOfResidence: {
|
|
@@ -2297,7 +2297,8 @@ var ScenarioAuthorizationData = z.object({
|
|
|
2297
2297
|
requestMessage: AuthorizationRequestMessage,
|
|
2298
2298
|
responseMessage: AuthorizationResponseMessage.nullish(),
|
|
2299
2299
|
verificationError: z.string().nullish(),
|
|
2300
|
-
query: QueryConfigSimplified
|
|
2300
|
+
query: QueryConfigSimplified,
|
|
2301
|
+
workflowSessionId: UuidString.optional()
|
|
2301
2302
|
});
|
|
2302
2303
|
var SdkVerificationResponseSchema = z.object({
|
|
2303
2304
|
customerId: z.string(),
|
|
@@ -2990,6 +2991,15 @@ var CUSTOMER_AUTOMATION_REASONS = {
|
|
|
2990
2991
|
}
|
|
2991
2992
|
};
|
|
2992
2993
|
|
|
2994
|
+
var WalletChallengeRequest = z.object({
|
|
2995
|
+
address: BlockchainAddress,
|
|
2996
|
+
namespace: BlockchainNamespace,
|
|
2997
|
+
blockchainId: BlockchainId.optional(),
|
|
2998
|
+
origin: z.string().url(),
|
|
2999
|
+
workflowId: WorkflowId,
|
|
3000
|
+
externalUserId: ExternalClientId.optional(),
|
|
3001
|
+
additionalInformation: AdditionalUserInformationParams.optional()
|
|
3002
|
+
});
|
|
2993
3003
|
var AuthSession = z.object({
|
|
2994
3004
|
// JWT token containing user authentication data
|
|
2995
3005
|
// Generated by the Identity-api using the IdentityWidgetAccessToken_NEW schema
|
|
@@ -3191,4 +3201,4 @@ var WalletSignatureData = WalletSignatureResponse.and(z.object({
|
|
|
3191
3201
|
blockchainId: BlockchainId.optional()
|
|
3192
3202
|
}));
|
|
3193
3203
|
|
|
3194
|
-
export { TezosSignature as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, TxHash as D, EVM_BLOCK_TIME as E, EIP155Signature as F, FunctionCallData as G, shortAddress as H, AptosAddress as I, AptosSignature as J, StarknetAddress as K, StarknetSignature as L, PolkadotAddress as M, NEXERA_EVM_CHAINS as N, PolkadotSignature as O, POLYGON_NETWORK_NAMES as P, CosmosAddress as Q, CosmosSignature as R, StarknetChainId as S, TezosChainId as T, TezosImplicitAddress as U, TezosContractAddress as V, TezosAddress as W, TezosEntrypointName as X, EdSignature as Y, SpSignature as Z, P2Signature as _, NEXERA_TEZOS_CHAINS as a, ScenarioExecutionData as a$, CardanoAddress as a0, CardanoSignature as a1, BlockchainAddress as a2, BlockchainSignature as a3, BLOCKCHAIN_NAMESPACES as a4, BlockchainNamespace as a5, BLOCKCHAIN_NAMESPACES_NAMES as a6, DISPLAYED_LOCKCHAIN_NAMESPACES as a7, DisplayedBlockchainNamespace as a8, BLOCKCHAIN_NAME_TO_NAMESPACE as a9, VerificationModes as aA, VerificationMode as aB, IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS as aC, IdentityDocumentCountryListOption as aD, IDENTITY_DOCUMENT_OPTIONS as aE, IdentityDocumentOptionsType as aF, PERSONAL_INFORMATION_FIELDS as aG, PersonalInformationFieldsIdentityDocuments as aH, Identifier as aI, AdditionalUserInformationParams as aJ, IdentityWidgetAccessToken as aK, OrganizationId as aL, WorkspaceId as aM, WorkflowId as aN, ExternalClientId as aO, IdentityAppV2Web3JWT as aP, IdentityAppV2Web2JWT as aQ, IdentityWidgetAccessToken_NEW as aR, IdentityWidgetSessionToken as aS, ScenarioAuthorizationData as aT, SdkVerificationResponseSchema as aU, CloseScreenNotification as aV, KycCompletionData as aW, KycCompletionNotification as aX, RuleEngineScenarioExecutionData as aY, OffChainScenarioExecutionData as aZ, OnChainScenarioExecutionData as a_, BLOCKCHAIN_NAMESPACE_TO_NAME as aa, coerceBoolean as ab, ENVS as ac, EnvironmentSchema as ad, UuidString as ae, ZodParse as af, shortBlockchainAddress as ag, PUBLIC_SERVICES_SCHEMA_MAP as ah, ISO3CountryCode as ai, ALPHA_2_COUNTRIES as aj, Alpha2Country as ak, countryISO3toISO2Mapping as al, countryISO2toISO3Mapping as am, isoCountriesNameFromISO2 as an, parseISO3CountryCode as ao, createBrandedSchemaId as ap, StorageId as aq, IdentityId as ar, EmailId as as, WalletId as at, AppId as au, ChallengeId as av, TestId as aw, generateId as ax, FLOW_TYPES as ay, FlowType as az, NEXERA_COSMOS_CHAINS as b,
|
|
3204
|
+
export { TezosSignature as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, TxHash as D, EVM_BLOCK_TIME as E, EIP155Signature as F, FunctionCallData as G, shortAddress as H, AptosAddress as I, AptosSignature as J, StarknetAddress as K, StarknetSignature as L, PolkadotAddress as M, NEXERA_EVM_CHAINS as N, PolkadotSignature as O, POLYGON_NETWORK_NAMES as P, CosmosAddress as Q, CosmosSignature as R, StarknetChainId as S, TezosChainId as T, TezosImplicitAddress as U, TezosContractAddress as V, TezosAddress as W, TezosEntrypointName as X, EdSignature as Y, SpSignature as Z, P2Signature as _, NEXERA_TEZOS_CHAINS as a, ScenarioExecutionData as a$, CardanoAddress as a0, CardanoSignature as a1, BlockchainAddress as a2, BlockchainSignature as a3, BLOCKCHAIN_NAMESPACES as a4, BlockchainNamespace as a5, BLOCKCHAIN_NAMESPACES_NAMES as a6, DISPLAYED_LOCKCHAIN_NAMESPACES as a7, DisplayedBlockchainNamespace as a8, BLOCKCHAIN_NAME_TO_NAMESPACE as a9, VerificationModes as aA, VerificationMode as aB, IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS as aC, IdentityDocumentCountryListOption as aD, IDENTITY_DOCUMENT_OPTIONS as aE, IdentityDocumentOptionsType as aF, PERSONAL_INFORMATION_FIELDS as aG, PersonalInformationFieldsIdentityDocuments as aH, Identifier as aI, AdditionalUserInformationParams as aJ, IdentityWidgetAccessToken as aK, OrganizationId as aL, WorkspaceId as aM, WorkflowId as aN, ExternalClientId as aO, IdentityAppV2Web3JWT as aP, IdentityAppV2Web2JWT as aQ, IdentityWidgetAccessToken_NEW as aR, IdentityWidgetSessionToken as aS, ScenarioAuthorizationData as aT, SdkVerificationResponseSchema as aU, CloseScreenNotification as aV, KycCompletionData as aW, KycCompletionNotification as aX, RuleEngineScenarioExecutionData as aY, OffChainScenarioExecutionData as aZ, OnChainScenarioExecutionData as a_, BLOCKCHAIN_NAMESPACE_TO_NAME as aa, coerceBoolean as ab, ENVS as ac, EnvironmentSchema as ad, UuidString as ae, ZodParse as af, shortBlockchainAddress as ag, PUBLIC_SERVICES_SCHEMA_MAP as ah, ISO3CountryCode as ai, ALPHA_2_COUNTRIES as aj, Alpha2Country as ak, countryISO3toISO2Mapping as al, countryISO2toISO3Mapping as am, isoCountriesNameFromISO2 as an, parseISO3CountryCode as ao, createBrandedSchemaId as ap, StorageId as aq, IdentityId as ar, EmailId as as, WalletId as at, AppId as au, ChallengeId as av, TestId as aw, generateId as ax, FLOW_TYPES as ay, FlowType as az, NEXERA_COSMOS_CHAINS as b, IdentitySdkMessage as b$, ScenarioExecutionNotification as b0, IsVerifiedNotification as b1, PolygonIdInitialized as b2, OcvSdkInitialized as b3, StartCompletedNotification as b4, IdentityNotificationMessage as b5, InitialDataRequest as b6, SignatureRequest as b7, TransactionData as b8, SendTransactionRequest as b9, ScenarioExecutionResponse as bA, RuleResultStatuses as bB, RuleResultStatus as bC, RuleResultStatusLabels as bD, ComplianceImplementationStepsInput as bE, SimplifiedCredential as bF, GetCredentialsRequest as bG, GetCredentialsResponse as bH, PolygonIdRequestData as bI, PolygonIdRequest as bJ, PolygonIdResponseData as bK, PolygonIdResponse as bL, StartFlowRequest as bM, IsVerifiedRequest as bN, IsVerifiedResponse as bO, GetTxAuthSigRequest as bP, GetTxAuthSigResponse as bQ, GetTxAuthSigRequestTezos as bR, GetTxAuthSigResponseTezos as bS, HostRequestMessage as bT, IdentityResponseMessage as bU, WalletChallengeRequest as bV, AuthSession as bW, ChallengeResponse as bX, WalletSignResponse as bY, TrxSignatureGatingRequest as bZ, GetCustomerStatusRequest as b_, IdentityRequestMessage as ba, AVAILABLE_FLOWS as bb, AvailableFlow as bc, DataAvailableOnStart as bd, InitialDataResponse as be, SignatureResponse as bf, TransactionResponse as bg, HostResponseMessage as bh, ChallengeQueryOperators as bi, ChallengeQueryOperator as bj, OperatorToChallengeQueryOperator as bk, ChallengeQueryOperatorToOperator as bl, ChallengeQuerySchema as bm, ExecuteChallengeQueryInput as bn, ExecuteChallengeQueryConfig as bo, OpaChallengeQueryResponse as bp, ExecuteChallengeQueryResponse as bq, OPAChallengeQuery as br, OnChainRuleResult as bs, OffChainZKPRuleResult as bt, SdkVerificationOutput as bu, ScenarioTypes as bv, ScenarioType as bw, ScenarioStatuses as bx, ScenarioStatus as by, RuleEngineResponse as bz, NEXERA_STARKNET_CHAINS as c, ExtendedTxAuthDataSignatureResponse as c$, IdentitySdkMessageWithIdentifier as c0, TxAuthDataSignatureResponse as c1, GetCustomerStatusResponse as c2, IdentityAppMessage as c3, HostMessage as c4, IdentityMessage as c5, RequiredDataRowSchema as c6, RequiredVerificationData as c7, MediaType as c8, MediaTypePID as c9, SupportedType as cA, SupportedTypes as cB, IDInformation as cC, QueryConfig as cD, QueryType as cE, QueryConfigSimplified as cF, PartialQueryConfigSimplified as cG, QueryConfigSimplifiedParsed as cH, QueryConfiguration as cI, NonParsedQueryConfiguration as cJ, CreateQueryConfigurationInput as cK, CreateQueryConfigurationResponse as cL, UpdateQueryConfigurationInput as cM, UpdateQueryConfigurationResponse as cN, DeleteQueryConfigurationInput as cO, DeleteQueryConfigurationResponse as cP, QueryCredentialTypes as cQ, QueryCredentialType as cR, TxAuthInput as cS, TxSignatureResponse as cT, GetTxAuthDataSignatureResponse as cU, TezosTxAuthInput as cV, TezosTxSignatureResponse as cW, GetTezosTxAuthDataSignatureResponse as cX, ExtendedTxAuthInput as cY, ExtendedTezosTxAuthInput as cZ, AnyTxAuthInput as c_, ZeroKnowledgeProofRequest as ca, AuthorizationRequestMessage as cb, ProofData as cc, ZeroKnowledgeProofResponse as cd, AuthorizationResponseMessage as ce, CredentialQrCodeData as cf, AuthQrCodeData as cg, QrCodeLinkWithSchemaType as ch, parseIden3Message as ci, parseSessionIdFromUrl as cj, AllCredentialAttributes as ck, AllCredentialValues as cl, Operator as cm, ZKPOperator as cn, operatorDisplayMap as co, ARRAY_OPERATORS as cp, ArrayOperator as cq, STRING_OPERATORS as cr, StringOperator as cs, NUMERIC_OPERATORS as ct, NumericOperator as cu, BOOLEAN_OPERATORS as cv, BooleanOperator as cw, DATE_OPERATORS as cx, DateOperator as cy, SUPPORTED_TYPES as cz, NEXERA_EVM_CHAIN_NAMES as d, ExtendedTezosTxAuthDataSignatureResponse as d0, AnyTxAuthDataSignatureResponse as d1, ZKPRequest as d2, ZKPRequestFromZKVerifier as d3, OffChainZKP as d4, CreateAuthRequestProps as d5, CreateZKProofRequestProps as d6, AllScenarioExecutionAuthorizationData as d7, ProjectAuthorizationData as d8, OnChainZKP as d9, ID3CredentialSubjectSchema as dA, IDScanCredentialSubjectSchema as dB, IDScanPassportCredentialSubjectSchema as dC, IDScanSelfieCredentialSubjectSchema as dD, OLD_IDImageCredentialSubjectSchema as dE, OLD_IDInformationCredentialSubjectSchema as dF, OLD_ProofOfResidenceCredentialSubjectSchema as dG, OLD_SelfieImageCredentialSubjectSchema as dH, OLD_AMLScreeningsResultsCredentialSubjectSchema as dI, IDInformationCredentialSubjectSchema as dJ, IDImageCredentialSubjectSchema as dK, SelfieImageCredentialSubjectSchema as dL, ProofOfResidenceCredentialSubjectSchema as dM, GenericVerifiableCredentialSchema as dN, CredentialSchemas as dO, CredentialNames as dP, NexeraCredentialType as dQ, getCredentialName as dR, CredentialType as dS, VerifiableCredential as dT, CredentialMediaType as dU, _toConsumableArray as dV, OnChainZKPFromNexeraID as da, OnChainZKPScenarioFromCms as db, OnChainZKPPayload as dc, SCENARIO_AUTHORIZATION_STATUSES as dd, ScenarioAuthorizationStatus as de, WalletSignatureResponse as df, WalletSignatureData as dg, RiskScoreTypes as dh, RiskScoreType as di, CustomerTypes as dj, CustomerType as dk, KycOnboardingLevels as dl, KycOnboardingLevel as dm, KybOnboardingLevels as dn, KybOnboardingLevel as dp, CustomerOnboardingLevels as dq, CustomerOnboardingLevel as dr, CustomerStatuses as ds, CustomerStatus as dt, BasicCustomerContactInformation as du, CUSTOMERS_CHARTS as dv, CustomersChartType as dw, CUSTOMER_TABLE_COLUMNS as dx, CustomerTableColumn as dy, CUSTOMER_AUTOMATION_REASONS as dz, NEXERA_EVM_CHAIN_NAMES_LIST as e, NEXERA_CHAIN_VALUES as f, EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC as g, EvmChainId as h, PolygonNetworkNames as i, NEXERA_TEZOS_CHAIN_NAMES as j, NEXERA_TEZOS_CHAIN_NAMES_LIST as k, NEXERA_TEZOS_CHAIN_VALUES as l, ACTIVE_TEZOS_CHAIN_VALUES as m, COSMOS_CHAIN_NAMES as n, COSMOS_CHAIN_NAMES_LIST as o, COSMOS_CHAIN_VALUES as p, ACTIVE_COSMOS_CHAIN_VALUES as q, CosmosChainId as r, NEXERA_STARKNET_CHAIN_NAMES as s, NEXERA_STARKNET_CHAIN_VALUES as t, NEXERA_ACTIVE_STARKNET_CHAIN_VALUES as u, isValidAddress as v, String0x as w, PrivateKey as x, PublicKey as y, AddressSchema as z };
|
package/dist/{identity-api.schema-37b8d83d.cjs.dev.js → identity-api.schema-7141ff26.cjs.prod.js}
RENAMED
|
@@ -2299,7 +2299,8 @@ var ScenarioAuthorizationData = zod.z.object({
|
|
|
2299
2299
|
requestMessage: AuthorizationRequestMessage,
|
|
2300
2300
|
responseMessage: AuthorizationResponseMessage.nullish(),
|
|
2301
2301
|
verificationError: zod.z.string().nullish(),
|
|
2302
|
-
query: QueryConfigSimplified
|
|
2302
|
+
query: QueryConfigSimplified,
|
|
2303
|
+
workflowSessionId: UuidString.optional()
|
|
2303
2304
|
});
|
|
2304
2305
|
var SdkVerificationResponseSchema = zod.z.object({
|
|
2305
2306
|
customerId: zod.z.string(),
|
|
@@ -2992,6 +2993,15 @@ var CUSTOMER_AUTOMATION_REASONS = {
|
|
|
2992
2993
|
}
|
|
2993
2994
|
};
|
|
2994
2995
|
|
|
2996
|
+
var WalletChallengeRequest = zod.z.object({
|
|
2997
|
+
address: BlockchainAddress,
|
|
2998
|
+
namespace: BlockchainNamespace,
|
|
2999
|
+
blockchainId: BlockchainId.optional(),
|
|
3000
|
+
origin: zod.z.string().url(),
|
|
3001
|
+
workflowId: WorkflowId,
|
|
3002
|
+
externalUserId: ExternalClientId.optional(),
|
|
3003
|
+
additionalInformation: AdditionalUserInformationParams.optional()
|
|
3004
|
+
});
|
|
2995
3005
|
var AuthSession = zod.z.object({
|
|
2996
3006
|
// JWT token containing user authentication data
|
|
2997
3007
|
// Generated by the Identity-api using the IdentityWidgetAccessToken_NEW schema
|
|
@@ -3468,6 +3478,7 @@ exports.UuidString = UuidString;
|
|
|
3468
3478
|
exports.VerifiableCredential = VerifiableCredential;
|
|
3469
3479
|
exports.VerificationMode = VerificationMode;
|
|
3470
3480
|
exports.VerificationModes = VerificationModes;
|
|
3481
|
+
exports.WalletChallengeRequest = WalletChallengeRequest;
|
|
3471
3482
|
exports.WalletId = WalletId;
|
|
3472
3483
|
exports.WalletSignResponse = WalletSignResponse;
|
|
3473
3484
|
exports.WalletSignatureData = WalletSignatureData;
|
package/dist/{identity-api.schema-83828ec9.cjs.prod.js → identity-api.schema-9b3fe72e.cjs.dev.js}
RENAMED
|
@@ -2299,7 +2299,8 @@ var ScenarioAuthorizationData = zod.z.object({
|
|
|
2299
2299
|
requestMessage: AuthorizationRequestMessage,
|
|
2300
2300
|
responseMessage: AuthorizationResponseMessage.nullish(),
|
|
2301
2301
|
verificationError: zod.z.string().nullish(),
|
|
2302
|
-
query: QueryConfigSimplified
|
|
2302
|
+
query: QueryConfigSimplified,
|
|
2303
|
+
workflowSessionId: UuidString.optional()
|
|
2303
2304
|
});
|
|
2304
2305
|
var SdkVerificationResponseSchema = zod.z.object({
|
|
2305
2306
|
customerId: zod.z.string(),
|
|
@@ -2992,6 +2993,15 @@ var CUSTOMER_AUTOMATION_REASONS = {
|
|
|
2992
2993
|
}
|
|
2993
2994
|
};
|
|
2994
2995
|
|
|
2996
|
+
var WalletChallengeRequest = zod.z.object({
|
|
2997
|
+
address: BlockchainAddress,
|
|
2998
|
+
namespace: BlockchainNamespace,
|
|
2999
|
+
blockchainId: BlockchainId.optional(),
|
|
3000
|
+
origin: zod.z.string().url(),
|
|
3001
|
+
workflowId: WorkflowId,
|
|
3002
|
+
externalUserId: ExternalClientId.optional(),
|
|
3003
|
+
additionalInformation: AdditionalUserInformationParams.optional()
|
|
3004
|
+
});
|
|
2995
3005
|
var AuthSession = zod.z.object({
|
|
2996
3006
|
// JWT token containing user authentication data
|
|
2997
3007
|
// Generated by the Identity-api using the IdentityWidgetAccessToken_NEW schema
|
|
@@ -3468,6 +3478,7 @@ exports.UuidString = UuidString;
|
|
|
3468
3478
|
exports.VerifiableCredential = VerifiableCredential;
|
|
3469
3479
|
exports.VerificationMode = VerificationMode;
|
|
3470
3480
|
exports.VerificationModes = VerificationModes;
|
|
3481
|
+
exports.WalletChallengeRequest = WalletChallengeRequest;
|
|
3471
3482
|
exports.WalletId = WalletId;
|
|
3472
3483
|
exports.WalletSignResponse = WalletSignResponse;
|
|
3473
3484
|
exports.WalletSignatureData = WalletSignatureData;
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
7
|
-
var frontendUtilities_schema = require('./frontend-utilities.schema-
|
|
6
|
+
var identityApi_schema = require('./identity-api.schema-9b3fe72e.cjs.dev.js');
|
|
7
|
+
var frontendUtilities_schema = require('./frontend-utilities.schema-7a3086ac.cjs.dev.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -346,6 +346,7 @@ exports.UuidString = identityApi_schema.UuidString;
|
|
|
346
346
|
exports.VerifiableCredential = identityApi_schema.VerifiableCredential;
|
|
347
347
|
exports.VerificationMode = identityApi_schema.VerificationMode;
|
|
348
348
|
exports.VerificationModes = identityApi_schema.VerificationModes;
|
|
349
|
+
exports.WalletChallengeRequest = identityApi_schema.WalletChallengeRequest;
|
|
349
350
|
exports.WalletId = identityApi_schema.WalletId;
|
|
350
351
|
exports.WalletSignResponse = identityApi_schema.WalletSignResponse;
|
|
351
352
|
exports.WalletSignatureData = identityApi_schema.WalletSignatureData;
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
7
|
-
var frontendUtilities_schema = require('./frontend-utilities.schema-
|
|
6
|
+
var identityApi_schema = require('./identity-api.schema-7141ff26.cjs.prod.js');
|
|
7
|
+
var frontendUtilities_schema = require('./frontend-utilities.schema-31908328.cjs.prod.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -346,6 +346,7 @@ exports.UuidString = identityApi_schema.UuidString;
|
|
|
346
346
|
exports.VerifiableCredential = identityApi_schema.VerifiableCredential;
|
|
347
347
|
exports.VerificationMode = identityApi_schema.VerificationMode;
|
|
348
348
|
exports.VerificationModes = identityApi_schema.VerificationModes;
|
|
349
|
+
exports.WalletChallengeRequest = identityApi_schema.WalletChallengeRequest;
|
|
349
350
|
exports.WalletId = identityApi_schema.WalletId;
|
|
350
351
|
exports.WalletSignResponse = identityApi_schema.WalletSignResponse;
|
|
351
352
|
exports.WalletSignatureData = identityApi_schema.WalletSignatureData;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { C as CredentialTypes } from './identity-api.schema-
|
|
3
|
-
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, aj as ALPHA_2_COUNTRIES,
|
|
4
|
-
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-
|
|
2
|
+
import { C as CredentialTypes } from './identity-api.schema-5ea5d70a.esm.js';
|
|
3
|
+
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, aj as ALPHA_2_COUNTRIES, cp as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, aJ as AdditionalUserInformationParams, z as AddressSchema, ck as AllCredentialAttributes, cl as AllCredentialValues, d7 as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, d1 as AnyTxAuthDataSignatureResponse, c_ as AnyTxAuthInput, au as AppId, I as AptosAddress, J as AptosSignature, cq as ArrayOperator, cg as AuthQrCodeData, bW as AuthSession, cb as AuthorizationRequestMessage, ce 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, cv as BOOLEAN_OPERATORS, du as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cw as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, dv as CUSTOMERS_CHARTS, dz as CUSTOMER_AUTOMATION_REASONS, dx as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, av as ChallengeId, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bX as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d5 as CreateAuthRequestProps, cK as CreateQueryConfigurationInput, cL as CreateQueryConfigurationResponse, d6 as CreateZKProofRequestProps, dU as CredentialMediaType, dP as CredentialNames, cf as CredentialQrCodeData, dO as CredentialSchemas, dS as CredentialType, C as CredentialTypes, dr as CustomerOnboardingLevel, dq as CustomerOnboardingLevels, dt as CustomerStatus, ds as CustomerStatuses, dy as CustomerTableColumn, dk as CustomerType, dj as CustomerTypes, dw as CustomersChartType, cx as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bd as DataAvailableOnStart, cy as DateOperator, cO as DeleteQueryConfigurationInput, cP 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, d0 as ExtendedTezosTxAuthDataSignatureResponse, cZ as ExtendedTezosTxAuthInput, c$ as ExtendedTxAuthDataSignatureResponse, cY as ExtendedTxAuthInput, aO as ExternalClientId, ay as FLOW_TYPES, az as FlowType, G as FunctionCallData, dN as GenericVerifiableCredentialSchema, bG as GetCredentialsRequest, bH as GetCredentialsResponse, b_ as GetCustomerStatusRequest, c2 as GetCustomerStatusResponse, cX as GetTezosTxAuthDataSignatureResponse, cU as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c4 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, dA as ID3CredentialSubjectSchema, aC as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, aE as IDENTITY_DOCUMENT_OPTIONS, dK as IDImageCredentialSubjectSchema, cC as IDInformation, dJ as IDInformationCredentialSubjectSchema, dB as IDScanCredentialSubjectSchema, dC as IDScanPassportCredentialSubjectSchema, dD as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, aI as Identifier, c3 as IdentityAppMessage, aQ as IdentityAppV2Web2JWT, aP as IdentityAppV2Web3JWT, aD as IdentityDocumentCountryListOption, aF as IdentityDocumentOptionsType, ar as IdentityId, c5 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, b$ as IdentitySdkMessage, c0 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, dp as KybOnboardingLevel, dn as KybOnboardingLevels, aW as KycCompletionData, aX as KycCompletionNotification, dm as KycOnboardingLevel, dl as KycOnboardingLevels, c8 as MediaType, c9 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, ct as NUMERIC_OPERATORS, dQ as NexeraCredentialType, cJ as NonParsedQueryConfiguration, cu as NumericOperator, dI as OLD_AMLScreeningsResultsCredentialSubjectSchema, dE as OLD_IDImageCredentialSubjectSchema, dF as OLD_IDInformationCredentialSubjectSchema, dG as OLD_ProofOfResidenceCredentialSubjectSchema, dH as OLD_SelfieImageCredentialSubjectSchema, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d4 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d9 as OnChainZKP, da as OnChainZKPFromNexeraID, dc as OnChainZKPPayload, db as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cm 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, cG 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, d8 as ProjectAuthorizationData, cc as ProofData, dM as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, ch as QrCodeLinkWithSchemaType, cD as QueryConfig, cF as QueryConfigSimplified, cH as QueryConfigSimplifiedParsed, cI as QueryConfiguration, cR as QueryCredentialType, cQ as QueryCredentialTypes, cE as QueryType, c6 as RequiredDataRowSchema, c7 as RequiredVerificationData, di as RiskScoreType, dh as RiskScoreTypes, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, dd as SCENARIO_AUTHORIZATION_STATUSES, cr as STRING_OPERATORS, cz as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, de 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, dL as SelfieImageCredentialSubjectSchema, 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, cs as StringOperator, cA as SupportedType, cB as SupportedTypes, aw as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cV as TezosTxAuthInput, cW as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bZ as TrxSignatureGatingRequest, c1 as TxAuthDataSignatureResponse, cS as TxAuthInput, D as TxHash, cT as TxSignatureResponse, cM as UpdateQueryConfigurationInput, cN as UpdateQueryConfigurationResponse, ae as UuidString, dT as VerifiableCredential, aB as VerificationMode, aA as VerificationModes, bV as WalletChallengeRequest, at as WalletId, bY as WalletSignResponse, dg as WalletSignatureData, df as WalletSignatureResponse, aN as WorkflowId, aM as WorkspaceId, cn as ZKPOperator, d2 as ZKPRequest, d3 as ZKPRequestFromZKVerifier, ca as ZeroKnowledgeProofRequest, cd as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, ap as createBrandedSchemaId, ax as generateId, dR as getCredentialName, v as isValidAddress, an as isoCountriesNameFromISO2, co as operatorDisplayMap, ao as parseISO3CountryCode, ci as parseIden3Message, cj as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-5ea5d70a.esm.js';
|
|
4
|
+
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-6232efb8.esm.js';
|
|
5
5
|
import 'nanoid';
|
|
6
6
|
|
|
7
7
|
var decodeUint8Array = function decodeUint8Array(data) {
|
package/dist/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-9b3fe72e.cjs.dev.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('nanoid');
|
|
8
8
|
|
|
@@ -150,6 +150,7 @@ exports.TxAuthInput = identityApi_schema.TxAuthInput;
|
|
|
150
150
|
exports.TxSignatureResponse = identityApi_schema.TxSignatureResponse;
|
|
151
151
|
exports.UpdateQueryConfigurationInput = identityApi_schema.UpdateQueryConfigurationInput;
|
|
152
152
|
exports.UpdateQueryConfigurationResponse = identityApi_schema.UpdateQueryConfigurationResponse;
|
|
153
|
+
exports.WalletChallengeRequest = identityApi_schema.WalletChallengeRequest;
|
|
153
154
|
exports.WalletSignResponse = identityApi_schema.WalletSignResponse;
|
|
154
155
|
exports.WalletSignatureData = identityApi_schema.WalletSignatureData;
|
|
155
156
|
exports.WalletSignatureResponse = identityApi_schema.WalletSignatureResponse;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-7141ff26.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('nanoid');
|
|
8
8
|
|
|
@@ -150,6 +150,7 @@ exports.TxAuthInput = identityApi_schema.TxAuthInput;
|
|
|
150
150
|
exports.TxSignatureResponse = identityApi_schema.TxSignatureResponse;
|
|
151
151
|
exports.UpdateQueryConfigurationInput = identityApi_schema.UpdateQueryConfigurationInput;
|
|
152
152
|
exports.UpdateQueryConfigurationResponse = identityApi_schema.UpdateQueryConfigurationResponse;
|
|
153
|
+
exports.WalletChallengeRequest = identityApi_schema.WalletChallengeRequest;
|
|
153
154
|
exports.WalletSignResponse = identityApi_schema.WalletSignResponse;
|
|
154
155
|
exports.WalletSignatureData = identityApi_schema.WalletSignatureData;
|
|
155
156
|
exports.WalletSignatureResponse = identityApi_schema.WalletSignatureResponse;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { cp as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, ck as AllCredentialAttributes, cl as AllCredentialValues, d7 as AllScenarioExecutionAuthorizationData, d1 as AnyTxAuthDataSignatureResponse, c_ as AnyTxAuthInput, cq as ArrayOperator, cg as AuthQrCodeData, bW as AuthSession, cb as AuthorizationRequestMessage, ce as AuthorizationResponseMessage, bc as AvailableFlow, cv as BOOLEAN_OPERATORS, cw as BooleanOperator, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bX as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, d5 as CreateAuthRequestProps, cK as CreateQueryConfigurationInput, cL as CreateQueryConfigurationResponse, d6 as CreateZKProofRequestProps, cf as CredentialQrCodeData, cx as DATE_OPERATORS, bd as DataAvailableOnStart, cy as DateOperator, cO as DeleteQueryConfigurationInput, cP as DeleteQueryConfigurationResponse, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, d0 as ExtendedTezosTxAuthDataSignatureResponse, cZ as ExtendedTezosTxAuthInput, c$ as ExtendedTxAuthDataSignatureResponse, cY as ExtendedTxAuthInput, bG as GetCredentialsRequest, bH as GetCredentialsResponse, b_ as GetCustomerStatusRequest, c2 as GetCustomerStatusResponse, cX as GetTezosTxAuthDataSignatureResponse, cU as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c4 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, cC as IDInformation, c3 as IdentityAppMessage, c5 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, b$ as IdentitySdkMessage, c0 as IdentitySdkMessageWithIdentifier, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c8 as MediaType, c9 as MediaTypePID, ct as NUMERIC_OPERATORS, cJ as NonParsedQueryConfiguration, cu as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d4 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d9 as OnChainZKP, da as OnChainZKPFromNexeraID, dc as OnChainZKPPayload, db as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cm as Operator, bk as OperatorToChallengeQueryOperator, cG as PartialQueryConfigSimplified, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, d8 as ProjectAuthorizationData, cc as ProofData, ch as QrCodeLinkWithSchemaType, cD as QueryConfig, cF as QueryConfigSimplified, cH as QueryConfigSimplifiedParsed, cI as QueryConfiguration, cR as QueryCredentialType, cQ as QueryCredentialTypes, cE as QueryType, c6 as RequiredDataRowSchema, c7 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, dd as SCENARIO_AUTHORIZATION_STATUSES, cr as STRING_OPERATORS, cz as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, de 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, cs as StringOperator, cA as SupportedType, cB as SupportedTypes, cV as TezosTxAuthInput, cW as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bZ as TrxSignatureGatingRequest, c1 as TxAuthDataSignatureResponse, cS as TxAuthInput, cT as TxSignatureResponse, cM as UpdateQueryConfigurationInput, cN as UpdateQueryConfigurationResponse, bV as WalletChallengeRequest, bY as WalletSignResponse, dg as WalletSignatureData, df as WalletSignatureResponse, cn as ZKPOperator, d2 as ZKPRequest, d3 as ZKPRequestFromZKVerifier, ca as ZeroKnowledgeProofRequest, cd as ZeroKnowledgeProofResponse, co as operatorDisplayMap, ci as parseIden3Message, cj as parseSessionIdFromUrl } from '../../dist/identity-api.schema-5ea5d70a.esm.js';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import 'nanoid';
|
package/package.json
CHANGED
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
6
|
-
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-9b3fe72e.cjs.dev.js');
|
|
6
|
+
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-7a3086ac.cjs.dev.js');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
6
|
-
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-7141ff26.cjs.prod.js');
|
|
6
|
+
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-31908328.cjs.prod.js');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ak as Alpha2Country,
|
|
2
|
-
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-
|
|
1
|
+
export { ak as Alpha2Country, dU as CredentialMediaType, dP as CredentialNames, dO as CredentialSchemas, dS as CredentialType, C as CredentialTypes, dN as GenericVerifiableCredentialSchema, dA as ID3CredentialSubjectSchema, dK as IDImageCredentialSubjectSchema, dJ as IDInformationCredentialSubjectSchema, dB as IDScanCredentialSubjectSchema, dC as IDScanPassportCredentialSubjectSchema, dD as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, dQ as NexeraCredentialType, dI as OLD_AMLScreeningsResultsCredentialSubjectSchema, dE as OLD_IDImageCredentialSubjectSchema, dF as OLD_IDInformationCredentialSubjectSchema, dG as OLD_ProofOfResidenceCredentialSubjectSchema, dH as OLD_SelfieImageCredentialSubjectSchema, dM as ProofOfResidenceCredentialSubjectSchema, dL as SelfieImageCredentialSubjectSchema, dT as VerifiableCredential, al as countryISO3toISO2Mapping, dR as getCredentialName, an as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-5ea5d70a.esm.js';
|
|
2
|
+
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-6232efb8.esm.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import 'nanoid';
|