@unified-api/typescript-sdk 2.66.0 → 2.70.0
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/docs/sdks/unified/README.md +2 -2
- package/docs/sdks/webhook/README.md +2 -2
- package/funcs/projectListTaskProjects.js +1 -0
- package/funcs/projectListTaskProjects.js.map +1 -1
- package/funcs/taskListTaskProjects.js +1 -0
- package/funcs/taskListTaskProjects.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/package.json +1 -1
- package/sdk/models/operations/listtaskprojects.d.ts +5 -0
- package/sdk/models/operations/listtaskprojects.d.ts.map +1 -1
- package/sdk/models/operations/listtaskprojects.js +4 -0
- package/sdk/models/operations/listtaskprojects.js.map +1 -1
- package/sdk/models/shared/index.d.ts +1 -5
- package/sdk/models/shared/index.d.ts.map +1 -1
- package/sdk/models/shared/index.js +1 -5
- package/sdk/models/shared/index.js.map +1 -1
- package/sdk/models/shared/integration.d.ts +640 -10
- package/sdk/models/shared/integration.d.ts.map +1 -1
- package/sdk/models/shared/integration.js +938 -8
- package/sdk/models/shared/integration.js.map +1 -1
- package/sdk/models/shared/propertyconnectionpermissions.d.ts +6 -0
- package/sdk/models/shared/propertyconnectionpermissions.d.ts.map +1 -1
- package/sdk/models/shared/propertyconnectionpermissions.js +2 -0
- package/sdk/models/shared/propertyconnectionpermissions.js.map +1 -1
- package/sdk/models/shared/propertyintegrationtokeninstructions.d.ts +25 -0
- package/sdk/models/shared/propertyintegrationtokeninstructions.d.ts.map +1 -0
- package/sdk/models/shared/propertyintegrationtokeninstructions.js +49 -0
- package/sdk/models/shared/propertyintegrationtokeninstructions.js.map +1 -0
- package/sdk/models/shared/webhook.d.ts +3 -0
- package/sdk/models/shared/webhook.d.ts.map +1 -1
- package/sdk/models/shared/webhook.js +1 -0
- package/sdk/models/shared/webhook.js.map +1 -1
- package/src/funcs/projectListTaskProjects.ts +1 -0
- package/src/funcs/taskListTaskProjects.ts +1 -0
- package/src/lib/config.ts +2 -2
- package/src/sdk/models/operations/listtaskprojects.ts +9 -0
- package/src/sdk/models/shared/index.ts +1 -5
- package/src/sdk/models/shared/integration.ts +1872 -17
- package/src/sdk/models/shared/propertyconnectionpermissions.ts +2 -0
- package/src/sdk/models/shared/propertyintegrationtokeninstructions.ts +37 -0
- package/src/sdk/models/shared/webhook.ts +1 -0
- package/sdk/models/shared/integrationsupport.d.ts +0 -2036
- package/sdk/models/shared/integrationsupport.d.ts.map +0 -1
- package/sdk/models/shared/integrationsupport.js +0 -1704
- package/sdk/models/shared/integrationsupport.js.map +0 -1
- package/sdk/models/shared/propertyintegrationsupportwebhookevents.d.ts +0 -36
- package/sdk/models/shared/propertyintegrationsupportwebhookevents.d.ts.map +0 -1
- package/sdk/models/shared/propertyintegrationsupportwebhookevents.js +0 -69
- package/sdk/models/shared/propertyintegrationsupportwebhookevents.js.map +0 -1
- package/sdk/models/shared/propertyintegrationsupportwebhookeventscreated.d.ts +0 -28
- package/sdk/models/shared/propertyintegrationsupportwebhookeventscreated.d.ts.map +0 -1
- package/sdk/models/shared/propertyintegrationsupportwebhookeventscreated.js +0 -51
- package/sdk/models/shared/propertyintegrationsupportwebhookeventscreated.js.map +0 -1
- package/sdk/models/shared/propertyintegrationsupportwebhookeventsdeleted.d.ts +0 -28
- package/sdk/models/shared/propertyintegrationsupportwebhookeventsdeleted.d.ts.map +0 -1
- package/sdk/models/shared/propertyintegrationsupportwebhookeventsdeleted.js +0 -51
- package/sdk/models/shared/propertyintegrationsupportwebhookeventsdeleted.js.map +0 -1
- package/sdk/models/shared/propertyintegrationsupportwebhookeventsupdated.d.ts +0 -28
- package/sdk/models/shared/propertyintegrationsupportwebhookeventsupdated.d.ts.map +0 -1
- package/sdk/models/shared/propertyintegrationsupportwebhookeventsupdated.js +0 -51
- package/sdk/models/shared/propertyintegrationsupportwebhookeventsupdated.js.map +0 -1
- package/src/sdk/models/shared/integrationsupport.ts +0 -2308
- package/src/sdk/models/shared/propertyintegrationsupportwebhookevents.ts +0 -109
- package/src/sdk/models/shared/propertyintegrationsupportwebhookeventscreated.ts +0 -37
- package/src/sdk/models/shared/propertyintegrationsupportwebhookeventsdeleted.ts +0 -37
- package/src/sdk/models/shared/propertyintegrationsupportwebhookeventsupdated.ts +0 -37
|
@@ -1,2036 +0,0 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
2
|
-
import { ClosedEnum } from "../../types/enums.js";
|
|
3
|
-
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
4
|
-
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
5
|
-
import { PropertyIntegrationSupportWebhookEvents, PropertyIntegrationSupportWebhookEvents$Outbound } from "./propertyintegrationsupportwebhookevents.js";
|
|
6
|
-
export declare const FromWebhook: {
|
|
7
|
-
readonly SupportedRequired: "supported-required";
|
|
8
|
-
readonly Supported: "supported";
|
|
9
|
-
readonly NotSupported: "not-supported";
|
|
10
|
-
};
|
|
11
|
-
export type FromWebhook = ClosedEnum<typeof FromWebhook>;
|
|
12
|
-
export declare const ListAccountId: {
|
|
13
|
-
readonly SupportedRequired: "supported-required";
|
|
14
|
-
readonly Supported: "supported";
|
|
15
|
-
readonly NotSupported: "not-supported";
|
|
16
|
-
};
|
|
17
|
-
export type ListAccountId = ClosedEnum<typeof ListAccountId>;
|
|
18
|
-
export declare const ListApplicationId: {
|
|
19
|
-
readonly SupportedRequired: "supported-required";
|
|
20
|
-
readonly Supported: "supported";
|
|
21
|
-
readonly NotSupported: "not-supported";
|
|
22
|
-
};
|
|
23
|
-
export type ListApplicationId = ClosedEnum<typeof ListApplicationId>;
|
|
24
|
-
export declare const ListCalendarId: {
|
|
25
|
-
readonly SupportedRequired: "supported-required";
|
|
26
|
-
readonly Supported: "supported";
|
|
27
|
-
readonly NotSupported: "not-supported";
|
|
28
|
-
};
|
|
29
|
-
export type ListCalendarId = ClosedEnum<typeof ListCalendarId>;
|
|
30
|
-
export declare const ListCallId: {
|
|
31
|
-
readonly SupportedRequired: "supported-required";
|
|
32
|
-
readonly Supported: "supported";
|
|
33
|
-
readonly NotSupported: "not-supported";
|
|
34
|
-
};
|
|
35
|
-
export type ListCallId = ClosedEnum<typeof ListCallId>;
|
|
36
|
-
export declare const ListCandidateId: {
|
|
37
|
-
readonly SupportedRequired: "supported-required";
|
|
38
|
-
readonly Supported: "supported";
|
|
39
|
-
readonly NotSupported: "not-supported";
|
|
40
|
-
};
|
|
41
|
-
export type ListCandidateId = ClosedEnum<typeof ListCandidateId>;
|
|
42
|
-
export declare const ListChannelId: {
|
|
43
|
-
readonly SupportedRequired: "supported-required";
|
|
44
|
-
readonly Supported: "supported";
|
|
45
|
-
readonly NotSupported: "not-supported";
|
|
46
|
-
};
|
|
47
|
-
export type ListChannelId = ClosedEnum<typeof ListChannelId>;
|
|
48
|
-
export declare const ListClassId: {
|
|
49
|
-
readonly SupportedRequired: "supported-required";
|
|
50
|
-
readonly Supported: "supported";
|
|
51
|
-
readonly NotSupported: "not-supported";
|
|
52
|
-
};
|
|
53
|
-
export type ListClassId = ClosedEnum<typeof ListClassId>;
|
|
54
|
-
export declare const ListCollectionId: {
|
|
55
|
-
readonly SupportedRequired: "supported-required";
|
|
56
|
-
readonly Supported: "supported";
|
|
57
|
-
readonly NotSupported: "not-supported";
|
|
58
|
-
};
|
|
59
|
-
export type ListCollectionId = ClosedEnum<typeof ListCollectionId>;
|
|
60
|
-
export declare const ListCompanyId: {
|
|
61
|
-
readonly SupportedRequired: "supported-required";
|
|
62
|
-
readonly Supported: "supported";
|
|
63
|
-
readonly NotSupported: "not-supported";
|
|
64
|
-
};
|
|
65
|
-
export type ListCompanyId = ClosedEnum<typeof ListCompanyId>;
|
|
66
|
-
export declare const ListContactId: {
|
|
67
|
-
readonly SupportedRequired: "supported-required";
|
|
68
|
-
readonly Supported: "supported";
|
|
69
|
-
readonly NotSupported: "not-supported";
|
|
70
|
-
};
|
|
71
|
-
export type ListContactId = ClosedEnum<typeof ListContactId>;
|
|
72
|
-
export declare const ListCourseId: {
|
|
73
|
-
readonly SupportedRequired: "supported-required";
|
|
74
|
-
readonly Supported: "supported";
|
|
75
|
-
readonly NotSupported: "not-supported";
|
|
76
|
-
};
|
|
77
|
-
export type ListCourseId = ClosedEnum<typeof ListCourseId>;
|
|
78
|
-
export declare const ListCustomerId: {
|
|
79
|
-
readonly SupportedRequired: "supported-required";
|
|
80
|
-
readonly Supported: "supported";
|
|
81
|
-
readonly NotSupported: "not-supported";
|
|
82
|
-
};
|
|
83
|
-
export type ListCustomerId = ClosedEnum<typeof ListCustomerId>;
|
|
84
|
-
export declare const ListDealId: {
|
|
85
|
-
readonly SupportedRequired: "supported-required";
|
|
86
|
-
readonly Supported: "supported";
|
|
87
|
-
readonly NotSupported: "not-supported";
|
|
88
|
-
};
|
|
89
|
-
export type ListDealId = ClosedEnum<typeof ListDealId>;
|
|
90
|
-
export declare const ListEndLe: {
|
|
91
|
-
readonly SupportedRequired: "supported-required";
|
|
92
|
-
readonly Supported: "supported";
|
|
93
|
-
readonly NotSupported: "not-supported";
|
|
94
|
-
};
|
|
95
|
-
export type ListEndLe = ClosedEnum<typeof ListEndLe>;
|
|
96
|
-
export declare const ListEventId: {
|
|
97
|
-
readonly SupportedRequired: "supported-required";
|
|
98
|
-
readonly Supported: "supported";
|
|
99
|
-
readonly NotSupported: "not-supported";
|
|
100
|
-
};
|
|
101
|
-
export type ListEventId = ClosedEnum<typeof ListEventId>;
|
|
102
|
-
export declare const ListInstructorId: {
|
|
103
|
-
readonly SupportedRequired: "supported-required";
|
|
104
|
-
readonly Supported: "supported";
|
|
105
|
-
readonly NotSupported: "not-supported";
|
|
106
|
-
};
|
|
107
|
-
export type ListInstructorId = ClosedEnum<typeof ListInstructorId>;
|
|
108
|
-
export declare const ListInterviewId: {
|
|
109
|
-
readonly SupportedRequired: "supported-required";
|
|
110
|
-
readonly Supported: "supported";
|
|
111
|
-
readonly NotSupported: "not-supported";
|
|
112
|
-
};
|
|
113
|
-
export type ListInterviewId = ClosedEnum<typeof ListInterviewId>;
|
|
114
|
-
export declare const ListInvoiceId: {
|
|
115
|
-
readonly SupportedRequired: "supported-required";
|
|
116
|
-
readonly Supported: "supported";
|
|
117
|
-
readonly NotSupported: "not-supported";
|
|
118
|
-
};
|
|
119
|
-
export type ListInvoiceId = ClosedEnum<typeof ListInvoiceId>;
|
|
120
|
-
export declare const ListItemId: {
|
|
121
|
-
readonly SupportedRequired: "supported-required";
|
|
122
|
-
readonly Supported: "supported";
|
|
123
|
-
readonly NotSupported: "not-supported";
|
|
124
|
-
};
|
|
125
|
-
export type ListItemId = ClosedEnum<typeof ListItemId>;
|
|
126
|
-
export declare const ListItemVariantId: {
|
|
127
|
-
readonly SupportedRequired: "supported-required";
|
|
128
|
-
readonly Supported: "supported";
|
|
129
|
-
readonly NotSupported: "not-supported";
|
|
130
|
-
};
|
|
131
|
-
export type ListItemVariantId = ClosedEnum<typeof ListItemVariantId>;
|
|
132
|
-
export declare const ListJobId: {
|
|
133
|
-
readonly SupportedRequired: "supported-required";
|
|
134
|
-
readonly Supported: "supported";
|
|
135
|
-
readonly NotSupported: "not-supported";
|
|
136
|
-
};
|
|
137
|
-
export type ListJobId = ClosedEnum<typeof ListJobId>;
|
|
138
|
-
export declare const ListLeadId: {
|
|
139
|
-
readonly SupportedRequired: "supported-required";
|
|
140
|
-
readonly Supported: "supported";
|
|
141
|
-
readonly NotSupported: "not-supported";
|
|
142
|
-
};
|
|
143
|
-
export type ListLeadId = ClosedEnum<typeof ListLeadId>;
|
|
144
|
-
export declare const ListLimit: {
|
|
145
|
-
readonly SupportedRequired: "supported-required";
|
|
146
|
-
readonly Supported: "supported";
|
|
147
|
-
readonly NotSupported: "not-supported";
|
|
148
|
-
};
|
|
149
|
-
export type ListLimit = ClosedEnum<typeof ListLimit>;
|
|
150
|
-
export declare const ListLinkId: {
|
|
151
|
-
readonly SupportedRequired: "supported-required";
|
|
152
|
-
readonly Supported: "supported";
|
|
153
|
-
readonly NotSupported: "not-supported";
|
|
154
|
-
};
|
|
155
|
-
export type ListLinkId = ClosedEnum<typeof ListLinkId>;
|
|
156
|
-
export declare const ListListId: {
|
|
157
|
-
readonly SupportedRequired: "supported-required";
|
|
158
|
-
readonly Supported: "supported";
|
|
159
|
-
readonly NotSupported: "not-supported";
|
|
160
|
-
};
|
|
161
|
-
export type ListListId = ClosedEnum<typeof ListListId>;
|
|
162
|
-
export declare const ListLocationId: {
|
|
163
|
-
readonly SupportedRequired: "supported-required";
|
|
164
|
-
readonly Supported: "supported";
|
|
165
|
-
readonly NotSupported: "not-supported";
|
|
166
|
-
};
|
|
167
|
-
export type ListLocationId = ClosedEnum<typeof ListLocationId>;
|
|
168
|
-
export declare const ListOffset: {
|
|
169
|
-
readonly SupportedRequired: "supported-required";
|
|
170
|
-
readonly Supported: "supported";
|
|
171
|
-
readonly NotSupported: "not-supported";
|
|
172
|
-
};
|
|
173
|
-
export type ListOffset = ClosedEnum<typeof ListOffset>;
|
|
174
|
-
export declare const ListOrder: {
|
|
175
|
-
readonly SupportedRequired: "supported-required";
|
|
176
|
-
readonly Supported: "supported";
|
|
177
|
-
readonly NotSupported: "not-supported";
|
|
178
|
-
};
|
|
179
|
-
export type ListOrder = ClosedEnum<typeof ListOrder>;
|
|
180
|
-
export declare const ListOrgId: {
|
|
181
|
-
readonly SupportedRequired: "supported-required";
|
|
182
|
-
readonly Supported: "supported";
|
|
183
|
-
readonly NotSupported: "not-supported";
|
|
184
|
-
};
|
|
185
|
-
export type ListOrgId = ClosedEnum<typeof ListOrgId>;
|
|
186
|
-
export declare const ListPageId: {
|
|
187
|
-
readonly SupportedRequired: "supported-required";
|
|
188
|
-
readonly Supported: "supported";
|
|
189
|
-
readonly NotSupported: "not-supported";
|
|
190
|
-
};
|
|
191
|
-
export type ListPageId = ClosedEnum<typeof ListPageId>;
|
|
192
|
-
export declare const ListParentId: {
|
|
193
|
-
readonly SupportedRequired: "supported-required";
|
|
194
|
-
readonly Supported: "supported";
|
|
195
|
-
readonly NotSupported: "not-supported";
|
|
196
|
-
};
|
|
197
|
-
export type ListParentId = ClosedEnum<typeof ListParentId>;
|
|
198
|
-
export declare const ListProjectId: {
|
|
199
|
-
readonly SupportedRequired: "supported-required";
|
|
200
|
-
readonly Supported: "supported";
|
|
201
|
-
readonly NotSupported: "not-supported";
|
|
202
|
-
};
|
|
203
|
-
export type ListProjectId = ClosedEnum<typeof ListProjectId>;
|
|
204
|
-
export declare const ListQuery: {
|
|
205
|
-
readonly SupportedRequired: "supported-required";
|
|
206
|
-
readonly Supported: "supported";
|
|
207
|
-
readonly NotSupported: "not-supported";
|
|
208
|
-
};
|
|
209
|
-
export type ListQuery = ClosedEnum<typeof ListQuery>;
|
|
210
|
-
export declare const ListRawFields: {
|
|
211
|
-
readonly SupportedRequired: "supported-required";
|
|
212
|
-
readonly Supported: "supported";
|
|
213
|
-
readonly NotSupported: "not-supported";
|
|
214
|
-
};
|
|
215
|
-
export type ListRawFields = ClosedEnum<typeof ListRawFields>;
|
|
216
|
-
export declare const ListRepoId: {
|
|
217
|
-
readonly SupportedRequired: "supported-required";
|
|
218
|
-
readonly Supported: "supported";
|
|
219
|
-
readonly NotSupported: "not-supported";
|
|
220
|
-
};
|
|
221
|
-
export type ListRepoId = ClosedEnum<typeof ListRepoId>;
|
|
222
|
-
export declare const ListRootId: {
|
|
223
|
-
readonly SupportedRequired: "supported-required";
|
|
224
|
-
readonly Supported: "supported";
|
|
225
|
-
readonly NotSupported: "not-supported";
|
|
226
|
-
};
|
|
227
|
-
export type ListRootId = ClosedEnum<typeof ListRootId>;
|
|
228
|
-
export declare const ListSortByCreatedAt: {
|
|
229
|
-
readonly SupportedRequired: "supported-required";
|
|
230
|
-
readonly Supported: "supported";
|
|
231
|
-
readonly NotSupported: "not-supported";
|
|
232
|
-
};
|
|
233
|
-
export type ListSortByCreatedAt = ClosedEnum<typeof ListSortByCreatedAt>;
|
|
234
|
-
export declare const ListSortByName: {
|
|
235
|
-
readonly SupportedRequired: "supported-required";
|
|
236
|
-
readonly Supported: "supported";
|
|
237
|
-
readonly NotSupported: "not-supported";
|
|
238
|
-
};
|
|
239
|
-
export type ListSortByName = ClosedEnum<typeof ListSortByName>;
|
|
240
|
-
export declare const ListSortByUpdatedAt: {
|
|
241
|
-
readonly SupportedRequired: "supported-required";
|
|
242
|
-
readonly Supported: "supported";
|
|
243
|
-
readonly NotSupported: "not-supported";
|
|
244
|
-
};
|
|
245
|
-
export type ListSortByUpdatedAt = ClosedEnum<typeof ListSortByUpdatedAt>;
|
|
246
|
-
export declare const ListSpaceId: {
|
|
247
|
-
readonly SupportedRequired: "supported-required";
|
|
248
|
-
readonly Supported: "supported";
|
|
249
|
-
readonly NotSupported: "not-supported";
|
|
250
|
-
};
|
|
251
|
-
export type ListSpaceId = ClosedEnum<typeof ListSpaceId>;
|
|
252
|
-
export declare const ListStartGte: {
|
|
253
|
-
readonly SupportedRequired: "supported-required";
|
|
254
|
-
readonly Supported: "supported";
|
|
255
|
-
readonly NotSupported: "not-supported";
|
|
256
|
-
};
|
|
257
|
-
export type ListStartGte = ClosedEnum<typeof ListStartGte>;
|
|
258
|
-
export declare const ListStudentId: {
|
|
259
|
-
readonly SupportedRequired: "supported-required";
|
|
260
|
-
readonly Supported: "supported";
|
|
261
|
-
readonly NotSupported: "not-supported";
|
|
262
|
-
};
|
|
263
|
-
export type ListStudentId = ClosedEnum<typeof ListStudentId>;
|
|
264
|
-
export declare const ListTaskId: {
|
|
265
|
-
readonly SupportedRequired: "supported-required";
|
|
266
|
-
readonly Supported: "supported";
|
|
267
|
-
readonly NotSupported: "not-supported";
|
|
268
|
-
};
|
|
269
|
-
export type ListTaskId = ClosedEnum<typeof ListTaskId>;
|
|
270
|
-
export declare const ListTicketId: {
|
|
271
|
-
readonly SupportedRequired: "supported-required";
|
|
272
|
-
readonly Supported: "supported";
|
|
273
|
-
readonly NotSupported: "not-supported";
|
|
274
|
-
};
|
|
275
|
-
export type ListTicketId = ClosedEnum<typeof ListTicketId>;
|
|
276
|
-
export declare const ListType: {
|
|
277
|
-
readonly SupportedRequired: "supported-required";
|
|
278
|
-
readonly Supported: "supported";
|
|
279
|
-
readonly NotSupported: "not-supported";
|
|
280
|
-
};
|
|
281
|
-
export type ListType = ClosedEnum<typeof ListType>;
|
|
282
|
-
export declare const ListUpdatedGte: {
|
|
283
|
-
readonly SupportedRequired: "supported-required";
|
|
284
|
-
readonly Supported: "supported";
|
|
285
|
-
readonly NotSupported: "not-supported";
|
|
286
|
-
};
|
|
287
|
-
export type ListUpdatedGte = ClosedEnum<typeof ListUpdatedGte>;
|
|
288
|
-
export declare const ListUserId: {
|
|
289
|
-
readonly SupportedRequired: "supported-required";
|
|
290
|
-
readonly Supported: "supported";
|
|
291
|
-
readonly NotSupported: "not-supported";
|
|
292
|
-
};
|
|
293
|
-
export type ListUserId = ClosedEnum<typeof ListUserId>;
|
|
294
|
-
export declare const NativeWebhookParentId: {
|
|
295
|
-
readonly SupportedRequired: "supported-required";
|
|
296
|
-
readonly Supported: "supported";
|
|
297
|
-
readonly NotSupported: "not-supported";
|
|
298
|
-
};
|
|
299
|
-
export type NativeWebhookParentId = ClosedEnum<typeof NativeWebhookParentId>;
|
|
300
|
-
export declare const NativeWebhookProjectId: {
|
|
301
|
-
readonly SupportedRequired: "supported-required";
|
|
302
|
-
readonly Supported: "supported";
|
|
303
|
-
readonly NotSupported: "not-supported";
|
|
304
|
-
};
|
|
305
|
-
export type NativeWebhookProjectId = ClosedEnum<typeof NativeWebhookProjectId>;
|
|
306
|
-
export declare const SearchDomain: {
|
|
307
|
-
readonly SupportedRequired: "supported-required";
|
|
308
|
-
readonly Supported: "supported";
|
|
309
|
-
readonly NotSupported: "not-supported";
|
|
310
|
-
};
|
|
311
|
-
export type SearchDomain = ClosedEnum<typeof SearchDomain>;
|
|
312
|
-
export declare const SearchEmail: {
|
|
313
|
-
readonly SupportedRequired: "supported-required";
|
|
314
|
-
readonly Supported: "supported";
|
|
315
|
-
readonly NotSupported: "not-supported";
|
|
316
|
-
};
|
|
317
|
-
export type SearchEmail = ClosedEnum<typeof SearchEmail>;
|
|
318
|
-
export declare const SearchLinkedinurl: {
|
|
319
|
-
readonly SupportedRequired: "supported-required";
|
|
320
|
-
readonly Supported: "supported";
|
|
321
|
-
readonly NotSupported: "not-supported";
|
|
322
|
-
};
|
|
323
|
-
export type SearchLinkedinurl = ClosedEnum<typeof SearchLinkedinurl>;
|
|
324
|
-
export declare const SearchName: {
|
|
325
|
-
readonly SupportedRequired: "supported-required";
|
|
326
|
-
readonly Supported: "supported";
|
|
327
|
-
readonly NotSupported: "not-supported";
|
|
328
|
-
};
|
|
329
|
-
export type SearchName = ClosedEnum<typeof SearchName>;
|
|
330
|
-
export declare const SearchTwitter: {
|
|
331
|
-
readonly SupportedRequired: "supported-required";
|
|
332
|
-
readonly Supported: "supported";
|
|
333
|
-
readonly NotSupported: "not-supported";
|
|
334
|
-
};
|
|
335
|
-
export type SearchTwitter = ClosedEnum<typeof SearchTwitter>;
|
|
336
|
-
export declare const VirtualWebhookChannelId: {
|
|
337
|
-
readonly SupportedRequired: "supported-required";
|
|
338
|
-
readonly Supported: "supported";
|
|
339
|
-
readonly NotSupported: "not-supported";
|
|
340
|
-
};
|
|
341
|
-
export type VirtualWebhookChannelId = ClosedEnum<typeof VirtualWebhookChannelId>;
|
|
342
|
-
export declare const VirtualWebhookCompanyId: {
|
|
343
|
-
readonly SupportedRequired: "supported-required";
|
|
344
|
-
readonly Supported: "supported";
|
|
345
|
-
readonly NotSupported: "not-supported";
|
|
346
|
-
};
|
|
347
|
-
export type VirtualWebhookCompanyId = ClosedEnum<typeof VirtualWebhookCompanyId>;
|
|
348
|
-
export declare const VirtualWebhookContactId: {
|
|
349
|
-
readonly SupportedRequired: "supported-required";
|
|
350
|
-
readonly Supported: "supported";
|
|
351
|
-
readonly NotSupported: "not-supported";
|
|
352
|
-
};
|
|
353
|
-
export type VirtualWebhookContactId = ClosedEnum<typeof VirtualWebhookContactId>;
|
|
354
|
-
export declare const VirtualWebhookDealId: {
|
|
355
|
-
readonly SupportedRequired: "supported-required";
|
|
356
|
-
readonly Supported: "supported";
|
|
357
|
-
readonly NotSupported: "not-supported";
|
|
358
|
-
};
|
|
359
|
-
export type VirtualWebhookDealId = ClosedEnum<typeof VirtualWebhookDealId>;
|
|
360
|
-
export declare const VirtualWebhookJobId: {
|
|
361
|
-
readonly SupportedRequired: "supported-required";
|
|
362
|
-
readonly Supported: "supported";
|
|
363
|
-
readonly NotSupported: "not-supported";
|
|
364
|
-
};
|
|
365
|
-
export type VirtualWebhookJobId = ClosedEnum<typeof VirtualWebhookJobId>;
|
|
366
|
-
export declare const VirtualWebhookLimit: {
|
|
367
|
-
readonly SupportedRequired: "supported-required";
|
|
368
|
-
readonly Supported: "supported";
|
|
369
|
-
readonly NotSupported: "not-supported";
|
|
370
|
-
};
|
|
371
|
-
export type VirtualWebhookLimit = ClosedEnum<typeof VirtualWebhookLimit>;
|
|
372
|
-
export declare const VirtualWebhookParentId: {
|
|
373
|
-
readonly SupportedRequired: "supported-required";
|
|
374
|
-
readonly Supported: "supported";
|
|
375
|
-
readonly NotSupported: "not-supported";
|
|
376
|
-
};
|
|
377
|
-
export type VirtualWebhookParentId = ClosedEnum<typeof VirtualWebhookParentId>;
|
|
378
|
-
export declare const VirtualWebhookTicketId: {
|
|
379
|
-
readonly SupportedRequired: "supported-required";
|
|
380
|
-
readonly Supported: "supported";
|
|
381
|
-
readonly NotSupported: "not-supported";
|
|
382
|
-
};
|
|
383
|
-
export type VirtualWebhookTicketId = ClosedEnum<typeof VirtualWebhookTicketId>;
|
|
384
|
-
export declare const VirtualWebhookType: {
|
|
385
|
-
readonly SupportedRequired: "supported-required";
|
|
386
|
-
readonly Supported: "supported";
|
|
387
|
-
readonly NotSupported: "not-supported";
|
|
388
|
-
};
|
|
389
|
-
export type VirtualWebhookType = ClosedEnum<typeof VirtualWebhookType>;
|
|
390
|
-
export declare const VirtualWebhookUpdatedGte: {
|
|
391
|
-
readonly SupportedRequired: "supported-required";
|
|
392
|
-
readonly Supported: "supported";
|
|
393
|
-
readonly NotSupported: "not-supported";
|
|
394
|
-
};
|
|
395
|
-
export type VirtualWebhookUpdatedGte = ClosedEnum<typeof VirtualWebhookUpdatedGte>;
|
|
396
|
-
export declare const VirtualWebhookUserId: {
|
|
397
|
-
readonly SupportedRequired: "supported-required";
|
|
398
|
-
readonly Supported: "supported";
|
|
399
|
-
readonly NotSupported: "not-supported";
|
|
400
|
-
};
|
|
401
|
-
export type VirtualWebhookUserId = ClosedEnum<typeof VirtualWebhookUserId>;
|
|
402
|
-
export type IntegrationSupport = {
|
|
403
|
-
fromWebhook?: FromWebhook | undefined;
|
|
404
|
-
inboundFields?: {
|
|
405
|
-
[k: string]: any;
|
|
406
|
-
} | undefined;
|
|
407
|
-
listAccountId?: ListAccountId | undefined;
|
|
408
|
-
listApplicationId?: ListApplicationId | undefined;
|
|
409
|
-
listCalendarId?: ListCalendarId | undefined;
|
|
410
|
-
listCallId?: ListCallId | undefined;
|
|
411
|
-
listCandidateId?: ListCandidateId | undefined;
|
|
412
|
-
listChannelId?: ListChannelId | undefined;
|
|
413
|
-
listClassId?: ListClassId | undefined;
|
|
414
|
-
listCollectionId?: ListCollectionId | undefined;
|
|
415
|
-
listCompanyId?: ListCompanyId | undefined;
|
|
416
|
-
listContactId?: ListContactId | undefined;
|
|
417
|
-
listCourseId?: ListCourseId | undefined;
|
|
418
|
-
listCustomerId?: ListCustomerId | undefined;
|
|
419
|
-
listDealId?: ListDealId | undefined;
|
|
420
|
-
listEndLe?: ListEndLe | undefined;
|
|
421
|
-
listEventId?: ListEventId | undefined;
|
|
422
|
-
listInstructorId?: ListInstructorId | undefined;
|
|
423
|
-
listInterviewId?: ListInterviewId | undefined;
|
|
424
|
-
listInvoiceId?: ListInvoiceId | undefined;
|
|
425
|
-
listItemId?: ListItemId | undefined;
|
|
426
|
-
listItemVariantId?: ListItemVariantId | undefined;
|
|
427
|
-
listJobId?: ListJobId | undefined;
|
|
428
|
-
listLeadId?: ListLeadId | undefined;
|
|
429
|
-
listLimit?: ListLimit | undefined;
|
|
430
|
-
listLinkId?: ListLinkId | undefined;
|
|
431
|
-
listListId?: ListListId | undefined;
|
|
432
|
-
listLocationId?: ListLocationId | undefined;
|
|
433
|
-
listOffset?: ListOffset | undefined;
|
|
434
|
-
listOrder?: ListOrder | undefined;
|
|
435
|
-
listOrgId?: ListOrgId | undefined;
|
|
436
|
-
listPageId?: ListPageId | undefined;
|
|
437
|
-
listParentId?: ListParentId | undefined;
|
|
438
|
-
listProjectId?: ListProjectId | undefined;
|
|
439
|
-
listQuery?: ListQuery | undefined;
|
|
440
|
-
listRawFields?: ListRawFields | undefined;
|
|
441
|
-
listRepoId?: ListRepoId | undefined;
|
|
442
|
-
listRootId?: ListRootId | undefined;
|
|
443
|
-
listSortByCreatedAt?: ListSortByCreatedAt | undefined;
|
|
444
|
-
listSortByName?: ListSortByName | undefined;
|
|
445
|
-
listSortByUpdatedAt?: ListSortByUpdatedAt | undefined;
|
|
446
|
-
listSpaceId?: ListSpaceId | undefined;
|
|
447
|
-
listStartGte?: ListStartGte | undefined;
|
|
448
|
-
listStudentId?: ListStudentId | undefined;
|
|
449
|
-
listTaskId?: ListTaskId | undefined;
|
|
450
|
-
listTicketId?: ListTicketId | undefined;
|
|
451
|
-
listType?: ListType | undefined;
|
|
452
|
-
listUpdatedGte?: ListUpdatedGte | undefined;
|
|
453
|
-
listUserId?: ListUserId | undefined;
|
|
454
|
-
methods?: {
|
|
455
|
-
[k: string]: any;
|
|
456
|
-
} | undefined;
|
|
457
|
-
nativeWebhookParentId?: NativeWebhookParentId | undefined;
|
|
458
|
-
nativeWebhookProjectId?: NativeWebhookProjectId | undefined;
|
|
459
|
-
outboundFields?: {
|
|
460
|
-
[k: string]: any;
|
|
461
|
-
} | undefined;
|
|
462
|
-
/**
|
|
463
|
-
* objects that we map from in the integration
|
|
464
|
-
*/
|
|
465
|
-
rawObjects?: Array<string> | undefined;
|
|
466
|
-
searchDomain?: SearchDomain | undefined;
|
|
467
|
-
searchEmail?: SearchEmail | undefined;
|
|
468
|
-
searchLinkedinurl?: SearchLinkedinurl | undefined;
|
|
469
|
-
searchName?: SearchName | undefined;
|
|
470
|
-
searchTwitter?: SearchTwitter | undefined;
|
|
471
|
-
slowFields?: Array<string> | undefined;
|
|
472
|
-
virtualWebhookChannelId?: VirtualWebhookChannelId | undefined;
|
|
473
|
-
virtualWebhookCompanyId?: VirtualWebhookCompanyId | undefined;
|
|
474
|
-
virtualWebhookContactId?: VirtualWebhookContactId | undefined;
|
|
475
|
-
virtualWebhookDealId?: VirtualWebhookDealId | undefined;
|
|
476
|
-
virtualWebhookJobId?: VirtualWebhookJobId | undefined;
|
|
477
|
-
virtualWebhookLimit?: VirtualWebhookLimit | undefined;
|
|
478
|
-
virtualWebhookParentId?: VirtualWebhookParentId | undefined;
|
|
479
|
-
virtualWebhookTicketId?: VirtualWebhookTicketId | undefined;
|
|
480
|
-
virtualWebhookType?: VirtualWebhookType | undefined;
|
|
481
|
-
virtualWebhookUpdatedGte?: VirtualWebhookUpdatedGte | undefined;
|
|
482
|
-
virtualWebhookUserId?: VirtualWebhookUserId | undefined;
|
|
483
|
-
webhookEvents?: PropertyIntegrationSupportWebhookEvents | undefined;
|
|
484
|
-
};
|
|
485
|
-
/** @internal */
|
|
486
|
-
export declare const FromWebhook$inboundSchema: z.ZodNativeEnum<typeof FromWebhook>;
|
|
487
|
-
/** @internal */
|
|
488
|
-
export declare const FromWebhook$outboundSchema: z.ZodNativeEnum<typeof FromWebhook>;
|
|
489
|
-
/**
|
|
490
|
-
* @internal
|
|
491
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
492
|
-
*/
|
|
493
|
-
export declare namespace FromWebhook$ {
|
|
494
|
-
/** @deprecated use `FromWebhook$inboundSchema` instead. */
|
|
495
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
496
|
-
readonly SupportedRequired: "supported-required";
|
|
497
|
-
readonly Supported: "supported";
|
|
498
|
-
readonly NotSupported: "not-supported";
|
|
499
|
-
}>;
|
|
500
|
-
/** @deprecated use `FromWebhook$outboundSchema` instead. */
|
|
501
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
502
|
-
readonly SupportedRequired: "supported-required";
|
|
503
|
-
readonly Supported: "supported";
|
|
504
|
-
readonly NotSupported: "not-supported";
|
|
505
|
-
}>;
|
|
506
|
-
}
|
|
507
|
-
/** @internal */
|
|
508
|
-
export declare const ListAccountId$inboundSchema: z.ZodNativeEnum<typeof ListAccountId>;
|
|
509
|
-
/** @internal */
|
|
510
|
-
export declare const ListAccountId$outboundSchema: z.ZodNativeEnum<typeof ListAccountId>;
|
|
511
|
-
/**
|
|
512
|
-
* @internal
|
|
513
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
514
|
-
*/
|
|
515
|
-
export declare namespace ListAccountId$ {
|
|
516
|
-
/** @deprecated use `ListAccountId$inboundSchema` instead. */
|
|
517
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
518
|
-
readonly SupportedRequired: "supported-required";
|
|
519
|
-
readonly Supported: "supported";
|
|
520
|
-
readonly NotSupported: "not-supported";
|
|
521
|
-
}>;
|
|
522
|
-
/** @deprecated use `ListAccountId$outboundSchema` instead. */
|
|
523
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
524
|
-
readonly SupportedRequired: "supported-required";
|
|
525
|
-
readonly Supported: "supported";
|
|
526
|
-
readonly NotSupported: "not-supported";
|
|
527
|
-
}>;
|
|
528
|
-
}
|
|
529
|
-
/** @internal */
|
|
530
|
-
export declare const ListApplicationId$inboundSchema: z.ZodNativeEnum<typeof ListApplicationId>;
|
|
531
|
-
/** @internal */
|
|
532
|
-
export declare const ListApplicationId$outboundSchema: z.ZodNativeEnum<typeof ListApplicationId>;
|
|
533
|
-
/**
|
|
534
|
-
* @internal
|
|
535
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
536
|
-
*/
|
|
537
|
-
export declare namespace ListApplicationId$ {
|
|
538
|
-
/** @deprecated use `ListApplicationId$inboundSchema` instead. */
|
|
539
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
540
|
-
readonly SupportedRequired: "supported-required";
|
|
541
|
-
readonly Supported: "supported";
|
|
542
|
-
readonly NotSupported: "not-supported";
|
|
543
|
-
}>;
|
|
544
|
-
/** @deprecated use `ListApplicationId$outboundSchema` instead. */
|
|
545
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
546
|
-
readonly SupportedRequired: "supported-required";
|
|
547
|
-
readonly Supported: "supported";
|
|
548
|
-
readonly NotSupported: "not-supported";
|
|
549
|
-
}>;
|
|
550
|
-
}
|
|
551
|
-
/** @internal */
|
|
552
|
-
export declare const ListCalendarId$inboundSchema: z.ZodNativeEnum<typeof ListCalendarId>;
|
|
553
|
-
/** @internal */
|
|
554
|
-
export declare const ListCalendarId$outboundSchema: z.ZodNativeEnum<typeof ListCalendarId>;
|
|
555
|
-
/**
|
|
556
|
-
* @internal
|
|
557
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
558
|
-
*/
|
|
559
|
-
export declare namespace ListCalendarId$ {
|
|
560
|
-
/** @deprecated use `ListCalendarId$inboundSchema` instead. */
|
|
561
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
562
|
-
readonly SupportedRequired: "supported-required";
|
|
563
|
-
readonly Supported: "supported";
|
|
564
|
-
readonly NotSupported: "not-supported";
|
|
565
|
-
}>;
|
|
566
|
-
/** @deprecated use `ListCalendarId$outboundSchema` instead. */
|
|
567
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
568
|
-
readonly SupportedRequired: "supported-required";
|
|
569
|
-
readonly Supported: "supported";
|
|
570
|
-
readonly NotSupported: "not-supported";
|
|
571
|
-
}>;
|
|
572
|
-
}
|
|
573
|
-
/** @internal */
|
|
574
|
-
export declare const ListCallId$inboundSchema: z.ZodNativeEnum<typeof ListCallId>;
|
|
575
|
-
/** @internal */
|
|
576
|
-
export declare const ListCallId$outboundSchema: z.ZodNativeEnum<typeof ListCallId>;
|
|
577
|
-
/**
|
|
578
|
-
* @internal
|
|
579
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
580
|
-
*/
|
|
581
|
-
export declare namespace ListCallId$ {
|
|
582
|
-
/** @deprecated use `ListCallId$inboundSchema` instead. */
|
|
583
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
584
|
-
readonly SupportedRequired: "supported-required";
|
|
585
|
-
readonly Supported: "supported";
|
|
586
|
-
readonly NotSupported: "not-supported";
|
|
587
|
-
}>;
|
|
588
|
-
/** @deprecated use `ListCallId$outboundSchema` instead. */
|
|
589
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
590
|
-
readonly SupportedRequired: "supported-required";
|
|
591
|
-
readonly Supported: "supported";
|
|
592
|
-
readonly NotSupported: "not-supported";
|
|
593
|
-
}>;
|
|
594
|
-
}
|
|
595
|
-
/** @internal */
|
|
596
|
-
export declare const ListCandidateId$inboundSchema: z.ZodNativeEnum<typeof ListCandidateId>;
|
|
597
|
-
/** @internal */
|
|
598
|
-
export declare const ListCandidateId$outboundSchema: z.ZodNativeEnum<typeof ListCandidateId>;
|
|
599
|
-
/**
|
|
600
|
-
* @internal
|
|
601
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
602
|
-
*/
|
|
603
|
-
export declare namespace ListCandidateId$ {
|
|
604
|
-
/** @deprecated use `ListCandidateId$inboundSchema` instead. */
|
|
605
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
606
|
-
readonly SupportedRequired: "supported-required";
|
|
607
|
-
readonly Supported: "supported";
|
|
608
|
-
readonly NotSupported: "not-supported";
|
|
609
|
-
}>;
|
|
610
|
-
/** @deprecated use `ListCandidateId$outboundSchema` instead. */
|
|
611
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
612
|
-
readonly SupportedRequired: "supported-required";
|
|
613
|
-
readonly Supported: "supported";
|
|
614
|
-
readonly NotSupported: "not-supported";
|
|
615
|
-
}>;
|
|
616
|
-
}
|
|
617
|
-
/** @internal */
|
|
618
|
-
export declare const ListChannelId$inboundSchema: z.ZodNativeEnum<typeof ListChannelId>;
|
|
619
|
-
/** @internal */
|
|
620
|
-
export declare const ListChannelId$outboundSchema: z.ZodNativeEnum<typeof ListChannelId>;
|
|
621
|
-
/**
|
|
622
|
-
* @internal
|
|
623
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
624
|
-
*/
|
|
625
|
-
export declare namespace ListChannelId$ {
|
|
626
|
-
/** @deprecated use `ListChannelId$inboundSchema` instead. */
|
|
627
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
628
|
-
readonly SupportedRequired: "supported-required";
|
|
629
|
-
readonly Supported: "supported";
|
|
630
|
-
readonly NotSupported: "not-supported";
|
|
631
|
-
}>;
|
|
632
|
-
/** @deprecated use `ListChannelId$outboundSchema` instead. */
|
|
633
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
634
|
-
readonly SupportedRequired: "supported-required";
|
|
635
|
-
readonly Supported: "supported";
|
|
636
|
-
readonly NotSupported: "not-supported";
|
|
637
|
-
}>;
|
|
638
|
-
}
|
|
639
|
-
/** @internal */
|
|
640
|
-
export declare const ListClassId$inboundSchema: z.ZodNativeEnum<typeof ListClassId>;
|
|
641
|
-
/** @internal */
|
|
642
|
-
export declare const ListClassId$outboundSchema: z.ZodNativeEnum<typeof ListClassId>;
|
|
643
|
-
/**
|
|
644
|
-
* @internal
|
|
645
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
646
|
-
*/
|
|
647
|
-
export declare namespace ListClassId$ {
|
|
648
|
-
/** @deprecated use `ListClassId$inboundSchema` instead. */
|
|
649
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
650
|
-
readonly SupportedRequired: "supported-required";
|
|
651
|
-
readonly Supported: "supported";
|
|
652
|
-
readonly NotSupported: "not-supported";
|
|
653
|
-
}>;
|
|
654
|
-
/** @deprecated use `ListClassId$outboundSchema` instead. */
|
|
655
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
656
|
-
readonly SupportedRequired: "supported-required";
|
|
657
|
-
readonly Supported: "supported";
|
|
658
|
-
readonly NotSupported: "not-supported";
|
|
659
|
-
}>;
|
|
660
|
-
}
|
|
661
|
-
/** @internal */
|
|
662
|
-
export declare const ListCollectionId$inboundSchema: z.ZodNativeEnum<typeof ListCollectionId>;
|
|
663
|
-
/** @internal */
|
|
664
|
-
export declare const ListCollectionId$outboundSchema: z.ZodNativeEnum<typeof ListCollectionId>;
|
|
665
|
-
/**
|
|
666
|
-
* @internal
|
|
667
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
668
|
-
*/
|
|
669
|
-
export declare namespace ListCollectionId$ {
|
|
670
|
-
/** @deprecated use `ListCollectionId$inboundSchema` instead. */
|
|
671
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
672
|
-
readonly SupportedRequired: "supported-required";
|
|
673
|
-
readonly Supported: "supported";
|
|
674
|
-
readonly NotSupported: "not-supported";
|
|
675
|
-
}>;
|
|
676
|
-
/** @deprecated use `ListCollectionId$outboundSchema` instead. */
|
|
677
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
678
|
-
readonly SupportedRequired: "supported-required";
|
|
679
|
-
readonly Supported: "supported";
|
|
680
|
-
readonly NotSupported: "not-supported";
|
|
681
|
-
}>;
|
|
682
|
-
}
|
|
683
|
-
/** @internal */
|
|
684
|
-
export declare const ListCompanyId$inboundSchema: z.ZodNativeEnum<typeof ListCompanyId>;
|
|
685
|
-
/** @internal */
|
|
686
|
-
export declare const ListCompanyId$outboundSchema: z.ZodNativeEnum<typeof ListCompanyId>;
|
|
687
|
-
/**
|
|
688
|
-
* @internal
|
|
689
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
690
|
-
*/
|
|
691
|
-
export declare namespace ListCompanyId$ {
|
|
692
|
-
/** @deprecated use `ListCompanyId$inboundSchema` instead. */
|
|
693
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
694
|
-
readonly SupportedRequired: "supported-required";
|
|
695
|
-
readonly Supported: "supported";
|
|
696
|
-
readonly NotSupported: "not-supported";
|
|
697
|
-
}>;
|
|
698
|
-
/** @deprecated use `ListCompanyId$outboundSchema` instead. */
|
|
699
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
700
|
-
readonly SupportedRequired: "supported-required";
|
|
701
|
-
readonly Supported: "supported";
|
|
702
|
-
readonly NotSupported: "not-supported";
|
|
703
|
-
}>;
|
|
704
|
-
}
|
|
705
|
-
/** @internal */
|
|
706
|
-
export declare const ListContactId$inboundSchema: z.ZodNativeEnum<typeof ListContactId>;
|
|
707
|
-
/** @internal */
|
|
708
|
-
export declare const ListContactId$outboundSchema: z.ZodNativeEnum<typeof ListContactId>;
|
|
709
|
-
/**
|
|
710
|
-
* @internal
|
|
711
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
712
|
-
*/
|
|
713
|
-
export declare namespace ListContactId$ {
|
|
714
|
-
/** @deprecated use `ListContactId$inboundSchema` instead. */
|
|
715
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
716
|
-
readonly SupportedRequired: "supported-required";
|
|
717
|
-
readonly Supported: "supported";
|
|
718
|
-
readonly NotSupported: "not-supported";
|
|
719
|
-
}>;
|
|
720
|
-
/** @deprecated use `ListContactId$outboundSchema` instead. */
|
|
721
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
722
|
-
readonly SupportedRequired: "supported-required";
|
|
723
|
-
readonly Supported: "supported";
|
|
724
|
-
readonly NotSupported: "not-supported";
|
|
725
|
-
}>;
|
|
726
|
-
}
|
|
727
|
-
/** @internal */
|
|
728
|
-
export declare const ListCourseId$inboundSchema: z.ZodNativeEnum<typeof ListCourseId>;
|
|
729
|
-
/** @internal */
|
|
730
|
-
export declare const ListCourseId$outboundSchema: z.ZodNativeEnum<typeof ListCourseId>;
|
|
731
|
-
/**
|
|
732
|
-
* @internal
|
|
733
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
734
|
-
*/
|
|
735
|
-
export declare namespace ListCourseId$ {
|
|
736
|
-
/** @deprecated use `ListCourseId$inboundSchema` instead. */
|
|
737
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
738
|
-
readonly SupportedRequired: "supported-required";
|
|
739
|
-
readonly Supported: "supported";
|
|
740
|
-
readonly NotSupported: "not-supported";
|
|
741
|
-
}>;
|
|
742
|
-
/** @deprecated use `ListCourseId$outboundSchema` instead. */
|
|
743
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
744
|
-
readonly SupportedRequired: "supported-required";
|
|
745
|
-
readonly Supported: "supported";
|
|
746
|
-
readonly NotSupported: "not-supported";
|
|
747
|
-
}>;
|
|
748
|
-
}
|
|
749
|
-
/** @internal */
|
|
750
|
-
export declare const ListCustomerId$inboundSchema: z.ZodNativeEnum<typeof ListCustomerId>;
|
|
751
|
-
/** @internal */
|
|
752
|
-
export declare const ListCustomerId$outboundSchema: z.ZodNativeEnum<typeof ListCustomerId>;
|
|
753
|
-
/**
|
|
754
|
-
* @internal
|
|
755
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
756
|
-
*/
|
|
757
|
-
export declare namespace ListCustomerId$ {
|
|
758
|
-
/** @deprecated use `ListCustomerId$inboundSchema` instead. */
|
|
759
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
760
|
-
readonly SupportedRequired: "supported-required";
|
|
761
|
-
readonly Supported: "supported";
|
|
762
|
-
readonly NotSupported: "not-supported";
|
|
763
|
-
}>;
|
|
764
|
-
/** @deprecated use `ListCustomerId$outboundSchema` instead. */
|
|
765
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
766
|
-
readonly SupportedRequired: "supported-required";
|
|
767
|
-
readonly Supported: "supported";
|
|
768
|
-
readonly NotSupported: "not-supported";
|
|
769
|
-
}>;
|
|
770
|
-
}
|
|
771
|
-
/** @internal */
|
|
772
|
-
export declare const ListDealId$inboundSchema: z.ZodNativeEnum<typeof ListDealId>;
|
|
773
|
-
/** @internal */
|
|
774
|
-
export declare const ListDealId$outboundSchema: z.ZodNativeEnum<typeof ListDealId>;
|
|
775
|
-
/**
|
|
776
|
-
* @internal
|
|
777
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
778
|
-
*/
|
|
779
|
-
export declare namespace ListDealId$ {
|
|
780
|
-
/** @deprecated use `ListDealId$inboundSchema` instead. */
|
|
781
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
782
|
-
readonly SupportedRequired: "supported-required";
|
|
783
|
-
readonly Supported: "supported";
|
|
784
|
-
readonly NotSupported: "not-supported";
|
|
785
|
-
}>;
|
|
786
|
-
/** @deprecated use `ListDealId$outboundSchema` instead. */
|
|
787
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
788
|
-
readonly SupportedRequired: "supported-required";
|
|
789
|
-
readonly Supported: "supported";
|
|
790
|
-
readonly NotSupported: "not-supported";
|
|
791
|
-
}>;
|
|
792
|
-
}
|
|
793
|
-
/** @internal */
|
|
794
|
-
export declare const ListEndLe$inboundSchema: z.ZodNativeEnum<typeof ListEndLe>;
|
|
795
|
-
/** @internal */
|
|
796
|
-
export declare const ListEndLe$outboundSchema: z.ZodNativeEnum<typeof ListEndLe>;
|
|
797
|
-
/**
|
|
798
|
-
* @internal
|
|
799
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
800
|
-
*/
|
|
801
|
-
export declare namespace ListEndLe$ {
|
|
802
|
-
/** @deprecated use `ListEndLe$inboundSchema` instead. */
|
|
803
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
804
|
-
readonly SupportedRequired: "supported-required";
|
|
805
|
-
readonly Supported: "supported";
|
|
806
|
-
readonly NotSupported: "not-supported";
|
|
807
|
-
}>;
|
|
808
|
-
/** @deprecated use `ListEndLe$outboundSchema` instead. */
|
|
809
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
810
|
-
readonly SupportedRequired: "supported-required";
|
|
811
|
-
readonly Supported: "supported";
|
|
812
|
-
readonly NotSupported: "not-supported";
|
|
813
|
-
}>;
|
|
814
|
-
}
|
|
815
|
-
/** @internal */
|
|
816
|
-
export declare const ListEventId$inboundSchema: z.ZodNativeEnum<typeof ListEventId>;
|
|
817
|
-
/** @internal */
|
|
818
|
-
export declare const ListEventId$outboundSchema: z.ZodNativeEnum<typeof ListEventId>;
|
|
819
|
-
/**
|
|
820
|
-
* @internal
|
|
821
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
822
|
-
*/
|
|
823
|
-
export declare namespace ListEventId$ {
|
|
824
|
-
/** @deprecated use `ListEventId$inboundSchema` instead. */
|
|
825
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
826
|
-
readonly SupportedRequired: "supported-required";
|
|
827
|
-
readonly Supported: "supported";
|
|
828
|
-
readonly NotSupported: "not-supported";
|
|
829
|
-
}>;
|
|
830
|
-
/** @deprecated use `ListEventId$outboundSchema` instead. */
|
|
831
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
832
|
-
readonly SupportedRequired: "supported-required";
|
|
833
|
-
readonly Supported: "supported";
|
|
834
|
-
readonly NotSupported: "not-supported";
|
|
835
|
-
}>;
|
|
836
|
-
}
|
|
837
|
-
/** @internal */
|
|
838
|
-
export declare const ListInstructorId$inboundSchema: z.ZodNativeEnum<typeof ListInstructorId>;
|
|
839
|
-
/** @internal */
|
|
840
|
-
export declare const ListInstructorId$outboundSchema: z.ZodNativeEnum<typeof ListInstructorId>;
|
|
841
|
-
/**
|
|
842
|
-
* @internal
|
|
843
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
844
|
-
*/
|
|
845
|
-
export declare namespace ListInstructorId$ {
|
|
846
|
-
/** @deprecated use `ListInstructorId$inboundSchema` instead. */
|
|
847
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
848
|
-
readonly SupportedRequired: "supported-required";
|
|
849
|
-
readonly Supported: "supported";
|
|
850
|
-
readonly NotSupported: "not-supported";
|
|
851
|
-
}>;
|
|
852
|
-
/** @deprecated use `ListInstructorId$outboundSchema` instead. */
|
|
853
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
854
|
-
readonly SupportedRequired: "supported-required";
|
|
855
|
-
readonly Supported: "supported";
|
|
856
|
-
readonly NotSupported: "not-supported";
|
|
857
|
-
}>;
|
|
858
|
-
}
|
|
859
|
-
/** @internal */
|
|
860
|
-
export declare const ListInterviewId$inboundSchema: z.ZodNativeEnum<typeof ListInterviewId>;
|
|
861
|
-
/** @internal */
|
|
862
|
-
export declare const ListInterviewId$outboundSchema: z.ZodNativeEnum<typeof ListInterviewId>;
|
|
863
|
-
/**
|
|
864
|
-
* @internal
|
|
865
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
866
|
-
*/
|
|
867
|
-
export declare namespace ListInterviewId$ {
|
|
868
|
-
/** @deprecated use `ListInterviewId$inboundSchema` instead. */
|
|
869
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
870
|
-
readonly SupportedRequired: "supported-required";
|
|
871
|
-
readonly Supported: "supported";
|
|
872
|
-
readonly NotSupported: "not-supported";
|
|
873
|
-
}>;
|
|
874
|
-
/** @deprecated use `ListInterviewId$outboundSchema` instead. */
|
|
875
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
876
|
-
readonly SupportedRequired: "supported-required";
|
|
877
|
-
readonly Supported: "supported";
|
|
878
|
-
readonly NotSupported: "not-supported";
|
|
879
|
-
}>;
|
|
880
|
-
}
|
|
881
|
-
/** @internal */
|
|
882
|
-
export declare const ListInvoiceId$inboundSchema: z.ZodNativeEnum<typeof ListInvoiceId>;
|
|
883
|
-
/** @internal */
|
|
884
|
-
export declare const ListInvoiceId$outboundSchema: z.ZodNativeEnum<typeof ListInvoiceId>;
|
|
885
|
-
/**
|
|
886
|
-
* @internal
|
|
887
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
888
|
-
*/
|
|
889
|
-
export declare namespace ListInvoiceId$ {
|
|
890
|
-
/** @deprecated use `ListInvoiceId$inboundSchema` instead. */
|
|
891
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
892
|
-
readonly SupportedRequired: "supported-required";
|
|
893
|
-
readonly Supported: "supported";
|
|
894
|
-
readonly NotSupported: "not-supported";
|
|
895
|
-
}>;
|
|
896
|
-
/** @deprecated use `ListInvoiceId$outboundSchema` instead. */
|
|
897
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
898
|
-
readonly SupportedRequired: "supported-required";
|
|
899
|
-
readonly Supported: "supported";
|
|
900
|
-
readonly NotSupported: "not-supported";
|
|
901
|
-
}>;
|
|
902
|
-
}
|
|
903
|
-
/** @internal */
|
|
904
|
-
export declare const ListItemId$inboundSchema: z.ZodNativeEnum<typeof ListItemId>;
|
|
905
|
-
/** @internal */
|
|
906
|
-
export declare const ListItemId$outboundSchema: z.ZodNativeEnum<typeof ListItemId>;
|
|
907
|
-
/**
|
|
908
|
-
* @internal
|
|
909
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
910
|
-
*/
|
|
911
|
-
export declare namespace ListItemId$ {
|
|
912
|
-
/** @deprecated use `ListItemId$inboundSchema` instead. */
|
|
913
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
914
|
-
readonly SupportedRequired: "supported-required";
|
|
915
|
-
readonly Supported: "supported";
|
|
916
|
-
readonly NotSupported: "not-supported";
|
|
917
|
-
}>;
|
|
918
|
-
/** @deprecated use `ListItemId$outboundSchema` instead. */
|
|
919
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
920
|
-
readonly SupportedRequired: "supported-required";
|
|
921
|
-
readonly Supported: "supported";
|
|
922
|
-
readonly NotSupported: "not-supported";
|
|
923
|
-
}>;
|
|
924
|
-
}
|
|
925
|
-
/** @internal */
|
|
926
|
-
export declare const ListItemVariantId$inboundSchema: z.ZodNativeEnum<typeof ListItemVariantId>;
|
|
927
|
-
/** @internal */
|
|
928
|
-
export declare const ListItemVariantId$outboundSchema: z.ZodNativeEnum<typeof ListItemVariantId>;
|
|
929
|
-
/**
|
|
930
|
-
* @internal
|
|
931
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
932
|
-
*/
|
|
933
|
-
export declare namespace ListItemVariantId$ {
|
|
934
|
-
/** @deprecated use `ListItemVariantId$inboundSchema` instead. */
|
|
935
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
936
|
-
readonly SupportedRequired: "supported-required";
|
|
937
|
-
readonly Supported: "supported";
|
|
938
|
-
readonly NotSupported: "not-supported";
|
|
939
|
-
}>;
|
|
940
|
-
/** @deprecated use `ListItemVariantId$outboundSchema` instead. */
|
|
941
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
942
|
-
readonly SupportedRequired: "supported-required";
|
|
943
|
-
readonly Supported: "supported";
|
|
944
|
-
readonly NotSupported: "not-supported";
|
|
945
|
-
}>;
|
|
946
|
-
}
|
|
947
|
-
/** @internal */
|
|
948
|
-
export declare const ListJobId$inboundSchema: z.ZodNativeEnum<typeof ListJobId>;
|
|
949
|
-
/** @internal */
|
|
950
|
-
export declare const ListJobId$outboundSchema: z.ZodNativeEnum<typeof ListJobId>;
|
|
951
|
-
/**
|
|
952
|
-
* @internal
|
|
953
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
954
|
-
*/
|
|
955
|
-
export declare namespace ListJobId$ {
|
|
956
|
-
/** @deprecated use `ListJobId$inboundSchema` instead. */
|
|
957
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
958
|
-
readonly SupportedRequired: "supported-required";
|
|
959
|
-
readonly Supported: "supported";
|
|
960
|
-
readonly NotSupported: "not-supported";
|
|
961
|
-
}>;
|
|
962
|
-
/** @deprecated use `ListJobId$outboundSchema` instead. */
|
|
963
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
964
|
-
readonly SupportedRequired: "supported-required";
|
|
965
|
-
readonly Supported: "supported";
|
|
966
|
-
readonly NotSupported: "not-supported";
|
|
967
|
-
}>;
|
|
968
|
-
}
|
|
969
|
-
/** @internal */
|
|
970
|
-
export declare const ListLeadId$inboundSchema: z.ZodNativeEnum<typeof ListLeadId>;
|
|
971
|
-
/** @internal */
|
|
972
|
-
export declare const ListLeadId$outboundSchema: z.ZodNativeEnum<typeof ListLeadId>;
|
|
973
|
-
/**
|
|
974
|
-
* @internal
|
|
975
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
976
|
-
*/
|
|
977
|
-
export declare namespace ListLeadId$ {
|
|
978
|
-
/** @deprecated use `ListLeadId$inboundSchema` instead. */
|
|
979
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
980
|
-
readonly SupportedRequired: "supported-required";
|
|
981
|
-
readonly Supported: "supported";
|
|
982
|
-
readonly NotSupported: "not-supported";
|
|
983
|
-
}>;
|
|
984
|
-
/** @deprecated use `ListLeadId$outboundSchema` instead. */
|
|
985
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
986
|
-
readonly SupportedRequired: "supported-required";
|
|
987
|
-
readonly Supported: "supported";
|
|
988
|
-
readonly NotSupported: "not-supported";
|
|
989
|
-
}>;
|
|
990
|
-
}
|
|
991
|
-
/** @internal */
|
|
992
|
-
export declare const ListLimit$inboundSchema: z.ZodNativeEnum<typeof ListLimit>;
|
|
993
|
-
/** @internal */
|
|
994
|
-
export declare const ListLimit$outboundSchema: z.ZodNativeEnum<typeof ListLimit>;
|
|
995
|
-
/**
|
|
996
|
-
* @internal
|
|
997
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
998
|
-
*/
|
|
999
|
-
export declare namespace ListLimit$ {
|
|
1000
|
-
/** @deprecated use `ListLimit$inboundSchema` instead. */
|
|
1001
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1002
|
-
readonly SupportedRequired: "supported-required";
|
|
1003
|
-
readonly Supported: "supported";
|
|
1004
|
-
readonly NotSupported: "not-supported";
|
|
1005
|
-
}>;
|
|
1006
|
-
/** @deprecated use `ListLimit$outboundSchema` instead. */
|
|
1007
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1008
|
-
readonly SupportedRequired: "supported-required";
|
|
1009
|
-
readonly Supported: "supported";
|
|
1010
|
-
readonly NotSupported: "not-supported";
|
|
1011
|
-
}>;
|
|
1012
|
-
}
|
|
1013
|
-
/** @internal */
|
|
1014
|
-
export declare const ListLinkId$inboundSchema: z.ZodNativeEnum<typeof ListLinkId>;
|
|
1015
|
-
/** @internal */
|
|
1016
|
-
export declare const ListLinkId$outboundSchema: z.ZodNativeEnum<typeof ListLinkId>;
|
|
1017
|
-
/**
|
|
1018
|
-
* @internal
|
|
1019
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1020
|
-
*/
|
|
1021
|
-
export declare namespace ListLinkId$ {
|
|
1022
|
-
/** @deprecated use `ListLinkId$inboundSchema` instead. */
|
|
1023
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1024
|
-
readonly SupportedRequired: "supported-required";
|
|
1025
|
-
readonly Supported: "supported";
|
|
1026
|
-
readonly NotSupported: "not-supported";
|
|
1027
|
-
}>;
|
|
1028
|
-
/** @deprecated use `ListLinkId$outboundSchema` instead. */
|
|
1029
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1030
|
-
readonly SupportedRequired: "supported-required";
|
|
1031
|
-
readonly Supported: "supported";
|
|
1032
|
-
readonly NotSupported: "not-supported";
|
|
1033
|
-
}>;
|
|
1034
|
-
}
|
|
1035
|
-
/** @internal */
|
|
1036
|
-
export declare const ListListId$inboundSchema: z.ZodNativeEnum<typeof ListListId>;
|
|
1037
|
-
/** @internal */
|
|
1038
|
-
export declare const ListListId$outboundSchema: z.ZodNativeEnum<typeof ListListId>;
|
|
1039
|
-
/**
|
|
1040
|
-
* @internal
|
|
1041
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1042
|
-
*/
|
|
1043
|
-
export declare namespace ListListId$ {
|
|
1044
|
-
/** @deprecated use `ListListId$inboundSchema` instead. */
|
|
1045
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1046
|
-
readonly SupportedRequired: "supported-required";
|
|
1047
|
-
readonly Supported: "supported";
|
|
1048
|
-
readonly NotSupported: "not-supported";
|
|
1049
|
-
}>;
|
|
1050
|
-
/** @deprecated use `ListListId$outboundSchema` instead. */
|
|
1051
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1052
|
-
readonly SupportedRequired: "supported-required";
|
|
1053
|
-
readonly Supported: "supported";
|
|
1054
|
-
readonly NotSupported: "not-supported";
|
|
1055
|
-
}>;
|
|
1056
|
-
}
|
|
1057
|
-
/** @internal */
|
|
1058
|
-
export declare const ListLocationId$inboundSchema: z.ZodNativeEnum<typeof ListLocationId>;
|
|
1059
|
-
/** @internal */
|
|
1060
|
-
export declare const ListLocationId$outboundSchema: z.ZodNativeEnum<typeof ListLocationId>;
|
|
1061
|
-
/**
|
|
1062
|
-
* @internal
|
|
1063
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1064
|
-
*/
|
|
1065
|
-
export declare namespace ListLocationId$ {
|
|
1066
|
-
/** @deprecated use `ListLocationId$inboundSchema` instead. */
|
|
1067
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1068
|
-
readonly SupportedRequired: "supported-required";
|
|
1069
|
-
readonly Supported: "supported";
|
|
1070
|
-
readonly NotSupported: "not-supported";
|
|
1071
|
-
}>;
|
|
1072
|
-
/** @deprecated use `ListLocationId$outboundSchema` instead. */
|
|
1073
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1074
|
-
readonly SupportedRequired: "supported-required";
|
|
1075
|
-
readonly Supported: "supported";
|
|
1076
|
-
readonly NotSupported: "not-supported";
|
|
1077
|
-
}>;
|
|
1078
|
-
}
|
|
1079
|
-
/** @internal */
|
|
1080
|
-
export declare const ListOffset$inboundSchema: z.ZodNativeEnum<typeof ListOffset>;
|
|
1081
|
-
/** @internal */
|
|
1082
|
-
export declare const ListOffset$outboundSchema: z.ZodNativeEnum<typeof ListOffset>;
|
|
1083
|
-
/**
|
|
1084
|
-
* @internal
|
|
1085
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1086
|
-
*/
|
|
1087
|
-
export declare namespace ListOffset$ {
|
|
1088
|
-
/** @deprecated use `ListOffset$inboundSchema` instead. */
|
|
1089
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1090
|
-
readonly SupportedRequired: "supported-required";
|
|
1091
|
-
readonly Supported: "supported";
|
|
1092
|
-
readonly NotSupported: "not-supported";
|
|
1093
|
-
}>;
|
|
1094
|
-
/** @deprecated use `ListOffset$outboundSchema` instead. */
|
|
1095
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1096
|
-
readonly SupportedRequired: "supported-required";
|
|
1097
|
-
readonly Supported: "supported";
|
|
1098
|
-
readonly NotSupported: "not-supported";
|
|
1099
|
-
}>;
|
|
1100
|
-
}
|
|
1101
|
-
/** @internal */
|
|
1102
|
-
export declare const ListOrder$inboundSchema: z.ZodNativeEnum<typeof ListOrder>;
|
|
1103
|
-
/** @internal */
|
|
1104
|
-
export declare const ListOrder$outboundSchema: z.ZodNativeEnum<typeof ListOrder>;
|
|
1105
|
-
/**
|
|
1106
|
-
* @internal
|
|
1107
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1108
|
-
*/
|
|
1109
|
-
export declare namespace ListOrder$ {
|
|
1110
|
-
/** @deprecated use `ListOrder$inboundSchema` instead. */
|
|
1111
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1112
|
-
readonly SupportedRequired: "supported-required";
|
|
1113
|
-
readonly Supported: "supported";
|
|
1114
|
-
readonly NotSupported: "not-supported";
|
|
1115
|
-
}>;
|
|
1116
|
-
/** @deprecated use `ListOrder$outboundSchema` instead. */
|
|
1117
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1118
|
-
readonly SupportedRequired: "supported-required";
|
|
1119
|
-
readonly Supported: "supported";
|
|
1120
|
-
readonly NotSupported: "not-supported";
|
|
1121
|
-
}>;
|
|
1122
|
-
}
|
|
1123
|
-
/** @internal */
|
|
1124
|
-
export declare const ListOrgId$inboundSchema: z.ZodNativeEnum<typeof ListOrgId>;
|
|
1125
|
-
/** @internal */
|
|
1126
|
-
export declare const ListOrgId$outboundSchema: z.ZodNativeEnum<typeof ListOrgId>;
|
|
1127
|
-
/**
|
|
1128
|
-
* @internal
|
|
1129
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1130
|
-
*/
|
|
1131
|
-
export declare namespace ListOrgId$ {
|
|
1132
|
-
/** @deprecated use `ListOrgId$inboundSchema` instead. */
|
|
1133
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1134
|
-
readonly SupportedRequired: "supported-required";
|
|
1135
|
-
readonly Supported: "supported";
|
|
1136
|
-
readonly NotSupported: "not-supported";
|
|
1137
|
-
}>;
|
|
1138
|
-
/** @deprecated use `ListOrgId$outboundSchema` instead. */
|
|
1139
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1140
|
-
readonly SupportedRequired: "supported-required";
|
|
1141
|
-
readonly Supported: "supported";
|
|
1142
|
-
readonly NotSupported: "not-supported";
|
|
1143
|
-
}>;
|
|
1144
|
-
}
|
|
1145
|
-
/** @internal */
|
|
1146
|
-
export declare const ListPageId$inboundSchema: z.ZodNativeEnum<typeof ListPageId>;
|
|
1147
|
-
/** @internal */
|
|
1148
|
-
export declare const ListPageId$outboundSchema: z.ZodNativeEnum<typeof ListPageId>;
|
|
1149
|
-
/**
|
|
1150
|
-
* @internal
|
|
1151
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1152
|
-
*/
|
|
1153
|
-
export declare namespace ListPageId$ {
|
|
1154
|
-
/** @deprecated use `ListPageId$inboundSchema` instead. */
|
|
1155
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1156
|
-
readonly SupportedRequired: "supported-required";
|
|
1157
|
-
readonly Supported: "supported";
|
|
1158
|
-
readonly NotSupported: "not-supported";
|
|
1159
|
-
}>;
|
|
1160
|
-
/** @deprecated use `ListPageId$outboundSchema` instead. */
|
|
1161
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1162
|
-
readonly SupportedRequired: "supported-required";
|
|
1163
|
-
readonly Supported: "supported";
|
|
1164
|
-
readonly NotSupported: "not-supported";
|
|
1165
|
-
}>;
|
|
1166
|
-
}
|
|
1167
|
-
/** @internal */
|
|
1168
|
-
export declare const ListParentId$inboundSchema: z.ZodNativeEnum<typeof ListParentId>;
|
|
1169
|
-
/** @internal */
|
|
1170
|
-
export declare const ListParentId$outboundSchema: z.ZodNativeEnum<typeof ListParentId>;
|
|
1171
|
-
/**
|
|
1172
|
-
* @internal
|
|
1173
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1174
|
-
*/
|
|
1175
|
-
export declare namespace ListParentId$ {
|
|
1176
|
-
/** @deprecated use `ListParentId$inboundSchema` instead. */
|
|
1177
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1178
|
-
readonly SupportedRequired: "supported-required";
|
|
1179
|
-
readonly Supported: "supported";
|
|
1180
|
-
readonly NotSupported: "not-supported";
|
|
1181
|
-
}>;
|
|
1182
|
-
/** @deprecated use `ListParentId$outboundSchema` instead. */
|
|
1183
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1184
|
-
readonly SupportedRequired: "supported-required";
|
|
1185
|
-
readonly Supported: "supported";
|
|
1186
|
-
readonly NotSupported: "not-supported";
|
|
1187
|
-
}>;
|
|
1188
|
-
}
|
|
1189
|
-
/** @internal */
|
|
1190
|
-
export declare const ListProjectId$inboundSchema: z.ZodNativeEnum<typeof ListProjectId>;
|
|
1191
|
-
/** @internal */
|
|
1192
|
-
export declare const ListProjectId$outboundSchema: z.ZodNativeEnum<typeof ListProjectId>;
|
|
1193
|
-
/**
|
|
1194
|
-
* @internal
|
|
1195
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1196
|
-
*/
|
|
1197
|
-
export declare namespace ListProjectId$ {
|
|
1198
|
-
/** @deprecated use `ListProjectId$inboundSchema` instead. */
|
|
1199
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1200
|
-
readonly SupportedRequired: "supported-required";
|
|
1201
|
-
readonly Supported: "supported";
|
|
1202
|
-
readonly NotSupported: "not-supported";
|
|
1203
|
-
}>;
|
|
1204
|
-
/** @deprecated use `ListProjectId$outboundSchema` instead. */
|
|
1205
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1206
|
-
readonly SupportedRequired: "supported-required";
|
|
1207
|
-
readonly Supported: "supported";
|
|
1208
|
-
readonly NotSupported: "not-supported";
|
|
1209
|
-
}>;
|
|
1210
|
-
}
|
|
1211
|
-
/** @internal */
|
|
1212
|
-
export declare const ListQuery$inboundSchema: z.ZodNativeEnum<typeof ListQuery>;
|
|
1213
|
-
/** @internal */
|
|
1214
|
-
export declare const ListQuery$outboundSchema: z.ZodNativeEnum<typeof ListQuery>;
|
|
1215
|
-
/**
|
|
1216
|
-
* @internal
|
|
1217
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1218
|
-
*/
|
|
1219
|
-
export declare namespace ListQuery$ {
|
|
1220
|
-
/** @deprecated use `ListQuery$inboundSchema` instead. */
|
|
1221
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1222
|
-
readonly SupportedRequired: "supported-required";
|
|
1223
|
-
readonly Supported: "supported";
|
|
1224
|
-
readonly NotSupported: "not-supported";
|
|
1225
|
-
}>;
|
|
1226
|
-
/** @deprecated use `ListQuery$outboundSchema` instead. */
|
|
1227
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1228
|
-
readonly SupportedRequired: "supported-required";
|
|
1229
|
-
readonly Supported: "supported";
|
|
1230
|
-
readonly NotSupported: "not-supported";
|
|
1231
|
-
}>;
|
|
1232
|
-
}
|
|
1233
|
-
/** @internal */
|
|
1234
|
-
export declare const ListRawFields$inboundSchema: z.ZodNativeEnum<typeof ListRawFields>;
|
|
1235
|
-
/** @internal */
|
|
1236
|
-
export declare const ListRawFields$outboundSchema: z.ZodNativeEnum<typeof ListRawFields>;
|
|
1237
|
-
/**
|
|
1238
|
-
* @internal
|
|
1239
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1240
|
-
*/
|
|
1241
|
-
export declare namespace ListRawFields$ {
|
|
1242
|
-
/** @deprecated use `ListRawFields$inboundSchema` instead. */
|
|
1243
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1244
|
-
readonly SupportedRequired: "supported-required";
|
|
1245
|
-
readonly Supported: "supported";
|
|
1246
|
-
readonly NotSupported: "not-supported";
|
|
1247
|
-
}>;
|
|
1248
|
-
/** @deprecated use `ListRawFields$outboundSchema` instead. */
|
|
1249
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1250
|
-
readonly SupportedRequired: "supported-required";
|
|
1251
|
-
readonly Supported: "supported";
|
|
1252
|
-
readonly NotSupported: "not-supported";
|
|
1253
|
-
}>;
|
|
1254
|
-
}
|
|
1255
|
-
/** @internal */
|
|
1256
|
-
export declare const ListRepoId$inboundSchema: z.ZodNativeEnum<typeof ListRepoId>;
|
|
1257
|
-
/** @internal */
|
|
1258
|
-
export declare const ListRepoId$outboundSchema: z.ZodNativeEnum<typeof ListRepoId>;
|
|
1259
|
-
/**
|
|
1260
|
-
* @internal
|
|
1261
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1262
|
-
*/
|
|
1263
|
-
export declare namespace ListRepoId$ {
|
|
1264
|
-
/** @deprecated use `ListRepoId$inboundSchema` instead. */
|
|
1265
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1266
|
-
readonly SupportedRequired: "supported-required";
|
|
1267
|
-
readonly Supported: "supported";
|
|
1268
|
-
readonly NotSupported: "not-supported";
|
|
1269
|
-
}>;
|
|
1270
|
-
/** @deprecated use `ListRepoId$outboundSchema` instead. */
|
|
1271
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1272
|
-
readonly SupportedRequired: "supported-required";
|
|
1273
|
-
readonly Supported: "supported";
|
|
1274
|
-
readonly NotSupported: "not-supported";
|
|
1275
|
-
}>;
|
|
1276
|
-
}
|
|
1277
|
-
/** @internal */
|
|
1278
|
-
export declare const ListRootId$inboundSchema: z.ZodNativeEnum<typeof ListRootId>;
|
|
1279
|
-
/** @internal */
|
|
1280
|
-
export declare const ListRootId$outboundSchema: z.ZodNativeEnum<typeof ListRootId>;
|
|
1281
|
-
/**
|
|
1282
|
-
* @internal
|
|
1283
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1284
|
-
*/
|
|
1285
|
-
export declare namespace ListRootId$ {
|
|
1286
|
-
/** @deprecated use `ListRootId$inboundSchema` instead. */
|
|
1287
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1288
|
-
readonly SupportedRequired: "supported-required";
|
|
1289
|
-
readonly Supported: "supported";
|
|
1290
|
-
readonly NotSupported: "not-supported";
|
|
1291
|
-
}>;
|
|
1292
|
-
/** @deprecated use `ListRootId$outboundSchema` instead. */
|
|
1293
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1294
|
-
readonly SupportedRequired: "supported-required";
|
|
1295
|
-
readonly Supported: "supported";
|
|
1296
|
-
readonly NotSupported: "not-supported";
|
|
1297
|
-
}>;
|
|
1298
|
-
}
|
|
1299
|
-
/** @internal */
|
|
1300
|
-
export declare const ListSortByCreatedAt$inboundSchema: z.ZodNativeEnum<typeof ListSortByCreatedAt>;
|
|
1301
|
-
/** @internal */
|
|
1302
|
-
export declare const ListSortByCreatedAt$outboundSchema: z.ZodNativeEnum<typeof ListSortByCreatedAt>;
|
|
1303
|
-
/**
|
|
1304
|
-
* @internal
|
|
1305
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1306
|
-
*/
|
|
1307
|
-
export declare namespace ListSortByCreatedAt$ {
|
|
1308
|
-
/** @deprecated use `ListSortByCreatedAt$inboundSchema` instead. */
|
|
1309
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1310
|
-
readonly SupportedRequired: "supported-required";
|
|
1311
|
-
readonly Supported: "supported";
|
|
1312
|
-
readonly NotSupported: "not-supported";
|
|
1313
|
-
}>;
|
|
1314
|
-
/** @deprecated use `ListSortByCreatedAt$outboundSchema` instead. */
|
|
1315
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1316
|
-
readonly SupportedRequired: "supported-required";
|
|
1317
|
-
readonly Supported: "supported";
|
|
1318
|
-
readonly NotSupported: "not-supported";
|
|
1319
|
-
}>;
|
|
1320
|
-
}
|
|
1321
|
-
/** @internal */
|
|
1322
|
-
export declare const ListSortByName$inboundSchema: z.ZodNativeEnum<typeof ListSortByName>;
|
|
1323
|
-
/** @internal */
|
|
1324
|
-
export declare const ListSortByName$outboundSchema: z.ZodNativeEnum<typeof ListSortByName>;
|
|
1325
|
-
/**
|
|
1326
|
-
* @internal
|
|
1327
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1328
|
-
*/
|
|
1329
|
-
export declare namespace ListSortByName$ {
|
|
1330
|
-
/** @deprecated use `ListSortByName$inboundSchema` instead. */
|
|
1331
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1332
|
-
readonly SupportedRequired: "supported-required";
|
|
1333
|
-
readonly Supported: "supported";
|
|
1334
|
-
readonly NotSupported: "not-supported";
|
|
1335
|
-
}>;
|
|
1336
|
-
/** @deprecated use `ListSortByName$outboundSchema` instead. */
|
|
1337
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1338
|
-
readonly SupportedRequired: "supported-required";
|
|
1339
|
-
readonly Supported: "supported";
|
|
1340
|
-
readonly NotSupported: "not-supported";
|
|
1341
|
-
}>;
|
|
1342
|
-
}
|
|
1343
|
-
/** @internal */
|
|
1344
|
-
export declare const ListSortByUpdatedAt$inboundSchema: z.ZodNativeEnum<typeof ListSortByUpdatedAt>;
|
|
1345
|
-
/** @internal */
|
|
1346
|
-
export declare const ListSortByUpdatedAt$outboundSchema: z.ZodNativeEnum<typeof ListSortByUpdatedAt>;
|
|
1347
|
-
/**
|
|
1348
|
-
* @internal
|
|
1349
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1350
|
-
*/
|
|
1351
|
-
export declare namespace ListSortByUpdatedAt$ {
|
|
1352
|
-
/** @deprecated use `ListSortByUpdatedAt$inboundSchema` instead. */
|
|
1353
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1354
|
-
readonly SupportedRequired: "supported-required";
|
|
1355
|
-
readonly Supported: "supported";
|
|
1356
|
-
readonly NotSupported: "not-supported";
|
|
1357
|
-
}>;
|
|
1358
|
-
/** @deprecated use `ListSortByUpdatedAt$outboundSchema` instead. */
|
|
1359
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1360
|
-
readonly SupportedRequired: "supported-required";
|
|
1361
|
-
readonly Supported: "supported";
|
|
1362
|
-
readonly NotSupported: "not-supported";
|
|
1363
|
-
}>;
|
|
1364
|
-
}
|
|
1365
|
-
/** @internal */
|
|
1366
|
-
export declare const ListSpaceId$inboundSchema: z.ZodNativeEnum<typeof ListSpaceId>;
|
|
1367
|
-
/** @internal */
|
|
1368
|
-
export declare const ListSpaceId$outboundSchema: z.ZodNativeEnum<typeof ListSpaceId>;
|
|
1369
|
-
/**
|
|
1370
|
-
* @internal
|
|
1371
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1372
|
-
*/
|
|
1373
|
-
export declare namespace ListSpaceId$ {
|
|
1374
|
-
/** @deprecated use `ListSpaceId$inboundSchema` instead. */
|
|
1375
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1376
|
-
readonly SupportedRequired: "supported-required";
|
|
1377
|
-
readonly Supported: "supported";
|
|
1378
|
-
readonly NotSupported: "not-supported";
|
|
1379
|
-
}>;
|
|
1380
|
-
/** @deprecated use `ListSpaceId$outboundSchema` instead. */
|
|
1381
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1382
|
-
readonly SupportedRequired: "supported-required";
|
|
1383
|
-
readonly Supported: "supported";
|
|
1384
|
-
readonly NotSupported: "not-supported";
|
|
1385
|
-
}>;
|
|
1386
|
-
}
|
|
1387
|
-
/** @internal */
|
|
1388
|
-
export declare const ListStartGte$inboundSchema: z.ZodNativeEnum<typeof ListStartGte>;
|
|
1389
|
-
/** @internal */
|
|
1390
|
-
export declare const ListStartGte$outboundSchema: z.ZodNativeEnum<typeof ListStartGte>;
|
|
1391
|
-
/**
|
|
1392
|
-
* @internal
|
|
1393
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1394
|
-
*/
|
|
1395
|
-
export declare namespace ListStartGte$ {
|
|
1396
|
-
/** @deprecated use `ListStartGte$inboundSchema` instead. */
|
|
1397
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1398
|
-
readonly SupportedRequired: "supported-required";
|
|
1399
|
-
readonly Supported: "supported";
|
|
1400
|
-
readonly NotSupported: "not-supported";
|
|
1401
|
-
}>;
|
|
1402
|
-
/** @deprecated use `ListStartGte$outboundSchema` instead. */
|
|
1403
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1404
|
-
readonly SupportedRequired: "supported-required";
|
|
1405
|
-
readonly Supported: "supported";
|
|
1406
|
-
readonly NotSupported: "not-supported";
|
|
1407
|
-
}>;
|
|
1408
|
-
}
|
|
1409
|
-
/** @internal */
|
|
1410
|
-
export declare const ListStudentId$inboundSchema: z.ZodNativeEnum<typeof ListStudentId>;
|
|
1411
|
-
/** @internal */
|
|
1412
|
-
export declare const ListStudentId$outboundSchema: z.ZodNativeEnum<typeof ListStudentId>;
|
|
1413
|
-
/**
|
|
1414
|
-
* @internal
|
|
1415
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1416
|
-
*/
|
|
1417
|
-
export declare namespace ListStudentId$ {
|
|
1418
|
-
/** @deprecated use `ListStudentId$inboundSchema` instead. */
|
|
1419
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1420
|
-
readonly SupportedRequired: "supported-required";
|
|
1421
|
-
readonly Supported: "supported";
|
|
1422
|
-
readonly NotSupported: "not-supported";
|
|
1423
|
-
}>;
|
|
1424
|
-
/** @deprecated use `ListStudentId$outboundSchema` instead. */
|
|
1425
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1426
|
-
readonly SupportedRequired: "supported-required";
|
|
1427
|
-
readonly Supported: "supported";
|
|
1428
|
-
readonly NotSupported: "not-supported";
|
|
1429
|
-
}>;
|
|
1430
|
-
}
|
|
1431
|
-
/** @internal */
|
|
1432
|
-
export declare const ListTaskId$inboundSchema: z.ZodNativeEnum<typeof ListTaskId>;
|
|
1433
|
-
/** @internal */
|
|
1434
|
-
export declare const ListTaskId$outboundSchema: z.ZodNativeEnum<typeof ListTaskId>;
|
|
1435
|
-
/**
|
|
1436
|
-
* @internal
|
|
1437
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1438
|
-
*/
|
|
1439
|
-
export declare namespace ListTaskId$ {
|
|
1440
|
-
/** @deprecated use `ListTaskId$inboundSchema` instead. */
|
|
1441
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1442
|
-
readonly SupportedRequired: "supported-required";
|
|
1443
|
-
readonly Supported: "supported";
|
|
1444
|
-
readonly NotSupported: "not-supported";
|
|
1445
|
-
}>;
|
|
1446
|
-
/** @deprecated use `ListTaskId$outboundSchema` instead. */
|
|
1447
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1448
|
-
readonly SupportedRequired: "supported-required";
|
|
1449
|
-
readonly Supported: "supported";
|
|
1450
|
-
readonly NotSupported: "not-supported";
|
|
1451
|
-
}>;
|
|
1452
|
-
}
|
|
1453
|
-
/** @internal */
|
|
1454
|
-
export declare const ListTicketId$inboundSchema: z.ZodNativeEnum<typeof ListTicketId>;
|
|
1455
|
-
/** @internal */
|
|
1456
|
-
export declare const ListTicketId$outboundSchema: z.ZodNativeEnum<typeof ListTicketId>;
|
|
1457
|
-
/**
|
|
1458
|
-
* @internal
|
|
1459
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1460
|
-
*/
|
|
1461
|
-
export declare namespace ListTicketId$ {
|
|
1462
|
-
/** @deprecated use `ListTicketId$inboundSchema` instead. */
|
|
1463
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1464
|
-
readonly SupportedRequired: "supported-required";
|
|
1465
|
-
readonly Supported: "supported";
|
|
1466
|
-
readonly NotSupported: "not-supported";
|
|
1467
|
-
}>;
|
|
1468
|
-
/** @deprecated use `ListTicketId$outboundSchema` instead. */
|
|
1469
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1470
|
-
readonly SupportedRequired: "supported-required";
|
|
1471
|
-
readonly Supported: "supported";
|
|
1472
|
-
readonly NotSupported: "not-supported";
|
|
1473
|
-
}>;
|
|
1474
|
-
}
|
|
1475
|
-
/** @internal */
|
|
1476
|
-
export declare const ListType$inboundSchema: z.ZodNativeEnum<typeof ListType>;
|
|
1477
|
-
/** @internal */
|
|
1478
|
-
export declare const ListType$outboundSchema: z.ZodNativeEnum<typeof ListType>;
|
|
1479
|
-
/**
|
|
1480
|
-
* @internal
|
|
1481
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1482
|
-
*/
|
|
1483
|
-
export declare namespace ListType$ {
|
|
1484
|
-
/** @deprecated use `ListType$inboundSchema` instead. */
|
|
1485
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1486
|
-
readonly SupportedRequired: "supported-required";
|
|
1487
|
-
readonly Supported: "supported";
|
|
1488
|
-
readonly NotSupported: "not-supported";
|
|
1489
|
-
}>;
|
|
1490
|
-
/** @deprecated use `ListType$outboundSchema` instead. */
|
|
1491
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1492
|
-
readonly SupportedRequired: "supported-required";
|
|
1493
|
-
readonly Supported: "supported";
|
|
1494
|
-
readonly NotSupported: "not-supported";
|
|
1495
|
-
}>;
|
|
1496
|
-
}
|
|
1497
|
-
/** @internal */
|
|
1498
|
-
export declare const ListUpdatedGte$inboundSchema: z.ZodNativeEnum<typeof ListUpdatedGte>;
|
|
1499
|
-
/** @internal */
|
|
1500
|
-
export declare const ListUpdatedGte$outboundSchema: z.ZodNativeEnum<typeof ListUpdatedGte>;
|
|
1501
|
-
/**
|
|
1502
|
-
* @internal
|
|
1503
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1504
|
-
*/
|
|
1505
|
-
export declare namespace ListUpdatedGte$ {
|
|
1506
|
-
/** @deprecated use `ListUpdatedGte$inboundSchema` instead. */
|
|
1507
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1508
|
-
readonly SupportedRequired: "supported-required";
|
|
1509
|
-
readonly Supported: "supported";
|
|
1510
|
-
readonly NotSupported: "not-supported";
|
|
1511
|
-
}>;
|
|
1512
|
-
/** @deprecated use `ListUpdatedGte$outboundSchema` instead. */
|
|
1513
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1514
|
-
readonly SupportedRequired: "supported-required";
|
|
1515
|
-
readonly Supported: "supported";
|
|
1516
|
-
readonly NotSupported: "not-supported";
|
|
1517
|
-
}>;
|
|
1518
|
-
}
|
|
1519
|
-
/** @internal */
|
|
1520
|
-
export declare const ListUserId$inboundSchema: z.ZodNativeEnum<typeof ListUserId>;
|
|
1521
|
-
/** @internal */
|
|
1522
|
-
export declare const ListUserId$outboundSchema: z.ZodNativeEnum<typeof ListUserId>;
|
|
1523
|
-
/**
|
|
1524
|
-
* @internal
|
|
1525
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1526
|
-
*/
|
|
1527
|
-
export declare namespace ListUserId$ {
|
|
1528
|
-
/** @deprecated use `ListUserId$inboundSchema` instead. */
|
|
1529
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1530
|
-
readonly SupportedRequired: "supported-required";
|
|
1531
|
-
readonly Supported: "supported";
|
|
1532
|
-
readonly NotSupported: "not-supported";
|
|
1533
|
-
}>;
|
|
1534
|
-
/** @deprecated use `ListUserId$outboundSchema` instead. */
|
|
1535
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1536
|
-
readonly SupportedRequired: "supported-required";
|
|
1537
|
-
readonly Supported: "supported";
|
|
1538
|
-
readonly NotSupported: "not-supported";
|
|
1539
|
-
}>;
|
|
1540
|
-
}
|
|
1541
|
-
/** @internal */
|
|
1542
|
-
export declare const NativeWebhookParentId$inboundSchema: z.ZodNativeEnum<typeof NativeWebhookParentId>;
|
|
1543
|
-
/** @internal */
|
|
1544
|
-
export declare const NativeWebhookParentId$outboundSchema: z.ZodNativeEnum<typeof NativeWebhookParentId>;
|
|
1545
|
-
/**
|
|
1546
|
-
* @internal
|
|
1547
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1548
|
-
*/
|
|
1549
|
-
export declare namespace NativeWebhookParentId$ {
|
|
1550
|
-
/** @deprecated use `NativeWebhookParentId$inboundSchema` instead. */
|
|
1551
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1552
|
-
readonly SupportedRequired: "supported-required";
|
|
1553
|
-
readonly Supported: "supported";
|
|
1554
|
-
readonly NotSupported: "not-supported";
|
|
1555
|
-
}>;
|
|
1556
|
-
/** @deprecated use `NativeWebhookParentId$outboundSchema` instead. */
|
|
1557
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1558
|
-
readonly SupportedRequired: "supported-required";
|
|
1559
|
-
readonly Supported: "supported";
|
|
1560
|
-
readonly NotSupported: "not-supported";
|
|
1561
|
-
}>;
|
|
1562
|
-
}
|
|
1563
|
-
/** @internal */
|
|
1564
|
-
export declare const NativeWebhookProjectId$inboundSchema: z.ZodNativeEnum<typeof NativeWebhookProjectId>;
|
|
1565
|
-
/** @internal */
|
|
1566
|
-
export declare const NativeWebhookProjectId$outboundSchema: z.ZodNativeEnum<typeof NativeWebhookProjectId>;
|
|
1567
|
-
/**
|
|
1568
|
-
* @internal
|
|
1569
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1570
|
-
*/
|
|
1571
|
-
export declare namespace NativeWebhookProjectId$ {
|
|
1572
|
-
/** @deprecated use `NativeWebhookProjectId$inboundSchema` instead. */
|
|
1573
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1574
|
-
readonly SupportedRequired: "supported-required";
|
|
1575
|
-
readonly Supported: "supported";
|
|
1576
|
-
readonly NotSupported: "not-supported";
|
|
1577
|
-
}>;
|
|
1578
|
-
/** @deprecated use `NativeWebhookProjectId$outboundSchema` instead. */
|
|
1579
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1580
|
-
readonly SupportedRequired: "supported-required";
|
|
1581
|
-
readonly Supported: "supported";
|
|
1582
|
-
readonly NotSupported: "not-supported";
|
|
1583
|
-
}>;
|
|
1584
|
-
}
|
|
1585
|
-
/** @internal */
|
|
1586
|
-
export declare const SearchDomain$inboundSchema: z.ZodNativeEnum<typeof SearchDomain>;
|
|
1587
|
-
/** @internal */
|
|
1588
|
-
export declare const SearchDomain$outboundSchema: z.ZodNativeEnum<typeof SearchDomain>;
|
|
1589
|
-
/**
|
|
1590
|
-
* @internal
|
|
1591
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1592
|
-
*/
|
|
1593
|
-
export declare namespace SearchDomain$ {
|
|
1594
|
-
/** @deprecated use `SearchDomain$inboundSchema` instead. */
|
|
1595
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1596
|
-
readonly SupportedRequired: "supported-required";
|
|
1597
|
-
readonly Supported: "supported";
|
|
1598
|
-
readonly NotSupported: "not-supported";
|
|
1599
|
-
}>;
|
|
1600
|
-
/** @deprecated use `SearchDomain$outboundSchema` instead. */
|
|
1601
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1602
|
-
readonly SupportedRequired: "supported-required";
|
|
1603
|
-
readonly Supported: "supported";
|
|
1604
|
-
readonly NotSupported: "not-supported";
|
|
1605
|
-
}>;
|
|
1606
|
-
}
|
|
1607
|
-
/** @internal */
|
|
1608
|
-
export declare const SearchEmail$inboundSchema: z.ZodNativeEnum<typeof SearchEmail>;
|
|
1609
|
-
/** @internal */
|
|
1610
|
-
export declare const SearchEmail$outboundSchema: z.ZodNativeEnum<typeof SearchEmail>;
|
|
1611
|
-
/**
|
|
1612
|
-
* @internal
|
|
1613
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1614
|
-
*/
|
|
1615
|
-
export declare namespace SearchEmail$ {
|
|
1616
|
-
/** @deprecated use `SearchEmail$inboundSchema` instead. */
|
|
1617
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1618
|
-
readonly SupportedRequired: "supported-required";
|
|
1619
|
-
readonly Supported: "supported";
|
|
1620
|
-
readonly NotSupported: "not-supported";
|
|
1621
|
-
}>;
|
|
1622
|
-
/** @deprecated use `SearchEmail$outboundSchema` instead. */
|
|
1623
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1624
|
-
readonly SupportedRequired: "supported-required";
|
|
1625
|
-
readonly Supported: "supported";
|
|
1626
|
-
readonly NotSupported: "not-supported";
|
|
1627
|
-
}>;
|
|
1628
|
-
}
|
|
1629
|
-
/** @internal */
|
|
1630
|
-
export declare const SearchLinkedinurl$inboundSchema: z.ZodNativeEnum<typeof SearchLinkedinurl>;
|
|
1631
|
-
/** @internal */
|
|
1632
|
-
export declare const SearchLinkedinurl$outboundSchema: z.ZodNativeEnum<typeof SearchLinkedinurl>;
|
|
1633
|
-
/**
|
|
1634
|
-
* @internal
|
|
1635
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1636
|
-
*/
|
|
1637
|
-
export declare namespace SearchLinkedinurl$ {
|
|
1638
|
-
/** @deprecated use `SearchLinkedinurl$inboundSchema` instead. */
|
|
1639
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1640
|
-
readonly SupportedRequired: "supported-required";
|
|
1641
|
-
readonly Supported: "supported";
|
|
1642
|
-
readonly NotSupported: "not-supported";
|
|
1643
|
-
}>;
|
|
1644
|
-
/** @deprecated use `SearchLinkedinurl$outboundSchema` instead. */
|
|
1645
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1646
|
-
readonly SupportedRequired: "supported-required";
|
|
1647
|
-
readonly Supported: "supported";
|
|
1648
|
-
readonly NotSupported: "not-supported";
|
|
1649
|
-
}>;
|
|
1650
|
-
}
|
|
1651
|
-
/** @internal */
|
|
1652
|
-
export declare const SearchName$inboundSchema: z.ZodNativeEnum<typeof SearchName>;
|
|
1653
|
-
/** @internal */
|
|
1654
|
-
export declare const SearchName$outboundSchema: z.ZodNativeEnum<typeof SearchName>;
|
|
1655
|
-
/**
|
|
1656
|
-
* @internal
|
|
1657
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1658
|
-
*/
|
|
1659
|
-
export declare namespace SearchName$ {
|
|
1660
|
-
/** @deprecated use `SearchName$inboundSchema` instead. */
|
|
1661
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1662
|
-
readonly SupportedRequired: "supported-required";
|
|
1663
|
-
readonly Supported: "supported";
|
|
1664
|
-
readonly NotSupported: "not-supported";
|
|
1665
|
-
}>;
|
|
1666
|
-
/** @deprecated use `SearchName$outboundSchema` instead. */
|
|
1667
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1668
|
-
readonly SupportedRequired: "supported-required";
|
|
1669
|
-
readonly Supported: "supported";
|
|
1670
|
-
readonly NotSupported: "not-supported";
|
|
1671
|
-
}>;
|
|
1672
|
-
}
|
|
1673
|
-
/** @internal */
|
|
1674
|
-
export declare const SearchTwitter$inboundSchema: z.ZodNativeEnum<typeof SearchTwitter>;
|
|
1675
|
-
/** @internal */
|
|
1676
|
-
export declare const SearchTwitter$outboundSchema: z.ZodNativeEnum<typeof SearchTwitter>;
|
|
1677
|
-
/**
|
|
1678
|
-
* @internal
|
|
1679
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1680
|
-
*/
|
|
1681
|
-
export declare namespace SearchTwitter$ {
|
|
1682
|
-
/** @deprecated use `SearchTwitter$inboundSchema` instead. */
|
|
1683
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1684
|
-
readonly SupportedRequired: "supported-required";
|
|
1685
|
-
readonly Supported: "supported";
|
|
1686
|
-
readonly NotSupported: "not-supported";
|
|
1687
|
-
}>;
|
|
1688
|
-
/** @deprecated use `SearchTwitter$outboundSchema` instead. */
|
|
1689
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1690
|
-
readonly SupportedRequired: "supported-required";
|
|
1691
|
-
readonly Supported: "supported";
|
|
1692
|
-
readonly NotSupported: "not-supported";
|
|
1693
|
-
}>;
|
|
1694
|
-
}
|
|
1695
|
-
/** @internal */
|
|
1696
|
-
export declare const VirtualWebhookChannelId$inboundSchema: z.ZodNativeEnum<typeof VirtualWebhookChannelId>;
|
|
1697
|
-
/** @internal */
|
|
1698
|
-
export declare const VirtualWebhookChannelId$outboundSchema: z.ZodNativeEnum<typeof VirtualWebhookChannelId>;
|
|
1699
|
-
/**
|
|
1700
|
-
* @internal
|
|
1701
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1702
|
-
*/
|
|
1703
|
-
export declare namespace VirtualWebhookChannelId$ {
|
|
1704
|
-
/** @deprecated use `VirtualWebhookChannelId$inboundSchema` instead. */
|
|
1705
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1706
|
-
readonly SupportedRequired: "supported-required";
|
|
1707
|
-
readonly Supported: "supported";
|
|
1708
|
-
readonly NotSupported: "not-supported";
|
|
1709
|
-
}>;
|
|
1710
|
-
/** @deprecated use `VirtualWebhookChannelId$outboundSchema` instead. */
|
|
1711
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1712
|
-
readonly SupportedRequired: "supported-required";
|
|
1713
|
-
readonly Supported: "supported";
|
|
1714
|
-
readonly NotSupported: "not-supported";
|
|
1715
|
-
}>;
|
|
1716
|
-
}
|
|
1717
|
-
/** @internal */
|
|
1718
|
-
export declare const VirtualWebhookCompanyId$inboundSchema: z.ZodNativeEnum<typeof VirtualWebhookCompanyId>;
|
|
1719
|
-
/** @internal */
|
|
1720
|
-
export declare const VirtualWebhookCompanyId$outboundSchema: z.ZodNativeEnum<typeof VirtualWebhookCompanyId>;
|
|
1721
|
-
/**
|
|
1722
|
-
* @internal
|
|
1723
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1724
|
-
*/
|
|
1725
|
-
export declare namespace VirtualWebhookCompanyId$ {
|
|
1726
|
-
/** @deprecated use `VirtualWebhookCompanyId$inboundSchema` instead. */
|
|
1727
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1728
|
-
readonly SupportedRequired: "supported-required";
|
|
1729
|
-
readonly Supported: "supported";
|
|
1730
|
-
readonly NotSupported: "not-supported";
|
|
1731
|
-
}>;
|
|
1732
|
-
/** @deprecated use `VirtualWebhookCompanyId$outboundSchema` instead. */
|
|
1733
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1734
|
-
readonly SupportedRequired: "supported-required";
|
|
1735
|
-
readonly Supported: "supported";
|
|
1736
|
-
readonly NotSupported: "not-supported";
|
|
1737
|
-
}>;
|
|
1738
|
-
}
|
|
1739
|
-
/** @internal */
|
|
1740
|
-
export declare const VirtualWebhookContactId$inboundSchema: z.ZodNativeEnum<typeof VirtualWebhookContactId>;
|
|
1741
|
-
/** @internal */
|
|
1742
|
-
export declare const VirtualWebhookContactId$outboundSchema: z.ZodNativeEnum<typeof VirtualWebhookContactId>;
|
|
1743
|
-
/**
|
|
1744
|
-
* @internal
|
|
1745
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1746
|
-
*/
|
|
1747
|
-
export declare namespace VirtualWebhookContactId$ {
|
|
1748
|
-
/** @deprecated use `VirtualWebhookContactId$inboundSchema` instead. */
|
|
1749
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1750
|
-
readonly SupportedRequired: "supported-required";
|
|
1751
|
-
readonly Supported: "supported";
|
|
1752
|
-
readonly NotSupported: "not-supported";
|
|
1753
|
-
}>;
|
|
1754
|
-
/** @deprecated use `VirtualWebhookContactId$outboundSchema` instead. */
|
|
1755
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1756
|
-
readonly SupportedRequired: "supported-required";
|
|
1757
|
-
readonly Supported: "supported";
|
|
1758
|
-
readonly NotSupported: "not-supported";
|
|
1759
|
-
}>;
|
|
1760
|
-
}
|
|
1761
|
-
/** @internal */
|
|
1762
|
-
export declare const VirtualWebhookDealId$inboundSchema: z.ZodNativeEnum<typeof VirtualWebhookDealId>;
|
|
1763
|
-
/** @internal */
|
|
1764
|
-
export declare const VirtualWebhookDealId$outboundSchema: z.ZodNativeEnum<typeof VirtualWebhookDealId>;
|
|
1765
|
-
/**
|
|
1766
|
-
* @internal
|
|
1767
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1768
|
-
*/
|
|
1769
|
-
export declare namespace VirtualWebhookDealId$ {
|
|
1770
|
-
/** @deprecated use `VirtualWebhookDealId$inboundSchema` instead. */
|
|
1771
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1772
|
-
readonly SupportedRequired: "supported-required";
|
|
1773
|
-
readonly Supported: "supported";
|
|
1774
|
-
readonly NotSupported: "not-supported";
|
|
1775
|
-
}>;
|
|
1776
|
-
/** @deprecated use `VirtualWebhookDealId$outboundSchema` instead. */
|
|
1777
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1778
|
-
readonly SupportedRequired: "supported-required";
|
|
1779
|
-
readonly Supported: "supported";
|
|
1780
|
-
readonly NotSupported: "not-supported";
|
|
1781
|
-
}>;
|
|
1782
|
-
}
|
|
1783
|
-
/** @internal */
|
|
1784
|
-
export declare const VirtualWebhookJobId$inboundSchema: z.ZodNativeEnum<typeof VirtualWebhookJobId>;
|
|
1785
|
-
/** @internal */
|
|
1786
|
-
export declare const VirtualWebhookJobId$outboundSchema: z.ZodNativeEnum<typeof VirtualWebhookJobId>;
|
|
1787
|
-
/**
|
|
1788
|
-
* @internal
|
|
1789
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1790
|
-
*/
|
|
1791
|
-
export declare namespace VirtualWebhookJobId$ {
|
|
1792
|
-
/** @deprecated use `VirtualWebhookJobId$inboundSchema` instead. */
|
|
1793
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1794
|
-
readonly SupportedRequired: "supported-required";
|
|
1795
|
-
readonly Supported: "supported";
|
|
1796
|
-
readonly NotSupported: "not-supported";
|
|
1797
|
-
}>;
|
|
1798
|
-
/** @deprecated use `VirtualWebhookJobId$outboundSchema` instead. */
|
|
1799
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1800
|
-
readonly SupportedRequired: "supported-required";
|
|
1801
|
-
readonly Supported: "supported";
|
|
1802
|
-
readonly NotSupported: "not-supported";
|
|
1803
|
-
}>;
|
|
1804
|
-
}
|
|
1805
|
-
/** @internal */
|
|
1806
|
-
export declare const VirtualWebhookLimit$inboundSchema: z.ZodNativeEnum<typeof VirtualWebhookLimit>;
|
|
1807
|
-
/** @internal */
|
|
1808
|
-
export declare const VirtualWebhookLimit$outboundSchema: z.ZodNativeEnum<typeof VirtualWebhookLimit>;
|
|
1809
|
-
/**
|
|
1810
|
-
* @internal
|
|
1811
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1812
|
-
*/
|
|
1813
|
-
export declare namespace VirtualWebhookLimit$ {
|
|
1814
|
-
/** @deprecated use `VirtualWebhookLimit$inboundSchema` instead. */
|
|
1815
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1816
|
-
readonly SupportedRequired: "supported-required";
|
|
1817
|
-
readonly Supported: "supported";
|
|
1818
|
-
readonly NotSupported: "not-supported";
|
|
1819
|
-
}>;
|
|
1820
|
-
/** @deprecated use `VirtualWebhookLimit$outboundSchema` instead. */
|
|
1821
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1822
|
-
readonly SupportedRequired: "supported-required";
|
|
1823
|
-
readonly Supported: "supported";
|
|
1824
|
-
readonly NotSupported: "not-supported";
|
|
1825
|
-
}>;
|
|
1826
|
-
}
|
|
1827
|
-
/** @internal */
|
|
1828
|
-
export declare const VirtualWebhookParentId$inboundSchema: z.ZodNativeEnum<typeof VirtualWebhookParentId>;
|
|
1829
|
-
/** @internal */
|
|
1830
|
-
export declare const VirtualWebhookParentId$outboundSchema: z.ZodNativeEnum<typeof VirtualWebhookParentId>;
|
|
1831
|
-
/**
|
|
1832
|
-
* @internal
|
|
1833
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1834
|
-
*/
|
|
1835
|
-
export declare namespace VirtualWebhookParentId$ {
|
|
1836
|
-
/** @deprecated use `VirtualWebhookParentId$inboundSchema` instead. */
|
|
1837
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1838
|
-
readonly SupportedRequired: "supported-required";
|
|
1839
|
-
readonly Supported: "supported";
|
|
1840
|
-
readonly NotSupported: "not-supported";
|
|
1841
|
-
}>;
|
|
1842
|
-
/** @deprecated use `VirtualWebhookParentId$outboundSchema` instead. */
|
|
1843
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1844
|
-
readonly SupportedRequired: "supported-required";
|
|
1845
|
-
readonly Supported: "supported";
|
|
1846
|
-
readonly NotSupported: "not-supported";
|
|
1847
|
-
}>;
|
|
1848
|
-
}
|
|
1849
|
-
/** @internal */
|
|
1850
|
-
export declare const VirtualWebhookTicketId$inboundSchema: z.ZodNativeEnum<typeof VirtualWebhookTicketId>;
|
|
1851
|
-
/** @internal */
|
|
1852
|
-
export declare const VirtualWebhookTicketId$outboundSchema: z.ZodNativeEnum<typeof VirtualWebhookTicketId>;
|
|
1853
|
-
/**
|
|
1854
|
-
* @internal
|
|
1855
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1856
|
-
*/
|
|
1857
|
-
export declare namespace VirtualWebhookTicketId$ {
|
|
1858
|
-
/** @deprecated use `VirtualWebhookTicketId$inboundSchema` instead. */
|
|
1859
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1860
|
-
readonly SupportedRequired: "supported-required";
|
|
1861
|
-
readonly Supported: "supported";
|
|
1862
|
-
readonly NotSupported: "not-supported";
|
|
1863
|
-
}>;
|
|
1864
|
-
/** @deprecated use `VirtualWebhookTicketId$outboundSchema` instead. */
|
|
1865
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1866
|
-
readonly SupportedRequired: "supported-required";
|
|
1867
|
-
readonly Supported: "supported";
|
|
1868
|
-
readonly NotSupported: "not-supported";
|
|
1869
|
-
}>;
|
|
1870
|
-
}
|
|
1871
|
-
/** @internal */
|
|
1872
|
-
export declare const VirtualWebhookType$inboundSchema: z.ZodNativeEnum<typeof VirtualWebhookType>;
|
|
1873
|
-
/** @internal */
|
|
1874
|
-
export declare const VirtualWebhookType$outboundSchema: z.ZodNativeEnum<typeof VirtualWebhookType>;
|
|
1875
|
-
/**
|
|
1876
|
-
* @internal
|
|
1877
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1878
|
-
*/
|
|
1879
|
-
export declare namespace VirtualWebhookType$ {
|
|
1880
|
-
/** @deprecated use `VirtualWebhookType$inboundSchema` instead. */
|
|
1881
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1882
|
-
readonly SupportedRequired: "supported-required";
|
|
1883
|
-
readonly Supported: "supported";
|
|
1884
|
-
readonly NotSupported: "not-supported";
|
|
1885
|
-
}>;
|
|
1886
|
-
/** @deprecated use `VirtualWebhookType$outboundSchema` instead. */
|
|
1887
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1888
|
-
readonly SupportedRequired: "supported-required";
|
|
1889
|
-
readonly Supported: "supported";
|
|
1890
|
-
readonly NotSupported: "not-supported";
|
|
1891
|
-
}>;
|
|
1892
|
-
}
|
|
1893
|
-
/** @internal */
|
|
1894
|
-
export declare const VirtualWebhookUpdatedGte$inboundSchema: z.ZodNativeEnum<typeof VirtualWebhookUpdatedGte>;
|
|
1895
|
-
/** @internal */
|
|
1896
|
-
export declare const VirtualWebhookUpdatedGte$outboundSchema: z.ZodNativeEnum<typeof VirtualWebhookUpdatedGte>;
|
|
1897
|
-
/**
|
|
1898
|
-
* @internal
|
|
1899
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1900
|
-
*/
|
|
1901
|
-
export declare namespace VirtualWebhookUpdatedGte$ {
|
|
1902
|
-
/** @deprecated use `VirtualWebhookUpdatedGte$inboundSchema` instead. */
|
|
1903
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1904
|
-
readonly SupportedRequired: "supported-required";
|
|
1905
|
-
readonly Supported: "supported";
|
|
1906
|
-
readonly NotSupported: "not-supported";
|
|
1907
|
-
}>;
|
|
1908
|
-
/** @deprecated use `VirtualWebhookUpdatedGte$outboundSchema` instead. */
|
|
1909
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1910
|
-
readonly SupportedRequired: "supported-required";
|
|
1911
|
-
readonly Supported: "supported";
|
|
1912
|
-
readonly NotSupported: "not-supported";
|
|
1913
|
-
}>;
|
|
1914
|
-
}
|
|
1915
|
-
/** @internal */
|
|
1916
|
-
export declare const VirtualWebhookUserId$inboundSchema: z.ZodNativeEnum<typeof VirtualWebhookUserId>;
|
|
1917
|
-
/** @internal */
|
|
1918
|
-
export declare const VirtualWebhookUserId$outboundSchema: z.ZodNativeEnum<typeof VirtualWebhookUserId>;
|
|
1919
|
-
/**
|
|
1920
|
-
* @internal
|
|
1921
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1922
|
-
*/
|
|
1923
|
-
export declare namespace VirtualWebhookUserId$ {
|
|
1924
|
-
/** @deprecated use `VirtualWebhookUserId$inboundSchema` instead. */
|
|
1925
|
-
const inboundSchema: z.ZodNativeEnum<{
|
|
1926
|
-
readonly SupportedRequired: "supported-required";
|
|
1927
|
-
readonly Supported: "supported";
|
|
1928
|
-
readonly NotSupported: "not-supported";
|
|
1929
|
-
}>;
|
|
1930
|
-
/** @deprecated use `VirtualWebhookUserId$outboundSchema` instead. */
|
|
1931
|
-
const outboundSchema: z.ZodNativeEnum<{
|
|
1932
|
-
readonly SupportedRequired: "supported-required";
|
|
1933
|
-
readonly Supported: "supported";
|
|
1934
|
-
readonly NotSupported: "not-supported";
|
|
1935
|
-
}>;
|
|
1936
|
-
}
|
|
1937
|
-
/** @internal */
|
|
1938
|
-
export declare const IntegrationSupport$inboundSchema: z.ZodType<IntegrationSupport, z.ZodTypeDef, unknown>;
|
|
1939
|
-
/** @internal */
|
|
1940
|
-
export type IntegrationSupport$Outbound = {
|
|
1941
|
-
from_webhook?: string | undefined;
|
|
1942
|
-
inbound_fields?: {
|
|
1943
|
-
[k: string]: any;
|
|
1944
|
-
} | undefined;
|
|
1945
|
-
list_account_id?: string | undefined;
|
|
1946
|
-
list_application_id?: string | undefined;
|
|
1947
|
-
list_calendar_id?: string | undefined;
|
|
1948
|
-
list_call_id?: string | undefined;
|
|
1949
|
-
list_candidate_id?: string | undefined;
|
|
1950
|
-
list_channel_id?: string | undefined;
|
|
1951
|
-
list_class_id?: string | undefined;
|
|
1952
|
-
list_collection_id?: string | undefined;
|
|
1953
|
-
list_company_id?: string | undefined;
|
|
1954
|
-
list_contact_id?: string | undefined;
|
|
1955
|
-
list_course_id?: string | undefined;
|
|
1956
|
-
list_customer_id?: string | undefined;
|
|
1957
|
-
list_deal_id?: string | undefined;
|
|
1958
|
-
list_end_le?: string | undefined;
|
|
1959
|
-
list_event_id?: string | undefined;
|
|
1960
|
-
list_instructor_id?: string | undefined;
|
|
1961
|
-
list_interview_id?: string | undefined;
|
|
1962
|
-
list_invoice_id?: string | undefined;
|
|
1963
|
-
list_item_id?: string | undefined;
|
|
1964
|
-
list_item_variant_id?: string | undefined;
|
|
1965
|
-
list_job_id?: string | undefined;
|
|
1966
|
-
list_lead_id?: string | undefined;
|
|
1967
|
-
list_limit?: string | undefined;
|
|
1968
|
-
list_link_id?: string | undefined;
|
|
1969
|
-
list_list_id?: string | undefined;
|
|
1970
|
-
list_location_id?: string | undefined;
|
|
1971
|
-
list_offset?: string | undefined;
|
|
1972
|
-
list_order?: string | undefined;
|
|
1973
|
-
list_org_id?: string | undefined;
|
|
1974
|
-
list_page_id?: string | undefined;
|
|
1975
|
-
list_parent_id?: string | undefined;
|
|
1976
|
-
list_project_id?: string | undefined;
|
|
1977
|
-
list_query?: string | undefined;
|
|
1978
|
-
list_raw_fields?: string | undefined;
|
|
1979
|
-
list_repo_id?: string | undefined;
|
|
1980
|
-
list_root_id?: string | undefined;
|
|
1981
|
-
list_sort_by_created_at?: string | undefined;
|
|
1982
|
-
list_sort_by_name?: string | undefined;
|
|
1983
|
-
list_sort_by_updated_at?: string | undefined;
|
|
1984
|
-
list_space_id?: string | undefined;
|
|
1985
|
-
list_start_gte?: string | undefined;
|
|
1986
|
-
list_student_id?: string | undefined;
|
|
1987
|
-
list_task_id?: string | undefined;
|
|
1988
|
-
list_ticket_id?: string | undefined;
|
|
1989
|
-
list_type?: string | undefined;
|
|
1990
|
-
list_updated_gte?: string | undefined;
|
|
1991
|
-
list_user_id?: string | undefined;
|
|
1992
|
-
methods?: {
|
|
1993
|
-
[k: string]: any;
|
|
1994
|
-
} | undefined;
|
|
1995
|
-
native_webhook_parent_id?: string | undefined;
|
|
1996
|
-
native_webhook_project_id?: string | undefined;
|
|
1997
|
-
outbound_fields?: {
|
|
1998
|
-
[k: string]: any;
|
|
1999
|
-
} | undefined;
|
|
2000
|
-
raw_objects?: Array<string> | undefined;
|
|
2001
|
-
search_domain?: string | undefined;
|
|
2002
|
-
search_email?: string | undefined;
|
|
2003
|
-
search_linkedinurl?: string | undefined;
|
|
2004
|
-
search_name?: string | undefined;
|
|
2005
|
-
search_twitter?: string | undefined;
|
|
2006
|
-
slow_fields?: Array<string> | undefined;
|
|
2007
|
-
virtual_webhook_channel_id?: string | undefined;
|
|
2008
|
-
virtual_webhook_company_id?: string | undefined;
|
|
2009
|
-
virtual_webhook_contact_id?: string | undefined;
|
|
2010
|
-
virtual_webhook_deal_id?: string | undefined;
|
|
2011
|
-
virtual_webhook_job_id?: string | undefined;
|
|
2012
|
-
virtual_webhook_limit?: string | undefined;
|
|
2013
|
-
virtual_webhook_parent_id?: string | undefined;
|
|
2014
|
-
virtual_webhook_ticket_id?: string | undefined;
|
|
2015
|
-
virtual_webhook_type?: string | undefined;
|
|
2016
|
-
virtual_webhook_updated_gte?: string | undefined;
|
|
2017
|
-
virtual_webhook_user_id?: string | undefined;
|
|
2018
|
-
webhook_events?: PropertyIntegrationSupportWebhookEvents$Outbound | undefined;
|
|
2019
|
-
};
|
|
2020
|
-
/** @internal */
|
|
2021
|
-
export declare const IntegrationSupport$outboundSchema: z.ZodType<IntegrationSupport$Outbound, z.ZodTypeDef, IntegrationSupport>;
|
|
2022
|
-
/**
|
|
2023
|
-
* @internal
|
|
2024
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2025
|
-
*/
|
|
2026
|
-
export declare namespace IntegrationSupport$ {
|
|
2027
|
-
/** @deprecated use `IntegrationSupport$inboundSchema` instead. */
|
|
2028
|
-
const inboundSchema: z.ZodType<IntegrationSupport, z.ZodTypeDef, unknown>;
|
|
2029
|
-
/** @deprecated use `IntegrationSupport$outboundSchema` instead. */
|
|
2030
|
-
const outboundSchema: z.ZodType<IntegrationSupport$Outbound, z.ZodTypeDef, IntegrationSupport>;
|
|
2031
|
-
/** @deprecated use `IntegrationSupport$Outbound` instead. */
|
|
2032
|
-
type Outbound = IntegrationSupport$Outbound;
|
|
2033
|
-
}
|
|
2034
|
-
export declare function integrationSupportToJSON(integrationSupport: IntegrationSupport): string;
|
|
2035
|
-
export declare function integrationSupportFromJSON(jsonString: string): SafeParseResult<IntegrationSupport, SDKValidationError>;
|
|
2036
|
-
//# sourceMappingURL=integrationsupport.d.ts.map
|