@wix/portfolio 1.0.91 → 1.0.93

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.91",
3
+ "version": "1.0.93",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,12 +18,12 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/portfolio_collections": "1.0.25",
22
- "@wix/portfolio_portfolio-settings": "1.0.14",
23
- "@wix/portfolio_project-in-collections": "1.0.25",
24
- "@wix/portfolio_project-items": "1.0.29",
25
- "@wix/portfolio_projects": "1.0.36",
26
- "@wix/portfolio_synced-project": "1.0.12"
21
+ "@wix/portfolio_collections": "1.0.27",
22
+ "@wix/portfolio_portfolio-settings": "1.0.15",
23
+ "@wix/portfolio_project-in-collections": "1.0.26",
24
+ "@wix/portfolio_project-items": "1.0.31",
25
+ "@wix/portfolio_projects": "1.0.38",
26
+ "@wix/portfolio_synced-project": "1.0.13"
27
27
  },
28
28
  "devDependencies": {
29
29
  "glob": "^10.4.1",
@@ -48,5 +48,5 @@
48
48
  "fqdn": ""
49
49
  }
50
50
  },
51
- "falconPackageHash": "211ab291b3adba7bb5307039bf884b700921a4bbe26db938472947ba"
51
+ "falconPackageHash": "c0ec0377f5876c06b6f5d4c088de37d6342389651ca16c9b96a73d5e"
52
52
  }
@@ -672,6 +672,7 @@ interface InvalidateCache$2 extends InvalidateCacheGetByOneOf$2 {
672
672
  reason?: string | null;
673
673
  /** Is local DS */
674
674
  localDc?: boolean;
675
+ hardPurge?: boolean;
675
676
  }
676
677
  /** @oneof */
677
678
  interface InvalidateCacheGetByOneOf$2 {
@@ -1748,6 +1749,7 @@ interface InvalidateCache$1 extends InvalidateCacheGetByOneOf$1 {
1748
1749
  reason?: string | null;
1749
1750
  /** Is local DS */
1750
1751
  localDc?: boolean;
1752
+ hardPurge?: boolean;
1751
1753
  }
1752
1754
  /** @oneof */
1753
1755
  interface InvalidateCacheGetByOneOf$1 {
@@ -1898,17 +1900,15 @@ interface QueryV2$2 extends QueryV2PagingMethodOneOf$2 {
1898
1900
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
1899
1901
  cursorPaging?: CursorPaging$3;
1900
1902
  /**
1901
- * Filter object in the following format:
1902
- * `"filter" : {
1903
- * "fieldName1": "value1",
1904
- * "fieldName2":{"$operator":"value2"}
1905
- * }`
1906
- * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
1903
+ * Filter object.
1904
+ *
1905
+ * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
1907
1906
  */
1908
1907
  filter?: Record<string, any> | null;
1909
1908
  /**
1910
- * Sort object in the following format:
1911
- * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
1909
+ * Sort object.
1910
+ *
1911
+ * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
1912
1912
  */
1913
1913
  sort?: Sorting$2[];
1914
1914
  /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
@@ -2708,7 +2708,10 @@ interface MetaSiteSpecialEvent$1 extends MetaSiteSpecialEventPayloadOneOf$1 {
2708
2708
  version?: string;
2709
2709
  /** A timestamp of the event. */
2710
2710
  timestamp?: string;
2711
- /** A list of "assets" (applications). The same as MetaSiteContext. */
2711
+ /**
2712
+ * TODO(meta-site): Change validation once validations are disabled for consumers
2713
+ * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
2714
+ */
2712
2715
  assets?: Asset$1[];
2713
2716
  }
2714
2717
  /** @oneof */
@@ -3010,6 +3013,7 @@ interface InvalidateCache extends InvalidateCacheGetByOneOf {
3010
3013
  reason?: string | null;
3011
3014
  /** Is local DS */
3012
3015
  localDc?: boolean;
3016
+ hardPurge?: boolean;
3013
3017
  }
3014
3018
  /** @oneof */
3015
3019
  interface InvalidateCacheGetByOneOf {
@@ -4923,7 +4927,10 @@ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
4923
4927
  version?: string;
4924
4928
  /** A timestamp of the event. */
4925
4929
  timestamp?: string;
4926
- /** A list of "assets" (applications). The same as MetaSiteContext. */
4930
+ /**
4931
+ * TODO(meta-site): Change validation once validations are disabled for consumers
4932
+ * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
4933
+ */
4927
4934
  assets?: Asset[];
4928
4935
  }
4929
4936
  /** @oneof */
@@ -672,6 +672,7 @@ interface InvalidateCache$2 extends InvalidateCacheGetByOneOf$2 {
672
672
  reason?: string | null;
673
673
  /** Is local DS */
674
674
  localDc?: boolean;
675
+ hardPurge?: boolean;
675
676
  }
676
677
  /** @oneof */
677
678
  interface InvalidateCacheGetByOneOf$2 {
@@ -1748,6 +1749,7 @@ interface InvalidateCache$1 extends InvalidateCacheGetByOneOf$1 {
1748
1749
  reason?: string | null;
1749
1750
  /** Is local DS */
1750
1751
  localDc?: boolean;
1752
+ hardPurge?: boolean;
1751
1753
  }
1752
1754
  /** @oneof */
1753
1755
  interface InvalidateCacheGetByOneOf$1 {
@@ -1898,17 +1900,15 @@ interface QueryV2$2 extends QueryV2PagingMethodOneOf$2 {
1898
1900
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
1899
1901
  cursorPaging?: CursorPaging$3;
1900
1902
  /**
1901
- * Filter object in the following format:
1902
- * `"filter" : {
1903
- * "fieldName1": "value1",
1904
- * "fieldName2":{"$operator":"value2"}
1905
- * }`
1906
- * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
1903
+ * Filter object.
1904
+ *
1905
+ * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
1907
1906
  */
1908
1907
  filter?: Record<string, any> | null;
1909
1908
  /**
1910
- * Sort object in the following format:
1911
- * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
1909
+ * Sort object.
1910
+ *
1911
+ * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
1912
1912
  */
1913
1913
  sort?: Sorting$2[];
1914
1914
  /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
@@ -2708,7 +2708,10 @@ interface MetaSiteSpecialEvent$1 extends MetaSiteSpecialEventPayloadOneOf$1 {
2708
2708
  version?: string;
2709
2709
  /** A timestamp of the event. */
2710
2710
  timestamp?: string;
2711
- /** A list of "assets" (applications). The same as MetaSiteContext. */
2711
+ /**
2712
+ * TODO(meta-site): Change validation once validations are disabled for consumers
2713
+ * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
2714
+ */
2712
2715
  assets?: Asset$1[];
2713
2716
  }
2714
2717
  /** @oneof */
@@ -3010,6 +3013,7 @@ interface InvalidateCache extends InvalidateCacheGetByOneOf {
3010
3013
  reason?: string | null;
3011
3014
  /** Is local DS */
3012
3015
  localDc?: boolean;
3016
+ hardPurge?: boolean;
3013
3017
  }
3014
3018
  /** @oneof */
3015
3019
  interface InvalidateCacheGetByOneOf {
@@ -4923,7 +4927,10 @@ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
4923
4927
  version?: string;
4924
4928
  /** A timestamp of the event. */
4925
4929
  timestamp?: string;
4926
- /** A list of "assets" (applications). The same as MetaSiteContext. */
4930
+ /**
4931
+ * TODO(meta-site): Change validation once validations are disabled for consumers
4932
+ * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
4933
+ */
4927
4934
  assets?: Asset[];
4928
4935
  }
4929
4936
  /** @oneof */