@opencrvs/toolkit 1.8.0-rc.ffe24c3 → 1.8.1-rc.3e74262
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +1742 -14918
- package/dist/commons/conditionals/conditionals.d.ts +0 -12
- package/dist/commons/conditionals/validate.d.ts +5 -0
- package/dist/commons/events/ActionConfig.d.ts +37041 -35133
- package/dist/commons/events/ActionDocument.d.ts +3159 -1626
- package/dist/commons/events/ActionInput.d.ts +2280 -1380
- package/dist/commons/events/ActionType.d.ts +7 -4
- package/dist/commons/events/AdvancedSearchConfig.d.ts +100 -51
- package/dist/commons/events/CompositeFieldValue.d.ts +15 -15
- package/dist/commons/events/CountryConfigQueryInput.d.ts +1162 -760
- package/dist/commons/events/Draft.d.ts +190 -118
- package/dist/commons/events/EventConfig.d.ts +20824 -22965
- package/dist/commons/events/EventDocument.d.ts +1669 -1021
- package/dist/commons/events/EventIndex.d.ts +394 -175
- package/dist/commons/events/EventMetadata.d.ts +6 -4
- package/dist/commons/events/FieldConfig.d.ts +1528 -449
- package/dist/commons/events/FieldType.d.ts +3 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +80 -41
- package/dist/commons/events/FieldValue.d.ts +58 -28
- package/dist/commons/events/FormConfig.d.ts +9263 -2657
- package/dist/commons/events/PageConfig.d.ts +3642 -2028
- package/dist/commons/events/SummaryConfig.d.ts +10 -10
- package/dist/commons/events/User.d.ts +6 -3
- package/dist/commons/events/WorkqueueConfig.d.ts +2153 -1337
- package/dist/commons/events/defineConfig.d.ts +2759 -3250
- package/dist/commons/events/event.d.ts +10 -18
- package/dist/commons/events/field.d.ts +13 -1
- package/dist/commons/events/scopes.d.ts +2 -1
- package/dist/commons/events/test.utils.d.ts +58 -34
- package/dist/commons/events/utils.d.ts +8848 -6794
- package/dist/conditionals/index.js +23 -53
- package/dist/events/index.js +1594 -1341
- package/dist/scopes/index.d.ts +92 -6
- package/dist/scopes/index.js +38 -9
- package/package.json +3 -3
@@ -3,22 +3,22 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
3
3
|
eventType: z.ZodOptional<z.ZodString>;
|
4
4
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
5
5
|
type: z.ZodLiteral<"anyOf">;
|
6
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
6
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
8
8
|
type: "anyOf";
|
9
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
9
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
10
10
|
}, {
|
11
11
|
type: "anyOf";
|
12
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
12
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
13
13
|
}>, z.ZodObject<{
|
14
14
|
type: z.ZodLiteral<"exact">;
|
15
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
15
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
17
17
|
type: "exact";
|
18
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
18
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
19
19
|
}, {
|
20
20
|
type: "exact";
|
21
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
21
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
22
22
|
}>]>>>;
|
23
23
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
24
24
|
type: z.ZodLiteral<"exact">;
|
@@ -31,14 +31,11 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
31
31
|
}, {
|
32
32
|
type: "exact";
|
33
33
|
term: string;
|
34
|
-
}>, z.ZodObject<
|
34
|
+
}>, z.ZodObject<{
|
35
35
|
type: z.ZodLiteral<"range">;
|
36
|
-
gte: z.ZodString;
|
37
|
-
lte: z.ZodString;
|
38
|
-
}, {
|
39
36
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
40
37
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
41
|
-
}
|
38
|
+
}, "strip", z.ZodTypeAny, {
|
42
39
|
type: "range";
|
43
40
|
gte: string;
|
44
41
|
lte: string;
|
@@ -46,6 +43,15 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
46
43
|
type: "range";
|
47
44
|
gte: string;
|
48
45
|
lte: string;
|
46
|
+
}>, z.ZodObject<{
|
47
|
+
type: z.ZodLiteral<"timePeriod">;
|
48
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
49
|
+
}, "strip", z.ZodTypeAny, {
|
50
|
+
type: "timePeriod";
|
51
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
52
|
+
}, {
|
53
|
+
type: "timePeriod";
|
54
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
49
55
|
}>]>>>;
|
50
56
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
51
57
|
type: z.ZodLiteral<"exact">;
|
@@ -58,14 +64,11 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
58
64
|
}, {
|
59
65
|
type: "exact";
|
60
66
|
term: string;
|
61
|
-
}>, z.ZodObject<
|
67
|
+
}>, z.ZodObject<{
|
62
68
|
type: z.ZodLiteral<"range">;
|
63
|
-
gte: z.ZodString;
|
64
|
-
lte: z.ZodString;
|
65
|
-
}, {
|
66
69
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
67
70
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
68
|
-
}
|
71
|
+
}, "strip", z.ZodTypeAny, {
|
69
72
|
type: "range";
|
70
73
|
gte: string;
|
71
74
|
lte: string;
|
@@ -73,8 +76,17 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
73
76
|
type: "range";
|
74
77
|
gte: string;
|
75
78
|
lte: string;
|
79
|
+
}>, z.ZodObject<{
|
80
|
+
type: z.ZodLiteral<"timePeriod">;
|
81
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
82
|
+
}, "strip", z.ZodTypeAny, {
|
83
|
+
type: "timePeriod";
|
84
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
85
|
+
}, {
|
86
|
+
type: "timePeriod";
|
87
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
76
88
|
}>]>>>;
|
77
|
-
'
|
89
|
+
'legalStatuses.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
78
90
|
type: z.ZodLiteral<"exact">;
|
79
91
|
term: z.ZodString;
|
80
92
|
}, {
|
@@ -85,14 +97,11 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
85
97
|
}, {
|
86
98
|
type: "exact";
|
87
99
|
term: string;
|
88
|
-
}>, z.ZodObject<
|
100
|
+
}>, z.ZodObject<{
|
89
101
|
type: z.ZodLiteral<"range">;
|
90
|
-
gte: z.ZodString;
|
91
|
-
lte: z.ZodString;
|
92
|
-
}, {
|
93
102
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
94
103
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
95
|
-
}
|
104
|
+
}, "strip", z.ZodTypeAny, {
|
96
105
|
type: "range";
|
97
106
|
gte: string;
|
98
107
|
lte: string;
|
@@ -100,8 +109,17 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
100
109
|
type: "range";
|
101
110
|
gte: string;
|
102
111
|
lte: string;
|
112
|
+
}>, z.ZodObject<{
|
113
|
+
type: z.ZodLiteral<"timePeriod">;
|
114
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
115
|
+
}, "strip", z.ZodTypeAny, {
|
116
|
+
type: "timePeriod";
|
117
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
118
|
+
}, {
|
119
|
+
type: "timePeriod";
|
120
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
103
121
|
}>]>>>;
|
104
|
-
'
|
122
|
+
'legalStatuses.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
105
123
|
type: z.ZodLiteral<"within">;
|
106
124
|
location: z.ZodString;
|
107
125
|
}, "strip", z.ZodTypeAny, {
|
@@ -120,7 +138,7 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
120
138
|
type: "exact";
|
121
139
|
term: string;
|
122
140
|
}>]>>>;
|
123
|
-
'
|
141
|
+
'legalStatuses.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
124
142
|
type: z.ZodLiteral<"exact">;
|
125
143
|
term: z.ZodString;
|
126
144
|
}, "strip", z.ZodTypeAny, {
|
@@ -133,140 +151,149 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
133
151
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
134
152
|
type: z.ZodLiteral<"within">;
|
135
153
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
136
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
154
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
137
155
|
}, "strip", z.ZodTypeAny, {
|
138
|
-
$userField: "id" | "name" | "role" | "
|
156
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
139
157
|
}, {
|
140
|
-
$userField: "id" | "name" | "role" | "
|
158
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
141
159
|
}>]>;
|
142
160
|
}, "strip", z.ZodTypeAny, {
|
143
161
|
type: "within";
|
144
162
|
location: string | {
|
145
|
-
$userField: "id" | "name" | "role" | "
|
163
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
146
164
|
};
|
147
165
|
}, {
|
148
166
|
type: "within";
|
149
167
|
location: string | {
|
150
|
-
$userField: "id" | "name" | "role" | "
|
168
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
151
169
|
};
|
152
170
|
}>, z.ZodObject<{
|
153
171
|
type: z.ZodLiteral<"exact">;
|
154
172
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
155
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
173
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
156
174
|
}, "strip", z.ZodTypeAny, {
|
157
|
-
$userField: "id" | "name" | "role" | "
|
175
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
158
176
|
}, {
|
159
|
-
$userField: "id" | "name" | "role" | "
|
177
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
160
178
|
}>]>;
|
161
179
|
}, "strip", z.ZodTypeAny, {
|
162
180
|
type: "exact";
|
163
181
|
term: string | {
|
164
|
-
$userField: "id" | "name" | "role" | "
|
182
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
165
183
|
};
|
166
184
|
}, {
|
167
185
|
type: "exact";
|
168
186
|
term: string | {
|
169
|
-
$userField: "id" | "name" | "role" | "
|
187
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
170
188
|
};
|
171
189
|
}>]>>>;
|
172
190
|
updatedAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
173
191
|
type: z.ZodLiteral<"within">;
|
174
192
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
175
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
193
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
176
194
|
}, "strip", z.ZodTypeAny, {
|
177
|
-
$userField: "id" | "name" | "role" | "
|
195
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
178
196
|
}, {
|
179
|
-
$userField: "id" | "name" | "role" | "
|
197
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
180
198
|
}>]>;
|
181
199
|
}, "strip", z.ZodTypeAny, {
|
182
200
|
type: "within";
|
183
201
|
location: string | {
|
184
|
-
$userField: "id" | "name" | "role" | "
|
202
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
185
203
|
};
|
186
204
|
}, {
|
187
205
|
type: "within";
|
188
206
|
location: string | {
|
189
|
-
$userField: "id" | "name" | "role" | "
|
207
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
190
208
|
};
|
191
209
|
}>, z.ZodObject<{
|
192
210
|
type: z.ZodLiteral<"exact">;
|
193
211
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
194
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
212
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
195
213
|
}, "strip", z.ZodTypeAny, {
|
196
|
-
$userField: "id" | "name" | "role" | "
|
214
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
197
215
|
}, {
|
198
|
-
$userField: "id" | "name" | "role" | "
|
216
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
199
217
|
}>]>;
|
200
218
|
}, "strip", z.ZodTypeAny, {
|
201
219
|
type: "exact";
|
202
220
|
term: string | {
|
203
|
-
$userField: "id" | "name" | "role" | "
|
221
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
204
222
|
};
|
205
223
|
}, {
|
206
224
|
type: "exact";
|
207
225
|
term: string | {
|
208
|
-
$userField: "id" | "name" | "role" | "
|
226
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
209
227
|
};
|
210
228
|
}>]>>>;
|
211
229
|
assignedTo: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
212
230
|
type: z.ZodLiteral<"exact">;
|
213
231
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
214
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
232
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
215
233
|
}, "strip", z.ZodTypeAny, {
|
216
|
-
$userField: "id" | "name" | "role" | "
|
234
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
217
235
|
}, {
|
218
|
-
$userField: "id" | "name" | "role" | "
|
236
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
219
237
|
}>]>;
|
220
238
|
}, "strip", z.ZodTypeAny, {
|
221
239
|
type: "exact";
|
222
240
|
term: string | {
|
223
|
-
$userField: "id" | "name" | "role" | "
|
241
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
224
242
|
};
|
225
243
|
}, {
|
226
244
|
type: "exact";
|
227
245
|
term: string | {
|
228
|
-
$userField: "id" | "name" | "role" | "
|
246
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
229
247
|
};
|
230
248
|
}>>>;
|
231
249
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
232
250
|
type: z.ZodLiteral<"exact">;
|
233
251
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
234
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
252
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
235
253
|
}, "strip", z.ZodTypeAny, {
|
236
|
-
$userField: "id" | "name" | "role" | "
|
254
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
237
255
|
}, {
|
238
|
-
$userField: "id" | "name" | "role" | "
|
256
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
239
257
|
}>]>;
|
240
258
|
}, "strip", z.ZodTypeAny, {
|
241
259
|
type: "exact";
|
242
260
|
term: string | {
|
243
|
-
$userField: "id" | "name" | "role" | "
|
261
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
244
262
|
};
|
245
263
|
}, {
|
246
264
|
type: "exact";
|
247
265
|
term: string | {
|
248
|
-
$userField: "id" | "name" | "role" | "
|
266
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
249
267
|
};
|
250
268
|
}>>>;
|
251
|
-
createdByUserType: z.ZodOptional<z.
|
269
|
+
createdByUserType: z.ZodOptional<z.ZodObject<{
|
270
|
+
type: z.ZodLiteral<"exact">;
|
271
|
+
term: z.ZodEnum<["user", "system"]>;
|
272
|
+
}, "strip", z.ZodTypeAny, {
|
273
|
+
type: "exact";
|
274
|
+
term: "system" | "user";
|
275
|
+
}, {
|
276
|
+
type: "exact";
|
277
|
+
term: "system" | "user";
|
278
|
+
}>>;
|
252
279
|
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
253
280
|
type: z.ZodLiteral<"exact">;
|
254
281
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
255
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
282
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
256
283
|
}, "strip", z.ZodTypeAny, {
|
257
|
-
$userField: "id" | "name" | "role" | "
|
284
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
258
285
|
}, {
|
259
|
-
$userField: "id" | "name" | "role" | "
|
286
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
260
287
|
}>]>;
|
261
288
|
}, "strip", z.ZodTypeAny, {
|
262
289
|
type: "exact";
|
263
290
|
term: string | {
|
264
|
-
$userField: "id" | "name" | "role" | "
|
291
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
265
292
|
};
|
266
293
|
}, {
|
267
294
|
type: "exact";
|
268
295
|
term: string | {
|
269
|
-
$userField: "id" | "name" | "role" | "
|
296
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
270
297
|
};
|
271
298
|
}>>>;
|
272
299
|
trackingId: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
@@ -303,13 +330,16 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
303
330
|
}, "strip", z.ZodTypeAny, {
|
304
331
|
status?: {
|
305
332
|
type: "exact";
|
306
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
333
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
307
334
|
} | {
|
308
335
|
type: "anyOf";
|
309
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
336
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
310
337
|
} | undefined;
|
311
338
|
data?: any;
|
312
|
-
createdByUserType?:
|
339
|
+
createdByUserType?: {
|
340
|
+
type: "exact";
|
341
|
+
term: "system" | "user";
|
342
|
+
} | undefined;
|
313
343
|
createdAt?: {
|
314
344
|
type: "range";
|
315
345
|
gte: string;
|
@@ -317,28 +347,31 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
317
347
|
} | {
|
318
348
|
type: "exact";
|
319
349
|
term: string;
|
350
|
+
} | {
|
351
|
+
type: "timePeriod";
|
352
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
320
353
|
} | undefined;
|
321
354
|
createdBy?: {
|
322
355
|
type: "exact";
|
323
356
|
term: string | {
|
324
|
-
$userField: "id" | "name" | "role" | "
|
357
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
325
358
|
};
|
326
359
|
} | undefined;
|
327
360
|
createdAtLocation?: {
|
328
361
|
type: "exact";
|
329
362
|
term: string | {
|
330
|
-
$userField: "id" | "name" | "role" | "
|
363
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
331
364
|
};
|
332
365
|
} | {
|
333
366
|
type: "within";
|
334
367
|
location: string | {
|
335
|
-
$userField: "id" | "name" | "role" | "
|
368
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
336
369
|
};
|
337
370
|
} | undefined;
|
338
371
|
assignedTo?: {
|
339
372
|
type: "exact";
|
340
373
|
term: string | {
|
341
|
-
$userField: "id" | "name" | "role" | "
|
374
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
342
375
|
};
|
343
376
|
} | undefined;
|
344
377
|
updatedAt?: {
|
@@ -348,6 +381,9 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
348
381
|
} | {
|
349
382
|
type: "exact";
|
350
383
|
term: string;
|
384
|
+
} | {
|
385
|
+
type: "timePeriod";
|
386
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
351
387
|
} | undefined;
|
352
388
|
trackingId?: {
|
353
389
|
type: "exact";
|
@@ -356,18 +392,18 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
356
392
|
updatedAtLocation?: {
|
357
393
|
type: "exact";
|
358
394
|
term: string | {
|
359
|
-
$userField: "id" | "name" | "role" | "
|
395
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
360
396
|
};
|
361
397
|
} | {
|
362
398
|
type: "within";
|
363
399
|
location: string | {
|
364
|
-
$userField: "id" | "name" | "role" | "
|
400
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
365
401
|
};
|
366
402
|
} | undefined;
|
367
403
|
updatedBy?: {
|
368
404
|
type: "exact";
|
369
405
|
term: string | {
|
370
|
-
$userField: "id" | "name" | "role" | "
|
406
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
371
407
|
};
|
372
408
|
} | undefined;
|
373
409
|
flags?: {
|
@@ -375,35 +411,41 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
375
411
|
noneOf?: string[] | undefined;
|
376
412
|
} | undefined;
|
377
413
|
eventType?: string | undefined;
|
378
|
-
'
|
379
|
-
type: "range";
|
380
|
-
gte: string;
|
381
|
-
lte: string;
|
382
|
-
} | {
|
383
|
-
type: "exact";
|
384
|
-
term: string;
|
385
|
-
} | undefined;
|
386
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
414
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
387
415
|
type: "exact";
|
388
416
|
term: string;
|
389
417
|
} | {
|
390
418
|
type: "within";
|
391
419
|
location: string;
|
392
420
|
} | undefined;
|
393
|
-
'
|
421
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
422
|
+
type: "exact";
|
423
|
+
term: string;
|
424
|
+
} | undefined;
|
425
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
426
|
+
type: "range";
|
427
|
+
gte: string;
|
428
|
+
lte: string;
|
429
|
+
} | {
|
394
430
|
type: "exact";
|
395
431
|
term: string;
|
432
|
+
} | {
|
433
|
+
type: "timePeriod";
|
434
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
396
435
|
} | undefined;
|
397
436
|
}, {
|
398
437
|
status?: {
|
399
438
|
type: "exact";
|
400
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
439
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
401
440
|
} | {
|
402
441
|
type: "anyOf";
|
403
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
442
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
404
443
|
} | undefined;
|
405
444
|
data?: any;
|
406
|
-
createdByUserType?:
|
445
|
+
createdByUserType?: {
|
446
|
+
type: "exact";
|
447
|
+
term: "system" | "user";
|
448
|
+
} | undefined;
|
407
449
|
createdAt?: {
|
408
450
|
type: "range";
|
409
451
|
gte: string;
|
@@ -411,28 +453,31 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
411
453
|
} | {
|
412
454
|
type: "exact";
|
413
455
|
term: string;
|
456
|
+
} | {
|
457
|
+
type: "timePeriod";
|
458
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
414
459
|
} | undefined;
|
415
460
|
createdBy?: {
|
416
461
|
type: "exact";
|
417
462
|
term: string | {
|
418
|
-
$userField: "id" | "name" | "role" | "
|
463
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
419
464
|
};
|
420
465
|
} | undefined;
|
421
466
|
createdAtLocation?: {
|
422
467
|
type: "exact";
|
423
468
|
term: string | {
|
424
|
-
$userField: "id" | "name" | "role" | "
|
469
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
425
470
|
};
|
426
471
|
} | {
|
427
472
|
type: "within";
|
428
473
|
location: string | {
|
429
|
-
$userField: "id" | "name" | "role" | "
|
474
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
430
475
|
};
|
431
476
|
} | undefined;
|
432
477
|
assignedTo?: {
|
433
478
|
type: "exact";
|
434
479
|
term: string | {
|
435
|
-
$userField: "id" | "name" | "role" | "
|
480
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
436
481
|
};
|
437
482
|
} | undefined;
|
438
483
|
updatedAt?: {
|
@@ -442,6 +487,9 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
442
487
|
} | {
|
443
488
|
type: "exact";
|
444
489
|
term: string;
|
490
|
+
} | {
|
491
|
+
type: "timePeriod";
|
492
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
445
493
|
} | undefined;
|
446
494
|
trackingId?: {
|
447
495
|
type: "exact";
|
@@ -450,18 +498,18 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
450
498
|
updatedAtLocation?: {
|
451
499
|
type: "exact";
|
452
500
|
term: string | {
|
453
|
-
$userField: "id" | "name" | "role" | "
|
501
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
454
502
|
};
|
455
503
|
} | {
|
456
504
|
type: "within";
|
457
505
|
location: string | {
|
458
|
-
$userField: "id" | "name" | "role" | "
|
506
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
459
507
|
};
|
460
508
|
} | undefined;
|
461
509
|
updatedBy?: {
|
462
510
|
type: "exact";
|
463
511
|
term: string | {
|
464
|
-
$userField: "id" | "name" | "role" | "
|
512
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
465
513
|
};
|
466
514
|
} | undefined;
|
467
515
|
flags?: {
|
@@ -469,25 +517,28 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
469
517
|
noneOf?: string[] | undefined;
|
470
518
|
} | undefined;
|
471
519
|
eventType?: string | undefined;
|
472
|
-
'
|
473
|
-
type: "range";
|
474
|
-
gte: string;
|
475
|
-
lte: string;
|
476
|
-
} | {
|
477
|
-
type: "exact";
|
478
|
-
term: string;
|
479
|
-
} | undefined;
|
480
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
520
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
481
521
|
type: "exact";
|
482
522
|
term: string;
|
483
523
|
} | {
|
484
524
|
type: "within";
|
485
525
|
location: string;
|
486
526
|
} | undefined;
|
487
|
-
'
|
527
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
488
528
|
type: "exact";
|
489
529
|
term: string;
|
490
530
|
} | undefined;
|
531
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
532
|
+
type: "range";
|
533
|
+
gte: string;
|
534
|
+
lte: string;
|
535
|
+
} | {
|
536
|
+
type: "exact";
|
537
|
+
term: string;
|
538
|
+
} | {
|
539
|
+
type: "timePeriod";
|
540
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
541
|
+
} | undefined;
|
491
542
|
}>;
|
492
543
|
export type SerializedQueryExpression = z.infer<typeof SerializedQueryExpression>;
|
493
544
|
export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
@@ -496,22 +547,22 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
496
547
|
eventType: z.ZodOptional<z.ZodString>;
|
497
548
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
498
549
|
type: z.ZodLiteral<"anyOf">;
|
499
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
550
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
500
551
|
}, "strip", z.ZodTypeAny, {
|
501
552
|
type: "anyOf";
|
502
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
553
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
503
554
|
}, {
|
504
555
|
type: "anyOf";
|
505
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
556
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
506
557
|
}>, z.ZodObject<{
|
507
558
|
type: z.ZodLiteral<"exact">;
|
508
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
559
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
509
560
|
}, "strip", z.ZodTypeAny, {
|
510
561
|
type: "exact";
|
511
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
562
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
512
563
|
}, {
|
513
564
|
type: "exact";
|
514
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
565
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
515
566
|
}>]>>>;
|
516
567
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
517
568
|
type: z.ZodLiteral<"exact">;
|
@@ -524,14 +575,11 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
524
575
|
}, {
|
525
576
|
type: "exact";
|
526
577
|
term: string;
|
527
|
-
}>, z.ZodObject<
|
578
|
+
}>, z.ZodObject<{
|
528
579
|
type: z.ZodLiteral<"range">;
|
529
|
-
gte: z.ZodString;
|
530
|
-
lte: z.ZodString;
|
531
|
-
}, {
|
532
580
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
533
581
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
534
|
-
}
|
582
|
+
}, "strip", z.ZodTypeAny, {
|
535
583
|
type: "range";
|
536
584
|
gte: string;
|
537
585
|
lte: string;
|
@@ -539,6 +587,15 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
539
587
|
type: "range";
|
540
588
|
gte: string;
|
541
589
|
lte: string;
|
590
|
+
}>, z.ZodObject<{
|
591
|
+
type: z.ZodLiteral<"timePeriod">;
|
592
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
593
|
+
}, "strip", z.ZodTypeAny, {
|
594
|
+
type: "timePeriod";
|
595
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
596
|
+
}, {
|
597
|
+
type: "timePeriod";
|
598
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
542
599
|
}>]>>>;
|
543
600
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
544
601
|
type: z.ZodLiteral<"exact">;
|
@@ -551,14 +608,11 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
551
608
|
}, {
|
552
609
|
type: "exact";
|
553
610
|
term: string;
|
554
|
-
}>, z.ZodObject<
|
611
|
+
}>, z.ZodObject<{
|
555
612
|
type: z.ZodLiteral<"range">;
|
556
|
-
gte: z.ZodString;
|
557
|
-
lte: z.ZodString;
|
558
|
-
}, {
|
559
613
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
560
614
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
561
|
-
}
|
615
|
+
}, "strip", z.ZodTypeAny, {
|
562
616
|
type: "range";
|
563
617
|
gte: string;
|
564
618
|
lte: string;
|
@@ -566,8 +620,17 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
566
620
|
type: "range";
|
567
621
|
gte: string;
|
568
622
|
lte: string;
|
623
|
+
}>, z.ZodObject<{
|
624
|
+
type: z.ZodLiteral<"timePeriod">;
|
625
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
626
|
+
}, "strip", z.ZodTypeAny, {
|
627
|
+
type: "timePeriod";
|
628
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
629
|
+
}, {
|
630
|
+
type: "timePeriod";
|
631
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
569
632
|
}>]>>>;
|
570
|
-
'
|
633
|
+
'legalStatuses.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
571
634
|
type: z.ZodLiteral<"exact">;
|
572
635
|
term: z.ZodString;
|
573
636
|
}, {
|
@@ -578,14 +641,11 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
578
641
|
}, {
|
579
642
|
type: "exact";
|
580
643
|
term: string;
|
581
|
-
}>, z.ZodObject<
|
644
|
+
}>, z.ZodObject<{
|
582
645
|
type: z.ZodLiteral<"range">;
|
583
|
-
gte: z.ZodString;
|
584
|
-
lte: z.ZodString;
|
585
|
-
}, {
|
586
646
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
587
647
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
588
|
-
}
|
648
|
+
}, "strip", z.ZodTypeAny, {
|
589
649
|
type: "range";
|
590
650
|
gte: string;
|
591
651
|
lte: string;
|
@@ -593,8 +653,17 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
593
653
|
type: "range";
|
594
654
|
gte: string;
|
595
655
|
lte: string;
|
656
|
+
}>, z.ZodObject<{
|
657
|
+
type: z.ZodLiteral<"timePeriod">;
|
658
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
659
|
+
}, "strip", z.ZodTypeAny, {
|
660
|
+
type: "timePeriod";
|
661
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
662
|
+
}, {
|
663
|
+
type: "timePeriod";
|
664
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
596
665
|
}>]>>>;
|
597
|
-
'
|
666
|
+
'legalStatuses.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
598
667
|
type: z.ZodLiteral<"within">;
|
599
668
|
location: z.ZodString;
|
600
669
|
}, "strip", z.ZodTypeAny, {
|
@@ -613,7 +682,7 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
613
682
|
type: "exact";
|
614
683
|
term: string;
|
615
684
|
}>]>>>;
|
616
|
-
'
|
685
|
+
'legalStatuses.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
617
686
|
type: z.ZodLiteral<"exact">;
|
618
687
|
term: z.ZodString;
|
619
688
|
}, "strip", z.ZodTypeAny, {
|
@@ -626,140 +695,149 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
626
695
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
627
696
|
type: z.ZodLiteral<"within">;
|
628
697
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
629
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
698
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
630
699
|
}, "strip", z.ZodTypeAny, {
|
631
|
-
$userField: "id" | "name" | "role" | "
|
700
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
632
701
|
}, {
|
633
|
-
$userField: "id" | "name" | "role" | "
|
702
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
634
703
|
}>]>;
|
635
704
|
}, "strip", z.ZodTypeAny, {
|
636
705
|
type: "within";
|
637
706
|
location: string | {
|
638
|
-
$userField: "id" | "name" | "role" | "
|
707
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
639
708
|
};
|
640
709
|
}, {
|
641
710
|
type: "within";
|
642
711
|
location: string | {
|
643
|
-
$userField: "id" | "name" | "role" | "
|
712
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
644
713
|
};
|
645
714
|
}>, z.ZodObject<{
|
646
715
|
type: z.ZodLiteral<"exact">;
|
647
716
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
648
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
717
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
649
718
|
}, "strip", z.ZodTypeAny, {
|
650
|
-
$userField: "id" | "name" | "role" | "
|
719
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
651
720
|
}, {
|
652
|
-
$userField: "id" | "name" | "role" | "
|
721
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
653
722
|
}>]>;
|
654
723
|
}, "strip", z.ZodTypeAny, {
|
655
724
|
type: "exact";
|
656
725
|
term: string | {
|
657
|
-
$userField: "id" | "name" | "role" | "
|
726
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
658
727
|
};
|
659
728
|
}, {
|
660
729
|
type: "exact";
|
661
730
|
term: string | {
|
662
|
-
$userField: "id" | "name" | "role" | "
|
731
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
663
732
|
};
|
664
733
|
}>]>>>;
|
665
734
|
updatedAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
666
735
|
type: z.ZodLiteral<"within">;
|
667
736
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
668
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
737
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
669
738
|
}, "strip", z.ZodTypeAny, {
|
670
|
-
$userField: "id" | "name" | "role" | "
|
739
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
671
740
|
}, {
|
672
|
-
$userField: "id" | "name" | "role" | "
|
741
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
673
742
|
}>]>;
|
674
743
|
}, "strip", z.ZodTypeAny, {
|
675
744
|
type: "within";
|
676
745
|
location: string | {
|
677
|
-
$userField: "id" | "name" | "role" | "
|
746
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
678
747
|
};
|
679
748
|
}, {
|
680
749
|
type: "within";
|
681
750
|
location: string | {
|
682
|
-
$userField: "id" | "name" | "role" | "
|
751
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
683
752
|
};
|
684
753
|
}>, z.ZodObject<{
|
685
754
|
type: z.ZodLiteral<"exact">;
|
686
755
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
687
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
756
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
688
757
|
}, "strip", z.ZodTypeAny, {
|
689
|
-
$userField: "id" | "name" | "role" | "
|
758
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
690
759
|
}, {
|
691
|
-
$userField: "id" | "name" | "role" | "
|
760
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
692
761
|
}>]>;
|
693
762
|
}, "strip", z.ZodTypeAny, {
|
694
763
|
type: "exact";
|
695
764
|
term: string | {
|
696
|
-
$userField: "id" | "name" | "role" | "
|
765
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
697
766
|
};
|
698
767
|
}, {
|
699
768
|
type: "exact";
|
700
769
|
term: string | {
|
701
|
-
$userField: "id" | "name" | "role" | "
|
770
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
702
771
|
};
|
703
772
|
}>]>>>;
|
704
773
|
assignedTo: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
705
774
|
type: z.ZodLiteral<"exact">;
|
706
775
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
707
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
776
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
708
777
|
}, "strip", z.ZodTypeAny, {
|
709
|
-
$userField: "id" | "name" | "role" | "
|
778
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
710
779
|
}, {
|
711
|
-
$userField: "id" | "name" | "role" | "
|
780
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
712
781
|
}>]>;
|
713
782
|
}, "strip", z.ZodTypeAny, {
|
714
783
|
type: "exact";
|
715
784
|
term: string | {
|
716
|
-
$userField: "id" | "name" | "role" | "
|
785
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
717
786
|
};
|
718
787
|
}, {
|
719
788
|
type: "exact";
|
720
789
|
term: string | {
|
721
|
-
$userField: "id" | "name" | "role" | "
|
790
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
722
791
|
};
|
723
792
|
}>>>;
|
724
793
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
725
794
|
type: z.ZodLiteral<"exact">;
|
726
795
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
727
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
796
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
728
797
|
}, "strip", z.ZodTypeAny, {
|
729
|
-
$userField: "id" | "name" | "role" | "
|
798
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
730
799
|
}, {
|
731
|
-
$userField: "id" | "name" | "role" | "
|
800
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
732
801
|
}>]>;
|
733
802
|
}, "strip", z.ZodTypeAny, {
|
734
803
|
type: "exact";
|
735
804
|
term: string | {
|
736
|
-
$userField: "id" | "name" | "role" | "
|
805
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
737
806
|
};
|
738
807
|
}, {
|
739
808
|
type: "exact";
|
740
809
|
term: string | {
|
741
|
-
$userField: "id" | "name" | "role" | "
|
810
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
742
811
|
};
|
743
812
|
}>>>;
|
744
|
-
createdByUserType: z.ZodOptional<z.
|
813
|
+
createdByUserType: z.ZodOptional<z.ZodObject<{
|
814
|
+
type: z.ZodLiteral<"exact">;
|
815
|
+
term: z.ZodEnum<["user", "system"]>;
|
816
|
+
}, "strip", z.ZodTypeAny, {
|
817
|
+
type: "exact";
|
818
|
+
term: "system" | "user";
|
819
|
+
}, {
|
820
|
+
type: "exact";
|
821
|
+
term: "system" | "user";
|
822
|
+
}>>;
|
745
823
|
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
746
824
|
type: z.ZodLiteral<"exact">;
|
747
825
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
748
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
826
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
749
827
|
}, "strip", z.ZodTypeAny, {
|
750
|
-
$userField: "id" | "name" | "role" | "
|
828
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
751
829
|
}, {
|
752
|
-
$userField: "id" | "name" | "role" | "
|
830
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
753
831
|
}>]>;
|
754
832
|
}, "strip", z.ZodTypeAny, {
|
755
833
|
type: "exact";
|
756
834
|
term: string | {
|
757
|
-
$userField: "id" | "name" | "role" | "
|
835
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
758
836
|
};
|
759
837
|
}, {
|
760
838
|
type: "exact";
|
761
839
|
term: string | {
|
762
|
-
$userField: "id" | "name" | "role" | "
|
840
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
763
841
|
};
|
764
842
|
}>>>;
|
765
843
|
trackingId: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
@@ -796,13 +874,16 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
796
874
|
}, "strip", z.ZodTypeAny, {
|
797
875
|
status?: {
|
798
876
|
type: "exact";
|
799
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
877
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
800
878
|
} | {
|
801
879
|
type: "anyOf";
|
802
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
880
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
803
881
|
} | undefined;
|
804
882
|
data?: any;
|
805
|
-
createdByUserType?:
|
883
|
+
createdByUserType?: {
|
884
|
+
type: "exact";
|
885
|
+
term: "system" | "user";
|
886
|
+
} | undefined;
|
806
887
|
createdAt?: {
|
807
888
|
type: "range";
|
808
889
|
gte: string;
|
@@ -810,28 +891,31 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
810
891
|
} | {
|
811
892
|
type: "exact";
|
812
893
|
term: string;
|
894
|
+
} | {
|
895
|
+
type: "timePeriod";
|
896
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
813
897
|
} | undefined;
|
814
898
|
createdBy?: {
|
815
899
|
type: "exact";
|
816
900
|
term: string | {
|
817
|
-
$userField: "id" | "name" | "role" | "
|
901
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
818
902
|
};
|
819
903
|
} | undefined;
|
820
904
|
createdAtLocation?: {
|
821
905
|
type: "exact";
|
822
906
|
term: string | {
|
823
|
-
$userField: "id" | "name" | "role" | "
|
907
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
824
908
|
};
|
825
909
|
} | {
|
826
910
|
type: "within";
|
827
911
|
location: string | {
|
828
|
-
$userField: "id" | "name" | "role" | "
|
912
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
829
913
|
};
|
830
914
|
} | undefined;
|
831
915
|
assignedTo?: {
|
832
916
|
type: "exact";
|
833
917
|
term: string | {
|
834
|
-
$userField: "id" | "name" | "role" | "
|
918
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
835
919
|
};
|
836
920
|
} | undefined;
|
837
921
|
updatedAt?: {
|
@@ -841,6 +925,9 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
841
925
|
} | {
|
842
926
|
type: "exact";
|
843
927
|
term: string;
|
928
|
+
} | {
|
929
|
+
type: "timePeriod";
|
930
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
844
931
|
} | undefined;
|
845
932
|
trackingId?: {
|
846
933
|
type: "exact";
|
@@ -849,18 +936,18 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
849
936
|
updatedAtLocation?: {
|
850
937
|
type: "exact";
|
851
938
|
term: string | {
|
852
|
-
$userField: "id" | "name" | "role" | "
|
939
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
853
940
|
};
|
854
941
|
} | {
|
855
942
|
type: "within";
|
856
943
|
location: string | {
|
857
|
-
$userField: "id" | "name" | "role" | "
|
944
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
858
945
|
};
|
859
946
|
} | undefined;
|
860
947
|
updatedBy?: {
|
861
948
|
type: "exact";
|
862
949
|
term: string | {
|
863
|
-
$userField: "id" | "name" | "role" | "
|
950
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
864
951
|
};
|
865
952
|
} | undefined;
|
866
953
|
flags?: {
|
@@ -868,35 +955,41 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
868
955
|
noneOf?: string[] | undefined;
|
869
956
|
} | undefined;
|
870
957
|
eventType?: string | undefined;
|
871
|
-
'
|
872
|
-
type: "range";
|
873
|
-
gte: string;
|
874
|
-
lte: string;
|
875
|
-
} | {
|
876
|
-
type: "exact";
|
877
|
-
term: string;
|
878
|
-
} | undefined;
|
879
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
958
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
880
959
|
type: "exact";
|
881
960
|
term: string;
|
882
961
|
} | {
|
883
962
|
type: "within";
|
884
963
|
location: string;
|
885
964
|
} | undefined;
|
886
|
-
'
|
965
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
966
|
+
type: "exact";
|
967
|
+
term: string;
|
968
|
+
} | undefined;
|
969
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
970
|
+
type: "range";
|
971
|
+
gte: string;
|
972
|
+
lte: string;
|
973
|
+
} | {
|
887
974
|
type: "exact";
|
888
975
|
term: string;
|
976
|
+
} | {
|
977
|
+
type: "timePeriod";
|
978
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
889
979
|
} | undefined;
|
890
980
|
}, {
|
891
981
|
status?: {
|
892
982
|
type: "exact";
|
893
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
983
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
894
984
|
} | {
|
895
985
|
type: "anyOf";
|
896
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
986
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
897
987
|
} | undefined;
|
898
988
|
data?: any;
|
899
|
-
createdByUserType?:
|
989
|
+
createdByUserType?: {
|
990
|
+
type: "exact";
|
991
|
+
term: "system" | "user";
|
992
|
+
} | undefined;
|
900
993
|
createdAt?: {
|
901
994
|
type: "range";
|
902
995
|
gte: string;
|
@@ -904,28 +997,31 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
904
997
|
} | {
|
905
998
|
type: "exact";
|
906
999
|
term: string;
|
1000
|
+
} | {
|
1001
|
+
type: "timePeriod";
|
1002
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
907
1003
|
} | undefined;
|
908
1004
|
createdBy?: {
|
909
1005
|
type: "exact";
|
910
1006
|
term: string | {
|
911
|
-
$userField: "id" | "name" | "role" | "
|
1007
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
912
1008
|
};
|
913
1009
|
} | undefined;
|
914
1010
|
createdAtLocation?: {
|
915
1011
|
type: "exact";
|
916
1012
|
term: string | {
|
917
|
-
$userField: "id" | "name" | "role" | "
|
1013
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
918
1014
|
};
|
919
1015
|
} | {
|
920
1016
|
type: "within";
|
921
1017
|
location: string | {
|
922
|
-
$userField: "id" | "name" | "role" | "
|
1018
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
923
1019
|
};
|
924
1020
|
} | undefined;
|
925
1021
|
assignedTo?: {
|
926
1022
|
type: "exact";
|
927
1023
|
term: string | {
|
928
|
-
$userField: "id" | "name" | "role" | "
|
1024
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
929
1025
|
};
|
930
1026
|
} | undefined;
|
931
1027
|
updatedAt?: {
|
@@ -935,6 +1031,9 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
935
1031
|
} | {
|
936
1032
|
type: "exact";
|
937
1033
|
term: string;
|
1034
|
+
} | {
|
1035
|
+
type: "timePeriod";
|
1036
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
938
1037
|
} | undefined;
|
939
1038
|
trackingId?: {
|
940
1039
|
type: "exact";
|
@@ -943,18 +1042,18 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
943
1042
|
updatedAtLocation?: {
|
944
1043
|
type: "exact";
|
945
1044
|
term: string | {
|
946
|
-
$userField: "id" | "name" | "role" | "
|
1045
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
947
1046
|
};
|
948
1047
|
} | {
|
949
1048
|
type: "within";
|
950
1049
|
location: string | {
|
951
|
-
$userField: "id" | "name" | "role" | "
|
1050
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
952
1051
|
};
|
953
1052
|
} | undefined;
|
954
1053
|
updatedBy?: {
|
955
1054
|
type: "exact";
|
956
1055
|
term: string | {
|
957
|
-
$userField: "id" | "name" | "role" | "
|
1056
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
958
1057
|
};
|
959
1058
|
} | undefined;
|
960
1059
|
flags?: {
|
@@ -962,38 +1061,44 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
962
1061
|
noneOf?: string[] | undefined;
|
963
1062
|
} | undefined;
|
964
1063
|
eventType?: string | undefined;
|
965
|
-
'
|
966
|
-
type: "range";
|
967
|
-
gte: string;
|
968
|
-
lte: string;
|
969
|
-
} | {
|
970
|
-
type: "exact";
|
971
|
-
term: string;
|
972
|
-
} | undefined;
|
973
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1064
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
974
1065
|
type: "exact";
|
975
1066
|
term: string;
|
976
1067
|
} | {
|
977
1068
|
type: "within";
|
978
1069
|
location: string;
|
979
1070
|
} | undefined;
|
980
|
-
'
|
1071
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
981
1072
|
type: "exact";
|
982
1073
|
term: string;
|
983
1074
|
} | undefined;
|
1075
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
1076
|
+
type: "range";
|
1077
|
+
gte: string;
|
1078
|
+
lte: string;
|
1079
|
+
} | {
|
1080
|
+
type: "exact";
|
1081
|
+
term: string;
|
1082
|
+
} | {
|
1083
|
+
type: "timePeriod";
|
1084
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1085
|
+
} | undefined;
|
984
1086
|
}>, "many">;
|
985
1087
|
}, "strip", z.ZodTypeAny, {
|
986
1088
|
type: "and";
|
987
1089
|
clauses: {
|
988
1090
|
status?: {
|
989
1091
|
type: "exact";
|
990
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1092
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
991
1093
|
} | {
|
992
1094
|
type: "anyOf";
|
993
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1095
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
994
1096
|
} | undefined;
|
995
1097
|
data?: any;
|
996
|
-
createdByUserType?:
|
1098
|
+
createdByUserType?: {
|
1099
|
+
type: "exact";
|
1100
|
+
term: "system" | "user";
|
1101
|
+
} | undefined;
|
997
1102
|
createdAt?: {
|
998
1103
|
type: "range";
|
999
1104
|
gte: string;
|
@@ -1001,28 +1106,31 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1001
1106
|
} | {
|
1002
1107
|
type: "exact";
|
1003
1108
|
term: string;
|
1109
|
+
} | {
|
1110
|
+
type: "timePeriod";
|
1111
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1004
1112
|
} | undefined;
|
1005
1113
|
createdBy?: {
|
1006
1114
|
type: "exact";
|
1007
1115
|
term: string | {
|
1008
|
-
$userField: "id" | "name" | "role" | "
|
1116
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1009
1117
|
};
|
1010
1118
|
} | undefined;
|
1011
1119
|
createdAtLocation?: {
|
1012
1120
|
type: "exact";
|
1013
1121
|
term: string | {
|
1014
|
-
$userField: "id" | "name" | "role" | "
|
1122
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1015
1123
|
};
|
1016
1124
|
} | {
|
1017
1125
|
type: "within";
|
1018
1126
|
location: string | {
|
1019
|
-
$userField: "id" | "name" | "role" | "
|
1127
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1020
1128
|
};
|
1021
1129
|
} | undefined;
|
1022
1130
|
assignedTo?: {
|
1023
1131
|
type: "exact";
|
1024
1132
|
term: string | {
|
1025
|
-
$userField: "id" | "name" | "role" | "
|
1133
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1026
1134
|
};
|
1027
1135
|
} | undefined;
|
1028
1136
|
updatedAt?: {
|
@@ -1032,6 +1140,9 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1032
1140
|
} | {
|
1033
1141
|
type: "exact";
|
1034
1142
|
term: string;
|
1143
|
+
} | {
|
1144
|
+
type: "timePeriod";
|
1145
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1035
1146
|
} | undefined;
|
1036
1147
|
trackingId?: {
|
1037
1148
|
type: "exact";
|
@@ -1040,18 +1151,18 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1040
1151
|
updatedAtLocation?: {
|
1041
1152
|
type: "exact";
|
1042
1153
|
term: string | {
|
1043
|
-
$userField: "id" | "name" | "role" | "
|
1154
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1044
1155
|
};
|
1045
1156
|
} | {
|
1046
1157
|
type: "within";
|
1047
1158
|
location: string | {
|
1048
|
-
$userField: "id" | "name" | "role" | "
|
1159
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1049
1160
|
};
|
1050
1161
|
} | undefined;
|
1051
1162
|
updatedBy?: {
|
1052
1163
|
type: "exact";
|
1053
1164
|
term: string | {
|
1054
|
-
$userField: "id" | "name" | "role" | "
|
1165
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1055
1166
|
};
|
1056
1167
|
} | undefined;
|
1057
1168
|
flags?: {
|
@@ -1059,24 +1170,27 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1059
1170
|
noneOf?: string[] | undefined;
|
1060
1171
|
} | undefined;
|
1061
1172
|
eventType?: string | undefined;
|
1062
|
-
'
|
1063
|
-
type: "range";
|
1064
|
-
gte: string;
|
1065
|
-
lte: string;
|
1066
|
-
} | {
|
1067
|
-
type: "exact";
|
1068
|
-
term: string;
|
1069
|
-
} | undefined;
|
1070
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1173
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
1071
1174
|
type: "exact";
|
1072
1175
|
term: string;
|
1073
1176
|
} | {
|
1074
1177
|
type: "within";
|
1075
1178
|
location: string;
|
1076
1179
|
} | undefined;
|
1077
|
-
'
|
1180
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
1181
|
+
type: "exact";
|
1182
|
+
term: string;
|
1183
|
+
} | undefined;
|
1184
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
1185
|
+
type: "range";
|
1186
|
+
gte: string;
|
1187
|
+
lte: string;
|
1188
|
+
} | {
|
1078
1189
|
type: "exact";
|
1079
1190
|
term: string;
|
1191
|
+
} | {
|
1192
|
+
type: "timePeriod";
|
1193
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1080
1194
|
} | undefined;
|
1081
1195
|
}[];
|
1082
1196
|
}, {
|
@@ -1084,13 +1198,16 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1084
1198
|
clauses: {
|
1085
1199
|
status?: {
|
1086
1200
|
type: "exact";
|
1087
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1201
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1088
1202
|
} | {
|
1089
1203
|
type: "anyOf";
|
1090
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1204
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1091
1205
|
} | undefined;
|
1092
1206
|
data?: any;
|
1093
|
-
createdByUserType?:
|
1207
|
+
createdByUserType?: {
|
1208
|
+
type: "exact";
|
1209
|
+
term: "system" | "user";
|
1210
|
+
} | undefined;
|
1094
1211
|
createdAt?: {
|
1095
1212
|
type: "range";
|
1096
1213
|
gte: string;
|
@@ -1098,28 +1215,31 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1098
1215
|
} | {
|
1099
1216
|
type: "exact";
|
1100
1217
|
term: string;
|
1218
|
+
} | {
|
1219
|
+
type: "timePeriod";
|
1220
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1101
1221
|
} | undefined;
|
1102
1222
|
createdBy?: {
|
1103
1223
|
type: "exact";
|
1104
1224
|
term: string | {
|
1105
|
-
$userField: "id" | "name" | "role" | "
|
1225
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1106
1226
|
};
|
1107
1227
|
} | undefined;
|
1108
1228
|
createdAtLocation?: {
|
1109
1229
|
type: "exact";
|
1110
1230
|
term: string | {
|
1111
|
-
$userField: "id" | "name" | "role" | "
|
1231
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1112
1232
|
};
|
1113
1233
|
} | {
|
1114
1234
|
type: "within";
|
1115
1235
|
location: string | {
|
1116
|
-
$userField: "id" | "name" | "role" | "
|
1236
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1117
1237
|
};
|
1118
1238
|
} | undefined;
|
1119
1239
|
assignedTo?: {
|
1120
1240
|
type: "exact";
|
1121
1241
|
term: string | {
|
1122
|
-
$userField: "id" | "name" | "role" | "
|
1242
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1123
1243
|
};
|
1124
1244
|
} | undefined;
|
1125
1245
|
updatedAt?: {
|
@@ -1129,6 +1249,9 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1129
1249
|
} | {
|
1130
1250
|
type: "exact";
|
1131
1251
|
term: string;
|
1252
|
+
} | {
|
1253
|
+
type: "timePeriod";
|
1254
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1132
1255
|
} | undefined;
|
1133
1256
|
trackingId?: {
|
1134
1257
|
type: "exact";
|
@@ -1137,18 +1260,18 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1137
1260
|
updatedAtLocation?: {
|
1138
1261
|
type: "exact";
|
1139
1262
|
term: string | {
|
1140
|
-
$userField: "id" | "name" | "role" | "
|
1263
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1141
1264
|
};
|
1142
1265
|
} | {
|
1143
1266
|
type: "within";
|
1144
1267
|
location: string | {
|
1145
|
-
$userField: "id" | "name" | "role" | "
|
1268
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1146
1269
|
};
|
1147
1270
|
} | undefined;
|
1148
1271
|
updatedBy?: {
|
1149
1272
|
type: "exact";
|
1150
1273
|
term: string | {
|
1151
|
-
$userField: "id" | "name" | "role" | "
|
1274
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1152
1275
|
};
|
1153
1276
|
} | undefined;
|
1154
1277
|
flags?: {
|
@@ -1156,24 +1279,27 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1156
1279
|
noneOf?: string[] | undefined;
|
1157
1280
|
} | undefined;
|
1158
1281
|
eventType?: string | undefined;
|
1159
|
-
'
|
1160
|
-
type: "range";
|
1161
|
-
gte: string;
|
1162
|
-
lte: string;
|
1163
|
-
} | {
|
1164
|
-
type: "exact";
|
1165
|
-
term: string;
|
1166
|
-
} | undefined;
|
1167
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1282
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
1168
1283
|
type: "exact";
|
1169
1284
|
term: string;
|
1170
1285
|
} | {
|
1171
1286
|
type: "within";
|
1172
1287
|
location: string;
|
1173
1288
|
} | undefined;
|
1174
|
-
'
|
1289
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
1290
|
+
type: "exact";
|
1291
|
+
term: string;
|
1292
|
+
} | undefined;
|
1293
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
1294
|
+
type: "range";
|
1295
|
+
gte: string;
|
1296
|
+
lte: string;
|
1297
|
+
} | {
|
1175
1298
|
type: "exact";
|
1176
1299
|
term: string;
|
1300
|
+
} | {
|
1301
|
+
type: "timePeriod";
|
1302
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1177
1303
|
} | undefined;
|
1178
1304
|
}[];
|
1179
1305
|
}>, z.ZodObject<{
|
@@ -1182,22 +1308,22 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1182
1308
|
eventType: z.ZodOptional<z.ZodString>;
|
1183
1309
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1184
1310
|
type: z.ZodLiteral<"anyOf">;
|
1185
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
1311
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
1186
1312
|
}, "strip", z.ZodTypeAny, {
|
1187
1313
|
type: "anyOf";
|
1188
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1314
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1189
1315
|
}, {
|
1190
1316
|
type: "anyOf";
|
1191
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1317
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1192
1318
|
}>, z.ZodObject<{
|
1193
1319
|
type: z.ZodLiteral<"exact">;
|
1194
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
1320
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
1195
1321
|
}, "strip", z.ZodTypeAny, {
|
1196
1322
|
type: "exact";
|
1197
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1323
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1198
1324
|
}, {
|
1199
1325
|
type: "exact";
|
1200
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1326
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1201
1327
|
}>]>>>;
|
1202
1328
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
1203
1329
|
type: z.ZodLiteral<"exact">;
|
@@ -1210,14 +1336,11 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1210
1336
|
}, {
|
1211
1337
|
type: "exact";
|
1212
1338
|
term: string;
|
1213
|
-
}>, z.ZodObject<
|
1339
|
+
}>, z.ZodObject<{
|
1214
1340
|
type: z.ZodLiteral<"range">;
|
1215
|
-
gte: z.ZodString;
|
1216
|
-
lte: z.ZodString;
|
1217
|
-
}, {
|
1218
1341
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1219
1342
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1220
|
-
}
|
1343
|
+
}, "strip", z.ZodTypeAny, {
|
1221
1344
|
type: "range";
|
1222
1345
|
gte: string;
|
1223
1346
|
lte: string;
|
@@ -1225,6 +1348,15 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1225
1348
|
type: "range";
|
1226
1349
|
gte: string;
|
1227
1350
|
lte: string;
|
1351
|
+
}>, z.ZodObject<{
|
1352
|
+
type: z.ZodLiteral<"timePeriod">;
|
1353
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
1354
|
+
}, "strip", z.ZodTypeAny, {
|
1355
|
+
type: "timePeriod";
|
1356
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1357
|
+
}, {
|
1358
|
+
type: "timePeriod";
|
1359
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1228
1360
|
}>]>>>;
|
1229
1361
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
1230
1362
|
type: z.ZodLiteral<"exact">;
|
@@ -1237,14 +1369,11 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1237
1369
|
}, {
|
1238
1370
|
type: "exact";
|
1239
1371
|
term: string;
|
1240
|
-
}>, z.ZodObject<
|
1372
|
+
}>, z.ZodObject<{
|
1241
1373
|
type: z.ZodLiteral<"range">;
|
1242
|
-
gte: z.ZodString;
|
1243
|
-
lte: z.ZodString;
|
1244
|
-
}, {
|
1245
1374
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1246
1375
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1247
|
-
}
|
1376
|
+
}, "strip", z.ZodTypeAny, {
|
1248
1377
|
type: "range";
|
1249
1378
|
gte: string;
|
1250
1379
|
lte: string;
|
@@ -1252,8 +1381,17 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1252
1381
|
type: "range";
|
1253
1382
|
gte: string;
|
1254
1383
|
lte: string;
|
1384
|
+
}>, z.ZodObject<{
|
1385
|
+
type: z.ZodLiteral<"timePeriod">;
|
1386
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
1387
|
+
}, "strip", z.ZodTypeAny, {
|
1388
|
+
type: "timePeriod";
|
1389
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1390
|
+
}, {
|
1391
|
+
type: "timePeriod";
|
1392
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1255
1393
|
}>]>>>;
|
1256
|
-
'
|
1394
|
+
'legalStatuses.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
1257
1395
|
type: z.ZodLiteral<"exact">;
|
1258
1396
|
term: z.ZodString;
|
1259
1397
|
}, {
|
@@ -1264,14 +1402,11 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1264
1402
|
}, {
|
1265
1403
|
type: "exact";
|
1266
1404
|
term: string;
|
1267
|
-
}>, z.ZodObject<
|
1405
|
+
}>, z.ZodObject<{
|
1268
1406
|
type: z.ZodLiteral<"range">;
|
1269
|
-
gte: z.ZodString;
|
1270
|
-
lte: z.ZodString;
|
1271
|
-
}, {
|
1272
1407
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1273
1408
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1274
|
-
}
|
1409
|
+
}, "strip", z.ZodTypeAny, {
|
1275
1410
|
type: "range";
|
1276
1411
|
gte: string;
|
1277
1412
|
lte: string;
|
@@ -1279,8 +1414,17 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1279
1414
|
type: "range";
|
1280
1415
|
gte: string;
|
1281
1416
|
lte: string;
|
1417
|
+
}>, z.ZodObject<{
|
1418
|
+
type: z.ZodLiteral<"timePeriod">;
|
1419
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
1420
|
+
}, "strip", z.ZodTypeAny, {
|
1421
|
+
type: "timePeriod";
|
1422
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1423
|
+
}, {
|
1424
|
+
type: "timePeriod";
|
1425
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1282
1426
|
}>]>>>;
|
1283
|
-
'
|
1427
|
+
'legalStatuses.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1284
1428
|
type: z.ZodLiteral<"within">;
|
1285
1429
|
location: z.ZodString;
|
1286
1430
|
}, "strip", z.ZodTypeAny, {
|
@@ -1299,7 +1443,7 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1299
1443
|
type: "exact";
|
1300
1444
|
term: string;
|
1301
1445
|
}>]>>>;
|
1302
|
-
'
|
1446
|
+
'legalStatuses.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
1303
1447
|
type: z.ZodLiteral<"exact">;
|
1304
1448
|
term: z.ZodString;
|
1305
1449
|
}, "strip", z.ZodTypeAny, {
|
@@ -1312,140 +1456,149 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1312
1456
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1313
1457
|
type: z.ZodLiteral<"within">;
|
1314
1458
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
1315
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
1459
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
1316
1460
|
}, "strip", z.ZodTypeAny, {
|
1317
|
-
$userField: "id" | "name" | "role" | "
|
1461
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1318
1462
|
}, {
|
1319
|
-
$userField: "id" | "name" | "role" | "
|
1463
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1320
1464
|
}>]>;
|
1321
1465
|
}, "strip", z.ZodTypeAny, {
|
1322
1466
|
type: "within";
|
1323
1467
|
location: string | {
|
1324
|
-
$userField: "id" | "name" | "role" | "
|
1468
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1325
1469
|
};
|
1326
1470
|
}, {
|
1327
1471
|
type: "within";
|
1328
1472
|
location: string | {
|
1329
|
-
$userField: "id" | "name" | "role" | "
|
1473
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1330
1474
|
};
|
1331
1475
|
}>, z.ZodObject<{
|
1332
1476
|
type: z.ZodLiteral<"exact">;
|
1333
1477
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
1334
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
1478
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
1335
1479
|
}, "strip", z.ZodTypeAny, {
|
1336
|
-
$userField: "id" | "name" | "role" | "
|
1480
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1337
1481
|
}, {
|
1338
|
-
$userField: "id" | "name" | "role" | "
|
1482
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1339
1483
|
}>]>;
|
1340
1484
|
}, "strip", z.ZodTypeAny, {
|
1341
1485
|
type: "exact";
|
1342
1486
|
term: string | {
|
1343
|
-
$userField: "id" | "name" | "role" | "
|
1487
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1344
1488
|
};
|
1345
1489
|
}, {
|
1346
1490
|
type: "exact";
|
1347
1491
|
term: string | {
|
1348
|
-
$userField: "id" | "name" | "role" | "
|
1492
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1349
1493
|
};
|
1350
1494
|
}>]>>>;
|
1351
1495
|
updatedAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1352
1496
|
type: z.ZodLiteral<"within">;
|
1353
1497
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
1354
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
1498
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
1355
1499
|
}, "strip", z.ZodTypeAny, {
|
1356
|
-
$userField: "id" | "name" | "role" | "
|
1500
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1357
1501
|
}, {
|
1358
|
-
$userField: "id" | "name" | "role" | "
|
1502
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1359
1503
|
}>]>;
|
1360
1504
|
}, "strip", z.ZodTypeAny, {
|
1361
1505
|
type: "within";
|
1362
1506
|
location: string | {
|
1363
|
-
$userField: "id" | "name" | "role" | "
|
1507
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1364
1508
|
};
|
1365
1509
|
}, {
|
1366
1510
|
type: "within";
|
1367
1511
|
location: string | {
|
1368
|
-
$userField: "id" | "name" | "role" | "
|
1512
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1369
1513
|
};
|
1370
1514
|
}>, z.ZodObject<{
|
1371
1515
|
type: z.ZodLiteral<"exact">;
|
1372
1516
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
1373
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
1517
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
1374
1518
|
}, "strip", z.ZodTypeAny, {
|
1375
|
-
$userField: "id" | "name" | "role" | "
|
1519
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1376
1520
|
}, {
|
1377
|
-
$userField: "id" | "name" | "role" | "
|
1521
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1378
1522
|
}>]>;
|
1379
1523
|
}, "strip", z.ZodTypeAny, {
|
1380
1524
|
type: "exact";
|
1381
1525
|
term: string | {
|
1382
|
-
$userField: "id" | "name" | "role" | "
|
1526
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1383
1527
|
};
|
1384
1528
|
}, {
|
1385
1529
|
type: "exact";
|
1386
1530
|
term: string | {
|
1387
|
-
$userField: "id" | "name" | "role" | "
|
1531
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1388
1532
|
};
|
1389
1533
|
}>]>>>;
|
1390
1534
|
assignedTo: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
1391
1535
|
type: z.ZodLiteral<"exact">;
|
1392
1536
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
1393
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
1537
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
1394
1538
|
}, "strip", z.ZodTypeAny, {
|
1395
|
-
$userField: "id" | "name" | "role" | "
|
1539
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1396
1540
|
}, {
|
1397
|
-
$userField: "id" | "name" | "role" | "
|
1541
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1398
1542
|
}>]>;
|
1399
1543
|
}, "strip", z.ZodTypeAny, {
|
1400
1544
|
type: "exact";
|
1401
1545
|
term: string | {
|
1402
|
-
$userField: "id" | "name" | "role" | "
|
1546
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1403
1547
|
};
|
1404
1548
|
}, {
|
1405
1549
|
type: "exact";
|
1406
1550
|
term: string | {
|
1407
|
-
$userField: "id" | "name" | "role" | "
|
1551
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1408
1552
|
};
|
1409
1553
|
}>>>;
|
1410
1554
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
1411
1555
|
type: z.ZodLiteral<"exact">;
|
1412
1556
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
1413
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
1557
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
1414
1558
|
}, "strip", z.ZodTypeAny, {
|
1415
|
-
$userField: "id" | "name" | "role" | "
|
1559
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1416
1560
|
}, {
|
1417
|
-
$userField: "id" | "name" | "role" | "
|
1561
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1418
1562
|
}>]>;
|
1419
1563
|
}, "strip", z.ZodTypeAny, {
|
1420
1564
|
type: "exact";
|
1421
1565
|
term: string | {
|
1422
|
-
$userField: "id" | "name" | "role" | "
|
1566
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1423
1567
|
};
|
1424
1568
|
}, {
|
1425
1569
|
type: "exact";
|
1426
1570
|
term: string | {
|
1427
|
-
$userField: "id" | "name" | "role" | "
|
1571
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1428
1572
|
};
|
1429
1573
|
}>>>;
|
1430
|
-
createdByUserType: z.ZodOptional<z.
|
1574
|
+
createdByUserType: z.ZodOptional<z.ZodObject<{
|
1575
|
+
type: z.ZodLiteral<"exact">;
|
1576
|
+
term: z.ZodEnum<["user", "system"]>;
|
1577
|
+
}, "strip", z.ZodTypeAny, {
|
1578
|
+
type: "exact";
|
1579
|
+
term: "system" | "user";
|
1580
|
+
}, {
|
1581
|
+
type: "exact";
|
1582
|
+
term: "system" | "user";
|
1583
|
+
}>>;
|
1431
1584
|
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
1432
1585
|
type: z.ZodLiteral<"exact">;
|
1433
1586
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
1434
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
1587
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
1435
1588
|
}, "strip", z.ZodTypeAny, {
|
1436
|
-
$userField: "id" | "name" | "role" | "
|
1589
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1437
1590
|
}, {
|
1438
|
-
$userField: "id" | "name" | "role" | "
|
1591
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1439
1592
|
}>]>;
|
1440
1593
|
}, "strip", z.ZodTypeAny, {
|
1441
1594
|
type: "exact";
|
1442
1595
|
term: string | {
|
1443
|
-
$userField: "id" | "name" | "role" | "
|
1596
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1444
1597
|
};
|
1445
1598
|
}, {
|
1446
1599
|
type: "exact";
|
1447
1600
|
term: string | {
|
1448
|
-
$userField: "id" | "name" | "role" | "
|
1601
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1449
1602
|
};
|
1450
1603
|
}>>>;
|
1451
1604
|
trackingId: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
@@ -1482,13 +1635,16 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1482
1635
|
}, "strip", z.ZodTypeAny, {
|
1483
1636
|
status?: {
|
1484
1637
|
type: "exact";
|
1485
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1638
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1486
1639
|
} | {
|
1487
1640
|
type: "anyOf";
|
1488
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1641
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1489
1642
|
} | undefined;
|
1490
1643
|
data?: any;
|
1491
|
-
createdByUserType?:
|
1644
|
+
createdByUserType?: {
|
1645
|
+
type: "exact";
|
1646
|
+
term: "system" | "user";
|
1647
|
+
} | undefined;
|
1492
1648
|
createdAt?: {
|
1493
1649
|
type: "range";
|
1494
1650
|
gte: string;
|
@@ -1496,28 +1652,31 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1496
1652
|
} | {
|
1497
1653
|
type: "exact";
|
1498
1654
|
term: string;
|
1655
|
+
} | {
|
1656
|
+
type: "timePeriod";
|
1657
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1499
1658
|
} | undefined;
|
1500
1659
|
createdBy?: {
|
1501
1660
|
type: "exact";
|
1502
1661
|
term: string | {
|
1503
|
-
$userField: "id" | "name" | "role" | "
|
1662
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1504
1663
|
};
|
1505
1664
|
} | undefined;
|
1506
1665
|
createdAtLocation?: {
|
1507
1666
|
type: "exact";
|
1508
1667
|
term: string | {
|
1509
|
-
$userField: "id" | "name" | "role" | "
|
1668
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1510
1669
|
};
|
1511
1670
|
} | {
|
1512
1671
|
type: "within";
|
1513
1672
|
location: string | {
|
1514
|
-
$userField: "id" | "name" | "role" | "
|
1673
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1515
1674
|
};
|
1516
1675
|
} | undefined;
|
1517
1676
|
assignedTo?: {
|
1518
1677
|
type: "exact";
|
1519
1678
|
term: string | {
|
1520
|
-
$userField: "id" | "name" | "role" | "
|
1679
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1521
1680
|
};
|
1522
1681
|
} | undefined;
|
1523
1682
|
updatedAt?: {
|
@@ -1527,6 +1686,9 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1527
1686
|
} | {
|
1528
1687
|
type: "exact";
|
1529
1688
|
term: string;
|
1689
|
+
} | {
|
1690
|
+
type: "timePeriod";
|
1691
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1530
1692
|
} | undefined;
|
1531
1693
|
trackingId?: {
|
1532
1694
|
type: "exact";
|
@@ -1535,18 +1697,18 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1535
1697
|
updatedAtLocation?: {
|
1536
1698
|
type: "exact";
|
1537
1699
|
term: string | {
|
1538
|
-
$userField: "id" | "name" | "role" | "
|
1700
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1539
1701
|
};
|
1540
1702
|
} | {
|
1541
1703
|
type: "within";
|
1542
1704
|
location: string | {
|
1543
|
-
$userField: "id" | "name" | "role" | "
|
1705
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1544
1706
|
};
|
1545
1707
|
} | undefined;
|
1546
1708
|
updatedBy?: {
|
1547
1709
|
type: "exact";
|
1548
1710
|
term: string | {
|
1549
|
-
$userField: "id" | "name" | "role" | "
|
1711
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1550
1712
|
};
|
1551
1713
|
} | undefined;
|
1552
1714
|
flags?: {
|
@@ -1554,35 +1716,41 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1554
1716
|
noneOf?: string[] | undefined;
|
1555
1717
|
} | undefined;
|
1556
1718
|
eventType?: string | undefined;
|
1557
|
-
'
|
1558
|
-
type: "range";
|
1559
|
-
gte: string;
|
1560
|
-
lte: string;
|
1561
|
-
} | {
|
1562
|
-
type: "exact";
|
1563
|
-
term: string;
|
1564
|
-
} | undefined;
|
1565
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1719
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
1566
1720
|
type: "exact";
|
1567
1721
|
term: string;
|
1568
1722
|
} | {
|
1569
1723
|
type: "within";
|
1570
1724
|
location: string;
|
1571
1725
|
} | undefined;
|
1572
|
-
'
|
1726
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
1727
|
+
type: "exact";
|
1728
|
+
term: string;
|
1729
|
+
} | undefined;
|
1730
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
1731
|
+
type: "range";
|
1732
|
+
gte: string;
|
1733
|
+
lte: string;
|
1734
|
+
} | {
|
1573
1735
|
type: "exact";
|
1574
1736
|
term: string;
|
1737
|
+
} | {
|
1738
|
+
type: "timePeriod";
|
1739
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1575
1740
|
} | undefined;
|
1576
1741
|
}, {
|
1577
1742
|
status?: {
|
1578
1743
|
type: "exact";
|
1579
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1744
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1580
1745
|
} | {
|
1581
1746
|
type: "anyOf";
|
1582
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1747
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1583
1748
|
} | undefined;
|
1584
1749
|
data?: any;
|
1585
|
-
createdByUserType?:
|
1750
|
+
createdByUserType?: {
|
1751
|
+
type: "exact";
|
1752
|
+
term: "system" | "user";
|
1753
|
+
} | undefined;
|
1586
1754
|
createdAt?: {
|
1587
1755
|
type: "range";
|
1588
1756
|
gte: string;
|
@@ -1590,28 +1758,31 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1590
1758
|
} | {
|
1591
1759
|
type: "exact";
|
1592
1760
|
term: string;
|
1761
|
+
} | {
|
1762
|
+
type: "timePeriod";
|
1763
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1593
1764
|
} | undefined;
|
1594
1765
|
createdBy?: {
|
1595
1766
|
type: "exact";
|
1596
1767
|
term: string | {
|
1597
|
-
$userField: "id" | "name" | "role" | "
|
1768
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1598
1769
|
};
|
1599
1770
|
} | undefined;
|
1600
1771
|
createdAtLocation?: {
|
1601
1772
|
type: "exact";
|
1602
1773
|
term: string | {
|
1603
|
-
$userField: "id" | "name" | "role" | "
|
1774
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1604
1775
|
};
|
1605
1776
|
} | {
|
1606
1777
|
type: "within";
|
1607
1778
|
location: string | {
|
1608
|
-
$userField: "id" | "name" | "role" | "
|
1779
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1609
1780
|
};
|
1610
1781
|
} | undefined;
|
1611
1782
|
assignedTo?: {
|
1612
1783
|
type: "exact";
|
1613
1784
|
term: string | {
|
1614
|
-
$userField: "id" | "name" | "role" | "
|
1785
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1615
1786
|
};
|
1616
1787
|
} | undefined;
|
1617
1788
|
updatedAt?: {
|
@@ -1621,6 +1792,9 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1621
1792
|
} | {
|
1622
1793
|
type: "exact";
|
1623
1794
|
term: string;
|
1795
|
+
} | {
|
1796
|
+
type: "timePeriod";
|
1797
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1624
1798
|
} | undefined;
|
1625
1799
|
trackingId?: {
|
1626
1800
|
type: "exact";
|
@@ -1629,18 +1803,18 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1629
1803
|
updatedAtLocation?: {
|
1630
1804
|
type: "exact";
|
1631
1805
|
term: string | {
|
1632
|
-
$userField: "id" | "name" | "role" | "
|
1806
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1633
1807
|
};
|
1634
1808
|
} | {
|
1635
1809
|
type: "within";
|
1636
1810
|
location: string | {
|
1637
|
-
$userField: "id" | "name" | "role" | "
|
1811
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1638
1812
|
};
|
1639
1813
|
} | undefined;
|
1640
1814
|
updatedBy?: {
|
1641
1815
|
type: "exact";
|
1642
1816
|
term: string | {
|
1643
|
-
$userField: "id" | "name" | "role" | "
|
1817
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1644
1818
|
};
|
1645
1819
|
} | undefined;
|
1646
1820
|
flags?: {
|
@@ -1648,24 +1822,27 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1648
1822
|
noneOf?: string[] | undefined;
|
1649
1823
|
} | undefined;
|
1650
1824
|
eventType?: string | undefined;
|
1651
|
-
'
|
1652
|
-
type: "range";
|
1653
|
-
gte: string;
|
1654
|
-
lte: string;
|
1655
|
-
} | {
|
1656
|
-
type: "exact";
|
1657
|
-
term: string;
|
1658
|
-
} | undefined;
|
1659
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1825
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
1660
1826
|
type: "exact";
|
1661
1827
|
term: string;
|
1662
1828
|
} | {
|
1663
1829
|
type: "within";
|
1664
1830
|
location: string;
|
1665
1831
|
} | undefined;
|
1666
|
-
'
|
1832
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
1833
|
+
type: "exact";
|
1834
|
+
term: string;
|
1835
|
+
} | undefined;
|
1836
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
1837
|
+
type: "range";
|
1838
|
+
gte: string;
|
1839
|
+
lte: string;
|
1840
|
+
} | {
|
1667
1841
|
type: "exact";
|
1668
1842
|
term: string;
|
1843
|
+
} | {
|
1844
|
+
type: "timePeriod";
|
1845
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1669
1846
|
} | undefined;
|
1670
1847
|
}>, "many">;
|
1671
1848
|
}, "strip", z.ZodTypeAny, {
|
@@ -1673,13 +1850,16 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1673
1850
|
clauses: {
|
1674
1851
|
status?: {
|
1675
1852
|
type: "exact";
|
1676
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1853
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1677
1854
|
} | {
|
1678
1855
|
type: "anyOf";
|
1679
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1856
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1680
1857
|
} | undefined;
|
1681
1858
|
data?: any;
|
1682
|
-
createdByUserType?:
|
1859
|
+
createdByUserType?: {
|
1860
|
+
type: "exact";
|
1861
|
+
term: "system" | "user";
|
1862
|
+
} | undefined;
|
1683
1863
|
createdAt?: {
|
1684
1864
|
type: "range";
|
1685
1865
|
gte: string;
|
@@ -1687,28 +1867,31 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1687
1867
|
} | {
|
1688
1868
|
type: "exact";
|
1689
1869
|
term: string;
|
1870
|
+
} | {
|
1871
|
+
type: "timePeriod";
|
1872
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1690
1873
|
} | undefined;
|
1691
1874
|
createdBy?: {
|
1692
1875
|
type: "exact";
|
1693
1876
|
term: string | {
|
1694
|
-
$userField: "id" | "name" | "role" | "
|
1877
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1695
1878
|
};
|
1696
1879
|
} | undefined;
|
1697
1880
|
createdAtLocation?: {
|
1698
1881
|
type: "exact";
|
1699
1882
|
term: string | {
|
1700
|
-
$userField: "id" | "name" | "role" | "
|
1883
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1701
1884
|
};
|
1702
1885
|
} | {
|
1703
1886
|
type: "within";
|
1704
1887
|
location: string | {
|
1705
|
-
$userField: "id" | "name" | "role" | "
|
1888
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1706
1889
|
};
|
1707
1890
|
} | undefined;
|
1708
1891
|
assignedTo?: {
|
1709
1892
|
type: "exact";
|
1710
1893
|
term: string | {
|
1711
|
-
$userField: "id" | "name" | "role" | "
|
1894
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1712
1895
|
};
|
1713
1896
|
} | undefined;
|
1714
1897
|
updatedAt?: {
|
@@ -1718,6 +1901,9 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1718
1901
|
} | {
|
1719
1902
|
type: "exact";
|
1720
1903
|
term: string;
|
1904
|
+
} | {
|
1905
|
+
type: "timePeriod";
|
1906
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1721
1907
|
} | undefined;
|
1722
1908
|
trackingId?: {
|
1723
1909
|
type: "exact";
|
@@ -1726,18 +1912,18 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1726
1912
|
updatedAtLocation?: {
|
1727
1913
|
type: "exact";
|
1728
1914
|
term: string | {
|
1729
|
-
$userField: "id" | "name" | "role" | "
|
1915
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1730
1916
|
};
|
1731
1917
|
} | {
|
1732
1918
|
type: "within";
|
1733
1919
|
location: string | {
|
1734
|
-
$userField: "id" | "name" | "role" | "
|
1920
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1735
1921
|
};
|
1736
1922
|
} | undefined;
|
1737
1923
|
updatedBy?: {
|
1738
1924
|
type: "exact";
|
1739
1925
|
term: string | {
|
1740
|
-
$userField: "id" | "name" | "role" | "
|
1926
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1741
1927
|
};
|
1742
1928
|
} | undefined;
|
1743
1929
|
flags?: {
|
@@ -1745,24 +1931,27 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1745
1931
|
noneOf?: string[] | undefined;
|
1746
1932
|
} | undefined;
|
1747
1933
|
eventType?: string | undefined;
|
1748
|
-
'
|
1749
|
-
type: "range";
|
1750
|
-
gte: string;
|
1751
|
-
lte: string;
|
1752
|
-
} | {
|
1753
|
-
type: "exact";
|
1754
|
-
term: string;
|
1755
|
-
} | undefined;
|
1756
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1934
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
1757
1935
|
type: "exact";
|
1758
1936
|
term: string;
|
1759
1937
|
} | {
|
1760
1938
|
type: "within";
|
1761
1939
|
location: string;
|
1762
1940
|
} | undefined;
|
1763
|
-
'
|
1941
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
1942
|
+
type: "exact";
|
1943
|
+
term: string;
|
1944
|
+
} | undefined;
|
1945
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
1946
|
+
type: "range";
|
1947
|
+
gte: string;
|
1948
|
+
lte: string;
|
1949
|
+
} | {
|
1764
1950
|
type: "exact";
|
1765
1951
|
term: string;
|
1952
|
+
} | {
|
1953
|
+
type: "timePeriod";
|
1954
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1766
1955
|
} | undefined;
|
1767
1956
|
}[];
|
1768
1957
|
}, {
|
@@ -1770,13 +1959,16 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1770
1959
|
clauses: {
|
1771
1960
|
status?: {
|
1772
1961
|
type: "exact";
|
1773
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1962
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1774
1963
|
} | {
|
1775
1964
|
type: "anyOf";
|
1776
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
1965
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1777
1966
|
} | undefined;
|
1778
1967
|
data?: any;
|
1779
|
-
createdByUserType?:
|
1968
|
+
createdByUserType?: {
|
1969
|
+
type: "exact";
|
1970
|
+
term: "system" | "user";
|
1971
|
+
} | undefined;
|
1780
1972
|
createdAt?: {
|
1781
1973
|
type: "range";
|
1782
1974
|
gte: string;
|
@@ -1784,28 +1976,31 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1784
1976
|
} | {
|
1785
1977
|
type: "exact";
|
1786
1978
|
term: string;
|
1979
|
+
} | {
|
1980
|
+
type: "timePeriod";
|
1981
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1787
1982
|
} | undefined;
|
1788
1983
|
createdBy?: {
|
1789
1984
|
type: "exact";
|
1790
1985
|
term: string | {
|
1791
|
-
$userField: "id" | "name" | "role" | "
|
1986
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1792
1987
|
};
|
1793
1988
|
} | undefined;
|
1794
1989
|
createdAtLocation?: {
|
1795
1990
|
type: "exact";
|
1796
1991
|
term: string | {
|
1797
|
-
$userField: "id" | "name" | "role" | "
|
1992
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1798
1993
|
};
|
1799
1994
|
} | {
|
1800
1995
|
type: "within";
|
1801
1996
|
location: string | {
|
1802
|
-
$userField: "id" | "name" | "role" | "
|
1997
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1803
1998
|
};
|
1804
1999
|
} | undefined;
|
1805
2000
|
assignedTo?: {
|
1806
2001
|
type: "exact";
|
1807
2002
|
term: string | {
|
1808
|
-
$userField: "id" | "name" | "role" | "
|
2003
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1809
2004
|
};
|
1810
2005
|
} | undefined;
|
1811
2006
|
updatedAt?: {
|
@@ -1815,6 +2010,9 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1815
2010
|
} | {
|
1816
2011
|
type: "exact";
|
1817
2012
|
term: string;
|
2013
|
+
} | {
|
2014
|
+
type: "timePeriod";
|
2015
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1818
2016
|
} | undefined;
|
1819
2017
|
trackingId?: {
|
1820
2018
|
type: "exact";
|
@@ -1823,18 +2021,18 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1823
2021
|
updatedAtLocation?: {
|
1824
2022
|
type: "exact";
|
1825
2023
|
term: string | {
|
1826
|
-
$userField: "id" | "name" | "role" | "
|
2024
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1827
2025
|
};
|
1828
2026
|
} | {
|
1829
2027
|
type: "within";
|
1830
2028
|
location: string | {
|
1831
|
-
$userField: "id" | "name" | "role" | "
|
2029
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1832
2030
|
};
|
1833
2031
|
} | undefined;
|
1834
2032
|
updatedBy?: {
|
1835
2033
|
type: "exact";
|
1836
2034
|
term: string | {
|
1837
|
-
$userField: "id" | "name" | "role" | "
|
2035
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
1838
2036
|
};
|
1839
2037
|
} | undefined;
|
1840
2038
|
flags?: {
|
@@ -1842,24 +2040,27 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1842
2040
|
noneOf?: string[] | undefined;
|
1843
2041
|
} | undefined;
|
1844
2042
|
eventType?: string | undefined;
|
1845
|
-
'
|
1846
|
-
type: "range";
|
1847
|
-
gte: string;
|
1848
|
-
lte: string;
|
1849
|
-
} | {
|
1850
|
-
type: "exact";
|
1851
|
-
term: string;
|
1852
|
-
} | undefined;
|
1853
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
2043
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
1854
2044
|
type: "exact";
|
1855
2045
|
term: string;
|
1856
2046
|
} | {
|
1857
2047
|
type: "within";
|
1858
2048
|
location: string;
|
1859
2049
|
} | undefined;
|
1860
|
-
'
|
2050
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
2051
|
+
type: "exact";
|
2052
|
+
term: string;
|
2053
|
+
} | undefined;
|
2054
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
2055
|
+
type: "range";
|
2056
|
+
gte: string;
|
2057
|
+
lte: string;
|
2058
|
+
} | {
|
1861
2059
|
type: "exact";
|
1862
2060
|
term: string;
|
2061
|
+
} | {
|
2062
|
+
type: "timePeriod";
|
2063
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1863
2064
|
} | undefined;
|
1864
2065
|
}[];
|
1865
2066
|
}>]>;
|
@@ -1868,22 +2069,22 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1868
2069
|
eventType: z.ZodOptional<z.ZodString>;
|
1869
2070
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1870
2071
|
type: z.ZodLiteral<"anyOf">;
|
1871
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
2072
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
1872
2073
|
}, "strip", z.ZodTypeAny, {
|
1873
2074
|
type: "anyOf";
|
1874
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2075
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1875
2076
|
}, {
|
1876
2077
|
type: "anyOf";
|
1877
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2078
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
1878
2079
|
}>, z.ZodObject<{
|
1879
2080
|
type: z.ZodLiteral<"exact">;
|
1880
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
2081
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
1881
2082
|
}, "strip", z.ZodTypeAny, {
|
1882
2083
|
type: "exact";
|
1883
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2084
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1884
2085
|
}, {
|
1885
2086
|
type: "exact";
|
1886
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2087
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
1887
2088
|
}>]>>>;
|
1888
2089
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
1889
2090
|
type: z.ZodLiteral<"exact">;
|
@@ -1896,14 +2097,11 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1896
2097
|
}, {
|
1897
2098
|
type: "exact";
|
1898
2099
|
term: string;
|
1899
|
-
}>, z.ZodObject<
|
2100
|
+
}>, z.ZodObject<{
|
1900
2101
|
type: z.ZodLiteral<"range">;
|
1901
|
-
gte: z.ZodString;
|
1902
|
-
lte: z.ZodString;
|
1903
|
-
}, {
|
1904
2102
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1905
2103
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1906
|
-
}
|
2104
|
+
}, "strip", z.ZodTypeAny, {
|
1907
2105
|
type: "range";
|
1908
2106
|
gte: string;
|
1909
2107
|
lte: string;
|
@@ -1911,6 +2109,15 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1911
2109
|
type: "range";
|
1912
2110
|
gte: string;
|
1913
2111
|
lte: string;
|
2112
|
+
}>, z.ZodObject<{
|
2113
|
+
type: z.ZodLiteral<"timePeriod">;
|
2114
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
2115
|
+
}, "strip", z.ZodTypeAny, {
|
2116
|
+
type: "timePeriod";
|
2117
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2118
|
+
}, {
|
2119
|
+
type: "timePeriod";
|
2120
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1914
2121
|
}>]>>>;
|
1915
2122
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
1916
2123
|
type: z.ZodLiteral<"exact">;
|
@@ -1923,14 +2130,11 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1923
2130
|
}, {
|
1924
2131
|
type: "exact";
|
1925
2132
|
term: string;
|
1926
|
-
}>, z.ZodObject<
|
2133
|
+
}>, z.ZodObject<{
|
1927
2134
|
type: z.ZodLiteral<"range">;
|
1928
|
-
gte: z.ZodString;
|
1929
|
-
lte: z.ZodString;
|
1930
|
-
}, {
|
1931
2135
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1932
2136
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1933
|
-
}
|
2137
|
+
}, "strip", z.ZodTypeAny, {
|
1934
2138
|
type: "range";
|
1935
2139
|
gte: string;
|
1936
2140
|
lte: string;
|
@@ -1938,8 +2142,17 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1938
2142
|
type: "range";
|
1939
2143
|
gte: string;
|
1940
2144
|
lte: string;
|
2145
|
+
}>, z.ZodObject<{
|
2146
|
+
type: z.ZodLiteral<"timePeriod">;
|
2147
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
2148
|
+
}, "strip", z.ZodTypeAny, {
|
2149
|
+
type: "timePeriod";
|
2150
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2151
|
+
}, {
|
2152
|
+
type: "timePeriod";
|
2153
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1941
2154
|
}>]>>>;
|
1942
|
-
'
|
2155
|
+
'legalStatuses.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
1943
2156
|
type: z.ZodLiteral<"exact">;
|
1944
2157
|
term: z.ZodString;
|
1945
2158
|
}, {
|
@@ -1950,14 +2163,11 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1950
2163
|
}, {
|
1951
2164
|
type: "exact";
|
1952
2165
|
term: string;
|
1953
|
-
}>, z.ZodObject<
|
2166
|
+
}>, z.ZodObject<{
|
1954
2167
|
type: z.ZodLiteral<"range">;
|
1955
|
-
gte: z.ZodString;
|
1956
|
-
lte: z.ZodString;
|
1957
|
-
}, {
|
1958
2168
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1959
2169
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1960
|
-
}
|
2170
|
+
}, "strip", z.ZodTypeAny, {
|
1961
2171
|
type: "range";
|
1962
2172
|
gte: string;
|
1963
2173
|
lte: string;
|
@@ -1965,8 +2175,17 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1965
2175
|
type: "range";
|
1966
2176
|
gte: string;
|
1967
2177
|
lte: string;
|
2178
|
+
}>, z.ZodObject<{
|
2179
|
+
type: z.ZodLiteral<"timePeriod">;
|
2180
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
2181
|
+
}, "strip", z.ZodTypeAny, {
|
2182
|
+
type: "timePeriod";
|
2183
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2184
|
+
}, {
|
2185
|
+
type: "timePeriod";
|
2186
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1968
2187
|
}>]>>>;
|
1969
|
-
'
|
2188
|
+
'legalStatuses.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1970
2189
|
type: z.ZodLiteral<"within">;
|
1971
2190
|
location: z.ZodString;
|
1972
2191
|
}, "strip", z.ZodTypeAny, {
|
@@ -1985,7 +2204,7 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1985
2204
|
type: "exact";
|
1986
2205
|
term: string;
|
1987
2206
|
}>]>>>;
|
1988
|
-
'
|
2207
|
+
'legalStatuses.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
1989
2208
|
type: z.ZodLiteral<"exact">;
|
1990
2209
|
term: z.ZodString;
|
1991
2210
|
}, "strip", z.ZodTypeAny, {
|
@@ -1998,140 +2217,149 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1998
2217
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1999
2218
|
type: z.ZodLiteral<"within">;
|
2000
2219
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2001
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2220
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2002
2221
|
}, "strip", z.ZodTypeAny, {
|
2003
|
-
$userField: "id" | "name" | "role" | "
|
2222
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2004
2223
|
}, {
|
2005
|
-
$userField: "id" | "name" | "role" | "
|
2224
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2006
2225
|
}>]>;
|
2007
2226
|
}, "strip", z.ZodTypeAny, {
|
2008
2227
|
type: "within";
|
2009
2228
|
location: string | {
|
2010
|
-
$userField: "id" | "name" | "role" | "
|
2229
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2011
2230
|
};
|
2012
2231
|
}, {
|
2013
2232
|
type: "within";
|
2014
2233
|
location: string | {
|
2015
|
-
$userField: "id" | "name" | "role" | "
|
2234
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2016
2235
|
};
|
2017
2236
|
}>, z.ZodObject<{
|
2018
2237
|
type: z.ZodLiteral<"exact">;
|
2019
2238
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2020
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2239
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2021
2240
|
}, "strip", z.ZodTypeAny, {
|
2022
|
-
$userField: "id" | "name" | "role" | "
|
2241
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2023
2242
|
}, {
|
2024
|
-
$userField: "id" | "name" | "role" | "
|
2243
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2025
2244
|
}>]>;
|
2026
2245
|
}, "strip", z.ZodTypeAny, {
|
2027
2246
|
type: "exact";
|
2028
2247
|
term: string | {
|
2029
|
-
$userField: "id" | "name" | "role" | "
|
2248
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2030
2249
|
};
|
2031
2250
|
}, {
|
2032
2251
|
type: "exact";
|
2033
2252
|
term: string | {
|
2034
|
-
$userField: "id" | "name" | "role" | "
|
2253
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2035
2254
|
};
|
2036
2255
|
}>]>>>;
|
2037
2256
|
updatedAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2038
2257
|
type: z.ZodLiteral<"within">;
|
2039
2258
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2040
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2259
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2041
2260
|
}, "strip", z.ZodTypeAny, {
|
2042
|
-
$userField: "id" | "name" | "role" | "
|
2261
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2043
2262
|
}, {
|
2044
|
-
$userField: "id" | "name" | "role" | "
|
2263
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2045
2264
|
}>]>;
|
2046
2265
|
}, "strip", z.ZodTypeAny, {
|
2047
2266
|
type: "within";
|
2048
2267
|
location: string | {
|
2049
|
-
$userField: "id" | "name" | "role" | "
|
2268
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2050
2269
|
};
|
2051
2270
|
}, {
|
2052
2271
|
type: "within";
|
2053
2272
|
location: string | {
|
2054
|
-
$userField: "id" | "name" | "role" | "
|
2273
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2055
2274
|
};
|
2056
2275
|
}>, z.ZodObject<{
|
2057
2276
|
type: z.ZodLiteral<"exact">;
|
2058
2277
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2059
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2278
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2060
2279
|
}, "strip", z.ZodTypeAny, {
|
2061
|
-
$userField: "id" | "name" | "role" | "
|
2280
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2062
2281
|
}, {
|
2063
|
-
$userField: "id" | "name" | "role" | "
|
2282
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2064
2283
|
}>]>;
|
2065
2284
|
}, "strip", z.ZodTypeAny, {
|
2066
2285
|
type: "exact";
|
2067
2286
|
term: string | {
|
2068
|
-
$userField: "id" | "name" | "role" | "
|
2287
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2069
2288
|
};
|
2070
2289
|
}, {
|
2071
2290
|
type: "exact";
|
2072
2291
|
term: string | {
|
2073
|
-
$userField: "id" | "name" | "role" | "
|
2292
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2074
2293
|
};
|
2075
2294
|
}>]>>>;
|
2076
2295
|
assignedTo: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2077
2296
|
type: z.ZodLiteral<"exact">;
|
2078
2297
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2079
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2298
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2080
2299
|
}, "strip", z.ZodTypeAny, {
|
2081
|
-
$userField: "id" | "name" | "role" | "
|
2300
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2082
2301
|
}, {
|
2083
|
-
$userField: "id" | "name" | "role" | "
|
2302
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2084
2303
|
}>]>;
|
2085
2304
|
}, "strip", z.ZodTypeAny, {
|
2086
2305
|
type: "exact";
|
2087
2306
|
term: string | {
|
2088
|
-
$userField: "id" | "name" | "role" | "
|
2307
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2089
2308
|
};
|
2090
2309
|
}, {
|
2091
2310
|
type: "exact";
|
2092
2311
|
term: string | {
|
2093
|
-
$userField: "id" | "name" | "role" | "
|
2312
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2094
2313
|
};
|
2095
2314
|
}>>>;
|
2096
2315
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2097
2316
|
type: z.ZodLiteral<"exact">;
|
2098
2317
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2099
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2318
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2100
2319
|
}, "strip", z.ZodTypeAny, {
|
2101
|
-
$userField: "id" | "name" | "role" | "
|
2320
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2102
2321
|
}, {
|
2103
|
-
$userField: "id" | "name" | "role" | "
|
2322
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2104
2323
|
}>]>;
|
2105
2324
|
}, "strip", z.ZodTypeAny, {
|
2106
2325
|
type: "exact";
|
2107
2326
|
term: string | {
|
2108
|
-
$userField: "id" | "name" | "role" | "
|
2327
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2109
2328
|
};
|
2110
2329
|
}, {
|
2111
2330
|
type: "exact";
|
2112
2331
|
term: string | {
|
2113
|
-
$userField: "id" | "name" | "role" | "
|
2332
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2114
2333
|
};
|
2115
2334
|
}>>>;
|
2116
|
-
createdByUserType: z.ZodOptional<z.
|
2335
|
+
createdByUserType: z.ZodOptional<z.ZodObject<{
|
2336
|
+
type: z.ZodLiteral<"exact">;
|
2337
|
+
term: z.ZodEnum<["user", "system"]>;
|
2338
|
+
}, "strip", z.ZodTypeAny, {
|
2339
|
+
type: "exact";
|
2340
|
+
term: "system" | "user";
|
2341
|
+
}, {
|
2342
|
+
type: "exact";
|
2343
|
+
term: "system" | "user";
|
2344
|
+
}>>;
|
2117
2345
|
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2118
2346
|
type: z.ZodLiteral<"exact">;
|
2119
2347
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2120
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2348
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2121
2349
|
}, "strip", z.ZodTypeAny, {
|
2122
|
-
$userField: "id" | "name" | "role" | "
|
2350
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2123
2351
|
}, {
|
2124
|
-
$userField: "id" | "name" | "role" | "
|
2352
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2125
2353
|
}>]>;
|
2126
2354
|
}, "strip", z.ZodTypeAny, {
|
2127
2355
|
type: "exact";
|
2128
2356
|
term: string | {
|
2129
|
-
$userField: "id" | "name" | "role" | "
|
2357
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2130
2358
|
};
|
2131
2359
|
}, {
|
2132
2360
|
type: "exact";
|
2133
2361
|
term: string | {
|
2134
|
-
$userField: "id" | "name" | "role" | "
|
2362
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2135
2363
|
};
|
2136
2364
|
}>>>;
|
2137
2365
|
trackingId: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
@@ -2168,13 +2396,16 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2168
2396
|
}, "strip", z.ZodTypeAny, {
|
2169
2397
|
status?: {
|
2170
2398
|
type: "exact";
|
2171
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2399
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2172
2400
|
} | {
|
2173
2401
|
type: "anyOf";
|
2174
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2402
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2175
2403
|
} | undefined;
|
2176
2404
|
data?: any;
|
2177
|
-
createdByUserType?:
|
2405
|
+
createdByUserType?: {
|
2406
|
+
type: "exact";
|
2407
|
+
term: "system" | "user";
|
2408
|
+
} | undefined;
|
2178
2409
|
createdAt?: {
|
2179
2410
|
type: "range";
|
2180
2411
|
gte: string;
|
@@ -2182,28 +2413,31 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2182
2413
|
} | {
|
2183
2414
|
type: "exact";
|
2184
2415
|
term: string;
|
2416
|
+
} | {
|
2417
|
+
type: "timePeriod";
|
2418
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2185
2419
|
} | undefined;
|
2186
2420
|
createdBy?: {
|
2187
2421
|
type: "exact";
|
2188
2422
|
term: string | {
|
2189
|
-
$userField: "id" | "name" | "role" | "
|
2423
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2190
2424
|
};
|
2191
2425
|
} | undefined;
|
2192
2426
|
createdAtLocation?: {
|
2193
2427
|
type: "exact";
|
2194
2428
|
term: string | {
|
2195
|
-
$userField: "id" | "name" | "role" | "
|
2429
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2196
2430
|
};
|
2197
2431
|
} | {
|
2198
2432
|
type: "within";
|
2199
2433
|
location: string | {
|
2200
|
-
$userField: "id" | "name" | "role" | "
|
2434
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2201
2435
|
};
|
2202
2436
|
} | undefined;
|
2203
2437
|
assignedTo?: {
|
2204
2438
|
type: "exact";
|
2205
2439
|
term: string | {
|
2206
|
-
$userField: "id" | "name" | "role" | "
|
2440
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2207
2441
|
};
|
2208
2442
|
} | undefined;
|
2209
2443
|
updatedAt?: {
|
@@ -2213,6 +2447,9 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2213
2447
|
} | {
|
2214
2448
|
type: "exact";
|
2215
2449
|
term: string;
|
2450
|
+
} | {
|
2451
|
+
type: "timePeriod";
|
2452
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2216
2453
|
} | undefined;
|
2217
2454
|
trackingId?: {
|
2218
2455
|
type: "exact";
|
@@ -2221,18 +2458,18 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2221
2458
|
updatedAtLocation?: {
|
2222
2459
|
type: "exact";
|
2223
2460
|
term: string | {
|
2224
|
-
$userField: "id" | "name" | "role" | "
|
2461
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2225
2462
|
};
|
2226
2463
|
} | {
|
2227
2464
|
type: "within";
|
2228
2465
|
location: string | {
|
2229
|
-
$userField: "id" | "name" | "role" | "
|
2466
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2230
2467
|
};
|
2231
2468
|
} | undefined;
|
2232
2469
|
updatedBy?: {
|
2233
2470
|
type: "exact";
|
2234
2471
|
term: string | {
|
2235
|
-
$userField: "id" | "name" | "role" | "
|
2472
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2236
2473
|
};
|
2237
2474
|
} | undefined;
|
2238
2475
|
flags?: {
|
@@ -2240,35 +2477,41 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2240
2477
|
noneOf?: string[] | undefined;
|
2241
2478
|
} | undefined;
|
2242
2479
|
eventType?: string | undefined;
|
2243
|
-
'
|
2244
|
-
type: "range";
|
2245
|
-
gte: string;
|
2246
|
-
lte: string;
|
2247
|
-
} | {
|
2248
|
-
type: "exact";
|
2249
|
-
term: string;
|
2250
|
-
} | undefined;
|
2251
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
2480
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
2252
2481
|
type: "exact";
|
2253
2482
|
term: string;
|
2254
2483
|
} | {
|
2255
2484
|
type: "within";
|
2256
2485
|
location: string;
|
2257
2486
|
} | undefined;
|
2258
|
-
'
|
2487
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
2259
2488
|
type: "exact";
|
2260
2489
|
term: string;
|
2261
2490
|
} | undefined;
|
2491
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
2492
|
+
type: "range";
|
2493
|
+
gte: string;
|
2494
|
+
lte: string;
|
2495
|
+
} | {
|
2496
|
+
type: "exact";
|
2497
|
+
term: string;
|
2498
|
+
} | {
|
2499
|
+
type: "timePeriod";
|
2500
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2501
|
+
} | undefined;
|
2262
2502
|
}, {
|
2263
2503
|
status?: {
|
2264
2504
|
type: "exact";
|
2265
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2505
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2266
2506
|
} | {
|
2267
2507
|
type: "anyOf";
|
2268
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2508
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2269
2509
|
} | undefined;
|
2270
2510
|
data?: any;
|
2271
|
-
createdByUserType?:
|
2511
|
+
createdByUserType?: {
|
2512
|
+
type: "exact";
|
2513
|
+
term: "system" | "user";
|
2514
|
+
} | undefined;
|
2272
2515
|
createdAt?: {
|
2273
2516
|
type: "range";
|
2274
2517
|
gte: string;
|
@@ -2276,28 +2519,31 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2276
2519
|
} | {
|
2277
2520
|
type: "exact";
|
2278
2521
|
term: string;
|
2522
|
+
} | {
|
2523
|
+
type: "timePeriod";
|
2524
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2279
2525
|
} | undefined;
|
2280
2526
|
createdBy?: {
|
2281
2527
|
type: "exact";
|
2282
2528
|
term: string | {
|
2283
|
-
$userField: "id" | "name" | "role" | "
|
2529
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2284
2530
|
};
|
2285
2531
|
} | undefined;
|
2286
2532
|
createdAtLocation?: {
|
2287
2533
|
type: "exact";
|
2288
2534
|
term: string | {
|
2289
|
-
$userField: "id" | "name" | "role" | "
|
2535
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2290
2536
|
};
|
2291
2537
|
} | {
|
2292
2538
|
type: "within";
|
2293
2539
|
location: string | {
|
2294
|
-
$userField: "id" | "name" | "role" | "
|
2540
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2295
2541
|
};
|
2296
2542
|
} | undefined;
|
2297
2543
|
assignedTo?: {
|
2298
2544
|
type: "exact";
|
2299
2545
|
term: string | {
|
2300
|
-
$userField: "id" | "name" | "role" | "
|
2546
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2301
2547
|
};
|
2302
2548
|
} | undefined;
|
2303
2549
|
updatedAt?: {
|
@@ -2307,6 +2553,9 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2307
2553
|
} | {
|
2308
2554
|
type: "exact";
|
2309
2555
|
term: string;
|
2556
|
+
} | {
|
2557
|
+
type: "timePeriod";
|
2558
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2310
2559
|
} | undefined;
|
2311
2560
|
trackingId?: {
|
2312
2561
|
type: "exact";
|
@@ -2315,18 +2564,18 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2315
2564
|
updatedAtLocation?: {
|
2316
2565
|
type: "exact";
|
2317
2566
|
term: string | {
|
2318
|
-
$userField: "id" | "name" | "role" | "
|
2567
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2319
2568
|
};
|
2320
2569
|
} | {
|
2321
2570
|
type: "within";
|
2322
2571
|
location: string | {
|
2323
|
-
$userField: "id" | "name" | "role" | "
|
2572
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2324
2573
|
};
|
2325
2574
|
} | undefined;
|
2326
2575
|
updatedBy?: {
|
2327
2576
|
type: "exact";
|
2328
2577
|
term: string | {
|
2329
|
-
$userField: "id" | "name" | "role" | "
|
2578
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2330
2579
|
};
|
2331
2580
|
} | undefined;
|
2332
2581
|
flags?: {
|
@@ -2334,24 +2583,27 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2334
2583
|
noneOf?: string[] | undefined;
|
2335
2584
|
} | undefined;
|
2336
2585
|
eventType?: string | undefined;
|
2337
|
-
'
|
2338
|
-
type: "range";
|
2339
|
-
gte: string;
|
2340
|
-
lte: string;
|
2341
|
-
} | {
|
2342
|
-
type: "exact";
|
2343
|
-
term: string;
|
2344
|
-
} | undefined;
|
2345
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
2586
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
2346
2587
|
type: "exact";
|
2347
2588
|
term: string;
|
2348
2589
|
} | {
|
2349
2590
|
type: "within";
|
2350
2591
|
location: string;
|
2351
2592
|
} | undefined;
|
2352
|
-
'
|
2593
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
2594
|
+
type: "exact";
|
2595
|
+
term: string;
|
2596
|
+
} | undefined;
|
2597
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
2598
|
+
type: "range";
|
2599
|
+
gte: string;
|
2600
|
+
lte: string;
|
2601
|
+
} | {
|
2353
2602
|
type: "exact";
|
2354
2603
|
term: string;
|
2604
|
+
} | {
|
2605
|
+
type: "timePeriod";
|
2606
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2355
2607
|
} | undefined;
|
2356
2608
|
}>, z.ZodObject<{
|
2357
2609
|
type: z.ZodLiteral<"and">;
|
@@ -2359,22 +2611,22 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2359
2611
|
eventType: z.ZodOptional<z.ZodString>;
|
2360
2612
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2361
2613
|
type: z.ZodLiteral<"anyOf">;
|
2362
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
2614
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
2363
2615
|
}, "strip", z.ZodTypeAny, {
|
2364
2616
|
type: "anyOf";
|
2365
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2617
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2366
2618
|
}, {
|
2367
2619
|
type: "anyOf";
|
2368
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2620
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2369
2621
|
}>, z.ZodObject<{
|
2370
2622
|
type: z.ZodLiteral<"exact">;
|
2371
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
2623
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
2372
2624
|
}, "strip", z.ZodTypeAny, {
|
2373
2625
|
type: "exact";
|
2374
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2626
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2375
2627
|
}, {
|
2376
2628
|
type: "exact";
|
2377
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2629
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2378
2630
|
}>]>>>;
|
2379
2631
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
2380
2632
|
type: z.ZodLiteral<"exact">;
|
@@ -2387,14 +2639,11 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2387
2639
|
}, {
|
2388
2640
|
type: "exact";
|
2389
2641
|
term: string;
|
2390
|
-
}>, z.ZodObject<
|
2642
|
+
}>, z.ZodObject<{
|
2391
2643
|
type: z.ZodLiteral<"range">;
|
2392
|
-
gte: z.ZodString;
|
2393
|
-
lte: z.ZodString;
|
2394
|
-
}, {
|
2395
2644
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
2396
2645
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
2397
|
-
}
|
2646
|
+
}, "strip", z.ZodTypeAny, {
|
2398
2647
|
type: "range";
|
2399
2648
|
gte: string;
|
2400
2649
|
lte: string;
|
@@ -2402,6 +2651,15 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2402
2651
|
type: "range";
|
2403
2652
|
gte: string;
|
2404
2653
|
lte: string;
|
2654
|
+
}>, z.ZodObject<{
|
2655
|
+
type: z.ZodLiteral<"timePeriod">;
|
2656
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
2657
|
+
}, "strip", z.ZodTypeAny, {
|
2658
|
+
type: "timePeriod";
|
2659
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2660
|
+
}, {
|
2661
|
+
type: "timePeriod";
|
2662
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2405
2663
|
}>]>>>;
|
2406
2664
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
2407
2665
|
type: z.ZodLiteral<"exact">;
|
@@ -2414,14 +2672,11 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2414
2672
|
}, {
|
2415
2673
|
type: "exact";
|
2416
2674
|
term: string;
|
2417
|
-
}>, z.ZodObject<
|
2675
|
+
}>, z.ZodObject<{
|
2418
2676
|
type: z.ZodLiteral<"range">;
|
2419
|
-
gte: z.ZodString;
|
2420
|
-
lte: z.ZodString;
|
2421
|
-
}, {
|
2422
2677
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
2423
2678
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
2424
|
-
}
|
2679
|
+
}, "strip", z.ZodTypeAny, {
|
2425
2680
|
type: "range";
|
2426
2681
|
gte: string;
|
2427
2682
|
lte: string;
|
@@ -2429,8 +2684,17 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2429
2684
|
type: "range";
|
2430
2685
|
gte: string;
|
2431
2686
|
lte: string;
|
2687
|
+
}>, z.ZodObject<{
|
2688
|
+
type: z.ZodLiteral<"timePeriod">;
|
2689
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
2690
|
+
}, "strip", z.ZodTypeAny, {
|
2691
|
+
type: "timePeriod";
|
2692
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2693
|
+
}, {
|
2694
|
+
type: "timePeriod";
|
2695
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2432
2696
|
}>]>>>;
|
2433
|
-
'
|
2697
|
+
'legalStatuses.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
2434
2698
|
type: z.ZodLiteral<"exact">;
|
2435
2699
|
term: z.ZodString;
|
2436
2700
|
}, {
|
@@ -2441,14 +2705,11 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2441
2705
|
}, {
|
2442
2706
|
type: "exact";
|
2443
2707
|
term: string;
|
2444
|
-
}>, z.ZodObject<
|
2708
|
+
}>, z.ZodObject<{
|
2445
2709
|
type: z.ZodLiteral<"range">;
|
2446
|
-
gte: z.ZodString;
|
2447
|
-
lte: z.ZodString;
|
2448
|
-
}, {
|
2449
2710
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
2450
2711
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
2451
|
-
}
|
2712
|
+
}, "strip", z.ZodTypeAny, {
|
2452
2713
|
type: "range";
|
2453
2714
|
gte: string;
|
2454
2715
|
lte: string;
|
@@ -2456,8 +2717,17 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2456
2717
|
type: "range";
|
2457
2718
|
gte: string;
|
2458
2719
|
lte: string;
|
2720
|
+
}>, z.ZodObject<{
|
2721
|
+
type: z.ZodLiteral<"timePeriod">;
|
2722
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
2723
|
+
}, "strip", z.ZodTypeAny, {
|
2724
|
+
type: "timePeriod";
|
2725
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2726
|
+
}, {
|
2727
|
+
type: "timePeriod";
|
2728
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2459
2729
|
}>]>>>;
|
2460
|
-
'
|
2730
|
+
'legalStatuses.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2461
2731
|
type: z.ZodLiteral<"within">;
|
2462
2732
|
location: z.ZodString;
|
2463
2733
|
}, "strip", z.ZodTypeAny, {
|
@@ -2476,7 +2746,7 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2476
2746
|
type: "exact";
|
2477
2747
|
term: string;
|
2478
2748
|
}>]>>>;
|
2479
|
-
'
|
2749
|
+
'legalStatuses.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2480
2750
|
type: z.ZodLiteral<"exact">;
|
2481
2751
|
term: z.ZodString;
|
2482
2752
|
}, "strip", z.ZodTypeAny, {
|
@@ -2489,140 +2759,149 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2489
2759
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2490
2760
|
type: z.ZodLiteral<"within">;
|
2491
2761
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2492
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2762
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2493
2763
|
}, "strip", z.ZodTypeAny, {
|
2494
|
-
$userField: "id" | "name" | "role" | "
|
2764
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2495
2765
|
}, {
|
2496
|
-
$userField: "id" | "name" | "role" | "
|
2766
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2497
2767
|
}>]>;
|
2498
2768
|
}, "strip", z.ZodTypeAny, {
|
2499
2769
|
type: "within";
|
2500
2770
|
location: string | {
|
2501
|
-
$userField: "id" | "name" | "role" | "
|
2771
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2502
2772
|
};
|
2503
2773
|
}, {
|
2504
2774
|
type: "within";
|
2505
2775
|
location: string | {
|
2506
|
-
$userField: "id" | "name" | "role" | "
|
2776
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2507
2777
|
};
|
2508
2778
|
}>, z.ZodObject<{
|
2509
2779
|
type: z.ZodLiteral<"exact">;
|
2510
2780
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2511
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2781
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2512
2782
|
}, "strip", z.ZodTypeAny, {
|
2513
|
-
$userField: "id" | "name" | "role" | "
|
2783
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2514
2784
|
}, {
|
2515
|
-
$userField: "id" | "name" | "role" | "
|
2785
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2516
2786
|
}>]>;
|
2517
2787
|
}, "strip", z.ZodTypeAny, {
|
2518
2788
|
type: "exact";
|
2519
2789
|
term: string | {
|
2520
|
-
$userField: "id" | "name" | "role" | "
|
2790
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2521
2791
|
};
|
2522
2792
|
}, {
|
2523
2793
|
type: "exact";
|
2524
2794
|
term: string | {
|
2525
|
-
$userField: "id" | "name" | "role" | "
|
2795
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2526
2796
|
};
|
2527
2797
|
}>]>>>;
|
2528
2798
|
updatedAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2529
2799
|
type: z.ZodLiteral<"within">;
|
2530
2800
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2531
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2801
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2532
2802
|
}, "strip", z.ZodTypeAny, {
|
2533
|
-
$userField: "id" | "name" | "role" | "
|
2803
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2534
2804
|
}, {
|
2535
|
-
$userField: "id" | "name" | "role" | "
|
2805
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2536
2806
|
}>]>;
|
2537
2807
|
}, "strip", z.ZodTypeAny, {
|
2538
2808
|
type: "within";
|
2539
2809
|
location: string | {
|
2540
|
-
$userField: "id" | "name" | "role" | "
|
2810
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2541
2811
|
};
|
2542
2812
|
}, {
|
2543
2813
|
type: "within";
|
2544
2814
|
location: string | {
|
2545
|
-
$userField: "id" | "name" | "role" | "
|
2815
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2546
2816
|
};
|
2547
2817
|
}>, z.ZodObject<{
|
2548
2818
|
type: z.ZodLiteral<"exact">;
|
2549
2819
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2550
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2820
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2551
2821
|
}, "strip", z.ZodTypeAny, {
|
2552
|
-
$userField: "id" | "name" | "role" | "
|
2822
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2553
2823
|
}, {
|
2554
|
-
$userField: "id" | "name" | "role" | "
|
2824
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2555
2825
|
}>]>;
|
2556
2826
|
}, "strip", z.ZodTypeAny, {
|
2557
2827
|
type: "exact";
|
2558
2828
|
term: string | {
|
2559
|
-
$userField: "id" | "name" | "role" | "
|
2829
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2560
2830
|
};
|
2561
2831
|
}, {
|
2562
2832
|
type: "exact";
|
2563
2833
|
term: string | {
|
2564
|
-
$userField: "id" | "name" | "role" | "
|
2834
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2565
2835
|
};
|
2566
2836
|
}>]>>>;
|
2567
2837
|
assignedTo: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2568
2838
|
type: z.ZodLiteral<"exact">;
|
2569
2839
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2570
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2840
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2571
2841
|
}, "strip", z.ZodTypeAny, {
|
2572
|
-
$userField: "id" | "name" | "role" | "
|
2842
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2573
2843
|
}, {
|
2574
|
-
$userField: "id" | "name" | "role" | "
|
2844
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2575
2845
|
}>]>;
|
2576
2846
|
}, "strip", z.ZodTypeAny, {
|
2577
2847
|
type: "exact";
|
2578
2848
|
term: string | {
|
2579
|
-
$userField: "id" | "name" | "role" | "
|
2849
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2580
2850
|
};
|
2581
2851
|
}, {
|
2582
2852
|
type: "exact";
|
2583
2853
|
term: string | {
|
2584
|
-
$userField: "id" | "name" | "role" | "
|
2854
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2585
2855
|
};
|
2586
2856
|
}>>>;
|
2587
2857
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2588
2858
|
type: z.ZodLiteral<"exact">;
|
2589
2859
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2590
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2860
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2591
2861
|
}, "strip", z.ZodTypeAny, {
|
2592
|
-
$userField: "id" | "name" | "role" | "
|
2862
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2593
2863
|
}, {
|
2594
|
-
$userField: "id" | "name" | "role" | "
|
2864
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2595
2865
|
}>]>;
|
2596
2866
|
}, "strip", z.ZodTypeAny, {
|
2597
2867
|
type: "exact";
|
2598
2868
|
term: string | {
|
2599
|
-
$userField: "id" | "name" | "role" | "
|
2869
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2600
2870
|
};
|
2601
2871
|
}, {
|
2602
2872
|
type: "exact";
|
2603
2873
|
term: string | {
|
2604
|
-
$userField: "id" | "name" | "role" | "
|
2874
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2605
2875
|
};
|
2606
2876
|
}>>>;
|
2607
|
-
createdByUserType: z.ZodOptional<z.
|
2877
|
+
createdByUserType: z.ZodOptional<z.ZodObject<{
|
2878
|
+
type: z.ZodLiteral<"exact">;
|
2879
|
+
term: z.ZodEnum<["user", "system"]>;
|
2880
|
+
}, "strip", z.ZodTypeAny, {
|
2881
|
+
type: "exact";
|
2882
|
+
term: "system" | "user";
|
2883
|
+
}, {
|
2884
|
+
type: "exact";
|
2885
|
+
term: "system" | "user";
|
2886
|
+
}>>;
|
2608
2887
|
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2609
2888
|
type: z.ZodLiteral<"exact">;
|
2610
2889
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2611
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
2890
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
2612
2891
|
}, "strip", z.ZodTypeAny, {
|
2613
|
-
$userField: "id" | "name" | "role" | "
|
2892
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2614
2893
|
}, {
|
2615
|
-
$userField: "id" | "name" | "role" | "
|
2894
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2616
2895
|
}>]>;
|
2617
2896
|
}, "strip", z.ZodTypeAny, {
|
2618
2897
|
type: "exact";
|
2619
2898
|
term: string | {
|
2620
|
-
$userField: "id" | "name" | "role" | "
|
2899
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2621
2900
|
};
|
2622
2901
|
}, {
|
2623
2902
|
type: "exact";
|
2624
2903
|
term: string | {
|
2625
|
-
$userField: "id" | "name" | "role" | "
|
2904
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2626
2905
|
};
|
2627
2906
|
}>>>;
|
2628
2907
|
trackingId: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
@@ -2659,13 +2938,16 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2659
2938
|
}, "strip", z.ZodTypeAny, {
|
2660
2939
|
status?: {
|
2661
2940
|
type: "exact";
|
2662
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2941
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2663
2942
|
} | {
|
2664
2943
|
type: "anyOf";
|
2665
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
2944
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2666
2945
|
} | undefined;
|
2667
2946
|
data?: any;
|
2668
|
-
createdByUserType?:
|
2947
|
+
createdByUserType?: {
|
2948
|
+
type: "exact";
|
2949
|
+
term: "system" | "user";
|
2950
|
+
} | undefined;
|
2669
2951
|
createdAt?: {
|
2670
2952
|
type: "range";
|
2671
2953
|
gte: string;
|
@@ -2673,28 +2955,31 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2673
2955
|
} | {
|
2674
2956
|
type: "exact";
|
2675
2957
|
term: string;
|
2958
|
+
} | {
|
2959
|
+
type: "timePeriod";
|
2960
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2676
2961
|
} | undefined;
|
2677
2962
|
createdBy?: {
|
2678
2963
|
type: "exact";
|
2679
2964
|
term: string | {
|
2680
|
-
$userField: "id" | "name" | "role" | "
|
2965
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2681
2966
|
};
|
2682
2967
|
} | undefined;
|
2683
2968
|
createdAtLocation?: {
|
2684
2969
|
type: "exact";
|
2685
2970
|
term: string | {
|
2686
|
-
$userField: "id" | "name" | "role" | "
|
2971
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2687
2972
|
};
|
2688
2973
|
} | {
|
2689
2974
|
type: "within";
|
2690
2975
|
location: string | {
|
2691
|
-
$userField: "id" | "name" | "role" | "
|
2976
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2692
2977
|
};
|
2693
2978
|
} | undefined;
|
2694
2979
|
assignedTo?: {
|
2695
2980
|
type: "exact";
|
2696
2981
|
term: string | {
|
2697
|
-
$userField: "id" | "name" | "role" | "
|
2982
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2698
2983
|
};
|
2699
2984
|
} | undefined;
|
2700
2985
|
updatedAt?: {
|
@@ -2704,6 +2989,9 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2704
2989
|
} | {
|
2705
2990
|
type: "exact";
|
2706
2991
|
term: string;
|
2992
|
+
} | {
|
2993
|
+
type: "timePeriod";
|
2994
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2707
2995
|
} | undefined;
|
2708
2996
|
trackingId?: {
|
2709
2997
|
type: "exact";
|
@@ -2712,18 +3000,18 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2712
3000
|
updatedAtLocation?: {
|
2713
3001
|
type: "exact";
|
2714
3002
|
term: string | {
|
2715
|
-
$userField: "id" | "name" | "role" | "
|
3003
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2716
3004
|
};
|
2717
3005
|
} | {
|
2718
3006
|
type: "within";
|
2719
3007
|
location: string | {
|
2720
|
-
$userField: "id" | "name" | "role" | "
|
3008
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2721
3009
|
};
|
2722
3010
|
} | undefined;
|
2723
3011
|
updatedBy?: {
|
2724
3012
|
type: "exact";
|
2725
3013
|
term: string | {
|
2726
|
-
$userField: "id" | "name" | "role" | "
|
3014
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2727
3015
|
};
|
2728
3016
|
} | undefined;
|
2729
3017
|
flags?: {
|
@@ -2731,35 +3019,41 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2731
3019
|
noneOf?: string[] | undefined;
|
2732
3020
|
} | undefined;
|
2733
3021
|
eventType?: string | undefined;
|
2734
|
-
'
|
2735
|
-
type: "range";
|
2736
|
-
gte: string;
|
2737
|
-
lte: string;
|
2738
|
-
} | {
|
2739
|
-
type: "exact";
|
2740
|
-
term: string;
|
2741
|
-
} | undefined;
|
2742
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3022
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
2743
3023
|
type: "exact";
|
2744
3024
|
term: string;
|
2745
3025
|
} | {
|
2746
3026
|
type: "within";
|
2747
3027
|
location: string;
|
2748
3028
|
} | undefined;
|
2749
|
-
'
|
3029
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
3030
|
+
type: "exact";
|
3031
|
+
term: string;
|
3032
|
+
} | undefined;
|
3033
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
3034
|
+
type: "range";
|
3035
|
+
gte: string;
|
3036
|
+
lte: string;
|
3037
|
+
} | {
|
2750
3038
|
type: "exact";
|
2751
3039
|
term: string;
|
3040
|
+
} | {
|
3041
|
+
type: "timePeriod";
|
3042
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2752
3043
|
} | undefined;
|
2753
3044
|
}, {
|
2754
3045
|
status?: {
|
2755
3046
|
type: "exact";
|
2756
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3047
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2757
3048
|
} | {
|
2758
3049
|
type: "anyOf";
|
2759
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3050
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2760
3051
|
} | undefined;
|
2761
3052
|
data?: any;
|
2762
|
-
createdByUserType?:
|
3053
|
+
createdByUserType?: {
|
3054
|
+
type: "exact";
|
3055
|
+
term: "system" | "user";
|
3056
|
+
} | undefined;
|
2763
3057
|
createdAt?: {
|
2764
3058
|
type: "range";
|
2765
3059
|
gte: string;
|
@@ -2767,28 +3061,31 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2767
3061
|
} | {
|
2768
3062
|
type: "exact";
|
2769
3063
|
term: string;
|
3064
|
+
} | {
|
3065
|
+
type: "timePeriod";
|
3066
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2770
3067
|
} | undefined;
|
2771
3068
|
createdBy?: {
|
2772
3069
|
type: "exact";
|
2773
3070
|
term: string | {
|
2774
|
-
$userField: "id" | "name" | "role" | "
|
3071
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2775
3072
|
};
|
2776
3073
|
} | undefined;
|
2777
3074
|
createdAtLocation?: {
|
2778
3075
|
type: "exact";
|
2779
3076
|
term: string | {
|
2780
|
-
$userField: "id" | "name" | "role" | "
|
3077
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2781
3078
|
};
|
2782
3079
|
} | {
|
2783
3080
|
type: "within";
|
2784
3081
|
location: string | {
|
2785
|
-
$userField: "id" | "name" | "role" | "
|
3082
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2786
3083
|
};
|
2787
3084
|
} | undefined;
|
2788
3085
|
assignedTo?: {
|
2789
3086
|
type: "exact";
|
2790
3087
|
term: string | {
|
2791
|
-
$userField: "id" | "name" | "role" | "
|
3088
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2792
3089
|
};
|
2793
3090
|
} | undefined;
|
2794
3091
|
updatedAt?: {
|
@@ -2798,6 +3095,9 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2798
3095
|
} | {
|
2799
3096
|
type: "exact";
|
2800
3097
|
term: string;
|
3098
|
+
} | {
|
3099
|
+
type: "timePeriod";
|
3100
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2801
3101
|
} | undefined;
|
2802
3102
|
trackingId?: {
|
2803
3103
|
type: "exact";
|
@@ -2806,18 +3106,18 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2806
3106
|
updatedAtLocation?: {
|
2807
3107
|
type: "exact";
|
2808
3108
|
term: string | {
|
2809
|
-
$userField: "id" | "name" | "role" | "
|
3109
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2810
3110
|
};
|
2811
3111
|
} | {
|
2812
3112
|
type: "within";
|
2813
3113
|
location: string | {
|
2814
|
-
$userField: "id" | "name" | "role" | "
|
3114
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2815
3115
|
};
|
2816
3116
|
} | undefined;
|
2817
3117
|
updatedBy?: {
|
2818
3118
|
type: "exact";
|
2819
3119
|
term: string | {
|
2820
|
-
$userField: "id" | "name" | "role" | "
|
3120
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2821
3121
|
};
|
2822
3122
|
} | undefined;
|
2823
3123
|
flags?: {
|
@@ -2825,38 +3125,44 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2825
3125
|
noneOf?: string[] | undefined;
|
2826
3126
|
} | undefined;
|
2827
3127
|
eventType?: string | undefined;
|
2828
|
-
'
|
2829
|
-
type: "range";
|
2830
|
-
gte: string;
|
2831
|
-
lte: string;
|
2832
|
-
} | {
|
2833
|
-
type: "exact";
|
2834
|
-
term: string;
|
2835
|
-
} | undefined;
|
2836
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3128
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
2837
3129
|
type: "exact";
|
2838
3130
|
term: string;
|
2839
3131
|
} | {
|
2840
3132
|
type: "within";
|
2841
3133
|
location: string;
|
2842
3134
|
} | undefined;
|
2843
|
-
'
|
3135
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
2844
3136
|
type: "exact";
|
2845
3137
|
term: string;
|
2846
3138
|
} | undefined;
|
3139
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
3140
|
+
type: "range";
|
3141
|
+
gte: string;
|
3142
|
+
lte: string;
|
3143
|
+
} | {
|
3144
|
+
type: "exact";
|
3145
|
+
term: string;
|
3146
|
+
} | {
|
3147
|
+
type: "timePeriod";
|
3148
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3149
|
+
} | undefined;
|
2847
3150
|
}>, "many">;
|
2848
3151
|
}, "strip", z.ZodTypeAny, {
|
2849
3152
|
type: "and";
|
2850
3153
|
clauses: {
|
2851
3154
|
status?: {
|
2852
3155
|
type: "exact";
|
2853
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3156
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2854
3157
|
} | {
|
2855
3158
|
type: "anyOf";
|
2856
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3159
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2857
3160
|
} | undefined;
|
2858
3161
|
data?: any;
|
2859
|
-
createdByUserType?:
|
3162
|
+
createdByUserType?: {
|
3163
|
+
type: "exact";
|
3164
|
+
term: "system" | "user";
|
3165
|
+
} | undefined;
|
2860
3166
|
createdAt?: {
|
2861
3167
|
type: "range";
|
2862
3168
|
gte: string;
|
@@ -2864,28 +3170,31 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2864
3170
|
} | {
|
2865
3171
|
type: "exact";
|
2866
3172
|
term: string;
|
3173
|
+
} | {
|
3174
|
+
type: "timePeriod";
|
3175
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2867
3176
|
} | undefined;
|
2868
3177
|
createdBy?: {
|
2869
3178
|
type: "exact";
|
2870
3179
|
term: string | {
|
2871
|
-
$userField: "id" | "name" | "role" | "
|
3180
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2872
3181
|
};
|
2873
3182
|
} | undefined;
|
2874
3183
|
createdAtLocation?: {
|
2875
3184
|
type: "exact";
|
2876
3185
|
term: string | {
|
2877
|
-
$userField: "id" | "name" | "role" | "
|
3186
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2878
3187
|
};
|
2879
3188
|
} | {
|
2880
3189
|
type: "within";
|
2881
3190
|
location: string | {
|
2882
|
-
$userField: "id" | "name" | "role" | "
|
3191
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2883
3192
|
};
|
2884
3193
|
} | undefined;
|
2885
3194
|
assignedTo?: {
|
2886
3195
|
type: "exact";
|
2887
3196
|
term: string | {
|
2888
|
-
$userField: "id" | "name" | "role" | "
|
3197
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2889
3198
|
};
|
2890
3199
|
} | undefined;
|
2891
3200
|
updatedAt?: {
|
@@ -2895,6 +3204,9 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2895
3204
|
} | {
|
2896
3205
|
type: "exact";
|
2897
3206
|
term: string;
|
3207
|
+
} | {
|
3208
|
+
type: "timePeriod";
|
3209
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2898
3210
|
} | undefined;
|
2899
3211
|
trackingId?: {
|
2900
3212
|
type: "exact";
|
@@ -2903,18 +3215,18 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2903
3215
|
updatedAtLocation?: {
|
2904
3216
|
type: "exact";
|
2905
3217
|
term: string | {
|
2906
|
-
$userField: "id" | "name" | "role" | "
|
3218
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2907
3219
|
};
|
2908
3220
|
} | {
|
2909
3221
|
type: "within";
|
2910
3222
|
location: string | {
|
2911
|
-
$userField: "id" | "name" | "role" | "
|
3223
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2912
3224
|
};
|
2913
3225
|
} | undefined;
|
2914
3226
|
updatedBy?: {
|
2915
3227
|
type: "exact";
|
2916
3228
|
term: string | {
|
2917
|
-
$userField: "id" | "name" | "role" | "
|
3229
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2918
3230
|
};
|
2919
3231
|
} | undefined;
|
2920
3232
|
flags?: {
|
@@ -2922,38 +3234,44 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2922
3234
|
noneOf?: string[] | undefined;
|
2923
3235
|
} | undefined;
|
2924
3236
|
eventType?: string | undefined;
|
2925
|
-
'
|
2926
|
-
type: "range";
|
2927
|
-
gte: string;
|
2928
|
-
lte: string;
|
2929
|
-
} | {
|
2930
|
-
type: "exact";
|
2931
|
-
term: string;
|
2932
|
-
} | undefined;
|
2933
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3237
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
2934
3238
|
type: "exact";
|
2935
3239
|
term: string;
|
2936
3240
|
} | {
|
2937
3241
|
type: "within";
|
2938
3242
|
location: string;
|
2939
3243
|
} | undefined;
|
2940
|
-
'
|
3244
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
2941
3245
|
type: "exact";
|
2942
3246
|
term: string;
|
2943
3247
|
} | undefined;
|
3248
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
3249
|
+
type: "range";
|
3250
|
+
gte: string;
|
3251
|
+
lte: string;
|
3252
|
+
} | {
|
3253
|
+
type: "exact";
|
3254
|
+
term: string;
|
3255
|
+
} | {
|
3256
|
+
type: "timePeriod";
|
3257
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3258
|
+
} | undefined;
|
2944
3259
|
}[];
|
2945
3260
|
}, {
|
2946
3261
|
type: "and";
|
2947
3262
|
clauses: {
|
2948
3263
|
status?: {
|
2949
3264
|
type: "exact";
|
2950
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3265
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
2951
3266
|
} | {
|
2952
3267
|
type: "anyOf";
|
2953
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3268
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
2954
3269
|
} | undefined;
|
2955
3270
|
data?: any;
|
2956
|
-
createdByUserType?:
|
3271
|
+
createdByUserType?: {
|
3272
|
+
type: "exact";
|
3273
|
+
term: "system" | "user";
|
3274
|
+
} | undefined;
|
2957
3275
|
createdAt?: {
|
2958
3276
|
type: "range";
|
2959
3277
|
gte: string;
|
@@ -2961,28 +3279,31 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2961
3279
|
} | {
|
2962
3280
|
type: "exact";
|
2963
3281
|
term: string;
|
3282
|
+
} | {
|
3283
|
+
type: "timePeriod";
|
3284
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2964
3285
|
} | undefined;
|
2965
3286
|
createdBy?: {
|
2966
3287
|
type: "exact";
|
2967
3288
|
term: string | {
|
2968
|
-
$userField: "id" | "name" | "role" | "
|
3289
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2969
3290
|
};
|
2970
3291
|
} | undefined;
|
2971
3292
|
createdAtLocation?: {
|
2972
3293
|
type: "exact";
|
2973
3294
|
term: string | {
|
2974
|
-
$userField: "id" | "name" | "role" | "
|
3295
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2975
3296
|
};
|
2976
3297
|
} | {
|
2977
3298
|
type: "within";
|
2978
3299
|
location: string | {
|
2979
|
-
$userField: "id" | "name" | "role" | "
|
3300
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2980
3301
|
};
|
2981
3302
|
} | undefined;
|
2982
3303
|
assignedTo?: {
|
2983
3304
|
type: "exact";
|
2984
3305
|
term: string | {
|
2985
|
-
$userField: "id" | "name" | "role" | "
|
3306
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
2986
3307
|
};
|
2987
3308
|
} | undefined;
|
2988
3309
|
updatedAt?: {
|
@@ -2992,6 +3313,9 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2992
3313
|
} | {
|
2993
3314
|
type: "exact";
|
2994
3315
|
term: string;
|
3316
|
+
} | {
|
3317
|
+
type: "timePeriod";
|
3318
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2995
3319
|
} | undefined;
|
2996
3320
|
trackingId?: {
|
2997
3321
|
type: "exact";
|
@@ -3000,18 +3324,18 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3000
3324
|
updatedAtLocation?: {
|
3001
3325
|
type: "exact";
|
3002
3326
|
term: string | {
|
3003
|
-
$userField: "id" | "name" | "role" | "
|
3327
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3004
3328
|
};
|
3005
3329
|
} | {
|
3006
3330
|
type: "within";
|
3007
3331
|
location: string | {
|
3008
|
-
$userField: "id" | "name" | "role" | "
|
3332
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3009
3333
|
};
|
3010
3334
|
} | undefined;
|
3011
3335
|
updatedBy?: {
|
3012
3336
|
type: "exact";
|
3013
3337
|
term: string | {
|
3014
|
-
$userField: "id" | "name" | "role" | "
|
3338
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3015
3339
|
};
|
3016
3340
|
} | undefined;
|
3017
3341
|
flags?: {
|
@@ -3019,24 +3343,27 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3019
3343
|
noneOf?: string[] | undefined;
|
3020
3344
|
} | undefined;
|
3021
3345
|
eventType?: string | undefined;
|
3022
|
-
'
|
3023
|
-
type: "range";
|
3024
|
-
gte: string;
|
3025
|
-
lte: string;
|
3026
|
-
} | {
|
3027
|
-
type: "exact";
|
3028
|
-
term: string;
|
3029
|
-
} | undefined;
|
3030
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3346
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
3031
3347
|
type: "exact";
|
3032
3348
|
term: string;
|
3033
3349
|
} | {
|
3034
3350
|
type: "within";
|
3035
3351
|
location: string;
|
3036
3352
|
} | undefined;
|
3037
|
-
'
|
3353
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
3354
|
+
type: "exact";
|
3355
|
+
term: string;
|
3356
|
+
} | undefined;
|
3357
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
3358
|
+
type: "range";
|
3359
|
+
gte: string;
|
3360
|
+
lte: string;
|
3361
|
+
} | {
|
3038
3362
|
type: "exact";
|
3039
3363
|
term: string;
|
3364
|
+
} | {
|
3365
|
+
type: "timePeriod";
|
3366
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3040
3367
|
} | undefined;
|
3041
3368
|
}[];
|
3042
3369
|
}>, z.ZodObject<{
|
@@ -3045,22 +3372,22 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3045
3372
|
eventType: z.ZodOptional<z.ZodString>;
|
3046
3373
|
status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
3047
3374
|
type: z.ZodLiteral<"anyOf">;
|
3048
|
-
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
3375
|
+
terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>, "many">;
|
3049
3376
|
}, "strip", z.ZodTypeAny, {
|
3050
3377
|
type: "anyOf";
|
3051
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3378
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3052
3379
|
}, {
|
3053
3380
|
type: "anyOf";
|
3054
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3381
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3055
3382
|
}>, z.ZodObject<{
|
3056
3383
|
type: z.ZodLiteral<"exact">;
|
3057
|
-
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "
|
3384
|
+
term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "CERTIFIED", "ARCHIVED"]>;
|
3058
3385
|
}, "strip", z.ZodTypeAny, {
|
3059
3386
|
type: "exact";
|
3060
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3387
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3061
3388
|
}, {
|
3062
3389
|
type: "exact";
|
3063
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3390
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3064
3391
|
}>]>>>;
|
3065
3392
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
3066
3393
|
type: z.ZodLiteral<"exact">;
|
@@ -3073,14 +3400,11 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3073
3400
|
}, {
|
3074
3401
|
type: "exact";
|
3075
3402
|
term: string;
|
3076
|
-
}>, z.ZodObject<
|
3403
|
+
}>, z.ZodObject<{
|
3077
3404
|
type: z.ZodLiteral<"range">;
|
3078
|
-
gte: z.ZodString;
|
3079
|
-
lte: z.ZodString;
|
3080
|
-
}, {
|
3081
3405
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
3082
3406
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
3083
|
-
}
|
3407
|
+
}, "strip", z.ZodTypeAny, {
|
3084
3408
|
type: "range";
|
3085
3409
|
gte: string;
|
3086
3410
|
lte: string;
|
@@ -3088,6 +3412,15 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3088
3412
|
type: "range";
|
3089
3413
|
gte: string;
|
3090
3414
|
lte: string;
|
3415
|
+
}>, z.ZodObject<{
|
3416
|
+
type: z.ZodLiteral<"timePeriod">;
|
3417
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
3418
|
+
}, "strip", z.ZodTypeAny, {
|
3419
|
+
type: "timePeriod";
|
3420
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3421
|
+
}, {
|
3422
|
+
type: "timePeriod";
|
3423
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3091
3424
|
}>]>>>;
|
3092
3425
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
3093
3426
|
type: z.ZodLiteral<"exact">;
|
@@ -3100,14 +3433,11 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3100
3433
|
}, {
|
3101
3434
|
type: "exact";
|
3102
3435
|
term: string;
|
3103
|
-
}>, z.ZodObject<
|
3436
|
+
}>, z.ZodObject<{
|
3104
3437
|
type: z.ZodLiteral<"range">;
|
3105
|
-
gte: z.ZodString;
|
3106
|
-
lte: z.ZodString;
|
3107
|
-
}, {
|
3108
3438
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
3109
3439
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
3110
|
-
}
|
3440
|
+
}, "strip", z.ZodTypeAny, {
|
3111
3441
|
type: "range";
|
3112
3442
|
gte: string;
|
3113
3443
|
lte: string;
|
@@ -3115,8 +3445,17 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3115
3445
|
type: "range";
|
3116
3446
|
gte: string;
|
3117
3447
|
lte: string;
|
3448
|
+
}>, z.ZodObject<{
|
3449
|
+
type: z.ZodLiteral<"timePeriod">;
|
3450
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
3451
|
+
}, "strip", z.ZodTypeAny, {
|
3452
|
+
type: "timePeriod";
|
3453
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3454
|
+
}, {
|
3455
|
+
type: "timePeriod";
|
3456
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3118
3457
|
}>]>>>;
|
3119
|
-
'
|
3458
|
+
'legalStatuses.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
3120
3459
|
type: z.ZodLiteral<"exact">;
|
3121
3460
|
term: z.ZodString;
|
3122
3461
|
}, {
|
@@ -3127,14 +3466,11 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3127
3466
|
}, {
|
3128
3467
|
type: "exact";
|
3129
3468
|
term: string;
|
3130
|
-
}>, z.ZodObject<
|
3469
|
+
}>, z.ZodObject<{
|
3131
3470
|
type: z.ZodLiteral<"range">;
|
3132
|
-
gte: z.ZodString;
|
3133
|
-
lte: z.ZodString;
|
3134
|
-
}, {
|
3135
3471
|
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
3136
3472
|
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
3137
|
-
}
|
3473
|
+
}, "strip", z.ZodTypeAny, {
|
3138
3474
|
type: "range";
|
3139
3475
|
gte: string;
|
3140
3476
|
lte: string;
|
@@ -3142,8 +3478,17 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3142
3478
|
type: "range";
|
3143
3479
|
gte: string;
|
3144
3480
|
lte: string;
|
3481
|
+
}>, z.ZodObject<{
|
3482
|
+
type: z.ZodLiteral<"timePeriod">;
|
3483
|
+
term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
3484
|
+
}, "strip", z.ZodTypeAny, {
|
3485
|
+
type: "timePeriod";
|
3486
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3487
|
+
}, {
|
3488
|
+
type: "timePeriod";
|
3489
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3145
3490
|
}>]>>>;
|
3146
|
-
'
|
3491
|
+
'legalStatuses.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
3147
3492
|
type: z.ZodLiteral<"within">;
|
3148
3493
|
location: z.ZodString;
|
3149
3494
|
}, "strip", z.ZodTypeAny, {
|
@@ -3162,7 +3507,7 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3162
3507
|
type: "exact";
|
3163
3508
|
term: string;
|
3164
3509
|
}>]>>>;
|
3165
|
-
'
|
3510
|
+
'legalStatuses.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
3166
3511
|
type: z.ZodLiteral<"exact">;
|
3167
3512
|
term: z.ZodString;
|
3168
3513
|
}, "strip", z.ZodTypeAny, {
|
@@ -3175,140 +3520,149 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3175
3520
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
3176
3521
|
type: z.ZodLiteral<"within">;
|
3177
3522
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
3178
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
3523
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
3179
3524
|
}, "strip", z.ZodTypeAny, {
|
3180
|
-
$userField: "id" | "name" | "role" | "
|
3525
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3181
3526
|
}, {
|
3182
|
-
$userField: "id" | "name" | "role" | "
|
3527
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3183
3528
|
}>]>;
|
3184
3529
|
}, "strip", z.ZodTypeAny, {
|
3185
3530
|
type: "within";
|
3186
3531
|
location: string | {
|
3187
|
-
$userField: "id" | "name" | "role" | "
|
3532
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3188
3533
|
};
|
3189
3534
|
}, {
|
3190
3535
|
type: "within";
|
3191
3536
|
location: string | {
|
3192
|
-
$userField: "id" | "name" | "role" | "
|
3537
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3193
3538
|
};
|
3194
3539
|
}>, z.ZodObject<{
|
3195
3540
|
type: z.ZodLiteral<"exact">;
|
3196
3541
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
3197
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
3542
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
3198
3543
|
}, "strip", z.ZodTypeAny, {
|
3199
|
-
$userField: "id" | "name" | "role" | "
|
3544
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3200
3545
|
}, {
|
3201
|
-
$userField: "id" | "name" | "role" | "
|
3546
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3202
3547
|
}>]>;
|
3203
3548
|
}, "strip", z.ZodTypeAny, {
|
3204
3549
|
type: "exact";
|
3205
3550
|
term: string | {
|
3206
|
-
$userField: "id" | "name" | "role" | "
|
3551
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3207
3552
|
};
|
3208
3553
|
}, {
|
3209
3554
|
type: "exact";
|
3210
3555
|
term: string | {
|
3211
|
-
$userField: "id" | "name" | "role" | "
|
3556
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3212
3557
|
};
|
3213
3558
|
}>]>>>;
|
3214
3559
|
updatedAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
3215
3560
|
type: z.ZodLiteral<"within">;
|
3216
3561
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
3217
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
3562
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
3218
3563
|
}, "strip", z.ZodTypeAny, {
|
3219
|
-
$userField: "id" | "name" | "role" | "
|
3564
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3220
3565
|
}, {
|
3221
|
-
$userField: "id" | "name" | "role" | "
|
3566
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3222
3567
|
}>]>;
|
3223
3568
|
}, "strip", z.ZodTypeAny, {
|
3224
3569
|
type: "within";
|
3225
3570
|
location: string | {
|
3226
|
-
$userField: "id" | "name" | "role" | "
|
3571
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3227
3572
|
};
|
3228
3573
|
}, {
|
3229
3574
|
type: "within";
|
3230
3575
|
location: string | {
|
3231
|
-
$userField: "id" | "name" | "role" | "
|
3576
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3232
3577
|
};
|
3233
3578
|
}>, z.ZodObject<{
|
3234
3579
|
type: z.ZodLiteral<"exact">;
|
3235
3580
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
3236
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
3581
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
3237
3582
|
}, "strip", z.ZodTypeAny, {
|
3238
|
-
$userField: "id" | "name" | "role" | "
|
3583
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3239
3584
|
}, {
|
3240
|
-
$userField: "id" | "name" | "role" | "
|
3585
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3241
3586
|
}>]>;
|
3242
3587
|
}, "strip", z.ZodTypeAny, {
|
3243
3588
|
type: "exact";
|
3244
3589
|
term: string | {
|
3245
|
-
$userField: "id" | "name" | "role" | "
|
3590
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3246
3591
|
};
|
3247
3592
|
}, {
|
3248
3593
|
type: "exact";
|
3249
3594
|
term: string | {
|
3250
|
-
$userField: "id" | "name" | "role" | "
|
3595
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3251
3596
|
};
|
3252
3597
|
}>]>>>;
|
3253
3598
|
assignedTo: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
3254
3599
|
type: z.ZodLiteral<"exact">;
|
3255
3600
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
3256
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
3601
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
3257
3602
|
}, "strip", z.ZodTypeAny, {
|
3258
|
-
$userField: "id" | "name" | "role" | "
|
3603
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3259
3604
|
}, {
|
3260
|
-
$userField: "id" | "name" | "role" | "
|
3605
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3261
3606
|
}>]>;
|
3262
3607
|
}, "strip", z.ZodTypeAny, {
|
3263
3608
|
type: "exact";
|
3264
3609
|
term: string | {
|
3265
|
-
$userField: "id" | "name" | "role" | "
|
3610
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3266
3611
|
};
|
3267
3612
|
}, {
|
3268
3613
|
type: "exact";
|
3269
3614
|
term: string | {
|
3270
|
-
$userField: "id" | "name" | "role" | "
|
3615
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3271
3616
|
};
|
3272
3617
|
}>>>;
|
3273
3618
|
createdBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
3274
3619
|
type: z.ZodLiteral<"exact">;
|
3275
3620
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
3276
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
3621
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
3277
3622
|
}, "strip", z.ZodTypeAny, {
|
3278
|
-
$userField: "id" | "name" | "role" | "
|
3623
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3279
3624
|
}, {
|
3280
|
-
$userField: "id" | "name" | "role" | "
|
3625
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3281
3626
|
}>]>;
|
3282
3627
|
}, "strip", z.ZodTypeAny, {
|
3283
3628
|
type: "exact";
|
3284
3629
|
term: string | {
|
3285
|
-
$userField: "id" | "name" | "role" | "
|
3630
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3286
3631
|
};
|
3287
3632
|
}, {
|
3288
3633
|
type: "exact";
|
3289
3634
|
term: string | {
|
3290
|
-
$userField: "id" | "name" | "role" | "
|
3635
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3291
3636
|
};
|
3292
3637
|
}>>>;
|
3293
|
-
createdByUserType: z.ZodOptional<z.
|
3638
|
+
createdByUserType: z.ZodOptional<z.ZodObject<{
|
3639
|
+
type: z.ZodLiteral<"exact">;
|
3640
|
+
term: z.ZodEnum<["user", "system"]>;
|
3641
|
+
}, "strip", z.ZodTypeAny, {
|
3642
|
+
type: "exact";
|
3643
|
+
term: "system" | "user";
|
3644
|
+
}, {
|
3645
|
+
type: "exact";
|
3646
|
+
term: "system" | "user";
|
3647
|
+
}>>;
|
3294
3648
|
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
3295
3649
|
type: z.ZodLiteral<"exact">;
|
3296
3650
|
term: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
3297
|
-
$userField: z.ZodEnum<["id", "name", "role", "
|
3651
|
+
$userField: z.ZodEnum<["id", "name", "role", "signature", "avatar", "primaryOfficeId"]>;
|
3298
3652
|
}, "strip", z.ZodTypeAny, {
|
3299
|
-
$userField: "id" | "name" | "role" | "
|
3653
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3300
3654
|
}, {
|
3301
|
-
$userField: "id" | "name" | "role" | "
|
3655
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3302
3656
|
}>]>;
|
3303
3657
|
}, "strip", z.ZodTypeAny, {
|
3304
3658
|
type: "exact";
|
3305
3659
|
term: string | {
|
3306
|
-
$userField: "id" | "name" | "role" | "
|
3660
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3307
3661
|
};
|
3308
3662
|
}, {
|
3309
3663
|
type: "exact";
|
3310
3664
|
term: string | {
|
3311
|
-
$userField: "id" | "name" | "role" | "
|
3665
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3312
3666
|
};
|
3313
3667
|
}>>>;
|
3314
3668
|
trackingId: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
@@ -3345,13 +3699,16 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3345
3699
|
}, "strip", z.ZodTypeAny, {
|
3346
3700
|
status?: {
|
3347
3701
|
type: "exact";
|
3348
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3702
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3349
3703
|
} | {
|
3350
3704
|
type: "anyOf";
|
3351
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3705
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3352
3706
|
} | undefined;
|
3353
3707
|
data?: any;
|
3354
|
-
createdByUserType?:
|
3708
|
+
createdByUserType?: {
|
3709
|
+
type: "exact";
|
3710
|
+
term: "system" | "user";
|
3711
|
+
} | undefined;
|
3355
3712
|
createdAt?: {
|
3356
3713
|
type: "range";
|
3357
3714
|
gte: string;
|
@@ -3359,28 +3716,31 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3359
3716
|
} | {
|
3360
3717
|
type: "exact";
|
3361
3718
|
term: string;
|
3719
|
+
} | {
|
3720
|
+
type: "timePeriod";
|
3721
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3362
3722
|
} | undefined;
|
3363
3723
|
createdBy?: {
|
3364
3724
|
type: "exact";
|
3365
3725
|
term: string | {
|
3366
|
-
$userField: "id" | "name" | "role" | "
|
3726
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3367
3727
|
};
|
3368
3728
|
} | undefined;
|
3369
3729
|
createdAtLocation?: {
|
3370
3730
|
type: "exact";
|
3371
3731
|
term: string | {
|
3372
|
-
$userField: "id" | "name" | "role" | "
|
3732
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3373
3733
|
};
|
3374
3734
|
} | {
|
3375
3735
|
type: "within";
|
3376
3736
|
location: string | {
|
3377
|
-
$userField: "id" | "name" | "role" | "
|
3737
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3378
3738
|
};
|
3379
3739
|
} | undefined;
|
3380
3740
|
assignedTo?: {
|
3381
3741
|
type: "exact";
|
3382
3742
|
term: string | {
|
3383
|
-
$userField: "id" | "name" | "role" | "
|
3743
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3384
3744
|
};
|
3385
3745
|
} | undefined;
|
3386
3746
|
updatedAt?: {
|
@@ -3390,6 +3750,9 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3390
3750
|
} | {
|
3391
3751
|
type: "exact";
|
3392
3752
|
term: string;
|
3753
|
+
} | {
|
3754
|
+
type: "timePeriod";
|
3755
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3393
3756
|
} | undefined;
|
3394
3757
|
trackingId?: {
|
3395
3758
|
type: "exact";
|
@@ -3398,18 +3761,18 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3398
3761
|
updatedAtLocation?: {
|
3399
3762
|
type: "exact";
|
3400
3763
|
term: string | {
|
3401
|
-
$userField: "id" | "name" | "role" | "
|
3764
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3402
3765
|
};
|
3403
3766
|
} | {
|
3404
3767
|
type: "within";
|
3405
3768
|
location: string | {
|
3406
|
-
$userField: "id" | "name" | "role" | "
|
3769
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3407
3770
|
};
|
3408
3771
|
} | undefined;
|
3409
3772
|
updatedBy?: {
|
3410
3773
|
type: "exact";
|
3411
3774
|
term: string | {
|
3412
|
-
$userField: "id" | "name" | "role" | "
|
3775
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3413
3776
|
};
|
3414
3777
|
} | undefined;
|
3415
3778
|
flags?: {
|
@@ -3417,35 +3780,41 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3417
3780
|
noneOf?: string[] | undefined;
|
3418
3781
|
} | undefined;
|
3419
3782
|
eventType?: string | undefined;
|
3420
|
-
'
|
3421
|
-
type: "range";
|
3422
|
-
gte: string;
|
3423
|
-
lte: string;
|
3424
|
-
} | {
|
3425
|
-
type: "exact";
|
3426
|
-
term: string;
|
3427
|
-
} | undefined;
|
3428
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3783
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
3429
3784
|
type: "exact";
|
3430
3785
|
term: string;
|
3431
3786
|
} | {
|
3432
3787
|
type: "within";
|
3433
3788
|
location: string;
|
3434
3789
|
} | undefined;
|
3435
|
-
'
|
3790
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
3791
|
+
type: "exact";
|
3792
|
+
term: string;
|
3793
|
+
} | undefined;
|
3794
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
3795
|
+
type: "range";
|
3796
|
+
gte: string;
|
3797
|
+
lte: string;
|
3798
|
+
} | {
|
3436
3799
|
type: "exact";
|
3437
3800
|
term: string;
|
3801
|
+
} | {
|
3802
|
+
type: "timePeriod";
|
3803
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3438
3804
|
} | undefined;
|
3439
3805
|
}, {
|
3440
3806
|
status?: {
|
3441
3807
|
type: "exact";
|
3442
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3808
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3443
3809
|
} | {
|
3444
3810
|
type: "anyOf";
|
3445
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3811
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3446
3812
|
} | undefined;
|
3447
3813
|
data?: any;
|
3448
|
-
createdByUserType?:
|
3814
|
+
createdByUserType?: {
|
3815
|
+
type: "exact";
|
3816
|
+
term: "system" | "user";
|
3817
|
+
} | undefined;
|
3449
3818
|
createdAt?: {
|
3450
3819
|
type: "range";
|
3451
3820
|
gte: string;
|
@@ -3453,28 +3822,31 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3453
3822
|
} | {
|
3454
3823
|
type: "exact";
|
3455
3824
|
term: string;
|
3825
|
+
} | {
|
3826
|
+
type: "timePeriod";
|
3827
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3456
3828
|
} | undefined;
|
3457
3829
|
createdBy?: {
|
3458
3830
|
type: "exact";
|
3459
3831
|
term: string | {
|
3460
|
-
$userField: "id" | "name" | "role" | "
|
3832
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3461
3833
|
};
|
3462
3834
|
} | undefined;
|
3463
3835
|
createdAtLocation?: {
|
3464
3836
|
type: "exact";
|
3465
3837
|
term: string | {
|
3466
|
-
$userField: "id" | "name" | "role" | "
|
3838
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3467
3839
|
};
|
3468
3840
|
} | {
|
3469
3841
|
type: "within";
|
3470
3842
|
location: string | {
|
3471
|
-
$userField: "id" | "name" | "role" | "
|
3843
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3472
3844
|
};
|
3473
3845
|
} | undefined;
|
3474
3846
|
assignedTo?: {
|
3475
3847
|
type: "exact";
|
3476
3848
|
term: string | {
|
3477
|
-
$userField: "id" | "name" | "role" | "
|
3849
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3478
3850
|
};
|
3479
3851
|
} | undefined;
|
3480
3852
|
updatedAt?: {
|
@@ -3484,6 +3856,9 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3484
3856
|
} | {
|
3485
3857
|
type: "exact";
|
3486
3858
|
term: string;
|
3859
|
+
} | {
|
3860
|
+
type: "timePeriod";
|
3861
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3487
3862
|
} | undefined;
|
3488
3863
|
trackingId?: {
|
3489
3864
|
type: "exact";
|
@@ -3492,18 +3867,18 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3492
3867
|
updatedAtLocation?: {
|
3493
3868
|
type: "exact";
|
3494
3869
|
term: string | {
|
3495
|
-
$userField: "id" | "name" | "role" | "
|
3870
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3496
3871
|
};
|
3497
3872
|
} | {
|
3498
3873
|
type: "within";
|
3499
3874
|
location: string | {
|
3500
|
-
$userField: "id" | "name" | "role" | "
|
3875
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3501
3876
|
};
|
3502
3877
|
} | undefined;
|
3503
3878
|
updatedBy?: {
|
3504
3879
|
type: "exact";
|
3505
3880
|
term: string | {
|
3506
|
-
$userField: "id" | "name" | "role" | "
|
3881
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3507
3882
|
};
|
3508
3883
|
} | undefined;
|
3509
3884
|
flags?: {
|
@@ -3511,38 +3886,44 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3511
3886
|
noneOf?: string[] | undefined;
|
3512
3887
|
} | undefined;
|
3513
3888
|
eventType?: string | undefined;
|
3514
|
-
'
|
3515
|
-
type: "range";
|
3516
|
-
gte: string;
|
3517
|
-
lte: string;
|
3518
|
-
} | {
|
3519
|
-
type: "exact";
|
3520
|
-
term: string;
|
3521
|
-
} | undefined;
|
3522
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3889
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
3523
3890
|
type: "exact";
|
3524
3891
|
term: string;
|
3525
3892
|
} | {
|
3526
3893
|
type: "within";
|
3527
3894
|
location: string;
|
3528
3895
|
} | undefined;
|
3529
|
-
'
|
3896
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
3530
3897
|
type: "exact";
|
3531
3898
|
term: string;
|
3532
3899
|
} | undefined;
|
3900
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
3901
|
+
type: "range";
|
3902
|
+
gte: string;
|
3903
|
+
lte: string;
|
3904
|
+
} | {
|
3905
|
+
type: "exact";
|
3906
|
+
term: string;
|
3907
|
+
} | {
|
3908
|
+
type: "timePeriod";
|
3909
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3910
|
+
} | undefined;
|
3533
3911
|
}>, "many">;
|
3534
3912
|
}, "strip", z.ZodTypeAny, {
|
3535
3913
|
type: "or";
|
3536
3914
|
clauses: {
|
3537
3915
|
status?: {
|
3538
3916
|
type: "exact";
|
3539
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3917
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3540
3918
|
} | {
|
3541
3919
|
type: "anyOf";
|
3542
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
3920
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3543
3921
|
} | undefined;
|
3544
3922
|
data?: any;
|
3545
|
-
createdByUserType?:
|
3923
|
+
createdByUserType?: {
|
3924
|
+
type: "exact";
|
3925
|
+
term: "system" | "user";
|
3926
|
+
} | undefined;
|
3546
3927
|
createdAt?: {
|
3547
3928
|
type: "range";
|
3548
3929
|
gte: string;
|
@@ -3550,28 +3931,31 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3550
3931
|
} | {
|
3551
3932
|
type: "exact";
|
3552
3933
|
term: string;
|
3934
|
+
} | {
|
3935
|
+
type: "timePeriod";
|
3936
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3553
3937
|
} | undefined;
|
3554
3938
|
createdBy?: {
|
3555
3939
|
type: "exact";
|
3556
3940
|
term: string | {
|
3557
|
-
$userField: "id" | "name" | "role" | "
|
3941
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3558
3942
|
};
|
3559
3943
|
} | undefined;
|
3560
3944
|
createdAtLocation?: {
|
3561
3945
|
type: "exact";
|
3562
3946
|
term: string | {
|
3563
|
-
$userField: "id" | "name" | "role" | "
|
3947
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3564
3948
|
};
|
3565
3949
|
} | {
|
3566
3950
|
type: "within";
|
3567
3951
|
location: string | {
|
3568
|
-
$userField: "id" | "name" | "role" | "
|
3952
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3569
3953
|
};
|
3570
3954
|
} | undefined;
|
3571
3955
|
assignedTo?: {
|
3572
3956
|
type: "exact";
|
3573
3957
|
term: string | {
|
3574
|
-
$userField: "id" | "name" | "role" | "
|
3958
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3575
3959
|
};
|
3576
3960
|
} | undefined;
|
3577
3961
|
updatedAt?: {
|
@@ -3581,6 +3965,9 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3581
3965
|
} | {
|
3582
3966
|
type: "exact";
|
3583
3967
|
term: string;
|
3968
|
+
} | {
|
3969
|
+
type: "timePeriod";
|
3970
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3584
3971
|
} | undefined;
|
3585
3972
|
trackingId?: {
|
3586
3973
|
type: "exact";
|
@@ -3589,18 +3976,18 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3589
3976
|
updatedAtLocation?: {
|
3590
3977
|
type: "exact";
|
3591
3978
|
term: string | {
|
3592
|
-
$userField: "id" | "name" | "role" | "
|
3979
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3593
3980
|
};
|
3594
3981
|
} | {
|
3595
3982
|
type: "within";
|
3596
3983
|
location: string | {
|
3597
|
-
$userField: "id" | "name" | "role" | "
|
3984
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3598
3985
|
};
|
3599
3986
|
} | undefined;
|
3600
3987
|
updatedBy?: {
|
3601
3988
|
type: "exact";
|
3602
3989
|
term: string | {
|
3603
|
-
$userField: "id" | "name" | "role" | "
|
3990
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3604
3991
|
};
|
3605
3992
|
} | undefined;
|
3606
3993
|
flags?: {
|
@@ -3608,24 +3995,27 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3608
3995
|
noneOf?: string[] | undefined;
|
3609
3996
|
} | undefined;
|
3610
3997
|
eventType?: string | undefined;
|
3611
|
-
'
|
3612
|
-
type: "range";
|
3613
|
-
gte: string;
|
3614
|
-
lte: string;
|
3615
|
-
} | {
|
3616
|
-
type: "exact";
|
3617
|
-
term: string;
|
3618
|
-
} | undefined;
|
3619
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3998
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
3620
3999
|
type: "exact";
|
3621
4000
|
term: string;
|
3622
4001
|
} | {
|
3623
4002
|
type: "within";
|
3624
4003
|
location: string;
|
3625
4004
|
} | undefined;
|
3626
|
-
'
|
4005
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
4006
|
+
type: "exact";
|
4007
|
+
term: string;
|
4008
|
+
} | undefined;
|
4009
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
4010
|
+
type: "range";
|
4011
|
+
gte: string;
|
4012
|
+
lte: string;
|
4013
|
+
} | {
|
3627
4014
|
type: "exact";
|
3628
4015
|
term: string;
|
4016
|
+
} | {
|
4017
|
+
type: "timePeriod";
|
4018
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3629
4019
|
} | undefined;
|
3630
4020
|
}[];
|
3631
4021
|
}, {
|
@@ -3633,13 +4023,16 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3633
4023
|
clauses: {
|
3634
4024
|
status?: {
|
3635
4025
|
type: "exact";
|
3636
|
-
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
4026
|
+
term: "ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
|
3637
4027
|
} | {
|
3638
4028
|
type: "anyOf";
|
3639
|
-
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "
|
4029
|
+
terms: ("ARCHIVED" | "CERTIFIED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
|
3640
4030
|
} | undefined;
|
3641
4031
|
data?: any;
|
3642
|
-
createdByUserType?:
|
4032
|
+
createdByUserType?: {
|
4033
|
+
type: "exact";
|
4034
|
+
term: "system" | "user";
|
4035
|
+
} | undefined;
|
3643
4036
|
createdAt?: {
|
3644
4037
|
type: "range";
|
3645
4038
|
gte: string;
|
@@ -3647,28 +4040,31 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3647
4040
|
} | {
|
3648
4041
|
type: "exact";
|
3649
4042
|
term: string;
|
4043
|
+
} | {
|
4044
|
+
type: "timePeriod";
|
4045
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3650
4046
|
} | undefined;
|
3651
4047
|
createdBy?: {
|
3652
4048
|
type: "exact";
|
3653
4049
|
term: string | {
|
3654
|
-
$userField: "id" | "name" | "role" | "
|
4050
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3655
4051
|
};
|
3656
4052
|
} | undefined;
|
3657
4053
|
createdAtLocation?: {
|
3658
4054
|
type: "exact";
|
3659
4055
|
term: string | {
|
3660
|
-
$userField: "id" | "name" | "role" | "
|
4056
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3661
4057
|
};
|
3662
4058
|
} | {
|
3663
4059
|
type: "within";
|
3664
4060
|
location: string | {
|
3665
|
-
$userField: "id" | "name" | "role" | "
|
4061
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3666
4062
|
};
|
3667
4063
|
} | undefined;
|
3668
4064
|
assignedTo?: {
|
3669
4065
|
type: "exact";
|
3670
4066
|
term: string | {
|
3671
|
-
$userField: "id" | "name" | "role" | "
|
4067
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3672
4068
|
};
|
3673
4069
|
} | undefined;
|
3674
4070
|
updatedAt?: {
|
@@ -3678,6 +4074,9 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3678
4074
|
} | {
|
3679
4075
|
type: "exact";
|
3680
4076
|
term: string;
|
4077
|
+
} | {
|
4078
|
+
type: "timePeriod";
|
4079
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3681
4080
|
} | undefined;
|
3682
4081
|
trackingId?: {
|
3683
4082
|
type: "exact";
|
@@ -3686,18 +4085,18 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3686
4085
|
updatedAtLocation?: {
|
3687
4086
|
type: "exact";
|
3688
4087
|
term: string | {
|
3689
|
-
$userField: "id" | "name" | "role" | "
|
4088
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3690
4089
|
};
|
3691
4090
|
} | {
|
3692
4091
|
type: "within";
|
3693
4092
|
location: string | {
|
3694
|
-
$userField: "id" | "name" | "role" | "
|
4093
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3695
4094
|
};
|
3696
4095
|
} | undefined;
|
3697
4096
|
updatedBy?: {
|
3698
4097
|
type: "exact";
|
3699
4098
|
term: string | {
|
3700
|
-
$userField: "id" | "name" | "role" | "
|
4099
|
+
$userField: "signature" | "id" | "name" | "role" | "avatar" | "primaryOfficeId";
|
3701
4100
|
};
|
3702
4101
|
} | undefined;
|
3703
4102
|
flags?: {
|
@@ -3705,25 +4104,28 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3705
4104
|
noneOf?: string[] | undefined;
|
3706
4105
|
} | undefined;
|
3707
4106
|
eventType?: string | undefined;
|
3708
|
-
'
|
3709
|
-
type: "range";
|
3710
|
-
gte: string;
|
3711
|
-
lte: string;
|
3712
|
-
} | {
|
3713
|
-
type: "exact";
|
3714
|
-
term: string;
|
3715
|
-
} | undefined;
|
3716
|
-
'legalStatus.REGISTERED.createdAtLocation'?: {
|
4107
|
+
'legalStatuses.REGISTERED.createdAtLocation'?: {
|
3717
4108
|
type: "exact";
|
3718
4109
|
term: string;
|
3719
4110
|
} | {
|
3720
4111
|
type: "within";
|
3721
4112
|
location: string;
|
3722
4113
|
} | undefined;
|
3723
|
-
'
|
4114
|
+
'legalStatuses.REGISTERED.registrationNumber'?: {
|
3724
4115
|
type: "exact";
|
3725
4116
|
term: string;
|
3726
4117
|
} | undefined;
|
4118
|
+
'legalStatuses.REGISTERED.createdAt'?: {
|
4119
|
+
type: "range";
|
4120
|
+
gte: string;
|
4121
|
+
lte: string;
|
4122
|
+
} | {
|
4123
|
+
type: "exact";
|
4124
|
+
term: string;
|
4125
|
+
} | {
|
4126
|
+
type: "timePeriod";
|
4127
|
+
term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
4128
|
+
} | undefined;
|
3727
4129
|
}[];
|
3728
4130
|
}>]>;
|
3729
4131
|
export type CountryConfigQueryInputType = z.infer<typeof CountryConfigQueryInputType>;
|