@wix/pro-gallery 1.0.46 → 1.0.47

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/pro-gallery",
3
- "version": "1.0.46",
3
+ "version": "1.0.47",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,7 +18,7 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/pro-gallery_pro-gallery": "1.0.17"
21
+ "@wix/pro-gallery_pro-gallery": "1.0.18"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@wix/sdk": "https://cdn.dev.wixpress.com/@wix/sdk/02e8069ab2fd783e0e6a080fc7d590e76cb26ab93c8389574286305b.tar.gz",
@@ -43,5 +43,5 @@
43
43
  "fqdn": ""
44
44
  }
45
45
  },
46
- "falconPackageHash": "163d3232b41f20449d0c499b9158214fce34d4aea48af117cc95aa4e"
46
+ "falconPackageHash": "4c04f0bae4241abd438d839cac0e280b0ca4a26506932ab9f4658318"
47
47
  }
@@ -155,7 +155,7 @@ interface Text {
155
155
  /**
156
156
  * Set of key-value pairs describing the [CSS style](https://en.wikipedia.org/wiki/CSS) of the text.
157
157
  *
158
- * __Note:__ The object structure is customizable. See the [List Gallery Items](https://dev.wix.com/api/rest/site-content/pro-gallery/list-gallery-items) code example for supported values.
158
+ * __Note:__ The object structure is customizable. See the [`listGalleryItems()`](/pro-gallery/list-gallery-items) code example for supported values.
159
159
  */
160
160
  css?: Record<string, any> | null;
161
161
  /** Reserved for internal use. */
@@ -352,15 +352,15 @@ interface GalleryItemDeletedEnvelope {
352
352
  metadata: EventMetadata;
353
353
  }
354
354
  interface ListGalleriesOptions {
355
- /** Number of galleries to list. Defaults to 10. */
355
+ /** Number of galleries to list. Defaults to `10`. */
356
356
  itemLimit?: number | null;
357
- /** Number of galleries to skip in the returns. Defaults to 0. */
357
+ /** Number of galleries to skip in the returns. Defaults to `0`. */
358
358
  offset?: number | null;
359
- /** Number of galleries to list. Defaults to 10. */
359
+ /** Number of galleries to list. Defaults to `10`. */
360
360
  limit?: number | null;
361
361
  }
362
362
  interface GetGalleryOptions extends GetGalleryRequestVersionOneOf {
363
- /** Number of media items to skip in the returns. Defaults to 0. */
363
+ /** Number of media items to skip in the returns. Defaults to `0`. */
364
364
  itemOffset?: number | null;
365
365
  /**
366
366
  * Maximum number of media items to return. <br />
@@ -372,7 +372,7 @@ interface GetGalleryOptions extends GetGalleryRequestVersionOneOf {
372
372
  itemLimit?: number | null;
373
373
  }
374
374
  interface ListGalleryItemsOptions {
375
- /** Number of media items to skip in the returns. Defaults to 0. */
375
+ /** Number of media items to skip in the returns. Defaults to `0`. */
376
376
  itemOffset?: number | null;
377
377
  /**
378
378
  * Maximum number of media items to return. <br />
@@ -321,7 +321,7 @@ interface Text {
321
321
  /**
322
322
  * Set of key-value pairs describing the [CSS style](https://en.wikipedia.org/wiki/CSS) of the text.
323
323
  *
324
- * __Note:__ The object structure is customizable. See the [List Gallery Items](https://dev.wix.com/api/rest/site-content/pro-gallery/list-gallery-items) code example for supported values.
324
+ * __Note:__ The object structure is customizable. See the [`listGalleryItems()`](/pro-gallery/list-gallery-items) code example for supported values.
325
325
  */
326
326
  css?: Record<string, any> | null;
327
327
  /** Reserved for internal use. */
@@ -735,11 +735,11 @@ interface GalleryItemDeleted {
735
735
  itemId?: string;
736
736
  }
737
737
  interface ListGalleriesRequest {
738
- /** Number of galleries to list. Defaults to 10. */
738
+ /** Number of galleries to list. Defaults to `10`. */
739
739
  itemLimit?: number | null;
740
- /** Number of galleries to skip in the returns. Defaults to 0. */
740
+ /** Number of galleries to skip in the returns. Defaults to `0`. */
741
741
  offset?: number | null;
742
- /** Number of galleries to list. Defaults to 10. */
742
+ /** Number of galleries to list. Defaults to `10`. */
743
743
  limit?: number | null;
744
744
  }
745
745
  declare enum State {
@@ -758,7 +758,7 @@ interface ListGalleriesResponse {
758
758
  interface GetGalleryRequest extends GetGalleryRequestVersionOneOf {
759
759
  /** Gallery ID. */
760
760
  galleryId: string;
761
- /** Number of media items to skip in the returns. Defaults to 0. */
761
+ /** Number of media items to skip in the returns. Defaults to `0`. */
762
762
  itemOffset?: number | null;
763
763
  /**
764
764
  * Maximum number of media items to return. <br />
@@ -779,7 +779,7 @@ interface GetGalleryResponse {
779
779
  interface ListGalleryItemsRequest {
780
780
  /** Gallery ID. */
781
781
  galleryId: string;
782
- /** Number of media items to skip in the returns. Defaults to 0. */
782
+ /** Number of media items to skip in the returns. Defaults to `0`. */
783
783
  itemOffset?: number | null;
784
784
  /**
785
785
  * Maximum number of media items to return. <br />
@@ -1130,15 +1130,15 @@ interface GalleryItemDeletedEnvelope {
1130
1130
  metadata: EventMetadata;
1131
1131
  }
1132
1132
  interface ListGalleriesOptions {
1133
- /** Number of galleries to list. Defaults to 10. */
1133
+ /** Number of galleries to list. Defaults to `10`. */
1134
1134
  itemLimit?: number | null;
1135
- /** Number of galleries to skip in the returns. Defaults to 0. */
1135
+ /** Number of galleries to skip in the returns. Defaults to `0`. */
1136
1136
  offset?: number | null;
1137
- /** Number of galleries to list. Defaults to 10. */
1137
+ /** Number of galleries to list. Defaults to `10`. */
1138
1138
  limit?: number | null;
1139
1139
  }
1140
1140
  interface GetGalleryOptions extends GetGalleryRequestVersionOneOf {
1141
- /** Number of media items to skip in the returns. Defaults to 0. */
1141
+ /** Number of media items to skip in the returns. Defaults to `0`. */
1142
1142
  itemOffset?: number | null;
1143
1143
  /**
1144
1144
  * Maximum number of media items to return. <br />
@@ -1150,7 +1150,7 @@ interface GetGalleryOptions extends GetGalleryRequestVersionOneOf {
1150
1150
  itemLimit?: number | null;
1151
1151
  }
1152
1152
  interface ListGalleryItemsOptions {
1153
- /** Number of media items to skip in the returns. Defaults to 0. */
1153
+ /** Number of media items to skip in the returns. Defaults to `0`. */
1154
1154
  itemOffset?: number | null;
1155
1155
  /**
1156
1156
  * Maximum number of media items to return. <br />
@@ -1416,7 +1416,7 @@ interface Text {
1416
1416
  /**
1417
1417
  * Set of key-value pairs describing the [CSS style](https://en.wikipedia.org/wiki/CSS) of the text.
1418
1418
  *
1419
- * __Note:__ The object structure is customizable. See the [List Gallery Items](https://dev.wix.com/api/rest/site-content/pro-gallery/list-gallery-items) code example for supported values.
1419
+ * __Note:__ The object structure is customizable. See the [`listGalleryItems()`](/pro-gallery/list-gallery-items) code example for supported values.
1420
1420
  */
1421
1421
  css?: Record<string, any> | null;
1422
1422
  /** Reserved for internal use. */
@@ -1429,11 +1429,11 @@ interface Tags {
1429
1429
  values?: string[];
1430
1430
  }
1431
1431
  interface ListGalleriesRequest {
1432
- /** Number of galleries to list. Defaults to 10. */
1432
+ /** Number of galleries to list. Defaults to `10`. */
1433
1433
  itemLimit?: number | null;
1434
- /** Number of galleries to skip in the returns. Defaults to 0. */
1434
+ /** Number of galleries to skip in the returns. Defaults to `0`. */
1435
1435
  offset?: number | null;
1436
- /** Number of galleries to list. Defaults to 10. */
1436
+ /** Number of galleries to list. Defaults to `10`. */
1437
1437
  limit?: number | null;
1438
1438
  }
1439
1439
  interface ListGalleriesResponse {
@@ -1445,7 +1445,7 @@ interface ListGalleriesResponse {
1445
1445
  interface GetGalleryRequest extends GetGalleryRequestVersionOneOf {
1446
1446
  /** Gallery ID. */
1447
1447
  galleryId: string;
1448
- /** Number of media items to skip in the returns. Defaults to 0. */
1448
+ /** Number of media items to skip in the returns. Defaults to `0`. */
1449
1449
  itemOffset?: number | null;
1450
1450
  /**
1451
1451
  * Maximum number of media items to return. <br />
@@ -1466,7 +1466,7 @@ interface GetGalleryResponse {
1466
1466
  interface ListGalleryItemsRequest {
1467
1467
  /** Gallery ID. */
1468
1468
  galleryId: string;
1469
- /** Number of media items to skip in the returns. Defaults to 0. */
1469
+ /** Number of media items to skip in the returns. Defaults to `0`. */
1470
1470
  itemOffset?: number | null;
1471
1471
  /**
1472
1472
  * Maximum number of media items to return. <br />