@kl1/contracts 1.0.22 → 1.0.23
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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +4 -4
- package/dist/src/ticket/index.d.ts +4 -4
- package/dist/src/ticket/validation.d.ts +4 -4
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -1882,8 +1882,8 @@ var CustomFieldQuery = z32.object({
|
|
1882
1882
|
value: z32.union([z32.string(), z32.array(z32.string())])
|
1883
1883
|
});
|
1884
1884
|
var GetAllTicketQuerySchema = z32.object({
|
1885
|
-
page: z32.
|
1886
|
-
pageSize: z32.
|
1885
|
+
page: z32.string().transform((value) => Number(value)),
|
1886
|
+
pageSize: z32.string().transform((value) => Number(value)),
|
1887
1887
|
agent: z32.array(z32.string()),
|
1888
1888
|
selectedDate: z32.string(),
|
1889
1889
|
keyword: z32.string(),
|