@vrplatform/api 1.3.1-stage.2539 → 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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-stage.2539",
6
+ "version": "1.3.1-stage.2541",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1007,7 +1007,7 @@ export interface paths {
1007
1007
  patch?: never;
1008
1008
  trace?: never;
1009
1009
  };
1010
- "/internal/booking-channels/bulk-set-icon": {
1010
+ "/internal/booking-channels/bulk-set-assets": {
1011
1011
  parameters: {
1012
1012
  query?: never;
1013
1013
  header?: never;
@@ -1016,8 +1016,8 @@ export interface paths {
1016
1016
  };
1017
1017
  get?: never;
1018
1018
  put?: never;
1019
- /** @description Copy the current selected icon from one booking channel to many target booking channels */
1020
- post: operations["postInternalBookingChannelsBulkSetIcon"];
1019
+ /** @description Copy the current selected icon or logo from one booking channel to many target booking channels */
1020
+ post: operations["postInternalBookingChannelsBulkSetAssets"];
1021
1021
  delete?: never;
1022
1022
  options?: never;
1023
1023
  head?: never;
@@ -15359,7 +15359,7 @@ export interface operations {
15359
15359
  };
15360
15360
  };
15361
15361
  };
15362
- postInternalBookingChannelsBulkSetIcon: {
15362
+ postInternalBookingChannelsBulkSetAssets: {
15363
15363
  parameters: {
15364
15364
  query?: never;
15365
15365
  header?: never;
@@ -15372,6 +15372,8 @@ export interface operations {
15372
15372
  /** Format: uuid */
15373
15373
  sourceBookingChannelId: string;
15374
15374
  targetBookingChannelIds: string[];
15375
+ /** @enum {string} */
15376
+ type: "icon" | "logo";
15375
15377
  };
15376
15378
  };
15377
15379
  };
@@ -15385,6 +15387,8 @@ export interface operations {
15385
15387
  "application/json": {
15386
15388
  /** Format: uuid */
15387
15389
  sourceBookingChannelId: string;
15390
+ /** @enum {string} */
15391
+ type: "icon" | "logo";
15388
15392
  successes: {
15389
15393
  /** Format: uuid */
15390
15394
  bookingChannelId: string;