@kl1/contracts 1.4.22 → 1.4.24
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/api-contracts/src/channel/index.d.ts +0 -64
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +0 -64
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +1 -4
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +0 -3
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/company/index.d.ts +3 -83
- package/dist/api-contracts/src/company/index.d.ts.map +1 -1
- package/dist/api-contracts/src/company/validation.d.ts +0 -40
- package/dist/api-contracts/src/company/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contact/index.d.ts +6 -6
- package/dist/api-contracts/src/contract.d.ts +439 -271
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/index.d.ts +0 -1
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/api-contracts/src/subscription/index.d.ts +0 -438
- package/dist/api-contracts/src/subscription/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +430 -0
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +3 -0
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts +3 -0
- package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +0 -54
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +1644 -1696
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1644 -1695
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -14,55 +14,31 @@ export declare const CompanyContractsValidationSchema: {
|
|
14
14
|
request: z.ZodObject<{
|
15
15
|
name: z.ZodObject<{
|
16
16
|
value: z.ZodString;
|
17
|
-
isRequired: z.ZodBoolean;
|
18
|
-
attributeId: z.ZodString;
|
19
17
|
}, "strip", z.ZodTypeAny, {
|
20
18
|
value: string;
|
21
|
-
isRequired: boolean;
|
22
|
-
attributeId: string;
|
23
19
|
}, {
|
24
20
|
value: string;
|
25
|
-
isRequired: boolean;
|
26
|
-
attributeId: string;
|
27
21
|
}>;
|
28
22
|
phone: z.ZodObject<{
|
29
23
|
value: z.ZodString;
|
30
|
-
isRequired: z.ZodBoolean;
|
31
|
-
attributeId: z.ZodString;
|
32
24
|
}, "strip", z.ZodTypeAny, {
|
33
25
|
value: string;
|
34
|
-
isRequired: boolean;
|
35
|
-
attributeId: string;
|
36
26
|
}, {
|
37
27
|
value: string;
|
38
|
-
isRequired: boolean;
|
39
|
-
attributeId: string;
|
40
28
|
}>;
|
41
29
|
address: z.ZodObject<{
|
42
30
|
value: z.ZodString;
|
43
|
-
isRequired: z.ZodBoolean;
|
44
|
-
attributeId: z.ZodString;
|
45
31
|
}, "strip", z.ZodTypeAny, {
|
46
32
|
value: string;
|
47
|
-
isRequired: boolean;
|
48
|
-
attributeId: string;
|
49
33
|
}, {
|
50
34
|
value: string;
|
51
|
-
isRequired: boolean;
|
52
|
-
attributeId: string;
|
53
35
|
}>;
|
54
36
|
industry: z.ZodObject<{
|
55
37
|
value: z.ZodString;
|
56
|
-
isRequired: z.ZodBoolean;
|
57
|
-
attributeId: z.ZodString;
|
58
38
|
}, "strip", z.ZodTypeAny, {
|
59
39
|
value: string;
|
60
|
-
isRequired: boolean;
|
61
|
-
attributeId: string;
|
62
40
|
}, {
|
63
41
|
value: string;
|
64
|
-
isRequired: boolean;
|
65
|
-
attributeId: string;
|
66
42
|
}>;
|
67
43
|
customFields: z.ZodArray<z.ZodObject<{
|
68
44
|
isRequired: z.ZodBoolean;
|
@@ -86,23 +62,15 @@ export declare const CompanyContractsValidationSchema: {
|
|
86
62
|
}, "strip", z.ZodTypeAny, {
|
87
63
|
name: {
|
88
64
|
value: string;
|
89
|
-
isRequired: boolean;
|
90
|
-
attributeId: string;
|
91
65
|
};
|
92
66
|
address: {
|
93
67
|
value: string;
|
94
|
-
isRequired: boolean;
|
95
|
-
attributeId: string;
|
96
68
|
};
|
97
69
|
phone: {
|
98
70
|
value: string;
|
99
|
-
isRequired: boolean;
|
100
|
-
attributeId: string;
|
101
71
|
};
|
102
72
|
industry: {
|
103
73
|
value: string;
|
104
|
-
isRequired: boolean;
|
105
|
-
attributeId: string;
|
106
74
|
};
|
107
75
|
customFields: {
|
108
76
|
type: string;
|
@@ -114,23 +82,15 @@ export declare const CompanyContractsValidationSchema: {
|
|
114
82
|
}, {
|
115
83
|
name: {
|
116
84
|
value: string;
|
117
|
-
isRequired: boolean;
|
118
|
-
attributeId: string;
|
119
85
|
};
|
120
86
|
address: {
|
121
87
|
value: string;
|
122
|
-
isRequired: boolean;
|
123
|
-
attributeId: string;
|
124
88
|
};
|
125
89
|
phone: {
|
126
90
|
value: string;
|
127
|
-
isRequired: boolean;
|
128
|
-
attributeId: string;
|
129
91
|
};
|
130
92
|
industry: {
|
131
93
|
value: string;
|
132
|
-
isRequired: boolean;
|
133
|
-
attributeId: string;
|
134
94
|
};
|
135
95
|
customFields: {
|
136
96
|
type: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../../src/company/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAEH,eAAO,MAAM,gCAAgC
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../../src/company/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmD5C,CAAC"}
|
@@ -1187,7 +1187,7 @@ export declare const contactContract: {
|
|
1187
1187
|
error?: any;
|
1188
1188
|
}>;
|
1189
1189
|
};
|
1190
|
-
path: "
|
1190
|
+
path: "cs/contact";
|
1191
1191
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1192
1192
|
'x-tenant': z.ZodString;
|
1193
1193
|
'x-service-token': z.ZodString;
|
@@ -4640,7 +4640,7 @@ export declare const contactContract: {
|
|
4640
4640
|
error?: any;
|
4641
4641
|
}>;
|
4642
4642
|
};
|
4643
|
-
path: "
|
4643
|
+
path: "cs/contact/:id";
|
4644
4644
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
4645
4645
|
'x-tenant': z.ZodString;
|
4646
4646
|
'x-service-token': z.ZodString;
|
@@ -4732,7 +4732,7 @@ export declare const contactContract: {
|
|
4732
4732
|
error?: any;
|
4733
4733
|
}>;
|
4734
4734
|
};
|
4735
|
-
path: "
|
4735
|
+
path: "cs/contact/:id";
|
4736
4736
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
4737
4737
|
'x-tenant': z.ZodString;
|
4738
4738
|
'x-service-token': z.ZodString;
|
@@ -7906,7 +7906,7 @@ export declare const contactContract: {
|
|
7906
7906
|
error?: any;
|
7907
7907
|
}>;
|
7908
7908
|
};
|
7909
|
-
path: "
|
7909
|
+
path: "cs/contact/platform-contact";
|
7910
7910
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
7911
7911
|
'x-tenant': z.ZodString;
|
7912
7912
|
'x-service-token': z.ZodString;
|
@@ -8991,7 +8991,7 @@ export declare const contactContract: {
|
|
8991
8991
|
error?: any;
|
8992
8992
|
}>;
|
8993
8993
|
};
|
8994
|
-
path: "
|
8994
|
+
path: "cs/contact/:id/ongoing";
|
8995
8995
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
8996
8996
|
'x-tenant': z.ZodString;
|
8997
8997
|
'x-service-token': z.ZodString;
|
@@ -10717,7 +10717,7 @@ export declare const contactContract: {
|
|
10717
10717
|
error?: any;
|
10718
10718
|
}>;
|
10719
10719
|
};
|
10720
|
-
path: "
|
10720
|
+
path: "cs/contact/attachments";
|
10721
10721
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
10722
10722
|
'x-tenant': z.ZodString;
|
10723
10723
|
'x-service-token': z.ZodString;
|