@nexeraid/identity-schemas 2.9.0-dev → 2.10.0-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{customers.schema-1bf4fe64.cjs.dev.js → customers.schema-a23a7d7d.cjs.dev.js} +1 -1
- package/dist/{customers.schema-0bfe7ed2.esm.js → customers.schema-bc9ea241.esm.js} +1 -1
- package/dist/{customers.schema-80e163e9.cjs.prod.js → customers.schema-f2cbacca.cjs.prod.js} +1 -1
- package/dist/declarations/src/identity/app-requests.schema.d.ts +37 -37
- package/dist/declarations/src/identity/identity-v2.schema.d.ts +9 -9
- package/dist/declarations/src/identity/kyc.schema.d.ts +20 -20
- package/dist/declarations/src/identity/query.schema.d.ts +97 -92
- package/dist/declarations/src/identity/query.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/scenario.schema.d.ts +99 -99
- package/dist/declarations/src/identity/zkps.schema.d.ts +17 -17
- package/dist/{frontend-utilities.schema-63c0c3ec.cjs.prod.js → frontend-utilities.schema-1a37ad51.cjs.prod.js} +1 -1
- package/dist/{frontend-utilities.schema-c53dbf36.esm.js → frontend-utilities.schema-5587da47.esm.js} +1 -1
- package/dist/{frontend-utilities.schema-7ec52bb3.cjs.dev.js → frontend-utilities.schema-b01c1889.cjs.dev.js} +1 -1
- package/dist/{identity-api.schema-725ecd1d.cjs.prod.js → identity-api.schema-2fb2ff78.cjs.prod.js} +42 -9
- package/dist/{identity-api.schema-e1fe9b0e.cjs.dev.js → identity-api.schema-841bc821.cjs.dev.js} +42 -9
- package/dist/{identity-api.schema-a3f556f3.esm.js → identity-api.schema-ee362a66.esm.js} +42 -9
- package/dist/nexeraid-identity-schemas.cjs.dev.js +3 -3
- package/dist/nexeraid-identity-schemas.cjs.prod.js +3 -3
- package/dist/nexeraid-identity-schemas.esm.js +4 -4
- package/dist/package.json +1 -1
- package/dist/{transaction.schema-aff2475c.cjs.prod.js → transaction.schema-2d4e973b.cjs.prod.js} +1 -1
- package/dist/{transaction.schema-356f414e.esm.js → transaction.schema-2dd50ae5.esm.js} +1 -1
- package/dist/{transaction.schema-8da87f68.cjs.dev.js → transaction.schema-5bc7e516.cjs.dev.js} +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +3 -3
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +3 -3
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +3 -3
|
@@ -8,18 +8,18 @@ export declare const ZKPRequest: z.ZodObject<{
|
|
|
8
8
|
requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
9
9
|
attribute: z.ZodString;
|
|
10
10
|
value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
|
|
11
|
-
operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
|
|
11
|
+
operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
13
|
value: string | number | boolean | string[] | number[];
|
|
14
14
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
15
15
|
attribute: string;
|
|
16
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
16
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
17
17
|
requestId?: number | null | undefined;
|
|
18
18
|
}, {
|
|
19
19
|
value: string | number | boolean | string[] | number[];
|
|
20
20
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
21
21
|
attribute: string;
|
|
22
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
22
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
23
23
|
requestId?: number | null | undefined;
|
|
24
24
|
}>;
|
|
25
25
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -28,7 +28,7 @@ export declare const ZKPRequest: z.ZodObject<{
|
|
|
28
28
|
value: string | number | boolean | string[] | number[];
|
|
29
29
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
30
30
|
attribute: string;
|
|
31
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
31
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
32
32
|
requestId?: number | null | undefined;
|
|
33
33
|
};
|
|
34
34
|
circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
|
|
@@ -39,7 +39,7 @@ export declare const ZKPRequest: z.ZodObject<{
|
|
|
39
39
|
value: string | number | boolean | string[] | number[];
|
|
40
40
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
41
41
|
attribute: string;
|
|
42
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
42
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
43
43
|
requestId?: number | null | undefined;
|
|
44
44
|
};
|
|
45
45
|
circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
|
|
@@ -74,18 +74,18 @@ export declare const OffChainZKP: z.ZodObject<{
|
|
|
74
74
|
requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
75
75
|
attribute: z.ZodString;
|
|
76
76
|
value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
|
|
77
|
-
operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
|
|
77
|
+
operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
|
|
78
78
|
}, "strip", z.ZodTypeAny, {
|
|
79
79
|
value: string | number | boolean | string[] | number[];
|
|
80
80
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
81
81
|
attribute: string;
|
|
82
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
82
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
83
83
|
requestId?: number | null | undefined;
|
|
84
84
|
}, {
|
|
85
85
|
value: string | number | boolean | string[] | number[];
|
|
86
86
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
87
87
|
attribute: string;
|
|
88
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
88
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
89
89
|
requestId?: number | null | undefined;
|
|
90
90
|
}>;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94,7 +94,7 @@ export declare const OffChainZKP: z.ZodObject<{
|
|
|
94
94
|
value: string | number | boolean | string[] | number[];
|
|
95
95
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
96
96
|
attribute: string;
|
|
97
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
97
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
98
98
|
requestId?: number | null | undefined;
|
|
99
99
|
};
|
|
100
100
|
circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
|
|
@@ -105,7 +105,7 @@ export declare const OffChainZKP: z.ZodObject<{
|
|
|
105
105
|
value: string | number | boolean | string[] | number[];
|
|
106
106
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
107
107
|
attribute: string;
|
|
108
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
108
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
109
109
|
requestId?: number | null | undefined;
|
|
110
110
|
};
|
|
111
111
|
circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
|
|
@@ -118,7 +118,7 @@ export declare const OffChainZKP: z.ZodObject<{
|
|
|
118
118
|
value: string | number | boolean | string[] | number[];
|
|
119
119
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
120
120
|
attribute: string;
|
|
121
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
121
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
122
122
|
requestId?: number | null | undefined;
|
|
123
123
|
};
|
|
124
124
|
circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
|
|
@@ -132,7 +132,7 @@ export declare const OffChainZKP: z.ZodObject<{
|
|
|
132
132
|
value: string | number | boolean | string[] | number[];
|
|
133
133
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
134
134
|
attribute: string;
|
|
135
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
135
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
136
136
|
requestId?: number | null | undefined;
|
|
137
137
|
};
|
|
138
138
|
circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
|
|
@@ -151,18 +151,18 @@ export declare const CreateAuthRequestProps: z.ZodObject<{
|
|
|
151
151
|
requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
152
152
|
attribute: z.ZodString;
|
|
153
153
|
value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
|
|
154
|
-
operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
|
|
154
|
+
operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
|
|
155
155
|
}, "strip", z.ZodTypeAny, {
|
|
156
156
|
value: string | number | boolean | string[] | number[];
|
|
157
157
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
158
158
|
attribute: string;
|
|
159
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
159
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
160
160
|
requestId?: number | null | undefined;
|
|
161
161
|
}, {
|
|
162
162
|
value: string | number | boolean | string[] | number[];
|
|
163
163
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
164
164
|
attribute: string;
|
|
165
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
165
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
166
166
|
requestId?: number | null | undefined;
|
|
167
167
|
}>, "many">;
|
|
168
168
|
onChainVerification: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -176,7 +176,7 @@ export declare const CreateAuthRequestProps: z.ZodObject<{
|
|
|
176
176
|
value: string | number | boolean | string[] | number[];
|
|
177
177
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
178
178
|
attribute: string;
|
|
179
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
179
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
180
180
|
requestId?: number | null | undefined;
|
|
181
181
|
}[];
|
|
182
182
|
sessionId: string;
|
|
@@ -192,7 +192,7 @@ export declare const CreateAuthRequestProps: z.ZodObject<{
|
|
|
192
192
|
value: string | number | boolean | string[] | number[];
|
|
193
193
|
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
194
194
|
attribute: string;
|
|
195
|
-
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
|
|
195
|
+
operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
|
|
196
196
|
requestId?: number | null | undefined;
|
|
197
197
|
}[];
|
|
198
198
|
sessionId: string;
|
package/dist/{frontend-utilities.schema-c53dbf36.esm.js → frontend-utilities.schema-5587da47.esm.js}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { dk as SupportedType, eM as _toConsumableArray, d9 as ARRAY_OPERATORS, df as BOOLEAN_OPERATORS, dd as NUMERIC_OPERATORS, db as STRING_OPERATORS } from './identity-api.schema-
|
|
1
|
+
import { dk as SupportedType, eM as _toConsumableArray, d9 as ARRAY_OPERATORS, df as BOOLEAN_OPERATORS, dd as NUMERIC_OPERATORS, db as STRING_OPERATORS } from './identity-api.schema-ee362a66.esm.js';
|
|
2
2
|
|
|
3
3
|
var VC_JSON_SCHEMA_MAP = {
|
|
4
4
|
ProofOfResidence: {
|
package/dist/{identity-api.schema-725ecd1d.cjs.prod.js → identity-api.schema-2fb2ff78.cjs.prod.js}
RENAMED
|
@@ -2230,19 +2230,49 @@ function zodEnumFromObjKeys(obj) {
|
|
|
2230
2230
|
}
|
|
2231
2231
|
var AllCredentialAttributes = zod.z.union([zodEnumFromObjKeys(IDInformationCredentialSubjectSchema.shape), zodEnumFromObjKeys(IDImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(SelfieImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(ProofOfResidenceCredentialSubjectSchema.shape)]);
|
|
2232
2232
|
var AllCredentialValues = zod.z.union([zod.z["boolean"](), zod.z.string(), zod.z.number(), zod.z.array(zod.z.string()), zod.z.array(zod.z.number())]);
|
|
2233
|
-
var OPERATORS = ["$noop",
|
|
2233
|
+
var OPERATORS = ["$noop",
|
|
2234
|
+
// noop can be used in zkps as proof of credential issuance https://docs.privado.id/docs/verifier/verification-library/zk-query-language#exists---operator-11
|
|
2235
|
+
"$eq",
|
|
2236
|
+
// equal to
|
|
2237
|
+
"$lt",
|
|
2238
|
+
// less than
|
|
2239
|
+
"$lte",
|
|
2240
|
+
// less than or equal to
|
|
2241
|
+
"$gt",
|
|
2242
|
+
// greater than
|
|
2243
|
+
"$gte",
|
|
2244
|
+
// greater than or equal to
|
|
2245
|
+
"$in",
|
|
2246
|
+
// in
|
|
2247
|
+
"$nin",
|
|
2248
|
+
// not in
|
|
2249
|
+
"$ne",
|
|
2250
|
+
// not equal to
|
|
2251
|
+
//"$between", // between
|
|
2252
|
+
//"$nonbetween", // contains
|
|
2253
|
+
"$exists" // exists
|
|
2254
|
+
];
|
|
2234
2255
|
var Operator = zod.z["enum"](OPERATORS);
|
|
2235
2256
|
var ZKPOperator = zod.z["enum"](OPERATORS).exclude(["$lte", "$gte"]);
|
|
2236
|
-
var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop");
|
|
2237
|
-
var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne
|
|
2257
|
+
var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop"), Operator["enum"].$exists, "exists");
|
|
2258
|
+
var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne
|
|
2259
|
+
//Operator.enum.$between,
|
|
2260
|
+
//Operator.enum.$nonbetween,
|
|
2261
|
+
];
|
|
2238
2262
|
var ArrayOperator = zod.z["enum"](ARRAY_OPERATORS);
|
|
2239
|
-
var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin];
|
|
2263
|
+
var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$exists];
|
|
2240
2264
|
var StringOperator = zod.z["enum"](STRING_OPERATORS);
|
|
2241
|
-
var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2265
|
+
var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2266
|
+
//Operator.enum.$between,
|
|
2267
|
+
//Operator.enum.$nonbetween,
|
|
2268
|
+
];
|
|
2242
2269
|
var NumericOperator = zod.z["enum"](NUMERIC_OPERATORS);
|
|
2243
2270
|
var BOOLEAN_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne];
|
|
2244
2271
|
var BooleanOperator = zod.z["enum"](BOOLEAN_OPERATORS);
|
|
2245
|
-
var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2272
|
+
var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2273
|
+
//Operator.enum.$between,
|
|
2274
|
+
//Operator.enum.$nonbetween,
|
|
2275
|
+
];
|
|
2246
2276
|
var DateOperator = zod.z["enum"](DATE_OPERATORS);
|
|
2247
2277
|
var SUPPORTED_TYPES = ["string", "integer", "boolean", "number", "array", "date"];
|
|
2248
2278
|
var SupportedType = zod.z["enum"](SUPPORTED_TYPES);
|
|
@@ -2396,11 +2426,14 @@ var ChallengeQuerySchema = zod.z.object({
|
|
|
2396
2426
|
id: zod.z.string().optional(),
|
|
2397
2427
|
query: QueryConfig
|
|
2398
2428
|
});
|
|
2399
|
-
var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN"
|
|
2429
|
+
var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN",
|
|
2430
|
+
//"BETWEEN",
|
|
2431
|
+
//"NOT_BETWEEN",
|
|
2432
|
+
"EXISTS"];
|
|
2400
2433
|
var ChallengeQueryOperator = zod.z["enum"](CHALLENGE_QUERY_OPERATORS);
|
|
2401
2434
|
var OperatorMappings = {
|
|
2402
|
-
toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO),
|
|
2403
|
-
fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne)
|
|
2435
|
+
toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO), Operator["enum"].$exists, ChallengeQueryOperator["enum"].EXISTS),
|
|
2436
|
+
fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne), ChallengeQueryOperator["enum"].EXISTS, Operator["enum"].$exists)
|
|
2404
2437
|
};
|
|
2405
2438
|
var OperatorToChallengeQueryOperator = OperatorMappings.toChallenge;
|
|
2406
2439
|
var ChallengeQueryOperatorToOperator = OperatorMappings.fromChallenge;
|
package/dist/{identity-api.schema-e1fe9b0e.cjs.dev.js → identity-api.schema-841bc821.cjs.dev.js}
RENAMED
|
@@ -2230,19 +2230,49 @@ function zodEnumFromObjKeys(obj) {
|
|
|
2230
2230
|
}
|
|
2231
2231
|
var AllCredentialAttributes = zod.z.union([zodEnumFromObjKeys(IDInformationCredentialSubjectSchema.shape), zodEnumFromObjKeys(IDImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(SelfieImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(ProofOfResidenceCredentialSubjectSchema.shape)]);
|
|
2232
2232
|
var AllCredentialValues = zod.z.union([zod.z["boolean"](), zod.z.string(), zod.z.number(), zod.z.array(zod.z.string()), zod.z.array(zod.z.number())]);
|
|
2233
|
-
var OPERATORS = ["$noop",
|
|
2233
|
+
var OPERATORS = ["$noop",
|
|
2234
|
+
// noop can be used in zkps as proof of credential issuance https://docs.privado.id/docs/verifier/verification-library/zk-query-language#exists---operator-11
|
|
2235
|
+
"$eq",
|
|
2236
|
+
// equal to
|
|
2237
|
+
"$lt",
|
|
2238
|
+
// less than
|
|
2239
|
+
"$lte",
|
|
2240
|
+
// less than or equal to
|
|
2241
|
+
"$gt",
|
|
2242
|
+
// greater than
|
|
2243
|
+
"$gte",
|
|
2244
|
+
// greater than or equal to
|
|
2245
|
+
"$in",
|
|
2246
|
+
// in
|
|
2247
|
+
"$nin",
|
|
2248
|
+
// not in
|
|
2249
|
+
"$ne",
|
|
2250
|
+
// not equal to
|
|
2251
|
+
//"$between", // between
|
|
2252
|
+
//"$nonbetween", // contains
|
|
2253
|
+
"$exists" // exists
|
|
2254
|
+
];
|
|
2234
2255
|
var Operator = zod.z["enum"](OPERATORS);
|
|
2235
2256
|
var ZKPOperator = zod.z["enum"](OPERATORS).exclude(["$lte", "$gte"]);
|
|
2236
|
-
var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop");
|
|
2237
|
-
var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne
|
|
2257
|
+
var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop"), Operator["enum"].$exists, "exists");
|
|
2258
|
+
var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne
|
|
2259
|
+
//Operator.enum.$between,
|
|
2260
|
+
//Operator.enum.$nonbetween,
|
|
2261
|
+
];
|
|
2238
2262
|
var ArrayOperator = zod.z["enum"](ARRAY_OPERATORS);
|
|
2239
|
-
var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin];
|
|
2263
|
+
var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$exists];
|
|
2240
2264
|
var StringOperator = zod.z["enum"](STRING_OPERATORS);
|
|
2241
|
-
var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2265
|
+
var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2266
|
+
//Operator.enum.$between,
|
|
2267
|
+
//Operator.enum.$nonbetween,
|
|
2268
|
+
];
|
|
2242
2269
|
var NumericOperator = zod.z["enum"](NUMERIC_OPERATORS);
|
|
2243
2270
|
var BOOLEAN_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne];
|
|
2244
2271
|
var BooleanOperator = zod.z["enum"](BOOLEAN_OPERATORS);
|
|
2245
|
-
var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2272
|
+
var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2273
|
+
//Operator.enum.$between,
|
|
2274
|
+
//Operator.enum.$nonbetween,
|
|
2275
|
+
];
|
|
2246
2276
|
var DateOperator = zod.z["enum"](DATE_OPERATORS);
|
|
2247
2277
|
var SUPPORTED_TYPES = ["string", "integer", "boolean", "number", "array", "date"];
|
|
2248
2278
|
var SupportedType = zod.z["enum"](SUPPORTED_TYPES);
|
|
@@ -2396,11 +2426,14 @@ var ChallengeQuerySchema = zod.z.object({
|
|
|
2396
2426
|
id: zod.z.string().optional(),
|
|
2397
2427
|
query: QueryConfig
|
|
2398
2428
|
});
|
|
2399
|
-
var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN"
|
|
2429
|
+
var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN",
|
|
2430
|
+
//"BETWEEN",
|
|
2431
|
+
//"NOT_BETWEEN",
|
|
2432
|
+
"EXISTS"];
|
|
2400
2433
|
var ChallengeQueryOperator = zod.z["enum"](CHALLENGE_QUERY_OPERATORS);
|
|
2401
2434
|
var OperatorMappings = {
|
|
2402
|
-
toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO),
|
|
2403
|
-
fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne)
|
|
2435
|
+
toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO), Operator["enum"].$exists, ChallengeQueryOperator["enum"].EXISTS),
|
|
2436
|
+
fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne), ChallengeQueryOperator["enum"].EXISTS, Operator["enum"].$exists)
|
|
2404
2437
|
};
|
|
2405
2438
|
var OperatorToChallengeQueryOperator = OperatorMappings.toChallenge;
|
|
2406
2439
|
var ChallengeQueryOperatorToOperator = OperatorMappings.fromChallenge;
|
|
@@ -2228,19 +2228,49 @@ function zodEnumFromObjKeys(obj) {
|
|
|
2228
2228
|
}
|
|
2229
2229
|
var AllCredentialAttributes = z.union([zodEnumFromObjKeys(IDInformationCredentialSubjectSchema.shape), zodEnumFromObjKeys(IDImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(SelfieImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(ProofOfResidenceCredentialSubjectSchema.shape)]);
|
|
2230
2230
|
var AllCredentialValues = z.union([z["boolean"](), z.string(), z.number(), z.array(z.string()), z.array(z.number())]);
|
|
2231
|
-
var OPERATORS = ["$noop",
|
|
2231
|
+
var OPERATORS = ["$noop",
|
|
2232
|
+
// noop can be used in zkps as proof of credential issuance https://docs.privado.id/docs/verifier/verification-library/zk-query-language#exists---operator-11
|
|
2233
|
+
"$eq",
|
|
2234
|
+
// equal to
|
|
2235
|
+
"$lt",
|
|
2236
|
+
// less than
|
|
2237
|
+
"$lte",
|
|
2238
|
+
// less than or equal to
|
|
2239
|
+
"$gt",
|
|
2240
|
+
// greater than
|
|
2241
|
+
"$gte",
|
|
2242
|
+
// greater than or equal to
|
|
2243
|
+
"$in",
|
|
2244
|
+
// in
|
|
2245
|
+
"$nin",
|
|
2246
|
+
// not in
|
|
2247
|
+
"$ne",
|
|
2248
|
+
// not equal to
|
|
2249
|
+
//"$between", // between
|
|
2250
|
+
//"$nonbetween", // contains
|
|
2251
|
+
"$exists" // exists
|
|
2252
|
+
];
|
|
2232
2253
|
var Operator = z["enum"](OPERATORS);
|
|
2233
2254
|
var ZKPOperator = z["enum"](OPERATORS).exclude(["$lte", "$gte"]);
|
|
2234
|
-
var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop");
|
|
2235
|
-
var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne
|
|
2255
|
+
var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop"), Operator["enum"].$exists, "exists");
|
|
2256
|
+
var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne
|
|
2257
|
+
//Operator.enum.$between,
|
|
2258
|
+
//Operator.enum.$nonbetween,
|
|
2259
|
+
];
|
|
2236
2260
|
var ArrayOperator = z["enum"](ARRAY_OPERATORS);
|
|
2237
|
-
var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin];
|
|
2261
|
+
var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$exists];
|
|
2238
2262
|
var StringOperator = z["enum"](STRING_OPERATORS);
|
|
2239
|
-
var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2263
|
+
var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2264
|
+
//Operator.enum.$between,
|
|
2265
|
+
//Operator.enum.$nonbetween,
|
|
2266
|
+
];
|
|
2240
2267
|
var NumericOperator = z["enum"](NUMERIC_OPERATORS);
|
|
2241
2268
|
var BOOLEAN_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne];
|
|
2242
2269
|
var BooleanOperator = z["enum"](BOOLEAN_OPERATORS);
|
|
2243
|
-
var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2270
|
+
var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
|
|
2271
|
+
//Operator.enum.$between,
|
|
2272
|
+
//Operator.enum.$nonbetween,
|
|
2273
|
+
];
|
|
2244
2274
|
var DateOperator = z["enum"](DATE_OPERATORS);
|
|
2245
2275
|
var SUPPORTED_TYPES = ["string", "integer", "boolean", "number", "array", "date"];
|
|
2246
2276
|
var SupportedType = z["enum"](SUPPORTED_TYPES);
|
|
@@ -2394,11 +2424,14 @@ var ChallengeQuerySchema = z.object({
|
|
|
2394
2424
|
id: z.string().optional(),
|
|
2395
2425
|
query: QueryConfig
|
|
2396
2426
|
});
|
|
2397
|
-
var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN"
|
|
2427
|
+
var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN",
|
|
2428
|
+
//"BETWEEN",
|
|
2429
|
+
//"NOT_BETWEEN",
|
|
2430
|
+
"EXISTS"];
|
|
2398
2431
|
var ChallengeQueryOperator = z["enum"](CHALLENGE_QUERY_OPERATORS);
|
|
2399
2432
|
var OperatorMappings = {
|
|
2400
|
-
toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO),
|
|
2401
|
-
fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne)
|
|
2433
|
+
toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO), Operator["enum"].$exists, ChallengeQueryOperator["enum"].EXISTS),
|
|
2434
|
+
fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne), ChallengeQueryOperator["enum"].EXISTS, Operator["enum"].$exists)
|
|
2402
2435
|
};
|
|
2403
2436
|
var OperatorToChallengeQueryOperator = OperatorMappings.toChallenge;
|
|
2404
2437
|
var ChallengeQueryOperatorToOperator = OperatorMappings.fromChallenge;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
6
|
-
var transaction_schema = require('./transaction.schema-
|
|
5
|
+
var identityApi_schema = require('./identity-api.schema-841bc821.cjs.dev.js');
|
|
6
|
+
var transaction_schema = require('./transaction.schema-5bc7e516.cjs.dev.js');
|
|
7
7
|
var zod = require('zod');
|
|
8
|
-
var frontendUtilities_schema = require('./frontend-utilities.schema-
|
|
8
|
+
var frontendUtilities_schema = require('./frontend-utilities.schema-b01c1889.cjs.dev.js');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
|
|
11
11
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
6
|
-
var transaction_schema = require('./transaction.schema-
|
|
5
|
+
var identityApi_schema = require('./identity-api.schema-2fb2ff78.cjs.prod.js');
|
|
6
|
+
var transaction_schema = require('./transaction.schema-2d4e973b.cjs.prod.js');
|
|
7
7
|
var zod = require('zod');
|
|
8
|
-
var frontendUtilities_schema = require('./frontend-utilities.schema-
|
|
8
|
+
var frontendUtilities_schema = require('./frontend-utilities.schema-1a37ad51.cjs.prod.js');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
|
|
11
11
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { C as CredentialTypes } from './identity-api.schema-
|
|
2
|
-
export { s as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, o as ACTIVE_TEZOS_CHAIN_VALUES, am as ALPHA_2_COUNTRIES, d9 as ARRAY_OPERATORS, cT as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bT as AVAILABLE_FLOWS, cd as AbbreviatedWorkflowScenario, bh as ActionId, b6 as ActionPrefix, ef as AdditionalCustomerInformationParams, F as AddressSchema, d3 as AllCredentialAttributes, d4 as AllCredentialValues, d$ as AllScenarioExecutionAuthorizationData, an as Alpha2Country, dW as AnyTxAuthDataSignatureResponse, dT as AnyTxAuthInput, dO as ApiTezosTxAuthInput, dK as ApiTxAuthInput, bc as AppId, aO as AppPrefix, K as AptosAddress, L as AptosSignature, da as ArrayOperator, c$ as AuthQrCodeData, cy as AuthSession, cz as AuthSessionData, cW as AuthorizationRequestMessage, cV as AuthorizationRequestMessageType, cU as AuthorizationRequestMessageTypes, cZ as AuthorizationResponseMessage, bU as AvailableFlow, a6 as BLOCKCHAIN_NAMESPACES, a8 as BLOCKCHAIN_NAMESPACES_NAMES, ac as BLOCKCHAIN_NAMESPACE_TO_NAME, ab as BLOCKCHAIN_NAME_TO_NAMESPACE, df as BOOLEAN_OPERATORS, c0 as BaseQueryResponse, aE as BasicCustomerContactInformation, a4 as BlockchainAddress, B as BlockchainId, a7 as BlockchainNamespace, a5 as BlockchainSignature, dg as BooleanOperator, dE as CHALLENGE_QUERY_OPERATORS, cQ as CIRCUIT_IDS, p as COSMOS_CHAIN_NAMES, q as COSMOS_CHAIN_NAMES_LIST, r as COSMOS_CHAIN_VALUES, aF as CUSTOMERS_CHARTS, aJ as CUSTOMER_AUTOMATION_REASONS, aH as CUSTOMER_TABLE_COLUMNS, a2 as CardanoAddress, a3 as CardanoSignature, bd as ChallengeId, aP as ChallengePrefix, dF as ChallengeQueryOperator, dI as ChallengeQueryOperatorToOperator, dD as ChallengeQuerySchema, cA as ChallengeResponse, cR as CircuitId, bB as CloseScreenNotification, cg as ComplianceImplementationStepsInput, U as CosmosAddress, t as CosmosChainId, V as CosmosSignature, d_ as CreateAuthRequestProps, dv as CreateQueryConfigurationInput, dw as CreateQueryConfigurationResponse, cf as CreateTemplateScenario, eL as CredentialMediaType, eG as CredentialNames, c_ as CredentialQrCodeData, eF as CredentialSchemas, eJ as CredentialType, C as CredentialTypes, ej as CustomerId, aB as CustomerOnboardingLevel, aA as CustomerOnboardingLevels, bf as CustomerScreeningId, aR as CustomerScreeningPrefix, aD as CustomerStatus, aC as CustomerStatuses, aI as CustomerTableColumn, av as CustomerType, au as CustomerTypes, aG as CustomersChartType, dh as DATE_OPERATORS, a9 as DISPLAYED_LOCKCHAIN_NAMESPACES, bV as DataAvailableOnStart, di as DateOperator, dz as DeleteQueryConfigurationInput, dA as DeleteQueryConfigurationResponse, aa as DisplayedBlockchainNamespace, H as EIP155Signature, ad as ENVS, E as EVM_BLOCK_TIME, i as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, _ as EdSignature, ba as EmailId, aM as EmailPrefix, ae as EnvironmentSchema, j as EvmChainId, c2 as ExecuteQueryResponse, dV as ExtendedTezosTxAuthDataSignatureResponse, dS as ExtendedTezosTxAuthInput, dU as ExtendedTxAuthDataSignatureResponse, dR as ExtendedTxAuthInput, el as ExternalCustomerId, e4 as FLOW_TYPES, e5 as FlowType, I as FunctionCallData, cx as GenerateWalletChallengeRequest, eE as GenericVerifiableCredentialSchema, ci as GetCredentialsRequest, cj as GetCredentialsResponse, cD as GetCustomerStatusRequest, cH as GetCustomerStatusResponse, dQ as GetTezosTxAuthDataSignatureResponse, dM as GetTxAuthDataSignatureResponse, cr as GetTxAuthSigRequest, ct as GetTxAuthSigRequestTezos, cs as GetTxAuthSigResponse, cu as GetTxAuthSigResponseTezos, cK as HostMessage, cv as HostRequestMessage, bZ as HostResponseMessage, er as ID3CredentialSubjectSchema, e8 as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, ea as IDENTITY_DOCUMENT_OPTIONS, eB as IDImageCredentialSubjectSchema, dm as IDInformation, eA as IDInformationCredentialSubjectSchema, es as IDScanCredentialSubjectSchema, et as IDScanPassportCredentialSubjectSchema, eu as IDScanSelfieCredentialSubjectSchema, al as ISO3CountryCode, ee as Identifier, cI as IdentityAppMessage, en as IdentityAppV2Web2JWT, em as IdentityAppV2Web3JWT, e9 as IdentityDocumentCountryListOption, eb as IdentityDocumentOptionsType, b9 as IdentityId, cL as IdentityMessage, bN as IdentityNotificationMessage, aL as IdentityPrefix, bS as IdentityRequestMessage, cw as IdentityResponseMessage, cE as IdentitySdkMessage, cF as IdentitySdkMessageWithIdentifier, cJ as IdentityWallet, ek as IdentityWidgetAccessToken, eo as IdentityWidgetAccessToken_NEW, ep as IdentityWidgetSessionToken, bO as InitialDataRequest, bW as InitialDataResponse, bt as InstitutionExtractedInfosId, b2 as InstitutionExtractedInfosPrefix, bs as InstitutionId, b1 as InstitutionPrefix, ak as IpAddress, bJ as IsVerifiedNotification, cp as IsVerifiedRequest, cq as IsVerifiedResponse, az as KybOnboardingLevel, ay as KybOnboardingLevels, bC as KycCompletionData, bD as KycCompletionNotification, ax as KycOnboardingLevel, aw as KycOnboardingLevels, bv as ListId, b4 as ListPrefix, cO as MediaType, cP as MediaTypePID, by as MemberId, w as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, h as NEXERA_CHAIN_VALUES, d as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, a as NEXERA_EVM_CHAINS_ID, f as NEXERA_EVM_CHAIN_NAMES, g as NEXERA_EVM_CHAIN_NAMES_LIST, e as NEXERA_STARKNET_CHAINS, u as NEXERA_STARKNET_CHAIN_NAMES, v as NEXERA_STARKNET_CHAIN_VALUES, c as NEXERA_TEZOS_CHAINS, l as NEXERA_TEZOS_CHAIN_NAMES, m as NEXERA_TEZOS_CHAIN_NAMES_LIST, n as NEXERA_TEZOS_CHAIN_VALUES, dd as NUMERIC_OPERATORS, eH as NexeraCredentialType, b as NexeraEvmChains, du as NonParsedQueryConfiguration, de as NumericOperator, ez as OLD_AMLScreeningsResultsCredentialSubjectSchema, ev as OLD_IDImageCredentialSubjectSchema, ew as OLD_IDInformationCredentialSubjectSchema, ex as OLD_ProofOfResidenceCredentialSubjectSchema, ey as OLD_SelfieImageCredentialSubjectSchema, d5 as OPERATORS, bL as OcvSdkInitialized, bF as OffChainScenarioExecutionData, dZ as OffChainZKP, c1 as OffChainZKPRuleResult, bG as OnChainScenarioExecutionData, d6 as Operator, dG as OperatorMappings, dH as OperatorToChallengeQueryOperator, eg as OrganizationId, ag as OtpCode, a0 as P2Signature, ec as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, aj as PUBLIC_SERVICES_SCHEMA_MAP, dr as PartialQueryConfigSimplified, ed as PersonalInformationFieldsIdentityDocuments, Q as PolkadotAddress, R as PolkadotSignature, bK as PolygonIdInitialized, cl as PolygonIdRequest, ck as PolygonIdRequestData, cn as PolygonIdResponse, cm as PolygonIdResponseData, k as PolygonNetworkNames, z as PrivateKey, cX as ProofData, eD as ProofOfResidenceCredentialSubjectSchema, D as PublicKey, d0 as QrCodeLinkWithSchemaType, dn as QueryConfig, dq as QueryConfigSimplified, ds as QueryConfigSimplifiedParsed, dt as QueryConfiguration, dC as QueryCredentialType, dB as QueryCredentialTypes, bw as QueryId, b5 as QueryPrefix, dp as QueryType, cM as RequiredDataRowSchema, cN as RequiredVerificationData, at as RiskScoreType, as as RiskScoreTypes, c3 as RuleEngineResponse, bE as RuleEngineScenarioExecutionData, c6 as RuleResultStatus, c7 as RuleResultStatusLabels, c5 as RuleResultStatuses, e0 as SCENARIO_AUTHORIZATION_STATUSES, db as STRING_OPERATORS, dj as SUPPORTED_TYPES, cc as Scenario, bz as ScenarioAuthorizationData, e1 as ScenarioAuthorizationStatus, bH as ScenarioExecutionData, bI as ScenarioExecutionNotification, c4 as ScenarioExecutionResponse, bu as ScenarioId, b3 as ScenarioPrefix, b$ as ScenarioType, b_ as ScenarioTypes, c8 as SdkVerificationOutput, bA as SdkVerificationResponseSchema, eC as SelfieImageCredentialSubjectSchema, bR as SendTransactionRequest, bP as SignatureRequest, bX as SignatureResponse, ch as SimplifiedCredential, $ as SpSignature, M as StarknetAddress, S as StarknetChainId, O as StarknetSignature, bM as StartCompletedNotification, co as StartFlowRequest, b8 as StorageId, aK as StoragePrefix, y as String0x, dc as StringOperator, dk as SupportedType, dl as SupportedTypes, bg as TagId, aS as TagPrefix, bi as TagsToTransactionReviewsId, aT as TagsToTransactionReviewsPrefix, ce as TemplateScenario, be as TestId, aQ as TestPrefix, Y as TezosAddress, T as TezosChainId, X as TezosContractAddress, Z as TezosEntrypointName, W as TezosImplicitAddress, a1 as TezosSignature, dN as TezosTxAuthInput, dP as TezosTxSignatureResponse, bj as TransactionAddressesId, aU as TransactionAddressesPrefix, bQ as TransactionData, bp as TransactionExtractedInfosId, a_ as TransactionExtractedInfosPrefix, bl as TransactionFeesId, aW as TransactionFeesPrefix, bk as TransactionId, bo as TransactionInfosId, aZ as TransactionInfosPrefix, br as TransactionMethodExtractedInfosId, b0 as TransactionMethodExtractedInfosPrefix, bq as TransactionMethodsId, a$ as TransactionMethodsPrefix, bn as TransactionPartiesId, aY as TransactionPartiesPrefix, aV as TransactionPrefix, bY as TransactionResponse, bm as TransactionReviewId, aX as TransactionReviewPrefix, cC as TxAuthDataSignatureGatingRequest, cG as TxAuthDataSignatureResponse, dJ as TxAuthInput, G as TxHash, dL as TxSignatureResponse, dx as UpdateQueryConfigurationInput, dy as UpdateQueryConfigurationResponse, af as UuidString, eK as VerifiableCredential, e7 as VerificationMode, e6 as VerificationModes, cb as VerificationOutput, ca as VerificationSessionStatus, c9 as VerificationSessionStatuses, e3 as VerifyWalletChallengeRequest, bb as WalletId, aN as WalletPrefix, cB as WalletSignResponse, e2 as WalletSignatureResponse, eq as Web2CreateSessionParams, ei as WorkflowId, eh as WorkspaceId, d7 as ZKPOperator, dX as ZKPRequest, dY as ZKPRequestFromZKVerifier, cS as ZeroKnowledgeProofRequest, cY as ZeroKnowledgeProofResponse, ah as ZodParse, ap as countryISO2toISO3Mapping, ao as countryISO3toISO2Mapping, b7 as createBrandedSchemaId, bx as generateId, eI as getCredentialName, x as isValidAddress, aq as isoCountriesNameFromISO2, d8 as operatorDisplayMap, ar as parseISO3CountryCode, d1 as parseIden3Message, d2 as parseSessionIdFromUrl, J as shortAddress, ai as shortBlockchainAddress } from './identity-api.schema-
|
|
3
|
-
export { c as CryptoCode, b as CryptoCodes, a as CurrencyCode, C as CurrencyCodes, u as PaymentType, P as PaymentTypes, T as TRANSACTION_CHARTS, e as TRANSACTION_TABLE_COLUMNS, r as TransactionCurrencyCode, q as TransactionCurrencyCodes, p as TransactionDirection, o as TransactionDirections, w as TransactionPartiesType, v as TransactionPartiesTypes, t as TransactionProvider, s as TransactionProviders, n as TransactionReviewStatus, m as TransactionReviewStatuses, l as TransactionRiskLevel, k as TransactionRiskLevels, f as TransactionTableColumn, h as TransactionType, j as TransactionTypeWithAll, g as TransactionTypes, i as TransactionTypesWithAll, d as TransactionsChartType } from './transaction.schema-
|
|
1
|
+
import { C as CredentialTypes } from './identity-api.schema-ee362a66.esm.js';
|
|
2
|
+
export { s as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, o as ACTIVE_TEZOS_CHAIN_VALUES, am as ALPHA_2_COUNTRIES, d9 as ARRAY_OPERATORS, cT as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bT as AVAILABLE_FLOWS, cd as AbbreviatedWorkflowScenario, bh as ActionId, b6 as ActionPrefix, ef as AdditionalCustomerInformationParams, F as AddressSchema, d3 as AllCredentialAttributes, d4 as AllCredentialValues, d$ as AllScenarioExecutionAuthorizationData, an as Alpha2Country, dW as AnyTxAuthDataSignatureResponse, dT as AnyTxAuthInput, dO as ApiTezosTxAuthInput, dK as ApiTxAuthInput, bc as AppId, aO as AppPrefix, K as AptosAddress, L as AptosSignature, da as ArrayOperator, c$ as AuthQrCodeData, cy as AuthSession, cz as AuthSessionData, cW as AuthorizationRequestMessage, cV as AuthorizationRequestMessageType, cU as AuthorizationRequestMessageTypes, cZ as AuthorizationResponseMessage, bU as AvailableFlow, a6 as BLOCKCHAIN_NAMESPACES, a8 as BLOCKCHAIN_NAMESPACES_NAMES, ac as BLOCKCHAIN_NAMESPACE_TO_NAME, ab as BLOCKCHAIN_NAME_TO_NAMESPACE, df as BOOLEAN_OPERATORS, c0 as BaseQueryResponse, aE as BasicCustomerContactInformation, a4 as BlockchainAddress, B as BlockchainId, a7 as BlockchainNamespace, a5 as BlockchainSignature, dg as BooleanOperator, dE as CHALLENGE_QUERY_OPERATORS, cQ as CIRCUIT_IDS, p as COSMOS_CHAIN_NAMES, q as COSMOS_CHAIN_NAMES_LIST, r as COSMOS_CHAIN_VALUES, aF as CUSTOMERS_CHARTS, aJ as CUSTOMER_AUTOMATION_REASONS, aH as CUSTOMER_TABLE_COLUMNS, a2 as CardanoAddress, a3 as CardanoSignature, bd as ChallengeId, aP as ChallengePrefix, dF as ChallengeQueryOperator, dI as ChallengeQueryOperatorToOperator, dD as ChallengeQuerySchema, cA as ChallengeResponse, cR as CircuitId, bB as CloseScreenNotification, cg as ComplianceImplementationStepsInput, U as CosmosAddress, t as CosmosChainId, V as CosmosSignature, d_ as CreateAuthRequestProps, dv as CreateQueryConfigurationInput, dw as CreateQueryConfigurationResponse, cf as CreateTemplateScenario, eL as CredentialMediaType, eG as CredentialNames, c_ as CredentialQrCodeData, eF as CredentialSchemas, eJ as CredentialType, C as CredentialTypes, ej as CustomerId, aB as CustomerOnboardingLevel, aA as CustomerOnboardingLevels, bf as CustomerScreeningId, aR as CustomerScreeningPrefix, aD as CustomerStatus, aC as CustomerStatuses, aI as CustomerTableColumn, av as CustomerType, au as CustomerTypes, aG as CustomersChartType, dh as DATE_OPERATORS, a9 as DISPLAYED_LOCKCHAIN_NAMESPACES, bV as DataAvailableOnStart, di as DateOperator, dz as DeleteQueryConfigurationInput, dA as DeleteQueryConfigurationResponse, aa as DisplayedBlockchainNamespace, H as EIP155Signature, ad as ENVS, E as EVM_BLOCK_TIME, i as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, _ as EdSignature, ba as EmailId, aM as EmailPrefix, ae as EnvironmentSchema, j as EvmChainId, c2 as ExecuteQueryResponse, dV as ExtendedTezosTxAuthDataSignatureResponse, dS as ExtendedTezosTxAuthInput, dU as ExtendedTxAuthDataSignatureResponse, dR as ExtendedTxAuthInput, el as ExternalCustomerId, e4 as FLOW_TYPES, e5 as FlowType, I as FunctionCallData, cx as GenerateWalletChallengeRequest, eE as GenericVerifiableCredentialSchema, ci as GetCredentialsRequest, cj as GetCredentialsResponse, cD as GetCustomerStatusRequest, cH as GetCustomerStatusResponse, dQ as GetTezosTxAuthDataSignatureResponse, dM as GetTxAuthDataSignatureResponse, cr as GetTxAuthSigRequest, ct as GetTxAuthSigRequestTezos, cs as GetTxAuthSigResponse, cu as GetTxAuthSigResponseTezos, cK as HostMessage, cv as HostRequestMessage, bZ as HostResponseMessage, er as ID3CredentialSubjectSchema, e8 as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, ea as IDENTITY_DOCUMENT_OPTIONS, eB as IDImageCredentialSubjectSchema, dm as IDInformation, eA as IDInformationCredentialSubjectSchema, es as IDScanCredentialSubjectSchema, et as IDScanPassportCredentialSubjectSchema, eu as IDScanSelfieCredentialSubjectSchema, al as ISO3CountryCode, ee as Identifier, cI as IdentityAppMessage, en as IdentityAppV2Web2JWT, em as IdentityAppV2Web3JWT, e9 as IdentityDocumentCountryListOption, eb as IdentityDocumentOptionsType, b9 as IdentityId, cL as IdentityMessage, bN as IdentityNotificationMessage, aL as IdentityPrefix, bS as IdentityRequestMessage, cw as IdentityResponseMessage, cE as IdentitySdkMessage, cF as IdentitySdkMessageWithIdentifier, cJ as IdentityWallet, ek as IdentityWidgetAccessToken, eo as IdentityWidgetAccessToken_NEW, ep as IdentityWidgetSessionToken, bO as InitialDataRequest, bW as InitialDataResponse, bt as InstitutionExtractedInfosId, b2 as InstitutionExtractedInfosPrefix, bs as InstitutionId, b1 as InstitutionPrefix, ak as IpAddress, bJ as IsVerifiedNotification, cp as IsVerifiedRequest, cq as IsVerifiedResponse, az as KybOnboardingLevel, ay as KybOnboardingLevels, bC as KycCompletionData, bD as KycCompletionNotification, ax as KycOnboardingLevel, aw as KycOnboardingLevels, bv as ListId, b4 as ListPrefix, cO as MediaType, cP as MediaTypePID, by as MemberId, w as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, h as NEXERA_CHAIN_VALUES, d as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, a as NEXERA_EVM_CHAINS_ID, f as NEXERA_EVM_CHAIN_NAMES, g as NEXERA_EVM_CHAIN_NAMES_LIST, e as NEXERA_STARKNET_CHAINS, u as NEXERA_STARKNET_CHAIN_NAMES, v as NEXERA_STARKNET_CHAIN_VALUES, c as NEXERA_TEZOS_CHAINS, l as NEXERA_TEZOS_CHAIN_NAMES, m as NEXERA_TEZOS_CHAIN_NAMES_LIST, n as NEXERA_TEZOS_CHAIN_VALUES, dd as NUMERIC_OPERATORS, eH as NexeraCredentialType, b as NexeraEvmChains, du as NonParsedQueryConfiguration, de as NumericOperator, ez as OLD_AMLScreeningsResultsCredentialSubjectSchema, ev as OLD_IDImageCredentialSubjectSchema, ew as OLD_IDInformationCredentialSubjectSchema, ex as OLD_ProofOfResidenceCredentialSubjectSchema, ey as OLD_SelfieImageCredentialSubjectSchema, d5 as OPERATORS, bL as OcvSdkInitialized, bF as OffChainScenarioExecutionData, dZ as OffChainZKP, c1 as OffChainZKPRuleResult, bG as OnChainScenarioExecutionData, d6 as Operator, dG as OperatorMappings, dH as OperatorToChallengeQueryOperator, eg as OrganizationId, ag as OtpCode, a0 as P2Signature, ec as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, aj as PUBLIC_SERVICES_SCHEMA_MAP, dr as PartialQueryConfigSimplified, ed as PersonalInformationFieldsIdentityDocuments, Q as PolkadotAddress, R as PolkadotSignature, bK as PolygonIdInitialized, cl as PolygonIdRequest, ck as PolygonIdRequestData, cn as PolygonIdResponse, cm as PolygonIdResponseData, k as PolygonNetworkNames, z as PrivateKey, cX as ProofData, eD as ProofOfResidenceCredentialSubjectSchema, D as PublicKey, d0 as QrCodeLinkWithSchemaType, dn as QueryConfig, dq as QueryConfigSimplified, ds as QueryConfigSimplifiedParsed, dt as QueryConfiguration, dC as QueryCredentialType, dB as QueryCredentialTypes, bw as QueryId, b5 as QueryPrefix, dp as QueryType, cM as RequiredDataRowSchema, cN as RequiredVerificationData, at as RiskScoreType, as as RiskScoreTypes, c3 as RuleEngineResponse, bE as RuleEngineScenarioExecutionData, c6 as RuleResultStatus, c7 as RuleResultStatusLabels, c5 as RuleResultStatuses, e0 as SCENARIO_AUTHORIZATION_STATUSES, db as STRING_OPERATORS, dj as SUPPORTED_TYPES, cc as Scenario, bz as ScenarioAuthorizationData, e1 as ScenarioAuthorizationStatus, bH as ScenarioExecutionData, bI as ScenarioExecutionNotification, c4 as ScenarioExecutionResponse, bu as ScenarioId, b3 as ScenarioPrefix, b$ as ScenarioType, b_ as ScenarioTypes, c8 as SdkVerificationOutput, bA as SdkVerificationResponseSchema, eC as SelfieImageCredentialSubjectSchema, bR as SendTransactionRequest, bP as SignatureRequest, bX as SignatureResponse, ch as SimplifiedCredential, $ as SpSignature, M as StarknetAddress, S as StarknetChainId, O as StarknetSignature, bM as StartCompletedNotification, co as StartFlowRequest, b8 as StorageId, aK as StoragePrefix, y as String0x, dc as StringOperator, dk as SupportedType, dl as SupportedTypes, bg as TagId, aS as TagPrefix, bi as TagsToTransactionReviewsId, aT as TagsToTransactionReviewsPrefix, ce as TemplateScenario, be as TestId, aQ as TestPrefix, Y as TezosAddress, T as TezosChainId, X as TezosContractAddress, Z as TezosEntrypointName, W as TezosImplicitAddress, a1 as TezosSignature, dN as TezosTxAuthInput, dP as TezosTxSignatureResponse, bj as TransactionAddressesId, aU as TransactionAddressesPrefix, bQ as TransactionData, bp as TransactionExtractedInfosId, a_ as TransactionExtractedInfosPrefix, bl as TransactionFeesId, aW as TransactionFeesPrefix, bk as TransactionId, bo as TransactionInfosId, aZ as TransactionInfosPrefix, br as TransactionMethodExtractedInfosId, b0 as TransactionMethodExtractedInfosPrefix, bq as TransactionMethodsId, a$ as TransactionMethodsPrefix, bn as TransactionPartiesId, aY as TransactionPartiesPrefix, aV as TransactionPrefix, bY as TransactionResponse, bm as TransactionReviewId, aX as TransactionReviewPrefix, cC as TxAuthDataSignatureGatingRequest, cG as TxAuthDataSignatureResponse, dJ as TxAuthInput, G as TxHash, dL as TxSignatureResponse, dx as UpdateQueryConfigurationInput, dy as UpdateQueryConfigurationResponse, af as UuidString, eK as VerifiableCredential, e7 as VerificationMode, e6 as VerificationModes, cb as VerificationOutput, ca as VerificationSessionStatus, c9 as VerificationSessionStatuses, e3 as VerifyWalletChallengeRequest, bb as WalletId, aN as WalletPrefix, cB as WalletSignResponse, e2 as WalletSignatureResponse, eq as Web2CreateSessionParams, ei as WorkflowId, eh as WorkspaceId, d7 as ZKPOperator, dX as ZKPRequest, dY as ZKPRequestFromZKVerifier, cS as ZeroKnowledgeProofRequest, cY as ZeroKnowledgeProofResponse, ah as ZodParse, ap as countryISO2toISO3Mapping, ao as countryISO3toISO2Mapping, b7 as createBrandedSchemaId, bx as generateId, eI as getCredentialName, x as isValidAddress, aq as isoCountriesNameFromISO2, d8 as operatorDisplayMap, ar as parseISO3CountryCode, d1 as parseIden3Message, d2 as parseSessionIdFromUrl, J as shortAddress, ai as shortBlockchainAddress } from './identity-api.schema-ee362a66.esm.js';
|
|
3
|
+
export { c as CryptoCode, b as CryptoCodes, a as CurrencyCode, C as CurrencyCodes, u as PaymentType, P as PaymentTypes, T as TRANSACTION_CHARTS, e as TRANSACTION_TABLE_COLUMNS, r as TransactionCurrencyCode, q as TransactionCurrencyCodes, p as TransactionDirection, o as TransactionDirections, w as TransactionPartiesType, v as TransactionPartiesTypes, t as TransactionProvider, s as TransactionProviders, n as TransactionReviewStatus, m as TransactionReviewStatuses, l as TransactionRiskLevel, k as TransactionRiskLevels, f as TransactionTableColumn, h as TransactionType, j as TransactionTypeWithAll, g as TransactionTypes, i as TransactionTypesWithAll, d as TransactionsChartType } from './transaction.schema-2dd50ae5.esm.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
|
-
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-
|
|
5
|
+
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-5587da47.esm.js';
|
|
6
6
|
import 'nanoid';
|
|
7
7
|
|
|
8
8
|
var decodeUint8Array = function decodeUint8Array(data) {
|
package/dist/package.json
CHANGED
package/dist/{transaction.schema-aff2475c.cjs.prod.js → transaction.schema-2d4e973b.cjs.prod.js}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
3
|
+
var identityApi_schema = require('./identity-api.schema-2fb2ff78.cjs.prod.js');
|
|
4
4
|
var zod = require('zod');
|
|
5
5
|
|
|
6
6
|
var CurrencyCodes = ["ADP", "AED", "AFA", "AFN", "ALK", "ALL", "AMD", "ANG", "AOA", "AOK", "AON", "AOR", "ARA", "ARP", "ARS", "ARY", "ATS", "AUD", "AWG", "AYM", "AZM", "AZN", "BAD", "BAM", "BBD", "BDT", "BEC", "BEF", "BEL", "BGJ", "BGK", "BGL", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOP", "BOV", "BRB", "BRC", "BRE", "BRL", "BRN", "BRR", "BSD", "BTN", "BUK", "BWP", "BYB", "BYN", "BYR", "BZD", "CAD", "CDF", "CHC", "CHE", "CHF", "CHW", "CLF", "CLP", "CNY", "COP", "COU", "CRC", "CSD", "CSJ", "CSK", "CUC", "CUP", "CVE", "CYP", "CZK", "DDM", "DEM", "DJF", "DKK", "DOP", "DZD", "ECS", "ECV", "EEK", "EGP", "ERN", "ESA", "ESB", "ESP", "ETB", "EUR", "FIM", "FJD", "FKP", "FRF", "GBP", "GEK", "GEL", "GHC", "GHP", "GHS", "GIP", "GMD", "GNE", "GNF", "GNS", "GQE", "GRD", "GTQ", "GWE", "GWP", "GYD", "HKD", "HNL", "HRD", "HRK", "HTG", "HUF", "IDR", "IEP", "ILP", "ILR", "ILS", "INR", "IQD", "IRR", "ISJ", "ISK", "ITL", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAJ", "LAK", "LBP", "LKR", "LRD", "LSL", "LSM", "LTL", "LTT", "LUC", "LUF", "LUL", "LVL", "LVR", "LYD", "MAD", "MDL", "MGA", "MGF", "MKD", "MLF", "MMK", "MNT", "MOP", "MRO", "MRU", "MTL", "MTP", "MUR", "MVQ", "MVR", "MWK", "MXN", "MXP", "MXV", "MYR", "MZE", "MZM", "MZN", "NAD", "NGN", "NIC", "NIO", "NLG", "NOK", "NPR", "NZD", "OMR", "PAB", "PEH", "PEI", "PEN", "PES", "PGK", "PHP", "PKR", "PLN", "PLZ", "PTE", "PYG", "QAR", "RHD", "ROK", "ROL", "RON", "RSD", "RUB", "RUR", "RWF", "SAR", "SBD", "SCR", "SDD", "SDG", "SDP", "SEK", "SGD", "SHP", "SIT", "SKK", "SLL", "SOS", "SRD", "SRG", "SSP", "STD", "STN", "SUR", "SVC", "SYP", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "TWD", "TZS", "UAH", "UAK", "UGS", "UGW", "UGX", "USD", "USN", "USS", "UYI", "UYN", "UYP", "UYU", "UYW", "UZS", "VEB", "VEF", "VES", "VNC", "VND", "VUV", "WST", "XAF", "XAG", "XAU", "XBA", "XBB", "XBC", "XBD", "XCD", "XDR", "XEU", "XFO", "XFU", "XOF", "XPD", "XPF", "XPT", "XRE", "XSU", "XTS", "XUA", "XXX", "YDD", "YER", "YUD", "YUM", "YUN", "ZAL", "ZAR", "ZMK", "ZMW", "ZRN", "ZRZ", "ZWC", "ZWD", "ZWL", "ZWN", "ZWR"];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { eM as _toConsumableArray } from './identity-api.schema-
|
|
1
|
+
import { eM as _toConsumableArray } from './identity-api.schema-ee362a66.esm.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
|
|
4
4
|
var CurrencyCodes = ["ADP", "AED", "AFA", "AFN", "ALK", "ALL", "AMD", "ANG", "AOA", "AOK", "AON", "AOR", "ARA", "ARP", "ARS", "ARY", "ATS", "AUD", "AWG", "AYM", "AZM", "AZN", "BAD", "BAM", "BBD", "BDT", "BEC", "BEF", "BEL", "BGJ", "BGK", "BGL", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOP", "BOV", "BRB", "BRC", "BRE", "BRL", "BRN", "BRR", "BSD", "BTN", "BUK", "BWP", "BYB", "BYN", "BYR", "BZD", "CAD", "CDF", "CHC", "CHE", "CHF", "CHW", "CLF", "CLP", "CNY", "COP", "COU", "CRC", "CSD", "CSJ", "CSK", "CUC", "CUP", "CVE", "CYP", "CZK", "DDM", "DEM", "DJF", "DKK", "DOP", "DZD", "ECS", "ECV", "EEK", "EGP", "ERN", "ESA", "ESB", "ESP", "ETB", "EUR", "FIM", "FJD", "FKP", "FRF", "GBP", "GEK", "GEL", "GHC", "GHP", "GHS", "GIP", "GMD", "GNE", "GNF", "GNS", "GQE", "GRD", "GTQ", "GWE", "GWP", "GYD", "HKD", "HNL", "HRD", "HRK", "HTG", "HUF", "IDR", "IEP", "ILP", "ILR", "ILS", "INR", "IQD", "IRR", "ISJ", "ISK", "ITL", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAJ", "LAK", "LBP", "LKR", "LRD", "LSL", "LSM", "LTL", "LTT", "LUC", "LUF", "LUL", "LVL", "LVR", "LYD", "MAD", "MDL", "MGA", "MGF", "MKD", "MLF", "MMK", "MNT", "MOP", "MRO", "MRU", "MTL", "MTP", "MUR", "MVQ", "MVR", "MWK", "MXN", "MXP", "MXV", "MYR", "MZE", "MZM", "MZN", "NAD", "NGN", "NIC", "NIO", "NLG", "NOK", "NPR", "NZD", "OMR", "PAB", "PEH", "PEI", "PEN", "PES", "PGK", "PHP", "PKR", "PLN", "PLZ", "PTE", "PYG", "QAR", "RHD", "ROK", "ROL", "RON", "RSD", "RUB", "RUR", "RWF", "SAR", "SBD", "SCR", "SDD", "SDG", "SDP", "SEK", "SGD", "SHP", "SIT", "SKK", "SLL", "SOS", "SRD", "SRG", "SSP", "STD", "STN", "SUR", "SVC", "SYP", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "TWD", "TZS", "UAH", "UAK", "UGS", "UGW", "UGX", "USD", "USN", "USS", "UYI", "UYN", "UYP", "UYU", "UYW", "UZS", "VEB", "VEF", "VES", "VNC", "VND", "VUV", "WST", "XAF", "XAG", "XAU", "XBA", "XBB", "XBC", "XBD", "XCD", "XDR", "XEU", "XFO", "XFU", "XOF", "XPD", "XPF", "XPT", "XRE", "XSU", "XTS", "XUA", "XXX", "YDD", "YER", "YUD", "YUM", "YUN", "ZAL", "ZAR", "ZMK", "ZMW", "ZRN", "ZRZ", "ZWC", "ZWD", "ZWL", "ZWN", "ZWR"];
|
package/dist/{transaction.schema-8da87f68.cjs.dev.js → transaction.schema-5bc7e516.cjs.dev.js}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
3
|
+
var identityApi_schema = require('./identity-api.schema-841bc821.cjs.dev.js');
|
|
4
4
|
var zod = require('zod');
|
|
5
5
|
|
|
6
6
|
var CurrencyCodes = ["ADP", "AED", "AFA", "AFN", "ALK", "ALL", "AMD", "ANG", "AOA", "AOK", "AON", "AOR", "ARA", "ARP", "ARS", "ARY", "ATS", "AUD", "AWG", "AYM", "AZM", "AZN", "BAD", "BAM", "BBD", "BDT", "BEC", "BEF", "BEL", "BGJ", "BGK", "BGL", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOP", "BOV", "BRB", "BRC", "BRE", "BRL", "BRN", "BRR", "BSD", "BTN", "BUK", "BWP", "BYB", "BYN", "BYR", "BZD", "CAD", "CDF", "CHC", "CHE", "CHF", "CHW", "CLF", "CLP", "CNY", "COP", "COU", "CRC", "CSD", "CSJ", "CSK", "CUC", "CUP", "CVE", "CYP", "CZK", "DDM", "DEM", "DJF", "DKK", "DOP", "DZD", "ECS", "ECV", "EEK", "EGP", "ERN", "ESA", "ESB", "ESP", "ETB", "EUR", "FIM", "FJD", "FKP", "FRF", "GBP", "GEK", "GEL", "GHC", "GHP", "GHS", "GIP", "GMD", "GNE", "GNF", "GNS", "GQE", "GRD", "GTQ", "GWE", "GWP", "GYD", "HKD", "HNL", "HRD", "HRK", "HTG", "HUF", "IDR", "IEP", "ILP", "ILR", "ILS", "INR", "IQD", "IRR", "ISJ", "ISK", "ITL", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAJ", "LAK", "LBP", "LKR", "LRD", "LSL", "LSM", "LTL", "LTT", "LUC", "LUF", "LUL", "LVL", "LVR", "LYD", "MAD", "MDL", "MGA", "MGF", "MKD", "MLF", "MMK", "MNT", "MOP", "MRO", "MRU", "MTL", "MTP", "MUR", "MVQ", "MVR", "MWK", "MXN", "MXP", "MXV", "MYR", "MZE", "MZM", "MZN", "NAD", "NGN", "NIC", "NIO", "NLG", "NOK", "NPR", "NZD", "OMR", "PAB", "PEH", "PEI", "PEN", "PES", "PGK", "PHP", "PKR", "PLN", "PLZ", "PTE", "PYG", "QAR", "RHD", "ROK", "ROL", "RON", "RSD", "RUB", "RUR", "RWF", "SAR", "SBD", "SCR", "SDD", "SDG", "SDP", "SEK", "SGD", "SHP", "SIT", "SKK", "SLL", "SOS", "SRD", "SRG", "SSP", "STD", "STN", "SUR", "SVC", "SYP", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "TWD", "TZS", "UAH", "UAK", "UGS", "UGW", "UGX", "USD", "USN", "USS", "UYI", "UYN", "UYP", "UYU", "UYW", "UZS", "VEB", "VEF", "VES", "VNC", "VND", "VUV", "WST", "XAF", "XAG", "XAU", "XBA", "XBB", "XBC", "XBD", "XCD", "XDR", "XEU", "XFO", "XFU", "XOF", "XPD", "XPF", "XPT", "XRE", "XSU", "XTS", "XUA", "XXX", "YDD", "YER", "YUD", "YUM", "YUN", "ZAL", "ZAR", "ZMK", "ZMW", "ZRN", "ZRZ", "ZWC", "ZWD", "ZWL", "ZWN", "ZWR"];
|
|
@@ -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-841bc821.cjs.dev.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('nanoid');
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-2fb2ff78.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('nanoid');
|
|
8
8
|
|