@kl1/contracts 1.3.70 → 1.3.71

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.
@@ -308641,6 +308641,60 @@ export declare const workflowContract: {
308641
308641
  'x-code'?: string | undefined;
308642
308642
  }>;
308643
308643
  };
308644
+ tagContact: {
308645
+ body: import("zod").ZodObject<{
308646
+ contactId: import("zod").ZodString;
308647
+ tagId: import("zod").ZodString;
308648
+ }, "strip", import("zod").ZodTypeAny, {
308649
+ contactId: string;
308650
+ tagId: string;
308651
+ }, {
308652
+ contactId: string;
308653
+ tagId: string;
308654
+ }>;
308655
+ summary: "Attach Tag to Contact";
308656
+ method: "POST";
308657
+ responses: {
308658
+ 200: import("zod").ZodObject<{
308659
+ requestId: import("zod").ZodString;
308660
+ }, "strip", import("zod").ZodTypeAny, {
308661
+ requestId: string;
308662
+ }, {
308663
+ requestId: string;
308664
+ }>;
308665
+ 403: import("zod").ZodObject<{
308666
+ message: import("zod").ZodString;
308667
+ error: import("zod").ZodAny;
308668
+ }, "strip", import("zod").ZodTypeAny, {
308669
+ message: string;
308670
+ error?: any;
308671
+ }, {
308672
+ message: string;
308673
+ error?: any;
308674
+ }>;
308675
+ 404: import("zod").ZodObject<{
308676
+ message: import("zod").ZodString;
308677
+ error: import("zod").ZodAny;
308678
+ }, "strip", import("zod").ZodTypeAny, {
308679
+ message: string;
308680
+ error?: any;
308681
+ }, {
308682
+ message: string;
308683
+ error?: any;
308684
+ }>;
308685
+ };
308686
+ path: "ms/workflow/chat/contact/tag";
308687
+ headers: import("zod").ZodObject<{
308688
+ 'x-tenant': import("zod").ZodString;
308689
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
308690
+ }, "strip", import("zod").ZodTypeAny, {
308691
+ 'x-tenant': string;
308692
+ 'x-code'?: string | undefined;
308693
+ }, {
308694
+ 'x-tenant': string;
308695
+ 'x-code'?: string | undefined;
308696
+ }>;
308697
+ };
308644
308698
  };
308645
308699
  };
308646
308700
  export declare const ticketSettingContract: {