@wix/app-extensions 1.0.81 → 1.0.82

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.
@@ -395,6 +395,12 @@ interface EmbeddedScriptComponentData {
395
395
  * @maxSize 50
396
396
  */
397
397
  dependencies?: WixDependency[];
398
+ /**
399
+ * If it is currently disabled (meaning will not be loaded in production).
400
+ * Operator-controlled kill-switch — not settable via component create/update.
401
+ * @readonly
402
+ */
403
+ disabled?: boolean;
398
404
  }
399
405
  /** An extension for adding data collections to a site when the app is installed. */
400
406
  interface DataComponent {
@@ -101,6 +101,7 @@ __export(index_exports, {
101
101
  DomEventType: () => DomEventType,
102
102
  Domain: () => Domain,
103
103
  DtsDefinitionType: () => DtsDefinitionType,
104
+ DurableCredentialMode: () => DurableCredentialMode,
104
105
  EditableProperties: () => EditableProperties,
105
106
  EditorType: () => EditorType,
106
107
  EffectGroup: () => EffectGroup,
@@ -3509,6 +3510,12 @@ var TokenEndpointAuthMethod = /* @__PURE__ */ ((TokenEndpointAuthMethod2) => {
3509
3510
  TokenEndpointAuthMethod2["CLIENT_SECRET_BASIC"] = "CLIENT_SECRET_BASIC";
3510
3511
  return TokenEndpointAuthMethod2;
3511
3512
  })(TokenEndpointAuthMethod || {});
3513
+ var DurableCredentialMode = /* @__PURE__ */ ((DurableCredentialMode2) => {
3514
+ DurableCredentialMode2["UNKNOWN_DURABLE_CREDENTIAL_MODE"] = "UNKNOWN_DURABLE_CREDENTIAL_MODE";
3515
+ DurableCredentialMode2["REFRESH_TOKEN"] = "REFRESH_TOKEN";
3516
+ DurableCredentialMode2["LONG_LIVED_ACCESS_TOKEN"] = "LONG_LIVED_ACCESS_TOKEN";
3517
+ return DurableCredentialMode2;
3518
+ })(DurableCredentialMode || {});
3512
3519
  var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
3513
3520
  DispatchHttpMethod2["UNKNOWN_DISPATCH_HTTP_METHOD"] = "UNKNOWN_DISPATCH_HTTP_METHOD";
3514
3521
  DispatchHttpMethod2["GET"] = "GET";
@@ -6447,6 +6454,7 @@ function editorExposure({
6447
6454
  DomEventType,
6448
6455
  Domain,
6449
6456
  DtsDefinitionType,
6457
+ DurableCredentialMode,
6450
6458
  EditableProperties,
6451
6459
  EditorType,
6452
6460
  EffectGroup,