@restura/core 0.2.0 → 0.2.1
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/index.d.mts +46 -46
- package/dist/index.d.ts +46 -46
- package/dist/index.js +23 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -200,7 +200,7 @@ type ResturaConfigSchema = z.infer<typeof resturaConfigSchema>;
|
|
|
200
200
|
declare const whereDataSchema: z.ZodObject<{
|
|
201
201
|
tableName: z.ZodOptional<z.ZodString>;
|
|
202
202
|
columnName: z.ZodOptional<z.ZodString>;
|
|
203
|
-
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
203
|
+
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "NOT LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
204
204
|
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
205
205
|
custom: z.ZodOptional<z.ZodString>;
|
|
206
206
|
conjunction: z.ZodOptional<z.ZodEnum<["AND", "OR"]>>;
|
|
@@ -209,14 +209,14 @@ declare const whereDataSchema: z.ZodObject<{
|
|
|
209
209
|
custom?: string | undefined;
|
|
210
210
|
tableName?: string | undefined;
|
|
211
211
|
columnName?: string | undefined;
|
|
212
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
212
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
213
213
|
conjunction?: "AND" | "OR" | undefined;
|
|
214
214
|
}, {
|
|
215
215
|
value?: string | number | undefined;
|
|
216
216
|
custom?: string | undefined;
|
|
217
217
|
tableName?: string | undefined;
|
|
218
218
|
columnName?: string | undefined;
|
|
219
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
219
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
220
220
|
conjunction?: "AND" | "OR" | undefined;
|
|
221
221
|
}>;
|
|
222
222
|
type WhereData = z.infer<typeof whereDataSchema>;
|
|
@@ -273,7 +273,7 @@ declare const responseDataSchema: z.ZodObject<{
|
|
|
273
273
|
where: z.ZodArray<z.ZodObject<{
|
|
274
274
|
tableName: z.ZodOptional<z.ZodString>;
|
|
275
275
|
columnName: z.ZodOptional<z.ZodString>;
|
|
276
|
-
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
276
|
+
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "NOT LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
277
277
|
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
278
278
|
custom: z.ZodOptional<z.ZodString>;
|
|
279
279
|
conjunction: z.ZodOptional<z.ZodEnum<["AND", "OR"]>>;
|
|
@@ -282,14 +282,14 @@ declare const responseDataSchema: z.ZodObject<{
|
|
|
282
282
|
custom?: string | undefined;
|
|
283
283
|
tableName?: string | undefined;
|
|
284
284
|
columnName?: string | undefined;
|
|
285
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
285
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
286
286
|
conjunction?: "AND" | "OR" | undefined;
|
|
287
287
|
}, {
|
|
288
288
|
value?: string | number | undefined;
|
|
289
289
|
custom?: string | undefined;
|
|
290
290
|
tableName?: string | undefined;
|
|
291
291
|
columnName?: string | undefined;
|
|
292
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
292
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
293
293
|
conjunction?: "AND" | "OR" | undefined;
|
|
294
294
|
}>, "many">;
|
|
295
295
|
properties: z.ZodArray<z.ZodLazy<z.ZodType<any, z.ZodTypeDef, any>>, "many">;
|
|
@@ -331,7 +331,7 @@ declare const responseDataSchema: z.ZodObject<{
|
|
|
331
331
|
custom?: string | undefined;
|
|
332
332
|
tableName?: string | undefined;
|
|
333
333
|
columnName?: string | undefined;
|
|
334
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
334
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
335
335
|
conjunction?: "AND" | "OR" | undefined;
|
|
336
336
|
}[];
|
|
337
337
|
properties: any[];
|
|
@@ -359,7 +359,7 @@ declare const responseDataSchema: z.ZodObject<{
|
|
|
359
359
|
custom?: string | undefined;
|
|
360
360
|
tableName?: string | undefined;
|
|
361
361
|
columnName?: string | undefined;
|
|
362
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
362
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
363
363
|
conjunction?: "AND" | "OR" | undefined;
|
|
364
364
|
}[];
|
|
365
365
|
properties: any[];
|
|
@@ -393,7 +393,7 @@ declare const responseDataSchema: z.ZodObject<{
|
|
|
393
393
|
custom?: string | undefined;
|
|
394
394
|
tableName?: string | undefined;
|
|
395
395
|
columnName?: string | undefined;
|
|
396
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
396
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
397
397
|
conjunction?: "AND" | "OR" | undefined;
|
|
398
398
|
}[];
|
|
399
399
|
properties: any[];
|
|
@@ -426,7 +426,7 @@ declare const responseDataSchema: z.ZodObject<{
|
|
|
426
426
|
custom?: string | undefined;
|
|
427
427
|
tableName?: string | undefined;
|
|
428
428
|
columnName?: string | undefined;
|
|
429
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
429
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
430
430
|
conjunction?: "AND" | "OR" | undefined;
|
|
431
431
|
}[];
|
|
432
432
|
properties: any[];
|
|
@@ -486,7 +486,7 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
486
486
|
where: z.ZodArray<z.ZodObject<{
|
|
487
487
|
tableName: z.ZodOptional<z.ZodString>;
|
|
488
488
|
columnName: z.ZodOptional<z.ZodString>;
|
|
489
|
-
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
489
|
+
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "NOT LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
490
490
|
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
491
491
|
custom: z.ZodOptional<z.ZodString>;
|
|
492
492
|
conjunction: z.ZodOptional<z.ZodEnum<["AND", "OR"]>>;
|
|
@@ -495,14 +495,14 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
495
495
|
custom?: string | undefined;
|
|
496
496
|
tableName?: string | undefined;
|
|
497
497
|
columnName?: string | undefined;
|
|
498
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
498
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
499
499
|
conjunction?: "AND" | "OR" | undefined;
|
|
500
500
|
}, {
|
|
501
501
|
value?: string | number | undefined;
|
|
502
502
|
custom?: string | undefined;
|
|
503
503
|
tableName?: string | undefined;
|
|
504
504
|
columnName?: string | undefined;
|
|
505
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
505
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
506
506
|
conjunction?: "AND" | "OR" | undefined;
|
|
507
507
|
}>, "many">;
|
|
508
508
|
request: z.ZodArray<z.ZodObject<{
|
|
@@ -566,7 +566,7 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
566
566
|
where: z.ZodArray<z.ZodObject<{
|
|
567
567
|
tableName: z.ZodOptional<z.ZodString>;
|
|
568
568
|
columnName: z.ZodOptional<z.ZodString>;
|
|
569
|
-
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
569
|
+
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "NOT LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
570
570
|
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
571
571
|
custom: z.ZodOptional<z.ZodString>;
|
|
572
572
|
conjunction: z.ZodOptional<z.ZodEnum<["AND", "OR"]>>;
|
|
@@ -575,14 +575,14 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
575
575
|
custom?: string | undefined;
|
|
576
576
|
tableName?: string | undefined;
|
|
577
577
|
columnName?: string | undefined;
|
|
578
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
578
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
579
579
|
conjunction?: "AND" | "OR" | undefined;
|
|
580
580
|
}, {
|
|
581
581
|
value?: string | number | undefined;
|
|
582
582
|
custom?: string | undefined;
|
|
583
583
|
tableName?: string | undefined;
|
|
584
584
|
columnName?: string | undefined;
|
|
585
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
585
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
586
586
|
conjunction?: "AND" | "OR" | undefined;
|
|
587
587
|
}>, "many">;
|
|
588
588
|
properties: z.ZodArray<z.ZodLazy<z.ZodType<any, z.ZodTypeDef, any>>, "many">;
|
|
@@ -624,7 +624,7 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
624
624
|
custom?: string | undefined;
|
|
625
625
|
tableName?: string | undefined;
|
|
626
626
|
columnName?: string | undefined;
|
|
627
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
627
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
628
628
|
conjunction?: "AND" | "OR" | undefined;
|
|
629
629
|
}[];
|
|
630
630
|
properties: any[];
|
|
@@ -652,7 +652,7 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
652
652
|
custom?: string | undefined;
|
|
653
653
|
tableName?: string | undefined;
|
|
654
654
|
columnName?: string | undefined;
|
|
655
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
655
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
656
656
|
conjunction?: "AND" | "OR" | undefined;
|
|
657
657
|
}[];
|
|
658
658
|
properties: any[];
|
|
@@ -686,7 +686,7 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
686
686
|
custom?: string | undefined;
|
|
687
687
|
tableName?: string | undefined;
|
|
688
688
|
columnName?: string | undefined;
|
|
689
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
689
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
690
690
|
conjunction?: "AND" | "OR" | undefined;
|
|
691
691
|
}[];
|
|
692
692
|
properties: any[];
|
|
@@ -719,7 +719,7 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
719
719
|
custom?: string | undefined;
|
|
720
720
|
tableName?: string | undefined;
|
|
721
721
|
columnName?: string | undefined;
|
|
722
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
722
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
723
723
|
conjunction?: "AND" | "OR" | undefined;
|
|
724
724
|
}[];
|
|
725
725
|
properties: any[];
|
|
@@ -775,7 +775,7 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
775
775
|
custom?: string | undefined;
|
|
776
776
|
tableName?: string | undefined;
|
|
777
777
|
columnName?: string | undefined;
|
|
778
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
778
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
779
779
|
conjunction?: "AND" | "OR" | undefined;
|
|
780
780
|
}[];
|
|
781
781
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
@@ -813,7 +813,7 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
813
813
|
custom?: string | undefined;
|
|
814
814
|
tableName?: string | undefined;
|
|
815
815
|
columnName?: string | undefined;
|
|
816
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
816
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
817
817
|
conjunction?: "AND" | "OR" | undefined;
|
|
818
818
|
}[];
|
|
819
819
|
properties: any[];
|
|
@@ -855,7 +855,7 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
855
855
|
custom?: string | undefined;
|
|
856
856
|
tableName?: string | undefined;
|
|
857
857
|
columnName?: string | undefined;
|
|
858
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
858
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
859
859
|
conjunction?: "AND" | "OR" | undefined;
|
|
860
860
|
}[];
|
|
861
861
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
@@ -893,7 +893,7 @@ declare const standardRouteSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
893
893
|
custom?: string | undefined;
|
|
894
894
|
tableName?: string | undefined;
|
|
895
895
|
columnName?: string | undefined;
|
|
896
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
896
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
897
897
|
conjunction?: "AND" | "OR" | undefined;
|
|
898
898
|
}[];
|
|
899
899
|
properties: any[];
|
|
@@ -1391,7 +1391,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1391
1391
|
where: z.ZodArray<z.ZodObject<{
|
|
1392
1392
|
tableName: z.ZodOptional<z.ZodString>;
|
|
1393
1393
|
columnName: z.ZodOptional<z.ZodString>;
|
|
1394
|
-
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
1394
|
+
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "NOT LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
1395
1395
|
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1396
1396
|
custom: z.ZodOptional<z.ZodString>;
|
|
1397
1397
|
conjunction: z.ZodOptional<z.ZodEnum<["AND", "OR"]>>;
|
|
@@ -1400,14 +1400,14 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1400
1400
|
custom?: string | undefined;
|
|
1401
1401
|
tableName?: string | undefined;
|
|
1402
1402
|
columnName?: string | undefined;
|
|
1403
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1403
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1404
1404
|
conjunction?: "AND" | "OR" | undefined;
|
|
1405
1405
|
}, {
|
|
1406
1406
|
value?: string | number | undefined;
|
|
1407
1407
|
custom?: string | undefined;
|
|
1408
1408
|
tableName?: string | undefined;
|
|
1409
1409
|
columnName?: string | undefined;
|
|
1410
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1410
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1411
1411
|
conjunction?: "AND" | "OR" | undefined;
|
|
1412
1412
|
}>, "many">;
|
|
1413
1413
|
request: z.ZodArray<z.ZodObject<{
|
|
@@ -1471,7 +1471,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1471
1471
|
where: z.ZodArray<z.ZodObject<{
|
|
1472
1472
|
tableName: z.ZodOptional<z.ZodString>;
|
|
1473
1473
|
columnName: z.ZodOptional<z.ZodString>;
|
|
1474
|
-
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
1474
|
+
operator: z.ZodOptional<z.ZodEnum<["=", "<", ">", "<=", ">=", "!=", "LIKE", "NOT LIKE", "IN", "NOT IN", "STARTS WITH", "ENDS WITH", "IS", "IS NOT"]>>;
|
|
1475
1475
|
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1476
1476
|
custom: z.ZodOptional<z.ZodString>;
|
|
1477
1477
|
conjunction: z.ZodOptional<z.ZodEnum<["AND", "OR"]>>;
|
|
@@ -1480,14 +1480,14 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1480
1480
|
custom?: string | undefined;
|
|
1481
1481
|
tableName?: string | undefined;
|
|
1482
1482
|
columnName?: string | undefined;
|
|
1483
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1483
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1484
1484
|
conjunction?: "AND" | "OR" | undefined;
|
|
1485
1485
|
}, {
|
|
1486
1486
|
value?: string | number | undefined;
|
|
1487
1487
|
custom?: string | undefined;
|
|
1488
1488
|
tableName?: string | undefined;
|
|
1489
1489
|
columnName?: string | undefined;
|
|
1490
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1490
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1491
1491
|
conjunction?: "AND" | "OR" | undefined;
|
|
1492
1492
|
}>, "many">;
|
|
1493
1493
|
properties: z.ZodArray<z.ZodLazy<z.ZodType<any, z.ZodTypeDef, any>>, "many">;
|
|
@@ -1529,7 +1529,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1529
1529
|
custom?: string | undefined;
|
|
1530
1530
|
tableName?: string | undefined;
|
|
1531
1531
|
columnName?: string | undefined;
|
|
1532
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1532
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1533
1533
|
conjunction?: "AND" | "OR" | undefined;
|
|
1534
1534
|
}[];
|
|
1535
1535
|
properties: any[];
|
|
@@ -1557,7 +1557,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1557
1557
|
custom?: string | undefined;
|
|
1558
1558
|
tableName?: string | undefined;
|
|
1559
1559
|
columnName?: string | undefined;
|
|
1560
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1560
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1561
1561
|
conjunction?: "AND" | "OR" | undefined;
|
|
1562
1562
|
}[];
|
|
1563
1563
|
properties: any[];
|
|
@@ -1591,7 +1591,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1591
1591
|
custom?: string | undefined;
|
|
1592
1592
|
tableName?: string | undefined;
|
|
1593
1593
|
columnName?: string | undefined;
|
|
1594
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1594
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1595
1595
|
conjunction?: "AND" | "OR" | undefined;
|
|
1596
1596
|
}[];
|
|
1597
1597
|
properties: any[];
|
|
@@ -1624,7 +1624,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1624
1624
|
custom?: string | undefined;
|
|
1625
1625
|
tableName?: string | undefined;
|
|
1626
1626
|
columnName?: string | undefined;
|
|
1627
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1627
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1628
1628
|
conjunction?: "AND" | "OR" | undefined;
|
|
1629
1629
|
}[];
|
|
1630
1630
|
properties: any[];
|
|
@@ -1680,7 +1680,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1680
1680
|
custom?: string | undefined;
|
|
1681
1681
|
tableName?: string | undefined;
|
|
1682
1682
|
columnName?: string | undefined;
|
|
1683
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1683
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1684
1684
|
conjunction?: "AND" | "OR" | undefined;
|
|
1685
1685
|
}[];
|
|
1686
1686
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
@@ -1718,7 +1718,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1718
1718
|
custom?: string | undefined;
|
|
1719
1719
|
tableName?: string | undefined;
|
|
1720
1720
|
columnName?: string | undefined;
|
|
1721
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1721
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1722
1722
|
conjunction?: "AND" | "OR" | undefined;
|
|
1723
1723
|
}[];
|
|
1724
1724
|
properties: any[];
|
|
@@ -1760,7 +1760,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1760
1760
|
custom?: string | undefined;
|
|
1761
1761
|
tableName?: string | undefined;
|
|
1762
1762
|
columnName?: string | undefined;
|
|
1763
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1763
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1764
1764
|
conjunction?: "AND" | "OR" | undefined;
|
|
1765
1765
|
}[];
|
|
1766
1766
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
@@ -1798,7 +1798,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1798
1798
|
custom?: string | undefined;
|
|
1799
1799
|
tableName?: string | undefined;
|
|
1800
1800
|
columnName?: string | undefined;
|
|
1801
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1801
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1802
1802
|
conjunction?: "AND" | "OR" | undefined;
|
|
1803
1803
|
}[];
|
|
1804
1804
|
properties: any[];
|
|
@@ -1934,7 +1934,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1934
1934
|
custom?: string | undefined;
|
|
1935
1935
|
tableName?: string | undefined;
|
|
1936
1936
|
columnName?: string | undefined;
|
|
1937
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1937
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1938
1938
|
conjunction?: "AND" | "OR" | undefined;
|
|
1939
1939
|
}[];
|
|
1940
1940
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
@@ -1972,7 +1972,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
1972
1972
|
custom?: string | undefined;
|
|
1973
1973
|
tableName?: string | undefined;
|
|
1974
1974
|
columnName?: string | undefined;
|
|
1975
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1975
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
1976
1976
|
conjunction?: "AND" | "OR" | undefined;
|
|
1977
1977
|
}[];
|
|
1978
1978
|
properties: any[];
|
|
@@ -2041,7 +2041,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
2041
2041
|
custom?: string | undefined;
|
|
2042
2042
|
tableName?: string | undefined;
|
|
2043
2043
|
columnName?: string | undefined;
|
|
2044
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2044
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2045
2045
|
conjunction?: "AND" | "OR" | undefined;
|
|
2046
2046
|
}[];
|
|
2047
2047
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
@@ -2079,7 +2079,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
2079
2079
|
custom?: string | undefined;
|
|
2080
2080
|
tableName?: string | undefined;
|
|
2081
2081
|
columnName?: string | undefined;
|
|
2082
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2082
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2083
2083
|
conjunction?: "AND" | "OR" | undefined;
|
|
2084
2084
|
}[];
|
|
2085
2085
|
properties: any[];
|
|
@@ -2191,7 +2191,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
2191
2191
|
custom?: string | undefined;
|
|
2192
2192
|
tableName?: string | undefined;
|
|
2193
2193
|
columnName?: string | undefined;
|
|
2194
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2194
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2195
2195
|
conjunction?: "AND" | "OR" | undefined;
|
|
2196
2196
|
}[];
|
|
2197
2197
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
@@ -2229,7 +2229,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
2229
2229
|
custom?: string | undefined;
|
|
2230
2230
|
tableName?: string | undefined;
|
|
2231
2231
|
columnName?: string | undefined;
|
|
2232
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2232
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2233
2233
|
conjunction?: "AND" | "OR" | undefined;
|
|
2234
2234
|
}[];
|
|
2235
2235
|
properties: any[];
|
|
@@ -2340,7 +2340,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
2340
2340
|
custom?: string | undefined;
|
|
2341
2341
|
tableName?: string | undefined;
|
|
2342
2342
|
columnName?: string | undefined;
|
|
2343
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2343
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2344
2344
|
conjunction?: "AND" | "OR" | undefined;
|
|
2345
2345
|
}[];
|
|
2346
2346
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
@@ -2378,7 +2378,7 @@ declare const resturaSchema: z.ZodObject<{
|
|
|
2378
2378
|
custom?: string | undefined;
|
|
2379
2379
|
tableName?: string | undefined;
|
|
2380
2380
|
columnName?: string | undefined;
|
|
2381
|
-
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2381
|
+
operator?: "=" | "<" | ">" | "<=" | ">=" | "!=" | "LIKE" | "NOT LIKE" | "IN" | "NOT IN" | "STARTS WITH" | "ENDS WITH" | "IS" | "IS NOT" | undefined;
|
|
2382
2382
|
conjunction?: "AND" | "OR" | undefined;
|
|
2383
2383
|
}[];
|
|
2384
2384
|
properties: any[];
|