@kl1/contracts 1.1.36-uat → 1.1.37-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 +31 -31
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +31 -31
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +119 -119
- package/dist/src/wrap-up-form/index.d.ts +119 -119
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -14793,6 +14793,125 @@ 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").ZodNumber;
|
14857
|
+
method: "PATCH";
|
14858
|
+
responses: {
|
14859
|
+
200: import("zod").ZodObject<{
|
14860
|
+
requestId: import("zod").ZodString;
|
14861
|
+
wrapUpFormTimer: import("zod").ZodNumber;
|
14862
|
+
}, "strip", import("zod").ZodTypeAny, {
|
14863
|
+
requestId: string;
|
14864
|
+
wrapUpFormTimer: number;
|
14865
|
+
}, {
|
14866
|
+
requestId: string;
|
14867
|
+
wrapUpFormTimer: number;
|
14868
|
+
}>;
|
14869
|
+
400: import("zod").ZodObject<{
|
14870
|
+
message: import("zod").ZodString;
|
14871
|
+
}, "strip", import("zod").ZodTypeAny, {
|
14872
|
+
message: string;
|
14873
|
+
}, {
|
14874
|
+
message: string;
|
14875
|
+
}>;
|
14876
|
+
401: import("zod").ZodObject<{
|
14877
|
+
message: import("zod").ZodString;
|
14878
|
+
error: import("zod").ZodAny;
|
14879
|
+
}, "strip", import("zod").ZodTypeAny, {
|
14880
|
+
message: string;
|
14881
|
+
error?: any;
|
14882
|
+
}, {
|
14883
|
+
message: string;
|
14884
|
+
error?: any;
|
14885
|
+
}>;
|
14886
|
+
500: import("zod").ZodObject<{
|
14887
|
+
message: import("zod").ZodString;
|
14888
|
+
error: import("zod").ZodAny;
|
14889
|
+
}, "strip", import("zod").ZodTypeAny, {
|
14890
|
+
message: string;
|
14891
|
+
error?: any;
|
14892
|
+
}, {
|
14893
|
+
message: string;
|
14894
|
+
error?: any;
|
14895
|
+
}>;
|
14896
|
+
};
|
14897
|
+
path: "wrap-up-form/timer";
|
14898
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
14899
|
+
'x-tenant': import("zod").ZodString;
|
14900
|
+
authorization: import("zod").ZodString;
|
14901
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
14902
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
14903
|
+
}, "strip", import("zod").ZodTypeAny, {
|
14904
|
+
'x-tenant': string;
|
14905
|
+
authorization: string;
|
14906
|
+
'x-client-timezone': string;
|
14907
|
+
'x-code'?: string | undefined;
|
14908
|
+
}, {
|
14909
|
+
'x-tenant': string;
|
14910
|
+
authorization: string;
|
14911
|
+
'x-code'?: string | undefined;
|
14912
|
+
'x-client-timezone'?: string | undefined;
|
14913
|
+
}>>>;
|
14914
|
+
};
|
14796
14915
|
createWrapUpForm: {
|
14797
14916
|
body: import("zod").ZodObject<{
|
14798
14917
|
note: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
@@ -16745,125 +16864,6 @@ export declare const apiContract: {
|
|
16745
16864
|
'x-client-timezone'?: string | undefined;
|
16746
16865
|
}>>>;
|
16747
16866
|
};
|
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
16867
|
};
|
16868
16868
|
emailEngineWebhooks: {
|
16869
16869
|
handleWebhooksEvents: {
|
@@ -4,6 +4,125 @@ export type CreateWrapUpFormRequest = z.infer<typeof CreateWrapUpFormSchema>;
|
|
4
4
|
export type CreateCXLogWrapUpFormRequest = z.infer<typeof CreateCXLogWrapUpFormSchema>;
|
5
5
|
export type UpdateWrapUpFormRequest = z.infer<typeof UpdateWrapUpFormSchema>;
|
6
6
|
export declare const wrapUpFormContract: {
|
7
|
+
getWrapUpFormTimer: {
|
8
|
+
method: "GET";
|
9
|
+
responses: {
|
10
|
+
200: z.ZodObject<{
|
11
|
+
requestId: z.ZodString;
|
12
|
+
wrapUpFormTimer: z.ZodNumber;
|
13
|
+
}, "strip", z.ZodTypeAny, {
|
14
|
+
requestId: string;
|
15
|
+
wrapUpFormTimer: number;
|
16
|
+
}, {
|
17
|
+
requestId: string;
|
18
|
+
wrapUpFormTimer: number;
|
19
|
+
}>;
|
20
|
+
400: z.ZodObject<{
|
21
|
+
message: z.ZodString;
|
22
|
+
}, "strip", z.ZodTypeAny, {
|
23
|
+
message: string;
|
24
|
+
}, {
|
25
|
+
message: string;
|
26
|
+
}>;
|
27
|
+
401: z.ZodObject<{
|
28
|
+
message: z.ZodString;
|
29
|
+
error: z.ZodAny;
|
30
|
+
}, "strip", z.ZodTypeAny, {
|
31
|
+
message: string;
|
32
|
+
error?: any;
|
33
|
+
}, {
|
34
|
+
message: string;
|
35
|
+
error?: any;
|
36
|
+
}>;
|
37
|
+
500: z.ZodObject<{
|
38
|
+
message: z.ZodString;
|
39
|
+
error: z.ZodAny;
|
40
|
+
}, "strip", z.ZodTypeAny, {
|
41
|
+
message: string;
|
42
|
+
error?: any;
|
43
|
+
}, {
|
44
|
+
message: string;
|
45
|
+
error?: any;
|
46
|
+
}>;
|
47
|
+
};
|
48
|
+
path: "wrap-up-form/timer";
|
49
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
50
|
+
'x-tenant': z.ZodString;
|
51
|
+
authorization: z.ZodString;
|
52
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
53
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
54
|
+
}, "strip", z.ZodTypeAny, {
|
55
|
+
'x-tenant': string;
|
56
|
+
authorization: string;
|
57
|
+
'x-client-timezone': string;
|
58
|
+
'x-code'?: string | undefined;
|
59
|
+
}, {
|
60
|
+
'x-tenant': string;
|
61
|
+
authorization: string;
|
62
|
+
'x-code'?: string | undefined;
|
63
|
+
'x-client-timezone'?: string | undefined;
|
64
|
+
}>>>;
|
65
|
+
};
|
66
|
+
updateWrapUpFormTimer: {
|
67
|
+
body: z.ZodNumber;
|
68
|
+
method: "PATCH";
|
69
|
+
responses: {
|
70
|
+
200: z.ZodObject<{
|
71
|
+
requestId: z.ZodString;
|
72
|
+
wrapUpFormTimer: z.ZodNumber;
|
73
|
+
}, "strip", z.ZodTypeAny, {
|
74
|
+
requestId: string;
|
75
|
+
wrapUpFormTimer: number;
|
76
|
+
}, {
|
77
|
+
requestId: string;
|
78
|
+
wrapUpFormTimer: number;
|
79
|
+
}>;
|
80
|
+
400: z.ZodObject<{
|
81
|
+
message: z.ZodString;
|
82
|
+
}, "strip", z.ZodTypeAny, {
|
83
|
+
message: string;
|
84
|
+
}, {
|
85
|
+
message: string;
|
86
|
+
}>;
|
87
|
+
401: z.ZodObject<{
|
88
|
+
message: z.ZodString;
|
89
|
+
error: z.ZodAny;
|
90
|
+
}, "strip", z.ZodTypeAny, {
|
91
|
+
message: string;
|
92
|
+
error?: any;
|
93
|
+
}, {
|
94
|
+
message: string;
|
95
|
+
error?: any;
|
96
|
+
}>;
|
97
|
+
500: z.ZodObject<{
|
98
|
+
message: z.ZodString;
|
99
|
+
error: z.ZodAny;
|
100
|
+
}, "strip", z.ZodTypeAny, {
|
101
|
+
message: string;
|
102
|
+
error?: any;
|
103
|
+
}, {
|
104
|
+
message: string;
|
105
|
+
error?: any;
|
106
|
+
}>;
|
107
|
+
};
|
108
|
+
path: "wrap-up-form/timer";
|
109
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
110
|
+
'x-tenant': z.ZodString;
|
111
|
+
authorization: z.ZodString;
|
112
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
113
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
114
|
+
}, "strip", z.ZodTypeAny, {
|
115
|
+
'x-tenant': string;
|
116
|
+
authorization: string;
|
117
|
+
'x-client-timezone': string;
|
118
|
+
'x-code'?: string | undefined;
|
119
|
+
}, {
|
120
|
+
'x-tenant': string;
|
121
|
+
authorization: string;
|
122
|
+
'x-code'?: string | undefined;
|
123
|
+
'x-client-timezone'?: string | undefined;
|
124
|
+
}>>>;
|
125
|
+
};
|
7
126
|
createWrapUpForm: {
|
8
127
|
body: z.ZodObject<{
|
9
128
|
note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
@@ -1956,124 +2075,5 @@ export declare const wrapUpFormContract: {
|
|
1956
2075
|
'x-client-timezone'?: string | undefined;
|
1957
2076
|
}>>>;
|
1958
2077
|
};
|
1959
|
-
getWrapUpFormTimer: {
|
1960
|
-
method: "GET";
|
1961
|
-
responses: {
|
1962
|
-
200: z.ZodObject<{
|
1963
|
-
requestId: z.ZodString;
|
1964
|
-
wrapUpFormTimer: z.ZodNumber;
|
1965
|
-
}, "strip", z.ZodTypeAny, {
|
1966
|
-
requestId: string;
|
1967
|
-
wrapUpFormTimer: number;
|
1968
|
-
}, {
|
1969
|
-
requestId: string;
|
1970
|
-
wrapUpFormTimer: number;
|
1971
|
-
}>;
|
1972
|
-
400: z.ZodObject<{
|
1973
|
-
message: z.ZodString;
|
1974
|
-
}, "strip", z.ZodTypeAny, {
|
1975
|
-
message: string;
|
1976
|
-
}, {
|
1977
|
-
message: string;
|
1978
|
-
}>;
|
1979
|
-
401: z.ZodObject<{
|
1980
|
-
message: z.ZodString;
|
1981
|
-
error: z.ZodAny;
|
1982
|
-
}, "strip", z.ZodTypeAny, {
|
1983
|
-
message: string;
|
1984
|
-
error?: any;
|
1985
|
-
}, {
|
1986
|
-
message: string;
|
1987
|
-
error?: any;
|
1988
|
-
}>;
|
1989
|
-
500: z.ZodObject<{
|
1990
|
-
message: z.ZodString;
|
1991
|
-
error: z.ZodAny;
|
1992
|
-
}, "strip", z.ZodTypeAny, {
|
1993
|
-
message: string;
|
1994
|
-
error?: any;
|
1995
|
-
}, {
|
1996
|
-
message: string;
|
1997
|
-
error?: any;
|
1998
|
-
}>;
|
1999
|
-
};
|
2000
|
-
path: "wrap-up-form/timer";
|
2001
|
-
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
2002
|
-
'x-tenant': z.ZodString;
|
2003
|
-
authorization: z.ZodString;
|
2004
|
-
'x-code': z.ZodOptional<z.ZodString>;
|
2005
|
-
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
2006
|
-
}, "strip", z.ZodTypeAny, {
|
2007
|
-
'x-tenant': string;
|
2008
|
-
authorization: string;
|
2009
|
-
'x-client-timezone': string;
|
2010
|
-
'x-code'?: string | undefined;
|
2011
|
-
}, {
|
2012
|
-
'x-tenant': string;
|
2013
|
-
authorization: string;
|
2014
|
-
'x-code'?: string | undefined;
|
2015
|
-
'x-client-timezone'?: string | undefined;
|
2016
|
-
}>>>;
|
2017
|
-
};
|
2018
|
-
updateWrapUpFormTimer: {
|
2019
|
-
body: z.ZodNumber;
|
2020
|
-
method: "PATCH";
|
2021
|
-
responses: {
|
2022
|
-
200: z.ZodObject<{
|
2023
|
-
requestId: z.ZodString;
|
2024
|
-
wrapUpFormTimer: z.ZodNumber;
|
2025
|
-
}, "strip", z.ZodTypeAny, {
|
2026
|
-
requestId: string;
|
2027
|
-
wrapUpFormTimer: number;
|
2028
|
-
}, {
|
2029
|
-
requestId: string;
|
2030
|
-
wrapUpFormTimer: number;
|
2031
|
-
}>;
|
2032
|
-
400: z.ZodObject<{
|
2033
|
-
message: z.ZodString;
|
2034
|
-
}, "strip", z.ZodTypeAny, {
|
2035
|
-
message: string;
|
2036
|
-
}, {
|
2037
|
-
message: string;
|
2038
|
-
}>;
|
2039
|
-
401: z.ZodObject<{
|
2040
|
-
message: z.ZodString;
|
2041
|
-
error: z.ZodAny;
|
2042
|
-
}, "strip", z.ZodTypeAny, {
|
2043
|
-
message: string;
|
2044
|
-
error?: any;
|
2045
|
-
}, {
|
2046
|
-
message: string;
|
2047
|
-
error?: any;
|
2048
|
-
}>;
|
2049
|
-
500: z.ZodObject<{
|
2050
|
-
message: z.ZodString;
|
2051
|
-
error: z.ZodAny;
|
2052
|
-
}, "strip", z.ZodTypeAny, {
|
2053
|
-
message: string;
|
2054
|
-
error?: any;
|
2055
|
-
}, {
|
2056
|
-
message: string;
|
2057
|
-
error?: any;
|
2058
|
-
}>;
|
2059
|
-
};
|
2060
|
-
path: "wrap-up-form/timer";
|
2061
|
-
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
2062
|
-
'x-tenant': z.ZodString;
|
2063
|
-
authorization: z.ZodString;
|
2064
|
-
'x-code': z.ZodOptional<z.ZodString>;
|
2065
|
-
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
2066
|
-
}, "strip", z.ZodTypeAny, {
|
2067
|
-
'x-tenant': string;
|
2068
|
-
authorization: string;
|
2069
|
-
'x-client-timezone': string;
|
2070
|
-
'x-code'?: string | undefined;
|
2071
|
-
}, {
|
2072
|
-
'x-tenant': string;
|
2073
|
-
authorization: string;
|
2074
|
-
'x-code'?: string | undefined;
|
2075
|
-
'x-client-timezone'?: string | undefined;
|
2076
|
-
}>>>;
|
2077
|
-
};
|
2078
2078
|
};
|
2079
2079
|
//# sourceMappingURL=index.d.ts.map
|