@wix/app-extensions 1.0.81 → 1.0.83

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 {
@@ -2957,6 +2957,12 @@ var TokenEndpointAuthMethod = /* @__PURE__ */ ((TokenEndpointAuthMethod2) => {
2957
2957
  TokenEndpointAuthMethod2["CLIENT_SECRET_BASIC"] = "CLIENT_SECRET_BASIC";
2958
2958
  return TokenEndpointAuthMethod2;
2959
2959
  })(TokenEndpointAuthMethod || {});
2960
+ var DurableCredentialMode = /* @__PURE__ */ ((DurableCredentialMode2) => {
2961
+ DurableCredentialMode2["UNKNOWN_DURABLE_CREDENTIAL_MODE"] = "UNKNOWN_DURABLE_CREDENTIAL_MODE";
2962
+ DurableCredentialMode2["REFRESH_TOKEN"] = "REFRESH_TOKEN";
2963
+ DurableCredentialMode2["LONG_LIVED_ACCESS_TOKEN"] = "LONG_LIVED_ACCESS_TOKEN";
2964
+ return DurableCredentialMode2;
2965
+ })(DurableCredentialMode || {});
2960
2966
  var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
2961
2967
  DispatchHttpMethod2["UNKNOWN_DISPATCH_HTTP_METHOD"] = "UNKNOWN_DISPATCH_HTTP_METHOD";
2962
2968
  DispatchHttpMethod2["GET"] = "GET";
@@ -5894,6 +5900,7 @@ export {
5894
5900
  DomEventType,
5895
5901
  Domain,
5896
5902
  DtsDefinitionType,
5903
+ DurableCredentialMode,
5897
5904
  EditableProperties,
5898
5905
  EditorType,
5899
5906
  EffectGroup,