@wix/auto_sdk_portfolio_projects 1.0.31 → 1.0.32

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.
@@ -1090,7 +1090,13 @@ interface BulkUpdateProjectsRequest {
1090
1090
  * @maxSize 100
1091
1091
  */
1092
1092
  projects?: MaskedProject[];
1093
- /** Whether to include the updated projects in the response. Set to `true` to receive the projects in the response. Default: `false` */
1093
+ /**
1094
+ * Whether to return the updated projects.
1095
+ *
1096
+ * Set to `true` to return the projects in the response.
1097
+ *
1098
+ * Default: `false`
1099
+ */
1094
1100
  returnFullEntity?: boolean | null;
1095
1101
  }
1096
1102
  interface MaskedProject {
@@ -1098,15 +1104,18 @@ interface MaskedProject {
1098
1104
  project?: Project;
1099
1105
  }
1100
1106
  interface BulkUpdateProjectsResponse {
1101
- /** Items created by bulk action. */
1107
+ /** List of individual Bulk Update Projects results. */
1102
1108
  results?: BulkUpdateProjectsResult[];
1103
- /** Bulk action metadata. */
1109
+ /** Total number of successes and failures for Bulk Update Projects. */
1104
1110
  bulkActionMetadata?: BulkActionMetadata;
1105
1111
  }
1106
1112
  interface BulkUpdateProjectsResult {
1107
- /** Item metadata. */
1113
+ /**
1114
+ * Information about the updated project.
1115
+ * Including its ID, index in the bulk request and whether it was successfully updated.
1116
+ */
1108
1117
  itemMetadata?: ItemMetadata;
1109
- /** Updated project. */
1118
+ /** Updated project. Only returned if `returnEntity` is set to `true` in the request. */
1110
1119
  project?: Project;
1111
1120
  }
1112
1121
  interface ItemMetadata {
@@ -1533,6 +1542,8 @@ interface UpdateProject {
1533
1542
  }
1534
1543
  /**
1535
1544
  * Updates multiple projects.
1545
+ *
1546
+ * To update a single project, call Update Project.
1536
1547
  * @public
1537
1548
  * @requiredField options.projects.project
1538
1549
  * @requiredField options.projects.project._id
@@ -1548,7 +1559,13 @@ interface BulkUpdateProjectsOptions {
1548
1559
  * @maxSize 100
1549
1560
  */
1550
1561
  projects?: MaskedProject[];
1551
- /** Whether to include the updated projects in the response. Set to `true` to receive the projects in the response. Default: `false` */
1562
+ /**
1563
+ * Whether to return the updated projects.
1564
+ *
1565
+ * Set to `true` to return the projects in the response.
1566
+ *
1567
+ * Default: `false`
1568
+ */
1552
1569
  returnFullEntity?: boolean | null;
1553
1570
  }
1554
1571
  /**