@nexeraid/identity-schemas 2.3.24-dev → 2.3.25-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.
Files changed (42) hide show
  1. package/dist/{customers.schema-cc3df18f.cjs.dev.js → customers.schema-0ce8464a.cjs.dev.js} +1 -1
  2. package/dist/{customers.schema-f0d472b1.cjs.prod.js → customers.schema-459fdc4d.cjs.prod.js} +1 -1
  3. package/dist/{customers.schema-0306abb6.esm.js → customers.schema-8f6c7924.esm.js} +1 -1
  4. package/dist/declarations/src/identity/app-requests.schema.d.ts +366 -366
  5. package/dist/declarations/src/identity/app-requests.schema.d.ts.map +1 -1
  6. package/dist/declarations/src/identity/challenge-query.schema.d.ts +117 -149
  7. package/dist/declarations/src/identity/challenge-query.schema.d.ts.map +1 -1
  8. package/dist/declarations/src/identity/host-requests.schema.d.ts +44 -44
  9. package/dist/declarations/src/identity/identity-v2.schema.d.ts +94 -94
  10. package/dist/declarations/src/identity/kyc.schema.d.ts +150 -150
  11. package/dist/declarations/src/identity/polygon-id.schema.d.ts +8 -8
  12. package/dist/declarations/src/identity/query.schema.d.ts +69 -67
  13. package/dist/declarations/src/identity/query.schema.d.ts.map +1 -1
  14. package/dist/declarations/src/identity/zkps.schema.d.ts +97 -97
  15. package/dist/declarations/src/identity-ids.schema.d.ts +20 -2
  16. package/dist/declarations/src/identity-ids.schema.d.ts.map +1 -1
  17. package/dist/declarations/src/nexeraSSID.schema.d.ts +2 -0
  18. package/dist/declarations/src/nexeraSSID.schema.d.ts.map +1 -1
  19. package/dist/declarations/src/providers/kyc-sessions.schema.d.ts +75 -75
  20. package/dist/{frontend-utilities.schema-02fc8336.esm.js → frontend-utilities.schema-8b213997.esm.js} +1 -1
  21. package/dist/{frontend-utilities.schema-0be040b7.cjs.dev.js → frontend-utilities.schema-9ce4190b.cjs.dev.js} +1 -1
  22. package/dist/{frontend-utilities.schema-cd88e673.cjs.prod.js → frontend-utilities.schema-d4d6374c.cjs.prod.js} +1 -1
  23. package/dist/{identity-api.schema-2de31155.cjs.prod.js → identity-api.schema-a16ec830.cjs.dev.js} +417 -396
  24. package/dist/{identity-api.schema-68a83f54.esm.js → identity-api.schema-d1954107.esm.js} +406 -396
  25. package/dist/{identity-api.schema-bbb2c243.cjs.dev.js → identity-api.schema-f103ebd9.cjs.prod.js} +417 -396
  26. package/dist/nexeraid-identity-schemas.cjs.dev.js +14 -3
  27. package/dist/nexeraid-identity-schemas.cjs.prod.js +14 -3
  28. package/dist/nexeraid-identity-schemas.esm.js +3 -3
  29. package/dist/package.json +1 -1
  30. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +3 -2
  31. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +3 -2
  32. package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
  33. package/package.json +1 -1
  34. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
  35. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
  36. package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
  37. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
  38. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
  39. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
  40. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +2 -2
  41. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +2 -2
  42. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +2 -2
@@ -7,16 +7,16 @@ export declare const ZKPRequest: z.ZodObject<{
7
7
  type: z.ZodEnum<["IDInformation", "SelfieImage", "IDImage", "ProofOfResidence", "AMLScreeningsResults", "ID3", "IDScan", "IDScanSelfie", "IDScanPassport"]>;
8
8
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9
9
  attribute: z.ZodString;
10
- value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">]>;
10
+ value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
11
11
  operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
12
12
  }, "strip", z.ZodTypeAny, {
13
- value: string | number | boolean | (string | number)[];
13
+ value: string | number | boolean | string[] | number[];
14
14
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
15
15
  attribute: string;
16
16
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
17
17
  requestId?: number | null | undefined;
18
18
  }, {
19
- value: string | number | boolean | (string | number)[];
19
+ value: string | number | boolean | string[] | number[];
20
20
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
21
21
  attribute: string;
22
22
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
@@ -24,25 +24,25 @@ export declare const ZKPRequest: z.ZodObject<{
24
24
  }>;
25
25
  }, "strip", z.ZodTypeAny, {
26
26
  id: number;
27
- circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
28
27
  query: {
29
- value: string | number | boolean | (string | number)[];
28
+ value: string | number | boolean | string[] | number[];
30
29
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
31
30
  attribute: string;
32
31
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
33
32
  requestId?: number | null | undefined;
34
33
  };
34
+ circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
35
35
  optional?: boolean | undefined;
36
36
  }, {
37
37
  id: number;
38
- circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
39
38
  query: {
40
- value: string | number | boolean | (string | number)[];
39
+ value: string | number | boolean | string[] | number[];
41
40
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
42
41
  attribute: string;
43
42
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
44
43
  requestId?: number | null | undefined;
45
44
  };
45
+ circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
46
46
  optional?: boolean | undefined;
47
47
  }>;
48
48
  export type ZKPRequest = z.infer<typeof ZKPRequest>;
@@ -53,13 +53,13 @@ export declare const ZKPRequestFromZKVerifier: z.ZodObject<{
53
53
  query: z.ZodRecord<z.ZodString, z.ZodUnknown>;
54
54
  }, "strip", z.ZodTypeAny, {
55
55
  id: number;
56
- circuitId: string;
57
56
  query: Record<string, unknown>;
57
+ circuitId: string;
58
58
  optional?: boolean | undefined;
59
59
  }, {
60
60
  id: number;
61
- circuitId: string;
62
61
  query: Record<string, unknown>;
62
+ circuitId: string;
63
63
  optional?: boolean | undefined;
64
64
  }>;
65
65
  export type ZKPRequestFromZKVerifier = z.infer<typeof ZKPRequestFromZKVerifier>;
@@ -73,16 +73,16 @@ export declare const OffChainZKP: z.ZodObject<{
73
73
  type: z.ZodEnum<["IDInformation", "SelfieImage", "IDImage", "ProofOfResidence", "AMLScreeningsResults", "ID3", "IDScan", "IDScanSelfie", "IDScanPassport"]>;
74
74
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
75
75
  attribute: z.ZodString;
76
- value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">]>;
76
+ value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
77
77
  operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
78
78
  }, "strip", z.ZodTypeAny, {
79
- value: string | number | boolean | (string | number)[];
79
+ value: string | number | boolean | string[] | number[];
80
80
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
81
81
  attribute: string;
82
82
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
83
83
  requestId?: number | null | undefined;
84
84
  }, {
85
- value: string | number | boolean | (string | number)[];
85
+ value: string | number | boolean | string[] | number[];
86
86
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
87
87
  attribute: string;
88
88
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
@@ -90,52 +90,52 @@ export declare const OffChainZKP: z.ZodObject<{
90
90
  }>;
91
91
  }, "strip", z.ZodTypeAny, {
92
92
  id: number;
93
- circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
94
93
  query: {
95
- value: string | number | boolean | (string | number)[];
94
+ value: string | number | boolean | string[] | number[];
96
95
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
97
96
  attribute: string;
98
97
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
99
98
  requestId?: number | null | undefined;
100
99
  };
100
+ circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
101
101
  optional?: boolean | undefined;
102
102
  }, {
103
103
  id: number;
104
- circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
105
104
  query: {
106
- value: string | number | boolean | (string | number)[];
105
+ value: string | number | boolean | string[] | number[];
107
106
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
108
107
  attribute: string;
109
108
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
110
109
  requestId?: number | null | undefined;
111
110
  };
111
+ circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
112
112
  optional?: boolean | undefined;
113
113
  }>, "many">>>;
114
114
  }, "strip", z.ZodTypeAny, {
115
115
  zkpRequest?: {
116
116
  id: number;
117
- circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
118
117
  query: {
119
- value: string | number | boolean | (string | number)[];
118
+ value: string | number | boolean | string[] | number[];
120
119
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
121
120
  attribute: string;
122
121
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
123
122
  requestId?: number | null | undefined;
124
123
  };
124
+ circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
125
125
  optional?: boolean | undefined;
126
126
  }[] | null | undefined;
127
127
  requestingAuthorizationMessage?: string | null | undefined;
128
128
  }, {
129
129
  zkpRequest?: {
130
130
  id: number;
131
- circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
132
131
  query: {
133
- value: string | number | boolean | (string | number)[];
132
+ value: string | number | boolean | string[] | number[];
134
133
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
135
134
  attribute: string;
136
135
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
137
136
  requestId?: number | null | undefined;
138
137
  };
138
+ circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
139
139
  optional?: boolean | undefined;
140
140
  }[] | null | undefined;
141
141
  requestingAuthorizationMessage?: string | null | undefined;
@@ -150,16 +150,16 @@ export declare const CreateAuthRequestProps: z.ZodObject<{
150
150
  type: z.ZodEnum<["IDInformation", "SelfieImage", "IDImage", "ProofOfResidence", "AMLScreeningsResults", "ID3", "IDScan", "IDScanSelfie", "IDScanPassport"]>;
151
151
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
152
152
  attribute: z.ZodString;
153
- value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">]>;
153
+ value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
154
154
  operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
155
155
  }, "strip", z.ZodTypeAny, {
156
- value: string | number | boolean | (string | number)[];
156
+ value: string | number | boolean | string[] | number[];
157
157
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
158
158
  attribute: string;
159
159
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
160
160
  requestId?: number | null | undefined;
161
161
  }, {
162
- value: string | number | boolean | (string | number)[];
162
+ value: string | number | boolean | string[] | number[];
163
163
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
164
164
  attribute: string;
165
165
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
@@ -172,15 +172,15 @@ export declare const CreateAuthRequestProps: z.ZodObject<{
172
172
  }, "strip", z.ZodTypeAny, {
173
173
  id: string;
174
174
  message: string;
175
- sessionId: string;
176
- thid: string;
177
175
  query: {
178
- value: string | number | boolean | (string | number)[];
176
+ value: string | number | boolean | string[] | number[];
179
177
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
180
178
  attribute: string;
181
179
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
182
180
  requestId?: number | null | undefined;
183
181
  }[];
182
+ sessionId: string;
183
+ thid: string;
184
184
  hostUrl: string;
185
185
  audience: string;
186
186
  callbackURL: string;
@@ -188,15 +188,15 @@ export declare const CreateAuthRequestProps: z.ZodObject<{
188
188
  }, {
189
189
  id: string;
190
190
  message: string;
191
- sessionId: string;
192
- thid: string;
193
191
  query: {
194
- value: string | number | boolean | (string | number)[];
192
+ value: string | number | boolean | string[] | number[];
195
193
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
196
194
  attribute: string;
197
195
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
198
196
  requestId?: number | null | undefined;
199
197
  }[];
198
+ sessionId: string;
199
+ thid: string;
200
200
  hostUrl: string;
201
201
  audience: string;
202
202
  callbackURL: string;
@@ -209,16 +209,16 @@ export declare const CreateZKProofRequestProps: z.ZodObject<{
209
209
  type: z.ZodEnum<["IDInformation", "SelfieImage", "IDImage", "ProofOfResidence", "AMLScreeningsResults", "ID3", "IDScan", "IDScanSelfie", "IDScanPassport"]>;
210
210
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
211
211
  attribute: z.ZodString;
212
- value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">]>;
212
+ value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
213
213
  operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
214
214
  }, "strip", z.ZodTypeAny, {
215
- value: string | number | boolean | (string | number)[];
215
+ value: string | number | boolean | string[] | number[];
216
216
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
217
217
  attribute: string;
218
218
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
219
219
  requestId?: number | null | undefined;
220
220
  }, {
221
- value: string | number | boolean | (string | number)[];
221
+ value: string | number | boolean | string[] | number[];
222
222
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
223
223
  attribute: string;
224
224
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
@@ -227,7 +227,7 @@ export declare const CreateZKProofRequestProps: z.ZodObject<{
227
227
  onChainVerification: z.ZodOptional<z.ZodBoolean>;
228
228
  }, "strip", z.ZodTypeAny, {
229
229
  query: {
230
- value: string | number | boolean | (string | number)[];
230
+ value: string | number | boolean | string[] | number[];
231
231
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
232
232
  attribute: string;
233
233
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
@@ -237,7 +237,7 @@ export declare const CreateZKProofRequestProps: z.ZodObject<{
237
237
  onChainVerification?: boolean | undefined;
238
238
  }, {
239
239
  query: {
240
- value: string | number | boolean | (string | number)[];
240
+ value: string | number | boolean | string[] | number[];
241
241
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
242
242
  attribute: string;
243
243
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
@@ -290,21 +290,21 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
290
290
  query: z.ZodRecord<z.ZodString, z.ZodAny>;
291
291
  }, "strip", z.ZodTypeAny, {
292
292
  id: number;
293
- circuitId: string;
294
293
  query: Record<string, any>;
294
+ circuitId: string;
295
295
  optional?: boolean | undefined;
296
296
  }, {
297
297
  id: number;
298
- circuitId: string;
299
298
  query: Record<string, any>;
299
+ circuitId: string;
300
300
  optional?: boolean | undefined;
301
301
  }>, "many">;
302
302
  }, "strip", z.ZodTypeAny, {
303
303
  callbackUrl: string;
304
304
  scope: {
305
305
  id: number;
306
- circuitId: string;
307
306
  query: Record<string, any>;
307
+ circuitId: string;
308
308
  optional?: boolean | undefined;
309
309
  }[];
310
310
  message?: string | undefined;
@@ -314,8 +314,8 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
314
314
  callbackUrl: string;
315
315
  scope: {
316
316
  id: number;
317
- circuitId: string;
318
317
  query: Record<string, any>;
318
+ circuitId: string;
319
319
  optional?: boolean | undefined;
320
320
  }[];
321
321
  message?: string | undefined;
@@ -331,8 +331,8 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
331
331
  callbackUrl: string;
332
332
  scope: {
333
333
  id: number;
334
- circuitId: string;
335
334
  query: Record<string, any>;
335
+ circuitId: string;
336
336
  optional?: boolean | undefined;
337
337
  }[];
338
338
  message?: string | undefined;
@@ -350,8 +350,8 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
350
350
  callbackUrl: string;
351
351
  scope: {
352
352
  id: number;
353
- circuitId: string;
354
353
  query: Record<string, any>;
354
+ circuitId: string;
355
355
  optional?: boolean | undefined;
356
356
  }[];
357
357
  message?: string | undefined;
@@ -505,40 +505,40 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
505
505
  to?: string | undefined;
506
506
  }>>>;
507
507
  verificationError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
508
- query: z.ZodObject<{
508
+ query: z.ZodArray<z.ZodObject<{
509
509
  type: z.ZodEnum<["IDInformation", "SelfieImage", "IDImage", "ProofOfResidence", "AMLScreeningsResults", "ID3", "IDScan", "IDScanSelfie", "IDScanPassport"]>;
510
510
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
511
511
  attribute: z.ZodString;
512
- value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">]>;
512
+ value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
513
513
  operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
514
514
  }, "strip", z.ZodTypeAny, {
515
- value: string | number | boolean | (string | number)[];
515
+ value: string | number | boolean | string[] | number[];
516
516
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
517
517
  attribute: string;
518
518
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
519
519
  requestId?: number | null | undefined;
520
520
  }, {
521
- value: string | number | boolean | (string | number)[];
521
+ value: string | number | boolean | string[] | number[];
522
522
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
523
523
  attribute: string;
524
524
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
525
525
  requestId?: number | null | undefined;
526
- }>;
526
+ }>, "many">;
527
527
  workflowSessionId: z.ZodOptional<z.ZodString>;
528
528
  }, "strip", z.ZodTypeAny, {
529
529
  status: "pending" | "authorised" | "unauthorised";
530
- projectId: string;
531
- executionId: string;
532
- sessionId: string;
533
- scenarioId: string;
534
- scenarioName: string;
535
530
  query: {
536
- value: string | number | boolean | (string | number)[];
531
+ value: string | number | boolean | string[] | number[];
537
532
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
538
533
  attribute: string;
539
534
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
540
535
  requestId?: number | null | undefined;
541
- };
536
+ }[];
537
+ projectId: string;
538
+ executionId: string;
539
+ sessionId: string;
540
+ scenarioId: string;
541
+ scenarioName: string;
542
542
  requestMessage: {
543
543
  id: string;
544
544
  type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment";
@@ -546,8 +546,8 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
546
546
  callbackUrl: string;
547
547
  scope: {
548
548
  id: number;
549
- circuitId: string;
550
549
  query: Record<string, any>;
550
+ circuitId: string;
551
551
  optional?: boolean | undefined;
552
552
  }[];
553
553
  message?: string | undefined;
@@ -589,18 +589,18 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
589
589
  workflowSessionId?: string | undefined;
590
590
  }, {
591
591
  status: "pending" | "authorised" | "unauthorised";
592
- projectId: string;
593
- executionId: string;
594
- sessionId: string;
595
- scenarioId: string;
596
- scenarioName: string;
597
592
  query: {
598
- value: string | number | boolean | (string | number)[];
593
+ value: string | number | boolean | string[] | number[];
599
594
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
600
595
  attribute: string;
601
596
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
602
597
  requestId?: number | null | undefined;
603
- };
598
+ }[];
599
+ projectId: string;
600
+ executionId: string;
601
+ sessionId: string;
602
+ scenarioId: string;
603
+ scenarioName: string;
604
604
  requestMessage: {
605
605
  id: string;
606
606
  type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment";
@@ -608,8 +608,8 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
608
608
  callbackUrl: string;
609
609
  scope: {
610
610
  id: number;
611
- circuitId: string;
612
611
  query: Record<string, any>;
612
+ circuitId: string;
613
613
  optional?: boolean | undefined;
614
614
  }[];
615
615
  message?: string | undefined;
@@ -656,18 +656,18 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
656
656
  sessionId: string;
657
657
  authorizations: Map<string, {
658
658
  status: "pending" | "authorised" | "unauthorised";
659
- projectId: string;
660
- executionId: string;
661
- sessionId: string;
662
- scenarioId: string;
663
- scenarioName: string;
664
659
  query: {
665
- value: string | number | boolean | (string | number)[];
660
+ value: string | number | boolean | string[] | number[];
666
661
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
667
662
  attribute: string;
668
663
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
669
664
  requestId?: number | null | undefined;
670
- };
665
+ }[];
666
+ projectId: string;
667
+ executionId: string;
668
+ sessionId: string;
669
+ scenarioId: string;
670
+ scenarioName: string;
671
671
  requestMessage: {
672
672
  id: string;
673
673
  type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment";
@@ -675,8 +675,8 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
675
675
  callbackUrl: string;
676
676
  scope: {
677
677
  id: number;
678
- circuitId: string;
679
678
  query: Record<string, any>;
679
+ circuitId: string;
680
680
  optional?: boolean | undefined;
681
681
  }[];
682
682
  message?: string | undefined;
@@ -723,18 +723,18 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
723
723
  sessionId: string;
724
724
  authorizations: Map<string, {
725
725
  status: "pending" | "authorised" | "unauthorised";
726
- projectId: string;
727
- executionId: string;
728
- sessionId: string;
729
- scenarioId: string;
730
- scenarioName: string;
731
726
  query: {
732
- value: string | number | boolean | (string | number)[];
727
+ value: string | number | boolean | string[] | number[];
733
728
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
734
729
  attribute: string;
735
730
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
736
731
  requestId?: number | null | undefined;
737
- };
732
+ }[];
733
+ projectId: string;
734
+ executionId: string;
735
+ sessionId: string;
736
+ scenarioId: string;
737
+ scenarioName: string;
738
738
  requestMessage: {
739
739
  id: string;
740
740
  type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment";
@@ -742,8 +742,8 @@ export declare const ProjectAuthorizationData: z.ZodObject<{
742
742
  callbackUrl: string;
743
743
  scope: {
744
744
  id: number;
745
- circuitId: string;
746
745
  query: Record<string, any>;
746
+ circuitId: string;
747
747
  optional?: boolean | undefined;
748
748
  }[];
749
749
  message?: string | undefined;
@@ -796,16 +796,16 @@ export declare const OnChainZKP: z.ZodObject<{
796
796
  type: z.ZodEnum<["IDInformation", "SelfieImage", "IDImage", "ProofOfResidence", "AMLScreeningsResults", "ID3", "IDScan", "IDScanSelfie", "IDScanPassport"]>;
797
797
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
798
798
  attribute: z.ZodString;
799
- value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">]>;
799
+ value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
800
800
  operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
801
801
  }, "strip", z.ZodTypeAny, {
802
- value: string | number | boolean | (string | number)[];
802
+ value: string | number | boolean | string[] | number[];
803
803
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
804
804
  attribute: string;
805
805
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
806
806
  requestId?: number | null | undefined;
807
807
  }, {
808
- value: string | number | boolean | (string | number)[];
808
+ value: string | number | boolean | string[] | number[];
809
809
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
810
810
  attribute: string;
811
811
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
@@ -813,53 +813,53 @@ export declare const OnChainZKP: z.ZodObject<{
813
813
  }>;
814
814
  }, "strip", z.ZodTypeAny, {
815
815
  id: number;
816
- circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
817
816
  query: {
818
- value: string | number | boolean | (string | number)[];
817
+ value: string | number | boolean | string[] | number[];
819
818
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
820
819
  attribute: string;
821
820
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
822
821
  requestId?: number | null | undefined;
823
822
  };
823
+ circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
824
824
  optional?: boolean | undefined;
825
825
  }, {
826
826
  id: number;
827
- circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
828
827
  query: {
829
- value: string | number | boolean | (string | number)[];
828
+ value: string | number | boolean | string[] | number[];
830
829
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
831
830
  attribute: string;
832
831
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
833
832
  requestId?: number | null | undefined;
834
833
  };
834
+ circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
835
835
  optional?: boolean | undefined;
836
836
  }>, "many">;
837
837
  }, "strip", z.ZodTypeAny, {
838
838
  scenarioVerifierAddress: `0x${string}`;
839
839
  zkpRequests: {
840
840
  id: number;
841
- circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
842
841
  query: {
843
- value: string | number | boolean | (string | number)[];
842
+ value: string | number | boolean | string[] | number[];
844
843
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
845
844
  attribute: string;
846
845
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
847
846
  requestId?: number | null | undefined;
848
847
  };
848
+ circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
849
849
  optional?: boolean | undefined;
850
850
  }[];
851
851
  }, {
852
852
  scenarioVerifierAddress: string;
853
853
  zkpRequests: {
854
854
  id: number;
855
- circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
856
855
  query: {
857
- value: string | number | boolean | (string | number)[];
856
+ value: string | number | boolean | string[] | number[];
858
857
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
859
858
  attribute: string;
860
859
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
861
860
  requestId?: number | null | undefined;
862
861
  };
862
+ circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
863
863
  optional?: boolean | undefined;
864
864
  }[];
865
865
  }>;
@@ -873,29 +873,29 @@ export declare const OnChainZKPFromNexeraID: z.ZodObject<{
873
873
  query: z.ZodRecord<z.ZodString, z.ZodUnknown>;
874
874
  }, "strip", z.ZodTypeAny, {
875
875
  id: number;
876
- circuitId: string;
877
876
  query: Record<string, unknown>;
877
+ circuitId: string;
878
878
  optional?: boolean | undefined;
879
879
  }, {
880
880
  id: number;
881
- circuitId: string;
882
881
  query: Record<string, unknown>;
882
+ circuitId: string;
883
883
  optional?: boolean | undefined;
884
884
  }>, "many">;
885
885
  }, "strip", z.ZodTypeAny, {
886
886
  scenarioVerifierAddress: `0x${string}`;
887
887
  zkpRequests: {
888
888
  id: number;
889
- circuitId: string;
890
889
  query: Record<string, unknown>;
890
+ circuitId: string;
891
891
  optional?: boolean | undefined;
892
892
  }[];
893
893
  }, {
894
894
  scenarioVerifierAddress: string;
895
895
  zkpRequests: {
896
896
  id: number;
897
- circuitId: string;
898
897
  query: Record<string, unknown>;
898
+ circuitId: string;
899
899
  optional?: boolean | undefined;
900
900
  }[];
901
901
  }>;
@@ -906,16 +906,16 @@ export declare const OnChainZKPScenarioFromCms: z.ZodObject<{
906
906
  type: z.ZodEnum<["IDInformation", "SelfieImage", "IDImage", "ProofOfResidence", "AMLScreeningsResults", "ID3", "IDScan", "IDScanSelfie", "IDScanPassport"]>;
907
907
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
908
908
  attribute: z.ZodString;
909
- value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">]>;
909
+ value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
910
910
  operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
911
911
  }, "strip", z.ZodTypeAny, {
912
- value: string | number | boolean | (string | number)[];
912
+ value: string | number | boolean | string[] | number[];
913
913
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
914
914
  attribute: string;
915
915
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
916
916
  requestId?: number | null | undefined;
917
917
  }, {
918
- value: string | number | boolean | (string | number)[];
918
+ value: string | number | boolean | string[] | number[];
919
919
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
920
920
  attribute: string;
921
921
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
@@ -924,7 +924,7 @@ export declare const OnChainZKPScenarioFromCms: z.ZodObject<{
924
924
  }, "strip", z.ZodTypeAny, {
925
925
  scenarioVerifierAddress: `0x${string}`;
926
926
  zkpRequests: {
927
- value: string | number | boolean | (string | number)[];
927
+ value: string | number | boolean | string[] | number[];
928
928
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
929
929
  attribute: string;
930
930
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
@@ -933,7 +933,7 @@ export declare const OnChainZKPScenarioFromCms: z.ZodObject<{
933
933
  }, {
934
934
  scenarioVerifierAddress: string;
935
935
  zkpRequests: {
936
- value: string | number | boolean | (string | number)[];
936
+ value: string | number | boolean | string[] | number[];
937
937
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
938
938
  attribute: string;
939
939
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";