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