@wix/pro-gallery 1.0.51 → 1.0.53

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.51",
3
+ "version": "1.0.53",
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.22"
21
+ "@wix/pro-gallery_pro-gallery": "1.0.24"
22
22
  },
23
23
  "devDependencies": {
24
24
  "glob": "^10.4.1",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "scripts": {
30
30
  "build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles",
31
- "build:dts-bundles": "test -f config/rollup-config.js && rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
31
+ "build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
32
32
  "test": ":"
33
33
  },
34
34
  "wix": {
@@ -42,5 +42,5 @@
42
42
  "fqdn": ""
43
43
  }
44
44
  },
45
- "falconPackageHash": "78d8f8ec9d7735e21dddcdf54e01966f47dbe5509d994add9f5fc01c"
45
+ "falconPackageHash": "021e25293d2362840ab939d48fc5368f265ed26cdcde743942cee34a"
46
46
  }
@@ -478,6 +478,8 @@ interface HtmlSiteRCPublished {
478
478
  revision?: string;
479
479
  /** Optional branch Id */
480
480
  branchId?: string | null;
481
+ /** Site's publish date */
482
+ publishDate?: string;
481
483
  }
482
484
  interface DomainEvent extends DomainEventBodyOneOf {
483
485
  /** Information about a newly-created gallery. */
@@ -532,6 +534,9 @@ interface DomainEventBodyOneOf {
532
534
  interface EntityCreatedEvent {
533
535
  entity?: string;
534
536
  }
537
+ interface RestoreInfo {
538
+ deletedDate?: Date;
539
+ }
535
540
  interface EntityUpdatedEvent {
536
541
  /**
537
542
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -907,9 +912,6 @@ interface PublishGalleryResponse {
907
912
  /** Published gallery. */
908
913
  gallery?: Gallery;
909
914
  }
910
- interface RestoreInfo {
911
- deletedDate?: Date;
912
- }
913
915
  interface PointNonNullableFields {
914
916
  x: number;
915
917
  y: number;
@@ -478,6 +478,8 @@ interface HtmlSiteRCPublished {
478
478
  revision?: string;
479
479
  /** Optional branch Id */
480
480
  branchId?: string | null;
481
+ /** Site's publish date */
482
+ publishDate?: string;
481
483
  }
482
484
  interface DomainEvent extends DomainEventBodyOneOf {
483
485
  /** Information about a newly-created gallery. */
@@ -532,6 +534,9 @@ interface DomainEventBodyOneOf {
532
534
  interface EntityCreatedEvent {
533
535
  entity?: string;
534
536
  }
537
+ interface RestoreInfo {
538
+ deletedDate?: Date;
539
+ }
535
540
  interface EntityUpdatedEvent {
536
541
  /**
537
542
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -907,9 +912,6 @@ interface PublishGalleryResponse {
907
912
  /** Published gallery. */
908
913
  gallery?: Gallery;
909
914
  }
910
- interface RestoreInfo {
911
- deletedDate?: Date;
912
- }
913
915
  interface PointNonNullableFields {
914
916
  x: number;
915
917
  y: number;