@lokalise/content-type-app-engine-contracts 5.13.0 → 5.14.0
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/schemas/connector/connectorApiSchemas.d.ts +70 -0
- package/dist/schemas/connector/connectorSchemas.d.ts +35 -0
- package/dist/schemas/content/contentApiSchemas.d.ts +16 -14
- package/dist/schemas/content/contentSchemas.d.ts +25 -21
- package/dist/schemas/content/contentSchemas.js +3 -1
- package/dist/schemas/content/contentSchemas.js.map +1 -1
- package/dist/schemas/filter/filterApiSchemas.d.ts +3 -0
- package/dist/schemas/filter/filterSchemas.d.ts +4 -0
- package/dist/schemas/filter/filterSchemas.js +2 -9
- package/dist/schemas/filter/filterSchemas.js.map +1 -1
- package/dist/schemas/integration/integrationApiSchemas.d.ts +70 -0
- package/dist/schemas/integration/integrationSchemas.d.ts +35 -0
- package/dist/schemas/link/linkApiSchemas.d.ts +70 -0
- package/dist/schemas/link/linkSchemas.d.ts +35 -0
- package/package.json +2 -2
|
@@ -98,9 +98,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
98
98
|
query: z.ZodString;
|
|
99
99
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
100
100
|
type: z.ZodEnum<{
|
|
101
|
+
endsWith: "endsWith";
|
|
102
|
+
startsWith: "startsWith";
|
|
101
103
|
equals: "equals";
|
|
102
104
|
notEquals: "notEquals";
|
|
103
105
|
contains: "contains";
|
|
106
|
+
notContains: "notContains";
|
|
107
|
+
containsAll: "containsAll";
|
|
108
|
+
notContainsAll: "notContainsAll";
|
|
104
109
|
}>;
|
|
105
110
|
name: z.ZodString;
|
|
106
111
|
}, z.core.$strip>>>;
|
|
@@ -111,9 +116,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
111
116
|
query: z.ZodString;
|
|
112
117
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
113
118
|
type: z.ZodEnum<{
|
|
119
|
+
endsWith: "endsWith";
|
|
120
|
+
startsWith: "startsWith";
|
|
114
121
|
equals: "equals";
|
|
115
122
|
notEquals: "notEquals";
|
|
116
123
|
contains: "contains";
|
|
124
|
+
notContains: "notContains";
|
|
125
|
+
containsAll: "containsAll";
|
|
126
|
+
notContainsAll: "notContainsAll";
|
|
117
127
|
}>;
|
|
118
128
|
name: z.ZodString;
|
|
119
129
|
}, z.core.$strip>>>;
|
|
@@ -129,9 +139,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
129
139
|
query: z.ZodString;
|
|
130
140
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
131
141
|
type: z.ZodEnum<{
|
|
142
|
+
endsWith: "endsWith";
|
|
143
|
+
startsWith: "startsWith";
|
|
132
144
|
equals: "equals";
|
|
133
145
|
notEquals: "notEquals";
|
|
134
146
|
contains: "contains";
|
|
147
|
+
notContains: "notContains";
|
|
148
|
+
containsAll: "containsAll";
|
|
149
|
+
notContainsAll: "notContainsAll";
|
|
135
150
|
}>;
|
|
136
151
|
name: z.ZodString;
|
|
137
152
|
}, z.core.$strip>>>;
|
|
@@ -142,9 +157,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
142
157
|
query: z.ZodString;
|
|
143
158
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
144
159
|
type: z.ZodEnum<{
|
|
160
|
+
endsWith: "endsWith";
|
|
161
|
+
startsWith: "startsWith";
|
|
145
162
|
equals: "equals";
|
|
146
163
|
notEquals: "notEquals";
|
|
147
164
|
contains: "contains";
|
|
165
|
+
notContains: "notContains";
|
|
166
|
+
containsAll: "containsAll";
|
|
167
|
+
notContainsAll: "notContainsAll";
|
|
148
168
|
}>;
|
|
149
169
|
name: z.ZodString;
|
|
150
170
|
}, z.core.$strip>>>;
|
|
@@ -158,9 +178,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
158
178
|
query: z.ZodString;
|
|
159
179
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
160
180
|
type: z.ZodEnum<{
|
|
181
|
+
endsWith: "endsWith";
|
|
182
|
+
startsWith: "startsWith";
|
|
161
183
|
equals: "equals";
|
|
162
184
|
notEquals: "notEquals";
|
|
163
185
|
contains: "contains";
|
|
186
|
+
notContains: "notContains";
|
|
187
|
+
containsAll: "containsAll";
|
|
188
|
+
notContainsAll: "notContainsAll";
|
|
164
189
|
}>;
|
|
165
190
|
name: z.ZodString;
|
|
166
191
|
}, z.core.$strip>>>;
|
|
@@ -176,9 +201,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
176
201
|
query: z.ZodString;
|
|
177
202
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
178
203
|
type: z.ZodEnum<{
|
|
204
|
+
endsWith: "endsWith";
|
|
205
|
+
startsWith: "startsWith";
|
|
179
206
|
equals: "equals";
|
|
180
207
|
notEquals: "notEquals";
|
|
181
208
|
contains: "contains";
|
|
209
|
+
notContains: "notContains";
|
|
210
|
+
containsAll: "containsAll";
|
|
211
|
+
notContainsAll: "notContainsAll";
|
|
182
212
|
}>;
|
|
183
213
|
name: z.ZodString;
|
|
184
214
|
}, z.core.$strip>>>;
|
|
@@ -191,9 +221,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
191
221
|
query: z.ZodString;
|
|
192
222
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
193
223
|
type: z.ZodEnum<{
|
|
224
|
+
endsWith: "endsWith";
|
|
225
|
+
startsWith: "startsWith";
|
|
194
226
|
equals: "equals";
|
|
195
227
|
notEquals: "notEquals";
|
|
196
228
|
contains: "contains";
|
|
229
|
+
notContains: "notContains";
|
|
230
|
+
containsAll: "containsAll";
|
|
231
|
+
notContainsAll: "notContainsAll";
|
|
197
232
|
}>;
|
|
198
233
|
name: z.ZodString;
|
|
199
234
|
}, z.core.$strip>>>;
|
|
@@ -272,9 +307,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
272
307
|
query: z.ZodString;
|
|
273
308
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
274
309
|
type: z.ZodEnum<{
|
|
310
|
+
endsWith: "endsWith";
|
|
311
|
+
startsWith: "startsWith";
|
|
275
312
|
equals: "equals";
|
|
276
313
|
notEquals: "notEquals";
|
|
277
314
|
contains: "contains";
|
|
315
|
+
notContains: "notContains";
|
|
316
|
+
containsAll: "containsAll";
|
|
317
|
+
notContainsAll: "notContainsAll";
|
|
278
318
|
}>;
|
|
279
319
|
name: z.ZodString;
|
|
280
320
|
}, z.core.$strip>>>;
|
|
@@ -285,9 +325,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
285
325
|
query: z.ZodString;
|
|
286
326
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
287
327
|
type: z.ZodEnum<{
|
|
328
|
+
endsWith: "endsWith";
|
|
329
|
+
startsWith: "startsWith";
|
|
288
330
|
equals: "equals";
|
|
289
331
|
notEquals: "notEquals";
|
|
290
332
|
contains: "contains";
|
|
333
|
+
notContains: "notContains";
|
|
334
|
+
containsAll: "containsAll";
|
|
335
|
+
notContainsAll: "notContainsAll";
|
|
291
336
|
}>;
|
|
292
337
|
name: z.ZodString;
|
|
293
338
|
}, z.core.$strip>>>;
|
|
@@ -303,9 +348,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
303
348
|
query: z.ZodString;
|
|
304
349
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
305
350
|
type: z.ZodEnum<{
|
|
351
|
+
endsWith: "endsWith";
|
|
352
|
+
startsWith: "startsWith";
|
|
306
353
|
equals: "equals";
|
|
307
354
|
notEquals: "notEquals";
|
|
308
355
|
contains: "contains";
|
|
356
|
+
notContains: "notContains";
|
|
357
|
+
containsAll: "containsAll";
|
|
358
|
+
notContainsAll: "notContainsAll";
|
|
309
359
|
}>;
|
|
310
360
|
name: z.ZodString;
|
|
311
361
|
}, z.core.$strip>>>;
|
|
@@ -316,9 +366,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
316
366
|
query: z.ZodString;
|
|
317
367
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
318
368
|
type: z.ZodEnum<{
|
|
369
|
+
endsWith: "endsWith";
|
|
370
|
+
startsWith: "startsWith";
|
|
319
371
|
equals: "equals";
|
|
320
372
|
notEquals: "notEquals";
|
|
321
373
|
contains: "contains";
|
|
374
|
+
notContains: "notContains";
|
|
375
|
+
containsAll: "containsAll";
|
|
376
|
+
notContainsAll: "notContainsAll";
|
|
322
377
|
}>;
|
|
323
378
|
name: z.ZodString;
|
|
324
379
|
}, z.core.$strip>>>;
|
|
@@ -332,9 +387,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
332
387
|
query: z.ZodString;
|
|
333
388
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
334
389
|
type: z.ZodEnum<{
|
|
390
|
+
endsWith: "endsWith";
|
|
391
|
+
startsWith: "startsWith";
|
|
335
392
|
equals: "equals";
|
|
336
393
|
notEquals: "notEquals";
|
|
337
394
|
contains: "contains";
|
|
395
|
+
notContains: "notContains";
|
|
396
|
+
containsAll: "containsAll";
|
|
397
|
+
notContainsAll: "notContainsAll";
|
|
338
398
|
}>;
|
|
339
399
|
name: z.ZodString;
|
|
340
400
|
}, z.core.$strip>>>;
|
|
@@ -350,9 +410,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
350
410
|
query: z.ZodString;
|
|
351
411
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
352
412
|
type: z.ZodEnum<{
|
|
413
|
+
endsWith: "endsWith";
|
|
414
|
+
startsWith: "startsWith";
|
|
353
415
|
equals: "equals";
|
|
354
416
|
notEquals: "notEquals";
|
|
355
417
|
contains: "contains";
|
|
418
|
+
notContains: "notContains";
|
|
419
|
+
containsAll: "containsAll";
|
|
420
|
+
notContainsAll: "notContainsAll";
|
|
356
421
|
}>;
|
|
357
422
|
name: z.ZodString;
|
|
358
423
|
}, z.core.$strip>>>;
|
|
@@ -365,9 +430,14 @@ export declare const getConnectorManifest: import("@lokalise/api-contracts").Get
|
|
|
365
430
|
query: z.ZodString;
|
|
366
431
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
367
432
|
type: z.ZodEnum<{
|
|
433
|
+
endsWith: "endsWith";
|
|
434
|
+
startsWith: "startsWith";
|
|
368
435
|
equals: "equals";
|
|
369
436
|
notEquals: "notEquals";
|
|
370
437
|
contains: "contains";
|
|
438
|
+
notContains: "notContains";
|
|
439
|
+
containsAll: "containsAll";
|
|
440
|
+
notContainsAll: "notContainsAll";
|
|
371
441
|
}>;
|
|
372
442
|
name: z.ZodString;
|
|
373
443
|
}, z.core.$strip>>>;
|
|
@@ -68,9 +68,14 @@ export declare const GET_CONNECTOR_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
68
68
|
query: z.ZodString;
|
|
69
69
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
70
70
|
type: z.ZodEnum<{
|
|
71
|
+
endsWith: "endsWith";
|
|
72
|
+
startsWith: "startsWith";
|
|
71
73
|
equals: "equals";
|
|
72
74
|
notEquals: "notEquals";
|
|
73
75
|
contains: "contains";
|
|
76
|
+
notContains: "notContains";
|
|
77
|
+
containsAll: "containsAll";
|
|
78
|
+
notContainsAll: "notContainsAll";
|
|
74
79
|
}>;
|
|
75
80
|
name: z.ZodString;
|
|
76
81
|
}, z.core.$strip>>>;
|
|
@@ -81,9 +86,14 @@ export declare const GET_CONNECTOR_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
81
86
|
query: z.ZodString;
|
|
82
87
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
83
88
|
type: z.ZodEnum<{
|
|
89
|
+
endsWith: "endsWith";
|
|
90
|
+
startsWith: "startsWith";
|
|
84
91
|
equals: "equals";
|
|
85
92
|
notEquals: "notEquals";
|
|
86
93
|
contains: "contains";
|
|
94
|
+
notContains: "notContains";
|
|
95
|
+
containsAll: "containsAll";
|
|
96
|
+
notContainsAll: "notContainsAll";
|
|
87
97
|
}>;
|
|
88
98
|
name: z.ZodString;
|
|
89
99
|
}, z.core.$strip>>>;
|
|
@@ -99,9 +109,14 @@ export declare const GET_CONNECTOR_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
99
109
|
query: z.ZodString;
|
|
100
110
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
101
111
|
type: z.ZodEnum<{
|
|
112
|
+
endsWith: "endsWith";
|
|
113
|
+
startsWith: "startsWith";
|
|
102
114
|
equals: "equals";
|
|
103
115
|
notEquals: "notEquals";
|
|
104
116
|
contains: "contains";
|
|
117
|
+
notContains: "notContains";
|
|
118
|
+
containsAll: "containsAll";
|
|
119
|
+
notContainsAll: "notContainsAll";
|
|
105
120
|
}>;
|
|
106
121
|
name: z.ZodString;
|
|
107
122
|
}, z.core.$strip>>>;
|
|
@@ -112,9 +127,14 @@ export declare const GET_CONNECTOR_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
112
127
|
query: z.ZodString;
|
|
113
128
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
114
129
|
type: z.ZodEnum<{
|
|
130
|
+
endsWith: "endsWith";
|
|
131
|
+
startsWith: "startsWith";
|
|
115
132
|
equals: "equals";
|
|
116
133
|
notEquals: "notEquals";
|
|
117
134
|
contains: "contains";
|
|
135
|
+
notContains: "notContains";
|
|
136
|
+
containsAll: "containsAll";
|
|
137
|
+
notContainsAll: "notContainsAll";
|
|
118
138
|
}>;
|
|
119
139
|
name: z.ZodString;
|
|
120
140
|
}, z.core.$strip>>>;
|
|
@@ -128,9 +148,14 @@ export declare const GET_CONNECTOR_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
128
148
|
query: z.ZodString;
|
|
129
149
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
130
150
|
type: z.ZodEnum<{
|
|
151
|
+
endsWith: "endsWith";
|
|
152
|
+
startsWith: "startsWith";
|
|
131
153
|
equals: "equals";
|
|
132
154
|
notEquals: "notEquals";
|
|
133
155
|
contains: "contains";
|
|
156
|
+
notContains: "notContains";
|
|
157
|
+
containsAll: "containsAll";
|
|
158
|
+
notContainsAll: "notContainsAll";
|
|
134
159
|
}>;
|
|
135
160
|
name: z.ZodString;
|
|
136
161
|
}, z.core.$strip>>>;
|
|
@@ -146,9 +171,14 @@ export declare const GET_CONNECTOR_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
146
171
|
query: z.ZodString;
|
|
147
172
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
148
173
|
type: z.ZodEnum<{
|
|
174
|
+
endsWith: "endsWith";
|
|
175
|
+
startsWith: "startsWith";
|
|
149
176
|
equals: "equals";
|
|
150
177
|
notEquals: "notEquals";
|
|
151
178
|
contains: "contains";
|
|
179
|
+
notContains: "notContains";
|
|
180
|
+
containsAll: "containsAll";
|
|
181
|
+
notContainsAll: "notContainsAll";
|
|
152
182
|
}>;
|
|
153
183
|
name: z.ZodString;
|
|
154
184
|
}, z.core.$strip>>>;
|
|
@@ -161,9 +191,14 @@ export declare const GET_CONNECTOR_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
161
191
|
query: z.ZodString;
|
|
162
192
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
163
193
|
type: z.ZodEnum<{
|
|
194
|
+
endsWith: "endsWith";
|
|
195
|
+
startsWith: "startsWith";
|
|
164
196
|
equals: "equals";
|
|
165
197
|
notEquals: "notEquals";
|
|
166
198
|
contains: "contains";
|
|
199
|
+
notContains: "notContains";
|
|
200
|
+
containsAll: "containsAll";
|
|
201
|
+
notContainsAll: "notContainsAll";
|
|
167
202
|
}>;
|
|
168
203
|
name: z.ZodString;
|
|
169
204
|
}, z.core.$strip>>>;
|
|
@@ -16,13 +16,14 @@ export declare const postGetContentContract: import("@lokalise/api-contracts").P
|
|
|
16
16
|
}>;
|
|
17
17
|
object: z.ZodString;
|
|
18
18
|
option: z.ZodEnum<{
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
19
|
+
endsWith: "endsWith";
|
|
20
|
+
startsWith: "startsWith";
|
|
21
|
+
equals: "equals";
|
|
22
|
+
notEquals: "notEquals";
|
|
23
|
+
contains: "contains";
|
|
24
|
+
notContains: "notContains";
|
|
25
|
+
containsAll: "containsAll";
|
|
26
|
+
notContainsAll: "notContainsAll";
|
|
26
27
|
}>;
|
|
27
28
|
values: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
28
29
|
}, z.core.$strip>>>;
|
|
@@ -105,13 +106,14 @@ export declare const postGetContentContractV2: import("@lokalise/api-contracts")
|
|
|
105
106
|
}>;
|
|
106
107
|
object: z.ZodString;
|
|
107
108
|
option: z.ZodEnum<{
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
109
|
+
endsWith: "endsWith";
|
|
110
|
+
startsWith: "startsWith";
|
|
111
|
+
equals: "equals";
|
|
112
|
+
notEquals: "notEquals";
|
|
113
|
+
contains: "contains";
|
|
114
|
+
notContains: "notContains";
|
|
115
|
+
containsAll: "containsAll";
|
|
116
|
+
notContainsAll: "notContainsAll";
|
|
115
117
|
}>;
|
|
116
118
|
values: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
117
119
|
}, z.core.$strip>>>;
|
|
@@ -30,15 +30,17 @@ export declare const PAGINATION_REQUEST_SCHEMA: z.ZodObject<{
|
|
|
30
30
|
}, z.core.$strip>;
|
|
31
31
|
export type PaginationRequest = z.infer<typeof PAGINATION_REQUEST_SCHEMA>;
|
|
32
32
|
export declare const OptionsEnum: {
|
|
33
|
-
equals:
|
|
34
|
-
notEquals:
|
|
35
|
-
contains:
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
33
|
+
readonly equals: "equals";
|
|
34
|
+
readonly notEquals: "notEquals";
|
|
35
|
+
readonly contains: "contains";
|
|
36
|
+
readonly notContains: "notContains";
|
|
37
|
+
readonly containsAll: "containsAll";
|
|
38
|
+
readonly notContainsAll: "notContainsAll";
|
|
39
|
+
readonly startsWith: "startsWith";
|
|
40
|
+
readonly endsWith: "endsWith";
|
|
40
41
|
};
|
|
41
42
|
export type OptionsEnumType = (typeof OptionsEnum)[keyof typeof OptionsEnum];
|
|
43
|
+
export declare const OPTIONS_ENUM_VALUES: [OptionsEnumType, ...OptionsEnumType[]];
|
|
42
44
|
export declare const RelationEnum: {
|
|
43
45
|
AND: string;
|
|
44
46
|
OR: string;
|
|
@@ -63,13 +65,14 @@ declare const FILTER_SCHEMA: z.ZodObject<{
|
|
|
63
65
|
}>;
|
|
64
66
|
object: z.ZodString;
|
|
65
67
|
option: z.ZodEnum<{
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
68
|
+
endsWith: "endsWith";
|
|
69
|
+
startsWith: "startsWith";
|
|
70
|
+
equals: "equals";
|
|
71
|
+
notEquals: "notEquals";
|
|
72
|
+
contains: "contains";
|
|
73
|
+
notContains: "notContains";
|
|
74
|
+
containsAll: "containsAll";
|
|
75
|
+
notContainsAll: "notContainsAll";
|
|
73
76
|
}>;
|
|
74
77
|
values: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
75
78
|
}, z.core.$strip>;
|
|
@@ -91,13 +94,14 @@ export declare const POST_CONTENT_BODY_SCHEMA: z.ZodObject<{
|
|
|
91
94
|
}>;
|
|
92
95
|
object: z.ZodString;
|
|
93
96
|
option: z.ZodEnum<{
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
97
|
+
endsWith: "endsWith";
|
|
98
|
+
startsWith: "startsWith";
|
|
99
|
+
equals: "equals";
|
|
100
|
+
notEquals: "notEquals";
|
|
101
|
+
contains: "contains";
|
|
102
|
+
notContains: "notContains";
|
|
103
|
+
containsAll: "containsAll";
|
|
104
|
+
notContainsAll: "notContainsAll";
|
|
101
105
|
}>;
|
|
102
106
|
values: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
103
107
|
}, z.core.$strip>>>;
|
|
@@ -45,11 +45,13 @@ export const OptionsEnum = {
|
|
|
45
45
|
equals: 'equals',
|
|
46
46
|
notEquals: 'notEquals',
|
|
47
47
|
contains: 'contains',
|
|
48
|
+
notContains: 'notContains',
|
|
48
49
|
containsAll: 'containsAll',
|
|
49
50
|
notContainsAll: 'notContainsAll',
|
|
50
51
|
startsWith: 'startsWith',
|
|
51
52
|
endsWith: 'endsWith',
|
|
52
53
|
};
|
|
54
|
+
export const OPTIONS_ENUM_VALUES = Object.values(OptionsEnum);
|
|
53
55
|
export const RelationEnum = {
|
|
54
56
|
AND: 'AND',
|
|
55
57
|
OR: 'OR',
|
|
@@ -67,7 +69,7 @@ export const ORIGIN_NAMES = {
|
|
|
67
69
|
const FILTER_SCHEMA = z.object({
|
|
68
70
|
relation: z.enum(RelationEnum),
|
|
69
71
|
object: z.string().min(1),
|
|
70
|
-
option: z.enum(
|
|
72
|
+
option: z.enum(OPTIONS_ENUM_VALUES),
|
|
71
73
|
values: z.array(z.union([z.string(), z.number()])).nonempty(),
|
|
72
74
|
});
|
|
73
75
|
export const POST_CONTENT_BODY_SCHEMA = z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contentSchemas.js","sourceRoot":"","sources":["../../../src/schemas/content/contentSchemas.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"contentSchemas.js","sourceRoot":"","sources":["../../../src/schemas/content/contentSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAA;AAC9E,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAA;AAC1B,OAAO,EAAE,+BAA+B,EAAE,MAAM,4BAA4B,CAAA;AAI5E;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAY,CAAA;AAE7C;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,IAAa,CAAA;AAE5C;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAU,CAAA;AAEzC;;GAEG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD;;OAEG;IACH,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,uCAAuC,CAAC;IACjF;;OAEG;IACH,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,wCAAwC,CAAC;CACjF,CAAC,CAAA;AAIF;;GAEG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,QAAQ,EAAE,CAAC;SACR,MAAM,EAAE;SACR,GAAG,EAAE;SACL,GAAG,CAAC,eAAe,CAAC;SACpB,GAAG,CAAC,eAAe,CAAC;SACpB,QAAQ,EAAE;SACV,OAAO,CAAC,iBAAiB,CAAC;SAC1B,QAAQ,CAAC,mCAAmC,CAAC;IAChD,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,mDAAmD,CAAC;CAC5F,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,MAAM,EAAE,QAAQ;IAChB,SAAS,EAAE,WAAW;IACtB,QAAQ,EAAE,UAAU;IACpB,WAAW,EAAE,aAAa;IAC1B,WAAW,EAAE,aAAa;IAC1B,cAAc,EAAE,gBAAgB;IAChC,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;CACZ,CAAA;AAGV,MAAM,CAAC,MAAM,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,WAAW,CAG3D,CAAA;AAED,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,GAAG,EAAE,KAAK;IACV,EAAE,EAAE,IAAI;CACT,CAAA;AAGD,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,YAAY,EAAE,cAAc;IAC5B,UAAU,EAAE,YAAY;IACxB,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;CACvB,CAAA;AAID,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,UAAU,EAAE,YAAY;IACxB,uBAAuB,EAAE,yBAAyB;CAC1C,CAAA;AAGV,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7B,QAAQ,EAAE,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC;IAC9B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACzB,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC;IACnC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;CAC9D,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IAC7C,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,GAAG,CAAC;IACzD,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,QAAQ,EAAE;IACzD,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,QAAQ,EAAE;CAC3C,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC;IACrC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;CACxB,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IACnC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IACpC,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC;IACxC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,kBAAkB,EAAE,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC;CACxD,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC1B,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC;CAClC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC1B,eAAe,EAAE,CAAC;SACf,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;QACP,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;QACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;KACjB,CAAC,CACH;SACA,QAAQ,EAAE;IACb,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC;CAClC,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC;IACnD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC;CACxC,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IACtD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC;CAC3C,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC,CAAC,MAAM,CAAC;IACpD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;CAClB,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,qCAAqC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5D,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzC,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;IAC/D,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC1B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC7B,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC;IACtF,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACxB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CAC5B,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,wCAAwC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/D,KAAK,EAAE,CAAC;SACL,KAAK,CAAC,qCAAqC,CAAC;SAC5C,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,oCAAoC,EAAE,CAAC;SACzD,GAAG,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE,qCAAqC,EAAE,CAAC;CAClE,CAAC,CAAA;AAGF,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC3C,2BAA2B,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACnD,qBAAqB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC7C,wBAAwB,EAAE,CAAC;SACxB,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,oIAAoI,CACrI;IACH,UAAU,EAAE,CAAC;SACV,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;SAC/B,QAAQ,EAAE;SACV,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,IAAI,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,MAAM,EAAE;QAC7D,OAAO,EAAE,oCAAoC;KAC9C,CAAC;CACL,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CAAC;IACzD,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,wCAAwC,EAAE,CAAC;IAC5F,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,oCAAoC,CAAC;IAC5E,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,8CAA8C,CAAC;IACjG,OAAO,EAAE,8BAA8B,CAAC,QAAQ,EAAE;CACnD,CAAC,CAAA;AAGF,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IACnC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IACpC,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC;IACtF,YAAY,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC;CAC/C,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,yCAAyC,GAAG,CAAC,CAAC,MAAM,CAAC;IAChE,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,wCAAwC,EAAE,CAAC;IAC5F,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,oCAAoC,CAAC;IAC5E,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,8CAA8C,CAAC;IACjG,OAAO,EAAE,8BAA8B,CAAC,QAAQ,EAAE;IAClD,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,oCAAoC,EAAE,CAAC;CAClG,CAAC,CAAA;AAKF,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC,CAAA;AAChF,MAAM,CAAC,MAAM,2BAA2B,GAAG,gCAAgC,CAAC,IAAI,CAAA;AAGhF,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,wCAAwC,EAAE,CAAC;IAC5F,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,oCAAoC,CAAC;IAC5E,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,8CAA8C,CAAC;IACjG,wBAAwB,EAAE,CAAC;SACxB,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,wIAAwI,CACzI;IACH,6BAA6B,EAAE,CAAC;SAC7B,KAAK,CAAC,gCAAgC,CAAC;SACvC,QAAQ,EAAE;SACV,QAAQ,CACP,+OAA+O,CAChP;CACJ,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,uCAAuC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9D,eAAe,EAAE,CAAC,CAAC,IAAI,EAAE;IACzB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4BAA4B,EAAE,CAAC;CAC5E,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,iDAAiD,GAAG,CAAC,CAAC,MAAM,CAAC;IACxE,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4BAA4B,EAAE,CAAC;IAC3E,eAAe,EAAE,CAAC,CAAC,IAAI,EAAE;CAC1B,CAAC,CAAA;AAKF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,MAAM,CAAC;IACxD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4BAA4B,EAAE,CAAC;CAC5E,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,SAAS,EAAE,CAAC;SACT,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,6DAA6D,CAAC;CAC3E,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,eAAe,EAAE,CAAC,CAAC,IAAI,EAAE;CAC1B,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,oDAAoD,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3E,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4BAA4B,EAAE,CAAC;IAC3E,eAAe,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC;CACnE,CAAC,CAAA;AAKF,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,EAAE,EAAE,CAAC;SACF,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,CACP,qFAAqF,CACtF;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,CACP,4FAA4F,CAC7F,EAAE,2DAA2D;IAChE,MAAM,EAAE,mBAAmB;IAC3B,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,oGAAoG,CACrG;IACH,cAAc,EAAE,CAAC;SACd,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,6DAA6D,CAAC;CAC3E,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,EAAE,EAAE,CAAC;SACF,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,CAAC,iFAAiF,CAAC;IAC9F,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,iCAAiC,CAAC;IACnE,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,sBAAsB;IACrF,oBAAoB,EAAE,CAAC;SACpB,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;SACrD,QAAQ,EAAE;SACV,QAAQ,CACP,yFAAyF,CAC1F;IACH,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;CACvD,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,wCAAwC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/D,gNAAgN;IAChN,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,QAAQ,CAAC,gCAAgC,CAAC;IACvE,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,sBAAsB;IAC7E,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,qBAAqB,CAAC;IACzD,OAAO,EAAE,CAAC;SACP,IAAI,EAAE;SACN,QAAQ,CACP,2GAA2G,CAC5G;IACH,SAAS,EAAE,CAAC;SACT,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,uJAAuJ;CACxJ,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,+CAA+C,GAAG,CAAC,CAAC,MAAM,CAAC;IACtE,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,iCAAiC,CAAC;IACpD,OAAO,EAAE,CAAC,CAAC,OAAO,CAChB,wGAAwG,CACzG;CACF,CAAC,CAAA;AAKF,MAAM,CAAC,MAAM,yCAAyC,GAAG,CAAC,CAAC,MAAM,CAAC;IAChE,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,OAAO,EAAE,CAAC;SACP,IAAI,EAAE;SACN,QAAQ,CACP,2GAA2G,CAC5G;CACJ,CAAC,CAAA;AAKF,MAAM,CAAC,MAAM,qCAAqC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5D,SAAS,EAAE,CAAC;SACT,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,6DAA6D,CAAC;CAC3E,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,mBAAmB,GAAG;IACjC,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,oBAAoB,EAAE,sBAAsB;IAC5C,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;CACvB,CAAA;AAGD,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,QAAQ,EAAE,CAAC,CAAC,IAAI,EAAE;CACnB,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,MAAM,CAAC;IACxD,aAAa,EAAE,CAAC,CAAC,IAAI,EAAE;CACxB,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,sBAAsB,CAAC;IACpE,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACvD,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;CAC7C,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAA;AAE1D,OAAO,EACL,mBAAmB,GAEpB,MAAM,0CAA0C,CAAA;AAEjD,MAAM,CAAC,MAAM,sCAAsC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7D,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,qBAAqB;IACrC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,gBAAgB;IACpC,IAAI,EAAE,eAAe,EAAE,2BAA2B;IAClD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,eAAe;IACpC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,eAAe;IACnC,gBAAgB,EAAE,mBAAmB,CAAC,QAAQ,CAAC,gDAAgD,CAAC;IAChG,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,uBAAuB,CAAC,EAAE,wLAAwL;CACnR,CAAC,CAAA;AAGF,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE;IACZ,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CAC1B,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,8CAA8C,GAAG,CAAC,CAAC,MAAM,CAAC;IACrE,SAAS,EAAE,CAAC,CAAC,IAAI,EAAE;IACnB,SAAS,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IACjD,OAAO,EAAE,CAAC,CAAC,IAAI,EAAE;IACjB,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,mCAAmC,CAAC;IAClF,QAAQ,EAAE,uBAAuB;IACjC,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iDAAiD,GAAG,CAAC,CAAC,MAAM,CAAC;IACxE,SAAS,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,4BAA4B,CAAC;IAC1D,aAAa,EAAE,CAAC,CAAC,IAAI,EAAE;IACvB,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;CACnC,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,8CAA8C,GAAG,CAAC,CAAC,MAAM,CAAC;IACrE,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE;IACZ,SAAS,EAAE,CAAC,CAAC,IAAI,EAAE;IACnB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC5C,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE;IACZ,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,uBAAuB,EAAE,CAAC,CAAC,KAAK,CAAC,sCAAsC,CAAC;IACxE,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;CACvD,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,iCAAiC,GAAG,wBAAiC,CAAA;AAClF,MAAM,CAAC,MAAM,4CAA4C,GAAG,+BAA+B,CAAC,MAAM,CAAC;IACjG,SAAS,EAAE,CAAC,CAAC,OAAO,CAAC,iCAAiC,CAAC;CACxD,CAAC,CAAA;AAKF,MAAM,CAAC,MAAM,8CAA8C,GAAG,CAAC,CAAC,MAAM,CAAC;IACrE,aAAa,EAAE,CAAC,CAAC,IAAI,EAAE;IACvB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CAC1B,CAAC,CAAA;AAKF,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,aAAa,EAAE,WAAW,EAAE,QAAQ,CAAC,CAAC,CAAA;AAGxF,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,SAAS,EAAE,CAAC,CAAC,IAAI,EAAE;IACnB,MAAM,EAAE,0BAA0B;CACnC,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,2CAA2C,GAAG,CAAC,CAAC,MAAM,CAAC;IAClE,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC;QACf,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC;KACtC,CAAC;IACF,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC;QACf,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC;KACtC,CAAC;CACH,CAAC,CAAA"}
|
|
@@ -14,6 +14,7 @@ export declare const getContentFiltersContract: import("@lokalise/api-contracts"
|
|
|
14
14
|
equals: "equals";
|
|
15
15
|
notEquals: "notEquals";
|
|
16
16
|
contains: "contains";
|
|
17
|
+
notContains: "notContains";
|
|
17
18
|
containsAll: "containsAll";
|
|
18
19
|
notContainsAll: "notContainsAll";
|
|
19
20
|
}>;
|
|
@@ -40,6 +41,7 @@ export declare const putContentFilterContract: import("@lokalise/api-contracts")
|
|
|
40
41
|
equals: "equals";
|
|
41
42
|
notEquals: "notEquals";
|
|
42
43
|
contains: "contains";
|
|
44
|
+
notContains: "notContains";
|
|
43
45
|
containsAll: "containsAll";
|
|
44
46
|
notContainsAll: "notContainsAll";
|
|
45
47
|
}>;
|
|
@@ -60,6 +62,7 @@ export declare const putContentFilterContract: import("@lokalise/api-contracts")
|
|
|
60
62
|
equals: "equals";
|
|
61
63
|
notEquals: "notEquals";
|
|
62
64
|
contains: "contains";
|
|
65
|
+
notContains: "notContains";
|
|
63
66
|
containsAll: "containsAll";
|
|
64
67
|
notContainsAll: "notContainsAll";
|
|
65
68
|
}>;
|
|
@@ -11,6 +11,7 @@ export declare const FILTER_ITEM_SCHEMA: z.ZodObject<{
|
|
|
11
11
|
equals: "equals";
|
|
12
12
|
notEquals: "notEquals";
|
|
13
13
|
contains: "contains";
|
|
14
|
+
notContains: "notContains";
|
|
14
15
|
containsAll: "containsAll";
|
|
15
16
|
notContainsAll: "notContainsAll";
|
|
16
17
|
}>;
|
|
@@ -31,6 +32,7 @@ export declare const CONTENT_FILTER_SCHEMA: z.ZodObject<{
|
|
|
31
32
|
equals: "equals";
|
|
32
33
|
notEquals: "notEquals";
|
|
33
34
|
contains: "contains";
|
|
35
|
+
notContains: "notContains";
|
|
34
36
|
containsAll: "containsAll";
|
|
35
37
|
notContainsAll: "notContainsAll";
|
|
36
38
|
}>;
|
|
@@ -55,6 +57,7 @@ export declare const GET_CONTENT_FILTERS_RESPONSE: z.ZodObject<{
|
|
|
55
57
|
equals: "equals";
|
|
56
58
|
notEquals: "notEquals";
|
|
57
59
|
contains: "contains";
|
|
60
|
+
notContains: "notContains";
|
|
58
61
|
containsAll: "containsAll";
|
|
59
62
|
notContainsAll: "notContainsAll";
|
|
60
63
|
}>;
|
|
@@ -79,6 +82,7 @@ export declare const PUT_CONTENT_FILTER_REQUEST_BODY: z.ZodObject<{
|
|
|
79
82
|
equals: "equals";
|
|
80
83
|
notEquals: "notEquals";
|
|
81
84
|
contains: "contains";
|
|
85
|
+
notContains: "notContains";
|
|
82
86
|
containsAll: "containsAll";
|
|
83
87
|
notContainsAll: "notContainsAll";
|
|
84
88
|
}>;
|
|
@@ -1,16 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod/v4';
|
|
2
|
+
import { OPTIONS_ENUM_VALUES } from "../content/contentSchemas.js";
|
|
2
3
|
export const FILTER_ITEM_SCHEMA = z.object({
|
|
3
4
|
relation: z.enum(['AND', 'OR']),
|
|
4
5
|
object: z.string().min(1),
|
|
5
|
-
option: z.enum(
|
|
6
|
-
'equals',
|
|
7
|
-
'notEquals',
|
|
8
|
-
'contains',
|
|
9
|
-
'containsAll',
|
|
10
|
-
'notContainsAll',
|
|
11
|
-
'startsWith',
|
|
12
|
-
'endsWith',
|
|
13
|
-
]),
|
|
6
|
+
option: z.enum(OPTIONS_ENUM_VALUES),
|
|
14
7
|
values: z.array(z.union([z.string(), z.number()])).nonempty(),
|
|
15
8
|
});
|
|
16
9
|
export const CONTENT_FILTER_SCHEMA = z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"filterSchemas.js","sourceRoot":"","sources":["../../../src/schemas/filter/filterSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAA;
|
|
1
|
+
{"version":3,"file":"filterSchemas.js","sourceRoot":"","sources":["../../../src/schemas/filter/filterSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAA;AAC1B,OAAO,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAA;AAElE,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,QAAQ,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;IAC/B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACzB,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC;IACnC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;CAC9D,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE;IACZ,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACvB,UAAU,EAAE,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC;IACvC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;CAChC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC;IACnD,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC;CACxC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IACtD,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACvB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IAChC,UAAU,EAAE,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,QAAQ,EAAE;CACnD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,QAAQ,EAAE,CAAC,CAAC,IAAI,EAAE;CACnB,CAAC,CAAA"}
|
|
@@ -101,9 +101,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
101
101
|
query: z.ZodString;
|
|
102
102
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
103
103
|
type: z.ZodEnum<{
|
|
104
|
+
endsWith: "endsWith";
|
|
105
|
+
startsWith: "startsWith";
|
|
104
106
|
equals: "equals";
|
|
105
107
|
notEquals: "notEquals";
|
|
106
108
|
contains: "contains";
|
|
109
|
+
notContains: "notContains";
|
|
110
|
+
containsAll: "containsAll";
|
|
111
|
+
notContainsAll: "notContainsAll";
|
|
107
112
|
}>;
|
|
108
113
|
name: z.ZodString;
|
|
109
114
|
}, z.core.$strip>>>;
|
|
@@ -114,9 +119,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
114
119
|
query: z.ZodString;
|
|
115
120
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
116
121
|
type: z.ZodEnum<{
|
|
122
|
+
endsWith: "endsWith";
|
|
123
|
+
startsWith: "startsWith";
|
|
117
124
|
equals: "equals";
|
|
118
125
|
notEquals: "notEquals";
|
|
119
126
|
contains: "contains";
|
|
127
|
+
notContains: "notContains";
|
|
128
|
+
containsAll: "containsAll";
|
|
129
|
+
notContainsAll: "notContainsAll";
|
|
120
130
|
}>;
|
|
121
131
|
name: z.ZodString;
|
|
122
132
|
}, z.core.$strip>>>;
|
|
@@ -132,9 +142,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
132
142
|
query: z.ZodString;
|
|
133
143
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
134
144
|
type: z.ZodEnum<{
|
|
145
|
+
endsWith: "endsWith";
|
|
146
|
+
startsWith: "startsWith";
|
|
135
147
|
equals: "equals";
|
|
136
148
|
notEquals: "notEquals";
|
|
137
149
|
contains: "contains";
|
|
150
|
+
notContains: "notContains";
|
|
151
|
+
containsAll: "containsAll";
|
|
152
|
+
notContainsAll: "notContainsAll";
|
|
138
153
|
}>;
|
|
139
154
|
name: z.ZodString;
|
|
140
155
|
}, z.core.$strip>>>;
|
|
@@ -145,9 +160,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
145
160
|
query: z.ZodString;
|
|
146
161
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
147
162
|
type: z.ZodEnum<{
|
|
163
|
+
endsWith: "endsWith";
|
|
164
|
+
startsWith: "startsWith";
|
|
148
165
|
equals: "equals";
|
|
149
166
|
notEquals: "notEquals";
|
|
150
167
|
contains: "contains";
|
|
168
|
+
notContains: "notContains";
|
|
169
|
+
containsAll: "containsAll";
|
|
170
|
+
notContainsAll: "notContainsAll";
|
|
151
171
|
}>;
|
|
152
172
|
name: z.ZodString;
|
|
153
173
|
}, z.core.$strip>>>;
|
|
@@ -161,9 +181,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
161
181
|
query: z.ZodString;
|
|
162
182
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
163
183
|
type: z.ZodEnum<{
|
|
184
|
+
endsWith: "endsWith";
|
|
185
|
+
startsWith: "startsWith";
|
|
164
186
|
equals: "equals";
|
|
165
187
|
notEquals: "notEquals";
|
|
166
188
|
contains: "contains";
|
|
189
|
+
notContains: "notContains";
|
|
190
|
+
containsAll: "containsAll";
|
|
191
|
+
notContainsAll: "notContainsAll";
|
|
167
192
|
}>;
|
|
168
193
|
name: z.ZodString;
|
|
169
194
|
}, z.core.$strip>>>;
|
|
@@ -179,9 +204,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
179
204
|
query: z.ZodString;
|
|
180
205
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
181
206
|
type: z.ZodEnum<{
|
|
207
|
+
endsWith: "endsWith";
|
|
208
|
+
startsWith: "startsWith";
|
|
182
209
|
equals: "equals";
|
|
183
210
|
notEquals: "notEquals";
|
|
184
211
|
contains: "contains";
|
|
212
|
+
notContains: "notContains";
|
|
213
|
+
containsAll: "containsAll";
|
|
214
|
+
notContainsAll: "notContainsAll";
|
|
185
215
|
}>;
|
|
186
216
|
name: z.ZodString;
|
|
187
217
|
}, z.core.$strip>>>;
|
|
@@ -194,9 +224,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
194
224
|
query: z.ZodString;
|
|
195
225
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
196
226
|
type: z.ZodEnum<{
|
|
227
|
+
endsWith: "endsWith";
|
|
228
|
+
startsWith: "startsWith";
|
|
197
229
|
equals: "equals";
|
|
198
230
|
notEquals: "notEquals";
|
|
199
231
|
contains: "contains";
|
|
232
|
+
notContains: "notContains";
|
|
233
|
+
containsAll: "containsAll";
|
|
234
|
+
notContainsAll: "notContainsAll";
|
|
200
235
|
}>;
|
|
201
236
|
name: z.ZodString;
|
|
202
237
|
}, z.core.$strip>>>;
|
|
@@ -272,9 +307,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
272
307
|
query: z.ZodString;
|
|
273
308
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
274
309
|
type: z.ZodEnum<{
|
|
310
|
+
endsWith: "endsWith";
|
|
311
|
+
startsWith: "startsWith";
|
|
275
312
|
equals: "equals";
|
|
276
313
|
notEquals: "notEquals";
|
|
277
314
|
contains: "contains";
|
|
315
|
+
notContains: "notContains";
|
|
316
|
+
containsAll: "containsAll";
|
|
317
|
+
notContainsAll: "notContainsAll";
|
|
278
318
|
}>;
|
|
279
319
|
name: z.ZodString;
|
|
280
320
|
}, z.core.$strip>>>;
|
|
@@ -285,9 +325,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
285
325
|
query: z.ZodString;
|
|
286
326
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
287
327
|
type: z.ZodEnum<{
|
|
328
|
+
endsWith: "endsWith";
|
|
329
|
+
startsWith: "startsWith";
|
|
288
330
|
equals: "equals";
|
|
289
331
|
notEquals: "notEquals";
|
|
290
332
|
contains: "contains";
|
|
333
|
+
notContains: "notContains";
|
|
334
|
+
containsAll: "containsAll";
|
|
335
|
+
notContainsAll: "notContainsAll";
|
|
291
336
|
}>;
|
|
292
337
|
name: z.ZodString;
|
|
293
338
|
}, z.core.$strip>>>;
|
|
@@ -303,9 +348,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
303
348
|
query: z.ZodString;
|
|
304
349
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
305
350
|
type: z.ZodEnum<{
|
|
351
|
+
endsWith: "endsWith";
|
|
352
|
+
startsWith: "startsWith";
|
|
306
353
|
equals: "equals";
|
|
307
354
|
notEquals: "notEquals";
|
|
308
355
|
contains: "contains";
|
|
356
|
+
notContains: "notContains";
|
|
357
|
+
containsAll: "containsAll";
|
|
358
|
+
notContainsAll: "notContainsAll";
|
|
309
359
|
}>;
|
|
310
360
|
name: z.ZodString;
|
|
311
361
|
}, z.core.$strip>>>;
|
|
@@ -316,9 +366,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
316
366
|
query: z.ZodString;
|
|
317
367
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
318
368
|
type: z.ZodEnum<{
|
|
369
|
+
endsWith: "endsWith";
|
|
370
|
+
startsWith: "startsWith";
|
|
319
371
|
equals: "equals";
|
|
320
372
|
notEquals: "notEquals";
|
|
321
373
|
contains: "contains";
|
|
374
|
+
notContains: "notContains";
|
|
375
|
+
containsAll: "containsAll";
|
|
376
|
+
notContainsAll: "notContainsAll";
|
|
322
377
|
}>;
|
|
323
378
|
name: z.ZodString;
|
|
324
379
|
}, z.core.$strip>>>;
|
|
@@ -332,9 +387,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
332
387
|
query: z.ZodString;
|
|
333
388
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
334
389
|
type: z.ZodEnum<{
|
|
390
|
+
endsWith: "endsWith";
|
|
391
|
+
startsWith: "startsWith";
|
|
335
392
|
equals: "equals";
|
|
336
393
|
notEquals: "notEquals";
|
|
337
394
|
contains: "contains";
|
|
395
|
+
notContains: "notContains";
|
|
396
|
+
containsAll: "containsAll";
|
|
397
|
+
notContainsAll: "notContainsAll";
|
|
338
398
|
}>;
|
|
339
399
|
name: z.ZodString;
|
|
340
400
|
}, z.core.$strip>>>;
|
|
@@ -350,9 +410,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
350
410
|
query: z.ZodString;
|
|
351
411
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
352
412
|
type: z.ZodEnum<{
|
|
413
|
+
endsWith: "endsWith";
|
|
414
|
+
startsWith: "startsWith";
|
|
353
415
|
equals: "equals";
|
|
354
416
|
notEquals: "notEquals";
|
|
355
417
|
contains: "contains";
|
|
418
|
+
notContains: "notContains";
|
|
419
|
+
containsAll: "containsAll";
|
|
420
|
+
notContainsAll: "notContainsAll";
|
|
356
421
|
}>;
|
|
357
422
|
name: z.ZodString;
|
|
358
423
|
}, z.core.$strip>>>;
|
|
@@ -365,9 +430,14 @@ export declare const getIntegrationManifestContract: import("@lokalise/api-contr
|
|
|
365
430
|
query: z.ZodString;
|
|
366
431
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
367
432
|
type: z.ZodEnum<{
|
|
433
|
+
endsWith: "endsWith";
|
|
434
|
+
startsWith: "startsWith";
|
|
368
435
|
equals: "equals";
|
|
369
436
|
notEquals: "notEquals";
|
|
370
437
|
contains: "contains";
|
|
438
|
+
notContains: "notContains";
|
|
439
|
+
containsAll: "containsAll";
|
|
440
|
+
notContainsAll: "notContainsAll";
|
|
371
441
|
}>;
|
|
372
442
|
name: z.ZodString;
|
|
373
443
|
}, z.core.$strip>>>;
|
|
@@ -104,9 +104,14 @@ export declare const GET_INTEGRATION_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
104
104
|
query: z.ZodString;
|
|
105
105
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
106
106
|
type: z.ZodEnum<{
|
|
107
|
+
endsWith: "endsWith";
|
|
108
|
+
startsWith: "startsWith";
|
|
107
109
|
equals: "equals";
|
|
108
110
|
notEquals: "notEquals";
|
|
109
111
|
contains: "contains";
|
|
112
|
+
notContains: "notContains";
|
|
113
|
+
containsAll: "containsAll";
|
|
114
|
+
notContainsAll: "notContainsAll";
|
|
110
115
|
}>;
|
|
111
116
|
name: z.ZodString;
|
|
112
117
|
}, z.core.$strip>>>;
|
|
@@ -117,9 +122,14 @@ export declare const GET_INTEGRATION_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
117
122
|
query: z.ZodString;
|
|
118
123
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
119
124
|
type: z.ZodEnum<{
|
|
125
|
+
endsWith: "endsWith";
|
|
126
|
+
startsWith: "startsWith";
|
|
120
127
|
equals: "equals";
|
|
121
128
|
notEquals: "notEquals";
|
|
122
129
|
contains: "contains";
|
|
130
|
+
notContains: "notContains";
|
|
131
|
+
containsAll: "containsAll";
|
|
132
|
+
notContainsAll: "notContainsAll";
|
|
123
133
|
}>;
|
|
124
134
|
name: z.ZodString;
|
|
125
135
|
}, z.core.$strip>>>;
|
|
@@ -135,9 +145,14 @@ export declare const GET_INTEGRATION_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
135
145
|
query: z.ZodString;
|
|
136
146
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
137
147
|
type: z.ZodEnum<{
|
|
148
|
+
endsWith: "endsWith";
|
|
149
|
+
startsWith: "startsWith";
|
|
138
150
|
equals: "equals";
|
|
139
151
|
notEquals: "notEquals";
|
|
140
152
|
contains: "contains";
|
|
153
|
+
notContains: "notContains";
|
|
154
|
+
containsAll: "containsAll";
|
|
155
|
+
notContainsAll: "notContainsAll";
|
|
141
156
|
}>;
|
|
142
157
|
name: z.ZodString;
|
|
143
158
|
}, z.core.$strip>>>;
|
|
@@ -148,9 +163,14 @@ export declare const GET_INTEGRATION_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
148
163
|
query: z.ZodString;
|
|
149
164
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
150
165
|
type: z.ZodEnum<{
|
|
166
|
+
endsWith: "endsWith";
|
|
167
|
+
startsWith: "startsWith";
|
|
151
168
|
equals: "equals";
|
|
152
169
|
notEquals: "notEquals";
|
|
153
170
|
contains: "contains";
|
|
171
|
+
notContains: "notContains";
|
|
172
|
+
containsAll: "containsAll";
|
|
173
|
+
notContainsAll: "notContainsAll";
|
|
154
174
|
}>;
|
|
155
175
|
name: z.ZodString;
|
|
156
176
|
}, z.core.$strip>>>;
|
|
@@ -164,9 +184,14 @@ export declare const GET_INTEGRATION_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
164
184
|
query: z.ZodString;
|
|
165
185
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
166
186
|
type: z.ZodEnum<{
|
|
187
|
+
endsWith: "endsWith";
|
|
188
|
+
startsWith: "startsWith";
|
|
167
189
|
equals: "equals";
|
|
168
190
|
notEquals: "notEquals";
|
|
169
191
|
contains: "contains";
|
|
192
|
+
notContains: "notContains";
|
|
193
|
+
containsAll: "containsAll";
|
|
194
|
+
notContainsAll: "notContainsAll";
|
|
170
195
|
}>;
|
|
171
196
|
name: z.ZodString;
|
|
172
197
|
}, z.core.$strip>>>;
|
|
@@ -182,9 +207,14 @@ export declare const GET_INTEGRATION_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
182
207
|
query: z.ZodString;
|
|
183
208
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
184
209
|
type: z.ZodEnum<{
|
|
210
|
+
endsWith: "endsWith";
|
|
211
|
+
startsWith: "startsWith";
|
|
185
212
|
equals: "equals";
|
|
186
213
|
notEquals: "notEquals";
|
|
187
214
|
contains: "contains";
|
|
215
|
+
notContains: "notContains";
|
|
216
|
+
containsAll: "containsAll";
|
|
217
|
+
notContainsAll: "notContainsAll";
|
|
188
218
|
}>;
|
|
189
219
|
name: z.ZodString;
|
|
190
220
|
}, z.core.$strip>>>;
|
|
@@ -197,9 +227,14 @@ export declare const GET_INTEGRATION_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
197
227
|
query: z.ZodString;
|
|
198
228
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
199
229
|
type: z.ZodEnum<{
|
|
230
|
+
endsWith: "endsWith";
|
|
231
|
+
startsWith: "startsWith";
|
|
200
232
|
equals: "equals";
|
|
201
233
|
notEquals: "notEquals";
|
|
202
234
|
contains: "contains";
|
|
235
|
+
notContains: "notContains";
|
|
236
|
+
containsAll: "containsAll";
|
|
237
|
+
notContainsAll: "notContainsAll";
|
|
203
238
|
}>;
|
|
204
239
|
name: z.ZodString;
|
|
205
240
|
}, z.core.$strip>>>;
|
|
@@ -29,9 +29,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
29
29
|
query: import("zod").ZodString;
|
|
30
30
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
31
31
|
type: import("zod").ZodEnum<{
|
|
32
|
+
endsWith: "endsWith";
|
|
33
|
+
startsWith: "startsWith";
|
|
32
34
|
equals: "equals";
|
|
33
35
|
notEquals: "notEquals";
|
|
34
36
|
contains: "contains";
|
|
37
|
+
notContains: "notContains";
|
|
38
|
+
containsAll: "containsAll";
|
|
39
|
+
notContainsAll: "notContainsAll";
|
|
35
40
|
}>;
|
|
36
41
|
name: import("zod").ZodString;
|
|
37
42
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -42,9 +47,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
42
47
|
query: import("zod").ZodString;
|
|
43
48
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
44
49
|
type: import("zod").ZodEnum<{
|
|
50
|
+
endsWith: "endsWith";
|
|
51
|
+
startsWith: "startsWith";
|
|
45
52
|
equals: "equals";
|
|
46
53
|
notEquals: "notEquals";
|
|
47
54
|
contains: "contains";
|
|
55
|
+
notContains: "notContains";
|
|
56
|
+
containsAll: "containsAll";
|
|
57
|
+
notContainsAll: "notContainsAll";
|
|
48
58
|
}>;
|
|
49
59
|
name: import("zod").ZodString;
|
|
50
60
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -60,9 +70,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
60
70
|
query: import("zod").ZodString;
|
|
61
71
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
62
72
|
type: import("zod").ZodEnum<{
|
|
73
|
+
endsWith: "endsWith";
|
|
74
|
+
startsWith: "startsWith";
|
|
63
75
|
equals: "equals";
|
|
64
76
|
notEquals: "notEquals";
|
|
65
77
|
contains: "contains";
|
|
78
|
+
notContains: "notContains";
|
|
79
|
+
containsAll: "containsAll";
|
|
80
|
+
notContainsAll: "notContainsAll";
|
|
66
81
|
}>;
|
|
67
82
|
name: import("zod").ZodString;
|
|
68
83
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -73,9 +88,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
73
88
|
query: import("zod").ZodString;
|
|
74
89
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
75
90
|
type: import("zod").ZodEnum<{
|
|
91
|
+
endsWith: "endsWith";
|
|
92
|
+
startsWith: "startsWith";
|
|
76
93
|
equals: "equals";
|
|
77
94
|
notEquals: "notEquals";
|
|
78
95
|
contains: "contains";
|
|
96
|
+
notContains: "notContains";
|
|
97
|
+
containsAll: "containsAll";
|
|
98
|
+
notContainsAll: "notContainsAll";
|
|
79
99
|
}>;
|
|
80
100
|
name: import("zod").ZodString;
|
|
81
101
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -89,9 +109,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
89
109
|
query: import("zod").ZodString;
|
|
90
110
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
91
111
|
type: import("zod").ZodEnum<{
|
|
112
|
+
endsWith: "endsWith";
|
|
113
|
+
startsWith: "startsWith";
|
|
92
114
|
equals: "equals";
|
|
93
115
|
notEquals: "notEquals";
|
|
94
116
|
contains: "contains";
|
|
117
|
+
notContains: "notContains";
|
|
118
|
+
containsAll: "containsAll";
|
|
119
|
+
notContainsAll: "notContainsAll";
|
|
95
120
|
}>;
|
|
96
121
|
name: import("zod").ZodString;
|
|
97
122
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -107,9 +132,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
107
132
|
query: import("zod").ZodString;
|
|
108
133
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
109
134
|
type: import("zod").ZodEnum<{
|
|
135
|
+
endsWith: "endsWith";
|
|
136
|
+
startsWith: "startsWith";
|
|
110
137
|
equals: "equals";
|
|
111
138
|
notEquals: "notEquals";
|
|
112
139
|
contains: "contains";
|
|
140
|
+
notContains: "notContains";
|
|
141
|
+
containsAll: "containsAll";
|
|
142
|
+
notContainsAll: "notContainsAll";
|
|
113
143
|
}>;
|
|
114
144
|
name: import("zod").ZodString;
|
|
115
145
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -122,9 +152,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
122
152
|
query: import("zod").ZodString;
|
|
123
153
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
124
154
|
type: import("zod").ZodEnum<{
|
|
155
|
+
endsWith: "endsWith";
|
|
156
|
+
startsWith: "startsWith";
|
|
125
157
|
equals: "equals";
|
|
126
158
|
notEquals: "notEquals";
|
|
127
159
|
contains: "contains";
|
|
160
|
+
notContains: "notContains";
|
|
161
|
+
containsAll: "containsAll";
|
|
162
|
+
notContainsAll: "notContainsAll";
|
|
128
163
|
}>;
|
|
129
164
|
name: import("zod").ZodString;
|
|
130
165
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -198,9 +233,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
198
233
|
query: import("zod").ZodString;
|
|
199
234
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
200
235
|
type: import("zod").ZodEnum<{
|
|
236
|
+
endsWith: "endsWith";
|
|
237
|
+
startsWith: "startsWith";
|
|
201
238
|
equals: "equals";
|
|
202
239
|
notEquals: "notEquals";
|
|
203
240
|
contains: "contains";
|
|
241
|
+
notContains: "notContains";
|
|
242
|
+
containsAll: "containsAll";
|
|
243
|
+
notContainsAll: "notContainsAll";
|
|
204
244
|
}>;
|
|
205
245
|
name: import("zod").ZodString;
|
|
206
246
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -211,9 +251,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
211
251
|
query: import("zod").ZodString;
|
|
212
252
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
213
253
|
type: import("zod").ZodEnum<{
|
|
254
|
+
endsWith: "endsWith";
|
|
255
|
+
startsWith: "startsWith";
|
|
214
256
|
equals: "equals";
|
|
215
257
|
notEquals: "notEquals";
|
|
216
258
|
contains: "contains";
|
|
259
|
+
notContains: "notContains";
|
|
260
|
+
containsAll: "containsAll";
|
|
261
|
+
notContainsAll: "notContainsAll";
|
|
217
262
|
}>;
|
|
218
263
|
name: import("zod").ZodString;
|
|
219
264
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -229,9 +274,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
229
274
|
query: import("zod").ZodString;
|
|
230
275
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
231
276
|
type: import("zod").ZodEnum<{
|
|
277
|
+
endsWith: "endsWith";
|
|
278
|
+
startsWith: "startsWith";
|
|
232
279
|
equals: "equals";
|
|
233
280
|
notEquals: "notEquals";
|
|
234
281
|
contains: "contains";
|
|
282
|
+
notContains: "notContains";
|
|
283
|
+
containsAll: "containsAll";
|
|
284
|
+
notContainsAll: "notContainsAll";
|
|
235
285
|
}>;
|
|
236
286
|
name: import("zod").ZodString;
|
|
237
287
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -242,9 +292,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
242
292
|
query: import("zod").ZodString;
|
|
243
293
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
244
294
|
type: import("zod").ZodEnum<{
|
|
295
|
+
endsWith: "endsWith";
|
|
296
|
+
startsWith: "startsWith";
|
|
245
297
|
equals: "equals";
|
|
246
298
|
notEquals: "notEquals";
|
|
247
299
|
contains: "contains";
|
|
300
|
+
notContains: "notContains";
|
|
301
|
+
containsAll: "containsAll";
|
|
302
|
+
notContainsAll: "notContainsAll";
|
|
248
303
|
}>;
|
|
249
304
|
name: import("zod").ZodString;
|
|
250
305
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -258,9 +313,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
258
313
|
query: import("zod").ZodString;
|
|
259
314
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
260
315
|
type: import("zod").ZodEnum<{
|
|
316
|
+
endsWith: "endsWith";
|
|
317
|
+
startsWith: "startsWith";
|
|
261
318
|
equals: "equals";
|
|
262
319
|
notEquals: "notEquals";
|
|
263
320
|
contains: "contains";
|
|
321
|
+
notContains: "notContains";
|
|
322
|
+
containsAll: "containsAll";
|
|
323
|
+
notContainsAll: "notContainsAll";
|
|
264
324
|
}>;
|
|
265
325
|
name: import("zod").ZodString;
|
|
266
326
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -276,9 +336,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
276
336
|
query: import("zod").ZodString;
|
|
277
337
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
278
338
|
type: import("zod").ZodEnum<{
|
|
339
|
+
endsWith: "endsWith";
|
|
340
|
+
startsWith: "startsWith";
|
|
279
341
|
equals: "equals";
|
|
280
342
|
notEquals: "notEquals";
|
|
281
343
|
contains: "contains";
|
|
344
|
+
notContains: "notContains";
|
|
345
|
+
containsAll: "containsAll";
|
|
346
|
+
notContainsAll: "notContainsAll";
|
|
282
347
|
}>;
|
|
283
348
|
name: import("zod").ZodString;
|
|
284
349
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -291,9 +356,14 @@ export declare const getLinkManifest: import("@lokalise/api-contracts").GetRoute
|
|
|
291
356
|
query: import("zod").ZodString;
|
|
292
357
|
clauses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
293
358
|
type: import("zod").ZodEnum<{
|
|
359
|
+
endsWith: "endsWith";
|
|
360
|
+
startsWith: "startsWith";
|
|
294
361
|
equals: "equals";
|
|
295
362
|
notEquals: "notEquals";
|
|
296
363
|
contains: "contains";
|
|
364
|
+
notContains: "notContains";
|
|
365
|
+
containsAll: "containsAll";
|
|
366
|
+
notContainsAll: "notContainsAll";
|
|
297
367
|
}>;
|
|
298
368
|
name: import("zod").ZodString;
|
|
299
369
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -30,9 +30,14 @@ export declare const GET_LINK_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
30
30
|
query: z.ZodString;
|
|
31
31
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
32
32
|
type: z.ZodEnum<{
|
|
33
|
+
endsWith: "endsWith";
|
|
34
|
+
startsWith: "startsWith";
|
|
33
35
|
equals: "equals";
|
|
34
36
|
notEquals: "notEquals";
|
|
35
37
|
contains: "contains";
|
|
38
|
+
notContains: "notContains";
|
|
39
|
+
containsAll: "containsAll";
|
|
40
|
+
notContainsAll: "notContainsAll";
|
|
36
41
|
}>;
|
|
37
42
|
name: z.ZodString;
|
|
38
43
|
}, z.core.$strip>>>;
|
|
@@ -43,9 +48,14 @@ export declare const GET_LINK_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
43
48
|
query: z.ZodString;
|
|
44
49
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
45
50
|
type: z.ZodEnum<{
|
|
51
|
+
endsWith: "endsWith";
|
|
52
|
+
startsWith: "startsWith";
|
|
46
53
|
equals: "equals";
|
|
47
54
|
notEquals: "notEquals";
|
|
48
55
|
contains: "contains";
|
|
56
|
+
notContains: "notContains";
|
|
57
|
+
containsAll: "containsAll";
|
|
58
|
+
notContainsAll: "notContainsAll";
|
|
49
59
|
}>;
|
|
50
60
|
name: z.ZodString;
|
|
51
61
|
}, z.core.$strip>>>;
|
|
@@ -61,9 +71,14 @@ export declare const GET_LINK_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
61
71
|
query: z.ZodString;
|
|
62
72
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
63
73
|
type: z.ZodEnum<{
|
|
74
|
+
endsWith: "endsWith";
|
|
75
|
+
startsWith: "startsWith";
|
|
64
76
|
equals: "equals";
|
|
65
77
|
notEquals: "notEquals";
|
|
66
78
|
contains: "contains";
|
|
79
|
+
notContains: "notContains";
|
|
80
|
+
containsAll: "containsAll";
|
|
81
|
+
notContainsAll: "notContainsAll";
|
|
67
82
|
}>;
|
|
68
83
|
name: z.ZodString;
|
|
69
84
|
}, z.core.$strip>>>;
|
|
@@ -74,9 +89,14 @@ export declare const GET_LINK_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
74
89
|
query: z.ZodString;
|
|
75
90
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
76
91
|
type: z.ZodEnum<{
|
|
92
|
+
endsWith: "endsWith";
|
|
93
|
+
startsWith: "startsWith";
|
|
77
94
|
equals: "equals";
|
|
78
95
|
notEquals: "notEquals";
|
|
79
96
|
contains: "contains";
|
|
97
|
+
notContains: "notContains";
|
|
98
|
+
containsAll: "containsAll";
|
|
99
|
+
notContainsAll: "notContainsAll";
|
|
80
100
|
}>;
|
|
81
101
|
name: z.ZodString;
|
|
82
102
|
}, z.core.$strip>>>;
|
|
@@ -90,9 +110,14 @@ export declare const GET_LINK_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
90
110
|
query: z.ZodString;
|
|
91
111
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
92
112
|
type: z.ZodEnum<{
|
|
113
|
+
endsWith: "endsWith";
|
|
114
|
+
startsWith: "startsWith";
|
|
93
115
|
equals: "equals";
|
|
94
116
|
notEquals: "notEquals";
|
|
95
117
|
contains: "contains";
|
|
118
|
+
notContains: "notContains";
|
|
119
|
+
containsAll: "containsAll";
|
|
120
|
+
notContainsAll: "notContainsAll";
|
|
96
121
|
}>;
|
|
97
122
|
name: z.ZodString;
|
|
98
123
|
}, z.core.$strip>>>;
|
|
@@ -108,9 +133,14 @@ export declare const GET_LINK_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
108
133
|
query: z.ZodString;
|
|
109
134
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
110
135
|
type: z.ZodEnum<{
|
|
136
|
+
endsWith: "endsWith";
|
|
137
|
+
startsWith: "startsWith";
|
|
111
138
|
equals: "equals";
|
|
112
139
|
notEquals: "notEquals";
|
|
113
140
|
contains: "contains";
|
|
141
|
+
notContains: "notContains";
|
|
142
|
+
containsAll: "containsAll";
|
|
143
|
+
notContainsAll: "notContainsAll";
|
|
114
144
|
}>;
|
|
115
145
|
name: z.ZodString;
|
|
116
146
|
}, z.core.$strip>>>;
|
|
@@ -123,9 +153,14 @@ export declare const GET_LINK_MANIFEST_RESPONSE_SCHEMA: z.ZodObject<{
|
|
|
123
153
|
query: z.ZodString;
|
|
124
154
|
clauses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
125
155
|
type: z.ZodEnum<{
|
|
156
|
+
endsWith: "endsWith";
|
|
157
|
+
startsWith: "startsWith";
|
|
126
158
|
equals: "equals";
|
|
127
159
|
notEquals: "notEquals";
|
|
128
160
|
contains: "contains";
|
|
161
|
+
notContains: "notContains";
|
|
162
|
+
containsAll: "containsAll";
|
|
163
|
+
notContainsAll: "notContainsAll";
|
|
129
164
|
}>;
|
|
130
165
|
name: z.ZodString;
|
|
131
166
|
}, z.core.$strip>>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lokalise/content-type-app-engine-contracts",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.14.0",
|
|
4
4
|
"description": "Content Type App Engine service contracts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@lokalise/api-contracts": "^6.0.0",
|
|
20
|
-
"@lokalise/connector-api-contracts": "^6.
|
|
20
|
+
"@lokalise/connector-api-contracts": "^6.3.0",
|
|
21
21
|
"@lokalise/content-conversion-api-schemas": "^1.1.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|