@kl1/contracts 1.1.36-uat → 1.1.38-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.
@@ -14793,6 +14793,131 @@ export declare const apiContract: {
14793
14793
  };
14794
14794
  };
14795
14795
  wrapUpForm: {
14796
+ getWrapUpFormTimer: {
14797
+ method: "GET";
14798
+ responses: {
14799
+ 200: import("zod").ZodObject<{
14800
+ requestId: import("zod").ZodString;
14801
+ wrapUpFormTimer: import("zod").ZodNumber;
14802
+ }, "strip", import("zod").ZodTypeAny, {
14803
+ requestId: string;
14804
+ wrapUpFormTimer: number;
14805
+ }, {
14806
+ requestId: string;
14807
+ wrapUpFormTimer: number;
14808
+ }>;
14809
+ 400: import("zod").ZodObject<{
14810
+ message: import("zod").ZodString;
14811
+ }, "strip", import("zod").ZodTypeAny, {
14812
+ message: string;
14813
+ }, {
14814
+ message: string;
14815
+ }>;
14816
+ 401: import("zod").ZodObject<{
14817
+ message: import("zod").ZodString;
14818
+ error: import("zod").ZodAny;
14819
+ }, "strip", import("zod").ZodTypeAny, {
14820
+ message: string;
14821
+ error?: any;
14822
+ }, {
14823
+ message: string;
14824
+ error?: any;
14825
+ }>;
14826
+ 500: import("zod").ZodObject<{
14827
+ message: import("zod").ZodString;
14828
+ error: import("zod").ZodAny;
14829
+ }, "strip", import("zod").ZodTypeAny, {
14830
+ message: string;
14831
+ error?: any;
14832
+ }, {
14833
+ message: string;
14834
+ error?: any;
14835
+ }>;
14836
+ };
14837
+ path: "wrap-up-form/timer";
14838
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
14839
+ 'x-tenant': import("zod").ZodString;
14840
+ authorization: import("zod").ZodString;
14841
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
14842
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
14843
+ }, "strip", import("zod").ZodTypeAny, {
14844
+ 'x-tenant': string;
14845
+ authorization: string;
14846
+ 'x-client-timezone': string;
14847
+ 'x-code'?: string | undefined;
14848
+ }, {
14849
+ 'x-tenant': string;
14850
+ authorization: string;
14851
+ 'x-code'?: string | undefined;
14852
+ 'x-client-timezone'?: string | undefined;
14853
+ }>>>;
14854
+ };
14855
+ updateWrapUpFormTimer: {
14856
+ body: import("zod").ZodObject<{
14857
+ newWrapUpFormTimer: import("zod").ZodNumber;
14858
+ }, "strip", import("zod").ZodTypeAny, {
14859
+ newWrapUpFormTimer: number;
14860
+ }, {
14861
+ newWrapUpFormTimer: number;
14862
+ }>;
14863
+ method: "PATCH";
14864
+ responses: {
14865
+ 200: import("zod").ZodObject<{
14866
+ requestId: import("zod").ZodString;
14867
+ wrapUpFormTimer: import("zod").ZodNumber;
14868
+ }, "strip", import("zod").ZodTypeAny, {
14869
+ requestId: string;
14870
+ wrapUpFormTimer: number;
14871
+ }, {
14872
+ requestId: string;
14873
+ wrapUpFormTimer: number;
14874
+ }>;
14875
+ 400: import("zod").ZodObject<{
14876
+ message: import("zod").ZodString;
14877
+ }, "strip", import("zod").ZodTypeAny, {
14878
+ message: string;
14879
+ }, {
14880
+ message: string;
14881
+ }>;
14882
+ 401: import("zod").ZodObject<{
14883
+ message: import("zod").ZodString;
14884
+ error: import("zod").ZodAny;
14885
+ }, "strip", import("zod").ZodTypeAny, {
14886
+ message: string;
14887
+ error?: any;
14888
+ }, {
14889
+ message: string;
14890
+ error?: any;
14891
+ }>;
14892
+ 500: import("zod").ZodObject<{
14893
+ message: import("zod").ZodString;
14894
+ error: import("zod").ZodAny;
14895
+ }, "strip", import("zod").ZodTypeAny, {
14896
+ message: string;
14897
+ error?: any;
14898
+ }, {
14899
+ message: string;
14900
+ error?: any;
14901
+ }>;
14902
+ };
14903
+ path: "wrap-up-form/timer";
14904
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
14905
+ 'x-tenant': import("zod").ZodString;
14906
+ authorization: import("zod").ZodString;
14907
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
14908
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
14909
+ }, "strip", import("zod").ZodTypeAny, {
14910
+ 'x-tenant': string;
14911
+ authorization: string;
14912
+ 'x-client-timezone': string;
14913
+ 'x-code'?: string | undefined;
14914
+ }, {
14915
+ 'x-tenant': string;
14916
+ authorization: string;
14917
+ 'x-code'?: string | undefined;
14918
+ 'x-client-timezone'?: string | undefined;
14919
+ }>>>;
14920
+ };
14796
14921
  createWrapUpForm: {
14797
14922
  body: import("zod").ZodObject<{
14798
14923
  note: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
@@ -16745,125 +16870,6 @@ export declare const apiContract: {
16745
16870
  'x-client-timezone'?: string | undefined;
16746
16871
  }>>>;
16747
16872
  };
16748
- getWrapUpFormTimer: {
16749
- method: "GET";
16750
- responses: {
16751
- 200: import("zod").ZodObject<{
16752
- requestId: import("zod").ZodString;
16753
- wrapUpFormTimer: import("zod").ZodNumber;
16754
- }, "strip", import("zod").ZodTypeAny, {
16755
- requestId: string;
16756
- wrapUpFormTimer: number;
16757
- }, {
16758
- requestId: string;
16759
- wrapUpFormTimer: number;
16760
- }>;
16761
- 400: import("zod").ZodObject<{
16762
- message: import("zod").ZodString;
16763
- }, "strip", import("zod").ZodTypeAny, {
16764
- message: string;
16765
- }, {
16766
- message: string;
16767
- }>;
16768
- 401: import("zod").ZodObject<{
16769
- message: import("zod").ZodString;
16770
- error: import("zod").ZodAny;
16771
- }, "strip", import("zod").ZodTypeAny, {
16772
- message: string;
16773
- error?: any;
16774
- }, {
16775
- message: string;
16776
- error?: any;
16777
- }>;
16778
- 500: import("zod").ZodObject<{
16779
- message: import("zod").ZodString;
16780
- error: import("zod").ZodAny;
16781
- }, "strip", import("zod").ZodTypeAny, {
16782
- message: string;
16783
- error?: any;
16784
- }, {
16785
- message: string;
16786
- error?: any;
16787
- }>;
16788
- };
16789
- path: "wrap-up-form/timer";
16790
- headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
16791
- 'x-tenant': import("zod").ZodString;
16792
- authorization: import("zod").ZodString;
16793
- 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
16794
- 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
16795
- }, "strip", import("zod").ZodTypeAny, {
16796
- 'x-tenant': string;
16797
- authorization: string;
16798
- 'x-client-timezone': string;
16799
- 'x-code'?: string | undefined;
16800
- }, {
16801
- 'x-tenant': string;
16802
- authorization: string;
16803
- 'x-code'?: string | undefined;
16804
- 'x-client-timezone'?: string | undefined;
16805
- }>>>;
16806
- };
16807
- updateWrapUpFormTimer: {
16808
- body: import("zod").ZodNumber;
16809
- method: "PATCH";
16810
- responses: {
16811
- 200: import("zod").ZodObject<{
16812
- requestId: import("zod").ZodString;
16813
- wrapUpFormTimer: import("zod").ZodNumber;
16814
- }, "strip", import("zod").ZodTypeAny, {
16815
- requestId: string;
16816
- wrapUpFormTimer: number;
16817
- }, {
16818
- requestId: string;
16819
- wrapUpFormTimer: number;
16820
- }>;
16821
- 400: import("zod").ZodObject<{
16822
- message: import("zod").ZodString;
16823
- }, "strip", import("zod").ZodTypeAny, {
16824
- message: string;
16825
- }, {
16826
- message: string;
16827
- }>;
16828
- 401: import("zod").ZodObject<{
16829
- message: import("zod").ZodString;
16830
- error: import("zod").ZodAny;
16831
- }, "strip", import("zod").ZodTypeAny, {
16832
- message: string;
16833
- error?: any;
16834
- }, {
16835
- message: string;
16836
- error?: any;
16837
- }>;
16838
- 500: import("zod").ZodObject<{
16839
- message: import("zod").ZodString;
16840
- error: import("zod").ZodAny;
16841
- }, "strip", import("zod").ZodTypeAny, {
16842
- message: string;
16843
- error?: any;
16844
- }, {
16845
- message: string;
16846
- error?: any;
16847
- }>;
16848
- };
16849
- path: "wrap-up-form/timer";
16850
- headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
16851
- 'x-tenant': import("zod").ZodString;
16852
- authorization: import("zod").ZodString;
16853
- 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
16854
- 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
16855
- }, "strip", import("zod").ZodTypeAny, {
16856
- 'x-tenant': string;
16857
- authorization: string;
16858
- 'x-client-timezone': string;
16859
- 'x-code'?: string | undefined;
16860
- }, {
16861
- 'x-tenant': string;
16862
- authorization: string;
16863
- 'x-code'?: string | undefined;
16864
- 'x-client-timezone'?: string | undefined;
16865
- }>>>;
16866
- };
16867
16873
  };
16868
16874
  emailEngineWebhooks: {
16869
16875
  handleWebhooksEvents: {