@wix/auto_sdk_pricing-plans_pricing-plans-settings 1.0.11 → 1.0.12

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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +69 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +492 -1
  5. package/build/cjs/index.typings.js +69 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +492 -1
  8. package/build/cjs/meta.js +69 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +65 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +492 -1
  14. package/build/es/index.typings.mjs +65 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +492 -1
  17. package/build/es/meta.mjs +65 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +69 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +492 -1
  23. package/build/internal/cjs/index.typings.js +69 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +492 -1
  26. package/build/internal/cjs/meta.js +69 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +65 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +492 -1
  32. package/build/internal/es/index.typings.mjs +65 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +492 -1
  35. package/build/internal/es/meta.mjs +65 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +3 -3
@@ -548,6 +548,497 @@ interface CancelRequestedReason {
548
548
  }
549
549
  interface Empty {
550
550
  }
551
+ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
552
+ /** Emitted on a meta site creation. */
553
+ siteCreated?: SiteCreated;
554
+ /** Emitted on a meta site transfer completion. */
555
+ siteTransferred?: SiteTransferred;
556
+ /** Emitted on a meta site deletion. */
557
+ siteDeleted?: SiteDeleted;
558
+ /** Emitted on a meta site restoration. */
559
+ siteUndeleted?: SiteUndeleted;
560
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
561
+ sitePublished?: SitePublished;
562
+ /** Emitted on a meta site unpublish. */
563
+ siteUnpublished?: SiteUnpublished;
564
+ /** Emitted when meta site is marked as template. */
565
+ siteMarkedAsTemplate?: SiteMarkedAsTemplate;
566
+ /** Emitted when meta site is marked as a WixSite. */
567
+ siteMarkedAsWixSite?: SiteMarkedAsWixSite;
568
+ /** Emitted when an application is provisioned (installed). */
569
+ serviceProvisioned?: ServiceProvisioned;
570
+ /** Emitted when an application is removed (uninstalled). */
571
+ serviceRemoved?: ServiceRemoved;
572
+ /** Emitted when meta site name (URL slug) is changed. */
573
+ siteRenamedPayload?: SiteRenamed;
574
+ /** Emitted when meta site was permanently deleted. */
575
+ hardDeleted?: SiteHardDeleted;
576
+ /** Emitted on a namespace change. */
577
+ namespaceChanged?: NamespaceChanged;
578
+ /** Emitted when Studio is attached. */
579
+ studioAssigned?: StudioAssigned;
580
+ /** Emitted when Studio is detached. */
581
+ studioUnassigned?: StudioUnassigned;
582
+ /**
583
+ * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
584
+ * the actual URL.
585
+ *
586
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
587
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
588
+ */
589
+ urlChanged?: SiteUrlChanged;
590
+ /** Site is marked as PurgedExternally */
591
+ sitePurgedExternally?: SitePurgedExternally;
592
+ /** Emitted when Odeditor is attached. */
593
+ odeditorAssigned?: OdeditorAssigned;
594
+ /** Emitted when Odeditor is detached. */
595
+ odeditorUnassigned?: OdeditorUnassigned;
596
+ /** Emitted when Picasso is attached. */
597
+ picassoAssigned?: PicassoAssigned;
598
+ /** Emitted when Picasso is detached. */
599
+ picassoUnassigned?: PicassoUnassigned;
600
+ /** Emitted when Wixel is attached. */
601
+ wixelAssigned?: WixelAssigned;
602
+ /** Emitted when Wixel is detached. */
603
+ wixelUnassigned?: WixelUnassigned;
604
+ /** Emitted when StudioTwo is attached. */
605
+ studioTwoAssigned?: StudioTwoAssigned;
606
+ /** Emitted when StudioTwo is detached. */
607
+ studioTwoUnassigned?: StudioTwoUnassigned;
608
+ /**
609
+ * A meta site id.
610
+ * @format GUID
611
+ */
612
+ metaSiteId?: string;
613
+ /** A meta site version. Monotonically increasing. */
614
+ version?: string;
615
+ /** A timestamp of the event. */
616
+ timestamp?: string;
617
+ /**
618
+ * TODO(meta-site): Change validation once validations are disabled for consumers
619
+ * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
620
+ * @maxSize 4000
621
+ */
622
+ assets?: Asset[];
623
+ }
624
+ /** @oneof */
625
+ interface MetaSiteSpecialEventPayloadOneOf {
626
+ /** Emitted on a meta site creation. */
627
+ siteCreated?: SiteCreated;
628
+ /** Emitted on a meta site transfer completion. */
629
+ siteTransferred?: SiteTransferred;
630
+ /** Emitted on a meta site deletion. */
631
+ siteDeleted?: SiteDeleted;
632
+ /** Emitted on a meta site restoration. */
633
+ siteUndeleted?: SiteUndeleted;
634
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
635
+ sitePublished?: SitePublished;
636
+ /** Emitted on a meta site unpublish. */
637
+ siteUnpublished?: SiteUnpublished;
638
+ /** Emitted when meta site is marked as template. */
639
+ siteMarkedAsTemplate?: SiteMarkedAsTemplate;
640
+ /** Emitted when meta site is marked as a WixSite. */
641
+ siteMarkedAsWixSite?: SiteMarkedAsWixSite;
642
+ /** Emitted when an application is provisioned (installed). */
643
+ serviceProvisioned?: ServiceProvisioned;
644
+ /** Emitted when an application is removed (uninstalled). */
645
+ serviceRemoved?: ServiceRemoved;
646
+ /** Emitted when meta site name (URL slug) is changed. */
647
+ siteRenamedPayload?: SiteRenamed;
648
+ /** Emitted when meta site was permanently deleted. */
649
+ hardDeleted?: SiteHardDeleted;
650
+ /** Emitted on a namespace change. */
651
+ namespaceChanged?: NamespaceChanged;
652
+ /** Emitted when Studio is attached. */
653
+ studioAssigned?: StudioAssigned;
654
+ /** Emitted when Studio is detached. */
655
+ studioUnassigned?: StudioUnassigned;
656
+ /**
657
+ * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
658
+ * the actual URL.
659
+ *
660
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
661
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
662
+ */
663
+ urlChanged?: SiteUrlChanged;
664
+ /** Site is marked as PurgedExternally */
665
+ sitePurgedExternally?: SitePurgedExternally;
666
+ /** Emitted when Odeditor is attached. */
667
+ odeditorAssigned?: OdeditorAssigned;
668
+ /** Emitted when Odeditor is detached. */
669
+ odeditorUnassigned?: OdeditorUnassigned;
670
+ /** Emitted when Picasso is attached. */
671
+ picassoAssigned?: PicassoAssigned;
672
+ /** Emitted when Picasso is detached. */
673
+ picassoUnassigned?: PicassoUnassigned;
674
+ /** Emitted when Wixel is attached. */
675
+ wixelAssigned?: WixelAssigned;
676
+ /** Emitted when Wixel is detached. */
677
+ wixelUnassigned?: WixelUnassigned;
678
+ /** Emitted when StudioTwo is attached. */
679
+ studioTwoAssigned?: StudioTwoAssigned;
680
+ /** Emitted when StudioTwo is detached. */
681
+ studioTwoUnassigned?: StudioTwoUnassigned;
682
+ }
683
+ interface Asset {
684
+ /**
685
+ * An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum).
686
+ * @maxLength 36
687
+ */
688
+ appDefId?: string;
689
+ /**
690
+ * An instance id. For legacy reasons may be UUID or a string.
691
+ * @maxLength 200
692
+ */
693
+ instanceId?: string;
694
+ /** An application state. */
695
+ state?: StateWithLiterals;
696
+ }
697
+ declare enum State {
698
+ UNKNOWN = "UNKNOWN",
699
+ ENABLED = "ENABLED",
700
+ DISABLED = "DISABLED",
701
+ PENDING = "PENDING",
702
+ DEMO = "DEMO"
703
+ }
704
+ /** @enumType */
705
+ type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'PENDING' | 'DEMO';
706
+ interface SiteCreated {
707
+ /**
708
+ * A template identifier (empty if not created from a template).
709
+ * @maxLength 36
710
+ */
711
+ originTemplateId?: string;
712
+ /**
713
+ * An account id of the owner.
714
+ * @format GUID
715
+ */
716
+ ownerId?: string;
717
+ /** A context in which meta site was created. */
718
+ context?: SiteCreatedContextWithLiterals;
719
+ /**
720
+ * A meta site id from which this site was created.
721
+ *
722
+ * In case of a creation from a template it's a template id.
723
+ * In case of a site duplication ("Save As" in dashboard or duplicate in UM) it's an id of a source site.
724
+ * @format GUID
725
+ */
726
+ originMetaSiteId?: string | null;
727
+ /**
728
+ * A meta site name (URL slug).
729
+ * @maxLength 20
730
+ */
731
+ siteName?: string;
732
+ /** A namespace. */
733
+ namespace?: NamespaceWithLiterals;
734
+ }
735
+ declare enum SiteCreatedContext {
736
+ /** A valid option, we don't expose all reasons why site might be created. */
737
+ OTHER = "OTHER",
738
+ /** A meta site was created from template. */
739
+ FROM_TEMPLATE = "FROM_TEMPLATE",
740
+ /** A meta site was created by copying of the transfferred meta site. */
741
+ DUPLICATE_BY_SITE_TRANSFER = "DUPLICATE_BY_SITE_TRANSFER",
742
+ /** A copy of existing meta site. */
743
+ DUPLICATE = "DUPLICATE",
744
+ /** A meta site was created as a transfferred site (copy of the original), old flow, should die soon. */
745
+ OLD_SITE_TRANSFER = "OLD_SITE_TRANSFER",
746
+ /** deprecated A meta site was created for Flash editor. */
747
+ FLASH = "FLASH"
748
+ }
749
+ /** @enumType */
750
+ type SiteCreatedContextWithLiterals = SiteCreatedContext | 'OTHER' | 'FROM_TEMPLATE' | 'DUPLICATE_BY_SITE_TRANSFER' | 'DUPLICATE' | 'OLD_SITE_TRANSFER' | 'FLASH';
751
+ declare enum Namespace {
752
+ UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
753
+ /** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
754
+ WIX = "WIX",
755
+ /** 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. */
756
+ SHOUT_OUT = "SHOUT_OUT",
757
+ /** 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. */
758
+ ALBUMS = "ALBUMS",
759
+ /** 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. */
760
+ WIX_STORES_TEST_DRIVE = "WIX_STORES_TEST_DRIVE",
761
+ /** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
762
+ HOTELS = "HOTELS",
763
+ /** 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. */
764
+ CLUBS = "CLUBS",
765
+ /** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
766
+ ONBOARDING_DRAFT = "ONBOARDING_DRAFT",
767
+ /** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
768
+ DEV_SITE = "DEV_SITE",
769
+ /** 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. */
770
+ LOGOS = "LOGOS",
771
+ /** 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. */
772
+ VIDEO_MAKER = "VIDEO_MAKER",
773
+ /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
774
+ PARTNER_DASHBOARD = "PARTNER_DASHBOARD",
775
+ /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
776
+ DEV_CENTER_COMPANY = "DEV_CENTER_COMPANY",
777
+ /**
778
+ * A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
779
+ *
780
+ * Meta site with this namespace will *not* be shown in a user's site list by default.
781
+ */
782
+ HTML_DRAFT = "HTML_DRAFT",
783
+ /**
784
+ * the user-journey for Fitness users who want to start from managing their business instead of designing their website.
785
+ * Will be accessible from Site List and will not have a website app.
786
+ * Once the user attaches a site, the site will become a regular wixsite.
787
+ */
788
+ SITELESS_BUSINESS = "SITELESS_BUSINESS",
789
+ /** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
790
+ CREATOR_ECONOMY = "CREATOR_ECONOMY",
791
+ /** It is to be used in the Business First efforts. */
792
+ DASHBOARD_FIRST = "DASHBOARD_FIRST",
793
+ /** Bookings business flow with no site. */
794
+ ANYWHERE = "ANYWHERE",
795
+ /** Namespace for Headless Backoffice with no editor */
796
+ HEADLESS = "HEADLESS",
797
+ /**
798
+ * Namespace for master site that will exist in parent account that will be referenced by subaccounts
799
+ * The site will be used for account level CSM feature for enterprise
800
+ */
801
+ ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
802
+ /** Rise.ai Siteless account management for Gift Cards and Store Credit. */
803
+ RISE = "RISE",
804
+ /**
805
+ * As part of the branded app new funnel, users now can create a meta site that will be branded app first.
806
+ * There's a blank site behind the scene but it's blank).
807
+ * The Mobile company will be the owner of this namespace.
808
+ */
809
+ BRANDED_FIRST = "BRANDED_FIRST",
810
+ /** Nownia.com Siteless account management for Ai Scheduling Assistant. */
811
+ NOWNIA = "NOWNIA",
812
+ /**
813
+ * UGC Templates are templates that are created by users for personal use and to sale to other users.
814
+ * The Partners company owns this namespace.
815
+ */
816
+ UGC_TEMPLATE = "UGC_TEMPLATE",
817
+ /** Codux Headless Sites */
818
+ CODUX = "CODUX",
819
+ /** Bobb - AI Design Creator. */
820
+ MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR",
821
+ /**
822
+ * Shared Blog Site is a unique single site across Enterprise account,
823
+ * This site will hold all Blog posts related to the Marketing product.
824
+ */
825
+ SHARED_BLOG_ENTERPRISE = "SHARED_BLOG_ENTERPRISE",
826
+ /** Standalone forms (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
827
+ STANDALONE_FORMS = "STANDALONE_FORMS",
828
+ /** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
829
+ STANDALONE_EVENTS = "STANDALONE_EVENTS",
830
+ /** MIMIR - Siteless account for MIMIR Ai Job runner. */
831
+ MIMIR = "MIMIR",
832
+ /** Wix Twins platform. */
833
+ TWINS = "TWINS",
834
+ /** Wix Nano. */
835
+ NANO = "NANO",
836
+ /** Base44 headless sites. */
837
+ BASE44 = "BASE44"
838
+ }
839
+ /** @enumType */
840
+ 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' | 'NANO' | 'BASE44';
841
+ /** Site transferred to another user. */
842
+ interface SiteTransferred {
843
+ /**
844
+ * A previous owner id (user that transfers meta site).
845
+ * @format GUID
846
+ */
847
+ oldOwnerId?: string;
848
+ /**
849
+ * A new owner id (user that accepts meta site).
850
+ * @format GUID
851
+ */
852
+ newOwnerId?: string;
853
+ }
854
+ /** Soft deletion of the meta site. Could be restored. */
855
+ interface SiteDeleted {
856
+ /** A deletion context. */
857
+ deleteContext?: DeleteContext;
858
+ }
859
+ interface DeleteContext {
860
+ /** When the meta site was deleted. */
861
+ dateDeleted?: Date | null;
862
+ /** A status. */
863
+ deleteStatus?: DeleteStatusWithLiterals;
864
+ /**
865
+ * A reason (flow).
866
+ * @maxLength 255
867
+ */
868
+ deleteOrigin?: string;
869
+ /**
870
+ * A service that deleted it.
871
+ * @maxLength 255
872
+ */
873
+ initiatorId?: string | null;
874
+ }
875
+ declare enum DeleteStatus {
876
+ UNKNOWN = "UNKNOWN",
877
+ TRASH = "TRASH",
878
+ DELETED = "DELETED",
879
+ PENDING_PURGE = "PENDING_PURGE",
880
+ PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
881
+ }
882
+ /** @enumType */
883
+ type DeleteStatusWithLiterals = DeleteStatus | 'UNKNOWN' | 'TRASH' | 'DELETED' | 'PENDING_PURGE' | 'PURGED_EXTERNALLY';
884
+ /** Restoration of the meta site. */
885
+ interface SiteUndeleted {
886
+ }
887
+ /** First publish of a meta site. Or subsequent publish after unpublish. */
888
+ interface SitePublished {
889
+ }
890
+ interface SiteUnpublished {
891
+ /**
892
+ * A list of URLs previously associated with the meta site.
893
+ * @maxLength 4000
894
+ * @maxSize 10000
895
+ */
896
+ urls?: string[];
897
+ }
898
+ interface SiteMarkedAsTemplate {
899
+ }
900
+ interface SiteMarkedAsWixSite {
901
+ }
902
+ /**
903
+ * Represents a service provisioned a site.
904
+ *
905
+ * Note on `origin_instance_id`:
906
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
907
+ * This is because of the following scenario:
908
+ *
909
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
910
+ * such as a product catalog. When you create a site from this template, you inherit this
911
+ * default product catalog. However, if the template's product catalog is modified,
912
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
913
+ * your site remains consistent with what you initially received and does not include any
914
+ * changes made to the original template afterward.
915
+ * To ensure this, the TPA on the template gets a new instance_id.
916
+ */
917
+ interface ServiceProvisioned {
918
+ /**
919
+ * Either UUID or EmbeddedServiceType.
920
+ * @maxLength 36
921
+ */
922
+ appDefId?: string;
923
+ /**
924
+ * Not only UUID. Something here could be something weird.
925
+ * @maxLength 36
926
+ */
927
+ instanceId?: string;
928
+ /**
929
+ * An instance id from which this instance is originated.
930
+ * @maxLength 36
931
+ */
932
+ originInstanceId?: string;
933
+ /**
934
+ * A version.
935
+ * @maxLength 500
936
+ */
937
+ version?: string | null;
938
+ /**
939
+ * The origin meta site id
940
+ * @format GUID
941
+ */
942
+ originMetaSiteId?: string | null;
943
+ }
944
+ interface ServiceRemoved {
945
+ /**
946
+ * Either UUID or EmbeddedServiceType.
947
+ * @maxLength 36
948
+ */
949
+ appDefId?: string;
950
+ /**
951
+ * Not only UUID. Something here could be something weird.
952
+ * @maxLength 36
953
+ */
954
+ instanceId?: string;
955
+ /**
956
+ * A version.
957
+ * @maxLength 500
958
+ */
959
+ version?: string | null;
960
+ }
961
+ /** Rename of the site. Meaning, free public url has been changed as well. */
962
+ interface SiteRenamed {
963
+ /**
964
+ * A new meta site name (URL slug).
965
+ * @maxLength 20
966
+ */
967
+ newSiteName?: string;
968
+ /**
969
+ * A previous meta site name (URL slug).
970
+ * @maxLength 255
971
+ */
972
+ oldSiteName?: string;
973
+ }
974
+ /**
975
+ * Hard deletion of the meta site.
976
+ *
977
+ * Could not be restored. Therefore it's desirable to cleanup data.
978
+ */
979
+ interface SiteHardDeleted {
980
+ /** A deletion context. */
981
+ deleteContext?: DeleteContext;
982
+ }
983
+ interface NamespaceChanged {
984
+ /** A previous namespace. */
985
+ oldNamespace?: NamespaceWithLiterals;
986
+ /** A new namespace. */
987
+ newNamespace?: NamespaceWithLiterals;
988
+ }
989
+ /** Assigned Studio editor */
990
+ interface StudioAssigned {
991
+ }
992
+ /** Unassigned Studio editor */
993
+ interface StudioUnassigned {
994
+ }
995
+ /**
996
+ * Fired in case site URLs were changed in any way: new secondary domain, published, account slug rename, site rename etc.
997
+ *
998
+ * This is an internal event, it's not propagated in special events, because it's non-actionable. If you need to keep up
999
+ * with sites and its urls, you need to listen to another topic/event. Read about it:
1000
+ *
1001
+ * https://bo.wix.com/wix-docs/rest/meta-site/meta-site---urls-service
1002
+ */
1003
+ interface SiteUrlChanged {
1004
+ }
1005
+ /**
1006
+ * Used at the end of the deletion flow for both draft sites and when a user deletes a site.
1007
+ * Consumed by other teams to remove relevant data.
1008
+ */
1009
+ interface SitePurgedExternally {
1010
+ /**
1011
+ * @maxLength 2048
1012
+ * @maxSize 100
1013
+ * @deprecated
1014
+ * @targetRemovalDate 2025-04-15
1015
+ */
1016
+ appDefId?: string[];
1017
+ }
1018
+ /** Assigned Odeditor */
1019
+ interface OdeditorAssigned {
1020
+ }
1021
+ /** Unassigned Odeditor */
1022
+ interface OdeditorUnassigned {
1023
+ }
1024
+ /** Assigned Picasso editor */
1025
+ interface PicassoAssigned {
1026
+ }
1027
+ /** Unassigned Picasso */
1028
+ interface PicassoUnassigned {
1029
+ }
1030
+ /** Assigned Wixel */
1031
+ interface WixelAssigned {
1032
+ }
1033
+ /** Unassigned Wixel */
1034
+ interface WixelUnassigned {
1035
+ }
1036
+ /** Assigned StudioTwo */
1037
+ interface StudioTwoAssigned {
1038
+ }
1039
+ /** Unassigned StudioTwo */
1040
+ interface StudioTwoUnassigned {
1041
+ }
551
1042
  interface DomainEvent extends DomainEventBodyOneOf {
552
1043
  createdEvent?: EntityCreatedEvent;
553
1044
  updatedEvent?: EntityUpdatedEvent;
@@ -698,4 +1189,4 @@ type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q
698
1189
  declare function getPricingPlansSettings(): __PublicMethodMetaInfo<'GET', {}, GetPricingPlansSettingsRequest$1, GetPricingPlansSettingsRequest, GetPricingPlansSettingsResponse$1, GetPricingPlansSettingsResponse>;
699
1190
  declare function updatePricingPlansSettings(): __PublicMethodMetaInfo<'PATCH', {}, UpdatePricingPlansSettingsRequest$1, UpdatePricingPlansSettingsRequest, UpdatePricingPlansSettingsResponse$1, UpdatePricingPlansSettingsResponse>;
700
1191
 
701
- export { type ActionEvent as ActionEventOriginal, type AssignedFromFloatingReason as AssignedFromFloatingReasonOriginal, type BooleanFeature as BooleanFeatureOriginal, type CancelRequestedReason as CancelRequestedReasonOriginal, type ContractSwitchedReason as ContractSwitchedReasonOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type FeatureCancelled as FeatureCancelledOriginal, type FeatureCancelledReasonOneOf as FeatureCancelledReasonOneOfOriginal, type FeatureContext as FeatureContextOriginal, type FeatureDisabled as FeatureDisabledOriginal, type FeatureDisabledReasonOneOf as FeatureDisabledReasonOneOfOriginal, type FeatureEnabled as FeatureEnabledOriginal, type FeatureEnabledReasonOneOf as FeatureEnabledReasonOneOfOriginal, type FeatureEventEventOneOf as FeatureEventEventOneOfOriginal, type FeatureEvent as FeatureEventOriginal, type Feature as FeatureOriginal, FeaturePeriod as FeaturePeriodOriginal, type FeaturePeriodWithLiterals as FeaturePeriodWithLiteralsOriginal, type FeatureQuantityInfoOneOf as FeatureQuantityInfoOneOfOriginal, type FeatureUpdated as FeatureUpdatedOriginal, type FeatureUpdatedPreviousQuantityInfoOneOf as FeatureUpdatedPreviousQuantityInfoOneOfOriginal, type FeatureUpdatedReasonOneOf as FeatureUpdatedReasonOneOfOriginal, type GetPricingPlansSettingsRequest as GetPricingPlansSettingsRequestOriginal, type GetPricingPlansSettingsResponse as GetPricingPlansSettingsResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ManualFeatureCreationReason as ManualFeatureCreationReasonOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MigratedFromLegacyReason as MigratedFromLegacyReasonOriginal, type NewFeatureReason as NewFeatureReasonOriginal, type PricingPlansSettings as PricingPlansSettingsOriginal, type QuotaFeature as QuotaFeatureOriginal, type QuotaInfoEntry as QuotaInfoEntryOriginal, type QuotaInfo as QuotaInfoOriginal, type ReassignedFromSiteReason as ReassignedFromSiteReasonOriginal, type ReassignedToAnotherSiteReason as ReassignedToAnotherSiteReasonOriginal, type ReplacedByAnotherSubscriptionReason as ReplacedByAnotherSubscriptionReasonOriginal, type RestoreInfo as RestoreInfoOriginal, TaxableAddress as TaxableAddressOriginal, type TaxableAddressWithLiterals as TaxableAddressWithLiteralsOriginal, type TransferredFromAnotherAccountReason as TransferredFromAnotherAccountReasonOriginal, type TransferredToAnotherAccountReason as TransferredToAnotherAccountReasonOriginal, type UnAssingedToFloatingReason as UnAssingedToFloatingReasonOriginal, type UpdatePricingPlansSettingsRequest as UpdatePricingPlansSettingsRequestOriginal, type UpdatePricingPlansSettingsResponse as UpdatePricingPlansSettingsResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, getPricingPlansSettings, updatePricingPlansSettings };
1192
+ export { type ActionEvent as ActionEventOriginal, type Asset as AssetOriginal, type AssignedFromFloatingReason as AssignedFromFloatingReasonOriginal, type BooleanFeature as BooleanFeatureOriginal, type CancelRequestedReason as CancelRequestedReasonOriginal, type ContractSwitchedReason as ContractSwitchedReasonOriginal, type DeleteContext as DeleteContextOriginal, DeleteStatus as DeleteStatusOriginal, type DeleteStatusWithLiterals as DeleteStatusWithLiteralsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type FeatureCancelled as FeatureCancelledOriginal, type FeatureCancelledReasonOneOf as FeatureCancelledReasonOneOfOriginal, type FeatureContext as FeatureContextOriginal, type FeatureDisabled as FeatureDisabledOriginal, type FeatureDisabledReasonOneOf as FeatureDisabledReasonOneOfOriginal, type FeatureEnabled as FeatureEnabledOriginal, type FeatureEnabledReasonOneOf as FeatureEnabledReasonOneOfOriginal, type FeatureEventEventOneOf as FeatureEventEventOneOfOriginal, type FeatureEvent as FeatureEventOriginal, type Feature as FeatureOriginal, FeaturePeriod as FeaturePeriodOriginal, type FeaturePeriodWithLiterals as FeaturePeriodWithLiteralsOriginal, type FeatureQuantityInfoOneOf as FeatureQuantityInfoOneOfOriginal, type FeatureUpdated as FeatureUpdatedOriginal, type FeatureUpdatedPreviousQuantityInfoOneOf as FeatureUpdatedPreviousQuantityInfoOneOfOriginal, type FeatureUpdatedReasonOneOf as FeatureUpdatedReasonOneOfOriginal, type GetPricingPlansSettingsRequest as GetPricingPlansSettingsRequestOriginal, type GetPricingPlansSettingsResponse as GetPricingPlansSettingsResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ManualFeatureCreationReason as ManualFeatureCreationReasonOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaSiteSpecialEvent as MetaSiteSpecialEventOriginal, type MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOfOriginal, type MigratedFromLegacyReason as MigratedFromLegacyReasonOriginal, type NamespaceChanged as NamespaceChangedOriginal, Namespace as NamespaceOriginal, type NamespaceWithLiterals as NamespaceWithLiteralsOriginal, type NewFeatureReason as NewFeatureReasonOriginal, type OdeditorAssigned as OdeditorAssignedOriginal, type OdeditorUnassigned as OdeditorUnassignedOriginal, type PicassoAssigned as PicassoAssignedOriginal, type PicassoUnassigned as PicassoUnassignedOriginal, type PricingPlansSettings as PricingPlansSettingsOriginal, type QuotaFeature as QuotaFeatureOriginal, type QuotaInfoEntry as QuotaInfoEntryOriginal, type QuotaInfo as QuotaInfoOriginal, type ReassignedFromSiteReason as ReassignedFromSiteReasonOriginal, type ReassignedToAnotherSiteReason as ReassignedToAnotherSiteReasonOriginal, type ReplacedByAnotherSubscriptionReason as ReplacedByAnotherSubscriptionReasonOriginal, type RestoreInfo as RestoreInfoOriginal, type ServiceProvisioned as ServiceProvisionedOriginal, type ServiceRemoved as ServiceRemovedOriginal, SiteCreatedContext as SiteCreatedContextOriginal, type SiteCreatedContextWithLiterals as SiteCreatedContextWithLiteralsOriginal, type SiteCreated as SiteCreatedOriginal, type SiteDeleted as SiteDeletedOriginal, type SiteHardDeleted as SiteHardDeletedOriginal, type SiteMarkedAsTemplate as SiteMarkedAsTemplateOriginal, type SiteMarkedAsWixSite as SiteMarkedAsWixSiteOriginal, type SitePublished as SitePublishedOriginal, type SitePurgedExternally as SitePurgedExternallyOriginal, type SiteRenamed as SiteRenamedOriginal, type SiteTransferred as SiteTransferredOriginal, type SiteUndeleted as SiteUndeletedOriginal, type SiteUnpublished as SiteUnpublishedOriginal, type SiteUrlChanged as SiteUrlChangedOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, type StudioAssigned as StudioAssignedOriginal, type StudioTwoAssigned as StudioTwoAssignedOriginal, type StudioTwoUnassigned as StudioTwoUnassignedOriginal, type StudioUnassigned as StudioUnassignedOriginal, TaxableAddress as TaxableAddressOriginal, type TaxableAddressWithLiterals as TaxableAddressWithLiteralsOriginal, type TransferredFromAnotherAccountReason as TransferredFromAnotherAccountReasonOriginal, type TransferredToAnotherAccountReason as TransferredToAnotherAccountReasonOriginal, type UnAssingedToFloatingReason as UnAssingedToFloatingReasonOriginal, type UpdatePricingPlansSettingsRequest as UpdatePricingPlansSettingsRequestOriginal, type UpdatePricingPlansSettingsResponse as UpdatePricingPlansSettingsResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WixelAssigned as WixelAssignedOriginal, type WixelUnassigned as WixelUnassignedOriginal, type __PublicMethodMetaInfo, getPricingPlansSettings, updatePricingPlansSettings };
package/build/es/meta.mjs CHANGED
@@ -128,6 +128,67 @@ var FeaturePeriod = /* @__PURE__ */ ((FeaturePeriod2) => {
128
128
  FeaturePeriod2["YEAR"] = "YEAR";
129
129
  return FeaturePeriod2;
130
130
  })(FeaturePeriod || {});
131
+ var State = /* @__PURE__ */ ((State2) => {
132
+ State2["UNKNOWN"] = "UNKNOWN";
133
+ State2["ENABLED"] = "ENABLED";
134
+ State2["DISABLED"] = "DISABLED";
135
+ State2["PENDING"] = "PENDING";
136
+ State2["DEMO"] = "DEMO";
137
+ return State2;
138
+ })(State || {});
139
+ var SiteCreatedContext = /* @__PURE__ */ ((SiteCreatedContext2) => {
140
+ SiteCreatedContext2["OTHER"] = "OTHER";
141
+ SiteCreatedContext2["FROM_TEMPLATE"] = "FROM_TEMPLATE";
142
+ SiteCreatedContext2["DUPLICATE_BY_SITE_TRANSFER"] = "DUPLICATE_BY_SITE_TRANSFER";
143
+ SiteCreatedContext2["DUPLICATE"] = "DUPLICATE";
144
+ SiteCreatedContext2["OLD_SITE_TRANSFER"] = "OLD_SITE_TRANSFER";
145
+ SiteCreatedContext2["FLASH"] = "FLASH";
146
+ return SiteCreatedContext2;
147
+ })(SiteCreatedContext || {});
148
+ var Namespace = /* @__PURE__ */ ((Namespace2) => {
149
+ Namespace2["UNKNOWN_NAMESPACE"] = "UNKNOWN_NAMESPACE";
150
+ Namespace2["WIX"] = "WIX";
151
+ Namespace2["SHOUT_OUT"] = "SHOUT_OUT";
152
+ Namespace2["ALBUMS"] = "ALBUMS";
153
+ Namespace2["WIX_STORES_TEST_DRIVE"] = "WIX_STORES_TEST_DRIVE";
154
+ Namespace2["HOTELS"] = "HOTELS";
155
+ Namespace2["CLUBS"] = "CLUBS";
156
+ Namespace2["ONBOARDING_DRAFT"] = "ONBOARDING_DRAFT";
157
+ Namespace2["DEV_SITE"] = "DEV_SITE";
158
+ Namespace2["LOGOS"] = "LOGOS";
159
+ Namespace2["VIDEO_MAKER"] = "VIDEO_MAKER";
160
+ Namespace2["PARTNER_DASHBOARD"] = "PARTNER_DASHBOARD";
161
+ Namespace2["DEV_CENTER_COMPANY"] = "DEV_CENTER_COMPANY";
162
+ Namespace2["HTML_DRAFT"] = "HTML_DRAFT";
163
+ Namespace2["SITELESS_BUSINESS"] = "SITELESS_BUSINESS";
164
+ Namespace2["CREATOR_ECONOMY"] = "CREATOR_ECONOMY";
165
+ Namespace2["DASHBOARD_FIRST"] = "DASHBOARD_FIRST";
166
+ Namespace2["ANYWHERE"] = "ANYWHERE";
167
+ Namespace2["HEADLESS"] = "HEADLESS";
168
+ Namespace2["ACCOUNT_MASTER_CMS"] = "ACCOUNT_MASTER_CMS";
169
+ Namespace2["RISE"] = "RISE";
170
+ Namespace2["BRANDED_FIRST"] = "BRANDED_FIRST";
171
+ Namespace2["NOWNIA"] = "NOWNIA";
172
+ Namespace2["UGC_TEMPLATE"] = "UGC_TEMPLATE";
173
+ Namespace2["CODUX"] = "CODUX";
174
+ Namespace2["MEDIA_DESIGN_CREATOR"] = "MEDIA_DESIGN_CREATOR";
175
+ Namespace2["SHARED_BLOG_ENTERPRISE"] = "SHARED_BLOG_ENTERPRISE";
176
+ Namespace2["STANDALONE_FORMS"] = "STANDALONE_FORMS";
177
+ Namespace2["STANDALONE_EVENTS"] = "STANDALONE_EVENTS";
178
+ Namespace2["MIMIR"] = "MIMIR";
179
+ Namespace2["TWINS"] = "TWINS";
180
+ Namespace2["NANO"] = "NANO";
181
+ Namespace2["BASE44"] = "BASE44";
182
+ return Namespace2;
183
+ })(Namespace || {});
184
+ var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
185
+ DeleteStatus2["UNKNOWN"] = "UNKNOWN";
186
+ DeleteStatus2["TRASH"] = "TRASH";
187
+ DeleteStatus2["DELETED"] = "DELETED";
188
+ DeleteStatus2["PENDING_PURGE"] = "PENDING_PURGE";
189
+ DeleteStatus2["PURGED_EXTERNALLY"] = "PURGED_EXTERNALLY";
190
+ return DeleteStatus2;
191
+ })(DeleteStatus || {});
131
192
  var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
132
193
  WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
133
194
  WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
@@ -179,7 +240,11 @@ function updatePricingPlansSettings2() {
179
240
  };
180
241
  }
181
242
  export {
243
+ DeleteStatus as DeleteStatusOriginal,
182
244
  FeaturePeriod as FeaturePeriodOriginal,
245
+ Namespace as NamespaceOriginal,
246
+ SiteCreatedContext as SiteCreatedContextOriginal,
247
+ State as StateOriginal,
183
248
  TaxableAddress as TaxableAddressOriginal,
184
249
  WebhookIdentityType as WebhookIdentityTypeOriginal,
185
250
  getPricingPlansSettings2 as getPricingPlansSettings,