@wix/app-extensions 1.0.32 → 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.
|
@@ -10387,12 +10387,12 @@ interface ComponentTranslationAdditionalFieldsConfig {
|
|
|
10387
10387
|
/** @internal */
|
|
10388
10388
|
interface FormSchemaSpiConfig {
|
|
10389
10389
|
/**
|
|
10390
|
-
* URI where the SPI Implementer is deployed
|
|
10390
|
+
* URI where the SPI Implementer is deployed.
|
|
10391
10391
|
* @maxLength 500
|
|
10392
10392
|
*/
|
|
10393
10393
|
deploymentUri?: string;
|
|
10394
10394
|
/**
|
|
10395
|
-
* Configuration of namespaces known by implementer
|
|
10395
|
+
* Configuration of namespaces known by implementer.
|
|
10396
10396
|
* @maxSize 3
|
|
10397
10397
|
*/
|
|
10398
10398
|
namespaceConfigs?: FormsSchemaNamespaceConfig[];
|
|
@@ -10413,10 +10413,15 @@ interface FormsSchemaNamespaceConfig {
|
|
|
10413
10413
|
restrictions?: Restrictions;
|
|
10414
10414
|
/** Enable translations with multilingual */
|
|
10415
10415
|
multilingualEnabled?: boolean;
|
|
10416
|
-
/** Attempt to select unique name for form */
|
|
10416
|
+
/** Attempt to select unique name for form. */
|
|
10417
10417
|
uniqueName?: boolean;
|
|
10418
10418
|
/** Enable hook for applying form schema related changes before form save, more info in OnBeforeSave. */
|
|
10419
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;
|
|
10420
10425
|
}
|
|
10421
10426
|
/** @internal */
|
|
10422
10427
|
interface FormsPermissions {
|