@wix/portfolio 1.0.91 → 1.0.92

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.92",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,11 +18,11 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/portfolio_collections": "1.0.25",
21
+ "@wix/portfolio_collections": "1.0.26",
22
22
  "@wix/portfolio_portfolio-settings": "1.0.14",
23
23
  "@wix/portfolio_project-in-collections": "1.0.25",
24
- "@wix/portfolio_project-items": "1.0.29",
25
- "@wix/portfolio_projects": "1.0.36",
24
+ "@wix/portfolio_project-items": "1.0.30",
25
+ "@wix/portfolio_projects": "1.0.37",
26
26
  "@wix/portfolio_synced-project": "1.0.12"
27
27
  },
28
28
  "devDependencies": {
@@ -48,5 +48,5 @@
48
48
  "fqdn": ""
49
49
  }
50
50
  },
51
- "falconPackageHash": "211ab291b3adba7bb5307039bf884b700921a4bbe26db938472947ba"
51
+ "falconPackageHash": "3674d4d9d1a63b355f2034574d2405e33857bd37567ed725a7ab5bbc"
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. */
@@ -3010,6 +3010,7 @@ interface InvalidateCache extends InvalidateCacheGetByOneOf {
3010
3010
  reason?: string | null;
3011
3011
  /** Is local DS */
3012
3012
  localDc?: boolean;
3013
+ hardPurge?: boolean;
3013
3014
  }
3014
3015
  /** @oneof */
3015
3016
  interface InvalidateCacheGetByOneOf {
@@ -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. */
@@ -3010,6 +3010,7 @@ interface InvalidateCache extends InvalidateCacheGetByOneOf {
3010
3010
  reason?: string | null;
3011
3011
  /** Is local DS */
3012
3012
  localDc?: boolean;
3013
+ hardPurge?: boolean;
3013
3014
  }
3014
3015
  /** @oneof */
3015
3016
  interface InvalidateCacheGetByOneOf {