@wix/auto_sdk_calendar_schedules 1.0.54 → 1.0.56

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.
@@ -0,0 +1,527 @@
1
+ // src/calendar-v3-schedule-schedules.universal.ts
2
+ import { transformError as sdkTransformError } from "@wix/sdk-runtime/transform-error";
3
+ import { queryBuilder } from "@wix/sdk-runtime/query-builder";
4
+ import {
5
+ renameKeysFromSDKRequestToRESTRequest,
6
+ renameKeysFromRESTResponseToSDKResponse
7
+ } from "@wix/sdk-runtime/rename-all-nested-keys";
8
+
9
+ // src/calendar-v3-schedule-schedules.http.ts
10
+ import { toURLSearchParams } from "@wix/sdk-runtime/rest-modules";
11
+ import { transformSDKTimestampToRESTTimestamp } from "@wix/sdk-runtime/transformations/timestamp";
12
+ import { transformRESTTimestampToSDKTimestamp } from "@wix/sdk-runtime/transformations/timestamp";
13
+ import { transformSDKFieldMaskToRESTFieldMask } from "@wix/sdk-runtime/transformations/field-mask";
14
+ import { transformPaths } from "@wix/sdk-runtime/transformations/transform-paths";
15
+ import { resolveUrl } from "@wix/sdk-runtime/rest-modules";
16
+ function resolveWixCalendarSchedulesV3SchedulesServiceUrl(opts) {
17
+ const domainToMappings = {
18
+ "api._api_base_domain_": [
19
+ {
20
+ srcPath: "/schedules-3",
21
+ destPath: ""
22
+ }
23
+ ],
24
+ "manage._base_domain_": [
25
+ {
26
+ srcPath: "/_api/calendar/v3/schedules",
27
+ destPath: "/v3/schedules"
28
+ }
29
+ ],
30
+ "www.wixapis.com": [
31
+ {
32
+ srcPath: "/calendar/v3/schedules",
33
+ destPath: "/v3/schedules"
34
+ }
35
+ ],
36
+ _: [
37
+ {
38
+ srcPath: "/_api/calendar/v3/schedules",
39
+ destPath: "/v3/schedules"
40
+ }
41
+ ],
42
+ "*.dev.wix-code.com": [
43
+ {
44
+ srcPath: "/_api/calendar/v3/schedules",
45
+ destPath: "/v3/schedules"
46
+ }
47
+ ]
48
+ };
49
+ return resolveUrl(Object.assign(opts, { domainToMappings }));
50
+ }
51
+ var PACKAGE_NAME = "@wix/auto_sdk_calendar_schedules";
52
+ function getSchedule(payload) {
53
+ function __getSchedule({ host }) {
54
+ const metadata = {
55
+ entityFqdn: "wix.calendar.v3.schedule",
56
+ method: "GET",
57
+ methodFqn: "wix.calendar.schedules.v3.SchedulesService.GetSchedule",
58
+ packageName: PACKAGE_NAME,
59
+ url: resolveWixCalendarSchedulesV3SchedulesServiceUrl({
60
+ protoPath: "/v3/schedules/{scheduleId}",
61
+ data: payload,
62
+ host
63
+ }),
64
+ params: toURLSearchParams(payload),
65
+ transformResponse: (payload2) => transformPaths(payload2, [
66
+ {
67
+ transformFn: transformRESTTimestampToSDKTimestamp,
68
+ paths: [
69
+ { path: "schedule.createdDate" },
70
+ { path: "schedule.updatedDate" }
71
+ ]
72
+ }
73
+ ])
74
+ };
75
+ return metadata;
76
+ }
77
+ return __getSchedule;
78
+ }
79
+ function querySchedules(payload) {
80
+ function __querySchedules({ host }) {
81
+ const metadata = {
82
+ entityFqdn: "wix.calendar.v3.schedule",
83
+ method: "POST",
84
+ methodFqn: "wix.calendar.schedules.v3.SchedulesService.QuerySchedules",
85
+ packageName: PACKAGE_NAME,
86
+ url: resolveWixCalendarSchedulesV3SchedulesServiceUrl({
87
+ protoPath: "/v3/schedules/query",
88
+ data: payload,
89
+ host
90
+ }),
91
+ data: payload,
92
+ transformResponse: (payload2) => transformPaths(payload2, [
93
+ {
94
+ transformFn: transformRESTTimestampToSDKTimestamp,
95
+ paths: [
96
+ { path: "schedules.createdDate" },
97
+ { path: "schedules.updatedDate" }
98
+ ]
99
+ }
100
+ ])
101
+ };
102
+ return metadata;
103
+ }
104
+ return __querySchedules;
105
+ }
106
+ function createSchedule(payload) {
107
+ function __createSchedule({ host }) {
108
+ const serializedData = transformPaths(payload, [
109
+ {
110
+ transformFn: transformSDKTimestampToRESTTimestamp,
111
+ paths: [
112
+ { path: "schedule.createdDate" },
113
+ { path: "schedule.updatedDate" }
114
+ ]
115
+ }
116
+ ]);
117
+ const metadata = {
118
+ entityFqdn: "wix.calendar.v3.schedule",
119
+ method: "POST",
120
+ methodFqn: "wix.calendar.schedules.v3.SchedulesService.CreateSchedule",
121
+ packageName: PACKAGE_NAME,
122
+ url: resolveWixCalendarSchedulesV3SchedulesServiceUrl({
123
+ protoPath: "/v3/schedules",
124
+ data: serializedData,
125
+ host
126
+ }),
127
+ data: serializedData,
128
+ transformResponse: (payload2) => transformPaths(payload2, [
129
+ {
130
+ transformFn: transformRESTTimestampToSDKTimestamp,
131
+ paths: [
132
+ { path: "schedule.createdDate" },
133
+ { path: "schedule.updatedDate" }
134
+ ]
135
+ }
136
+ ])
137
+ };
138
+ return metadata;
139
+ }
140
+ return __createSchedule;
141
+ }
142
+ function updateSchedule(payload) {
143
+ function __updateSchedule({ host }) {
144
+ const serializedData = transformPaths(payload, [
145
+ {
146
+ transformFn: transformSDKFieldMaskToRESTFieldMask,
147
+ paths: [{ path: "fieldmask" }]
148
+ },
149
+ {
150
+ transformFn: transformSDKTimestampToRESTTimestamp,
151
+ paths: [
152
+ { path: "schedule.createdDate" },
153
+ { path: "schedule.updatedDate" }
154
+ ]
155
+ }
156
+ ]);
157
+ const metadata = {
158
+ entityFqdn: "wix.calendar.v3.schedule",
159
+ method: "PATCH",
160
+ methodFqn: "wix.calendar.schedules.v3.SchedulesService.UpdateSchedule",
161
+ packageName: PACKAGE_NAME,
162
+ url: resolveWixCalendarSchedulesV3SchedulesServiceUrl({
163
+ protoPath: "/v3/schedules/{schedule.id}",
164
+ data: serializedData,
165
+ host
166
+ }),
167
+ data: serializedData,
168
+ transformResponse: (payload2) => transformPaths(payload2, [
169
+ {
170
+ transformFn: transformRESTTimestampToSDKTimestamp,
171
+ paths: [
172
+ { path: "schedule.createdDate" },
173
+ { path: "schedule.updatedDate" }
174
+ ]
175
+ }
176
+ ])
177
+ };
178
+ return metadata;
179
+ }
180
+ return __updateSchedule;
181
+ }
182
+ function cancelSchedule(payload) {
183
+ function __cancelSchedule({ host }) {
184
+ const metadata = {
185
+ entityFqdn: "wix.calendar.v3.schedule",
186
+ method: "POST",
187
+ methodFqn: "wix.calendar.schedules.v3.SchedulesService.CancelSchedule",
188
+ packageName: PACKAGE_NAME,
189
+ url: resolveWixCalendarSchedulesV3SchedulesServiceUrl({
190
+ protoPath: "/v3/schedules/{scheduleId}/cancel",
191
+ data: payload,
192
+ host
193
+ }),
194
+ data: payload,
195
+ transformResponse: (payload2) => transformPaths(payload2, [
196
+ {
197
+ transformFn: transformRESTTimestampToSDKTimestamp,
198
+ paths: [
199
+ { path: "schedule.createdDate" },
200
+ { path: "schedule.updatedDate" }
201
+ ]
202
+ }
203
+ ])
204
+ };
205
+ return metadata;
206
+ }
207
+ return __cancelSchedule;
208
+ }
209
+
210
+ // src/calendar-v3-schedule-schedules.universal.ts
211
+ import { transformPaths as transformPaths2 } from "@wix/sdk-runtime/transformations/transform-paths";
212
+ var Status = /* @__PURE__ */ ((Status2) => {
213
+ Status2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
214
+ Status2["ACTIVE"] = "ACTIVE";
215
+ Status2["CANCELLED"] = "CANCELLED";
216
+ return Status2;
217
+ })(Status || {});
218
+ var LocationType = /* @__PURE__ */ ((LocationType2) => {
219
+ LocationType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
220
+ LocationType2["BUSINESS"] = "BUSINESS";
221
+ LocationType2["CUSTOMER"] = "CUSTOMER";
222
+ LocationType2["CUSTOM"] = "CUSTOM";
223
+ return LocationType2;
224
+ })(LocationType || {});
225
+ var Type = /* @__PURE__ */ ((Type2) => {
226
+ Type2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
227
+ Type2["ZOOM"] = "ZOOM";
228
+ Type2["CUSTOM"] = "CUSTOM";
229
+ return Type2;
230
+ })(Type || {});
231
+ var IdentityType = /* @__PURE__ */ ((IdentityType2) => {
232
+ IdentityType2["UNKNOWN"] = "UNKNOWN";
233
+ IdentityType2["WIX_USER"] = "WIX_USER";
234
+ return IdentityType2;
235
+ })(IdentityType || {});
236
+ var Role = /* @__PURE__ */ ((Role2) => {
237
+ Role2["UNKNOWN_ROLE"] = "UNKNOWN_ROLE";
238
+ Role2["WRITER"] = "WRITER";
239
+ Role2["COMMENTER"] = "COMMENTER";
240
+ return Role2;
241
+ })(Role || {});
242
+ var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
243
+ RequestedFields2["UNKNOWN_REQUESTED_FIELDS"] = "UNKNOWN_REQUESTED_FIELDS";
244
+ RequestedFields2["PI_FIELDS"] = "PI_FIELDS";
245
+ RequestedFields2["OWN_PI_FIELDS"] = "OWN_PI_FIELDS";
246
+ return RequestedFields2;
247
+ })(RequestedFields || {});
248
+ var Trigger = /* @__PURE__ */ ((Trigger2) => {
249
+ Trigger2["SCHEDULE_CLONED"] = "SCHEDULE_CLONED";
250
+ Trigger2["SITE_DUPLICATED_FROM_SAME_ACCOUNT"] = "SITE_DUPLICATED_FROM_SAME_ACCOUNT";
251
+ Trigger2["SITE_DUPLICATED_FROM_DIFFERENT_ACCOUNT"] = "SITE_DUPLICATED_FROM_DIFFERENT_ACCOUNT";
252
+ Trigger2["SITE_CREATED_FROM_TEMPLATE"] = "SITE_CREATED_FROM_TEMPLATE";
253
+ Trigger2["OTHER"] = "OTHER";
254
+ return Trigger2;
255
+ })(Trigger || {});
256
+ var State = /* @__PURE__ */ ((State2) => {
257
+ State2["UNKNOWN"] = "UNKNOWN";
258
+ State2["ENABLED"] = "ENABLED";
259
+ State2["DISABLED"] = "DISABLED";
260
+ State2["PENDING"] = "PENDING";
261
+ State2["DEMO"] = "DEMO";
262
+ return State2;
263
+ })(State || {});
264
+ var SiteCreatedContext = /* @__PURE__ */ ((SiteCreatedContext2) => {
265
+ SiteCreatedContext2["OTHER"] = "OTHER";
266
+ SiteCreatedContext2["FROM_TEMPLATE"] = "FROM_TEMPLATE";
267
+ SiteCreatedContext2["DUPLICATE_BY_SITE_TRANSFER"] = "DUPLICATE_BY_SITE_TRANSFER";
268
+ SiteCreatedContext2["DUPLICATE"] = "DUPLICATE";
269
+ SiteCreatedContext2["OLD_SITE_TRANSFER"] = "OLD_SITE_TRANSFER";
270
+ SiteCreatedContext2["FLASH"] = "FLASH";
271
+ return SiteCreatedContext2;
272
+ })(SiteCreatedContext || {});
273
+ var Namespace = /* @__PURE__ */ ((Namespace2) => {
274
+ Namespace2["UNKNOWN_NAMESPACE"] = "UNKNOWN_NAMESPACE";
275
+ Namespace2["WIX"] = "WIX";
276
+ Namespace2["SHOUT_OUT"] = "SHOUT_OUT";
277
+ Namespace2["ALBUMS"] = "ALBUMS";
278
+ Namespace2["WIX_STORES_TEST_DRIVE"] = "WIX_STORES_TEST_DRIVE";
279
+ Namespace2["HOTELS"] = "HOTELS";
280
+ Namespace2["CLUBS"] = "CLUBS";
281
+ Namespace2["ONBOARDING_DRAFT"] = "ONBOARDING_DRAFT";
282
+ Namespace2["DEV_SITE"] = "DEV_SITE";
283
+ Namespace2["LOGOS"] = "LOGOS";
284
+ Namespace2["VIDEO_MAKER"] = "VIDEO_MAKER";
285
+ Namespace2["PARTNER_DASHBOARD"] = "PARTNER_DASHBOARD";
286
+ Namespace2["DEV_CENTER_COMPANY"] = "DEV_CENTER_COMPANY";
287
+ Namespace2["HTML_DRAFT"] = "HTML_DRAFT";
288
+ Namespace2["SITELESS_BUSINESS"] = "SITELESS_BUSINESS";
289
+ Namespace2["CREATOR_ECONOMY"] = "CREATOR_ECONOMY";
290
+ Namespace2["DASHBOARD_FIRST"] = "DASHBOARD_FIRST";
291
+ Namespace2["ANYWHERE"] = "ANYWHERE";
292
+ Namespace2["HEADLESS"] = "HEADLESS";
293
+ Namespace2["ACCOUNT_MASTER_CMS"] = "ACCOUNT_MASTER_CMS";
294
+ Namespace2["RISE"] = "RISE";
295
+ Namespace2["BRANDED_FIRST"] = "BRANDED_FIRST";
296
+ Namespace2["NOWNIA"] = "NOWNIA";
297
+ Namespace2["UGC_TEMPLATE"] = "UGC_TEMPLATE";
298
+ Namespace2["CODUX"] = "CODUX";
299
+ Namespace2["MEDIA_DESIGN_CREATOR"] = "MEDIA_DESIGN_CREATOR";
300
+ Namespace2["SHARED_BLOG_ENTERPRISE"] = "SHARED_BLOG_ENTERPRISE";
301
+ Namespace2["STANDALONE_FORMS"] = "STANDALONE_FORMS";
302
+ Namespace2["STANDALONE_EVENTS"] = "STANDALONE_EVENTS";
303
+ Namespace2["MIMIR"] = "MIMIR";
304
+ return Namespace2;
305
+ })(Namespace || {});
306
+ var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
307
+ DeleteStatus2["UNKNOWN"] = "UNKNOWN";
308
+ DeleteStatus2["TRASH"] = "TRASH";
309
+ DeleteStatus2["DELETED"] = "DELETED";
310
+ DeleteStatus2["PENDING_PURGE"] = "PENDING_PURGE";
311
+ DeleteStatus2["PURGED_EXTERNALLY"] = "PURGED_EXTERNALLY";
312
+ return DeleteStatus2;
313
+ })(DeleteStatus || {});
314
+ var PlacementType = /* @__PURE__ */ ((PlacementType2) => {
315
+ PlacementType2["BEFORE"] = "BEFORE";
316
+ PlacementType2["AFTER"] = "AFTER";
317
+ PlacementType2["REPLACE"] = "REPLACE";
318
+ return PlacementType2;
319
+ })(PlacementType || {});
320
+ var DayOfWeek = /* @__PURE__ */ ((DayOfWeek2) => {
321
+ DayOfWeek2["MONDAY"] = "MONDAY";
322
+ DayOfWeek2["TUESDAY"] = "TUESDAY";
323
+ DayOfWeek2["WEDNESDAY"] = "WEDNESDAY";
324
+ DayOfWeek2["THURSDAY"] = "THURSDAY";
325
+ DayOfWeek2["FRIDAY"] = "FRIDAY";
326
+ DayOfWeek2["SATURDAY"] = "SATURDAY";
327
+ DayOfWeek2["SUNDAY"] = "SUNDAY";
328
+ return DayOfWeek2;
329
+ })(DayOfWeek || {});
330
+ var ResolutionMethod = /* @__PURE__ */ ((ResolutionMethod2) => {
331
+ ResolutionMethod2["QUERY_PARAM"] = "QUERY_PARAM";
332
+ ResolutionMethod2["SUBDOMAIN"] = "SUBDOMAIN";
333
+ ResolutionMethod2["SUBDIRECTORY"] = "SUBDIRECTORY";
334
+ return ResolutionMethod2;
335
+ })(ResolutionMethod || {});
336
+ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
337
+ WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
338
+ WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
339
+ WebhookIdentityType2["MEMBER"] = "MEMBER";
340
+ WebhookIdentityType2["WIX_USER"] = "WIX_USER";
341
+ WebhookIdentityType2["APP"] = "APP";
342
+ return WebhookIdentityType2;
343
+ })(WebhookIdentityType || {});
344
+ async function getSchedule2(scheduleId, options) {
345
+ const { httpClient, sideEffects } = arguments[2];
346
+ const payload = renameKeysFromSDKRequestToRESTRequest({
347
+ scheduleId,
348
+ fields: options?.fields
349
+ });
350
+ const reqOpts = getSchedule(payload);
351
+ sideEffects?.onSiteCall?.();
352
+ try {
353
+ const result = await httpClient.request(reqOpts);
354
+ sideEffects?.onSuccess?.(result);
355
+ return renameKeysFromRESTResponseToSDKResponse(result.data)?.schedule;
356
+ } catch (err) {
357
+ const transformedError = sdkTransformError(
358
+ err,
359
+ {
360
+ spreadPathsToArguments: {},
361
+ explicitPathsToArguments: { scheduleId: "$[0]", fields: "$[1].fields" },
362
+ singleArgumentUnchanged: false
363
+ },
364
+ ["scheduleId", "options"]
365
+ );
366
+ sideEffects?.onError?.(err);
367
+ throw transformedError;
368
+ }
369
+ }
370
+ function querySchedules2(options) {
371
+ const { httpClient, sideEffects } = arguments[1];
372
+ return queryBuilder({
373
+ func: async (payload) => {
374
+ const reqOpts = querySchedules({
375
+ ...payload,
376
+ ...options ?? {}
377
+ });
378
+ sideEffects?.onSiteCall?.();
379
+ try {
380
+ const result = await httpClient.request(reqOpts);
381
+ sideEffects?.onSuccess?.(result);
382
+ return result;
383
+ } catch (err) {
384
+ sideEffects?.onError?.(err);
385
+ throw err;
386
+ }
387
+ },
388
+ requestTransformer: (query) => {
389
+ const args = [query, options];
390
+ return renameKeysFromSDKRequestToRESTRequest({
391
+ ...args?.[1],
392
+ query: args?.[0]
393
+ });
394
+ },
395
+ responseTransformer: ({ data }) => {
396
+ const transformedData = renameKeysFromRESTResponseToSDKResponse(
397
+ transformPaths2(data, [])
398
+ );
399
+ return {
400
+ items: transformedData?.schedules,
401
+ pagingMetadata: transformedData?.pagingMetadata
402
+ };
403
+ },
404
+ errorTransformer: (err) => {
405
+ const transformedError = sdkTransformError(err, {
406
+ spreadPathsToArguments: {},
407
+ explicitPathsToArguments: { query: "$[0]" },
408
+ singleArgumentUnchanged: false
409
+ });
410
+ throw transformedError;
411
+ },
412
+ pagingMethod: "CURSOR",
413
+ transformationPaths: {}
414
+ });
415
+ }
416
+ async function createSchedule2(schedule, options) {
417
+ const { httpClient, sideEffects } = arguments[2];
418
+ const payload = renameKeysFromSDKRequestToRESTRequest({
419
+ schedule,
420
+ idempotencyKey: options?.idempotencyKey
421
+ });
422
+ const reqOpts = createSchedule(payload);
423
+ sideEffects?.onSiteCall?.();
424
+ try {
425
+ const result = await httpClient.request(reqOpts);
426
+ sideEffects?.onSuccess?.(result);
427
+ return renameKeysFromRESTResponseToSDKResponse(result.data)?.schedule;
428
+ } catch (err) {
429
+ const transformedError = sdkTransformError(
430
+ err,
431
+ {
432
+ spreadPathsToArguments: {},
433
+ explicitPathsToArguments: {
434
+ schedule: "$[0]",
435
+ idempotencyKey: "$[1].idempotencyKey"
436
+ },
437
+ singleArgumentUnchanged: false
438
+ },
439
+ ["schedule", "options"]
440
+ );
441
+ sideEffects?.onError?.(err);
442
+ throw transformedError;
443
+ }
444
+ }
445
+ async function updateSchedule2(_id, schedule, options) {
446
+ const { httpClient, sideEffects } = arguments[3];
447
+ const payload = renameKeysFromSDKRequestToRESTRequest({
448
+ schedule: { ...schedule, id: _id },
449
+ participantNotification: options?.participantNotification
450
+ });
451
+ const reqOpts = updateSchedule(payload);
452
+ sideEffects?.onSiteCall?.();
453
+ try {
454
+ const result = await httpClient.request(reqOpts);
455
+ sideEffects?.onSuccess?.(result);
456
+ return renameKeysFromRESTResponseToSDKResponse(result.data)?.schedule;
457
+ } catch (err) {
458
+ const transformedError = sdkTransformError(
459
+ err,
460
+ {
461
+ spreadPathsToArguments: { schedule: "$[1]" },
462
+ explicitPathsToArguments: {
463
+ "schedule.id": "$[0]",
464
+ participantNotification: "$[2].participantNotification"
465
+ },
466
+ singleArgumentUnchanged: false
467
+ },
468
+ ["_id", "schedule", "options"]
469
+ );
470
+ sideEffects?.onError?.(err);
471
+ throw transformedError;
472
+ }
473
+ }
474
+ async function cancelSchedule2(scheduleId, options) {
475
+ const { httpClient, sideEffects } = arguments[2];
476
+ const payload = renameKeysFromSDKRequestToRESTRequest({
477
+ scheduleId,
478
+ preserveFutureEventsWithParticipants: options?.preserveFutureEventsWithParticipants,
479
+ participantNotification: options?.participantNotification
480
+ });
481
+ const reqOpts = cancelSchedule(payload);
482
+ sideEffects?.onSiteCall?.();
483
+ try {
484
+ const result = await httpClient.request(reqOpts);
485
+ sideEffects?.onSuccess?.(result);
486
+ return renameKeysFromRESTResponseToSDKResponse(result.data);
487
+ } catch (err) {
488
+ const transformedError = sdkTransformError(
489
+ err,
490
+ {
491
+ spreadPathsToArguments: {},
492
+ explicitPathsToArguments: {
493
+ scheduleId: "$[0]",
494
+ preserveFutureEventsWithParticipants: "$[1].preserveFutureEventsWithParticipants",
495
+ participantNotification: "$[1].participantNotification"
496
+ },
497
+ singleArgumentUnchanged: false
498
+ },
499
+ ["scheduleId", "options"]
500
+ );
501
+ sideEffects?.onError?.(err);
502
+ throw transformedError;
503
+ }
504
+ }
505
+ export {
506
+ DayOfWeek,
507
+ DeleteStatus,
508
+ IdentityType,
509
+ LocationType,
510
+ Namespace,
511
+ PlacementType,
512
+ RequestedFields,
513
+ ResolutionMethod,
514
+ Role,
515
+ SiteCreatedContext,
516
+ State,
517
+ Status,
518
+ Trigger,
519
+ Type,
520
+ WebhookIdentityType,
521
+ cancelSchedule2 as cancelSchedule,
522
+ createSchedule2 as createSchedule,
523
+ getSchedule2 as getSchedule,
524
+ querySchedules2 as querySchedules,
525
+ updateSchedule2 as updateSchedule
526
+ };
527
+ //# sourceMappingURL=index.typings.mjs.map