@webitel/api-services 0.1.64 → 0.1.66
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/package.json +1 -1
- package/src/api/clients/contactGroups/contactGroups.ts +57 -58
- package/src/api/clients/dynamicConditions/dynamicConditions.ts +179 -0
- package/src/api/clients/dynamicGroups/dynamicGroups.ts +191 -0
- package/src/api/clients/index.ts +2 -0
- package/src/api/clients/onlineSkills/onlineSkills.ts +3 -0
- package/src/locale/en/en.ts +15 -0
- package/src/locale/es/es.ts +15 -0
- package/src/locale/kz/kz.ts +15 -0
- package/src/locale/pl/pl.ts +15 -0
- package/src/locale/ro/ro.ts +15 -0
- package/src/locale/ru/ru.ts +15 -0
- package/src/locale/uk/uk.ts +15 -0
- package/src/locale/uz/uz.ts +15 -0
- package/src/locale/vi/vi.ts +15 -0
- package/src/validations/contactGroup/contactGroup.validations.ts +34 -0
- package/src/validations/contactGroupCondition/contactGroupCondition.validations.ts +15 -0
- package/src/validations/index.ts +3 -0
- package/types/.tsbuildinfo +1 -1
- package/types/api/clients/contactGroups/contactGroups.d.ts +3 -3
- package/types/api/clients/dynamicConditions/dynamicConditions.d.ts +27 -0
- package/types/api/clients/dynamicGroups/dynamicGroups.d.ts +27 -0
- package/types/api/clients/index.d.ts +2 -0
- package/types/locale/en/en.d.ts +11 -0
- package/types/locale/es/es.d.ts +11 -0
- package/types/locale/index.d.ts +90 -0
- package/types/locale/kz/kz.d.ts +11 -0
- package/types/locale/pl/pl.d.ts +11 -0
- package/types/locale/ro/ro.d.ts +11 -0
- package/types/locale/ru/ru.d.ts +11 -0
- package/types/locale/uk/uk.d.ts +11 -0
- package/types/locale/uz/uz.d.ts +11 -0
- package/types/locale/vi/vi.d.ts +11 -0
- package/types/validations/contactGroup/contactGroup.validations.d.ts +28 -0
- package/types/validations/contactGroupCondition/contactGroupCondition.validations.d.ts +7 -0
- package/types/validations/index.d.ts +3 -0
|
@@ -25,12 +25,12 @@ export declare const ContactGroupsAPI: {
|
|
|
25
25
|
next: any;
|
|
26
26
|
}>;
|
|
27
27
|
addContactsToGroups: ({ contactIds, groupIds, }: {
|
|
28
|
-
contactIds:
|
|
29
|
-
groupIds:
|
|
28
|
+
contactIds: ApiId[];
|
|
29
|
+
groupIds: ApiId[];
|
|
30
30
|
}) => Promise<any>;
|
|
31
31
|
removeContactsFromGroup: ({ id, contactIds, }: {
|
|
32
32
|
id: ApiId;
|
|
33
|
-
contactIds:
|
|
33
|
+
contactIds: ApiId[];
|
|
34
34
|
}) => Promise<any>;
|
|
35
35
|
};
|
|
36
36
|
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export declare const DynamicConditionsAPI: {
|
|
2
|
+
getList: ({ parentId, ...params }: {
|
|
3
|
+
parentId: string;
|
|
4
|
+
[key: string]: unknown;
|
|
5
|
+
}) => Promise<{
|
|
6
|
+
items: any;
|
|
7
|
+
next: any;
|
|
8
|
+
}>;
|
|
9
|
+
get: ({ itemId: id }: {
|
|
10
|
+
itemId: string;
|
|
11
|
+
}) => Promise<any>;
|
|
12
|
+
add: ({ itemInstance, parentId, }: {
|
|
13
|
+
itemInstance: Record<string, unknown>;
|
|
14
|
+
parentId: string;
|
|
15
|
+
}) => Promise<any>;
|
|
16
|
+
update: ({ itemInstance, itemId: id, }: {
|
|
17
|
+
itemInstance: Record<string, unknown>;
|
|
18
|
+
itemId: string;
|
|
19
|
+
}) => Promise<any>;
|
|
20
|
+
patch: ({ changes, itemId: id, }: {
|
|
21
|
+
changes: Record<string, unknown>;
|
|
22
|
+
itemId: string;
|
|
23
|
+
}) => Promise<any>;
|
|
24
|
+
delete: ({ id }: {
|
|
25
|
+
id: string;
|
|
26
|
+
}) => Promise<any>;
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export declare const DynamicGroupsAPI: {
|
|
2
|
+
getList: (params: Record<string, unknown>) => Promise<{
|
|
3
|
+
items: any;
|
|
4
|
+
next: any;
|
|
5
|
+
}>;
|
|
6
|
+
get: ({ itemId: id }: {
|
|
7
|
+
itemId: string;
|
|
8
|
+
}) => Promise<any>;
|
|
9
|
+
add: ({ itemInstance, }: {
|
|
10
|
+
itemInstance: Record<string, unknown>;
|
|
11
|
+
}) => Promise<any>;
|
|
12
|
+
update: ({ itemInstance, itemId: id, }: {
|
|
13
|
+
itemInstance: Record<string, unknown>;
|
|
14
|
+
itemId: string;
|
|
15
|
+
}) => Promise<any>;
|
|
16
|
+
patch: ({ changes, itemId: id, }: {
|
|
17
|
+
changes: Record<string, unknown>;
|
|
18
|
+
itemId: string;
|
|
19
|
+
}) => Promise<any>;
|
|
20
|
+
delete: ({ id }: {
|
|
21
|
+
id: string;
|
|
22
|
+
}) => Promise<any>;
|
|
23
|
+
getLookup: (params: Record<string, unknown>) => Promise<{
|
|
24
|
+
items: any;
|
|
25
|
+
next: any;
|
|
26
|
+
}>;
|
|
27
|
+
};
|
|
@@ -20,6 +20,8 @@ export * from './chatGateways/chatGateways';
|
|
|
20
20
|
export * from './communications/communications';
|
|
21
21
|
export * from './configurations/configurations';
|
|
22
22
|
export * from './contactGroups/contactGroups';
|
|
23
|
+
export * from './dynamicConditions/dynamicConditions';
|
|
24
|
+
export * from './dynamicGroups/dynamicGroups';
|
|
23
25
|
export * from './emails/emails';
|
|
24
26
|
export * from './fileServices/fileServices';
|
|
25
27
|
export * from './flows/flow';
|
package/types/locale/en/en.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MessageContext } from 'vue-i18n';
|
|
1
2
|
declare const _default: {
|
|
2
3
|
backendErrors: {
|
|
3
4
|
app: {
|
|
@@ -9,6 +10,16 @@ declare const _default: {
|
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
12
|
};
|
|
13
|
+
sqlstore: {
|
|
14
|
+
onlineSkillsStore: {
|
|
15
|
+
create: {
|
|
16
|
+
alreadyExists: string;
|
|
17
|
+
};
|
|
18
|
+
update: {
|
|
19
|
+
alreadyExists: ({ linked }: MessageContext) => string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
12
23
|
};
|
|
13
24
|
};
|
|
14
25
|
export default _default;
|
package/types/locale/es/es.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MessageContext } from 'vue-i18n';
|
|
1
2
|
declare const _default: {
|
|
2
3
|
backendErrors: {
|
|
3
4
|
app: {
|
|
@@ -9,6 +10,16 @@ declare const _default: {
|
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
12
|
};
|
|
13
|
+
sqlstore: {
|
|
14
|
+
onlineSkillsStore: {
|
|
15
|
+
create: {
|
|
16
|
+
alreadyExists: string;
|
|
17
|
+
};
|
|
18
|
+
update: {
|
|
19
|
+
alreadyExists: ({ linked }: MessageContext) => string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
12
23
|
};
|
|
13
24
|
};
|
|
14
25
|
export default _default;
|
package/types/locale/index.d.ts
CHANGED
|
@@ -19,6 +19,16 @@ export declare const messages: {
|
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
+
sqlstore: {
|
|
23
|
+
onlineSkillsStore: {
|
|
24
|
+
create: {
|
|
25
|
+
alreadyExists: string;
|
|
26
|
+
};
|
|
27
|
+
update: {
|
|
28
|
+
alreadyExists: ({ linked }: import("vue-i18n").MessageContext) => string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
};
|
|
22
32
|
};
|
|
23
33
|
};
|
|
24
34
|
uk: {
|
|
@@ -32,6 +42,16 @@ export declare const messages: {
|
|
|
32
42
|
};
|
|
33
43
|
};
|
|
34
44
|
};
|
|
45
|
+
sqlstore: {
|
|
46
|
+
onlineSkillsStore: {
|
|
47
|
+
create: {
|
|
48
|
+
alreadyExists: string;
|
|
49
|
+
};
|
|
50
|
+
update: {
|
|
51
|
+
alreadyExists: ({ linked }: import("vue-i18n").MessageContext) => string;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
};
|
|
35
55
|
};
|
|
36
56
|
};
|
|
37
57
|
ru: {
|
|
@@ -45,6 +65,16 @@ export declare const messages: {
|
|
|
45
65
|
};
|
|
46
66
|
};
|
|
47
67
|
};
|
|
68
|
+
sqlstore: {
|
|
69
|
+
onlineSkillsStore: {
|
|
70
|
+
create: {
|
|
71
|
+
alreadyExists: string;
|
|
72
|
+
};
|
|
73
|
+
update: {
|
|
74
|
+
alreadyExists: ({ linked }: import("vue-i18n").MessageContext) => string;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
};
|
|
48
78
|
};
|
|
49
79
|
};
|
|
50
80
|
es: {
|
|
@@ -58,6 +88,16 @@ export declare const messages: {
|
|
|
58
88
|
};
|
|
59
89
|
};
|
|
60
90
|
};
|
|
91
|
+
sqlstore: {
|
|
92
|
+
onlineSkillsStore: {
|
|
93
|
+
create: {
|
|
94
|
+
alreadyExists: string;
|
|
95
|
+
};
|
|
96
|
+
update: {
|
|
97
|
+
alreadyExists: ({ linked }: import("vue-i18n").MessageContext) => string;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
};
|
|
61
101
|
};
|
|
62
102
|
};
|
|
63
103
|
pl: {
|
|
@@ -71,6 +111,16 @@ export declare const messages: {
|
|
|
71
111
|
};
|
|
72
112
|
};
|
|
73
113
|
};
|
|
114
|
+
sqlstore: {
|
|
115
|
+
onlineSkillsStore: {
|
|
116
|
+
create: {
|
|
117
|
+
alreadyExists: string;
|
|
118
|
+
};
|
|
119
|
+
update: {
|
|
120
|
+
alreadyExists: ({ linked }: import("vue-i18n").MessageContext) => string;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
};
|
|
74
124
|
};
|
|
75
125
|
};
|
|
76
126
|
ro: {
|
|
@@ -84,6 +134,16 @@ export declare const messages: {
|
|
|
84
134
|
};
|
|
85
135
|
};
|
|
86
136
|
};
|
|
137
|
+
sqlstore: {
|
|
138
|
+
onlineSkillsStore: {
|
|
139
|
+
create: {
|
|
140
|
+
alreadyExists: string;
|
|
141
|
+
};
|
|
142
|
+
update: {
|
|
143
|
+
alreadyExists: ({ linked }: import("vue-i18n").MessageContext) => string;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
};
|
|
87
147
|
};
|
|
88
148
|
};
|
|
89
149
|
kz: {
|
|
@@ -97,6 +157,16 @@ export declare const messages: {
|
|
|
97
157
|
};
|
|
98
158
|
};
|
|
99
159
|
};
|
|
160
|
+
sqlstore: {
|
|
161
|
+
onlineSkillsStore: {
|
|
162
|
+
create: {
|
|
163
|
+
alreadyExists: string;
|
|
164
|
+
};
|
|
165
|
+
update: {
|
|
166
|
+
alreadyExists: ({ linked }: import("vue-i18n").MessageContext) => string;
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
};
|
|
100
170
|
};
|
|
101
171
|
};
|
|
102
172
|
uz: {
|
|
@@ -110,6 +180,16 @@ export declare const messages: {
|
|
|
110
180
|
};
|
|
111
181
|
};
|
|
112
182
|
};
|
|
183
|
+
sqlstore: {
|
|
184
|
+
onlineSkillsStore: {
|
|
185
|
+
create: {
|
|
186
|
+
alreadyExists: string;
|
|
187
|
+
};
|
|
188
|
+
update: {
|
|
189
|
+
alreadyExists: ({ linked }: import("vue-i18n").MessageContext) => string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
};
|
|
113
193
|
};
|
|
114
194
|
};
|
|
115
195
|
vi: {
|
|
@@ -123,6 +203,16 @@ export declare const messages: {
|
|
|
123
203
|
};
|
|
124
204
|
};
|
|
125
205
|
};
|
|
206
|
+
sqlstore: {
|
|
207
|
+
onlineSkillsStore: {
|
|
208
|
+
create: {
|
|
209
|
+
alreadyExists: string;
|
|
210
|
+
};
|
|
211
|
+
update: {
|
|
212
|
+
alreadyExists: ({ linked }: import("vue-i18n").MessageContext) => string;
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
};
|
|
126
216
|
};
|
|
127
217
|
};
|
|
128
218
|
};
|
package/types/locale/kz/kz.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MessageContext } from 'vue-i18n';
|
|
1
2
|
declare const _default: {
|
|
2
3
|
backendErrors: {
|
|
3
4
|
app: {
|
|
@@ -9,6 +10,16 @@ declare const _default: {
|
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
12
|
};
|
|
13
|
+
sqlstore: {
|
|
14
|
+
onlineSkillsStore: {
|
|
15
|
+
create: {
|
|
16
|
+
alreadyExists: string;
|
|
17
|
+
};
|
|
18
|
+
update: {
|
|
19
|
+
alreadyExists: ({ linked }: MessageContext) => string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
12
23
|
};
|
|
13
24
|
};
|
|
14
25
|
export default _default;
|
package/types/locale/pl/pl.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MessageContext } from 'vue-i18n';
|
|
1
2
|
declare const _default: {
|
|
2
3
|
backendErrors: {
|
|
3
4
|
app: {
|
|
@@ -9,6 +10,16 @@ declare const _default: {
|
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
12
|
};
|
|
13
|
+
sqlstore: {
|
|
14
|
+
onlineSkillsStore: {
|
|
15
|
+
create: {
|
|
16
|
+
alreadyExists: string;
|
|
17
|
+
};
|
|
18
|
+
update: {
|
|
19
|
+
alreadyExists: ({ linked }: MessageContext) => string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
12
23
|
};
|
|
13
24
|
};
|
|
14
25
|
export default _default;
|
package/types/locale/ro/ro.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MessageContext } from 'vue-i18n';
|
|
1
2
|
declare const _default: {
|
|
2
3
|
backendErrors: {
|
|
3
4
|
app: {
|
|
@@ -9,6 +10,16 @@ declare const _default: {
|
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
12
|
};
|
|
13
|
+
sqlstore: {
|
|
14
|
+
onlineSkillsStore: {
|
|
15
|
+
create: {
|
|
16
|
+
alreadyExists: string;
|
|
17
|
+
};
|
|
18
|
+
update: {
|
|
19
|
+
alreadyExists: ({ linked }: MessageContext) => string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
12
23
|
};
|
|
13
24
|
};
|
|
14
25
|
export default _default;
|
package/types/locale/ru/ru.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MessageContext } from 'vue-i18n';
|
|
1
2
|
declare const _default: {
|
|
2
3
|
backendErrors: {
|
|
3
4
|
app: {
|
|
@@ -9,6 +10,16 @@ declare const _default: {
|
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
12
|
};
|
|
13
|
+
sqlstore: {
|
|
14
|
+
onlineSkillsStore: {
|
|
15
|
+
create: {
|
|
16
|
+
alreadyExists: string;
|
|
17
|
+
};
|
|
18
|
+
update: {
|
|
19
|
+
alreadyExists: ({ linked }: MessageContext) => string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
12
23
|
};
|
|
13
24
|
};
|
|
14
25
|
export default _default;
|
package/types/locale/uk/uk.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MessageContext } from 'vue-i18n';
|
|
1
2
|
declare const _default: {
|
|
2
3
|
backendErrors: {
|
|
3
4
|
app: {
|
|
@@ -9,6 +10,16 @@ declare const _default: {
|
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
12
|
};
|
|
13
|
+
sqlstore: {
|
|
14
|
+
onlineSkillsStore: {
|
|
15
|
+
create: {
|
|
16
|
+
alreadyExists: string;
|
|
17
|
+
};
|
|
18
|
+
update: {
|
|
19
|
+
alreadyExists: ({ linked }: MessageContext) => string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
12
23
|
};
|
|
13
24
|
};
|
|
14
25
|
export default _default;
|
package/types/locale/uz/uz.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MessageContext } from 'vue-i18n';
|
|
1
2
|
declare const _default: {
|
|
2
3
|
backendErrors: {
|
|
3
4
|
app: {
|
|
@@ -9,6 +10,16 @@ declare const _default: {
|
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
12
|
};
|
|
13
|
+
sqlstore: {
|
|
14
|
+
onlineSkillsStore: {
|
|
15
|
+
create: {
|
|
16
|
+
alreadyExists: string;
|
|
17
|
+
};
|
|
18
|
+
update: {
|
|
19
|
+
alreadyExists: ({ linked }: MessageContext) => string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
12
23
|
};
|
|
13
24
|
};
|
|
14
25
|
export default _default;
|
package/types/locale/vi/vi.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MessageContext } from 'vue-i18n';
|
|
1
2
|
declare const _default: {
|
|
2
3
|
backendErrors: {
|
|
3
4
|
app: {
|
|
@@ -9,6 +10,16 @@ declare const _default: {
|
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
12
|
};
|
|
13
|
+
sqlstore: {
|
|
14
|
+
onlineSkillsStore: {
|
|
15
|
+
create: {
|
|
16
|
+
alreadyExists: string;
|
|
17
|
+
};
|
|
18
|
+
update: {
|
|
19
|
+
alreadyExists: ({ linked }: MessageContext) => string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
12
23
|
};
|
|
13
24
|
};
|
|
14
25
|
export default _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const contactGroupSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3
|
+
conditions?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
4
|
+
contactsSize?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
5
|
+
createdAt?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
6
|
+
createdBy?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
7
|
+
defaultGroup?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
8
|
+
description?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
9
|
+
enabled?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
10
|
+
id?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
11
|
+
name?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
12
|
+
updatedAt?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
13
|
+
updatedBy?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
14
|
+
type: z.ZodLiteral<"STATIC">;
|
|
15
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16
|
+
conditions?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
17
|
+
contactsSize?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
18
|
+
createdAt?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
19
|
+
createdBy?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
20
|
+
defaultGroup?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
21
|
+
description?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
22
|
+
enabled?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
23
|
+
id?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
24
|
+
name?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
25
|
+
updatedAt?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
26
|
+
updatedBy?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
27
|
+
type: z.ZodLiteral<"DYNAMIC">;
|
|
28
|
+
}, z.core.$strip>], "type">;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const contactGroupConditionSchema: z.ZodObject<{
|
|
3
|
+
assignee?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
4
|
+
expression?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
5
|
+
group?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
6
|
+
id?: z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>> | undefined;
|
|
7
|
+
}, z.core.$strip>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './_shared/lookup.validations';
|
|
1
2
|
export * from './auditForm/auditForm.validations';
|
|
2
3
|
export * from './bucket/bucket.validations';
|
|
3
4
|
export * from './calendar/calendar.validations';
|
|
@@ -5,6 +6,8 @@ export * from './casePriority/casePriority.validations';
|
|
|
5
6
|
export * from './caseSource/caseSource.validations';
|
|
6
7
|
export * from './caseStatus/caseStatus.validations';
|
|
7
8
|
export * from './caseStatusCondition/caseStatusCondition.validations';
|
|
9
|
+
export * from './contactGroup/contactGroup.validations';
|
|
10
|
+
export * from './contactGroupCondition/contactGroupCondition.validations';
|
|
8
11
|
export * from './OAuth/OAuth.validations';
|
|
9
12
|
export * from './onlineSkill/onlineSkill.validations';
|
|
10
13
|
export * from './types';
|