@kl1/contracts 1.0.40 → 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/";