@wix/auto_sdk_forms_submissions 1.0.38 → 1.0.39

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.
@@ -299,21 +299,21 @@ declare const validateFormSubmission: MaybeContext<BuildRESTFunction<typeof vali
299
299
  * <br>
300
300
  * Triggered when a submission is created.
301
301
  */
302
- declare const onSubmissionCreated: BuildEventDefinition<typeof onSubmissionCreated$1>;
302
+ declare const onSubmissionCreated: BuildEventDefinition<typeof onSubmissionCreated$1> & typeof onSubmissionCreated$1;
303
303
  /**
304
304
  * > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance) to confirm that the app named `wix_forms` is installed on the site.
305
305
  * <br>
306
306
  * Triggered when a submission is deleted.
307
307
  */
308
- declare const onSubmissionDeleted: BuildEventDefinition<typeof onSubmissionDeleted$1>;
308
+ declare const onSubmissionDeleted: BuildEventDefinition<typeof onSubmissionDeleted$1> & typeof onSubmissionDeleted$1;
309
309
  /** */
310
- declare const onSubmissionRemovedSubmissionFromTrash: BuildEventDefinition<typeof onSubmissionRemovedSubmissionFromTrash$1>;
310
+ declare const onSubmissionRemovedSubmissionFromTrash: BuildEventDefinition<typeof onSubmissionRemovedSubmissionFromTrash$1> & typeof onSubmissionRemovedSubmissionFromTrash$1;
311
311
  /** */
312
- declare const onSubmissionStatusUpdated: BuildEventDefinition<typeof onSubmissionStatusUpdated$1>;
312
+ declare const onSubmissionStatusUpdated: BuildEventDefinition<typeof onSubmissionStatusUpdated$1> & typeof onSubmissionStatusUpdated$1;
313
313
  /** */
314
- declare const onSubmissionContactMapped: BuildEventDefinition<typeof onSubmissionContactMapped$1>;
314
+ declare const onSubmissionContactMapped: BuildEventDefinition<typeof onSubmissionContactMapped$1> & typeof onSubmissionContactMapped$1;
315
315
  /** */
316
- declare const onSubmissionContactMappingSkipped: BuildEventDefinition<typeof onSubmissionContactMappingSkipped$1>;
316
+ declare const onSubmissionContactMappingSkipped: BuildEventDefinition<typeof onSubmissionContactMappingSkipped$1> & typeof onSubmissionContactMappingSkipped$1;
317
317
  /**
318
318
  * > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance) to confirm that the app named `wix_forms` is installed on the site.
319
319
  * <br>
@@ -322,6 +322,6 @@ declare const onSubmissionContactMappingSkipped: BuildEventDefinition<typeof onS
322
322
  * - Submission order status is updated.
323
323
  * - Submission is confirmed.
324
324
  */
325
- declare const onSubmissionUpdated: BuildEventDefinition<typeof onSubmissionUpdated$1>;
325
+ declare const onSubmissionUpdated: BuildEventDefinition<typeof onSubmissionUpdated$1> & typeof onSubmissionUpdated$1;
326
326
 
327
327
  export { BulkDeleteSubmissionOptions, BulkDeleteSubmissionResponse, BulkRemoveSubmissionFromTrashBinOptions, BulkRemoveSubmissionFromTrashBinResponse, ConfirmSubmissionResponse, CountDeletedSubmissionsOptions, CountDeletedSubmissionsResponse, CountSubmissionsByFilterOptions, CountSubmissionsByFilterResponse, CountSubmissionsOptions, CountSubmissionsResponse, CreateSubmissionApplicationErrors, CreateSubmissionOptions, CreateSubmissionValidationErrors, CursorQuery, DeleteSubmissionOptions, FormSubmission, FormSubmissionSearch, GetDeletedSubmissionResponse, GetFormattedSubmissionResponse, GetMediaUploadURLResponse, GetSubmissionDownloadUrlResponse, ListDeletedSubmissionsOptions, ListDeletedSubmissionsResponse, QuerySubmissionOptions, QuerySubmissionResponse, QuerySubmissionsByNamespaceOptions, RestoreSubmissionFromTrashBinResponse, SearchSubmissionsByNamespaceResponse, SubmissionContactMappedEnvelope, SubmissionContactMappingSkippedEnvelope, SubmissionCreatedEnvelope, SubmissionDeletedEnvelope, SubmissionRemovedSubmissionFromTrashEnvelope, SubmissionStatusUpdatedEnvelope, SubmissionUpdatedEnvelope, SubmissionsQueryBuilder, UpdateExtendedFieldsOptions, UpdateExtendedFieldsResponse, UpdateSubmission, UpdateSubmissionValidationErrors, UpsertContactFromSubmissionOptions, UpsertContactFromSubmissionResponse, ValidateFormSubmissionOptions, ValidateFormSubmissionResponse, bulkDeleteSubmission, bulkMarkSubmissionsAsSeen, bulkRemoveSubmissionFromTrashBin, confirmSubmission, countDeletedSubmissions, countSubmissions, countSubmissionsByFilter, createSubmission, deleteSubmission, getDeletedSubmission, getFormattedSubmission, getMediaUploadUrl, getSubmission, getSubmissionDownloadUrl, listDeletedSubmissions, onSubmissionContactMapped, onSubmissionContactMappingSkipped, onSubmissionCreated, onSubmissionDeleted, onSubmissionRemovedSubmissionFromTrash, onSubmissionStatusUpdated, onSubmissionUpdated, querySubmission, querySubmissionsByNamespace, removeSubmissionFromTrashBin, restoreSubmissionFromTrashBin, searchSubmissionsByNamespace, updateExtendedFields, updateSubmission, upsertContactFromSubmission, validateFormSubmission };
@@ -2828,13 +2828,27 @@ var updateExtendedFields4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTM
2828
2828
  var bulkUpdateFormSubmissionTags4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkUpdateFormSubmissionTags3);
2829
2829
  var bulkUpdateFormSubmissionTagsByFilter4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkUpdateFormSubmissionTagsByFilter3);
2830
2830
  var validateFormSubmission4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(validateFormSubmission3);
2831
- var onSubmissionCreated2 = (0, import_event_definition_modules.createEventModule)(onSubmissionCreated);
2832
- var onSubmissionDeleted2 = (0, import_event_definition_modules.createEventModule)(onSubmissionDeleted);
2833
- var onSubmissionRemovedSubmissionFromTrash2 = (0, import_event_definition_modules.createEventModule)(onSubmissionRemovedSubmissionFromTrash);
2834
- var onSubmissionStatusUpdated2 = (0, import_event_definition_modules.createEventModule)(onSubmissionStatusUpdated);
2835
- var onSubmissionContactMapped2 = (0, import_event_definition_modules.createEventModule)(onSubmissionContactMapped);
2836
- var onSubmissionContactMappingSkipped2 = (0, import_event_definition_modules.createEventModule)(onSubmissionContactMappingSkipped);
2837
- var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule)(onSubmissionUpdated);
2831
+ var onSubmissionCreated2 = (0, import_event_definition_modules.createEventModule)(
2832
+ onSubmissionCreated
2833
+ );
2834
+ var onSubmissionDeleted2 = (0, import_event_definition_modules.createEventModule)(
2835
+ onSubmissionDeleted
2836
+ );
2837
+ var onSubmissionRemovedSubmissionFromTrash2 = (0, import_event_definition_modules.createEventModule)(
2838
+ onSubmissionRemovedSubmissionFromTrash
2839
+ );
2840
+ var onSubmissionStatusUpdated2 = (0, import_event_definition_modules.createEventModule)(
2841
+ onSubmissionStatusUpdated
2842
+ );
2843
+ var onSubmissionContactMapped2 = (0, import_event_definition_modules.createEventModule)(
2844
+ onSubmissionContactMapped
2845
+ );
2846
+ var onSubmissionContactMappingSkipped2 = (0, import_event_definition_modules.createEventModule)(
2847
+ onSubmissionContactMappingSkipped
2848
+ );
2849
+ var onSubmissionUpdated2 = (0, import_event_definition_modules.createEventModule)(
2850
+ onSubmissionUpdated
2851
+ );
2838
2852
  // Annotate the CommonJS export names for ESM import in node:
2839
2853
  0 && (module.exports = {
2840
2854
  AddressInfoTag,