@kl1/contracts 1.4.46 → 1.4.48
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/botpress/index.d.ts +9 -9
- package/dist/api-contracts/src/botpress/validation.d.ts +9 -9
- 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 +3 -6
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +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 +0 -80
- 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 +1 -1
- package/dist/api-contracts/src/contract.d.ts +447 -287
- 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 +7 -69
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +0 -1
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +1641 -1699
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1641 -1698
- 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"}
|
|
@@ -10138,7 +10138,7 @@ export declare const contactContract: {
|
|
|
10138
10138
|
error?: any;
|
|
10139
10139
|
}>;
|
|
10140
10140
|
};
|
|
10141
|
-
path: "
|
|
10141
|
+
path: "cs/contact/merge";
|
|
10142
10142
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10143
10143
|
'x-tenant': z.ZodString;
|
|
10144
10144
|
'x-service-token': z.ZodString;
|