@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.
- 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 +125 -119
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +125 -119
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -4,6 +4,131 @@ 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.ZodObject<{
|
68
|
+
newWrapUpFormTimer: z.ZodNumber;
|
69
|
+
}, "strip", z.ZodTypeAny, {
|
70
|
+
newWrapUpFormTimer: number;
|
71
|
+
}, {
|
72
|
+
newWrapUpFormTimer: number;
|
73
|
+
}>;
|
74
|
+
method: "PATCH";
|
75
|
+
responses: {
|
76
|
+
200: z.ZodObject<{
|
77
|
+
requestId: z.ZodString;
|
78
|
+
wrapUpFormTimer: z.ZodNumber;
|
79
|
+
}, "strip", z.ZodTypeAny, {
|
80
|
+
requestId: string;
|
81
|
+
wrapUpFormTimer: number;
|
82
|
+
}, {
|
83
|
+
requestId: string;
|
84
|
+
wrapUpFormTimer: number;
|
85
|
+
}>;
|
86
|
+
400: z.ZodObject<{
|
87
|
+
message: z.ZodString;
|
88
|
+
}, "strip", z.ZodTypeAny, {
|
89
|
+
message: string;
|
90
|
+
}, {
|
91
|
+
message: string;
|
92
|
+
}>;
|
93
|
+
401: z.ZodObject<{
|
94
|
+
message: z.ZodString;
|
95
|
+
error: z.ZodAny;
|
96
|
+
}, "strip", z.ZodTypeAny, {
|
97
|
+
message: string;
|
98
|
+
error?: any;
|
99
|
+
}, {
|
100
|
+
message: string;
|
101
|
+
error?: any;
|
102
|
+
}>;
|
103
|
+
500: z.ZodObject<{
|
104
|
+
message: z.ZodString;
|
105
|
+
error: z.ZodAny;
|
106
|
+
}, "strip", z.ZodTypeAny, {
|
107
|
+
message: string;
|
108
|
+
error?: any;
|
109
|
+
}, {
|
110
|
+
message: string;
|
111
|
+
error?: any;
|
112
|
+
}>;
|
113
|
+
};
|
114
|
+
path: "wrap-up-form/timer";
|
115
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
116
|
+
'x-tenant': z.ZodString;
|
117
|
+
authorization: z.ZodString;
|
118
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
119
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
120
|
+
}, "strip", z.ZodTypeAny, {
|
121
|
+
'x-tenant': string;
|
122
|
+
authorization: string;
|
123
|
+
'x-client-timezone': string;
|
124
|
+
'x-code'?: string | undefined;
|
125
|
+
}, {
|
126
|
+
'x-tenant': string;
|
127
|
+
authorization: string;
|
128
|
+
'x-code'?: string | undefined;
|
129
|
+
'x-client-timezone'?: string | undefined;
|
130
|
+
}>>>;
|
131
|
+
};
|
7
132
|
createWrapUpForm: {
|
8
133
|
body: z.ZodObject<{
|
9
134
|
note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
@@ -1956,124 +2081,5 @@ export declare const wrapUpFormContract: {
|
|
1956
2081
|
'x-client-timezone'?: string | undefined;
|
1957
2082
|
}>>>;
|
1958
2083
|
};
|
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
2084
|
};
|
2079
2085
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/wrap-up-form/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,sBAAsB,EACvB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC7E,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,2BAA2B,CACnC,CAAC;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE7E,eAAO,MAAM,kBAAkB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/wrap-up-form/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,sBAAsB,EACvB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC7E,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,2BAA2B,CACnC,CAAC;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE7E,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0H9B,CAAC"}
|