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