@wix/auto_sdk_portfolio_projects 1.0.30 → 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.
@@ -599,10 +599,12 @@ declare enum Namespace {
599
599
  /** MIMIR - Siteless account for MIMIR Ai Job runner. */
600
600
  MIMIR = "MIMIR",
601
601
  /** Wix Twins platform. */
602
- TWINS = "TWINS"
602
+ TWINS = "TWINS",
603
+ /** Wix Nano. */
604
+ NANO = "NANO"
603
605
  }
604
606
  /** @enumType */
605
- type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS';
607
+ type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS' | 'NANO';
606
608
  /** Site transferred to another user. */
607
609
  interface SiteTransferred {
608
610
  /**
@@ -1088,7 +1090,13 @@ interface BulkUpdateProjectsRequest {
1088
1090
  * @maxSize 100
1089
1091
  */
1090
1092
  projects?: MaskedProject[];
1091
- /** 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
+ */
1092
1100
  returnFullEntity?: boolean | null;
1093
1101
  }
1094
1102
  interface MaskedProject {
@@ -1096,15 +1104,18 @@ interface MaskedProject {
1096
1104
  project?: Project;
1097
1105
  }
1098
1106
  interface BulkUpdateProjectsResponse {
1099
- /** Items created by bulk action. */
1107
+ /** List of individual Bulk Update Projects results. */
1100
1108
  results?: BulkUpdateProjectsResult[];
1101
- /** Bulk action metadata. */
1109
+ /** Total number of successes and failures for Bulk Update Projects. */
1102
1110
  bulkActionMetadata?: BulkActionMetadata;
1103
1111
  }
1104
1112
  interface BulkUpdateProjectsResult {
1105
- /** 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
+ */
1106
1117
  itemMetadata?: ItemMetadata;
1107
- /** Updated project. */
1118
+ /** Updated project. Only returned if `returnEntity` is set to `true` in the request. */
1108
1119
  project?: Project;
1109
1120
  }
1110
1121
  interface ItemMetadata {
@@ -1531,6 +1542,8 @@ interface UpdateProject {
1531
1542
  }
1532
1543
  /**
1533
1544
  * Updates multiple projects.
1545
+ *
1546
+ * To update a single project, call Update Project.
1534
1547
  * @public
1535
1548
  * @requiredField options.projects.project
1536
1549
  * @requiredField options.projects.project._id
@@ -1546,7 +1559,13 @@ interface BulkUpdateProjectsOptions {
1546
1559
  * @maxSize 100
1547
1560
  */
1548
1561
  projects?: MaskedProject[];
1549
- /** 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
+ */
1550
1569
  returnFullEntity?: boolean | null;
1551
1570
  }
1552
1571
  /**
@@ -746,6 +746,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
746
746
  Namespace2["STANDALONE_EVENTS"] = "STANDALONE_EVENTS";
747
747
  Namespace2["MIMIR"] = "MIMIR";
748
748
  Namespace2["TWINS"] = "TWINS";
749
+ Namespace2["NANO"] = "NANO";
749
750
  return Namespace2;
750
751
  })(Namespace || {});
751
752
  var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {