@wix/pro-gallery 1.0.26 → 1.0.28

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.
@@ -33,14 +33,18 @@ export declare function getGalleryItem(payload: GetGalleryItemRequest): RequestO
33
33
  *
34
34
  * The newly-created gallery is only available on your backend, and doesn't appear on your live site. To display your backend gallery on your live site, you need to connect it to a gallery component on your live site. To do this, import the `createGallery()` function to your page code, and write code to convert the backend gallery object to the frontend gallery component object. Once converted, the newly created backend gallery is visible on your live site. For reference, check out the code example, "Create a gallery and display it on your live site". To learn more, see [Displaying a Pro Gallery on Your Site Using the Pro Gallery Backend API](https://support.wix.com/en/article/velo-tutorial-displaying-a-pro-gallery-on-your-site-using-the-pro-gallery-backend-api).
35
35
  *
36
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can create a gallery. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
37
- *
38
36
  * <blockquote class="important">
39
37
  *
40
38
  * __Important:__
41
39
  * When creating `image` items in your gallery, the images must be uploaded to the [Wix Media Manager](https://support.wix.com/en/article/wix-media-uploading-media-to-the-media-manager) first as the `imageInfo` parameter currently only supports the Wix media URL.
42
40
  *
43
41
  * </blockquote>
42
+ *
43
+ * #### Override permissions
44
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
45
+ * <blockquote class='warning'>
46
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
47
+ * </blockquote>
44
48
  */
45
49
  export declare function createGallery(payload: CreateGalleryRequest): RequestOptionsFactory<CreateGalleryResponse>;
46
50
  /**
@@ -48,14 +52,18 @@ export declare function createGallery(payload: CreateGalleryRequest): RequestOpt
48
52
  *
49
53
  * The `updateGallery()` function returns a Promise that resolves to an updated gallery. Only the fields in the `gallery` object parameter can be updated. Specify which fields to update. Unspecified fields remain the same.
50
54
  *
51
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can update a gallery. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
52
- *
53
55
  * <blockquote class="important">
54
56
  *
55
57
  * __Important:__
56
58
  * When updating `image` items in your gallery, the images must be uploaded to the [Wix Media Manager](https://support.wix.com/en/article/wix-media-uploading-media-to-the-media-manager) first as the `imageInfo` parameter currently only supports the Wix media URL.
57
59
  *
58
60
  * </blockquote>
61
+ *
62
+ * #### Override permissions
63
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
64
+ * <blockquote class='warning'>
65
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
66
+ * </blockquote>
59
67
  */
60
68
  export declare function updateGallery(payload: UpdateGalleryRequest): RequestOptionsFactory<UpdateGalleryResponse>;
61
69
  /**
@@ -63,8 +71,11 @@ export declare function updateGallery(payload: UpdateGalleryRequest): RequestOpt
63
71
  *
64
72
  * The `deleteGallery()` function returns a Promise that resolves to the ID of the deleted gallery. When a gallery is deleted, the deleted gallery is no longer returned when calling the [`listGalleries()`](#listgalleries) function.
65
73
  *
66
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can delete a gallery. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
67
- *
74
+ * #### Override permissions
75
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
76
+ * <blockquote class='warning'>
77
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
78
+ * </blockquote>
68
79
  */
69
80
  export declare function deleteGallery(payload: DeleteGalleryRequest): RequestOptionsFactory<DeleteGalleryResponse>;
70
81
  /**
@@ -72,14 +83,18 @@ export declare function deleteGallery(payload: DeleteGalleryRequest): RequestOpt
72
83
  *
73
84
  * The `createGalleryItem()` function returns a Promise that resolves to a newly-created gallery item after it has successfully been created.
74
85
  *
75
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can create a gallery item. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
76
- *
77
86
  * <blockquote class="important">
78
87
  *
79
88
  * __Important:__
80
89
  * When creating `image` items in your gallery, the images must be uploaded to the [Wix Media Manager](https://support.wix.com/en/article/wix-media-uploading-media-to-the-media-manager) first as the `imageInfo` parameter currently only supports the Wix media URL.
81
90
  *
82
91
  * </blockquote>
92
+ *
93
+ * #### Override permissions
94
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
95
+ * <blockquote class='warning'>
96
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
97
+ * </blockquote>
83
98
  */
84
99
  export declare function createGalleryItem(payload: CreateGalleryItemRequest): RequestOptionsFactory<CreateGalleryItemResponse>;
85
100
  /**
@@ -87,14 +102,18 @@ export declare function createGalleryItem(payload: CreateGalleryItemRequest): Re
87
102
  *
88
103
  * The `updateGalleryItem()` function returns a Promise that resolves to an updated gallery item. Only the fields in the `item` object parameter can be updated. Specify which fields to update. Unspecified fields remain the same.
89
104
  *
90
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can update a gallery item. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
91
- *
92
105
  * <blockquote class="important">
93
106
  *
94
107
  * __Important:__
95
108
  * When updating `image` items in your gallery, the images must be uploaded to the [Wix Media Manager](https://support.wix.com/en/article/wix-media-uploading-media-to-the-media-manager) first as the `imageInfo` parameter currently only supports the Wix media URL.
96
109
  *
97
110
  * </blockquote>
111
+ *
112
+ * #### Override permissions
113
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
114
+ * <blockquote class='warning'>
115
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
116
+ * </blockquote>
98
117
  */
99
118
  export declare function updateGalleryItem(payload: UpdateGalleryItemRequest): RequestOptionsFactory<UpdateGalleryItemResponse>;
100
119
  /**
@@ -102,6 +121,10 @@ export declare function updateGalleryItem(payload: UpdateGalleryItemRequest): Re
102
121
  *
103
122
  * The `deleteGalleryItem()` function returns a Promise that resolves to the ID of the deleted gallery item. When a gallery item is deleted, the deleted gallery item is no longer returned when calling the [`listGalleryItems()`](#listgalleryitems) function.
104
123
  *
105
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can delete a gallery item. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
124
+ * #### Override permissions
125
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
126
+ * <blockquote class='warning'>
127
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
128
+ * </blockquote>
106
129
  */
107
130
  export declare function deleteGalleryItem(payload: DeleteGalleryItemRequest): RequestOptionsFactory<DeleteGalleryItemResponse>;
@@ -28,9 +28,9 @@ const _item = {
28
28
  sortOrder: 'google.protobuf.DoubleValue',
29
29
  createdDate: 'google.protobuf.Timestamp',
30
30
  updatedDate: 'google.protobuf.Timestamp',
31
- secondaryMedia: '_secondaryMedia',
32
31
  image: '_image',
33
32
  video: '_video',
33
+ secondaryMedia: '_secondaryMedia',
34
34
  };
35
35
  const _listGalleriesRequest = { fields: 'google.protobuf.FieldMask' };
36
36
  const _listGalleriesResponse = { galleries: '_gallery' };
@@ -141,7 +141,9 @@ export function listGalleries(payload) {
141
141
  function __listGalleries({ host }) {
142
142
  const serializedData = toReq(payload);
143
143
  const metadata = {
144
+ entityFqdn: 'wix.pro_gallery.v2.gallery',
144
145
  method: 'GET',
146
+ methodFqn: 'com.wixpress.exposure.progallery.ProGallery.ListGalleries',
145
147
  url: resolveComWixpressExposureProgalleryProGalleryUrl({
146
148
  protoPath: '/v2/galleries',
147
149
  data: serializedData,
@@ -177,7 +179,9 @@ export function getGallery(payload) {
177
179
  function __getGallery({ host }) {
178
180
  const serializedData = toReq(payload);
179
181
  const metadata = {
182
+ entityFqdn: 'wix.pro_gallery.v2.gallery',
180
183
  method: 'GET',
184
+ methodFqn: 'com.wixpress.exposure.progallery.ProGallery.GetGallery',
181
185
  url: resolveComWixpressExposureProgalleryProGalleryUrl({
182
186
  protoPath: '/v2/galleries/{galleryId}',
183
187
  data: serializedData,
@@ -212,7 +216,9 @@ export function listGalleryItems(payload) {
212
216
  function __listGalleryItems({ host }) {
213
217
  const serializedData = toReq(payload);
214
218
  const metadata = {
219
+ entityFqdn: 'wix.pro_gallery.v2.gallery',
215
220
  method: 'GET',
221
+ methodFqn: 'com.wixpress.exposure.progallery.ProGallery.ListGalleryItems',
216
222
  url: resolveComWixpressExposureProgalleryProGalleryUrl({
217
223
  protoPath: '/v2/galleries/{galleryId}/items',
218
224
  data: serializedData,
@@ -247,7 +253,9 @@ export function getGalleryItem(payload) {
247
253
  function __getGalleryItem({ host }) {
248
254
  const serializedData = toReq(payload);
249
255
  const metadata = {
256
+ entityFqdn: 'wix.pro_gallery.v2.gallery',
250
257
  method: 'GET',
258
+ methodFqn: 'com.wixpress.exposure.progallery.ProGallery.GetGalleryItem',
251
259
  url: resolveComWixpressExposureProgalleryProGalleryUrl({
252
260
  protoPath: '/v2/galleries/{galleryId}/items/{itemId}',
253
261
  data: serializedData,
@@ -270,14 +278,18 @@ export function getGalleryItem(payload) {
270
278
  *
271
279
  * The newly-created gallery is only available on your backend, and doesn't appear on your live site. To display your backend gallery on your live site, you need to connect it to a gallery component on your live site. To do this, import the `createGallery()` function to your page code, and write code to convert the backend gallery object to the frontend gallery component object. Once converted, the newly created backend gallery is visible on your live site. For reference, check out the code example, "Create a gallery and display it on your live site". To learn more, see [Displaying a Pro Gallery on Your Site Using the Pro Gallery Backend API](https://support.wix.com/en/article/velo-tutorial-displaying-a-pro-gallery-on-your-site-using-the-pro-gallery-backend-api).
272
280
  *
273
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can create a gallery. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
274
- *
275
281
  * <blockquote class="important">
276
282
  *
277
283
  * __Important:__
278
284
  * When creating `image` items in your gallery, the images must be uploaded to the [Wix Media Manager](https://support.wix.com/en/article/wix-media-uploading-media-to-the-media-manager) first as the `imageInfo` parameter currently only supports the Wix media URL.
279
285
  *
280
286
  * </blockquote>
287
+ *
288
+ * #### Override permissions
289
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
290
+ * <blockquote class='warning'>
291
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
292
+ * </blockquote>
281
293
  */
282
294
  export function createGallery(payload) {
283
295
  const { toJSON: toReq, fromJSON: fromReq } = serializer(_createGalleryRequest, {
@@ -307,7 +319,9 @@ export function createGallery(payload) {
307
319
  function __createGallery({ host }) {
308
320
  const serializedData = toReq(payload);
309
321
  const metadata = {
322
+ entityFqdn: 'wix.pro_gallery.v2.gallery',
310
323
  method: 'POST',
324
+ methodFqn: 'com.wixpress.exposure.progallery.ProGallery.CreateGallery',
311
325
  url: resolveComWixpressExposureProgalleryProGalleryUrl({
312
326
  protoPath: '/v2/galleries',
313
327
  data: serializedData,
@@ -326,14 +340,18 @@ export function createGallery(payload) {
326
340
  *
327
341
  * The `updateGallery()` function returns a Promise that resolves to an updated gallery. Only the fields in the `gallery` object parameter can be updated. Specify which fields to update. Unspecified fields remain the same.
328
342
  *
329
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can update a gallery. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
330
- *
331
343
  * <blockquote class="important">
332
344
  *
333
345
  * __Important:__
334
346
  * When updating `image` items in your gallery, the images must be uploaded to the [Wix Media Manager](https://support.wix.com/en/article/wix-media-uploading-media-to-the-media-manager) first as the `imageInfo` parameter currently only supports the Wix media URL.
335
347
  *
336
348
  * </blockquote>
349
+ *
350
+ * #### Override permissions
351
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
352
+ * <blockquote class='warning'>
353
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
354
+ * </blockquote>
337
355
  */
338
356
  export function updateGallery(payload) {
339
357
  const { toJSON: toReq, fromJSON: fromReq } = serializer(_updateGalleryRequest, {
@@ -363,7 +381,9 @@ export function updateGallery(payload) {
363
381
  function __updateGallery({ host }) {
364
382
  const serializedData = toReq(payload);
365
383
  const metadata = {
384
+ entityFqdn: 'wix.pro_gallery.v2.gallery',
366
385
  method: 'PATCH',
386
+ methodFqn: 'com.wixpress.exposure.progallery.ProGallery.UpdateGallery',
367
387
  url: resolveComWixpressExposureProgalleryProGalleryUrl({
368
388
  protoPath: '/v2/galleries/{gallery.id}',
369
389
  data: serializedData,
@@ -382,8 +402,11 @@ export function updateGallery(payload) {
382
402
  *
383
403
  * The `deleteGallery()` function returns a Promise that resolves to the ID of the deleted gallery. When a gallery is deleted, the deleted gallery is no longer returned when calling the [`listGalleries()`](#listgalleries) function.
384
404
  *
385
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can delete a gallery. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
386
- *
405
+ * #### Override permissions
406
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
407
+ * <blockquote class='warning'>
408
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
409
+ * </blockquote>
387
410
  */
388
411
  export function deleteGallery(payload) {
389
412
  const { toJSON: toReq, fromJSON: fromReq } = serializer(_deleteGalleryRequest, {});
@@ -391,7 +414,9 @@ export function deleteGallery(payload) {
391
414
  function __deleteGallery({ host }) {
392
415
  const serializedData = toReq(payload);
393
416
  const metadata = {
417
+ entityFqdn: 'wix.pro_gallery.v2.gallery',
394
418
  method: 'DELETE',
419
+ methodFqn: 'com.wixpress.exposure.progallery.ProGallery.DeleteGallery',
395
420
  url: resolveComWixpressExposureProgalleryProGalleryUrl({
396
421
  protoPath: '/v2/galleries/{galleryId}',
397
422
  data: serializedData,
@@ -410,14 +435,18 @@ export function deleteGallery(payload) {
410
435
  *
411
436
  * The `createGalleryItem()` function returns a Promise that resolves to a newly-created gallery item after it has successfully been created.
412
437
  *
413
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can create a gallery item. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
414
- *
415
438
  * <blockquote class="important">
416
439
  *
417
440
  * __Important:__
418
441
  * When creating `image` items in your gallery, the images must be uploaded to the [Wix Media Manager](https://support.wix.com/en/article/wix-media-uploading-media-to-the-media-manager) first as the `imageInfo` parameter currently only supports the Wix media URL.
419
442
  *
420
443
  * </blockquote>
444
+ *
445
+ * #### Override permissions
446
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
447
+ * <blockquote class='warning'>
448
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
449
+ * </blockquote>
421
450
  */
422
451
  export function createGalleryItem(payload) {
423
452
  const { toJSON: toReq, fromJSON: fromReq } = serializer(_createGalleryItemRequest, {
@@ -445,7 +474,9 @@ export function createGalleryItem(payload) {
445
474
  function __createGalleryItem({ host }) {
446
475
  const serializedData = toReq(payload);
447
476
  const metadata = {
477
+ entityFqdn: 'wix.pro_gallery.v2.gallery',
448
478
  method: 'POST',
479
+ methodFqn: 'com.wixpress.exposure.progallery.ProGallery.CreateGalleryItem',
449
480
  url: resolveComWixpressExposureProgalleryProGalleryUrl({
450
481
  protoPath: '/v2/galleries/{galleryId}/items',
451
482
  data: serializedData,
@@ -464,14 +495,18 @@ export function createGalleryItem(payload) {
464
495
  *
465
496
  * The `updateGalleryItem()` function returns a Promise that resolves to an updated gallery item. Only the fields in the `item` object parameter can be updated. Specify which fields to update. Unspecified fields remain the same.
466
497
  *
467
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can update a gallery item. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
468
- *
469
498
  * <blockquote class="important">
470
499
  *
471
500
  * __Important:__
472
501
  * When updating `image` items in your gallery, the images must be uploaded to the [Wix Media Manager](https://support.wix.com/en/article/wix-media-uploading-media-to-the-media-manager) first as the `imageInfo` parameter currently only supports the Wix media URL.
473
502
  *
474
503
  * </blockquote>
504
+ *
505
+ * #### Override permissions
506
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
507
+ * <blockquote class='warning'>
508
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
509
+ * </blockquote>
475
510
  */
476
511
  export function updateGalleryItem(payload) {
477
512
  const { toJSON: toReq, fromJSON: fromReq } = serializer(_updateGalleryItemRequest, {
@@ -499,7 +534,9 @@ export function updateGalleryItem(payload) {
499
534
  function __updateGalleryItem({ host }) {
500
535
  const serializedData = toReq(payload);
501
536
  const metadata = {
537
+ entityFqdn: 'wix.pro_gallery.v2.gallery',
502
538
  method: 'PATCH',
539
+ methodFqn: 'com.wixpress.exposure.progallery.ProGallery.UpdateGalleryItem',
503
540
  url: resolveComWixpressExposureProgalleryProGalleryUrl({
504
541
  protoPath: '/v2/galleries/{galleryId}/items/{item.id}',
505
542
  data: serializedData,
@@ -518,7 +555,11 @@ export function updateGalleryItem(payload) {
518
555
  *
519
556
  * The `deleteGalleryItem()` function returns a Promise that resolves to the ID of the deleted gallery item. When a gallery item is deleted, the deleted gallery item is no longer returned when calling the [`listGalleryItems()`](#listgalleryitems) function.
520
557
  *
521
- * Only site collaborators with 'pro-gallery.manage' [permissions](https://support.wix.com/en/article/roles-permissions-accessing-roles-permissions) can delete a gallery item. You can override the permissions with the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
558
+ * #### Override permissions
559
+ * This function is restricted and only runs if you elevate permissions using the `wix-auth` [`elevate()`](https://www.wix.com/velo/reference/wix-auth/elevate) function.
560
+ * <blockquote class='warning'>
561
+ * <p><strong>Warning:</strong> Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.</p>
562
+ * </blockquote>
522
563
  */
523
564
  export function deleteGalleryItem(payload) {
524
565
  const { toJSON: toReq, fromJSON: fromReq } = serializer(_deleteGalleryItemRequest, {});
@@ -526,7 +567,9 @@ export function deleteGalleryItem(payload) {
526
567
  function __deleteGalleryItem({ host }) {
527
568
  const serializedData = toReq(payload);
528
569
  const metadata = {
570
+ entityFqdn: 'wix.pro_gallery.v2.gallery',
529
571
  method: 'DELETE',
572
+ methodFqn: 'com.wixpress.exposure.progallery.ProGallery.DeleteGalleryItem',
530
573
  url: resolveComWixpressExposureProgalleryProGalleryUrl({
531
574
  protoPath: '/v2/galleries/{galleryId}/items/{itemId}',
532
575
  data: serializedData,
@@ -1 +1 @@
1
- {"version":3,"file":"pro-gallery-v2-gallery.http.js","sourceRoot":"","sources":["../../../src/pro-gallery-v2-gallery.http.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"pro-gallery-v2-gallery.http.js","sourceRoot":"","sources":["../../../src/pro-gallery-v2-gallery.http.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,8 @@
1
1
  import { HttpClient } from '@wix/sdk-types';
2
2
  import { GetGalleryItemIdentifiers, UpdateGallery, Item, UpdateGalleryItemIdentifiers, UpdateGalleryItem, DeleteGalleryItemIdentifiers, CreateGalleryOptions, GetGalleryOptions, ListGalleriesOptions, ListGalleryItemsOptions } from './pro-gallery-v2-gallery.universal';
3
+ export declare const __metadata: {
4
+ PACKAGE_NAME: string;
5
+ };
3
6
  export declare function listGalleries(httpClient: HttpClient): (options?: ListGalleriesOptions | undefined) => Promise<import("./pro-gallery-v2-gallery.universal").ListGalleriesResponse>;
4
7
  export declare function getGallery(httpClient: HttpClient): (galleryId: string, options?: GetGalleryOptions | undefined) => Promise<import("./pro-gallery-v2-gallery.universal").Gallery>;
5
8
  export declare function listGalleryItems(httpClient: HttpClient): (galleryId: string, options?: ListGalleryItemsOptions | undefined) => Promise<import("./pro-gallery-v2-gallery.universal").ListGalleryItemsResponse>;
@@ -1,4 +1,5 @@
1
1
  import { listGalleries as universalListGalleries, getGallery as universalGetGallery, listGalleryItems as universalListGalleryItems, getGalleryItem as universalGetGalleryItem, createGallery as universalCreateGallery, updateGallery as universalUpdateGallery, deleteGallery as universalDeleteGallery, createGalleryItem as universalCreateGalleryItem, updateGalleryItem as universalUpdateGalleryItem, deleteGalleryItem as universalDeleteGalleryItem, } from './pro-gallery-v2-gallery.universal';
2
+ export const __metadata = { PACKAGE_NAME: '@wix/pro-gallery' };
2
3
  export function listGalleries(httpClient) {
3
4
  return (options) => universalListGalleries(options,
4
5
  // @ts-ignore
@@ -1 +1 @@
1
- {"version":3,"file":"pro-gallery-v2-gallery.public.js","sourceRoot":"","sources":["../../../src/pro-gallery-v2-gallery.public.ts"],"names":[],"mappings":"AACA,OAAO,EACL,aAAa,IAAI,sBAAsB,EACvC,UAAU,IAAI,mBAAmB,EACjC,gBAAgB,IAAI,yBAAyB,EAC7C,cAAc,IAAI,uBAAuB,EACzC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,iBAAiB,IAAI,0BAA0B,EAC/C,iBAAiB,IAAI,0BAA0B,EAC/C,iBAAiB,IAAI,0BAA0B,GAWhD,MAAM,oCAAoC,CAAC;AAE5C,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,OAA8B,EAAE,EAAE,CACxC,sBAAsB,CACpB,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,UAAsB;IAC/C,OAAO,CAAC,SAAiB,EAAE,OAA2B,EAAE,EAAE,CACxD,mBAAmB,CACjB,SAAS,EACT,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,gBAAgB,CAAC,UAAsB;IACrD,OAAO,CAAC,SAAiB,EAAE,OAAiC,EAAE,EAAE,CAC9D,yBAAyB,CACvB,SAAS,EACT,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,cAAc,CAAC,UAAsB;IACnD,OAAO,CAAC,WAAsC,EAAE,EAAE,CAChD,uBAAuB,CACrB,WAAW;IACX,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,OAA8B,EAAE,EAAE,CACxC,sBAAsB,CACpB,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,GAAkB,EAAE,OAAsB,EAAE,EAAE,CACpD,sBAAsB,CACpB,GAAG,EACH,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,SAAiB,EAAE,EAAE,CAC3B,sBAAsB,CACpB,SAAS;IACT,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAsB;IACtD,OAAO,CAAC,SAAiB,EAAE,IAAU,EAAE,EAAE,CACvC,0BAA0B,CACxB,SAAS,EACT,IAAI;IACJ,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAsB;IACtD,OAAO,CAAC,WAAyC,EAAE,IAAuB,EAAE,EAAE,CAC5E,0BAA0B,CACxB,WAAW,EACX,IAAI;IACJ,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAsB;IACtD,OAAO,CAAC,WAAyC,EAAE,EAAE,CACnD,0BAA0B,CACxB,WAAW;IACX,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,OAAO,EACL,QAAQ,EACR,IAAI,EACJ,SAAS,EACT,SAAS,EACT,IAAI,EACJ,+BAA+B,EAC/B,KAAK,GACN,MAAM,oCAAoC,CAAC"}
1
+ {"version":3,"file":"pro-gallery-v2-gallery.public.js","sourceRoot":"","sources":["../../../src/pro-gallery-v2-gallery.public.ts"],"names":[],"mappings":"AACA,OAAO,EACL,aAAa,IAAI,sBAAsB,EACvC,UAAU,IAAI,mBAAmB,EACjC,gBAAgB,IAAI,yBAAyB,EAC7C,cAAc,IAAI,uBAAuB,EACzC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,aAAa,IAAI,sBAAsB,EACvC,iBAAiB,IAAI,0BAA0B,EAC/C,iBAAiB,IAAI,0BAA0B,EAC/C,iBAAiB,IAAI,0BAA0B,GAWhD,MAAM,oCAAoC,CAAC;AAE5C,MAAM,CAAC,MAAM,UAAU,GAAG,EAAE,YAAY,EAAE,kBAAkB,EAAE,CAAC;AAE/D,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,OAA8B,EAAE,EAAE,CACxC,sBAAsB,CACpB,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,UAAsB;IAC/C,OAAO,CAAC,SAAiB,EAAE,OAA2B,EAAE,EAAE,CACxD,mBAAmB,CACjB,SAAS,EACT,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,gBAAgB,CAAC,UAAsB;IACrD,OAAO,CAAC,SAAiB,EAAE,OAAiC,EAAE,EAAE,CAC9D,yBAAyB,CACvB,SAAS,EACT,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,cAAc,CAAC,UAAsB;IACnD,OAAO,CAAC,WAAsC,EAAE,EAAE,CAChD,uBAAuB,CACrB,WAAW;IACX,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,OAA8B,EAAE,EAAE,CACxC,sBAAsB,CACpB,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,GAAkB,EAAE,OAAsB,EAAE,EAAE,CACpD,sBAAsB,CACpB,GAAG,EACH,OAAO;IACP,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,UAAsB;IAClD,OAAO,CAAC,SAAiB,EAAE,EAAE,CAC3B,sBAAsB,CACpB,SAAS;IACT,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAsB;IACtD,OAAO,CAAC,SAAiB,EAAE,IAAU,EAAE,EAAE,CACvC,0BAA0B,CACxB,SAAS,EACT,IAAI;IACJ,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAsB;IACtD,OAAO,CAAC,WAAyC,EAAE,IAAuB,EAAE,EAAE,CAC5E,0BAA0B,CACxB,WAAW,EACX,IAAI;IACJ,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAAsB;IACtD,OAAO,CAAC,WAAyC,EAAE,EAAE,CACnD,0BAA0B,CACxB,WAAW;IACX,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,OAAO,EACL,QAAQ,EACR,IAAI,EACJ,SAAS,EACT,SAAS,EACT,IAAI,EACJ,+BAA+B,EAC/B,KAAK,GACN,MAAM,oCAAoC,CAAC"}
@@ -26,6 +26,12 @@ export interface Gallery {
26
26
  createdDate?: Date;
27
27
  }
28
28
  export interface Item extends ItemMetadataOneOf {
29
+ /** Details about the image. */
30
+ image?: Image;
31
+ /** Details about the video. */
32
+ video?: Video;
33
+ /** Details about the text file. */
34
+ text?: Text;
29
35
  /**
30
36
  * Item ID.
31
37
  * @readonly
@@ -59,12 +65,6 @@ export interface Item extends ItemMetadataOneOf {
59
65
  updatedDate?: Date;
60
66
  /** Item tags. */
61
67
  tags?: Tags;
62
- /** Details about the image. */
63
- image?: Image;
64
- /** Details about the video. */
65
- video?: Video;
66
- /** Details about the text file. */
67
- text?: Text;
68
68
  }
69
69
  /** @oneof */
70
70
  export interface ItemMetadataOneOf {
@@ -326,10 +326,6 @@ export interface SecondaryMediaMetadataOneOf {
326
326
  text?: Text;
327
327
  }
328
328
  export interface InvalidateCache extends InvalidateCacheGetByOneOf {
329
- /** tell us why you're invalidating the cache. You don't need to add your app name */
330
- reason?: string | null;
331
- /** Is local DS */
332
- localDc?: boolean;
333
329
  /** Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! */
334
330
  metaSiteId?: string;
335
331
  /** Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache! */
@@ -340,6 +336,10 @@ export interface InvalidateCache extends InvalidateCacheGetByOneOf {
340
336
  page?: Page;
341
337
  /** Invalidate by URI path */
342
338
  uri?: URI;
339
+ /** tell us why you're invalidating the cache. You don't need to add your app name */
340
+ reason?: string | null;
341
+ /** Is local DS */
342
+ localDc?: boolean;
343
343
  }
344
344
  /** @oneof */
345
345
  export interface InvalidateCacheGetByOneOf {
@@ -449,14 +449,6 @@ export interface HtmlSiteRCPublished {
449
449
  branchId?: string | null;
450
450
  }
451
451
  export interface UpdateDocumentsEvent extends UpdateDocumentsEventOperationOneOf {
452
- /** application which owns documents */
453
- appDefId?: string | null;
454
- /** type of the documents */
455
- documentType?: string | null;
456
- /** language of the documents */
457
- language?: string | null;
458
- /** site documents belong to */
459
- msId?: string | null;
460
452
  /** insert/update documents */
461
453
  update?: DocumentUpdateOperation;
462
454
  /** delete by document ids */
@@ -467,6 +459,14 @@ export interface UpdateDocumentsEvent extends UpdateDocumentsEventOperationOneOf
467
459
  updateByFilter?: UpdateByFilterOperation;
468
460
  /** update only existing documents */
469
461
  updateExisting?: UpdateExistingOperation;
462
+ /** application which owns documents */
463
+ appDefId?: string | null;
464
+ /** type of the documents */
465
+ documentType?: string | null;
466
+ /** language of the documents */
467
+ language?: string | null;
468
+ /** site documents belong to */
469
+ msId?: string | null;
470
470
  }
471
471
  /** @oneof */
472
472
  export interface UpdateDocumentsEventOperationOneOf {
@@ -778,6 +778,11 @@ export interface PublishGalleryResponse {
778
778
  gallery?: Gallery;
779
779
  }
780
780
  export interface DomainEvent extends DomainEventBodyOneOf {
781
+ createdEvent?: EntityCreatedEvent;
782
+ updatedEvent?: EntityUpdatedEvent;
783
+ deletedEvent?: EntityDeletedEvent;
784
+ actionEvent?: ActionEvent;
785
+ extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
781
786
  /** random GUID so clients can tell if event was already handled */
782
787
  id?: string;
783
788
  /**
@@ -815,11 +820,6 @@ export interface DomainEvent extends DomainEventBodyOneOf {
815
820
  * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
816
821
  */
817
822
  entityEventSequence?: string | null;
818
- createdEvent?: EntityCreatedEvent;
819
- updatedEvent?: EntityUpdatedEvent;
820
- deletedEvent?: EntityDeletedEvent;
821
- actionEvent?: ActionEvent;
822
- extendedFieldsUpdatedEvent?: ExtendedFieldsUpdatedEvent;
823
823
  }
824
824
  /** @oneof */
825
825
  export interface DomainEventBodyOneOf {