@wix/app-extensions 1.0.29 → 1.0.31
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.
|
@@ -10382,7 +10382,10 @@ interface ComponentTranslationAdditionalFieldsConfig {
|
|
|
10382
10382
|
}
|
|
10383
10383
|
/** @internal */
|
|
10384
10384
|
interface FormSchemaSpiConfig {
|
|
10385
|
-
/**
|
|
10385
|
+
/**
|
|
10386
|
+
* URI where the SPI Implementer is deployed
|
|
10387
|
+
* @maxLength 500
|
|
10388
|
+
*/
|
|
10386
10389
|
deploymentUri?: string;
|
|
10387
10390
|
/**
|
|
10388
10391
|
* Configuration of namespaces known by implementer
|
|
@@ -10408,8 +10411,8 @@ interface FormsSchemaNamespaceConfig {
|
|
|
10408
10411
|
multilingualEnabled?: boolean;
|
|
10409
10412
|
/** Attempt to select unique name for form */
|
|
10410
10413
|
uniqueName?: boolean;
|
|
10411
|
-
/** Enable
|
|
10412
|
-
|
|
10414
|
+
/** Enable hook for applying form schema related changes before form save, more info in OnBeforeSave. */
|
|
10415
|
+
onBeforeSaveHookEnabled?: boolean;
|
|
10413
10416
|
}
|
|
10414
10417
|
/** @internal */
|
|
10415
10418
|
interface FormsPermissions {
|
|
@@ -18252,7 +18255,7 @@ interface ArrayItems extends ArrayItemsArrayDataOneOf {
|
|
|
18252
18255
|
dataItem?: DataItem;
|
|
18253
18256
|
/**
|
|
18254
18257
|
* Marks this array as one whose item types are dynamic and resolved at runtime.
|
|
18255
|
-
* Only applicable when a template container (containerType = TEMPLATE) has
|
|
18258
|
+
* Only applicable when a template container (containerType = TEMPLATE) has an item_key
|
|
18256
18259
|
* that references this array. Mutually exclusive with 'data' and 'data_item'.
|
|
18257
18260
|
*/
|
|
18258
18261
|
dynamicItems?: boolean | null;
|
|
@@ -18268,7 +18271,7 @@ interface ArrayItemsArrayDataOneOf {
|
|
|
18268
18271
|
dataItem?: DataItem;
|
|
18269
18272
|
/**
|
|
18270
18273
|
* Marks this array as one whose item types are dynamic and resolved at runtime.
|
|
18271
|
-
* Only applicable when a template container (containerType = TEMPLATE) has
|
|
18274
|
+
* Only applicable when a template container (containerType = TEMPLATE) has an item_key
|
|
18272
18275
|
* that references this array. Mutually exclusive with 'data' and 'data_item'.
|
|
18273
18276
|
*/
|
|
18274
18277
|
dynamicItems?: boolean | null;
|
|
@@ -18473,7 +18476,6 @@ interface TemplateContainer {
|
|
|
18473
18476
|
interface ItemPath {
|
|
18474
18477
|
/**
|
|
18475
18478
|
* Deprecated, use item_key instead
|
|
18476
|
-
* @minLength 1
|
|
18477
18479
|
* @deprecated Deprecated, use item_key instead
|
|
18478
18480
|
* @replacedBy item_key
|
|
18479
18481
|
* @targetRemovalDate 2026-09-30
|
|
@@ -18483,6 +18485,7 @@ interface ItemPath {
|
|
|
18483
18485
|
* The key of the data item within the element's data scope.
|
|
18484
18486
|
* Example: "items" – top-level data item 'items'
|
|
18485
18487
|
* Example: "slides.title" – inner key 'title' of data item 'slides'
|
|
18488
|
+
* @minLength 1
|
|
18486
18489
|
*/
|
|
18487
18490
|
itemKey?: string;
|
|
18488
18491
|
}
|