@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.
@@ -350,19 +350,17 @@ interface Location {
350
350
  * @maxLength 512
351
351
  */
352
352
  formattedAddressTranslated?: string | null;
353
- /**
354
- * Location type.
355
- *
356
- * - `"OWNER_BUSINESS"`: The business address, as set in the site’s general settings.
357
- * - `"OWNER_CUSTOM"`: The address as set when creating the service.
358
- * - `"CUSTOM"`: The address as set for the individual session.
359
- */
353
+ /** Location type. */
360
354
  locationType?: LocationTypeWithLiterals;
361
355
  }
362
356
  declare enum LocationType {
357
+ /** Undefined location type. */
363
358
  UNDEFINED = "UNDEFINED",
359
+ /** The business address, as set in the site’s general settings. */
364
360
  OWNER_BUSINESS = "OWNER_BUSINESS",
361
+ /** The address as set when creating the service. */
365
362
  OWNER_CUSTOM = "OWNER_CUSTOM",
363
+ /** The address as set for the individual session. */
366
364
  CUSTOM = "CUSTOM"
367
365
  }
368
366
  /** @enumType */