@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.
@@ -146,13 +146,13 @@ export declare const snippetContract: {
146
146
  updateSnippetGroup: {
147
147
  body: z.ZodObject<{
148
148
  name: z.ZodOptional<z.ZodString>;
149
- paltformType: z.ZodOptional<z.ZodString>;
149
+ platformType: z.ZodOptional<z.ZodString>;
150
150
  }, "strip", z.ZodTypeAny, {
151
151
  name?: string | undefined;
152
- paltformType?: string | undefined;
152
+ platformType?: string | undefined;
153
153
  }, {
154
154
  name?: string | undefined;
155
- paltformType?: string | undefined;
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
- snippetId: z.ZodString;
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
- snippetId: string;
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
- snippetId: string;
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
- paltformType: z.ZodOptional<z.ZodString>;
17
+ platformType: z.ZodOptional<z.ZodString>;
18
18
  }, "strip", z.ZodTypeAny, {
19
19
  name?: string | undefined;
20
- paltformType?: string | undefined;
20
+ platformType?: string | undefined;
21
21
  }, {
22
22
  name?: string | undefined;
23
- paltformType?: string | undefined;
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
- snippetId: z.ZodString;
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
- snippetId: string;
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
- snippetId: string;
70
+ snippetContentId: string;
71
71
  contentValue?: string | undefined;
72
72
  }>;
73
73
  export declare const DeleteSnippetSchema: z.ZodObject<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl1/contracts",
3
- "version": "1.1.19-uat",
3
+ "version": "1.1.20-uat",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/src/index.d.ts",