@vrplatform/api 1.3.1-stage.2540 → 1.3.1-stage.2541

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.
@@ -1006,7 +1006,7 @@ export interface paths {
1006
1006
  patch?: never;
1007
1007
  trace?: never;
1008
1008
  };
1009
- "/internal/booking-channels/bulk-set-icon": {
1009
+ "/internal/booking-channels/bulk-set-assets": {
1010
1010
  parameters: {
1011
1011
  query?: never;
1012
1012
  header?: never;
@@ -1015,8 +1015,8 @@ export interface paths {
1015
1015
  };
1016
1016
  get?: never;
1017
1017
  put?: never;
1018
- /** @description Copy the current selected icon from one booking channel to many target booking channels */
1019
- post: operations["postInternalBookingChannelsBulkSetIcon"];
1018
+ /** @description Copy the current selected icon or logo from one booking channel to many target booking channels */
1019
+ post: operations["postInternalBookingChannelsBulkSetAssets"];
1020
1020
  delete?: never;
1021
1021
  options?: never;
1022
1022
  head?: never;
@@ -15358,7 +15358,7 @@ export interface operations {
15358
15358
  };
15359
15359
  };
15360
15360
  };
15361
- postInternalBookingChannelsBulkSetIcon: {
15361
+ postInternalBookingChannelsBulkSetAssets: {
15362
15362
  parameters: {
15363
15363
  query?: never;
15364
15364
  header?: never;
@@ -15371,6 +15371,8 @@ export interface operations {
15371
15371
  /** Format: uuid */
15372
15372
  sourceBookingChannelId: string;
15373
15373
  targetBookingChannelIds: string[];
15374
+ /** @enum {string} */
15375
+ type: "icon" | "logo";
15374
15376
  };
15375
15377
  };
15376
15378
  };
@@ -15384,6 +15386,8 @@ export interface operations {
15384
15386
  "application/json": {
15385
15387
  /** Format: uuid */
15386
15388
  sourceBookingChannelId: string;
15389
+ /** @enum {string} */
15390
+ type: "icon" | "logo";
15387
15391
  successes: {
15388
15392
  /** Format: uuid */
15389
15393
  bookingChannelId: string;