@wix/auto_sdk_portfolio_projects 1.0.27 → 1.0.29

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.
@@ -108,17 +108,29 @@ interface Video {
108
108
  durationInMillis?: number | null;
109
109
  }
110
110
  interface VideoResolution {
111
- /** Video URL. Required. */
111
+ /**
112
+ * Video URL. Required.
113
+ * @maxLength 8000
114
+ */
112
115
  url?: string;
113
116
  /** Video height. Required. */
114
117
  height?: number;
115
118
  /** Video width. Required. */
116
119
  width?: number;
117
- /** Video format for example, mp4, hls. Required. */
120
+ /**
121
+ * Video format for example, mp4, hls. Required.
122
+ * @maxLength 50
123
+ */
118
124
  format?: string;
119
- /** Video quality for example 480p, 720p. */
125
+ /**
126
+ * Video quality for example 480p, 720p.
127
+ * @maxLength 50
128
+ */
120
129
  quality?: string | null;
121
- /** Video filename. */
130
+ /**
131
+ * Video filename.
132
+ * @maxLength 512
133
+ */
122
134
  filename?: string | null;
123
135
  }
124
136
  /**
@@ -585,10 +597,12 @@ declare enum Namespace {
585
597
  /** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
586
598
  STANDALONE_EVENTS = "STANDALONE_EVENTS",
587
599
  /** MIMIR - Siteless account for MIMIR Ai Job runner. */
588
- MIMIR = "MIMIR"
600
+ MIMIR = "MIMIR",
601
+ /** Wix Twins platform. */
602
+ TWINS = "TWINS"
589
603
  }
590
604
  /** @enumType */
591
- 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';
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';
592
606
  /** Site transferred to another user. */
593
607
  interface SiteTransferred {
594
608
  /**
@@ -745,6 +745,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
745
745
  Namespace2["STANDALONE_FORMS"] = "STANDALONE_FORMS";
746
746
  Namespace2["STANDALONE_EVENTS"] = "STANDALONE_EVENTS";
747
747
  Namespace2["MIMIR"] = "MIMIR";
748
+ Namespace2["TWINS"] = "TWINS";
748
749
  return Namespace2;
749
750
  })(Namespace || {});
750
751
  var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {