@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.
Files changed (36) hide show
  1. package/dist/{customers.schema-1bf4fe64.cjs.dev.js → customers.schema-a23a7d7d.cjs.dev.js} +1 -1
  2. package/dist/{customers.schema-0bfe7ed2.esm.js → customers.schema-bc9ea241.esm.js} +1 -1
  3. package/dist/{customers.schema-80e163e9.cjs.prod.js → customers.schema-f2cbacca.cjs.prod.js} +1 -1
  4. package/dist/declarations/src/identity/app-requests.schema.d.ts +37 -37
  5. package/dist/declarations/src/identity/identity-v2.schema.d.ts +9 -9
  6. package/dist/declarations/src/identity/kyc.schema.d.ts +20 -20
  7. package/dist/declarations/src/identity/query.schema.d.ts +97 -92
  8. package/dist/declarations/src/identity/query.schema.d.ts.map +1 -1
  9. package/dist/declarations/src/identity/scenario.schema.d.ts +99 -99
  10. package/dist/declarations/src/identity/zkps.schema.d.ts +17 -17
  11. package/dist/{frontend-utilities.schema-63c0c3ec.cjs.prod.js → frontend-utilities.schema-1a37ad51.cjs.prod.js} +1 -1
  12. package/dist/{frontend-utilities.schema-c53dbf36.esm.js → frontend-utilities.schema-5587da47.esm.js} +1 -1
  13. package/dist/{frontend-utilities.schema-7ec52bb3.cjs.dev.js → frontend-utilities.schema-b01c1889.cjs.dev.js} +1 -1
  14. package/dist/{identity-api.schema-725ecd1d.cjs.prod.js → identity-api.schema-2fb2ff78.cjs.prod.js} +42 -9
  15. package/dist/{identity-api.schema-e1fe9b0e.cjs.dev.js → identity-api.schema-841bc821.cjs.dev.js} +42 -9
  16. package/dist/{identity-api.schema-a3f556f3.esm.js → identity-api.schema-ee362a66.esm.js} +42 -9
  17. package/dist/nexeraid-identity-schemas.cjs.dev.js +3 -3
  18. package/dist/nexeraid-identity-schemas.cjs.prod.js +3 -3
  19. package/dist/nexeraid-identity-schemas.esm.js +4 -4
  20. package/dist/package.json +1 -1
  21. package/dist/{transaction.schema-aff2475c.cjs.prod.js → transaction.schema-2d4e973b.cjs.prod.js} +1 -1
  22. package/dist/{transaction.schema-356f414e.esm.js → transaction.schema-2dd50ae5.esm.js} +1 -1
  23. package/dist/{transaction.schema-8da87f68.cjs.dev.js → transaction.schema-5bc7e516.cjs.dev.js} +1 -1
  24. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +1 -1
  25. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +1 -1
  26. package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
  27. package/package.json +1 -1
  28. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
  29. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
  30. package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
  31. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
  32. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
  33. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
  34. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +3 -3
  35. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +3 -3
  36. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +3 -3
@@ -3,9 +3,9 @@ export declare const AllCredentialAttributes: z.ZodUnion<[z.ZodEnum<["id" | "jou
3
3
  export type AllCredentialAttributes = z.infer<typeof AllCredentialAttributes>;
4
4
  export declare const AllCredentialValues: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
5
5
  export type AllCredentialValues = z.infer<typeof AllCredentialValues>;
6
- export declare const OPERATORS: readonly ["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"];
7
- export declare const Operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
8
- export declare const ZKPOperator: z.ZodEnum<["$noop", "$eq", "$lt", "$gt", "$in", "$nin", "$ne"]>;
6
+ export declare const OPERATORS: readonly ["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"];
7
+ export declare const Operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
8
+ export declare const ZKPOperator: z.ZodEnum<["$noop", "$eq", "$lt", "$gt", "$in", "$nin", "$ne", "$exists"]>;
9
9
  export declare const operatorDisplayMap: {
10
10
  $eq: string;
11
11
  $gt: string;
@@ -16,11 +16,12 @@ export declare const operatorDisplayMap: {
16
16
  $in: string;
17
17
  $nin: string;
18
18
  $noop: string;
19
+ $exists: string;
19
20
  };
20
21
  export declare const ARRAY_OPERATORS: readonly ["$in", "$nin", "$eq", "$ne"];
21
22
  export declare const ArrayOperator: z.ZodEnum<["$in", "$nin", "$eq", "$ne"]>;
22
- export declare const STRING_OPERATORS: readonly ["$eq", "$ne", "$in", "$nin"];
23
- export declare const StringOperator: z.ZodEnum<["$eq", "$ne", "$in", "$nin"]>;
23
+ export declare const STRING_OPERATORS: readonly ["$eq", "$ne", "$in", "$nin", "$exists"];
24
+ export declare const StringOperator: z.ZodEnum<["$eq", "$ne", "$in", "$nin", "$exists"]>;
24
25
  export declare const NUMERIC_OPERATORS: readonly ["$eq", "$ne", "$gt", "$gte", "$lt", "$lte"];
25
26
  export declare const NumericOperator: z.ZodEnum<["$eq", "$ne", "$gt", "$gte", "$lt", "$lte"]>;
26
27
  export declare const BOOLEAN_OPERATORS: readonly ["$eq", "$ne"];
@@ -31,21 +32,21 @@ export declare const SUPPORTED_TYPES: readonly ["string", "integer", "boolean",
31
32
  export declare const SupportedType: z.ZodEnum<["string", "integer", "boolean", "number", "array", "date"]>;
32
33
  export type SupportedType = z.infer<typeof SupportedType>;
33
34
  export declare const SupportedTypes: z.ZodObject<{
34
- string: z.ZodEnum<["$eq", "$ne", "$in", "$nin"]>;
35
+ string: z.ZodEnum<["$eq", "$ne", "$in", "$nin", "$exists"]>;
35
36
  integer: z.ZodEnum<["$eq", "$ne", "$gt", "$gte", "$lt", "$lte"]>;
36
37
  boolean: z.ZodEnum<["$eq", "$ne"]>;
37
38
  number: z.ZodEnum<["$eq", "$ne", "$gt", "$gte", "$lt", "$lte"]>;
38
39
  array: z.ZodEnum<["$in", "$nin", "$eq", "$ne"]>;
39
40
  date: z.ZodEnum<["$eq", "$ne", "$gt", "$gte", "$lt", "$lte"]>;
40
41
  }, "strip", z.ZodTypeAny, {
41
- string: "$eq" | "$in" | "$nin" | "$ne";
42
+ string: "$eq" | "$in" | "$nin" | "$ne" | "$exists";
42
43
  number: "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$ne";
43
44
  boolean: "$eq" | "$ne";
44
45
  integer: "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$ne";
45
46
  date: "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$ne";
46
47
  array: "$eq" | "$in" | "$nin" | "$ne";
47
48
  }, {
48
- string: "$eq" | "$in" | "$nin" | "$ne";
49
+ string: "$eq" | "$in" | "$nin" | "$ne" | "$exists";
49
50
  number: "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$ne";
50
51
  boolean: "$eq" | "$ne";
51
52
  integer: "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$ne";
@@ -57,18 +58,18 @@ export declare const IDInformation: z.ZodObject<{
57
58
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
58
59
  attribute: z.ZodUnion<[z.ZodString, z.ZodEnum<["id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "documentType" | "entryDate" | "entryTime" | "personalData" | "isSandbox", ...("id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "documentType" | "entryDate" | "entryTime" | "personalData" | "isSandbox")[]]>]>;
59
60
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
60
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
61
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
61
62
  }, "strip", z.ZodTypeAny, {
62
63
  value: string | number | boolean | string[] | number[];
63
64
  type: "IDInformation";
64
65
  attribute: string;
65
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
66
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
66
67
  requestId?: number | null | undefined;
67
68
  }, {
68
69
  value: string | number | boolean | string[] | number[];
69
70
  type: "IDInformation";
70
71
  attribute: string;
71
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
72
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
72
73
  requestId?: number | null | undefined;
73
74
  }>;
74
75
  export declare const QueryConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -76,72 +77,72 @@ export declare const QueryConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
76
77
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
77
78
  attribute: z.ZodUnion<[z.ZodString, z.ZodEnum<["id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "documentType" | "entryDate" | "entryTime" | "personalData" | "isSandbox", ...("id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "documentType" | "entryDate" | "entryTime" | "personalData" | "isSandbox")[]]>]>;
78
79
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
79
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
80
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
80
81
  }, "strip", z.ZodTypeAny, {
81
82
  value: string | number | boolean | string[] | number[];
82
83
  type: "IDInformation";
83
84
  attribute: string;
84
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
85
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
85
86
  requestId?: number | null | undefined;
86
87
  }, {
87
88
  value: string | number | boolean | string[] | number[];
88
89
  type: "IDInformation";
89
90
  attribute: string;
90
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
91
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
91
92
  requestId?: number | null | undefined;
92
93
  }>, z.ZodObject<{
93
94
  type: z.ZodLiteral<"IDImage">;
94
95
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
95
96
  attribute: z.ZodUnion<[z.ZodString, z.ZodEnum<["id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "documentType" | "entryDate" | "entryTime" | "isSandbox" | "base64_front" | "base64_back" | "name" | "mediaType_front" | "mediaType_back", ...("id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "documentType" | "entryDate" | "entryTime" | "isSandbox" | "base64_front" | "base64_back" | "name" | "mediaType_front" | "mediaType_back")[]]>]>;
96
97
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
97
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
98
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
98
99
  }, "strip", z.ZodTypeAny, {
99
100
  value: string | number | boolean | string[] | number[];
100
101
  type: "IDImage";
101
102
  attribute: string;
102
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
103
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
103
104
  requestId?: number | null | undefined;
104
105
  }, {
105
106
  value: string | number | boolean | string[] | number[];
106
107
  type: "IDImage";
107
108
  attribute: string;
108
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
109
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
109
110
  requestId?: number | null | undefined;
110
111
  }>, z.ZodObject<{
111
112
  type: z.ZodLiteral<"SelfieImage">;
112
113
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
113
114
  attribute: z.ZodUnion<[z.ZodString, z.ZodEnum<["id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "entryDate" | "entryTime" | "isSandbox" | "name" | "base64" | "mediaType", ...("id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "entryDate" | "entryTime" | "isSandbox" | "name" | "base64" | "mediaType")[]]>]>;
114
115
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
115
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
116
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
116
117
  }, "strip", z.ZodTypeAny, {
117
118
  value: string | number | boolean | string[] | number[];
118
119
  type: "SelfieImage";
119
120
  attribute: string;
120
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
121
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
121
122
  requestId?: number | null | undefined;
122
123
  }, {
123
124
  value: string | number | boolean | string[] | number[];
124
125
  type: "SelfieImage";
125
126
  attribute: string;
126
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
127
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
127
128
  requestId?: number | null | undefined;
128
129
  }>, z.ZodObject<{
129
130
  type: z.ZodLiteral<"ProofOfResidence">;
130
131
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
131
132
  attribute: z.ZodUnion<[z.ZodString, z.ZodEnum<["id" | "journeyId" | "documentType" | "entryDate" | "entryTime" | "country" | "isSandbox" | "name" | "base64" | "mediaType" | "county" | "city" | "streetName" | "postalCode", ...("id" | "journeyId" | "documentType" | "entryDate" | "entryTime" | "country" | "isSandbox" | "name" | "base64" | "mediaType" | "county" | "city" | "streetName" | "postalCode")[]]>]>;
132
133
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
133
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
134
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
134
135
  }, "strip", z.ZodTypeAny, {
135
136
  value: string | number | boolean | string[] | number[];
136
137
  type: "ProofOfResidence";
137
138
  attribute: string;
138
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
139
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
139
140
  requestId?: number | null | undefined;
140
141
  }, {
141
142
  value: string | number | boolean | string[] | number[];
142
143
  type: "ProofOfResidence";
143
144
  attribute: string;
144
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
145
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
145
146
  requestId?: number | null | undefined;
146
147
  }>]>;
147
148
  export declare const QueryType: z.ZodEnum<["IDInformation", "SelfieImage", "IDImage", "ProofOfResidence", "AMLScreeningsResults", "ID3", "IDScan", "IDScanSelfie", "IDScanPassport"]>;
@@ -151,18 +152,18 @@ export declare const QueryConfigSimplified: z.ZodObject<{
151
152
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
152
153
  attribute: z.ZodString;
153
154
  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"]>;
155
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
155
156
  }, "strip", z.ZodTypeAny, {
156
157
  value: string | number | boolean | string[] | number[];
157
158
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
158
159
  attribute: string;
159
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
160
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
160
161
  requestId?: number | null | undefined;
161
162
  }, {
162
163
  value: string | number | boolean | string[] | number[];
163
164
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
164
165
  attribute: string;
165
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
166
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
166
167
  requestId?: number | null | undefined;
167
168
  }>;
168
169
  export declare const PartialQueryConfigSimplified: z.ZodObject<{
@@ -170,19 +171,19 @@ export declare const PartialQueryConfigSimplified: z.ZodObject<{
170
171
  requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
171
172
  attribute: z.ZodOptional<z.ZodString>;
172
173
  value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>>;
173
- operator: z.ZodOptional<z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>>;
174
+ operator: z.ZodOptional<z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>>;
174
175
  }, "strip", z.ZodTypeAny, {
175
176
  value?: string | number | boolean | string[] | number[] | undefined;
176
177
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
177
178
  requestId?: number | null | undefined;
178
179
  attribute?: string | undefined;
179
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
180
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
180
181
  }, {
181
182
  value?: string | number | boolean | string[] | number[] | undefined;
182
183
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
183
184
  requestId?: number | null | undefined;
184
185
  attribute?: string | undefined;
185
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
186
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
186
187
  }>;
187
188
  export type QueryConfigSimplified = z.infer<typeof QueryConfigSimplified>;
188
189
  export type PartialQueryConfigSimplified = z.infer<typeof PartialQueryConfigSimplified>;
@@ -191,30 +192,30 @@ export declare const QueryConfigSimplifiedParsed: z.ZodEffects<z.ZodObject<{
191
192
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
192
193
  attribute: z.ZodString;
193
194
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
194
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
195
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
195
196
  }, "strip", z.ZodTypeAny, {
196
197
  value: string | number | boolean | string[] | number[];
197
198
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
198
199
  attribute: string;
199
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
200
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
200
201
  requestId?: number | null | undefined;
201
202
  }, {
202
203
  value: string | number | boolean | string[] | number[];
203
204
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
204
205
  attribute: string;
205
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
206
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
206
207
  requestId?: number | null | undefined;
207
208
  }>, {
208
209
  requestId: number | null | undefined;
209
210
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
210
211
  attribute: string;
211
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
212
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
212
213
  value: string | number | boolean | string[] | number[];
213
214
  }, {
214
215
  value: string | number | boolean | string[] | number[];
215
216
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
216
217
  attribute: string;
217
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
218
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
218
219
  requestId?: number | null | undefined;
219
220
  }>;
220
221
  export type QueryConfigSimplifiedParsed = z.infer<typeof QueryConfigSimplifiedParsed>;
@@ -225,30 +226,30 @@ export declare const QueryConfiguration: z.ZodObject<{
225
226
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
226
227
  attribute: z.ZodString;
227
228
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
228
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
229
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
229
230
  }, "strip", z.ZodTypeAny, {
230
231
  value: string | number | boolean | string[] | number[];
231
232
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
232
233
  attribute: string;
233
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
234
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
234
235
  requestId?: number | null | undefined;
235
236
  }, {
236
237
  value: string | number | boolean | string[] | number[];
237
238
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
238
239
  attribute: string;
239
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
240
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
240
241
  requestId?: number | null | undefined;
241
242
  }>, {
242
243
  requestId: number | null | undefined;
243
244
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
244
245
  attribute: string;
245
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
246
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
246
247
  value: string | number | boolean | string[] | number[];
247
248
  }, {
248
249
  value: string | number | boolean | string[] | number[];
249
250
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
250
251
  attribute: string;
251
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
252
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
252
253
  requestId?: number | null | undefined;
253
254
  }>;
254
255
  }, "strip", z.ZodTypeAny, {
@@ -257,7 +258,7 @@ export declare const QueryConfiguration: z.ZodObject<{
257
258
  requestId: number | null | undefined;
258
259
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
259
260
  attribute: string;
260
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
261
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
261
262
  value: string | number | boolean | string[] | number[];
262
263
  };
263
264
  }, {
@@ -266,7 +267,7 @@ export declare const QueryConfiguration: z.ZodObject<{
266
267
  value: string | number | boolean | string[] | number[];
267
268
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
268
269
  attribute: string;
269
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
270
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
270
271
  requestId?: number | null | undefined;
271
272
  };
272
273
  }>;
@@ -277,18 +278,18 @@ export declare const NonParsedQueryConfiguration: z.ZodObject<{
277
278
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
278
279
  attribute: z.ZodString;
279
280
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
280
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
281
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
281
282
  }, "strip", z.ZodTypeAny, {
282
283
  value: string | number | boolean | string[] | number[];
283
284
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
284
285
  attribute: string;
285
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
286
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
286
287
  requestId?: number | null | undefined;
287
288
  }, {
288
289
  value: string | number | boolean | string[] | number[];
289
290
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
290
291
  attribute: string;
291
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
292
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
292
293
  requestId?: number | null | undefined;
293
294
  }>;
294
295
  }, "strip", z.ZodTypeAny, {
@@ -297,7 +298,7 @@ export declare const NonParsedQueryConfiguration: z.ZodObject<{
297
298
  value: string | number | boolean | string[] | number[];
298
299
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
299
300
  attribute: string;
300
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
301
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
301
302
  requestId?: number | null | undefined;
302
303
  };
303
304
  }, {
@@ -306,7 +307,7 @@ export declare const NonParsedQueryConfiguration: z.ZodObject<{
306
307
  value: string | number | boolean | string[] | number[];
307
308
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
308
309
  attribute: string;
309
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
310
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
310
311
  requestId?: number | null | undefined;
311
312
  };
312
313
  }>;
@@ -317,18 +318,18 @@ export declare const CreateQueryConfigurationInput: z.ZodObject<{
317
318
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
318
319
  attribute: z.ZodString;
319
320
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
320
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
321
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
321
322
  }, "strip", z.ZodTypeAny, {
322
323
  value: string | number | boolean | string[] | number[];
323
324
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
324
325
  attribute: string;
325
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
326
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
326
327
  requestId?: number | null | undefined;
327
328
  }, {
328
329
  value: string | number | boolean | string[] | number[];
329
330
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
330
331
  attribute: string;
331
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
332
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
332
333
  requestId?: number | null | undefined;
333
334
  }>;
334
335
  scenarioId: z.ZodString;
@@ -337,7 +338,7 @@ export declare const CreateQueryConfigurationInput: z.ZodObject<{
337
338
  value: string | number | boolean | string[] | number[];
338
339
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
339
340
  attribute: string;
340
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
341
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
341
342
  requestId?: number | null | undefined;
342
343
  };
343
344
  scenarioId: string;
@@ -346,7 +347,7 @@ export declare const CreateQueryConfigurationInput: z.ZodObject<{
346
347
  value: string | number | boolean | string[] | number[];
347
348
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
348
349
  attribute: string;
349
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
350
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
350
351
  requestId?: number | null | undefined;
351
352
  };
352
353
  scenarioId: string;
@@ -357,30 +358,30 @@ export declare const CreateQueryConfigurationResponse: z.ZodObject<{
357
358
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
358
359
  attribute: z.ZodString;
359
360
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
360
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
361
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
361
362
  }, "strip", z.ZodTypeAny, {
362
363
  value: string | number | boolean | string[] | number[];
363
364
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
364
365
  attribute: string;
365
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
366
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
366
367
  requestId?: number | null | undefined;
367
368
  }, {
368
369
  value: string | number | boolean | string[] | number[];
369
370
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
370
371
  attribute: string;
371
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
372
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
372
373
  requestId?: number | null | undefined;
373
374
  }>, {
374
375
  requestId: number | null | undefined;
375
376
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
376
377
  attribute: string;
377
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
378
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
378
379
  value: string | number | boolean | string[] | number[];
379
380
  }, {
380
381
  value: string | number | boolean | string[] | number[];
381
382
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
382
383
  attribute: string;
383
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
384
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
384
385
  requestId?: number | null | undefined;
385
386
  }>;
386
387
  }, "strip", z.ZodTypeAny, {
@@ -388,7 +389,7 @@ export declare const CreateQueryConfigurationResponse: z.ZodObject<{
388
389
  requestId: number | null | undefined;
389
390
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
390
391
  attribute: string;
391
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
392
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
392
393
  value: string | number | boolean | string[] | number[];
393
394
  };
394
395
  }, {
@@ -396,7 +397,7 @@ export declare const CreateQueryConfigurationResponse: z.ZodObject<{
396
397
  value: string | number | boolean | string[] | number[];
397
398
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
398
399
  attribute: string;
399
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
400
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
400
401
  requestId?: number | null | undefined;
401
402
  };
402
403
  }>;
@@ -408,19 +409,19 @@ export declare const UpdateQueryConfigurationInput: z.ZodObject<{
408
409
  requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
409
410
  attribute: z.ZodOptional<z.ZodString>;
410
411
  value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>>;
411
- operator: z.ZodOptional<z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>>;
412
+ operator: z.ZodOptional<z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>>;
412
413
  }, "strip", z.ZodTypeAny, {
413
414
  value?: string | number | boolean | string[] | number[] | undefined;
414
415
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
415
416
  requestId?: number | null | undefined;
416
417
  attribute?: string | undefined;
417
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
418
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
418
419
  }, {
419
420
  value?: string | number | boolean | string[] | number[] | undefined;
420
421
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
421
422
  requestId?: number | null | undefined;
422
423
  attribute?: string | undefined;
423
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
424
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
424
425
  }>;
425
426
  }, "strip", z.ZodTypeAny, {
426
427
  query: {
@@ -428,7 +429,7 @@ export declare const UpdateQueryConfigurationInput: z.ZodObject<{
428
429
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
429
430
  requestId?: number | null | undefined;
430
431
  attribute?: string | undefined;
431
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
432
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
432
433
  };
433
434
  scenarioId: string;
434
435
  queryConfigurationId: string;
@@ -438,7 +439,7 @@ export declare const UpdateQueryConfigurationInput: z.ZodObject<{
438
439
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
439
440
  requestId?: number | null | undefined;
440
441
  attribute?: string | undefined;
441
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
442
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
442
443
  };
443
444
  scenarioId: string;
444
445
  queryConfigurationId: string;
@@ -449,31 +450,31 @@ export declare const UpdateQueryConfigurationResponse: z.ZodObject<{
449
450
  requestId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
450
451
  attribute: z.ZodOptional<z.ZodString>;
451
452
  value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>>;
452
- operator: z.ZodOptional<z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>>;
453
+ operator: z.ZodOptional<z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>>;
453
454
  }, "strip", z.ZodTypeAny, {
454
455
  value?: string | number | boolean | string[] | number[] | undefined;
455
456
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
456
457
  requestId?: number | null | undefined;
457
458
  attribute?: string | undefined;
458
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
459
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
459
460
  }, {
460
461
  value?: string | number | boolean | string[] | number[] | undefined;
461
462
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
462
463
  requestId?: number | null | undefined;
463
464
  attribute?: string | undefined;
464
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
465
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
465
466
  }>, {
466
467
  value?: string | number | boolean | string[] | number[] | undefined;
467
468
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
468
469
  requestId?: number | null | undefined;
469
470
  attribute?: string | undefined;
470
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
471
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
471
472
  }, {
472
473
  value?: string | number | boolean | string[] | number[] | undefined;
473
474
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
474
475
  requestId?: number | null | undefined;
475
476
  attribute?: string | undefined;
476
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
477
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
477
478
  }>;
478
479
  }, "strip", z.ZodTypeAny, {
479
480
  queryConfiguration: {
@@ -481,7 +482,7 @@ export declare const UpdateQueryConfigurationResponse: z.ZodObject<{
481
482
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
482
483
  requestId?: number | null | undefined;
483
484
  attribute?: string | undefined;
484
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
485
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
485
486
  };
486
487
  }, {
487
488
  queryConfiguration: {
@@ -489,7 +490,7 @@ export declare const UpdateQueryConfigurationResponse: z.ZodObject<{
489
490
  type?: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport" | undefined;
490
491
  requestId?: number | null | undefined;
491
492
  attribute?: string | undefined;
492
- operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | undefined;
493
+ operator?: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists" | undefined;
493
494
  };
494
495
  }>;
495
496
  export declare const DeleteQueryConfigurationInput: z.ZodObject<{
@@ -535,72 +536,72 @@ export declare const ChallengeQuerySchema: z.ZodObject<{
535
536
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
536
537
  attribute: z.ZodUnion<[z.ZodString, z.ZodEnum<["id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "documentType" | "entryDate" | "entryTime" | "personalData" | "isSandbox", ...("id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "documentType" | "entryDate" | "entryTime" | "personalData" | "isSandbox")[]]>]>;
537
538
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
538
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
539
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
539
540
  }, "strip", z.ZodTypeAny, {
540
541
  value: string | number | boolean | string[] | number[];
541
542
  type: "IDInformation";
542
543
  attribute: string;
543
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
544
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
544
545
  requestId?: number | null | undefined;
545
546
  }, {
546
547
  value: string | number | boolean | string[] | number[];
547
548
  type: "IDInformation";
548
549
  attribute: string;
549
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
550
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
550
551
  requestId?: number | null | undefined;
551
552
  }>, z.ZodObject<{
552
553
  type: z.ZodLiteral<"IDImage">;
553
554
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
554
555
  attribute: z.ZodUnion<[z.ZodString, z.ZodEnum<["id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "documentType" | "entryDate" | "entryTime" | "isSandbox" | "base64_front" | "base64_back" | "name" | "mediaType_front" | "mediaType_back", ...("id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "documentType" | "entryDate" | "entryTime" | "isSandbox" | "base64_front" | "base64_back" | "name" | "mediaType_front" | "mediaType_back")[]]>]>;
555
556
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
556
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
557
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
557
558
  }, "strip", z.ZodTypeAny, {
558
559
  value: string | number | boolean | string[] | number[];
559
560
  type: "IDImage";
560
561
  attribute: string;
561
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
562
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
562
563
  requestId?: number | null | undefined;
563
564
  }, {
564
565
  value: string | number | boolean | string[] | number[];
565
566
  type: "IDImage";
566
567
  attribute: string;
567
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
568
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
568
569
  requestId?: number | null | undefined;
569
570
  }>, z.ZodObject<{
570
571
  type: z.ZodLiteral<"SelfieImage">;
571
572
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
572
573
  attribute: z.ZodUnion<[z.ZodString, z.ZodEnum<["id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "entryDate" | "entryTime" | "isSandbox" | "name" | "base64" | "mediaType", ...("id" | "journeyId" | "reviewAnswer" | "reviewRejectType" | "reviewRejectLabels" | "entryDate" | "entryTime" | "isSandbox" | "name" | "base64" | "mediaType")[]]>]>;
573
574
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
574
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
575
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
575
576
  }, "strip", z.ZodTypeAny, {
576
577
  value: string | number | boolean | string[] | number[];
577
578
  type: "SelfieImage";
578
579
  attribute: string;
579
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
580
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
580
581
  requestId?: number | null | undefined;
581
582
  }, {
582
583
  value: string | number | boolean | string[] | number[];
583
584
  type: "SelfieImage";
584
585
  attribute: string;
585
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
586
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
586
587
  requestId?: number | null | undefined;
587
588
  }>, z.ZodObject<{
588
589
  type: z.ZodLiteral<"ProofOfResidence">;
589
590
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
590
591
  attribute: z.ZodUnion<[z.ZodString, z.ZodEnum<["id" | "journeyId" | "documentType" | "entryDate" | "entryTime" | "country" | "isSandbox" | "name" | "base64" | "mediaType" | "county" | "city" | "streetName" | "postalCode", ...("id" | "journeyId" | "documentType" | "entryDate" | "entryTime" | "country" | "isSandbox" | "name" | "base64" | "mediaType" | "county" | "city" | "streetName" | "postalCode")[]]>]>;
591
592
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
592
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
593
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
593
594
  }, "strip", z.ZodTypeAny, {
594
595
  value: string | number | boolean | string[] | number[];
595
596
  type: "ProofOfResidence";
596
597
  attribute: string;
597
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
598
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
598
599
  requestId?: number | null | undefined;
599
600
  }, {
600
601
  value: string | number | boolean | string[] | number[];
601
602
  type: "ProofOfResidence";
602
603
  attribute: string;
603
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
604
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
604
605
  requestId?: number | null | undefined;
605
606
  }>]>;
606
607
  }, "strip", z.ZodTypeAny, {
@@ -608,25 +609,25 @@ export declare const ChallengeQuerySchema: z.ZodObject<{
608
609
  value: string | number | boolean | string[] | number[];
609
610
  type: "IDInformation";
610
611
  attribute: string;
611
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
612
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
612
613
  requestId?: number | null | undefined;
613
614
  } | {
614
615
  value: string | number | boolean | string[] | number[];
615
616
  type: "IDImage";
616
617
  attribute: string;
617
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
618
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
618
619
  requestId?: number | null | undefined;
619
620
  } | {
620
621
  value: string | number | boolean | string[] | number[];
621
622
  type: "SelfieImage";
622
623
  attribute: string;
623
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
624
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
624
625
  requestId?: number | null | undefined;
625
626
  } | {
626
627
  value: string | number | boolean | string[] | number[];
627
628
  type: "ProofOfResidence";
628
629
  attribute: string;
629
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
630
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
630
631
  requestId?: number | null | undefined;
631
632
  };
632
633
  id?: string | undefined;
@@ -635,32 +636,32 @@ export declare const ChallengeQuerySchema: z.ZodObject<{
635
636
  value: string | number | boolean | string[] | number[];
636
637
  type: "IDInformation";
637
638
  attribute: string;
638
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
639
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
639
640
  requestId?: number | null | undefined;
640
641
  } | {
641
642
  value: string | number | boolean | string[] | number[];
642
643
  type: "IDImage";
643
644
  attribute: string;
644
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
645
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
645
646
  requestId?: number | null | undefined;
646
647
  } | {
647
648
  value: string | number | boolean | string[] | number[];
648
649
  type: "SelfieImage";
649
650
  attribute: string;
650
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
651
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
651
652
  requestId?: number | null | undefined;
652
653
  } | {
653
654
  value: string | number | boolean | string[] | number[];
654
655
  type: "ProofOfResidence";
655
656
  attribute: string;
656
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
657
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
657
658
  requestId?: number | null | undefined;
658
659
  };
659
660
  id?: string | undefined;
660
661
  }>;
661
662
  export type ChallengeQuery = z.infer<typeof ChallengeQuerySchema>;
662
- export declare const CHALLENGE_QUERY_OPERATORS: readonly ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN"];
663
- export declare const ChallengeQueryOperator: z.ZodEnum<["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN"]>;
663
+ export declare const CHALLENGE_QUERY_OPERATORS: readonly ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN", "EXISTS"];
664
+ export declare const ChallengeQueryOperator: z.ZodEnum<["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN", "EXISTS"]>;
664
665
  export type ChallengeQueryOperator = z.infer<typeof ChallengeQueryOperator>;
665
666
  export declare const OperatorMappings: {
666
667
  readonly toChallenge: {
@@ -673,6 +674,7 @@ export declare const OperatorMappings: {
673
674
  readonly $in: "IN";
674
675
  readonly $nin: "NOT_IN";
675
676
  readonly $ne: "NOT_EQUAL_TO";
677
+ readonly $exists: "EXISTS";
676
678
  };
677
679
  readonly fromChallenge: {
678
680
  readonly EQUAL_TO: "$eq";
@@ -683,6 +685,7 @@ export declare const OperatorMappings: {
683
685
  readonly IN: "$in";
684
686
  readonly NOT_IN: "$nin";
685
687
  readonly NOT_EQUAL_TO: "$ne";
688
+ readonly EXISTS: "$exists";
686
689
  };
687
690
  };
688
691
  export declare const OperatorToChallengeQueryOperator: {
@@ -695,6 +698,7 @@ export declare const OperatorToChallengeQueryOperator: {
695
698
  readonly $in: "IN";
696
699
  readonly $nin: "NOT_IN";
697
700
  readonly $ne: "NOT_EQUAL_TO";
701
+ readonly $exists: "EXISTS";
698
702
  };
699
703
  export declare const ChallengeQueryOperatorToOperator: {
700
704
  readonly EQUAL_TO: "$eq";
@@ -705,5 +709,6 @@ export declare const ChallengeQueryOperatorToOperator: {
705
709
  readonly IN: "$in";
706
710
  readonly NOT_IN: "$nin";
707
711
  readonly NOT_EQUAL_TO: "$ne";
712
+ readonly EXISTS: "$exists";
708
713
  };
709
714
  //# sourceMappingURL=query.schema.d.ts.map