@kl1/contracts 1.1.19-uat → 1.1.20-uat
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 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -3
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +3 -0
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +3 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +9 -6
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/snippet/index.d.ts +6 -6
- package/dist/src/snippet/validation.d.ts +6 -6
- package/package.json +1 -1
@@ -146,13 +146,13 @@ export declare const snippetContract: {
|
|
146
146
|
updateSnippetGroup: {
|
147
147
|
body: z.ZodObject<{
|
148
148
|
name: z.ZodOptional<z.ZodString>;
|
149
|
-
|
149
|
+
platformType: z.ZodOptional<z.ZodString>;
|
150
150
|
}, "strip", z.ZodTypeAny, {
|
151
151
|
name?: string | undefined;
|
152
|
-
|
152
|
+
platformType?: string | undefined;
|
153
153
|
}, {
|
154
154
|
name?: string | undefined;
|
155
|
-
|
155
|
+
platformType?: string | undefined;
|
156
156
|
}>;
|
157
157
|
method: "PATCH";
|
158
158
|
pathParams: z.ZodObject<{
|
@@ -548,20 +548,20 @@ export declare const snippetContract: {
|
|
548
548
|
shortcutName: z.ZodString;
|
549
549
|
contentValue: z.ZodOptional<z.ZodString>;
|
550
550
|
snippetGroupId: z.ZodString;
|
551
|
-
|
551
|
+
snippetContentId: z.ZodString;
|
552
552
|
}, "strip", z.ZodTypeAny, {
|
553
553
|
contentType: string;
|
554
554
|
platformType: string;
|
555
555
|
shortcutName: string;
|
556
556
|
snippetGroupId: string;
|
557
|
-
|
557
|
+
snippetContentId: string;
|
558
558
|
contentValue?: string | undefined;
|
559
559
|
}, {
|
560
560
|
contentType: string;
|
561
561
|
platformType: string;
|
562
562
|
shortcutName: string;
|
563
563
|
snippetGroupId: string;
|
564
|
-
|
564
|
+
snippetContentId: string;
|
565
565
|
contentValue?: string | undefined;
|
566
566
|
}>;
|
567
567
|
method: "PATCH";
|
@@ -14,13 +14,13 @@ export declare const CreateSnippetGroupSchema: z.ZodObject<{
|
|
14
14
|
}>;
|
15
15
|
export declare const UpdateSnippetGroupSchema: z.ZodObject<{
|
16
16
|
name: z.ZodOptional<z.ZodString>;
|
17
|
-
|
17
|
+
platformType: z.ZodOptional<z.ZodString>;
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
19
19
|
name?: string | undefined;
|
20
|
-
|
20
|
+
platformType?: string | undefined;
|
21
21
|
}, {
|
22
22
|
name?: string | undefined;
|
23
|
-
|
23
|
+
platformType?: string | undefined;
|
24
24
|
}>;
|
25
25
|
export declare const DeleteSnippetGroupSchema: z.ZodObject<{
|
26
26
|
id: z.ZodString;
|
@@ -54,20 +54,20 @@ export declare const UpdateSnippetSchema: z.ZodObject<{
|
|
54
54
|
shortcutName: z.ZodString;
|
55
55
|
contentValue: z.ZodOptional<z.ZodString>;
|
56
56
|
snippetGroupId: z.ZodString;
|
57
|
-
|
57
|
+
snippetContentId: z.ZodString;
|
58
58
|
}, "strip", z.ZodTypeAny, {
|
59
59
|
contentType: string;
|
60
60
|
platformType: string;
|
61
61
|
shortcutName: string;
|
62
62
|
snippetGroupId: string;
|
63
|
-
|
63
|
+
snippetContentId: string;
|
64
64
|
contentValue?: string | undefined;
|
65
65
|
}, {
|
66
66
|
contentType: string;
|
67
67
|
platformType: string;
|
68
68
|
shortcutName: string;
|
69
69
|
snippetGroupId: string;
|
70
|
-
|
70
|
+
snippetContentId: string;
|
71
71
|
contentValue?: string | undefined;
|
72
72
|
}>;
|
73
73
|
export declare const DeleteSnippetSchema: z.ZodObject<{
|