@wix/auto_sdk_bookings_bookings 1.0.98 → 1.0.99

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.
@@ -339,19 +339,17 @@ interface Location {
339
339
  * @maxLength 512
340
340
  */
341
341
  formattedAddressTranslated?: string | null;
342
- /**
343
- * Location type.
344
- *
345
- * - `"OWNER_BUSINESS"`: The business address, as set in the site’s general settings.
346
- * - `"OWNER_CUSTOM"`: The address as set when creating the service.
347
- * - `"CUSTOM"`: The address as set for the individual session.
348
- */
342
+ /** Location type. */
349
343
  locationType?: LocationTypeWithLiterals;
350
344
  }
351
345
  declare enum LocationType {
346
+ /** Undefined location type. */
352
347
  UNDEFINED = "UNDEFINED",
348
+ /** The business address, as set in the site’s general settings. */
353
349
  OWNER_BUSINESS = "OWNER_BUSINESS",
350
+ /** The address as set when creating the service. */
354
351
  OWNER_CUSTOM = "OWNER_CUSTOM",
352
+ /** The address as set for the individual session. */
355
353
  CUSTOM = "CUSTOM"
356
354
  }
357
355
  /** @enumType */