@socotra/ec-react-schemas 2.32.1-next.1 → 2.33.0-next.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/index.d.ts +15 -7
- package/dist/index.es.js +2374 -2367
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +5 -5
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -7361,12 +7361,16 @@ export declare const MatchEnum: z.ZodEnum<{
|
|
|
7361
7361
|
exact: "exact";
|
|
7362
7362
|
startsWith: "startsWith";
|
|
7363
7363
|
fuzzy: "fuzzy";
|
|
7364
|
+
greaterThan: "greaterThan";
|
|
7365
|
+
lessThan: "lessThan";
|
|
7364
7366
|
}>;
|
|
7365
7367
|
|
|
7366
7368
|
export declare const MatchEnumSchema: z.ZodEnum<{
|
|
7367
7369
|
exact: "exact";
|
|
7368
7370
|
startsWith: "startsWith";
|
|
7369
7371
|
fuzzy: "fuzzy";
|
|
7372
|
+
greaterThan: "greaterThan";
|
|
7373
|
+
lessThan: "lessThan";
|
|
7370
7374
|
}>;
|
|
7371
7375
|
|
|
7372
7376
|
/**
|
|
@@ -12370,13 +12374,15 @@ export declare const SearchRequestSchema: z.ZodObject<{
|
|
|
12370
12374
|
}>>;
|
|
12371
12375
|
searchString: z.ZodOptional<z.ZodString>;
|
|
12372
12376
|
searchTerms: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12373
|
-
searchTerm: z.ZodString;
|
|
12374
|
-
fieldName: z.ZodOptional<z.ZodString>;
|
|
12375
12377
|
match: z.ZodOptional<z.ZodEnum<{
|
|
12376
12378
|
exact: "exact";
|
|
12377
12379
|
startsWith: "startsWith";
|
|
12378
12380
|
fuzzy: "fuzzy";
|
|
12381
|
+
greaterThan: "greaterThan";
|
|
12382
|
+
lessThan: "lessThan";
|
|
12379
12383
|
}>>;
|
|
12384
|
+
searchTerm: z.ZodString;
|
|
12385
|
+
fieldName: z.ZodOptional<z.ZodString>;
|
|
12380
12386
|
absolute: z.ZodOptional<z.ZodEnum<{
|
|
12381
12387
|
none: "none";
|
|
12382
12388
|
excluded: "excluded";
|
|
@@ -12496,21 +12502,23 @@ export declare const SearchTasksRequestBffSchema: z.ZodObject<{
|
|
|
12496
12502
|
taskNumber: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12497
12503
|
referenceType: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12498
12504
|
taskType: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12499
|
-
|
|
12500
|
-
|
|
12505
|
+
deadlineTimeStart: z.ZodOptional<z.ZodString>;
|
|
12506
|
+
deadlineTimeEnd: z.ZodOptional<z.ZodString>;
|
|
12501
12507
|
taskState: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12502
12508
|
}, z.core.$strip>;
|
|
12503
12509
|
|
|
12504
12510
|
export declare type SearchTermRequest = z.infer<typeof SearchTermRequestSchema>;
|
|
12505
12511
|
|
|
12506
12512
|
export declare const SearchTermRequestSchema: z.ZodObject<{
|
|
12507
|
-
searchTerm: z.ZodString;
|
|
12508
|
-
fieldName: z.ZodOptional<z.ZodString>;
|
|
12509
12513
|
match: z.ZodOptional<z.ZodEnum<{
|
|
12510
12514
|
exact: "exact";
|
|
12511
12515
|
startsWith: "startsWith";
|
|
12512
12516
|
fuzzy: "fuzzy";
|
|
12517
|
+
greaterThan: "greaterThan";
|
|
12518
|
+
lessThan: "lessThan";
|
|
12513
12519
|
}>>;
|
|
12520
|
+
searchTerm: z.ZodString;
|
|
12521
|
+
fieldName: z.ZodOptional<z.ZodString>;
|
|
12514
12522
|
absolute: z.ZodOptional<z.ZodEnum<{
|
|
12515
12523
|
none: "none";
|
|
12516
12524
|
excluded: "excluded";
|
|
@@ -13191,11 +13199,11 @@ export declare type TaskListSortByEnum = z.infer<typeof TaskListSortByEnumSchema
|
|
|
13191
13199
|
|
|
13192
13200
|
export declare const TaskListSortByEnumSchema: z.ZodEnum<{
|
|
13193
13201
|
referenceType: "referenceType";
|
|
13202
|
+
deadlineTime: "deadlineTime";
|
|
13194
13203
|
assignedTo: "assignedTo";
|
|
13195
13204
|
taskState: "taskState";
|
|
13196
13205
|
taskNumber: "taskNumber";
|
|
13197
13206
|
taskType: "taskType";
|
|
13198
|
-
dueDate: "dueDate";
|
|
13199
13207
|
}>;
|
|
13200
13208
|
|
|
13201
13209
|
export declare const TaskListSortOrderEnumSchema: z.ZodEnum<{
|