@kl1/contracts 1.0.41 → 1.0.42

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.
@@ -1688,7 +1688,7 @@ export declare const channelContract: {
1688
1688
  responses: {
1689
1689
  200: z.ZodObject<{
1690
1690
  requestId: z.ZodString;
1691
- channels: z.ZodArray<z.ZodOptional<z.ZodObject<{
1691
+ data: z.ZodArray<z.ZodOptional<z.ZodObject<{
1692
1692
  id: z.ZodOptional<z.ZodString>;
1693
1693
  createdAt: z.ZodOptional<z.ZodDate>;
1694
1694
  updatedAt: z.ZodOptional<z.ZodDate>;
@@ -2049,8 +2049,7 @@ export declare const channelContract: {
2049
2049
  } | undefined;
2050
2050
  }>>, "many">;
2051
2051
  }, "strip", z.ZodTypeAny, {
2052
- requestId: string;
2053
- channels: ({
2052
+ data: ({
2054
2053
  id?: string | undefined;
2055
2054
  createdAt?: Date | undefined;
2056
2055
  updatedAt?: Date | undefined;
@@ -2114,9 +2113,9 @@ export declare const channelContract: {
2114
2113
  };
2115
2114
  } | undefined;
2116
2115
  } | undefined)[];
2117
- }, {
2118
2116
  requestId: string;
2119
- channels: ({
2117
+ }, {
2118
+ data: ({
2120
2119
  id?: string | undefined;
2121
2120
  createdAt?: Date | undefined;
2122
2121
  updatedAt?: Date | undefined;
@@ -2180,6 +2179,7 @@ export declare const channelContract: {
2180
2179
  };
2181
2180
  } | undefined;
2182
2181
  } | undefined)[];
2182
+ requestId: string;
2183
2183
  }>;
2184
2184
  };
2185
2185
  path: "channel/";
@@ -18179,6 +18179,7 @@ export declare const apiContract: {
18179
18179
  telephonySignature: string | null;
18180
18180
  };
18181
18181
  }>>;
18182
+ contactLabel: import("zod").ZodArray<import("zod").ZodString, "many">;
18182
18183
  }, "strip", import("zod").ZodTypeAny, {
18183
18184
  id: string;
18184
18185
  channel: string | null;
@@ -18817,6 +18818,7 @@ export declare const apiContract: {
18817
18818
  telephonySignature: string | null;
18818
18819
  };
18819
18820
  } | null;
18821
+ contactLabel: string[];
18820
18822
  }, {
18821
18823
  id: string;
18822
18824
  channel: string | null;
@@ -19455,6 +19457,7 @@ export declare const apiContract: {
19455
19457
  telephonySignature: string | null;
19456
19458
  };
19457
19459
  } | null;
19460
+ contactLabel: string[];
19458
19461
  }>, "many">;
19459
19462
  }, "strip", import("zod").ZodTypeAny, {
19460
19463
  total: number;
@@ -20099,6 +20102,7 @@ export declare const apiContract: {
20099
20102
  telephonySignature: string | null;
20100
20103
  };
20101
20104
  } | null;
20105
+ contactLabel: string[];
20102
20106
  }[];
20103
20107
  }, {
20104
20108
  total: number;
@@ -20743,6 +20747,7 @@ export declare const apiContract: {
20743
20747
  telephonySignature: string | null;
20744
20748
  };
20745
20749
  } | null;
20750
+ contactLabel: string[];
20746
20751
  }[];
20747
20752
  }>;
20748
20753
  401: import("zod").ZodObject<{
@@ -23869,12 +23874,12 @@ export declare const apiContract: {
23869
23874
  summary: "Get all users";
23870
23875
  method: "GET";
23871
23876
  query: import("zod").ZodOptional<import("zod").ZodObject<{
23872
- page: import("zod").ZodDefault<import("zod").ZodNumber>;
23873
- pageSize: import("zod").ZodDefault<import("zod").ZodNumber>;
23877
+ page: import("zod").ZodOptional<import("zod").ZodNumber>;
23878
+ pageSize: import("zod").ZodOptional<import("zod").ZodNumber>;
23874
23879
  keyword: import("zod").ZodOptional<import("zod").ZodString>;
23875
23880
  }, "strip", import("zod").ZodTypeAny, {
23876
- page: number;
23877
- pageSize: number;
23881
+ page?: number | undefined;
23882
+ pageSize?: number | undefined;
23878
23883
  keyword?: string | undefined;
23879
23884
  }, {
23880
23885
  page?: number | undefined;
@@ -30222,7 +30227,7 @@ export declare const apiContract: {
30222
30227
  responses: {
30223
30228
  200: import("zod").ZodObject<{
30224
30229
  requestId: import("zod").ZodString;
30225
- channels: import("zod").ZodArray<import("zod").ZodOptional<import("zod").ZodObject<{
30230
+ data: import("zod").ZodArray<import("zod").ZodOptional<import("zod").ZodObject<{
30226
30231
  id: import("zod").ZodOptional<import("zod").ZodString>;
30227
30232
  createdAt: import("zod").ZodOptional<import("zod").ZodDate>;
30228
30233
  updatedAt: import("zod").ZodOptional<import("zod").ZodDate>;
@@ -30583,8 +30588,7 @@ export declare const apiContract: {
30583
30588
  } | undefined;
30584
30589
  }>>, "many">;
30585
30590
  }, "strip", import("zod").ZodTypeAny, {
30586
- requestId: string;
30587
- channels: ({
30591
+ data: ({
30588
30592
  id?: string | undefined;
30589
30593
  createdAt?: Date | undefined;
30590
30594
  updatedAt?: Date | undefined;
@@ -30648,9 +30652,9 @@ export declare const apiContract: {
30648
30652
  };
30649
30653
  } | undefined;
30650
30654
  } | undefined)[];
30651
- }, {
30652
30655
  requestId: string;
30653
- channels: ({
30656
+ }, {
30657
+ data: ({
30654
30658
  id?: string | undefined;
30655
30659
  createdAt?: Date | undefined;
30656
30660
  updatedAt?: Date | undefined;
@@ -30714,6 +30718,7 @@ export declare const apiContract: {
30714
30718
  };
30715
30719
  } | undefined;
30716
30720
  } | undefined)[];
30721
+ requestId: string;
30717
30722
  }>;
30718
30723
  };
30719
30724
  path: "channel/";