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