@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/src/contract.d.ts
CHANGED
@@ -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").
|
39738
|
-
pageSize: import("zod").ZodOptional<import("zod").
|
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?:
|
39788
|
-
pageSize?:
|
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.
|
854
|
-
pageSize: z.ZodOptional<z.
|
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?:
|
904
|
-
pageSize?:
|
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.
|
659
|
-
pageSize: z.ZodOptional<z.
|
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?:
|
709
|
-
pageSize?:
|
708
|
+
page?: string | undefined;
|
709
|
+
pageSize?: string | undefined;
|
710
710
|
agent?: string[] | undefined;
|
711
711
|
selectedDate?: string | undefined;
|
712
712
|
keyword?: string | undefined;
|