@wix/app-extensions 1.0.37 → 1.0.38

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.
@@ -7601,6 +7601,8 @@ interface FormsSubmissionsNamespaceConfig {
7601
7601
  deletePendingAfterDays?: number | null;
7602
7602
  /** Sets a flag that indicates a submission, when exporting, should have signature as image instead of text. */
7603
7603
  exportSignatureAsImage?: boolean;
7604
+ /** If set to true, will index submissions with filterable fields that can be used in search. */
7605
+ enableSearchFilters?: boolean;
7604
7606
  }
7605
7607
  /** @internal */
7606
7608
  interface SubmissionPermissions {
@@ -23396,6 +23398,8 @@ interface WixelSPIConfig {
23396
23398
  exposeAssetSummary?: boolean;
23397
23399
  /** Whether create asset by file functionality is enabled for this SPI implementation. */
23398
23400
  exposeCreateAssetByFile?: boolean;
23401
+ /** Whether handle project duplicated handling is enabled for this SPI implementation. */
23402
+ exposeHandleProjectDuplicated?: boolean;
23399
23403
  /** Which file media type is supported by this SPI implementation when creating assets by file. */
23400
23404
  fileMediaType?: FileMediaTypeWithLiterals;
23401
23405
  }