@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.
@@ -39734,8 +39734,8 @@ export declare const apiContract: {
39734
39734
  summary: "Get all tickets";
39735
39735
  method: "GET";
39736
39736
  query: import("zod").ZodObject<{
39737
- page: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
39738
- pageSize: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
39737
+ page: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, number, string>>;
39738
+ pageSize: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, number, string>>;
39739
39739
  agent: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
39740
39740
  selectedDate: import("zod").ZodOptional<import("zod").ZodString>;
39741
39741
  keyword: import("zod").ZodOptional<import("zod").ZodString>;
@@ -39784,8 +39784,8 @@ export declare const apiContract: {
39784
39784
  attributeId: string;
39785
39785
  }[] | undefined;
39786
39786
  }, {
39787
- page?: number | undefined;
39788
- pageSize?: number | undefined;
39787
+ page?: string | undefined;
39788
+ pageSize?: string | undefined;
39789
39789
  agent?: string[] | undefined;
39790
39790
  selectedDate?: string | undefined;
39791
39791
  keyword?: string | undefined;
@@ -850,8 +850,8 @@ export declare const ticketContract: {
850
850
  summary: "Get all tickets";
851
851
  method: "GET";
852
852
  query: z.ZodObject<{
853
- page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
854
- pageSize: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
853
+ page: z.ZodOptional<z.ZodEffects<z.ZodString, number, string>>;
854
+ pageSize: z.ZodOptional<z.ZodEffects<z.ZodString, number, string>>;
855
855
  agent: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
856
856
  selectedDate: z.ZodOptional<z.ZodString>;
857
857
  keyword: z.ZodOptional<z.ZodString>;
@@ -900,8 +900,8 @@ export declare const ticketContract: {
900
900
  attributeId: string;
901
901
  }[] | undefined;
902
902
  }, {
903
- page?: number | undefined;
904
- pageSize?: number | undefined;
903
+ page?: string | undefined;
904
+ pageSize?: string | undefined;
905
905
  agent?: string[] | undefined;
906
906
  selectedDate?: string | undefined;
907
907
  keyword?: string | undefined;
@@ -655,8 +655,8 @@ export declare const CustomFieldQuery: z.ZodObject<{
655
655
  attributeId: string;
656
656
  }>;
657
657
  export declare const GetAllTicketQuerySchema: z.ZodObject<{
658
- page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
659
- pageSize: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
658
+ page: z.ZodOptional<z.ZodEffects<z.ZodString, number, string>>;
659
+ pageSize: z.ZodOptional<z.ZodEffects<z.ZodString, number, string>>;
660
660
  agent: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
661
661
  selectedDate: z.ZodOptional<z.ZodString>;
662
662
  keyword: z.ZodOptional<z.ZodString>;
@@ -705,8 +705,8 @@ export declare const GetAllTicketQuerySchema: z.ZodObject<{
705
705
  attributeId: string;
706
706
  }[] | undefined;
707
707
  }, {
708
- page?: number | undefined;
709
- pageSize?: number | undefined;
708
+ page?: string | undefined;
709
+ pageSize?: string | undefined;
710
710
  agent?: string[] | undefined;
711
711
  selectedDate?: string | undefined;
712
712
  keyword?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl1/contracts",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/src/index.d.ts",