@wix/auto_sdk_payments_payment-acceptance-configurations 1.0.27 → 1.0.28

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.
@@ -296,6 +296,465 @@ interface BulkUpdatePaymentAcceptanceConfigurationTagsByFilterResponse {
296
296
  }
297
297
  interface Empty {
298
298
  }
299
+ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
300
+ /** Emitted on a meta site creation. */
301
+ siteCreated?: SiteCreated;
302
+ /** Emitted on a meta site transfer completion. */
303
+ siteTransferred?: SiteTransferred;
304
+ /** Emitted on a meta site deletion. */
305
+ siteDeleted?: SiteDeleted;
306
+ /** Emitted on a meta site restoration. */
307
+ siteUndeleted?: SiteUndeleted;
308
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
309
+ sitePublished?: SitePublished;
310
+ /** Emitted on a meta site unpublish. */
311
+ siteUnpublished?: SiteUnpublished;
312
+ /** Emitted when meta site is marked as template. */
313
+ siteMarkedAsTemplate?: SiteMarkedAsTemplate;
314
+ /** Emitted when meta site is marked as a WixSite. */
315
+ siteMarkedAsWixSite?: SiteMarkedAsWixSite;
316
+ /** Emitted when an application is provisioned (installed). */
317
+ serviceProvisioned?: ServiceProvisioned;
318
+ /** Emitted when an application is removed (uninstalled). */
319
+ serviceRemoved?: ServiceRemoved;
320
+ /** Emitted when meta site name (URL slug) is changed. */
321
+ siteRenamedPayload?: SiteRenamed;
322
+ /** Emitted when meta site was permanently deleted. */
323
+ hardDeleted?: SiteHardDeleted;
324
+ /** Emitted on a namespace change. */
325
+ namespaceChanged?: NamespaceChanged;
326
+ /** Emitted when Studio is attached. */
327
+ studioAssigned?: StudioAssigned;
328
+ /** Emitted when Studio is detached. */
329
+ studioUnassigned?: StudioUnassigned;
330
+ /**
331
+ * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
332
+ * the actual URL.
333
+ *
334
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
335
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
336
+ */
337
+ urlChanged?: SiteUrlChanged;
338
+ /** Site is marked as PurgedExternally */
339
+ sitePurgedExternally?: SitePurgedExternally;
340
+ /** Emitted when Odeditor is attached. */
341
+ odeditorAssigned?: OdeditorAssigned;
342
+ /** Emitted when Odeditor is detached. */
343
+ odeditorUnassigned?: OdeditorUnassigned;
344
+ /** Emitted when Picasso is attached. */
345
+ picassoAssigned?: PicassoAssigned;
346
+ /** Emitted when Picasso is detached. */
347
+ picassoUnassigned?: PicassoUnassigned;
348
+ /**
349
+ * A meta site id.
350
+ * @format GUID
351
+ */
352
+ metaSiteId?: string;
353
+ /** A meta site version. Monotonically increasing. */
354
+ version?: string;
355
+ /** A timestamp of the event. */
356
+ timestamp?: string;
357
+ /**
358
+ * TODO(meta-site): Change validation once validations are disabled for consumers
359
+ * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
360
+ * @maxSize 4000
361
+ */
362
+ assets?: Asset[];
363
+ }
364
+ /** @oneof */
365
+ interface MetaSiteSpecialEventPayloadOneOf {
366
+ /** Emitted on a meta site creation. */
367
+ siteCreated?: SiteCreated;
368
+ /** Emitted on a meta site transfer completion. */
369
+ siteTransferred?: SiteTransferred;
370
+ /** Emitted on a meta site deletion. */
371
+ siteDeleted?: SiteDeleted;
372
+ /** Emitted on a meta site restoration. */
373
+ siteUndeleted?: SiteUndeleted;
374
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
375
+ sitePublished?: SitePublished;
376
+ /** Emitted on a meta site unpublish. */
377
+ siteUnpublished?: SiteUnpublished;
378
+ /** Emitted when meta site is marked as template. */
379
+ siteMarkedAsTemplate?: SiteMarkedAsTemplate;
380
+ /** Emitted when meta site is marked as a WixSite. */
381
+ siteMarkedAsWixSite?: SiteMarkedAsWixSite;
382
+ /** Emitted when an application is provisioned (installed). */
383
+ serviceProvisioned?: ServiceProvisioned;
384
+ /** Emitted when an application is removed (uninstalled). */
385
+ serviceRemoved?: ServiceRemoved;
386
+ /** Emitted when meta site name (URL slug) is changed. */
387
+ siteRenamedPayload?: SiteRenamed;
388
+ /** Emitted when meta site was permanently deleted. */
389
+ hardDeleted?: SiteHardDeleted;
390
+ /** Emitted on a namespace change. */
391
+ namespaceChanged?: NamespaceChanged;
392
+ /** Emitted when Studio is attached. */
393
+ studioAssigned?: StudioAssigned;
394
+ /** Emitted when Studio is detached. */
395
+ studioUnassigned?: StudioUnassigned;
396
+ /**
397
+ * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
398
+ * the actual URL.
399
+ *
400
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
401
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
402
+ */
403
+ urlChanged?: SiteUrlChanged;
404
+ /** Site is marked as PurgedExternally */
405
+ sitePurgedExternally?: SitePurgedExternally;
406
+ /** Emitted when Odeditor is attached. */
407
+ odeditorAssigned?: OdeditorAssigned;
408
+ /** Emitted when Odeditor is detached. */
409
+ odeditorUnassigned?: OdeditorUnassigned;
410
+ /** Emitted when Picasso is attached. */
411
+ picassoAssigned?: PicassoAssigned;
412
+ /** Emitted when Picasso is detached. */
413
+ picassoUnassigned?: PicassoUnassigned;
414
+ }
415
+ interface Asset {
416
+ /**
417
+ * An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum).
418
+ * @maxLength 36
419
+ */
420
+ appDefId?: string;
421
+ /**
422
+ * An instance id. For legacy reasons may be UUID or a string.
423
+ * @maxLength 200
424
+ */
425
+ instanceId?: string;
426
+ /** An application state. */
427
+ state?: StateWithLiterals;
428
+ }
429
+ declare enum State {
430
+ UNKNOWN = "UNKNOWN",
431
+ ENABLED = "ENABLED",
432
+ DISABLED = "DISABLED",
433
+ PENDING = "PENDING",
434
+ DEMO = "DEMO"
435
+ }
436
+ /** @enumType */
437
+ type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'PENDING' | 'DEMO';
438
+ interface SiteCreated {
439
+ /**
440
+ * A template identifier (empty if not created from a template).
441
+ * @maxLength 36
442
+ */
443
+ originTemplateId?: string;
444
+ /**
445
+ * An account id of the owner.
446
+ * @format GUID
447
+ */
448
+ ownerId?: string;
449
+ /** A context in which meta site was created. */
450
+ context?: SiteCreatedContextWithLiterals;
451
+ /**
452
+ * A meta site id from which this site was created.
453
+ *
454
+ * In case of a creation from a template it's a template id.
455
+ * In case of a site duplication ("Save As" in dashboard or duplicate in UM) it's an id of a source site.
456
+ * @format GUID
457
+ */
458
+ originMetaSiteId?: string | null;
459
+ /**
460
+ * A meta site name (URL slug).
461
+ * @maxLength 20
462
+ */
463
+ siteName?: string;
464
+ /** A namespace. */
465
+ namespace?: NamespaceWithLiterals;
466
+ }
467
+ declare enum SiteCreatedContext {
468
+ /** A valid option, we don't expose all reasons why site might be created. */
469
+ OTHER = "OTHER",
470
+ /** A meta site was created from template. */
471
+ FROM_TEMPLATE = "FROM_TEMPLATE",
472
+ /** A meta site was created by copying of the transfferred meta site. */
473
+ DUPLICATE_BY_SITE_TRANSFER = "DUPLICATE_BY_SITE_TRANSFER",
474
+ /** A copy of existing meta site. */
475
+ DUPLICATE = "DUPLICATE",
476
+ /** A meta site was created as a transfferred site (copy of the original), old flow, should die soon. */
477
+ OLD_SITE_TRANSFER = "OLD_SITE_TRANSFER",
478
+ /** deprecated A meta site was created for Flash editor. */
479
+ FLASH = "FLASH"
480
+ }
481
+ /** @enumType */
482
+ type SiteCreatedContextWithLiterals = SiteCreatedContext | 'OTHER' | 'FROM_TEMPLATE' | 'DUPLICATE_BY_SITE_TRANSFER' | 'DUPLICATE' | 'OLD_SITE_TRANSFER' | 'FLASH';
483
+ declare enum Namespace {
484
+ UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
485
+ /** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
486
+ WIX = "WIX",
487
+ /** ShoutOut stand alone product. These are siteless (no actual Wix site, no HtmlWeb). MetaSites with this namespace will *not* be shown in a user's site list by default. */
488
+ SHOUT_OUT = "SHOUT_OUT",
489
+ /** MetaSites created by the Albums product, they appear as part of the Albums app. MetaSites with this namespace will *not* be shown in a user's site list by default. */
490
+ ALBUMS = "ALBUMS",
491
+ /** Part of the WixStores migration flow, a user tries to migrate and gets this site to view and if the user likes it then stores removes this namespace and deletes the old site with the old stores. MetaSites with this namespace will *not* be shown in a user's site list by default. */
492
+ WIX_STORES_TEST_DRIVE = "WIX_STORES_TEST_DRIVE",
493
+ /** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
494
+ HOTELS = "HOTELS",
495
+ /** Clubs siteless MetaSites, a club without a wix website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
496
+ CLUBS = "CLUBS",
497
+ /** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
498
+ ONBOARDING_DRAFT = "ONBOARDING_DRAFT",
499
+ /** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
500
+ DEV_SITE = "DEV_SITE",
501
+ /** LogoMaker websites offered to the user after logo purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
502
+ LOGOS = "LOGOS",
503
+ /** VideoMaker websites offered to the user after video purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
504
+ VIDEO_MAKER = "VIDEO_MAKER",
505
+ /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
506
+ PARTNER_DASHBOARD = "PARTNER_DASHBOARD",
507
+ /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
508
+ DEV_CENTER_COMPANY = "DEV_CENTER_COMPANY",
509
+ /**
510
+ * A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
511
+ *
512
+ * Meta site with this namespace will *not* be shown in a user's site list by default.
513
+ */
514
+ HTML_DRAFT = "HTML_DRAFT",
515
+ /**
516
+ * the user-journey for Fitness users who want to start from managing their business instead of designing their website.
517
+ * Will be accessible from Site List and will not have a website app.
518
+ * Once the user attaches a site, the site will become a regular wixsite.
519
+ */
520
+ SITELESS_BUSINESS = "SITELESS_BUSINESS",
521
+ /** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
522
+ CREATOR_ECONOMY = "CREATOR_ECONOMY",
523
+ /** It is to be used in the Business First efforts. */
524
+ DASHBOARD_FIRST = "DASHBOARD_FIRST",
525
+ /** Bookings business flow with no site. */
526
+ ANYWHERE = "ANYWHERE",
527
+ /** Namespace for Headless Backoffice with no editor */
528
+ HEADLESS = "HEADLESS",
529
+ /**
530
+ * Namespace for master site that will exist in parent account that will be referenced by subaccounts
531
+ * The site will be used for account level CSM feature for enterprise
532
+ */
533
+ ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
534
+ /** Rise.ai Siteless account management for Gift Cards and Store Credit. */
535
+ RISE = "RISE",
536
+ /**
537
+ * As part of the branded app new funnel, users now can create a meta site that will be branded app first.
538
+ * There's a blank site behind the scene but it's blank).
539
+ * The Mobile company will be the owner of this namespace.
540
+ */
541
+ BRANDED_FIRST = "BRANDED_FIRST",
542
+ /** Nownia.com Siteless account management for Ai Scheduling Assistant. */
543
+ NOWNIA = "NOWNIA",
544
+ /**
545
+ * UGC Templates are templates that are created by users for personal use and to sale to other users.
546
+ * The Partners company owns this namespace.
547
+ */
548
+ UGC_TEMPLATE = "UGC_TEMPLATE",
549
+ /** Codux Headless Sites */
550
+ CODUX = "CODUX",
551
+ /** Bobb - AI Design Creator. */
552
+ MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR",
553
+ /**
554
+ * Shared Blog Site is a unique single site across Enterprise account,
555
+ * This site will hold all Blog posts related to the Marketing product.
556
+ */
557
+ SHARED_BLOG_ENTERPRISE = "SHARED_BLOG_ENTERPRISE",
558
+ /** Standalone forms (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
559
+ STANDALONE_FORMS = "STANDALONE_FORMS",
560
+ /** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
561
+ STANDALONE_EVENTS = "STANDALONE_EVENTS",
562
+ /** MIMIR - Siteless account for MIMIR Ai Job runner. */
563
+ MIMIR = "MIMIR",
564
+ /** Wix Twins platform. */
565
+ TWINS = "TWINS"
566
+ }
567
+ /** @enumType */
568
+ type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS';
569
+ /** Site transferred to another user. */
570
+ interface SiteTransferred {
571
+ /**
572
+ * A previous owner id (user that transfers meta site).
573
+ * @format GUID
574
+ */
575
+ oldOwnerId?: string;
576
+ /**
577
+ * A new owner id (user that accepts meta site).
578
+ * @format GUID
579
+ */
580
+ newOwnerId?: string;
581
+ }
582
+ /** Soft deletion of the meta site. Could be restored. */
583
+ interface SiteDeleted {
584
+ /** A deletion context. */
585
+ deleteContext?: DeleteContext;
586
+ }
587
+ interface DeleteContext {
588
+ /** When the meta site was deleted. */
589
+ dateDeleted?: Date | null;
590
+ /** A status. */
591
+ deleteStatus?: DeleteStatusWithLiterals;
592
+ /**
593
+ * A reason (flow).
594
+ * @maxLength 255
595
+ */
596
+ deleteOrigin?: string;
597
+ /**
598
+ * A service that deleted it.
599
+ * @maxLength 255
600
+ */
601
+ initiatorId?: string | null;
602
+ }
603
+ declare enum DeleteStatus {
604
+ UNKNOWN = "UNKNOWN",
605
+ TRASH = "TRASH",
606
+ DELETED = "DELETED",
607
+ PENDING_PURGE = "PENDING_PURGE",
608
+ PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
609
+ }
610
+ /** @enumType */
611
+ type DeleteStatusWithLiterals = DeleteStatus | 'UNKNOWN' | 'TRASH' | 'DELETED' | 'PENDING_PURGE' | 'PURGED_EXTERNALLY';
612
+ /** Restoration of the meta site. */
613
+ interface SiteUndeleted {
614
+ }
615
+ /** First publish of a meta site. Or subsequent publish after unpublish. */
616
+ interface SitePublished {
617
+ }
618
+ interface SiteUnpublished {
619
+ /**
620
+ * A list of URLs previously associated with the meta site.
621
+ * @maxLength 4000
622
+ * @maxSize 10000
623
+ */
624
+ urls?: string[];
625
+ }
626
+ interface SiteMarkedAsTemplate {
627
+ }
628
+ interface SiteMarkedAsWixSite {
629
+ }
630
+ /**
631
+ * Represents a service provisioned a site.
632
+ *
633
+ * Note on `origin_instance_id`:
634
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
635
+ * This is because of the following scenario:
636
+ *
637
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
638
+ * such as a product catalog. When you create a site from this template, you inherit this
639
+ * default product catalog. However, if the template's product catalog is modified,
640
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
641
+ * your site remains consistent with what you initially received and does not include any
642
+ * changes made to the original template afterward.
643
+ * To ensure this, the TPA on the template gets a new instance_id.
644
+ */
645
+ interface ServiceProvisioned {
646
+ /**
647
+ * Either UUID or EmbeddedServiceType.
648
+ * @maxLength 36
649
+ */
650
+ appDefId?: string;
651
+ /**
652
+ * Not only UUID. Something here could be something weird.
653
+ * @maxLength 36
654
+ */
655
+ instanceId?: string;
656
+ /**
657
+ * An instance id from which this instance is originated.
658
+ * @maxLength 36
659
+ */
660
+ originInstanceId?: string;
661
+ /**
662
+ * A version.
663
+ * @maxLength 500
664
+ */
665
+ version?: string | null;
666
+ /**
667
+ * The origin meta site id
668
+ * @format GUID
669
+ */
670
+ originMetaSiteId?: string | null;
671
+ }
672
+ interface ServiceRemoved {
673
+ /**
674
+ * Either UUID or EmbeddedServiceType.
675
+ * @maxLength 36
676
+ */
677
+ appDefId?: string;
678
+ /**
679
+ * Not only UUID. Something here could be something weird.
680
+ * @maxLength 36
681
+ */
682
+ instanceId?: string;
683
+ /**
684
+ * A version.
685
+ * @maxLength 500
686
+ */
687
+ version?: string | null;
688
+ }
689
+ /** Rename of the site. Meaning, free public url has been changed as well. */
690
+ interface SiteRenamed {
691
+ /**
692
+ * A new meta site name (URL slug).
693
+ * @maxLength 20
694
+ */
695
+ newSiteName?: string;
696
+ /**
697
+ * A previous meta site name (URL slug).
698
+ * @maxLength 255
699
+ */
700
+ oldSiteName?: string;
701
+ }
702
+ /**
703
+ * Hard deletion of the meta site.
704
+ *
705
+ * Could not be restored. Therefore it's desirable to cleanup data.
706
+ */
707
+ interface SiteHardDeleted {
708
+ /** A deletion context. */
709
+ deleteContext?: DeleteContext;
710
+ }
711
+ interface NamespaceChanged {
712
+ /** A previous namespace. */
713
+ oldNamespace?: NamespaceWithLiterals;
714
+ /** A new namespace. */
715
+ newNamespace?: NamespaceWithLiterals;
716
+ }
717
+ /** Assigned Studio editor */
718
+ interface StudioAssigned {
719
+ }
720
+ /** Unassigned Studio editor */
721
+ interface StudioUnassigned {
722
+ }
723
+ /**
724
+ * Fired in case site URLs were changed in any way: new secondary domain, published, account slug rename, site rename etc.
725
+ *
726
+ * This is an internal event, it's not propagated in special events, because it's non-actionable. If you need to keep up
727
+ * with sites and its urls, you need to listen to another topic/event. Read about it:
728
+ *
729
+ * https://bo.wix.com/wix-docs/rest/meta-site/meta-site---urls-service
730
+ */
731
+ interface SiteUrlChanged {
732
+ }
733
+ /**
734
+ * Used at the end of the deletion flow for both draft sites and when a user deletes a site.
735
+ * Consumed by other teams to remove relevant data.
736
+ */
737
+ interface SitePurgedExternally {
738
+ /**
739
+ * @maxLength 2048
740
+ * @maxSize 100
741
+ * @deprecated
742
+ * @targetRemovalDate 2025-04-15
743
+ */
744
+ appDefId?: string[];
745
+ }
746
+ /** Assigned Odeditor */
747
+ interface OdeditorAssigned {
748
+ }
749
+ /** Unassigned Odeditor */
750
+ interface OdeditorUnassigned {
751
+ }
752
+ /** Assigned Picasso editor */
753
+ interface PicassoAssigned {
754
+ }
755
+ /** Unassigned Picasso */
756
+ interface PicassoUnassigned {
757
+ }
299
758
  interface DomainEvent extends DomainEventBodyOneOf {
300
759
  createdEvent?: EntityCreatedEvent;
301
760
  updatedEvent?: EntityUpdatedEvent;
@@ -560,4 +1019,4 @@ interface BulkUpdatePaymentAcceptanceConfigurationTagsByFilterOptions {
560
1019
  unassignTags?: Tags;
561
1020
  }
562
1021
 
563
- export { type ActionEvent, type ApplicationError, type BulkActionMetadata, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsResult, type CreatePaymentAcceptanceConfigurationRequest, type CreatePaymentAcceptanceConfigurationResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DeletePaymentAcceptanceConfigurationRequest, type DeletePaymentAcceptanceConfigurationResponse, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type ExtendedFields, type GetPaymentAcceptanceConfigurationRequest, type GetPaymentAcceptanceConfigurationResponse, type IdentificationData, type IdentificationDataIdOneOf, type ItemMetadata, type MessageEnvelope, type PaymentAcceptanceConfiguration, type PaymentAcceptanceConfigurationsQueryBuilder, type PaymentAcceptanceConfigurationsQueryResult, type PaymentAcceptanceRule, type QueryPaymentAcceptanceConfigurationsRequest, type QueryPaymentAcceptanceConfigurationsResponse, type RestoreInfo, SortOrder, type SortOrderWithLiterals, type Sorting, type TagList, type Tags, type UpdatePaymentAcceptanceConfiguration, type UpdatePaymentAcceptanceConfigurationRequest, type UpdatePaymentAcceptanceConfigurationResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals };
1022
+ export { type ActionEvent, type ApplicationError, type Asset, type BulkActionMetadata, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsResult, type CreatePaymentAcceptanceConfigurationRequest, type CreatePaymentAcceptanceConfigurationResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DeleteContext, type DeletePaymentAcceptanceConfigurationRequest, type DeletePaymentAcceptanceConfigurationResponse, DeleteStatus, type DeleteStatusWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type ExtendedFields, type GetPaymentAcceptanceConfigurationRequest, type GetPaymentAcceptanceConfigurationResponse, type IdentificationData, type IdentificationDataIdOneOf, type ItemMetadata, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type OdeditorAssigned, type OdeditorUnassigned, type PaymentAcceptanceConfiguration, type PaymentAcceptanceConfigurationsQueryBuilder, type PaymentAcceptanceConfigurationsQueryResult, type PaymentAcceptanceRule, type PicassoAssigned, type PicassoUnassigned, type QueryPaymentAcceptanceConfigurationsRequest, type QueryPaymentAcceptanceConfigurationsResponse, type RestoreInfo, type ServiceProvisioned, type ServiceRemoved, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, State, type StateWithLiterals, type StudioAssigned, type StudioUnassigned, type TagList, type Tags, type UpdatePaymentAcceptanceConfiguration, type UpdatePaymentAcceptanceConfigurationRequest, type UpdatePaymentAcceptanceConfigurationResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals };
@@ -270,6 +270,65 @@ var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
270
270
  SortOrder2["DESC"] = "DESC";
271
271
  return SortOrder2;
272
272
  })(SortOrder || {});
273
+ var State = /* @__PURE__ */ ((State2) => {
274
+ State2["UNKNOWN"] = "UNKNOWN";
275
+ State2["ENABLED"] = "ENABLED";
276
+ State2["DISABLED"] = "DISABLED";
277
+ State2["PENDING"] = "PENDING";
278
+ State2["DEMO"] = "DEMO";
279
+ return State2;
280
+ })(State || {});
281
+ var SiteCreatedContext = /* @__PURE__ */ ((SiteCreatedContext2) => {
282
+ SiteCreatedContext2["OTHER"] = "OTHER";
283
+ SiteCreatedContext2["FROM_TEMPLATE"] = "FROM_TEMPLATE";
284
+ SiteCreatedContext2["DUPLICATE_BY_SITE_TRANSFER"] = "DUPLICATE_BY_SITE_TRANSFER";
285
+ SiteCreatedContext2["DUPLICATE"] = "DUPLICATE";
286
+ SiteCreatedContext2["OLD_SITE_TRANSFER"] = "OLD_SITE_TRANSFER";
287
+ SiteCreatedContext2["FLASH"] = "FLASH";
288
+ return SiteCreatedContext2;
289
+ })(SiteCreatedContext || {});
290
+ var Namespace = /* @__PURE__ */ ((Namespace2) => {
291
+ Namespace2["UNKNOWN_NAMESPACE"] = "UNKNOWN_NAMESPACE";
292
+ Namespace2["WIX"] = "WIX";
293
+ Namespace2["SHOUT_OUT"] = "SHOUT_OUT";
294
+ Namespace2["ALBUMS"] = "ALBUMS";
295
+ Namespace2["WIX_STORES_TEST_DRIVE"] = "WIX_STORES_TEST_DRIVE";
296
+ Namespace2["HOTELS"] = "HOTELS";
297
+ Namespace2["CLUBS"] = "CLUBS";
298
+ Namespace2["ONBOARDING_DRAFT"] = "ONBOARDING_DRAFT";
299
+ Namespace2["DEV_SITE"] = "DEV_SITE";
300
+ Namespace2["LOGOS"] = "LOGOS";
301
+ Namespace2["VIDEO_MAKER"] = "VIDEO_MAKER";
302
+ Namespace2["PARTNER_DASHBOARD"] = "PARTNER_DASHBOARD";
303
+ Namespace2["DEV_CENTER_COMPANY"] = "DEV_CENTER_COMPANY";
304
+ Namespace2["HTML_DRAFT"] = "HTML_DRAFT";
305
+ Namespace2["SITELESS_BUSINESS"] = "SITELESS_BUSINESS";
306
+ Namespace2["CREATOR_ECONOMY"] = "CREATOR_ECONOMY";
307
+ Namespace2["DASHBOARD_FIRST"] = "DASHBOARD_FIRST";
308
+ Namespace2["ANYWHERE"] = "ANYWHERE";
309
+ Namespace2["HEADLESS"] = "HEADLESS";
310
+ Namespace2["ACCOUNT_MASTER_CMS"] = "ACCOUNT_MASTER_CMS";
311
+ Namespace2["RISE"] = "RISE";
312
+ Namespace2["BRANDED_FIRST"] = "BRANDED_FIRST";
313
+ Namespace2["NOWNIA"] = "NOWNIA";
314
+ Namespace2["UGC_TEMPLATE"] = "UGC_TEMPLATE";
315
+ Namespace2["CODUX"] = "CODUX";
316
+ Namespace2["MEDIA_DESIGN_CREATOR"] = "MEDIA_DESIGN_CREATOR";
317
+ Namespace2["SHARED_BLOG_ENTERPRISE"] = "SHARED_BLOG_ENTERPRISE";
318
+ Namespace2["STANDALONE_FORMS"] = "STANDALONE_FORMS";
319
+ Namespace2["STANDALONE_EVENTS"] = "STANDALONE_EVENTS";
320
+ Namespace2["MIMIR"] = "MIMIR";
321
+ Namespace2["TWINS"] = "TWINS";
322
+ return Namespace2;
323
+ })(Namespace || {});
324
+ var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
325
+ DeleteStatus2["UNKNOWN"] = "UNKNOWN";
326
+ DeleteStatus2["TRASH"] = "TRASH";
327
+ DeleteStatus2["DELETED"] = "DELETED";
328
+ DeleteStatus2["PENDING_PURGE"] = "PENDING_PURGE";
329
+ DeleteStatus2["PURGED_EXTERNALLY"] = "PURGED_EXTERNALLY";
330
+ return DeleteStatus2;
331
+ })(DeleteStatus || {});
273
332
  var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
274
333
  WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
275
334
  WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
@@ -571,7 +630,11 @@ var bulkUpdatePaymentAcceptanceConfigurationTagsByFilter4 = /* @__PURE__ */ crea
571
630
  bulkUpdatePaymentAcceptanceConfigurationTagsByFilter3
572
631
  );
573
632
  export {
633
+ DeleteStatus,
634
+ Namespace,
635
+ SiteCreatedContext,
574
636
  SortOrder,
637
+ State,
575
638
  WebhookIdentityType,
576
639
  bulkUpdatePaymentAcceptanceConfigurationTags4 as bulkUpdatePaymentAcceptanceConfigurationTags,
577
640
  bulkUpdatePaymentAcceptanceConfigurationTagsByFilter4 as bulkUpdatePaymentAcceptanceConfigurationTagsByFilter,