@kl1/contracts 1.4.41 → 1.4.43
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 +64 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +64 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +15 -5
- 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 +8 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/company/index.d.ts +80 -0
- package/dist/api-contracts/src/company/index.d.ts.map +1 -1
- package/dist/api-contracts/src/company/validation.d.ts +40 -0
- 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 +283 -441
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +10 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/index.d.ts +1 -0
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/api-contracts/src/subscription/index.d.ts +438 -0
- package/dist/api-contracts/src/subscription/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +0 -430
- 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 +0 -3
- 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 +0 -3
- 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 +54 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +1695 -1638
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1694 -1638
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -14,31 +14,55 @@ 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;
|
17
19
|
}, "strip", z.ZodTypeAny, {
|
18
20
|
value: string;
|
21
|
+
isRequired: boolean;
|
22
|
+
attributeId: string;
|
19
23
|
}, {
|
20
24
|
value: string;
|
25
|
+
isRequired: boolean;
|
26
|
+
attributeId: string;
|
21
27
|
}>;
|
22
28
|
phone: z.ZodObject<{
|
23
29
|
value: z.ZodString;
|
30
|
+
isRequired: z.ZodBoolean;
|
31
|
+
attributeId: z.ZodString;
|
24
32
|
}, "strip", z.ZodTypeAny, {
|
25
33
|
value: string;
|
34
|
+
isRequired: boolean;
|
35
|
+
attributeId: string;
|
26
36
|
}, {
|
27
37
|
value: string;
|
38
|
+
isRequired: boolean;
|
39
|
+
attributeId: string;
|
28
40
|
}>;
|
29
41
|
address: z.ZodObject<{
|
30
42
|
value: z.ZodString;
|
43
|
+
isRequired: z.ZodBoolean;
|
44
|
+
attributeId: z.ZodString;
|
31
45
|
}, "strip", z.ZodTypeAny, {
|
32
46
|
value: string;
|
47
|
+
isRequired: boolean;
|
48
|
+
attributeId: string;
|
33
49
|
}, {
|
34
50
|
value: string;
|
51
|
+
isRequired: boolean;
|
52
|
+
attributeId: string;
|
35
53
|
}>;
|
36
54
|
industry: z.ZodObject<{
|
37
55
|
value: z.ZodString;
|
56
|
+
isRequired: z.ZodBoolean;
|
57
|
+
attributeId: z.ZodString;
|
38
58
|
}, "strip", z.ZodTypeAny, {
|
39
59
|
value: string;
|
60
|
+
isRequired: boolean;
|
61
|
+
attributeId: string;
|
40
62
|
}, {
|
41
63
|
value: string;
|
64
|
+
isRequired: boolean;
|
65
|
+
attributeId: string;
|
42
66
|
}>;
|
43
67
|
customFields: z.ZodArray<z.ZodObject<{
|
44
68
|
isRequired: z.ZodBoolean;
|
@@ -62,15 +86,23 @@ export declare const CompanyContractsValidationSchema: {
|
|
62
86
|
}, "strip", z.ZodTypeAny, {
|
63
87
|
name: {
|
64
88
|
value: string;
|
89
|
+
isRequired: boolean;
|
90
|
+
attributeId: string;
|
65
91
|
};
|
66
92
|
address: {
|
67
93
|
value: string;
|
94
|
+
isRequired: boolean;
|
95
|
+
attributeId: string;
|
68
96
|
};
|
69
97
|
phone: {
|
70
98
|
value: string;
|
99
|
+
isRequired: boolean;
|
100
|
+
attributeId: string;
|
71
101
|
};
|
72
102
|
industry: {
|
73
103
|
value: string;
|
104
|
+
isRequired: boolean;
|
105
|
+
attributeId: string;
|
74
106
|
};
|
75
107
|
customFields: {
|
76
108
|
type: string;
|
@@ -82,15 +114,23 @@ export declare const CompanyContractsValidationSchema: {
|
|
82
114
|
}, {
|
83
115
|
name: {
|
84
116
|
value: string;
|
117
|
+
isRequired: boolean;
|
118
|
+
attributeId: string;
|
85
119
|
};
|
86
120
|
address: {
|
87
121
|
value: string;
|
122
|
+
isRequired: boolean;
|
123
|
+
attributeId: string;
|
88
124
|
};
|
89
125
|
phone: {
|
90
126
|
value: string;
|
127
|
+
isRequired: boolean;
|
128
|
+
attributeId: string;
|
91
129
|
};
|
92
130
|
industry: {
|
93
131
|
value: string;
|
132
|
+
isRequired: boolean;
|
133
|
+
attributeId: string;
|
94
134
|
};
|
95
135
|
customFields: {
|
96
136
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmE5C,CAAC"}
|
@@ -10138,7 +10138,7 @@ export declare const contactContract: {
|
|
10138
10138
|
error?: any;
|
10139
10139
|
}>;
|
10140
10140
|
};
|
10141
|
-
path: "
|
10141
|
+
path: "ccs/api/v1/contact/merge";
|
10142
10142
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
10143
10143
|
'x-tenant': z.ZodString;
|
10144
10144
|
'x-service-token': z.ZodString;
|