@socotra/ec-react-schemas 2.33.0-next.0 → 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 +4 -0
- package/dist/index.es.js +335 -334
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +4 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -12390,6 +12390,10 @@ export declare const SearchRequestSchema: z.ZodObject<{
|
|
|
12390
12390
|
}>>;
|
|
12391
12391
|
}, z.core.$strip>>>;
|
|
12392
12392
|
sortField: z.ZodOptional<z.ZodString>;
|
|
12393
|
+
sortOrder: z.ZodOptional<z.ZodEnum<{
|
|
12394
|
+
asc: "asc";
|
|
12395
|
+
desc: "desc";
|
|
12396
|
+
}>>;
|
|
12393
12397
|
}, z.core.$strip>;
|
|
12394
12398
|
|
|
12395
12399
|
/** @deprecated - use SearchRequest instead */
|