@wix/auto_sdk_calendar_schedule-time-frames 1.0.23 → 1.0.25

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.
@@ -138,6 +138,430 @@ interface ListScheduleTimeFramesResponse {
138
138
  /** Retrieved schedule time frames. */
139
139
  scheduleTimeFrames?: ScheduleTimeFrame[];
140
140
  }
141
+ /** Encapsulates all details written to the Greyhound topic when a site's properties are updated. */
142
+ interface SitePropertiesNotification {
143
+ /** The site ID for which this update notification applies. */
144
+ metasiteId?: string;
145
+ /** The actual update event. */
146
+ event?: SitePropertiesEvent;
147
+ /**
148
+ * A convenience set of mappings from the MetaSite ID to its constituent services.
149
+ * @maxSize 500
150
+ */
151
+ translations?: Translation[];
152
+ /** Context of the notification */
153
+ changeContext?: ChangeContext;
154
+ }
155
+ /** The actual update event for a particular notification. */
156
+ interface SitePropertiesEvent {
157
+ /** Version of the site's properties represented by this update. */
158
+ version?: number;
159
+ /** Set of properties that were updated - corresponds to the fields in "properties". */
160
+ fields?: string[];
161
+ /** Updated properties. */
162
+ properties?: Properties;
163
+ }
164
+ interface Properties {
165
+ /** Site categories. */
166
+ categories?: Categories;
167
+ /** Site locale. */
168
+ locale?: Locale;
169
+ /**
170
+ * Site language.
171
+ *
172
+ * Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
173
+ */
174
+ language?: string | null;
175
+ /**
176
+ * Site currency format used to bill customers.
177
+ *
178
+ * Three-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
179
+ */
180
+ paymentCurrency?: string | null;
181
+ /** Timezone in `America/New_York` format. */
182
+ timeZone?: string | null;
183
+ /** Email address. */
184
+ email?: string | null;
185
+ /** Phone number. */
186
+ phone?: string | null;
187
+ /** Fax number. */
188
+ fax?: string | null;
189
+ /** Address. */
190
+ address?: Address;
191
+ /** Site display name. */
192
+ siteDisplayName?: string | null;
193
+ /** Business name. */
194
+ businessName?: string | null;
195
+ /** Path to the site's logo in Wix Media (without Wix Media base URL). */
196
+ logo?: string | null;
197
+ /** Site description. */
198
+ description?: string | null;
199
+ /**
200
+ * Business schedule. Regular and exceptional time periods when the business is open or the service is available.
201
+ *
202
+ * __Note:__ Not supported by Wix Bookings.
203
+ */
204
+ businessSchedule?: BusinessSchedule;
205
+ /** Supported languages of a site and the primary language. */
206
+ multilingual?: Multilingual;
207
+ /** Cookie policy the Wix user defined for their site (before the site visitor interacts with/limits it). */
208
+ consentPolicy?: ConsentPolicy;
209
+ /**
210
+ * Supported values: `FITNESS SERVICE`, `RESTAURANT`, `BLOG`, `STORE`, `EVENT`, `UNKNOWN`.
211
+ *
212
+ * Site business type.
213
+ */
214
+ businessConfig?: string | null;
215
+ /** External site URL that uses Wix as its headless business solution. */
216
+ externalSiteUrl?: string | null;
217
+ /** Track clicks analytics. */
218
+ trackClicksAnalytics?: boolean;
219
+ }
220
+ interface Categories {
221
+ /** Primary site category. */
222
+ primary?: string;
223
+ /**
224
+ * Secondary site category.
225
+ * @maxSize 50
226
+ */
227
+ secondary?: string[];
228
+ /** Business Term Id */
229
+ businessTermId?: string | null;
230
+ }
231
+ interface Locale {
232
+ /** Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. */
233
+ languageCode?: string;
234
+ /** Two-letter country code in [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) format. */
235
+ country?: string;
236
+ }
237
+ interface Address {
238
+ /** Street name. */
239
+ street?: string;
240
+ /** City name. */
241
+ city?: string;
242
+ /** Two-letter country code in an [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) format. */
243
+ country?: string;
244
+ /** State. */
245
+ state?: string;
246
+ /**
247
+ * Zip or postal code.
248
+ * @maxLength 20
249
+ */
250
+ zip?: string;
251
+ /** Extra information to be displayed in the address. */
252
+ hint?: AddressHint;
253
+ /** Whether this address represents a physical location. */
254
+ isPhysical?: boolean;
255
+ /** Google-formatted version of this address. */
256
+ googleFormattedAddress?: string;
257
+ /** Street number. */
258
+ streetNumber?: string;
259
+ /** Apartment number. */
260
+ apartmentNumber?: string;
261
+ /** Geographic coordinates of location. */
262
+ coordinates?: GeoCoordinates;
263
+ }
264
+ /**
265
+ * Extra information on displayed addresses.
266
+ * This is used for display purposes. Used to add additional data about the address, such as "In the passage".
267
+ * Free text. In addition, the user can state where to display the additional description - before, after, or instead of the address string.
268
+ */
269
+ interface AddressHint {
270
+ /** Extra text displayed next to, or instead of, the actual address. */
271
+ text?: string;
272
+ /** Where the extra text should be displayed. */
273
+ placement?: PlacementTypeWithLiterals;
274
+ }
275
+ /** Where the extra text should be displayed: before, after or instead of the actual address. */
276
+ declare enum PlacementType {
277
+ BEFORE = "BEFORE",
278
+ AFTER = "AFTER",
279
+ REPLACE = "REPLACE"
280
+ }
281
+ /** @enumType */
282
+ type PlacementTypeWithLiterals = PlacementType | 'BEFORE' | 'AFTER' | 'REPLACE';
283
+ /** Geocoordinates for a particular address. */
284
+ interface GeoCoordinates {
285
+ /** Latitude of the location. Must be between -90 and 90. */
286
+ latitude?: number;
287
+ /** Longitude of the location. Must be between -180 and 180. */
288
+ longitude?: number;
289
+ }
290
+ /** Business schedule. Regular and exceptional time periods when the business is open or the service is available. */
291
+ interface BusinessSchedule {
292
+ /**
293
+ * Weekly recurring time periods when the business is regularly open or the service is available. Limited to 100 time periods.
294
+ * @maxSize 100
295
+ */
296
+ periods?: TimePeriod[];
297
+ /**
298
+ * Exceptions to the business's regular hours. The business can be open or closed during the exception.
299
+ * @maxSize 100
300
+ */
301
+ specialHourPeriod?: SpecialHourPeriod[];
302
+ }
303
+ /** Weekly recurring time periods when the business is regularly open or the service is available. */
304
+ interface TimePeriod {
305
+ /** Day of the week the period starts on. */
306
+ openDay?: DayOfWeekWithLiterals;
307
+ /**
308
+ * Time the period starts in 24-hour [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) extended format. Valid values are `00:00` to `24:00`, where `24:00` represents
309
+ * midnight at the end of the specified day.
310
+ */
311
+ openTime?: string;
312
+ /** Day of the week the period ends on. */
313
+ closeDay?: DayOfWeekWithLiterals;
314
+ /**
315
+ * Time the period ends in 24-hour [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) extended format. Valid values are `00:00` to `24:00`, where `24:00` represents
316
+ * midnight at the end of the specified day.
317
+ *
318
+ * __Note:__ If `openDay` and `closeDay` specify the same day of the week `closeTime` must be later than `openTime`.
319
+ */
320
+ closeTime?: string;
321
+ }
322
+ /** Enumerates the days of the week. */
323
+ declare enum DayOfWeek {
324
+ MONDAY = "MONDAY",
325
+ TUESDAY = "TUESDAY",
326
+ WEDNESDAY = "WEDNESDAY",
327
+ THURSDAY = "THURSDAY",
328
+ FRIDAY = "FRIDAY",
329
+ SATURDAY = "SATURDAY",
330
+ SUNDAY = "SUNDAY"
331
+ }
332
+ /** @enumType */
333
+ type DayOfWeekWithLiterals = DayOfWeek | 'MONDAY' | 'TUESDAY' | 'WEDNESDAY' | 'THURSDAY' | 'FRIDAY' | 'SATURDAY' | 'SUNDAY';
334
+ /** Exception to the business's regular hours. The business can be open or closed during the exception. */
335
+ interface SpecialHourPeriod {
336
+ /** Start date and time of the exception in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format and [Coordinated Universal Time (UTC)](https://en.wikipedia.org/wiki/Coordinated_Universal_Time). */
337
+ startDate?: string;
338
+ /** End date and time of the exception in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format and [Coordinated Universal Time (UTC)](https://en.wikipedia.org/wiki/Coordinated_Universal_Time). */
339
+ endDate?: string;
340
+ /**
341
+ * Whether the business is closed (or the service is not available) during the exception.
342
+ *
343
+ * Default: `true`.
344
+ */
345
+ isClosed?: boolean;
346
+ /** Additional info about the exception. For example, "We close earlier on New Year's Eve." */
347
+ comment?: string;
348
+ }
349
+ interface Multilingual {
350
+ /**
351
+ * Supported languages list.
352
+ * @maxSize 200
353
+ */
354
+ supportedLanguages?: SupportedLanguage[];
355
+ /** Whether to redirect to user language. */
356
+ autoRedirect?: boolean;
357
+ }
358
+ interface SupportedLanguage {
359
+ /** Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. */
360
+ languageCode?: string;
361
+ /** Locale. */
362
+ locale?: Locale;
363
+ /** Whether the supported language is the primary language for the site. */
364
+ isPrimary?: boolean;
365
+ /** Language icon. */
366
+ countryCode?: string;
367
+ /** How the language will be resolved. For internal use. */
368
+ resolutionMethod?: ResolutionMethodWithLiterals;
369
+ /** Whether the supported language is the primary language for site visitors. */
370
+ isVisitorPrimary?: boolean | null;
371
+ }
372
+ declare enum ResolutionMethod {
373
+ QUERY_PARAM = "QUERY_PARAM",
374
+ SUBDOMAIN = "SUBDOMAIN",
375
+ SUBDIRECTORY = "SUBDIRECTORY"
376
+ }
377
+ /** @enumType */
378
+ type ResolutionMethodWithLiterals = ResolutionMethod | 'QUERY_PARAM' | 'SUBDOMAIN' | 'SUBDIRECTORY';
379
+ interface ConsentPolicy {
380
+ /** Whether the site uses cookies that are essential to site operation. Always `true`. */
381
+ essential?: boolean | null;
382
+ /** Whether the site uses cookies that affect site performance and other functional measurements. */
383
+ functional?: boolean | null;
384
+ /** Whether the site uses cookies that collect analytics about how the site is used (in order to improve it). */
385
+ analytics?: boolean | null;
386
+ /** Whether the site uses cookies that collect information allowing better customization of the experience for a current visitor. */
387
+ advertising?: boolean | null;
388
+ /** CCPA compliance flag. */
389
+ dataToThirdParty?: boolean | null;
390
+ }
391
+ /** A single mapping from the MetaSite ID to a particular service. */
392
+ interface Translation {
393
+ /** The service type. */
394
+ serviceType?: string;
395
+ /** The application definition ID; this only applies to services of type ThirdPartyApps. */
396
+ appDefId?: string;
397
+ /** The instance ID of the service. */
398
+ instanceId?: string;
399
+ }
400
+ interface ChangeContext extends ChangeContextPayloadOneOf {
401
+ /** Properties were updated. */
402
+ propertiesChange?: PropertiesChange;
403
+ /** Default properties were created on site creation. */
404
+ siteCreated?: SiteCreated;
405
+ /** Properties were cloned on site cloning. */
406
+ siteCloned?: SiteCloned;
407
+ }
408
+ /** @oneof */
409
+ interface ChangeContextPayloadOneOf {
410
+ /** Properties were updated. */
411
+ propertiesChange?: PropertiesChange;
412
+ /** Default properties were created on site creation. */
413
+ siteCreated?: SiteCreated;
414
+ /** Properties were cloned on site cloning. */
415
+ siteCloned?: SiteCloned;
416
+ }
417
+ interface PropertiesChange {
418
+ }
419
+ interface SiteCreated {
420
+ /** Origin template site id. */
421
+ originTemplateId?: string | null;
422
+ }
423
+ interface SiteCloned {
424
+ /** Origin site id. */
425
+ originMetaSiteId?: string;
426
+ }
427
+ interface Empty {
428
+ }
429
+ interface DomainEvent extends DomainEventBodyOneOf {
430
+ createdEvent?: EntityCreatedEvent;
431
+ updatedEvent?: EntityUpdatedEvent;
432
+ deletedEvent?: EntityDeletedEvent;
433
+ actionEvent?: ActionEvent;
434
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
435
+ id?: string;
436
+ /**
437
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
438
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
439
+ */
440
+ entityFqdn?: string;
441
+ /**
442
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
443
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
444
+ */
445
+ slug?: string;
446
+ /** ID of the entity associated with the event. */
447
+ entityId?: string;
448
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
449
+ eventTime?: Date | null;
450
+ /**
451
+ * Whether the event was triggered as a result of a privacy regulation application
452
+ * (for example, GDPR).
453
+ */
454
+ triggeredByAnonymizeRequest?: boolean | null;
455
+ /** If present, indicates the action that triggered the event. */
456
+ originatedFrom?: string | null;
457
+ /**
458
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
459
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
460
+ */
461
+ entityEventSequence?: string | null;
462
+ }
463
+ /** @oneof */
464
+ interface DomainEventBodyOneOf {
465
+ createdEvent?: EntityCreatedEvent;
466
+ updatedEvent?: EntityUpdatedEvent;
467
+ deletedEvent?: EntityDeletedEvent;
468
+ actionEvent?: ActionEvent;
469
+ }
470
+ interface EntityCreatedEvent {
471
+ entityAsJson?: string;
472
+ /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
473
+ restoreInfo?: RestoreInfo;
474
+ }
475
+ interface RestoreInfo {
476
+ deletedDate?: Date | null;
477
+ }
478
+ interface EntityUpdatedEvent {
479
+ /**
480
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
481
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
482
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
483
+ */
484
+ currentEntityAsJson?: string;
485
+ }
486
+ interface EntityDeletedEvent {
487
+ /** Entity that was deleted. */
488
+ deletedEntityAsJson?: string | null;
489
+ }
490
+ interface ActionEvent {
491
+ bodyAsJson?: string;
492
+ }
493
+ interface MessageEnvelope {
494
+ /**
495
+ * App instance ID.
496
+ * @format GUID
497
+ */
498
+ instanceId?: string | null;
499
+ /**
500
+ * Event type.
501
+ * @maxLength 150
502
+ */
503
+ eventType?: string;
504
+ /** The identification type and identity data. */
505
+ identity?: IdentificationData;
506
+ /** Stringify payload. */
507
+ data?: string;
508
+ }
509
+ interface IdentificationData extends IdentificationDataIdOneOf {
510
+ /**
511
+ * ID of a site visitor that has not logged in to the site.
512
+ * @format GUID
513
+ */
514
+ anonymousVisitorId?: string;
515
+ /**
516
+ * ID of a site visitor that has logged in to the site.
517
+ * @format GUID
518
+ */
519
+ memberId?: string;
520
+ /**
521
+ * ID of a Wix user (site owner, contributor, etc.).
522
+ * @format GUID
523
+ */
524
+ wixUserId?: string;
525
+ /**
526
+ * ID of an app.
527
+ * @format GUID
528
+ */
529
+ appId?: string;
530
+ /** @readonly */
531
+ identityType?: WebhookIdentityTypeWithLiterals;
532
+ }
533
+ /** @oneof */
534
+ interface IdentificationDataIdOneOf {
535
+ /**
536
+ * ID of a site visitor that has not logged in to the site.
537
+ * @format GUID
538
+ */
539
+ anonymousVisitorId?: string;
540
+ /**
541
+ * ID of a site visitor that has logged in to the site.
542
+ * @format GUID
543
+ */
544
+ memberId?: string;
545
+ /**
546
+ * ID of a Wix user (site owner, contributor, etc.).
547
+ * @format GUID
548
+ */
549
+ wixUserId?: string;
550
+ /**
551
+ * ID of an app.
552
+ * @format GUID
553
+ */
554
+ appId?: string;
555
+ }
556
+ declare enum WebhookIdentityType {
557
+ UNKNOWN = "UNKNOWN",
558
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
559
+ MEMBER = "MEMBER",
560
+ WIX_USER = "WIX_USER",
561
+ APP = "APP"
562
+ }
563
+ /** @enumType */
564
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
141
565
 
142
566
  type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
143
567
  getUrl: (context: any) => string;
@@ -154,4 +578,4 @@ declare function getScheduleTimeFrame(): __PublicMethodMetaInfo<'GET', {
154
578
  }, GetScheduleTimeFrameRequest$1, GetScheduleTimeFrameRequest, GetScheduleTimeFrameResponse$1, GetScheduleTimeFrameResponse>;
155
579
  declare function listScheduleTimeFrames(): __PublicMethodMetaInfo<'GET', {}, ListScheduleTimeFramesRequest$1, ListScheduleTimeFramesRequest, ListScheduleTimeFramesResponse$1, ListScheduleTimeFramesResponse>;
156
580
 
157
- export { type __PublicMethodMetaInfo, getScheduleTimeFrame, listScheduleTimeFrames };
581
+ export { type ActionEvent as ActionEventOriginal, type AddressHint as AddressHintOriginal, type Address as AddressOriginal, type BusinessSchedule as BusinessScheduleOriginal, type Categories as CategoriesOriginal, type ChangeContext as ChangeContextOriginal, type ChangeContextPayloadOneOf as ChangeContextPayloadOneOfOriginal, type ConsentPolicy as ConsentPolicyOriginal, DayOfWeek as DayOfWeekOriginal, type DayOfWeekWithLiterals as DayOfWeekWithLiteralsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type GeoCoordinates as GeoCoordinatesOriginal, type GetScheduleTimeFrameRequest as GetScheduleTimeFrameRequestOriginal, type GetScheduleTimeFrameResponse as GetScheduleTimeFrameResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ListScheduleTimeFramesRequest as ListScheduleTimeFramesRequestOriginal, type ListScheduleTimeFramesResponse as ListScheduleTimeFramesResponseOriginal, type Locale as LocaleOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Multilingual as MultilingualOriginal, PlacementType as PlacementTypeOriginal, type PlacementTypeWithLiterals as PlacementTypeWithLiteralsOriginal, type PropertiesChange as PropertiesChangeOriginal, type Properties as PropertiesOriginal, ResolutionMethod as ResolutionMethodOriginal, type ResolutionMethodWithLiterals as ResolutionMethodWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type ScheduleTimeFrame as ScheduleTimeFrameOriginal, type SiteCloned as SiteClonedOriginal, type SiteCreated as SiteCreatedOriginal, type SitePropertiesEvent as SitePropertiesEventOriginal, type SitePropertiesNotification as SitePropertiesNotificationOriginal, type SpecialHourPeriod as SpecialHourPeriodOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type SupportedLanguage as SupportedLanguageOriginal, type TimePeriod as TimePeriodOriginal, type Translation as TranslationOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type ZonedDate as ZonedDateOriginal, type __PublicMethodMetaInfo, getScheduleTimeFrame, listScheduleTimeFrames };
package/build/cjs/meta.js CHANGED
@@ -20,6 +20,11 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
20
20
  // meta.ts
21
21
  var meta_exports = {};
22
22
  __export(meta_exports, {
23
+ DayOfWeekOriginal: () => DayOfWeek,
24
+ PlacementTypeOriginal: () => PlacementType,
25
+ ResolutionMethodOriginal: () => ResolutionMethod,
26
+ StatusOriginal: () => Status,
27
+ WebhookIdentityTypeOriginal: () => WebhookIdentityType,
23
28
  getScheduleTimeFrame: () => getScheduleTimeFrame2,
24
29
  listScheduleTimeFrames: () => listScheduleTimeFrames2
25
30
  });
@@ -133,6 +138,45 @@ function listScheduleTimeFrames(payload) {
133
138
  return __listScheduleTimeFrames;
134
139
  }
135
140
 
141
+ // src/calendar-v3-schedule-time-frame-schedule-time-frames.types.ts
142
+ var Status = /* @__PURE__ */ ((Status2) => {
143
+ Status2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
144
+ Status2["NONE"] = "NONE";
145
+ Status2["FINITE"] = "FINITE";
146
+ Status2["INFINITE"] = "INFINITE";
147
+ return Status2;
148
+ })(Status || {});
149
+ var PlacementType = /* @__PURE__ */ ((PlacementType2) => {
150
+ PlacementType2["BEFORE"] = "BEFORE";
151
+ PlacementType2["AFTER"] = "AFTER";
152
+ PlacementType2["REPLACE"] = "REPLACE";
153
+ return PlacementType2;
154
+ })(PlacementType || {});
155
+ var DayOfWeek = /* @__PURE__ */ ((DayOfWeek2) => {
156
+ DayOfWeek2["MONDAY"] = "MONDAY";
157
+ DayOfWeek2["TUESDAY"] = "TUESDAY";
158
+ DayOfWeek2["WEDNESDAY"] = "WEDNESDAY";
159
+ DayOfWeek2["THURSDAY"] = "THURSDAY";
160
+ DayOfWeek2["FRIDAY"] = "FRIDAY";
161
+ DayOfWeek2["SATURDAY"] = "SATURDAY";
162
+ DayOfWeek2["SUNDAY"] = "SUNDAY";
163
+ return DayOfWeek2;
164
+ })(DayOfWeek || {});
165
+ var ResolutionMethod = /* @__PURE__ */ ((ResolutionMethod2) => {
166
+ ResolutionMethod2["QUERY_PARAM"] = "QUERY_PARAM";
167
+ ResolutionMethod2["SUBDOMAIN"] = "SUBDOMAIN";
168
+ ResolutionMethod2["SUBDIRECTORY"] = "SUBDIRECTORY";
169
+ return ResolutionMethod2;
170
+ })(ResolutionMethod || {});
171
+ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
172
+ WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
173
+ WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
174
+ WebhookIdentityType2["MEMBER"] = "MEMBER";
175
+ WebhookIdentityType2["WIX_USER"] = "WIX_USER";
176
+ WebhookIdentityType2["APP"] = "APP";
177
+ return WebhookIdentityType2;
178
+ })(WebhookIdentityType || {});
179
+
136
180
  // src/calendar-v3-schedule-time-frame-schedule-time-frames.meta.ts
137
181
  function getScheduleTimeFrame2() {
138
182
  const payload = { id: ":id" };
@@ -172,6 +216,11 @@ function listScheduleTimeFrames2() {
172
216
  }
173
217
  // Annotate the CommonJS export names for ESM import in node:
174
218
  0 && (module.exports = {
219
+ DayOfWeekOriginal,
220
+ PlacementTypeOriginal,
221
+ ResolutionMethodOriginal,
222
+ StatusOriginal,
223
+ WebhookIdentityTypeOriginal,
175
224
  getScheduleTimeFrame,
176
225
  listScheduleTimeFrames
177
226
  });
@@ -1 +1 @@
1
- {"version":3,"sources":["../../meta.ts","../../src/calendar-v3-schedule-time-frame-schedule-time-frames.http.ts","../../src/calendar-v3-schedule-time-frame-schedule-time-frames.meta.ts"],"sourcesContent":["export * from './src/calendar-v3-schedule-time-frame-schedule-time-frames.meta.js';\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixCalendarScheduletimeframesV3ScheduleTimeFramesServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'api._api_base_domain_': [\n {\n srcPath: '/schedule-timeframes-3',\n destPath: '',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/_api/calendar/v3/schedules/timeframe',\n destPath: '/v3/schedules/timeframe',\n },\n ],\n _: [\n {\n srcPath: '/_api/calendar/v3/schedules/timeframe',\n destPath: '/v3/schedules/timeframe',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/_api/calendar/v3/schedules/timeframe',\n destPath: '/v3/schedules/timeframe',\n },\n ],\n 'www.wixapis.com': [\n {\n srcPath: '/calendar/v3/schedules/timeframe',\n destPath: '/v3/schedules/timeframe',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_calendar_schedule-time-frames';\n\n/** Retrieves a schedule time frame by schedule ID. */\nexport function getScheduleTimeFrame(\n payload: object\n): RequestOptionsFactory<any> {\n function __getScheduleTimeFrame({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.calendar.v3.schedule_time_frame',\n method: 'GET' as any,\n methodFqn:\n 'wix.calendar.scheduletimeframes.v3.ScheduleTimeFramesService.GetScheduleTimeFrame',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixCalendarScheduletimeframesV3ScheduleTimeFramesServiceUrl({\n protoPath: '/v3/schedules/timeframe/{id}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'scheduleTimeFrame.firstEventStartDate.utcDate' },\n { path: 'scheduleTimeFrame.lastEventEndDate.utcDate' },\n { path: 'scheduleTimeFrame.adjustedFirstEventStartDate.utcDate' },\n { path: 'scheduleTimeFrame.adjustedLastEventEndDate.utcDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __getScheduleTimeFrame;\n}\n\n/**\n * Retrieves a list of schedule time frames by schedule IDs.\n *\n *\n * Sorted by schedule ID in ascending order.\n */\nexport function listScheduleTimeFrames(\n payload: object\n): RequestOptionsFactory<any> {\n function __listScheduleTimeFrames({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.calendar.v3.schedule_time_frame',\n method: 'GET' as any,\n methodFqn:\n 'wix.calendar.scheduletimeframes.v3.ScheduleTimeFramesService.ListScheduleTimeFrames',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixCalendarScheduletimeframesV3ScheduleTimeFramesServiceUrl({\n protoPath: '/v3/schedules/timeframe',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'scheduleTimeFrames.firstEventStartDate.utcDate' },\n { path: 'scheduleTimeFrames.lastEventEndDate.utcDate' },\n {\n path: 'scheduleTimeFrames.adjustedFirstEventStartDate.utcDate',\n },\n { path: 'scheduleTimeFrames.adjustedLastEventEndDate.utcDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __listScheduleTimeFrames;\n}\n","import * as ambassadorWixCalendarV3ScheduleTimeFrame from './calendar-v3-schedule-time-frame-schedule-time-frames.http.js';\nimport * as ambassadorWixCalendarV3ScheduleTimeFrameTypes from './calendar-v3-schedule-time-frame-schedule-time-frames.types.js';\nimport * as ambassadorWixCalendarV3ScheduleTimeFrameUniversalTypes from './calendar-v3-schedule-time-frame-schedule-time-frames.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function getScheduleTimeFrame(): __PublicMethodMetaInfo<\n 'GET',\n { id: string },\n ambassadorWixCalendarV3ScheduleTimeFrameUniversalTypes.GetScheduleTimeFrameRequest,\n ambassadorWixCalendarV3ScheduleTimeFrameTypes.GetScheduleTimeFrameRequest,\n ambassadorWixCalendarV3ScheduleTimeFrameUniversalTypes.GetScheduleTimeFrameResponse,\n ambassadorWixCalendarV3ScheduleTimeFrameTypes.GetScheduleTimeFrameResponse\n> {\n const payload = { id: ':id' } as any;\n\n const getRequestOptions =\n ambassadorWixCalendarV3ScheduleTimeFrame.getScheduleTimeFrame(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v3/schedules/timeframe/{id}',\n pathParams: { id: 'id' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function listScheduleTimeFrames(): __PublicMethodMetaInfo<\n 'GET',\n {},\n ambassadorWixCalendarV3ScheduleTimeFrameUniversalTypes.ListScheduleTimeFramesRequest,\n ambassadorWixCalendarV3ScheduleTimeFrameTypes.ListScheduleTimeFramesRequest,\n ambassadorWixCalendarV3ScheduleTimeFrameUniversalTypes.ListScheduleTimeFramesResponse,\n ambassadorWixCalendarV3ScheduleTimeFrameTypes.ListScheduleTimeFramesResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixCalendarV3ScheduleTimeFrame.listScheduleTimeFrames(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v3/schedules/timeframe',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n"],"mappings":"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","names":["getScheduleTimeFrame","listScheduleTimeFrames","import_rest_modules","payload","getScheduleTimeFrame","listScheduleTimeFrames"]}
1
+ {"version":3,"sources":["../../meta.ts","../../src/calendar-v3-schedule-time-frame-schedule-time-frames.http.ts","../../src/calendar-v3-schedule-time-frame-schedule-time-frames.types.ts","../../src/calendar-v3-schedule-time-frame-schedule-time-frames.meta.ts"],"sourcesContent":["export * from './src/calendar-v3-schedule-time-frame-schedule-time-frames.meta.js';\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixCalendarScheduletimeframesV3ScheduleTimeFramesServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'api._api_base_domain_': [\n {\n srcPath: '/schedule-timeframes-3',\n destPath: '',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/_api/calendar/v3/schedules/timeframe',\n destPath: '/v3/schedules/timeframe',\n },\n ],\n _: [\n {\n srcPath: '/_api/calendar/v3/schedules/timeframe',\n destPath: '/v3/schedules/timeframe',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/_api/calendar/v3/schedules/timeframe',\n destPath: '/v3/schedules/timeframe',\n },\n ],\n 'www.wixapis.com': [\n {\n srcPath: '/calendar/v3/schedules/timeframe',\n destPath: '/v3/schedules/timeframe',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_calendar_schedule-time-frames';\n\n/** Retrieves a schedule time frame by schedule ID. */\nexport function getScheduleTimeFrame(\n payload: object\n): RequestOptionsFactory<any> {\n function __getScheduleTimeFrame({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.calendar.v3.schedule_time_frame',\n method: 'GET' as any,\n methodFqn:\n 'wix.calendar.scheduletimeframes.v3.ScheduleTimeFramesService.GetScheduleTimeFrame',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixCalendarScheduletimeframesV3ScheduleTimeFramesServiceUrl({\n protoPath: '/v3/schedules/timeframe/{id}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'scheduleTimeFrame.firstEventStartDate.utcDate' },\n { path: 'scheduleTimeFrame.lastEventEndDate.utcDate' },\n { path: 'scheduleTimeFrame.adjustedFirstEventStartDate.utcDate' },\n { path: 'scheduleTimeFrame.adjustedLastEventEndDate.utcDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __getScheduleTimeFrame;\n}\n\n/**\n * Retrieves a list of schedule time frames by schedule IDs.\n *\n *\n * Sorted by schedule ID in ascending order.\n */\nexport function listScheduleTimeFrames(\n payload: object\n): RequestOptionsFactory<any> {\n function __listScheduleTimeFrames({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.calendar.v3.schedule_time_frame',\n method: 'GET' as any,\n methodFqn:\n 'wix.calendar.scheduletimeframes.v3.ScheduleTimeFramesService.ListScheduleTimeFrames',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixCalendarScheduletimeframesV3ScheduleTimeFramesServiceUrl({\n protoPath: '/v3/schedules/timeframe',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'scheduleTimeFrames.firstEventStartDate.utcDate' },\n { path: 'scheduleTimeFrames.lastEventEndDate.utcDate' },\n {\n path: 'scheduleTimeFrames.adjustedFirstEventStartDate.utcDate',\n },\n { path: 'scheduleTimeFrames.adjustedLastEventEndDate.utcDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __listScheduleTimeFrames;\n}\n","/**\n * Information about the start and end dates of the first and last\n * [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction)\n * that belong to a [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction)\n * and whether any events follow an unlimited repetition pattern.\n */\nexport interface ScheduleTimeFrame {\n /**\n * ID of the [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object)\n * to which the time frame belongs.\n * @format GUID\n * @readonly\n */\n id?: string | null;\n /**\n * Information about the presence of recurring events within the schedule.\n *\n * Supported values:\n * + `NONE`: No [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object) are scheduled within the schedule.\n * + `FINITE`: All recurring events within the schedule have a defined end date, or there are no recurring events.\n * + `INFINITE`: At least one recurring event within the schedule has no end date, meaning it follows an unlimited repetition pattern.\n * @readonly\n */\n status?: StatusWithLiterals;\n /**\n * Start date of the first [event](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)\n * within the schedule. Identical to `event.start.localDate`. Available only if\n * `status` is set to `FINITE` or `INFINITE`.\n * @readonly\n */\n firstEventStartDate?: ZonedDate;\n /**\n * End date of the last [event](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)\n * belonging to the schedule. Identical to `event.end.localDate`. Available only if\n * `status` is set to `FINITE`.\n * @readonly\n */\n lastEventEndDate?: ZonedDate;\n /**\n * Start date of the first [event](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)\n * belonging to the schedule, adjusted to `timeZone` of the\n * [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/properties-object)\n * or the `timeZone` specified in the request.\n * Identical to `event.adjustedStart.localDate`.\n * @readonly\n */\n adjustedFirstEventStartDate?: ZonedDate;\n /**\n * End date of the last [event](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object)\n * belonging to the schedule, adjusted to `timeZone` of the\n * [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/properties-object)\n * or the `timeZone` specified in the request.\n * Identical to `event.adjustedEnd.localDate`.\n * @readonly\n */\n adjustedLastEventEndDate?: ZonedDate;\n /**\n * Revision number, which increments by 1 each time the schedule time frame is updated.\n * @readonly\n */\n revision?: string | null;\n}\n\nexport enum Status {\n UNKNOWN_STATUS = 'UNKNOWN_STATUS',\n /** No [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/event-object) that belong to the schedule. */\n NONE = 'NONE',\n /** There are no recurring events or all recurring events belonging to the schedule have a defined end date. */\n FINITE = 'FINITE',\n /** At least one recurring event belonging to the schedule has an unlimited repetition pattern (no end date). */\n INFINITE = 'INFINITE',\n}\n\n/** @enumType */\nexport type StatusWithLiterals =\n | Status\n | 'UNKNOWN_STATUS'\n | 'NONE'\n | 'FINITE'\n | 'INFINITE';\n\n/** A date time with a time zone, having the UTC offset and date determined by the server. */\nexport interface ZonedDate {\n /**\n * Local date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).\n * For example, `2024-01-30T13:30:00`.\n * Wix Calendar APIs ignore seconds.\n * @format LOCAL_DATE_TIME\n */\n localDate?: string | null;\n /**\n * Time zone in\n * [IANA tz database format](https://en.wikipedia.org/wiki/Tz_database).\n * For example, `America/New_York`.\n * @readonly\n */\n timeZone?: string | null;\n /**\n * UTC date time in [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).\n * For example, `2024-01-30T13:30:00`.\n * Not available for adjusted date fields.\n * @readonly\n */\n utcDate?: Date | null;\n}\n\nexport interface GetScheduleTimeFrameRequest {\n /**\n * [Schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/schedule-object)\n * ID for which to retrieve the schedule time frame.\n * @format GUID\n */\n id: string | null;\n /**\n * Time zone for adjusting the times of the returned schedule time frame.\n *\n * Default: `timeZone` of the [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/properties-object)\n */\n timeZone?: string | null;\n}\n\nexport interface GetScheduleTimeFrameResponse {\n /** Retrieved schedule time frame. */\n scheduleTimeFrame?: ScheduleTimeFrame;\n}\n\nexport interface ListScheduleTimeFramesRequest {\n /**\n * IDs of the schedules for which to retrieve schedule time frames.\n *\n * Min: 1 schedule ID\n * Max: 100 schedule IDs\n * @minSize 1\n * @maxSize 100\n * @format GUID\n */\n ids: string[];\n /**\n * Time zone for adjusting the times of the returned schedule time frames.\n *\n * Default: `timeZone` of the [site properties](https://dev.wix.com/docs/rest/business-management/site-properties/properties/properties-object)\n */\n timeZone?: string | null;\n}\n\nexport interface ListScheduleTimeFramesResponse {\n /** Retrieved schedule time frames. */\n scheduleTimeFrames?: ScheduleTimeFrame[];\n}\n\n/** Encapsulates all details written to the Greyhound topic when a site's properties are updated. */\nexport interface SitePropertiesNotification {\n /** The site ID for which this update notification applies. */\n metasiteId?: string;\n /** The actual update event. */\n event?: SitePropertiesEvent;\n /**\n * A convenience set of mappings from the MetaSite ID to its constituent services.\n * @maxSize 500\n */\n translations?: Translation[];\n /** Context of the notification */\n changeContext?: ChangeContext;\n}\n\n/** The actual update event for a particular notification. */\nexport interface SitePropertiesEvent {\n /** Version of the site's properties represented by this update. */\n version?: number;\n /** Set of properties that were updated - corresponds to the fields in \"properties\". */\n fields?: string[];\n /** Updated properties. */\n properties?: Properties;\n}\n\nexport interface Properties {\n /** Site categories. */\n categories?: Categories;\n /** Site locale. */\n locale?: Locale;\n /**\n * Site language.\n *\n * Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.\n */\n language?: string | null;\n /**\n * Site currency format used to bill customers.\n *\n * Three-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.\n */\n paymentCurrency?: string | null;\n /** Timezone in `America/New_York` format. */\n timeZone?: string | null;\n /** Email address. */\n email?: string | null;\n /** Phone number. */\n phone?: string | null;\n /** Fax number. */\n fax?: string | null;\n /** Address. */\n address?: Address;\n /** Site display name. */\n siteDisplayName?: string | null;\n /** Business name. */\n businessName?: string | null;\n /** Path to the site's logo in Wix Media (without Wix Media base URL). */\n logo?: string | null;\n /** Site description. */\n description?: string | null;\n /**\n * Business schedule. Regular and exceptional time periods when the business is open or the service is available.\n *\n * __Note:__ Not supported by Wix Bookings.\n */\n businessSchedule?: BusinessSchedule;\n /** Supported languages of a site and the primary language. */\n multilingual?: Multilingual;\n /** Cookie policy the Wix user defined for their site (before the site visitor interacts with/limits it). */\n consentPolicy?: ConsentPolicy;\n /**\n * Supported values: `FITNESS SERVICE`, `RESTAURANT`, `BLOG`, `STORE`, `EVENT`, `UNKNOWN`.\n *\n * Site business type.\n */\n businessConfig?: string | null;\n /** External site URL that uses Wix as its headless business solution. */\n externalSiteUrl?: string | null;\n /** Track clicks analytics. */\n trackClicksAnalytics?: boolean;\n}\n\nexport interface Categories {\n /** Primary site category. */\n primary?: string;\n /**\n * Secondary site category.\n * @maxSize 50\n */\n secondary?: string[];\n /** Business Term Id */\n businessTermId?: string | null;\n}\n\nexport interface Locale {\n /** Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. */\n languageCode?: string;\n /** Two-letter country code in [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) format. */\n country?: string;\n}\n\nexport interface Address {\n /** Street name. */\n street?: string;\n /** City name. */\n city?: string;\n /** Two-letter country code in an [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) format. */\n country?: string;\n /** State. */\n state?: string;\n /**\n * Zip or postal code.\n * @maxLength 20\n */\n zip?: string;\n /** Extra information to be displayed in the address. */\n hint?: AddressHint;\n /** Whether this address represents a physical location. */\n isPhysical?: boolean;\n /** Google-formatted version of this address. */\n googleFormattedAddress?: string;\n /** Street number. */\n streetNumber?: string;\n /** Apartment number. */\n apartmentNumber?: string;\n /** Geographic coordinates of location. */\n coordinates?: GeoCoordinates;\n}\n\n/**\n * Extra information on displayed addresses.\n * This is used for display purposes. Used to add additional data about the address, such as \"In the passage\".\n * Free text. In addition, the user can state where to display the additional description - before, after, or instead of the address string.\n */\nexport interface AddressHint {\n /** Extra text displayed next to, or instead of, the actual address. */\n text?: string;\n /** Where the extra text should be displayed. */\n placement?: PlacementTypeWithLiterals;\n}\n\n/** Where the extra text should be displayed: before, after or instead of the actual address. */\nexport enum PlacementType {\n BEFORE = 'BEFORE',\n AFTER = 'AFTER',\n REPLACE = 'REPLACE',\n}\n\n/** @enumType */\nexport type PlacementTypeWithLiterals =\n | PlacementType\n | 'BEFORE'\n | 'AFTER'\n | 'REPLACE';\n\n/** Geocoordinates for a particular address. */\nexport interface GeoCoordinates {\n /** Latitude of the location. Must be between -90 and 90. */\n latitude?: number;\n /** Longitude of the location. Must be between -180 and 180. */\n longitude?: number;\n}\n\n/** Business schedule. Regular and exceptional time periods when the business is open or the service is available. */\nexport interface BusinessSchedule {\n /**\n * Weekly recurring time periods when the business is regularly open or the service is available. Limited to 100 time periods.\n * @maxSize 100\n */\n periods?: TimePeriod[];\n /**\n * Exceptions to the business's regular hours. The business can be open or closed during the exception.\n * @maxSize 100\n */\n specialHourPeriod?: SpecialHourPeriod[];\n}\n\n/** Weekly recurring time periods when the business is regularly open or the service is available. */\nexport interface TimePeriod {\n /** Day of the week the period starts on. */\n openDay?: DayOfWeekWithLiterals;\n /**\n * Time the period starts in 24-hour [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) extended format. Valid values are `00:00` to `24:00`, where `24:00` represents\n * midnight at the end of the specified day.\n */\n openTime?: string;\n /** Day of the week the period ends on. */\n closeDay?: DayOfWeekWithLiterals;\n /**\n * Time the period ends in 24-hour [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) extended format. Valid values are `00:00` to `24:00`, where `24:00` represents\n * midnight at the end of the specified day.\n *\n * __Note:__ If `openDay` and `closeDay` specify the same day of the week `closeTime` must be later than `openTime`.\n */\n closeTime?: string;\n}\n\n/** Enumerates the days of the week. */\nexport enum DayOfWeek {\n MONDAY = 'MONDAY',\n TUESDAY = 'TUESDAY',\n WEDNESDAY = 'WEDNESDAY',\n THURSDAY = 'THURSDAY',\n FRIDAY = 'FRIDAY',\n SATURDAY = 'SATURDAY',\n SUNDAY = 'SUNDAY',\n}\n\n/** @enumType */\nexport type DayOfWeekWithLiterals =\n | DayOfWeek\n | 'MONDAY'\n | 'TUESDAY'\n | 'WEDNESDAY'\n | 'THURSDAY'\n | 'FRIDAY'\n | 'SATURDAY'\n | 'SUNDAY';\n\n/** Exception to the business's regular hours. The business can be open or closed during the exception. */\nexport interface SpecialHourPeriod {\n /** Start date and time of the exception in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format and [Coordinated Universal Time (UTC)](https://en.wikipedia.org/wiki/Coordinated_Universal_Time). */\n startDate?: string;\n /** End date and time of the exception in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format and [Coordinated Universal Time (UTC)](https://en.wikipedia.org/wiki/Coordinated_Universal_Time). */\n endDate?: string;\n /**\n * Whether the business is closed (or the service is not available) during the exception.\n *\n * Default: `true`.\n */\n isClosed?: boolean;\n /** Additional info about the exception. For example, \"We close earlier on New Year's Eve.\" */\n comment?: string;\n}\n\nexport interface Multilingual {\n /**\n * Supported languages list.\n * @maxSize 200\n */\n supportedLanguages?: SupportedLanguage[];\n /** Whether to redirect to user language. */\n autoRedirect?: boolean;\n}\n\nexport interface SupportedLanguage {\n /** Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. */\n languageCode?: string;\n /** Locale. */\n locale?: Locale;\n /** Whether the supported language is the primary language for the site. */\n isPrimary?: boolean;\n /** Language icon. */\n countryCode?: string;\n /** How the language will be resolved. For internal use. */\n resolutionMethod?: ResolutionMethodWithLiterals;\n /** Whether the supported language is the primary language for site visitors. */\n isVisitorPrimary?: boolean | null;\n}\n\nexport enum ResolutionMethod {\n QUERY_PARAM = 'QUERY_PARAM',\n SUBDOMAIN = 'SUBDOMAIN',\n SUBDIRECTORY = 'SUBDIRECTORY',\n}\n\n/** @enumType */\nexport type ResolutionMethodWithLiterals =\n | ResolutionMethod\n | 'QUERY_PARAM'\n | 'SUBDOMAIN'\n | 'SUBDIRECTORY';\n\nexport interface ConsentPolicy {\n /** Whether the site uses cookies that are essential to site operation. Always `true`. */\n essential?: boolean | null;\n /** Whether the site uses cookies that affect site performance and other functional measurements. */\n functional?: boolean | null;\n /** Whether the site uses cookies that collect analytics about how the site is used (in order to improve it). */\n analytics?: boolean | null;\n /** Whether the site uses cookies that collect information allowing better customization of the experience for a current visitor. */\n advertising?: boolean | null;\n /** CCPA compliance flag. */\n dataToThirdParty?: boolean | null;\n}\n\n/** A single mapping from the MetaSite ID to a particular service. */\nexport interface Translation {\n /** The service type. */\n serviceType?: string;\n /** The application definition ID; this only applies to services of type ThirdPartyApps. */\n appDefId?: string;\n /** The instance ID of the service. */\n instanceId?: string;\n}\n\nexport interface ChangeContext extends ChangeContextPayloadOneOf {\n /** Properties were updated. */\n propertiesChange?: PropertiesChange;\n /** Default properties were created on site creation. */\n siteCreated?: SiteCreated;\n /** Properties were cloned on site cloning. */\n siteCloned?: SiteCloned;\n}\n\n/** @oneof */\nexport interface ChangeContextPayloadOneOf {\n /** Properties were updated. */\n propertiesChange?: PropertiesChange;\n /** Default properties were created on site creation. */\n siteCreated?: SiteCreated;\n /** Properties were cloned on site cloning. */\n siteCloned?: SiteCloned;\n}\n\nexport interface PropertiesChange {}\n\nexport interface SiteCreated {\n /** Origin template site id. */\n originTemplateId?: string | null;\n}\n\nexport interface SiteCloned {\n /** Origin site id. */\n originMetaSiteId?: string;\n}\n\nexport interface Empty {}\n\nexport interface DomainEvent extends DomainEventBodyOneOf {\n createdEvent?: EntityCreatedEvent;\n updatedEvent?: EntityUpdatedEvent;\n deletedEvent?: EntityDeletedEvent;\n actionEvent?: ActionEvent;\n /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n id?: string;\n /**\n * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n */\n entityFqdn?: string;\n /**\n * Event action name, placed at the top level to make it easier for users to dispatch messages.\n * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n */\n slug?: string;\n /** ID of the entity associated with the event. */\n entityId?: string;\n /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n eventTime?: Date | null;\n /**\n * Whether the event was triggered as a result of a privacy regulation application\n * (for example, GDPR).\n */\n triggeredByAnonymizeRequest?: boolean | null;\n /** If present, indicates the action that triggered the event. */\n originatedFrom?: string | null;\n /**\n * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.\n * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.\n */\n entityEventSequence?: string | null;\n}\n\n/** @oneof */\nexport interface DomainEventBodyOneOf {\n createdEvent?: EntityCreatedEvent;\n updatedEvent?: EntityUpdatedEvent;\n deletedEvent?: EntityDeletedEvent;\n actionEvent?: ActionEvent;\n}\n\nexport interface EntityCreatedEvent {\n entityAsJson?: string;\n /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */\n restoreInfo?: RestoreInfo;\n}\n\nexport interface RestoreInfo {\n deletedDate?: Date | null;\n}\n\nexport interface EntityUpdatedEvent {\n /**\n * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.\n * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.\n * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.\n */\n currentEntityAsJson?: string;\n}\n\nexport interface EntityDeletedEvent {\n /** Entity that was deleted. */\n deletedEntityAsJson?: string | null;\n}\n\nexport interface ActionEvent {\n bodyAsJson?: string;\n}\n\nexport interface MessageEnvelope {\n /**\n * App instance ID.\n * @format GUID\n */\n instanceId?: string | null;\n /**\n * Event type.\n * @maxLength 150\n */\n eventType?: string;\n /** The identification type and identity data. */\n identity?: IdentificationData;\n /** Stringify payload. */\n data?: string;\n}\n\nexport interface IdentificationData extends IdentificationDataIdOneOf {\n /**\n * ID of a site visitor that has not logged in to the site.\n * @format GUID\n */\n anonymousVisitorId?: string;\n /**\n * ID of a site visitor that has logged in to the site.\n * @format GUID\n */\n memberId?: string;\n /**\n * ID of a Wix user (site owner, contributor, etc.).\n * @format GUID\n */\n wixUserId?: string;\n /**\n * ID of an app.\n * @format GUID\n */\n appId?: string;\n /** @readonly */\n identityType?: WebhookIdentityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IdentificationDataIdOneOf {\n /**\n * ID of a site visitor that has not logged in to the site.\n * @format GUID\n */\n anonymousVisitorId?: string;\n /**\n * ID of a site visitor that has logged in to the site.\n * @format GUID\n */\n memberId?: string;\n /**\n * ID of a Wix user (site owner, contributor, etc.).\n * @format GUID\n */\n wixUserId?: string;\n /**\n * ID of an app.\n * @format GUID\n */\n appId?: string;\n}\n\nexport enum WebhookIdentityType {\n UNKNOWN = 'UNKNOWN',\n ANONYMOUS_VISITOR = 'ANONYMOUS_VISITOR',\n MEMBER = 'MEMBER',\n WIX_USER = 'WIX_USER',\n APP = 'APP',\n}\n\n/** @enumType */\nexport type WebhookIdentityTypeWithLiterals =\n | WebhookIdentityType\n | 'UNKNOWN'\n | 'ANONYMOUS_VISITOR'\n | 'MEMBER'\n | 'WIX_USER'\n | 'APP';\n","import * as ambassadorWixCalendarV3ScheduleTimeFrame from './calendar-v3-schedule-time-frame-schedule-time-frames.http.js';\nimport * as ambassadorWixCalendarV3ScheduleTimeFrameTypes from './calendar-v3-schedule-time-frame-schedule-time-frames.types.js';\nimport * as ambassadorWixCalendarV3ScheduleTimeFrameUniversalTypes from './calendar-v3-schedule-time-frame-schedule-time-frames.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function getScheduleTimeFrame(): __PublicMethodMetaInfo<\n 'GET',\n { id: string },\n ambassadorWixCalendarV3ScheduleTimeFrameUniversalTypes.GetScheduleTimeFrameRequest,\n ambassadorWixCalendarV3ScheduleTimeFrameTypes.GetScheduleTimeFrameRequest,\n ambassadorWixCalendarV3ScheduleTimeFrameUniversalTypes.GetScheduleTimeFrameResponse,\n ambassadorWixCalendarV3ScheduleTimeFrameTypes.GetScheduleTimeFrameResponse\n> {\n const payload = { id: ':id' } as any;\n\n const getRequestOptions =\n ambassadorWixCalendarV3ScheduleTimeFrame.getScheduleTimeFrame(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v3/schedules/timeframe/{id}',\n pathParams: { id: 'id' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function listScheduleTimeFrames(): __PublicMethodMetaInfo<\n 'GET',\n {},\n ambassadorWixCalendarV3ScheduleTimeFrameUniversalTypes.ListScheduleTimeFramesRequest,\n ambassadorWixCalendarV3ScheduleTimeFrameTypes.ListScheduleTimeFramesRequest,\n ambassadorWixCalendarV3ScheduleTimeFrameUniversalTypes.ListScheduleTimeFramesResponse,\n ambassadorWixCalendarV3ScheduleTimeFrameTypes.ListScheduleTimeFramesResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixCalendarV3ScheduleTimeFrame.listScheduleTimeFrames(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v3/schedules/timeframe',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport {\n ScheduleTimeFrame as ScheduleTimeFrameOriginal,\n Status as StatusOriginal,\n StatusWithLiterals as StatusWithLiteralsOriginal,\n ZonedDate as ZonedDateOriginal,\n GetScheduleTimeFrameRequest as GetScheduleTimeFrameRequestOriginal,\n GetScheduleTimeFrameResponse as GetScheduleTimeFrameResponseOriginal,\n ListScheduleTimeFramesRequest as ListScheduleTimeFramesRequestOriginal,\n ListScheduleTimeFramesResponse as ListScheduleTimeFramesResponseOriginal,\n SitePropertiesNotification as SitePropertiesNotificationOriginal,\n SitePropertiesEvent as SitePropertiesEventOriginal,\n Properties as PropertiesOriginal,\n Categories as CategoriesOriginal,\n Locale as LocaleOriginal,\n Address as AddressOriginal,\n AddressHint as AddressHintOriginal,\n PlacementType as PlacementTypeOriginal,\n PlacementTypeWithLiterals as PlacementTypeWithLiteralsOriginal,\n GeoCoordinates as GeoCoordinatesOriginal,\n BusinessSchedule as BusinessScheduleOriginal,\n TimePeriod as TimePeriodOriginal,\n DayOfWeek as DayOfWeekOriginal,\n DayOfWeekWithLiterals as DayOfWeekWithLiteralsOriginal,\n SpecialHourPeriod as SpecialHourPeriodOriginal,\n Multilingual as MultilingualOriginal,\n SupportedLanguage as SupportedLanguageOriginal,\n ResolutionMethod as ResolutionMethodOriginal,\n ResolutionMethodWithLiterals as ResolutionMethodWithLiteralsOriginal,\n ConsentPolicy as ConsentPolicyOriginal,\n Translation as TranslationOriginal,\n ChangeContext as ChangeContextOriginal,\n ChangeContextPayloadOneOf as ChangeContextPayloadOneOfOriginal,\n PropertiesChange as PropertiesChangeOriginal,\n SiteCreated as SiteCreatedOriginal,\n SiteCloned as SiteClonedOriginal,\n Empty as EmptyOriginal,\n DomainEvent as DomainEventOriginal,\n DomainEventBodyOneOf as DomainEventBodyOneOfOriginal,\n EntityCreatedEvent as EntityCreatedEventOriginal,\n RestoreInfo as RestoreInfoOriginal,\n EntityUpdatedEvent as EntityUpdatedEventOriginal,\n EntityDeletedEvent as EntityDeletedEventOriginal,\n ActionEvent as ActionEventOriginal,\n MessageEnvelope as MessageEnvelopeOriginal,\n IdentificationData as IdentificationDataOriginal,\n IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal,\n WebhookIdentityType as WebhookIdentityTypeOriginal,\n WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal,\n} from './calendar-v3-schedule-time-frame-schedule-time-frames.types.js';\n"],"mappings":"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","names":["getScheduleTimeFrame","listScheduleTimeFrames","import_rest_modules","payload","Status","PlacementType","DayOfWeek","ResolutionMethod","WebhookIdentityType","getScheduleTimeFrame","listScheduleTimeFrames"]}