@kl1/contracts 1.0.24 → 1.0.26
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 +167 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +164 -4
- package/dist/index.mjs.map +1 -1
- package/dist/src/activity-log/index.d.ts +399 -0
- package/dist/src/activity-log/index.d.ts.map +1 -0
- package/dist/src/activity-log/schema.d.ts +369 -0
- package/dist/src/activity-log/schema.d.ts.map +1 -0
- package/dist/src/activity-log/validation.d.ts +2 -0
- package/dist/src/activity-log/validation.d.ts.map +1 -0
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/comment/index.d.ts +4688 -0
- package/dist/src/comment/index.d.ts.map +1 -0
- package/dist/src/comment/schema.d.ts +1257 -0
- package/dist/src/comment/schema.d.ts.map +1 -0
- package/dist/src/comment/validation.d.ts +38 -0
- package/dist/src/comment/validation.d.ts.map +1 -0
- package/dist/src/contract.d.ts +5206 -0
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +127 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.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 +10 -4
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/comment/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUxB,CAAC"}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare const CreateCommentSchema: z.ZodObject<{
|
3
|
+
ticketId: z.ZodString;
|
4
|
+
comment: z.ZodString;
|
5
|
+
mentions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
6
|
+
}, "strip", z.ZodTypeAny, {
|
7
|
+
ticketId: string;
|
8
|
+
comment: string;
|
9
|
+
mentions?: string[] | undefined;
|
10
|
+
}, {
|
11
|
+
ticketId: string;
|
12
|
+
comment: string;
|
13
|
+
mentions?: string[] | undefined;
|
14
|
+
}>;
|
15
|
+
export declare const UpdateCommentSchema: z.ZodObject<{
|
16
|
+
ticketId: z.ZodString;
|
17
|
+
comment: z.ZodString;
|
18
|
+
mentions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
19
|
+
}, "strip", z.ZodTypeAny, {
|
20
|
+
ticketId: string;
|
21
|
+
comment: string;
|
22
|
+
mentions?: string[] | undefined;
|
23
|
+
}, {
|
24
|
+
ticketId: string;
|
25
|
+
comment: string;
|
26
|
+
mentions?: string[] | undefined;
|
27
|
+
}>;
|
28
|
+
export declare const GetCommentQuerySchema: z.ZodOptional<z.ZodObject<{
|
29
|
+
ticketId: z.ZodOptional<z.ZodString>;
|
30
|
+
deleted: z.ZodEffects<z.ZodDefault<z.ZodEnum<["true", "false"]>>, boolean, "false" | "true" | undefined>;
|
31
|
+
}, "strip", z.ZodTypeAny, {
|
32
|
+
deleted: boolean;
|
33
|
+
ticketId?: string | undefined;
|
34
|
+
}, {
|
35
|
+
ticketId?: string | undefined;
|
36
|
+
deleted?: "false" | "true" | undefined;
|
37
|
+
}>>;
|
38
|
+
//# sourceMappingURL=validation.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/comment/validation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;EAI9B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;EAAsB,CAAC;AAEvD,eAAO,MAAM,qBAAqB;;;;;;;;;GAQrB,CAAC"}
|