@kl1/contracts 1.0.82 → 1.0.83
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 +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- 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 +5 -0
- 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/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
@@ -13594,6 +13594,7 @@ export declare const apiContract: {
|
|
13594
13594
|
startedDate: import("zod").ZodNullable<import("zod").ZodString>;
|
13595
13595
|
handledTime: import("zod").ZodNullable<import("zod").ZodString>;
|
13596
13596
|
firstResponseTime: import("zod").ZodNullable<import("zod").ZodString>;
|
13597
|
+
resolutionTime: import("zod").ZodNullable<import("zod").ZodString>;
|
13597
13598
|
slaMeet: import("zod").ZodNullable<import("zod").ZodString>;
|
13598
13599
|
evaluateForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
13599
13600
|
id: import("zod").ZodString;
|
@@ -19118,6 +19119,7 @@ export declare const apiContract: {
|
|
19118
19119
|
} | null;
|
19119
19120
|
customerPhone: string | null;
|
19120
19121
|
channelType: string | null;
|
19122
|
+
resolutionTime: string | null;
|
19121
19123
|
slaMeet: string | null;
|
19122
19124
|
evaluateForm: {
|
19123
19125
|
id: string;
|
@@ -19840,6 +19842,7 @@ export declare const apiContract: {
|
|
19840
19842
|
} | null;
|
19841
19843
|
customerPhone: string | null;
|
19842
19844
|
channelType: string | null;
|
19845
|
+
resolutionTime: string | null;
|
19843
19846
|
slaMeet: string | null;
|
19844
19847
|
evaluateForm: {
|
19845
19848
|
id: string;
|
@@ -20568,6 +20571,7 @@ export declare const apiContract: {
|
|
20568
20571
|
} | null;
|
20569
20572
|
customerPhone: string | null;
|
20570
20573
|
channelType: string | null;
|
20574
|
+
resolutionTime: string | null;
|
20571
20575
|
slaMeet: string | null;
|
20572
20576
|
evaluateForm: {
|
20573
20577
|
id: string;
|
@@ -21296,6 +21300,7 @@ export declare const apiContract: {
|
|
21296
21300
|
} | null;
|
21297
21301
|
customerPhone: string | null;
|
21298
21302
|
channelType: string | null;
|
21303
|
+
resolutionTime: string | null;
|
21299
21304
|
slaMeet: string | null;
|
21300
21305
|
evaluateForm: {
|
21301
21306
|
id: string;
|