@wix/portfolio 1.0.116 → 1.0.117

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.116",
3
+ "version": "1.0.117",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -21,10 +21,10 @@
21
21
  "type-bundles"
22
22
  ],
23
23
  "dependencies": {
24
- "@wix/portfolio_collections": "1.0.37",
25
- "@wix/portfolio_portfolio-settings": "1.0.23",
24
+ "@wix/portfolio_collections": "1.0.38",
25
+ "@wix/portfolio_portfolio-settings": "1.0.24",
26
26
  "@wix/portfolio_project-in-collections": "1.0.40",
27
- "@wix/portfolio_project-items": "1.0.43",
27
+ "@wix/portfolio_project-items": "1.0.44",
28
28
  "@wix/portfolio_projects": "1.0.55",
29
29
  "@wix/portfolio_synced-project": "1.0.19"
30
30
  },
@@ -51,5 +51,5 @@
51
51
  "fqdn": ""
52
52
  }
53
53
  },
54
- "falconPackageHash": "5726dd40503341acaf279401e274861ba9a008e79e2d011d8cff6cb1"
54
+ "falconPackageHash": "b1aed5454f06b8b597372a980132b2b320efb024361e683068107c4e"
55
55
  }
@@ -1166,7 +1166,7 @@ interface DeleteCollectionSignature {
1166
1166
  declare function queryCollections$1(httpClient: HttpClient): QueryCollectionsSignature;
1167
1167
  interface QueryCollectionsSignature {
1168
1168
  /**
1169
- * Retrieves a list of collections, given the provided paging, filtering, and sorting. Up to 100 collections can be returned per request.
1169
+ * Retrieves a list of collections given the provided paging, filtering, and sorting. Up to 100 collections can be returned per request.
1170
1170
  *
1171
1171
  * The default `sort` is `id` in `ASC`.
1172
1172
  *
@@ -1248,7 +1248,7 @@ interface ProjectItemSettings {
1248
1248
  defaultItemName?: DefaultItemName;
1249
1249
  }
1250
1250
  declare enum AddItemDirection {
1251
- /** Add new project items to the start of the gallery. */
1251
+ /** Add new project items to the beginning of the gallery. */
1252
1252
  GALLERY_START = "GALLERY_START",
1253
1253
  /** Add new project items to the end of the gallery. */
1254
1254
  GALLERY_END = "GALLERY_END"
@@ -1482,7 +1482,7 @@ interface Item extends ItemMetadataOneOf {
1482
1482
  /** Project ID. */
1483
1483
  projectId?: string | null;
1484
1484
  /**
1485
- * Item ID.
1485
+ * Project item ID.
1486
1486
  * @readonly
1487
1487
  */
1488
1488
  _id?: string | null;
@@ -1492,12 +1492,12 @@ interface Item extends ItemMetadataOneOf {
1492
1492
  * Default: [Epoch](https://www.epoch101.com/) timestamp. <br />
1493
1493
  */
1494
1494
  sortOrder?: number | null;
1495
- /** Item title. */
1495
+ /** Project item title. */
1496
1496
  title?: string | null;
1497
- /** Item description. */
1497
+ /** Project item description. */
1498
1498
  description?: string | null;
1499
1499
  /**
1500
- * Item data type. One of:
1500
+ * Project item data type. One of:
1501
1501
  * <br />
1502
1502
  * +`"IMAGE"`
1503
1503
  * <br />
@@ -1506,12 +1506,12 @@ interface Item extends ItemMetadataOneOf {
1506
1506
  */
1507
1507
  type?: Type;
1508
1508
  /**
1509
- * Date and time the item was created.
1509
+ * Date and time the project item was created.
1510
1510
  * @readonly
1511
1511
  */
1512
1512
  _createdDate?: Date | null;
1513
1513
  /**
1514
- * Date and time the item was last updated.
1514
+ * Date and time the project item was last updated.
1515
1515
  * @readonly
1516
1516
  */
1517
1517
  _updatedDate?: Date | null;
@@ -2137,7 +2137,7 @@ interface UpdateProjectItem {
2137
2137
  /** Project ID. */
2138
2138
  projectId?: string | null;
2139
2139
  /**
2140
- * Item ID.
2140
+ * Project item ID.
2141
2141
  * @readonly
2142
2142
  */
2143
2143
  _id?: string | null;
@@ -2147,12 +2147,12 @@ interface UpdateProjectItem {
2147
2147
  * Default: [Epoch](https://www.epoch101.com/) timestamp. <br />
2148
2148
  */
2149
2149
  sortOrder?: number | null;
2150
- /** Item title. */
2150
+ /** Project item title. */
2151
2151
  title?: string | null;
2152
- /** Item description. */
2152
+ /** Project item description. */
2153
2153
  description?: string | null;
2154
2154
  /**
2155
- * Item data type. One of:
2155
+ * Project item data type. One of:
2156
2156
  * <br />
2157
2157
  * +`"IMAGE"`
2158
2158
  * <br />
@@ -2161,12 +2161,12 @@ interface UpdateProjectItem {
2161
2161
  */
2162
2162
  type?: Type;
2163
2163
  /**
2164
- * Date and time the item was created.
2164
+ * Date and time the project item was created.
2165
2165
  * @readonly
2166
2166
  */
2167
2167
  _createdDate?: Date | null;
2168
2168
  /**
2169
- * Date and time the item was last updated.
2169
+ * Date and time the project item was last updated.
2170
2170
  * @readonly
2171
2171
  */
2172
2172
  _updatedDate?: Date | null;
@@ -2227,7 +2227,7 @@ declare function updateProjectItem$1(httpClient: HttpClient): UpdateProjectItemS
2227
2227
  interface UpdateProjectItemSignature {
2228
2228
  /**
2229
2229
  * Updates a project item.
2230
- * @param - Item ID.
2230
+ * @param - Project item ID.
2231
2231
  * @returns The updated project item.
2232
2232
  */
2233
2233
  (_id: string | null, item: UpdateProjectItem): Promise<Item & ItemNonNullableFields>;
@@ -1166,7 +1166,7 @@ interface DeleteCollectionSignature {
1166
1166
  declare function queryCollections$1(httpClient: HttpClient): QueryCollectionsSignature;
1167
1167
  interface QueryCollectionsSignature {
1168
1168
  /**
1169
- * Retrieves a list of collections, given the provided paging, filtering, and sorting. Up to 100 collections can be returned per request.
1169
+ * Retrieves a list of collections given the provided paging, filtering, and sorting. Up to 100 collections can be returned per request.
1170
1170
  *
1171
1171
  * The default `sort` is `id` in `ASC`.
1172
1172
  *
@@ -1248,7 +1248,7 @@ interface ProjectItemSettings {
1248
1248
  defaultItemName?: DefaultItemName;
1249
1249
  }
1250
1250
  declare enum AddItemDirection {
1251
- /** Add new project items to the start of the gallery. */
1251
+ /** Add new project items to the beginning of the gallery. */
1252
1252
  GALLERY_START = "GALLERY_START",
1253
1253
  /** Add new project items to the end of the gallery. */
1254
1254
  GALLERY_END = "GALLERY_END"
@@ -1482,7 +1482,7 @@ interface Item extends ItemMetadataOneOf {
1482
1482
  /** Project ID. */
1483
1483
  projectId?: string | null;
1484
1484
  /**
1485
- * Item ID.
1485
+ * Project item ID.
1486
1486
  * @readonly
1487
1487
  */
1488
1488
  _id?: string | null;
@@ -1492,12 +1492,12 @@ interface Item extends ItemMetadataOneOf {
1492
1492
  * Default: [Epoch](https://www.epoch101.com/) timestamp. <br />
1493
1493
  */
1494
1494
  sortOrder?: number | null;
1495
- /** Item title. */
1495
+ /** Project item title. */
1496
1496
  title?: string | null;
1497
- /** Item description. */
1497
+ /** Project item description. */
1498
1498
  description?: string | null;
1499
1499
  /**
1500
- * Item data type. One of:
1500
+ * Project item data type. One of:
1501
1501
  * <br />
1502
1502
  * +`"IMAGE"`
1503
1503
  * <br />
@@ -1506,12 +1506,12 @@ interface Item extends ItemMetadataOneOf {
1506
1506
  */
1507
1507
  type?: Type;
1508
1508
  /**
1509
- * Date and time the item was created.
1509
+ * Date and time the project item was created.
1510
1510
  * @readonly
1511
1511
  */
1512
1512
  _createdDate?: Date | null;
1513
1513
  /**
1514
- * Date and time the item was last updated.
1514
+ * Date and time the project item was last updated.
1515
1515
  * @readonly
1516
1516
  */
1517
1517
  _updatedDate?: Date | null;
@@ -2137,7 +2137,7 @@ interface UpdateProjectItem {
2137
2137
  /** Project ID. */
2138
2138
  projectId?: string | null;
2139
2139
  /**
2140
- * Item ID.
2140
+ * Project item ID.
2141
2141
  * @readonly
2142
2142
  */
2143
2143
  _id?: string | null;
@@ -2147,12 +2147,12 @@ interface UpdateProjectItem {
2147
2147
  * Default: [Epoch](https://www.epoch101.com/) timestamp. <br />
2148
2148
  */
2149
2149
  sortOrder?: number | null;
2150
- /** Item title. */
2150
+ /** Project item title. */
2151
2151
  title?: string | null;
2152
- /** Item description. */
2152
+ /** Project item description. */
2153
2153
  description?: string | null;
2154
2154
  /**
2155
- * Item data type. One of:
2155
+ * Project item data type. One of:
2156
2156
  * <br />
2157
2157
  * +`"IMAGE"`
2158
2158
  * <br />
@@ -2161,12 +2161,12 @@ interface UpdateProjectItem {
2161
2161
  */
2162
2162
  type?: Type;
2163
2163
  /**
2164
- * Date and time the item was created.
2164
+ * Date and time the project item was created.
2165
2165
  * @readonly
2166
2166
  */
2167
2167
  _createdDate?: Date | null;
2168
2168
  /**
2169
- * Date and time the item was last updated.
2169
+ * Date and time the project item was last updated.
2170
2170
  * @readonly
2171
2171
  */
2172
2172
  _updatedDate?: Date | null;
@@ -2227,7 +2227,7 @@ declare function updateProjectItem$1(httpClient: HttpClient): UpdateProjectItemS
2227
2227
  interface UpdateProjectItemSignature {
2228
2228
  /**
2229
2229
  * Updates a project item.
2230
- * @param - Item ID.
2230
+ * @param - Project item ID.
2231
2231
  * @returns The updated project item.
2232
2232
  */
2233
2233
  (_id: string | null, item: UpdateProjectItem): Promise<Item & ItemNonNullableFields>;
@@ -703,7 +703,7 @@ interface ProjectItemSettings$1 {
703
703
  defaultItemName?: DefaultItemName$1;
704
704
  }
705
705
  declare enum AddItemDirection$1 {
706
- /** Add new project items to the start of the gallery. */
706
+ /** Add new project items to the beginning of the gallery. */
707
707
  GALLERY_START = "GALLERY_START",
708
708
  /** Add new project items to the end of the gallery. */
709
709
  GALLERY_END = "GALLERY_END"
@@ -785,7 +785,7 @@ interface ProjectItemSettings {
785
785
  defaultItemName?: DefaultItemName;
786
786
  }
787
787
  declare enum AddItemDirection {
788
- /** Add new project items to the start of the gallery. */
788
+ /** Add new project items to the beginning of the gallery. */
789
789
  GALLERY_START = "GALLERY_START",
790
790
  /** Add new project items to the end of the gallery. */
791
791
  GALLERY_END = "GALLERY_END"
@@ -868,7 +868,7 @@ interface Item$1 extends ItemMetadataOneOf$1 {
868
868
  /** Project ID. */
869
869
  projectId?: string | null;
870
870
  /**
871
- * Item ID.
871
+ * Project item ID.
872
872
  * @readonly
873
873
  */
874
874
  id?: string | null;
@@ -878,12 +878,12 @@ interface Item$1 extends ItemMetadataOneOf$1 {
878
878
  * Default: [Epoch](https://www.epoch101.com/) timestamp. <br />
879
879
  */
880
880
  sortOrder?: number | null;
881
- /** Item title. */
881
+ /** Project item title. */
882
882
  title?: string | null;
883
- /** Item description. */
883
+ /** Project item description. */
884
884
  description?: string | null;
885
885
  /**
886
- * Item data type. One of:
886
+ * Project item data type. One of:
887
887
  * <br />
888
888
  * +`"IMAGE"`
889
889
  * <br />
@@ -892,12 +892,12 @@ interface Item$1 extends ItemMetadataOneOf$1 {
892
892
  */
893
893
  type?: Type$1;
894
894
  /**
895
- * Date and time the item was created.
895
+ * Date and time the project item was created.
896
896
  * @readonly
897
897
  */
898
898
  createdDate?: Date | null;
899
899
  /**
900
- * Date and time the item was last updated.
900
+ * Date and time the project item was last updated.
901
901
  * @readonly
902
902
  */
903
903
  updatedDate?: Date | null;
@@ -1280,7 +1280,7 @@ interface Item extends ItemMetadataOneOf {
1280
1280
  /** Project ID. */
1281
1281
  projectId?: string | null;
1282
1282
  /**
1283
- * Item ID.
1283
+ * Project item ID.
1284
1284
  * @readonly
1285
1285
  */
1286
1286
  _id?: string | null;
@@ -1290,12 +1290,12 @@ interface Item extends ItemMetadataOneOf {
1290
1290
  * Default: [Epoch](https://www.epoch101.com/) timestamp. <br />
1291
1291
  */
1292
1292
  sortOrder?: number | null;
1293
- /** Item title. */
1293
+ /** Project item title. */
1294
1294
  title?: string | null;
1295
- /** Item description. */
1295
+ /** Project item description. */
1296
1296
  description?: string | null;
1297
1297
  /**
1298
- * Item data type. One of:
1298
+ * Project item data type. One of:
1299
1299
  * <br />
1300
1300
  * +`"IMAGE"`
1301
1301
  * <br />
@@ -1304,12 +1304,12 @@ interface Item extends ItemMetadataOneOf {
1304
1304
  */
1305
1305
  type?: Type;
1306
1306
  /**
1307
- * Date and time the item was created.
1307
+ * Date and time the project item was created.
1308
1308
  * @readonly
1309
1309
  */
1310
1310
  _createdDate?: Date | null;
1311
1311
  /**
1312
- * Date and time the item was last updated.
1312
+ * Date and time the project item was last updated.
1313
1313
  * @readonly
1314
1314
  */
1315
1315
  _updatedDate?: Date | null;