@wix/app-extensions 1.0.31 → 1.0.33

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.
@@ -2658,6 +2658,10 @@ interface PageComponentData {
2658
2658
  * @maxLength 300
2659
2659
  */
2660
2660
  shortDescription?: string | null;
2661
+ /** When true, this page is displayed as full page on desktop only */
2662
+ fullPageDesktopOnly?: boolean | null;
2663
+ /** When true, this page is used as a landing page on mobile */
2664
+ landingPageInMobile?: boolean | null;
2661
2665
  }
2662
2666
  /** @internal */
2663
2667
  interface Padding {
@@ -10383,12 +10387,12 @@ interface ComponentTranslationAdditionalFieldsConfig {
10383
10387
  /** @internal */
10384
10388
  interface FormSchemaSpiConfig {
10385
10389
  /**
10386
- * URI where the SPI Implementer is deployed
10390
+ * URI where the SPI Implementer is deployed.
10387
10391
  * @maxLength 500
10388
10392
  */
10389
10393
  deploymentUri?: string;
10390
10394
  /**
10391
- * Configuration of namespaces known by implementer
10395
+ * Configuration of namespaces known by implementer.
10392
10396
  * @maxSize 3
10393
10397
  */
10394
10398
  namespaceConfigs?: FormsSchemaNamespaceConfig[];
@@ -10409,10 +10413,15 @@ interface FormsSchemaNamespaceConfig {
10409
10413
  restrictions?: Restrictions;
10410
10414
  /** Enable translations with multilingual */
10411
10415
  multilingualEnabled?: boolean;
10412
- /** Attempt to select unique name for form */
10416
+ /** Attempt to select unique name for form. */
10413
10417
  uniqueName?: boolean;
10414
10418
  /** Enable hook for applying form schema related changes before form save, more info in OnBeforeSave. */
10415
10419
  onBeforeSaveHookEnabled?: boolean;
10420
+ /**
10421
+ * Allow changing submission access level for forms in this namespace.
10422
+ * When false (default), forms in this namespace can only use OWNER_AND_COLLABORATORS.
10423
+ */
10424
+ allowSubmissionAccessOverride?: boolean;
10416
10425
  }
10417
10426
  /** @internal */
10418
10427
  interface FormsPermissions {