@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.
- package/dist/index.js +24 -19
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +24 -19
- package/dist/index.mjs.map +1 -1
- package/dist/src/channel/index.d.ts +5 -5
- package/dist/src/chat/index.d.ts +159 -5308
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +61 -36
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +527 -5671
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +5 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +3 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +4 -4
- package/package.json +1 -1
@@ -1688,7 +1688,7 @@ export declare const channelContract: {
|
|
1688
1688
|
responses: {
|
1689
1689
|
200: z.ZodObject<{
|
1690
1690
|
requestId: z.ZodString;
|
1691
|
-
|
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
|
-
|
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
|
-
|
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/";
|