@kl1/contracts 1.0.67 → 1.0.68
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 +4 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -7
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/contract.d.ts +16 -31
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/dashboard/index.d.ts +16 -31
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +6 -15
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/package.json +1 -1
@@ -0,0 +1,17 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare const appContract: {
|
3
|
+
getMessage: {
|
4
|
+
method: "GET";
|
5
|
+
responses: {
|
6
|
+
200: z.ZodObject<{
|
7
|
+
message: z.ZodString;
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
9
|
+
message: string;
|
10
|
+
}, {
|
11
|
+
message: string;
|
12
|
+
}>;
|
13
|
+
};
|
14
|
+
path: "/";
|
15
|
+
};
|
16
|
+
};
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/app/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;CAQtB,CAAC"}
|
package/dist/src/contract.d.ts
CHANGED
@@ -23281,43 +23281,28 @@ export declare const apiContract: {
|
|
23281
23281
|
responses: {
|
23282
23282
|
200: import("zod").ZodObject<{
|
23283
23283
|
requestId: import("zod").ZodString;
|
23284
|
-
messageRoomStatusDispositionData: import("zod").ZodObject<{
|
23285
|
-
|
23286
|
-
|
23287
|
-
followUpDispositionCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
23288
|
-
blankDispositionCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
23289
|
-
escalatedDispositionCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
23284
|
+
messageRoomStatusDispositionData: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
23285
|
+
name: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
23286
|
+
count: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
23290
23287
|
}, "strip", import("zod").ZodTypeAny, {
|
23291
|
-
|
23292
|
-
|
23293
|
-
followUpDispositionCount: number | null;
|
23294
|
-
blankDispositionCount: number | null;
|
23295
|
-
escalatedDispositionCount: number | null;
|
23288
|
+
name?: string | null | undefined;
|
23289
|
+
count?: number | null | undefined;
|
23296
23290
|
}, {
|
23297
|
-
|
23298
|
-
|
23299
|
-
|
23300
|
-
blankDispositionCount: number | null;
|
23301
|
-
escalatedDispositionCount: number | null;
|
23302
|
-
}>;
|
23291
|
+
name?: string | null | undefined;
|
23292
|
+
count?: number | null | undefined;
|
23293
|
+
}>, "many">>;
|
23303
23294
|
}, "strip", import("zod").ZodTypeAny, {
|
23304
23295
|
requestId: string;
|
23305
|
-
messageRoomStatusDispositionData
|
23306
|
-
|
23307
|
-
|
23308
|
-
|
23309
|
-
blankDispositionCount: number | null;
|
23310
|
-
escalatedDispositionCount: number | null;
|
23311
|
-
};
|
23296
|
+
messageRoomStatusDispositionData?: {
|
23297
|
+
name?: string | null | undefined;
|
23298
|
+
count?: number | null | undefined;
|
23299
|
+
}[] | undefined;
|
23312
23300
|
}, {
|
23313
23301
|
requestId: string;
|
23314
|
-
messageRoomStatusDispositionData
|
23315
|
-
|
23316
|
-
|
23317
|
-
|
23318
|
-
blankDispositionCount: number | null;
|
23319
|
-
escalatedDispositionCount: number | null;
|
23320
|
-
};
|
23302
|
+
messageRoomStatusDispositionData?: {
|
23303
|
+
name?: string | null | undefined;
|
23304
|
+
count?: number | null | undefined;
|
23305
|
+
}[] | undefined;
|
23321
23306
|
}>;
|
23322
23307
|
401: import("zod").ZodObject<{
|
23323
23308
|
message: import("zod").ZodString;
|