@socotra/ec-react-schemas 2.32.1-next.1 → 2.33.0-next.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.ts +19 -7
- package/dist/index.es.js +2659 -2651
- 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";
|
|
@@ -12384,6 +12390,10 @@ export declare const SearchRequestSchema: z.ZodObject<{
|
|
|
12384
12390
|
}>>;
|
|
12385
12391
|
}, z.core.$strip>>>;
|
|
12386
12392
|
sortField: z.ZodOptional<z.ZodString>;
|
|
12393
|
+
sortOrder: z.ZodOptional<z.ZodEnum<{
|
|
12394
|
+
asc: "asc";
|
|
12395
|
+
desc: "desc";
|
|
12396
|
+
}>>;
|
|
12387
12397
|
}, z.core.$strip>;
|
|
12388
12398
|
|
|
12389
12399
|
/** @deprecated - use SearchRequest instead */
|
|
@@ -12496,21 +12506,23 @@ export declare const SearchTasksRequestBffSchema: z.ZodObject<{
|
|
|
12496
12506
|
taskNumber: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12497
12507
|
referenceType: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12498
12508
|
taskType: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12499
|
-
|
|
12500
|
-
|
|
12509
|
+
deadlineTimeStart: z.ZodOptional<z.ZodString>;
|
|
12510
|
+
deadlineTimeEnd: z.ZodOptional<z.ZodString>;
|
|
12501
12511
|
taskState: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12502
12512
|
}, z.core.$strip>;
|
|
12503
12513
|
|
|
12504
12514
|
export declare type SearchTermRequest = z.infer<typeof SearchTermRequestSchema>;
|
|
12505
12515
|
|
|
12506
12516
|
export declare const SearchTermRequestSchema: z.ZodObject<{
|
|
12507
|
-
searchTerm: z.ZodString;
|
|
12508
|
-
fieldName: z.ZodOptional<z.ZodString>;
|
|
12509
12517
|
match: z.ZodOptional<z.ZodEnum<{
|
|
12510
12518
|
exact: "exact";
|
|
12511
12519
|
startsWith: "startsWith";
|
|
12512
12520
|
fuzzy: "fuzzy";
|
|
12521
|
+
greaterThan: "greaterThan";
|
|
12522
|
+
lessThan: "lessThan";
|
|
12513
12523
|
}>>;
|
|
12524
|
+
searchTerm: z.ZodString;
|
|
12525
|
+
fieldName: z.ZodOptional<z.ZodString>;
|
|
12514
12526
|
absolute: z.ZodOptional<z.ZodEnum<{
|
|
12515
12527
|
none: "none";
|
|
12516
12528
|
excluded: "excluded";
|
|
@@ -13191,11 +13203,11 @@ export declare type TaskListSortByEnum = z.infer<typeof TaskListSortByEnumSchema
|
|
|
13191
13203
|
|
|
13192
13204
|
export declare const TaskListSortByEnumSchema: z.ZodEnum<{
|
|
13193
13205
|
referenceType: "referenceType";
|
|
13206
|
+
deadlineTime: "deadlineTime";
|
|
13194
13207
|
assignedTo: "assignedTo";
|
|
13195
13208
|
taskState: "taskState";
|
|
13196
13209
|
taskNumber: "taskNumber";
|
|
13197
13210
|
taskType: "taskType";
|
|
13198
|
-
dueDate: "dueDate";
|
|
13199
13211
|
}>;
|
|
13200
13212
|
|
|
13201
13213
|
export declare const TaskListSortOrderEnumSchema: z.ZodEnum<{
|