@wix/portfolio 1.0.120 → 1.0.122

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/portfolio",
3
- "version": "1.0.120",
3
+ "version": "1.0.122",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -21,12 +21,12 @@
21
21
  "type-bundles"
22
22
  ],
23
23
  "dependencies": {
24
- "@wix/portfolio_collections": "1.0.38",
24
+ "@wix/portfolio_collections": "1.0.39",
25
25
  "@wix/portfolio_portfolio-settings": "1.0.24",
26
- "@wix/portfolio_project-in-collections": "1.0.41",
26
+ "@wix/portfolio_project-in-collections": "1.0.42",
27
27
  "@wix/portfolio_project-items": "1.0.44",
28
- "@wix/portfolio_projects": "1.0.58",
29
- "@wix/portfolio_synced-project": "1.0.21"
28
+ "@wix/portfolio_projects": "1.0.60",
29
+ "@wix/portfolio_synced-project": "1.0.22"
30
30
  },
31
31
  "devDependencies": {
32
32
  "glob": "^10.4.1",
@@ -51,5 +51,5 @@
51
51
  "fqdn": ""
52
52
  }
53
53
  },
54
- "falconPackageHash": "783f32b96ca786d95f040dce63399056a65318716f168a2b8c4d48eb"
54
+ "falconPackageHash": "5d167680c39d12b2ad06dd4b9b2268ae14f3472a7cb0ba795cae720e"
55
55
  }
@@ -584,11 +584,11 @@ interface Tag$2 {
584
584
  */
585
585
  type?: string;
586
586
  /**
587
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
588
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
587
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
588
+ * For example: `{"name": "description", "content": "the description itself"}`.
589
589
  */
590
590
  props?: Record<string, any> | null;
591
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
591
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
592
592
  meta?: Record<string, any> | null;
593
593
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
594
594
  children?: string;
@@ -2534,11 +2534,11 @@ interface Tag$1 {
2534
2534
  */
2535
2535
  type?: string;
2536
2536
  /**
2537
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
2538
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
2537
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
2538
+ * For example: `{"name": "description", "content": "the description itself"}`.
2539
2539
  */
2540
2540
  props?: Record<string, any> | null;
2541
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
2541
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
2542
2542
  meta?: Record<string, any> | null;
2543
2543
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
2544
2544
  children?: string;
@@ -2821,6 +2821,21 @@ interface SiteMarkedAsTemplate$1 {
2821
2821
  }
2822
2822
  interface SiteMarkedAsWixSite$1 {
2823
2823
  }
2824
+ /**
2825
+ * Represents a service provisioned a site.
2826
+ *
2827
+ * Note on `origin_instance_id`:
2828
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
2829
+ * This is because of the following scenario:
2830
+ *
2831
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
2832
+ * such as a product catalog. When you create a site from this template, you inherit this
2833
+ * default product catalog. However, if the template's product catalog is modified,
2834
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
2835
+ * your site remains consistent with what you initially received and does not include any
2836
+ * changes made to the original template afterward.
2837
+ * To ensure this, the TPA on the template gets a new instance_id.
2838
+ */
2824
2839
  interface ServiceProvisioned$1 {
2825
2840
  /** Either UUID or EmbeddedServiceType. */
2826
2841
  appDefId?: string;
@@ -4003,11 +4018,11 @@ interface Tag {
4003
4018
  */
4004
4019
  type?: string;
4005
4020
  /**
4006
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
4007
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
4021
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
4022
+ * For example: `{"name": "description", "content": "the description itself"}`.
4008
4023
  */
4009
4024
  props?: Record<string, any> | null;
4010
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
4025
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
4011
4026
  meta?: Record<string, any> | null;
4012
4027
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
4013
4028
  children?: string;
@@ -4933,6 +4948,21 @@ interface SiteMarkedAsTemplate {
4933
4948
  }
4934
4949
  interface SiteMarkedAsWixSite {
4935
4950
  }
4951
+ /**
4952
+ * Represents a service provisioned a site.
4953
+ *
4954
+ * Note on `origin_instance_id`:
4955
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
4956
+ * This is because of the following scenario:
4957
+ *
4958
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
4959
+ * such as a product catalog. When you create a site from this template, you inherit this
4960
+ * default product catalog. However, if the template's product catalog is modified,
4961
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
4962
+ * your site remains consistent with what you initially received and does not include any
4963
+ * changes made to the original template afterward.
4964
+ * To ensure this, the TPA on the template gets a new instance_id.
4965
+ */
4936
4966
  interface ServiceProvisioned {
4937
4967
  /** Either UUID or EmbeddedServiceType. */
4938
4968
  appDefId?: string;
@@ -584,11 +584,11 @@ interface Tag$2 {
584
584
  */
585
585
  type?: string;
586
586
  /**
587
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
588
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
587
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
588
+ * For example: `{"name": "description", "content": "the description itself"}`.
589
589
  */
590
590
  props?: Record<string, any> | null;
591
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
591
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
592
592
  meta?: Record<string, any> | null;
593
593
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
594
594
  children?: string;
@@ -2534,11 +2534,11 @@ interface Tag$1 {
2534
2534
  */
2535
2535
  type?: string;
2536
2536
  /**
2537
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
2538
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
2537
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
2538
+ * For example: `{"name": "description", "content": "the description itself"}`.
2539
2539
  */
2540
2540
  props?: Record<string, any> | null;
2541
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
2541
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
2542
2542
  meta?: Record<string, any> | null;
2543
2543
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
2544
2544
  children?: string;
@@ -2821,6 +2821,21 @@ interface SiteMarkedAsTemplate$1 {
2821
2821
  }
2822
2822
  interface SiteMarkedAsWixSite$1 {
2823
2823
  }
2824
+ /**
2825
+ * Represents a service provisioned a site.
2826
+ *
2827
+ * Note on `origin_instance_id`:
2828
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
2829
+ * This is because of the following scenario:
2830
+ *
2831
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
2832
+ * such as a product catalog. When you create a site from this template, you inherit this
2833
+ * default product catalog. However, if the template's product catalog is modified,
2834
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
2835
+ * your site remains consistent with what you initially received and does not include any
2836
+ * changes made to the original template afterward.
2837
+ * To ensure this, the TPA on the template gets a new instance_id.
2838
+ */
2824
2839
  interface ServiceProvisioned$1 {
2825
2840
  /** Either UUID or EmbeddedServiceType. */
2826
2841
  appDefId?: string;
@@ -4003,11 +4018,11 @@ interface Tag {
4003
4018
  */
4004
4019
  type?: string;
4005
4020
  /**
4006
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
4007
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
4021
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
4022
+ * For example: `{"name": "description", "content": "the description itself"}`.
4008
4023
  */
4009
4024
  props?: Record<string, any> | null;
4010
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
4025
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
4011
4026
  meta?: Record<string, any> | null;
4012
4027
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
4013
4028
  children?: string;
@@ -4933,6 +4948,21 @@ interface SiteMarkedAsTemplate {
4933
4948
  }
4934
4949
  interface SiteMarkedAsWixSite {
4935
4950
  }
4951
+ /**
4952
+ * Represents a service provisioned a site.
4953
+ *
4954
+ * Note on `origin_instance_id`:
4955
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
4956
+ * This is because of the following scenario:
4957
+ *
4958
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
4959
+ * such as a product catalog. When you create a site from this template, you inherit this
4960
+ * default product catalog. However, if the template's product catalog is modified,
4961
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
4962
+ * your site remains consistent with what you initially received and does not include any
4963
+ * changes made to the original template afterward.
4964
+ * To ensure this, the TPA on the template gets a new instance_id.
4965
+ */
4936
4966
  interface ServiceProvisioned {
4937
4967
  /** Either UUID or EmbeddedServiceType. */
4938
4968
  appDefId?: string;
@@ -111,11 +111,11 @@ interface Tag$5 {
111
111
  */
112
112
  type?: string;
113
113
  /**
114
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
115
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
114
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
115
+ * For example: `{"name": "description", "content": "the description itself"}`.
116
116
  */
117
117
  props?: Record<string, any> | null;
118
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
118
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
119
119
  meta?: Record<string, any> | null;
120
120
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
121
121
  children?: string;
@@ -426,11 +426,11 @@ interface Tag$4 {
426
426
  */
427
427
  type?: string;
428
428
  /**
429
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
430
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
429
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
430
+ * For example: `{"name": "description", "content": "the description itself"}`.
431
431
  */
432
432
  props?: Record<string, any> | null;
433
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
433
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
434
434
  meta?: Record<string, any> | null;
435
435
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
436
436
  children?: string;
@@ -1853,11 +1853,11 @@ interface Tag$3 {
1853
1853
  */
1854
1854
  type?: string;
1855
1855
  /**
1856
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
1857
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
1856
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
1857
+ * For example: `{"name": "description", "content": "the description itself"}`.
1858
1858
  */
1859
1859
  props?: Record<string, any> | null;
1860
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
1860
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
1861
1861
  meta?: Record<string, any> | null;
1862
1862
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
1863
1863
  children?: string;
@@ -2368,11 +2368,11 @@ interface Tag$2 {
2368
2368
  */
2369
2369
  type?: string;
2370
2370
  /**
2371
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
2372
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
2371
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
2372
+ * For example: `{"name": "description", "content": "the description itself"}`.
2373
2373
  */
2374
2374
  props?: Record<string, any> | null;
2375
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
2375
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
2376
2376
  meta?: Record<string, any> | null;
2377
2377
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
2378
2378
  children?: string;
@@ -2968,11 +2968,11 @@ interface Tag$1 {
2968
2968
  */
2969
2969
  type?: string;
2970
2970
  /**
2971
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
2972
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
2971
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
2972
+ * For example: `{"name": "description", "content": "the description itself"}`.
2973
2973
  */
2974
2974
  props?: Record<string, any> | null;
2975
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
2975
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
2976
2976
  meta?: Record<string, any> | null;
2977
2977
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
2978
2978
  children?: string;
@@ -3243,11 +3243,11 @@ interface Tag {
3243
3243
  */
3244
3244
  type?: string;
3245
3245
  /**
3246
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
3247
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
3246
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
3247
+ * For example: `{"name": "description", "content": "the description itself"}`.
3248
3248
  */
3249
3249
  props?: Record<string, any> | null;
3250
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
3250
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
3251
3251
  meta?: Record<string, any> | null;
3252
3252
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
3253
3253
  children?: string;