@wix/table-reservations 1.0.173 → 1.0.174

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/table-reservations",
3
- "version": "1.0.173",
3
+ "version": "1.0.174",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -21,7 +21,7 @@
21
21
  "type-bundles"
22
22
  ],
23
23
  "dependencies": {
24
- "@wix/table-reservations_reservation-locations": "1.0.78",
24
+ "@wix/table-reservations_reservation-locations": "1.0.79",
25
25
  "@wix/table-reservations_reservations": "1.0.61",
26
26
  "@wix/table-reservations_time-slots": "1.0.54"
27
27
  },
@@ -48,5 +48,5 @@
48
48
  "fqdn": ""
49
49
  }
50
50
  },
51
- "falconPackageHash": "114cfae8eb7c5af969fbd58264f06ee469aa93373cd70cc398ec1c8b"
51
+ "falconPackageHash": "f5da0efcabde5da55ac422c27ba563448738f9ed452ac89e41b7b13b"
52
52
  }
@@ -3716,6 +3716,21 @@ interface SiteMarkedAsTemplate {
3716
3716
  }
3717
3717
  interface SiteMarkedAsWixSite {
3718
3718
  }
3719
+ /**
3720
+ * Represents a service provisioned a site.
3721
+ *
3722
+ * Note on `origin_instance_id`:
3723
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
3724
+ * This is because of the following scenario:
3725
+ *
3726
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
3727
+ * such as a product catalog. When you create a site from this template, you inherit this
3728
+ * default product catalog. However, if the template's product catalog is modified,
3729
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
3730
+ * your site remains consistent with what you initially received and does not include any
3731
+ * changes made to the original template afterward.
3732
+ * To ensure this, the TPA on the template gets a new instance_id.
3733
+ */
3719
3734
  interface ServiceProvisioned {
3720
3735
  /** Either UUID or EmbeddedServiceType. */
3721
3736
  appDefId?: string;
@@ -3716,6 +3716,21 @@ interface SiteMarkedAsTemplate {
3716
3716
  }
3717
3717
  interface SiteMarkedAsWixSite {
3718
3718
  }
3719
+ /**
3720
+ * Represents a service provisioned a site.
3721
+ *
3722
+ * Note on `origin_instance_id`:
3723
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
3724
+ * This is because of the following scenario:
3725
+ *
3726
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
3727
+ * such as a product catalog. When you create a site from this template, you inherit this
3728
+ * default product catalog. However, if the template's product catalog is modified,
3729
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
3730
+ * your site remains consistent with what you initially received and does not include any
3731
+ * changes made to the original template afterward.
3732
+ * To ensure this, the TPA on the template gets a new instance_id.
3733
+ */
3719
3734
  interface ServiceProvisioned {
3720
3735
  /** Either UUID or EmbeddedServiceType. */
3721
3736
  appDefId?: string;