@kl1/contracts 1.4.3 → 1.4.5

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.
@@ -10232,7 +10232,7 @@ export declare const contactContract: {
10232
10232
  error?: any;
10233
10233
  }>;
10234
10234
  };
10235
- path: "cs/contact/check/phone";
10235
+ path: "ccs/api/v1/contact/check/phone";
10236
10236
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
10237
10237
  'x-tenant': z.ZodString;
10238
10238
  'x-service-token': z.ZodString;
@@ -10326,7 +10326,7 @@ export declare const contactContract: {
10326
10326
  error?: any;
10327
10327
  }>;
10328
10328
  };
10329
- path: "cs/contact/check/email";
10329
+ path: "ccs/api/v1/contact/check/email";
10330
10330
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
10331
10331
  'x-tenant': z.ZodString;
10332
10332
  'x-service-token': z.ZodString;
@@ -11799,7 +11799,7 @@ export declare const contactContract: {
11799
11799
  error?: any;
11800
11800
  }>;
11801
11801
  };
11802
- path: "cs/contact/:id";
11802
+ path: "ccs/api/v1/contact/:id";
11803
11803
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
11804
11804
  'x-tenant': z.ZodString;
11805
11805
  'x-service-token': z.ZodString;
@@ -51601,7 +51601,7 @@ export declare const contactContract: {
51601
51601
  error?: any;
51602
51602
  }>;
51603
51603
  };
51604
- path: "cs/contact/check/phone";
51604
+ path: "ccs/api/v1/contact/check/phone";
51605
51605
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
51606
51606
  'x-tenant': import("zod").ZodString;
51607
51607
  'x-service-token': import("zod").ZodString;
@@ -51695,7 +51695,7 @@ export declare const contactContract: {
51695
51695
  error?: any;
51696
51696
  }>;
51697
51697
  };
51698
- path: "cs/contact/check/email";
51698
+ path: "ccs/api/v1/contact/check/email";
51699
51699
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
51700
51700
  'x-tenant': import("zod").ZodString;
51701
51701
  'x-service-token': import("zod").ZodString;
@@ -53168,7 +53168,7 @@ export declare const contactContract: {
53168
53168
  error?: any;
53169
53169
  }>;
53170
53170
  };
53171
- path: "cs/contact/:id";
53171
+ path: "ccs/api/v1/contact/:id";
53172
53172
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
53173
53173
  'x-tenant': import("zod").ZodString;
53174
53174
  'x-service-token': import("zod").ZodString;
@@ -56758,7 +56758,7 @@ export declare const ticketContract: {
56758
56758
  error?: any;
56759
56759
  }>;
56760
56760
  };
56761
- path: "ts/ticket";
56761
+ path: "tcs/api/v1/ticket";
56762
56762
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
56763
56763
  'x-tenant': import("zod").ZodString;
56764
56764
  'x-service-token': import("zod").ZodString;
@@ -72070,11 +72070,10 @@ export declare const ticketContract: {
72070
72070
  'x-client-timezone'?: string | undefined;
72071
72071
  }>>>;
72072
72072
  };
72073
- createTicketAttachmentRecords: {
72073
+ addTicketAttachments: {
72074
72074
  body: import("zod").ZodObject<{
72075
- ticketId: import("zod").ZodString;
72076
72075
  attributeId: import("zod").ZodString;
72077
- ticketAttachmentRecords: import("zod").ZodArray<import("zod").ZodObject<{
72076
+ attachments: import("zod").ZodArray<import("zod").ZodObject<{
72078
72077
  bucketName: import("zod").ZodString;
72079
72078
  fileKey: import("zod").ZodString;
72080
72079
  fileName: import("zod").ZodString;
@@ -72095,8 +72094,7 @@ export declare const ticketContract: {
72095
72094
  }>, "many">;
72096
72095
  }, "strip", import("zod").ZodTypeAny, {
72097
72096
  attributeId: string;
72098
- ticketId: string;
72099
- ticketAttachmentRecords: {
72097
+ attachments: {
72100
72098
  url: string;
72101
72099
  fileName: string;
72102
72100
  fileKey: string;
@@ -72105,8 +72103,7 @@ export declare const ticketContract: {
72105
72103
  }[];
72106
72104
  }, {
72107
72105
  attributeId: string;
72108
- ticketId: string;
72109
- ticketAttachmentRecords: {
72106
+ attachments: {
72110
72107
  url: string;
72111
72108
  fileName: string;
72112
72109
  fileKey: string;
@@ -72115,7 +72112,14 @@ export declare const ticketContract: {
72115
72112
  }[];
72116
72113
  }>;
72117
72114
  summary: "Create a new ticket attachment";
72118
- method: "POST";
72115
+ method: "PUT";
72116
+ pathParams: import("zod").ZodObject<{
72117
+ id: import("zod").ZodString;
72118
+ }, "strip", import("zod").ZodTypeAny, {
72119
+ id: string;
72120
+ }, {
72121
+ id: string;
72122
+ }>;
72119
72123
  responses: {
72120
72124
  201: import("zod").ZodObject<{
72121
72125
  requestId: import("zod").ZodString;
@@ -72443,7 +72447,7 @@ export declare const ticketContract: {
72443
72447
  error?: any;
72444
72448
  }>;
72445
72449
  };
72446
- path: "ts/ticket/attachment";
72450
+ path: "tcs/api/v1/ticket/:id/attachment";
72447
72451
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
72448
72452
  'x-tenant': import("zod").ZodString;
72449
72453
  'x-service-token': import("zod").ZodString;