@wix/bookings 1.0.423 → 1.0.425

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.
@@ -19547,17 +19547,17 @@ interface ConfirmBookingResponse {
19547
19547
  booking?: Booking$2;
19548
19548
  }
19549
19549
  interface UpdateExtendedFieldsRequest {
19550
- /** ID of the entity to update. */
19550
+ /** ID of the booking for which to update extended fields. */
19551
19551
  _id: string;
19552
- /** Identifier for the app whose extended fields are being updated. */
19552
+ /** [Namespace](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-reading-and-writing-schema-plugin-fields#namespaces) of the app for which to update extended fields. */
19553
19553
  namespace: string;
19554
- /** Data to update. Structured according to the [schema](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields#json-schema-for-extended-fields) defined when the extended fields were configured. */
19554
+ /** Data of the extended field to update. Must be structured according to the [schema](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions#json-schema-for-extended-fields) defined during the configuration of the extended fields. */
19555
19555
  namespaceData: Record<string, any> | null;
19556
19556
  }
19557
19557
  interface UpdateExtendedFieldsResponse {
19558
- /** Identifier for the app whose extended field data was updated. */
19558
+ /** [Namespace](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-reading-and-writing-schema-plugin-fields#namespaces) of the app for which the extended fields were updated. */
19559
19559
  namespace?: string;
19560
- /** Updated data. */
19560
+ /** Updated data of the extended fields. */
19561
19561
  namespaceData?: Record<string, any> | null;
19562
19562
  }
19563
19563
  interface DeclineBookingRequest {