@wix/auto_sdk_payments_payment-acceptance-configurations 1.0.30 → 1.0.32

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.
@@ -1,25 +1,25 @@
1
1
  /** PaymentAcceptanceConfiguration */
2
2
  interface PaymentAcceptanceConfiguration {
3
3
  /**
4
- * id
4
+ * Id
5
5
  * @format GUID
6
6
  * @readonly
7
7
  * @immutable
8
8
  */
9
9
  _id?: string | null;
10
10
  /**
11
- * app_id
11
+ * App id
12
12
  * @format GUID
13
13
  * @immutable
14
14
  */
15
15
  appId?: string | null;
16
16
  /**
17
- * rules
17
+ * Rules
18
18
  * @maxSize 1000
19
19
  */
20
20
  rules?: PaymentAcceptanceRule[];
21
21
  /**
22
- * revision
22
+ * Revision
23
23
  * @readonly
24
24
  */
25
25
  revision?: string | null;
@@ -41,18 +41,77 @@ interface PaymentAcceptanceConfiguration {
41
41
  }
42
42
  interface PaymentAcceptanceRule {
43
43
  /**
44
- * payment_method_type_id
44
+ * Payment method type id
45
45
  * @format GUID
46
46
  */
47
47
  paymentMethodTypeId?: string;
48
48
  /**
49
- * account_connection_id
49
+ * Account connection id
50
50
  * @format GUID
51
51
  */
52
52
  accountConnectionId?: string;
53
- /** merchant_enabled */
53
+ /** Merchant enabled */
54
54
  merchantEnabled?: boolean;
55
55
  }
56
+ interface Brands {
57
+ /**
58
+ * Brand ids
59
+ * @maxSize 200
60
+ * @format GUID
61
+ */
62
+ brandIds?: string[];
63
+ }
64
+ interface Countries {
65
+ /**
66
+ * Country codes
67
+ * @maxSize 200
68
+ * @format COUNTRY
69
+ */
70
+ countryCodes?: string[];
71
+ }
72
+ interface Currencies {
73
+ /**
74
+ * Currency codes
75
+ * @maxSize 200
76
+ * @format CURRENCY
77
+ */
78
+ currencyCodes?: string[];
79
+ }
80
+ interface Restrictions extends RestrictionsBrandsOneOf, RestrictionsCountriesOneOf, RestrictionsCurrenciesOneOf {
81
+ /** Allowed brands */
82
+ allowedBrands?: Brands;
83
+ /** Prohibited brands */
84
+ prohibitedBrands?: Brands;
85
+ /** Allowed countries */
86
+ allowedCountries?: Countries;
87
+ /** Prohibited countries */
88
+ prohibitedCountries?: Countries;
89
+ /** Allowed currencies */
90
+ allowedCurrencies?: Currencies;
91
+ /** Prohibited currencies */
92
+ prohibitedCurrencies?: Currencies;
93
+ }
94
+ /** @oneof */
95
+ interface RestrictionsBrandsOneOf {
96
+ /** Allowed brands */
97
+ allowedBrands?: Brands;
98
+ /** Prohibited brands */
99
+ prohibitedBrands?: Brands;
100
+ }
101
+ /** @oneof */
102
+ interface RestrictionsCountriesOneOf {
103
+ /** Allowed countries */
104
+ allowedCountries?: Countries;
105
+ /** Prohibited countries */
106
+ prohibitedCountries?: Countries;
107
+ }
108
+ /** @oneof */
109
+ interface RestrictionsCurrenciesOneOf {
110
+ /** Allowed currencies */
111
+ allowedCurrencies?: Currencies;
112
+ /** Prohibited currencies */
113
+ prohibitedCurrencies?: Currencies;
114
+ }
56
115
  interface ExtendedFields {
57
116
  /**
58
117
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
@@ -296,1013 +355,278 @@ interface BulkUpdatePaymentAcceptanceConfigurationTagsByFilterResponse {
296
355
  }
297
356
  interface Empty {
298
357
  }
299
- interface MetaSiteFullEvent {
300
- /** The entire DTO, describing MetaSite. */
301
- metaSite?: MetaSite;
302
- /** The context of this event (create, update, delete). */
303
- context?: ContextWithLiterals;
358
+ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
359
+ /** Emitted on a meta site creation. */
360
+ siteCreated?: SiteCreated;
361
+ /** Emitted on a meta site transfer completion. */
362
+ siteTransferred?: SiteTransferred;
363
+ /** Emitted on a meta site deletion. */
364
+ siteDeleted?: SiteDeleted;
365
+ /** Emitted on a meta site restoration. */
366
+ siteUndeleted?: SiteUndeleted;
367
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
368
+ sitePublished?: SitePublished;
369
+ /** Emitted on a meta site unpublish. */
370
+ siteUnpublished?: SiteUnpublished;
371
+ /** Emitted when meta site is marked as template. */
372
+ siteMarkedAsTemplate?: SiteMarkedAsTemplate;
373
+ /** Emitted when meta site is marked as a WixSite. */
374
+ siteMarkedAsWixSite?: SiteMarkedAsWixSite;
375
+ /** Emitted when an application is provisioned (installed). */
376
+ serviceProvisioned?: ServiceProvisioned;
377
+ /** Emitted when an application is removed (uninstalled). */
378
+ serviceRemoved?: ServiceRemoved;
379
+ /** Emitted when meta site name (URL slug) is changed. */
380
+ siteRenamedPayload?: SiteRenamed;
381
+ /** Emitted when meta site was permanently deleted. */
382
+ hardDeleted?: SiteHardDeleted;
383
+ /** Emitted on a namespace change. */
384
+ namespaceChanged?: NamespaceChanged;
385
+ /** Emitted when Studio is attached. */
386
+ studioAssigned?: StudioAssigned;
387
+ /** Emitted when Studio is detached. */
388
+ studioUnassigned?: StudioUnassigned;
304
389
  /**
305
- * Events that triggered this event.
306
- * @maxSize 1000
390
+ * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
391
+ * the actual URL.
392
+ *
393
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
394
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
307
395
  */
308
- events?: MetaSiteEvent[];
309
- }
310
- interface MetaSite {
396
+ urlChanged?: SiteUrlChanged;
397
+ /** Site is marked as PurgedExternally */
398
+ sitePurgedExternally?: SitePurgedExternally;
399
+ /** Emitted when Odeditor is attached. */
400
+ odeditorAssigned?: OdeditorAssigned;
401
+ /** Emitted when Odeditor is detached. */
402
+ odeditorUnassigned?: OdeditorUnassigned;
403
+ /** Emitted when Picasso is attached. */
404
+ picassoAssigned?: PicassoAssigned;
405
+ /** Emitted when Picasso is detached. */
406
+ picassoUnassigned?: PicassoUnassigned;
311
407
  /**
312
408
  * A meta site id.
313
409
  * @format GUID
314
410
  */
315
- _id?: string;
316
- /** A version. */
411
+ metaSiteId?: string;
412
+ /** A meta site version. Monotonically increasing. */
317
413
  version?: string;
414
+ /** A timestamp of the event. */
415
+ timestamp?: string;
318
416
  /**
319
- * TBD.
320
- * @format GUID
417
+ * TODO(meta-site): Change validation once validations are disabled for consumers
418
+ * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
419
+ * @maxSize 4000
321
420
  */
322
- originTemplateId?: string | null;
421
+ assets?: Asset[];
422
+ }
423
+ /** @oneof */
424
+ interface MetaSiteSpecialEventPayloadOneOf {
425
+ /** Emitted on a meta site creation. */
426
+ siteCreated?: SiteCreated;
427
+ /** Emitted on a meta site transfer completion. */
428
+ siteTransferred?: SiteTransferred;
429
+ /** Emitted on a meta site deletion. */
430
+ siteDeleted?: SiteDeleted;
431
+ /** Emitted on a meta site restoration. */
432
+ siteUndeleted?: SiteUndeleted;
433
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
434
+ sitePublished?: SitePublished;
435
+ /** Emitted on a meta site unpublish. */
436
+ siteUnpublished?: SiteUnpublished;
437
+ /** Emitted when meta site is marked as template. */
438
+ siteMarkedAsTemplate?: SiteMarkedAsTemplate;
439
+ /** Emitted when meta site is marked as a WixSite. */
440
+ siteMarkedAsWixSite?: SiteMarkedAsWixSite;
441
+ /** Emitted when an application is provisioned (installed). */
442
+ serviceProvisioned?: ServiceProvisioned;
443
+ /** Emitted when an application is removed (uninstalled). */
444
+ serviceRemoved?: ServiceRemoved;
445
+ /** Emitted when meta site name (URL slug) is changed. */
446
+ siteRenamedPayload?: SiteRenamed;
447
+ /** Emitted when meta site was permanently deleted. */
448
+ hardDeleted?: SiteHardDeleted;
449
+ /** Emitted on a namespace change. */
450
+ namespaceChanged?: NamespaceChanged;
451
+ /** Emitted when Studio is attached. */
452
+ studioAssigned?: StudioAssigned;
453
+ /** Emitted when Studio is detached. */
454
+ studioUnassigned?: StudioUnassigned;
323
455
  /**
324
- * An owner id.
325
- * @format GUID
456
+ * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
457
+ * the actual URL.
458
+ *
459
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
460
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
326
461
  */
327
- ownerId?: string;
328
- /** A document type. */
329
- documentType?: DocumentTypeWithLiterals;
462
+ urlChanged?: SiteUrlChanged;
463
+ /** Site is marked as PurgedExternally */
464
+ sitePurgedExternally?: SitePurgedExternally;
465
+ /** Emitted when Odeditor is attached. */
466
+ odeditorAssigned?: OdeditorAssigned;
467
+ /** Emitted when Odeditor is detached. */
468
+ odeditorUnassigned?: OdeditorUnassigned;
469
+ /** Emitted when Picasso is attached. */
470
+ picassoAssigned?: PicassoAssigned;
471
+ /** Emitted when Picasso is detached. */
472
+ picassoUnassigned?: PicassoUnassigned;
473
+ }
474
+ interface Asset {
330
475
  /**
331
- * A site name (free URL slug). TODO(meta-site): Our actual limit is 20, but we have 1M+ meta sites with longer site name (44034 published).
332
- * @maxLength 255
476
+ * An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum).
477
+ * @maxLength 36
333
478
  */
334
- name?: string;
335
- /** A date of creation. */
336
- dateCreated?: string;
337
- /** The last update date. */
338
- dateUpdated?: string;
479
+ appDefId?: string;
339
480
  /**
340
- * Legacy.
341
- * @maxLength 255
481
+ * An instance id. For legacy reasons may be UUID or a string.
482
+ * @maxLength 200
342
483
  */
343
- description?: string | null;
484
+ instanceId?: string;
485
+ /** An application state. */
486
+ state?: StateWithLiterals;
487
+ }
488
+ declare enum State {
489
+ UNKNOWN = "UNKNOWN",
490
+ ENABLED = "ENABLED",
491
+ DISABLED = "DISABLED",
492
+ PENDING = "PENDING",
493
+ DEMO = "DEMO"
494
+ }
495
+ /** @enumType */
496
+ type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'PENDING' | 'DEMO';
497
+ interface SiteCreated {
344
498
  /**
345
- * Legacy.
346
- * @maxSize 10
499
+ * A template identifier (empty if not created from a template).
500
+ * @maxLength 36
347
501
  */
348
- premiumFeatures?: PremiumFeatureWithLiterals[];
502
+ originTemplateId?: string;
349
503
  /**
350
- * A favicon file name.
351
- * @maxLength 255
504
+ * An account id of the owner.
505
+ * @format GUID
352
506
  */
353
- favicon?: string | null;
507
+ ownerId?: string;
508
+ /** A context in which meta site was created. */
509
+ context?: SiteCreatedContextWithLiterals;
354
510
  /**
355
- * A list of domains.
356
- * @maxSize 1000
511
+ * A meta site id from which this site was created.
512
+ *
513
+ * In case of a creation from a template it's a template id.
514
+ * In case of a site duplication ("Save As" in dashboard or duplicate in UM) it's an id of a source site.
515
+ * @format GUID
357
516
  */
358
- domains?: Domain[];
517
+ originMetaSiteId?: string | null;
359
518
  /**
360
- * A list of renderers.
361
- * @maxSize 100
519
+ * A meta site name (URL slug).
520
+ * @maxLength 20
362
521
  */
363
- applications?: Application[];
522
+ siteName?: string;
523
+ /** A namespace. */
524
+ namespace?: NamespaceWithLiterals;
525
+ }
526
+ declare enum SiteCreatedContext {
527
+ /** A valid option, we don't expose all reasons why site might be created. */
528
+ OTHER = "OTHER",
529
+ /** A meta site was created from template. */
530
+ FROM_TEMPLATE = "FROM_TEMPLATE",
531
+ /** A meta site was created by copying of the transfferred meta site. */
532
+ DUPLICATE_BY_SITE_TRANSFER = "DUPLICATE_BY_SITE_TRANSFER",
533
+ /** A copy of existing meta site. */
534
+ DUPLICATE = "DUPLICATE",
535
+ /** A meta site was created as a transfferred site (copy of the original), old flow, should die soon. */
536
+ OLD_SITE_TRANSFER = "OLD_SITE_TRANSFER",
537
+ /** deprecated A meta site was created for Flash editor. */
538
+ FLASH = "FLASH"
539
+ }
540
+ /** @enumType */
541
+ type SiteCreatedContextWithLiterals = SiteCreatedContext | 'OTHER' | 'FROM_TEMPLATE' | 'DUPLICATE_BY_SITE_TRANSFER' | 'DUPLICATE' | 'OLD_SITE_TRANSFER' | 'FLASH';
542
+ declare enum Namespace {
543
+ UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
544
+ /** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
545
+ WIX = "WIX",
546
+ /** 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. */
547
+ SHOUT_OUT = "SHOUT_OUT",
548
+ /** 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. */
549
+ ALBUMS = "ALBUMS",
550
+ /** 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. */
551
+ WIX_STORES_TEST_DRIVE = "WIX_STORES_TEST_DRIVE",
552
+ /** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
553
+ HOTELS = "HOTELS",
554
+ /** 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. */
555
+ CLUBS = "CLUBS",
556
+ /** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
557
+ ONBOARDING_DRAFT = "ONBOARDING_DRAFT",
558
+ /** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
559
+ DEV_SITE = "DEV_SITE",
560
+ /** 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. */
561
+ LOGOS = "LOGOS",
562
+ /** 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. */
563
+ VIDEO_MAKER = "VIDEO_MAKER",
564
+ /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
565
+ PARTNER_DASHBOARD = "PARTNER_DASHBOARD",
566
+ /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
567
+ DEV_CENTER_COMPANY = "DEV_CENTER_COMPANY",
364
568
  /**
365
- * A list of apps.
366
- * @maxSize 500
569
+ * A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
570
+ *
571
+ * Meta site with this namespace will *not* be shown in a user's site list by default.
367
572
  */
368
- embeddedServices?: EmbeddedService[];
369
- /** A default SEO data. */
370
- defaultSeoData?: SeoData;
371
- /** google.protobuf.StringValue published_base_uri = 16; */
372
- wixSiteProperties?: WixSiteProperties;
573
+ HTML_DRAFT = "HTML_DRAFT",
373
574
  /**
374
- * A list of entry points.
375
- * @maxSize 10000
575
+ * the user-journey for Fitness users who want to start from managing their business instead of designing their website.
576
+ * Will be accessible from Site List and will not have a website app.
577
+ * Once the user attaches a site, the site will become a regular wixsite.
376
578
  */
377
- entryPoints?: EntryPoint[];
579
+ SITELESS_BUSINESS = "SITELESS_BUSINESS",
580
+ /** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
581
+ CREATOR_ECONOMY = "CREATOR_ECONOMY",
582
+ /** It is to be used in the Business First efforts. */
583
+ DASHBOARD_FIRST = "DASHBOARD_FIRST",
584
+ /** Bookings business flow with no site. */
585
+ ANYWHERE = "ANYWHERE",
586
+ /** Namespace for Headless Backoffice with no editor */
587
+ HEADLESS = "HEADLESS",
378
588
  /**
379
- * A list of aliases.
380
- * @maxSize 10000
589
+ * Namespace for master site that will exist in parent account that will be referenced by subaccounts
590
+ * The site will be used for account level CSM feature for enterprise
381
591
  */
382
- aliases?: EntryPoint[];
592
+ ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
593
+ /** Rise.ai Siteless account management for Gift Cards and Store Credit. */
594
+ RISE = "RISE",
383
595
  /**
384
- * A namespace (empty or 1 element always).
385
- * @maxSize 1
596
+ * As part of the branded app new funnel, users now can create a meta site that will be branded app first.
597
+ * There's a blank site behind the scene but it's blank).
598
+ * The Mobile company will be the owner of this namespace.
386
599
  */
387
- namespaces?: NamespaceWithLiterals[];
600
+ BRANDED_FIRST = "BRANDED_FIRST",
601
+ /** Nownia.com Siteless account management for Ai Scheduling Assistant. */
602
+ NOWNIA = "NOWNIA",
388
603
  /**
389
- * A list of flags.
390
- * @maxSize 100
604
+ * UGC Templates are templates that are created by users for personal use and to sale to other users.
605
+ * The Partners company owns this namespace.
391
606
  */
392
- flags?: FlagWithLiterals[];
607
+ UGC_TEMPLATE = "UGC_TEMPLATE",
608
+ /** Codux Headless Sites */
609
+ CODUX = "CODUX",
610
+ /** Bobb - AI Design Creator. */
611
+ MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR",
393
612
  /**
394
- * Deprecated.
395
- * @maxSize 10000
396
- * @deprecated
397
- * @replacedBy redirector-server
398
- * @targetRemovalDate 2024-12-31
613
+ * Shared Blog Site is a unique single site across Enterprise account,
614
+ * This site will hold all Blog posts related to the Marketing product.
399
615
  */
400
- externalUriMappings?: ExternalUriMapping[];
401
- /** Indicates whether a meta site is published (accessible from router-server). */
402
- published?: boolean;
403
- /**
404
- * bool dirty_routes = 24;
405
- * bool dirty_meta_data = 25;
406
- */
407
- pendingApps?: PendingApps;
408
- /**
409
- * TBD.
410
- * @readonly
411
- * @format GUID
412
- */
413
- devSiteAppDefId?: string | null;
414
- /** ML. */
415
- languages?: SiteLanguages;
416
- /** A delete context. */
417
- deleteContext?: DeleteContext;
418
- /** TBD. */
419
- publishedHtmlSiteRevision?: string;
420
- /** A cached data from Routes API. */
421
- routesApiData?: RoutesApiData;
422
- /**
423
- * A date of creation of the account that owns this meta site.
424
- * @readonly
425
- */
426
- accountCreatedDate?: Date | null;
427
- }
428
- declare enum DocumentType {
429
- UNKNOWN_DOCUMENT_TYPE = "UNKNOWN_DOCUMENT_TYPE",
430
- /** User Generated Content - user site */
431
- UGC = "UGC",
432
- /** Sites used for template */
433
- TEMPLATE = "TEMPLATE",
434
- /** Wix's Landing Pages, marketing pages, Wix Home Page etc. */
435
- WIX_SITE = "WIX_SITE"
436
- }
437
- /** @enumType */
438
- type DocumentTypeWithLiterals = DocumentType | 'UNKNOWN_DOCUMENT_TYPE' | 'UGC' | 'TEMPLATE' | 'WIX_SITE';
439
- declare enum PremiumFeature {
440
- UNKNOWN_PREMIUM_FEATURE = "UNKNOWN_PREMIUM_FEATURE",
441
- SHOW_WIX_WHILE_LOADING = "SHOW_WIX_WHILE_LOADING",
442
- ADS_FREE = "ADS_FREE",
443
- HAS_ECOMMERCE = "HAS_ECOMMERCE",
444
- HAS_DOMAIN = "HAS_DOMAIN",
445
- ALWAYS_SHOW_FOOTER = "ALWAYS_SHOW_FOOTER",
446
- NO_ADS_IN_SOCIAL_SITES = "NO_ADS_IN_SOCIAL_SITES"
447
- }
448
- /** @enumType */
449
- type PremiumFeatureWithLiterals = PremiumFeature | 'UNKNOWN_PREMIUM_FEATURE' | 'SHOW_WIX_WHILE_LOADING' | 'ADS_FREE' | 'HAS_ECOMMERCE' | 'HAS_DOMAIN' | 'ALWAYS_SHOW_FOOTER' | 'NO_ADS_IN_SOCIAL_SITES';
450
- interface Domain {
451
- /**
452
- * A domain name.
453
- * @maxLength 253
454
- */
455
- name?: string;
456
- /** Indicates whether the domain is primary. */
457
- primary?: boolean;
458
- /** Indicates whether the domain should have "www." prefix. */
459
- hasWwwPrefix?: boolean;
460
- /** An SEO data. */
461
- trackingData?: TrackingData;
462
- /**
463
- * A registrar.
464
- * @maxLength 255
465
- */
466
- registrar?: string;
467
- }
468
- interface TrackingData {
469
- /**
470
- * Google Analytics ID.
471
- * @maxLength 255
472
- */
473
- googleAnalyticsId?: string | null;
474
- /**
475
- * Google Site verification code.
476
- * @maxLength 255
477
- */
478
- googleSiteVerificationCode?: string | null;
479
- /**
480
- * Google Remarketing ID.
481
- * @maxLength 255
482
- */
483
- googleRemarketingId?: string | null;
484
- /**
485
- * Facebook Remarketing ID.
486
- * @maxLength 255
487
- */
488
- facebookRemarketingId?: string | null;
489
- /**
490
- * Yandex Metrica ID.
491
- * @maxLength 255
492
- */
493
- yandexMetrikaId?: string | null;
494
- /**
495
- * TBD.
496
- * @maxLength 255
497
- */
498
- ipAnonymization?: string | null;
499
- }
500
- /** Renderer representation in meta site model (determines to which renderer to call when the request comes to public) */
501
- interface Application {
502
- /** Deprecated. */
503
- intId?: number;
504
- /**
505
- * An instance id. TODO(meta-site): Remove WixLists!!!
506
- * @maxLength 160
507
- */
508
- instanceId?: string;
509
- /**
510
- * An instance id of a template from which this instance was cloned.
511
- * @maxLength 36
512
- */
513
- templateIdInApp?: string | null;
514
- /**
515
- * A language code.
516
- * @maxLength 5
517
- */
518
- languageCode?: string;
519
- /** An application (renderer) type. */
520
- applicationType?: ApplicationTypeWithLiterals;
521
- /** TDB. */
522
- compatibility?: CompatibilityWithLiterals;
523
- /**
524
- * TDB.
525
- * @maxLength 255
526
- */
527
- supportedView?: string;
528
- /** An SEO data. */
529
- seoData?: SeoData;
530
- /** A date of creation. */
531
- dateCreated?: string;
532
- /** A date of the last update. */
533
- dateUpdated?: string;
534
- /** Indicates whether this instance was published (WixApplication SPI is called). */
535
- published?: boolean;
536
- /** An application state. Effectively unused. */
537
- state?: ApiStateWithLiterals;
538
- /**
539
- * TDB.
540
- * @maxLength 255
541
- */
542
- thumbnail?: string | null;
543
- /**
544
- * A list of mappings.
545
- * @maxSize 100
546
- */
547
- urlMappings?: UrlMapping[];
548
- }
549
- declare enum ApplicationType {
550
- UNKNOWN_APPLICATION_TYPE = "UNKNOWN_APPLICATION_TYPE",
551
- FLASH = "FLASH",
552
- FLASH_FACEBOOK = "FLASH_FACEBOOK",
553
- FLASH_WIDGET = "FLASH_WIDGET",
554
- FLASH_BANNER = "FLASH_BANNER",
555
- HTML_MOBILE = "HTML_MOBILE",
556
- HTML_WEB = "HTML_WEB",
557
- HTML_FACEBOOK = "HTML_FACEBOOK",
558
- BLOG = "BLOG",
559
- WIX_LISTS = "WIX_LISTS",
560
- /** Used only for wix sites used only. Basically proxy the request to the source outside of Wix. */
561
- STATIC_MOUNT = "STATIC_MOUNT",
562
- /** Used only for wix sites used only. Basically redirects the request to the source outside of Wix */
563
- STATIC_MOUNT_REDIRECT = "STATIC_MOUNT_REDIRECT",
564
- AMP_BLOG = "AMP_BLOG",
565
- COMMUNITIES_AMP_BLOG = "COMMUNITIES_AMP_BLOG",
566
- HTML_ANYWHERE = "HTML_ANYWHERE",
567
- HOPP = "HOPP"
568
- }
569
- /** @enumType */
570
- type ApplicationTypeWithLiterals = ApplicationType | 'UNKNOWN_APPLICATION_TYPE' | 'FLASH' | 'FLASH_FACEBOOK' | 'FLASH_WIDGET' | 'FLASH_BANNER' | 'HTML_MOBILE' | 'HTML_WEB' | 'HTML_FACEBOOK' | 'BLOG' | 'WIX_LISTS' | 'STATIC_MOUNT' | 'STATIC_MOUNT_REDIRECT' | 'AMP_BLOG' | 'COMMUNITIES_AMP_BLOG' | 'HTML_ANYWHERE' | 'HOPP';
571
- declare enum Compatibility {
572
- UNKNOWN_COMPATIBILITY = "UNKNOWN_COMPATIBILITY",
573
- WEB = "WEB",
574
- MOBILE = "MOBILE",
575
- ALL = "ALL"
576
- }
577
- /** @enumType */
578
- type CompatibilityWithLiterals = Compatibility | 'UNKNOWN_COMPATIBILITY' | 'WEB' | 'MOBILE' | 'ALL';
579
- interface SeoData {
580
- /**
581
- * A title.
582
- * @maxLength 255
583
- */
584
- title?: string | null;
585
- /** Indicates whether the site should be indexable by bots. */
586
- indexable?: boolean;
587
- /** TDB. */
588
- suppressTrackingCookies?: boolean;
589
- /**
590
- * TDB.
591
- * @maxLength 300
592
- */
593
- ogImage?: string | null;
594
- /**
595
- * A list of meta tags.
596
- * @maxSize 100
597
- */
598
- metaTags?: MetaTag[];
599
- /**
600
- * A canonical URL for a site.
601
- * @maxLength 4000
602
- */
603
- canonicalUrl?: string | null;
604
- }
605
- interface MetaTag {
606
- /**
607
- * A name.
608
- * @maxLength 50
609
- */
610
- name?: string;
611
- /**
612
- * A value.
613
- * @maxLength 500
614
- */
615
- value?: string;
616
- /** Indicates whether should be rendered as property. */
617
- property?: boolean;
618
- }
619
- declare enum ApiState {
620
- UNKNOWN_STATE = "UNKNOWN_STATE",
621
- TEMPLATE = "TEMPLATE",
622
- STUB = "STUB",
623
- INITIALIZED = "INITIALIZED"
624
- }
625
- /** @enumType */
626
- type ApiStateWithLiterals = ApiState | 'UNKNOWN_STATE' | 'TEMPLATE' | 'STUB' | 'INITIALIZED';
627
- interface UrlMapping {
628
- /**
629
- * A host.
630
- * @maxLength 253
631
- */
632
- host?: string | null;
633
- /**
634
- * An URI.
635
- * @maxLength 4000
636
- */
637
- uri?: string;
638
- }
639
- interface EmbeddedService extends EmbeddedServiceAttributesOneOf {
640
- /** Deprecated. */
641
- appBuilder?: AppBuilderAttributes;
642
- /** Site members (wix-sm-webapp). */
643
- siteMembers?: SiteMembersAttributes;
644
- /** Deprecated. */
645
- listsApps?: ListsAppsAttributes;
646
- /** ECommerceAttributes ecommerce = 13 [deprecated = true]; */
647
- thirdParty?: ThirdPartyAppsAttributes;
648
- /** Wix code (data). */
649
- wixCode?: WixCodeAttributes;
650
- /** Deprecated. */
651
- mobileApp?: MobileAppAttributes;
652
- /** ADI/Onboarding. */
653
- onboarding?: OnboardingAttributes;
654
- /** Clubs. */
655
- clubs?: ClubsAttributes;
656
- /** Contacts. */
657
- contacts?: ContactsAttributes;
658
- /** Deprecated? */
659
- providedMailingService?: ProvidedMailingServiceAttributes;
660
- /** Deprecated. */
661
- intId?: number;
662
- /**
663
- * An instance id.
664
- * @maxLength 36
665
- */
666
- instanceId?: string;
667
- /** A date of creation. */
668
- dateCreated?: string;
669
- /** A date of the last update. */
670
- dateUpdated?: string;
671
- /** A state. */
672
- state?: ApiStateWithLiterals;
673
- /**
674
- * for data sharing will hold the original instance id of the child site
675
- * @maxLength 36
676
- */
677
- nonSharedInstanceId?: string | null;
678
- }
679
- /** @oneof */
680
- interface EmbeddedServiceAttributesOneOf {
681
- /** Deprecated. */
682
- appBuilder?: AppBuilderAttributes;
683
- /** Site members (wix-sm-webapp). */
684
- siteMembers?: SiteMembersAttributes;
685
- /** Deprecated. */
686
- listsApps?: ListsAppsAttributes;
687
- /** ECommerceAttributes ecommerce = 13 [deprecated = true]; */
688
- thirdParty?: ThirdPartyAppsAttributes;
689
- /** Wix code (data). */
690
- wixCode?: WixCodeAttributes;
691
- /** Deprecated. */
692
- mobileApp?: MobileAppAttributes;
693
- /** ADI/Onboarding. */
694
- onboarding?: OnboardingAttributes;
695
- /** Clubs. */
696
- clubs?: ClubsAttributes;
697
- /** Contacts. */
698
- contacts?: ContactsAttributes;
699
- /** Deprecated? */
700
- providedMailingService?: ProvidedMailingServiceAttributes;
701
- }
702
- declare enum Kind {
703
- OPEN = "OPEN",
704
- CLOSED = "CLOSED",
705
- APPLY_FOR_MEMBERSHIP = "APPLY_FOR_MEMBERSHIP"
706
- }
707
- /** @enumType */
708
- type KindWithLiterals = Kind | 'OPEN' | 'CLOSED' | 'APPLY_FOR_MEMBERSHIP';
709
- declare enum FormFace {
710
- REGISTER = "REGISTER",
711
- LOGIN = "LOGIN"
712
- }
713
- /** @enumType */
714
- type FormFaceWithLiterals = FormFace | 'REGISTER' | 'LOGIN';
715
- declare enum CollectionExposure {
716
- PUBLIC = "PUBLIC",
717
- WIX_INTERNAL = "WIX_INTERNAL"
718
- }
719
- /** @enumType */
720
- type CollectionExposureWithLiterals = CollectionExposure | 'PUBLIC' | 'WIX_INTERNAL';
721
- interface MobileAppBannerInfo {
722
- /**
723
- * Deprecated.
724
- * @maxLength 255
725
- */
726
- name?: string;
727
- /**
728
- * Deprecated.
729
- * @maxLength 4000
730
- */
731
- iconUrl?: string;
732
- }
733
- interface AppBuilderAttributes {
734
- }
735
- interface SiteMembersAttributes {
736
- /** TDB. */
737
- kind?: KindWithLiterals;
738
- /** TDB. */
739
- formFace?: FormFaceWithLiterals;
740
- /** TDB. */
741
- collectionExposure?: CollectionExposureWithLiterals;
742
- }
743
- interface ListsAppsAttributes {
744
- /**
745
- * Deprecated.
746
- * @maxLength 36
747
- */
748
- appId?: string;
749
- /** Deprecated. */
750
- addedInEditor?: boolean | null;
751
- /** Deprecated. */
752
- visibleAtDashboard?: boolean | null;
753
- /**
754
- * Deprecated.
755
- * @maxLength 36
756
- */
757
- originInstanceId?: string | null;
758
- }
759
- interface ThirdPartyAppsAttributes {
760
- /**
761
- * An application definition id (app_id in dev-center).
762
- * @maxLength 36
763
- */
764
- appId?: string;
765
- /** Indicates whether a component was added in the editor. */
766
- addedInEditor?: boolean | null;
767
- /** Indicates whether an app should be hidden from the dashboard. */
768
- visibleAtDashboard?: boolean | null;
769
- /**
770
- * Identifier of the originating application.
771
- * @maxLength 36
772
- */
773
- originInstanceId?: string | null;
774
- /**
775
- * If set -- indicates that it's premium.
776
- * @maxLength 255
777
- */
778
- vendorProductId?: string | null;
779
- /** TBD. */
780
- editorDismissed?: boolean | null;
781
- /** If true - uninstalled. */
782
- revoked?: boolean | null;
783
- /**
784
- * A version.
785
- * @maxLength 500
786
- */
787
- version?: string | null;
788
- /**
789
- * A version for rendering.
790
- * @maxLength 500
791
- */
792
- publishedVersion?: string | null;
793
- }
794
- interface WixCodeAttributes {
795
- }
796
- interface MobileAppAttributes {
797
- /** Deprecated. */
798
- banner?: MobileAppBannerInfo;
799
- }
800
- interface OnboardingAttributes {
801
- /** Indicates whether Onboarding editor is in use. */
802
- inUse?: boolean;
803
- }
804
- interface ClubsAttributes {
805
- }
806
- interface ContactsAttributes {
807
- }
808
- interface ProvidedMailingServiceAttributes {
809
- }
810
- interface WixSiteProperties {
811
- /** TBD. */
812
- userNameInHost?: boolean;
813
- /** TBD. */
814
- footerId?: number;
815
- /**
816
- * used to add html embeds to a site. eg: header footer
817
- * @maxLength 255
818
- * @maxSize 100
819
- */
820
- embedTags?: string[];
821
- /** TBD. */
822
- iframeRenderAllowed?: boolean;
823
- /** TBD. */
824
- httpsPolicy?: HttpsPolicyWithLiterals;
825
- }
826
- declare enum HttpsPolicy {
827
- UNKNOWN_HTTPS_POLICY = "UNKNOWN_HTTPS_POLICY",
828
- DISALLOW = "DISALLOW",
829
- ALLOW = "ALLOW",
830
- ENFORCE = "ENFORCE"
831
- }
832
- /** @enumType */
833
- type HttpsPolicyWithLiterals = HttpsPolicy | 'UNKNOWN_HTTPS_POLICY' | 'DISALLOW' | 'ALLOW' | 'ENFORCE';
834
- interface EntryPoint extends EntryPointDataOneOf {
835
- /** TBD. */
836
- userInHost?: UserInHost;
837
- /** TBD. */
838
- userInPath?: UserInPath;
839
- /** TBD. */
840
- domain?: EntryPointDomain;
841
- /** TBD. */
842
- singlePath?: SinglePath;
843
- /** TBD. */
844
- multilingualDomain?: MultilingualDomain;
845
- /** Indicates whether an entry point is primary. */
846
- primary?: boolean;
847
- }
848
- /** @oneof */
849
- interface EntryPointDataOneOf {
850
- /** TBD. */
851
- userInHost?: UserInHost;
852
- /** TBD. */
853
- userInPath?: UserInPath;
854
- /** TBD. */
855
- domain?: EntryPointDomain;
856
- /** TBD. */
857
- singlePath?: SinglePath;
858
- /** TBD. */
859
- multilingualDomain?: MultilingualDomain;
860
- }
861
- interface UserInHost {
862
- /**
863
- * A user name.
864
- * @maxLength 100
865
- */
866
- userName?: string;
867
- /**
868
- * A site name. TODO(meta-site): the limit is 20, but we have meta sites with longer site name.
869
- * @maxLength 255
870
- */
871
- siteName?: string;
872
- }
873
- interface UserInPath {
874
- /**
875
- * A user name.
876
- * @maxLength 100
877
- */
878
- userName?: string;
879
- /**
880
- * A site name. TODO(meta-site): the limit is 20, but we have meta sites with longer site name.
881
- * @maxLength 255
882
- */
883
- siteName?: string;
884
- }
885
- interface EntryPointDomain {
886
- /**
887
- * A domain name.
888
- * @maxLength 253
889
- */
890
- name?: string;
891
- }
892
- interface SinglePath {
893
- /**
894
- * A full URL.
895
- * @maxLength 4000
896
- */
897
- path?: string;
898
- }
899
- interface MultilingualDomain {
900
- /**
901
- * this is the full domain including language code e.g. fr.domain.com
902
- * @maxLength 253
903
- */
904
- name?: string;
905
- /**
906
- * A language code.
907
- * @maxLength 5
908
- */
909
- languageCode?: string;
910
- }
911
- declare enum Namespace {
912
- UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
913
- /** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
914
- WIX = "WIX",
915
- /** 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. */
916
- SHOUT_OUT = "SHOUT_OUT",
917
- /** 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. */
918
- ALBUMS = "ALBUMS",
919
- /** 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. */
920
- WIX_STORES_TEST_DRIVE = "WIX_STORES_TEST_DRIVE",
921
- /** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
922
- HOTELS = "HOTELS",
923
- /** 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. */
924
- CLUBS = "CLUBS",
925
- /** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
926
- ONBOARDING_DRAFT = "ONBOARDING_DRAFT",
927
- /** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
928
- DEV_SITE = "DEV_SITE",
929
- /** 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. */
930
- LOGOS = "LOGOS",
931
- /** 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. */
932
- VIDEO_MAKER = "VIDEO_MAKER",
933
- /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
934
- PARTNER_DASHBOARD = "PARTNER_DASHBOARD",
935
- /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
936
- DEV_CENTER_COMPANY = "DEV_CENTER_COMPANY",
937
- /**
938
- * A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
939
- *
940
- * Meta site with this namespace will *not* be shown in a user's site list by default.
941
- */
942
- HTML_DRAFT = "HTML_DRAFT",
943
- /**
944
- * the user-journey for Fitness users who want to start from managing their business instead of designing their website.
945
- * Will be accessible from Site List and will not have a website app.
946
- * Once the user attaches a site, the site will become a regular wixsite.
947
- */
948
- SITELESS_BUSINESS = "SITELESS_BUSINESS",
949
- /** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
950
- CREATOR_ECONOMY = "CREATOR_ECONOMY",
951
- /** It is to be used in the Business First efforts. */
952
- DASHBOARD_FIRST = "DASHBOARD_FIRST",
953
- /** Bookings business flow with no site. */
954
- ANYWHERE = "ANYWHERE",
955
- /** Namespace for Headless Backoffice with no editor */
956
- HEADLESS = "HEADLESS",
957
- /**
958
- * Namespace for master site that will exist in parent account that will be referenced by subaccounts
959
- * The site will be used for account level CSM feature for enterprise
960
- */
961
- ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
962
- /** Rise.ai Siteless account management for Gift Cards and Store Credit. */
963
- RISE = "RISE",
964
- /**
965
- * As part of the branded app new funnel, users now can create a meta site that will be branded app first.
966
- * There's a blank site behind the scene but it's blank).
967
- * The Mobile company will be the owner of this namespace.
968
- */
969
- BRANDED_FIRST = "BRANDED_FIRST",
970
- /** Nownia.com Siteless account management for Ai Scheduling Assistant. */
971
- NOWNIA = "NOWNIA",
972
- /**
973
- * UGC Templates are templates that are created by users for personal use and to sale to other users.
974
- * The Partners company owns this namespace.
975
- */
976
- UGC_TEMPLATE = "UGC_TEMPLATE",
977
- /** Codux Headless Sites */
978
- CODUX = "CODUX",
979
- /** Bobb - AI Design Creator. */
980
- MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR",
981
- /**
982
- * Shared Blog Site is a unique single site across Enterprise account,
983
- * This site will hold all Blog posts related to the Marketing product.
984
- */
985
- SHARED_BLOG_ENTERPRISE = "SHARED_BLOG_ENTERPRISE",
986
- /** Standalone forms (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
987
- STANDALONE_FORMS = "STANDALONE_FORMS",
988
- /** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
989
- STANDALONE_EVENTS = "STANDALONE_EVENTS",
990
- /** MIMIR - Siteless account for MIMIR Ai Job runner. */
991
- MIMIR = "MIMIR",
992
- /** Wix Twins platform. */
993
- TWINS = "TWINS",
994
- /** Wix Nano. */
995
- NANO = "NANO"
996
- }
997
- /** @enumType */
998
- 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';
999
- declare enum Flag {
1000
- /** Unknown flag. */
1001
- UNKNOWN_FLAG = "UNKNOWN_FLAG",
1002
- /**
1003
- * ECOM_TEST_DRIVE = 1 [deprecated = true];
1004
- * ECOM_MIGRATED = 2 [deprecated = true];
1005
- * If present, forces usage of wixsite.com/editorx.io for free site + no usage of #!.
1006
- */
1007
- URL_MIGRATED = "URL_MIGRATED",
1008
- /** Indicates whether HTTPS is used for accessing site. */
1009
- USE_HTTPS = "USE_HTTPS",
1010
- /** Indicates that the site is managed by Editor X. Implications: different domain (editorx.com and editorx.io). */
1011
- EDITOR_X = "EDITOR_X",
1012
- /** Indicates metasite blocked from publishing and added additional filtering in listing API (MSS). READ_ONLY. */
1013
- BLOCKED = "BLOCKED",
1014
- /**
1015
- * Indicates that default routing won't be used for this meta site. Additionally it means that this meta site
1016
- * doesn't have viewer url based on meta site data.
1017
- *
1018
- * Default routing is based on domains, free url, ML etc. None of it will be used. This feature is needed
1019
- * when routing is defined completely in Routes API (routes-writer or meta-site-routes).
1020
- */
1021
- DONT_USE_DEFAULT_ROUTING = "DONT_USE_DEFAULT_ROUTING",
1022
- /** Indicates the site is managed bv Wix Studio. Implications: different domain */
1023
- STUDIO = "STUDIO",
1024
- /** Indicates the site is used as critical asset and as such is protected. You would be only able to provision applications to this meta site. */
1025
- CRITICAL_ASSET = "CRITICAL_ASSET",
1026
- /** Indicates that site is managed by Odeditor */
1027
- ODEDITOR = "ODEDITOR",
1028
- /** Indicates that site is managed by Picasso */
1029
- PICASSO = "PICASSO"
1030
- }
1031
- /** @enumType */
1032
- type FlagWithLiterals = Flag | 'UNKNOWN_FLAG' | 'URL_MIGRATED' | 'USE_HTTPS' | 'EDITOR_X' | 'BLOCKED' | 'DONT_USE_DEFAULT_ROUTING' | 'STUDIO' | 'CRITICAL_ASSET' | 'ODEDITOR' | 'PICASSO';
1033
- interface ExternalUriMapping {
1034
- /**
1035
- * Deprecated.
1036
- * @maxLength 255
1037
- */
1038
- fromExternalUri?: string;
1039
- /**
1040
- * Deprecated.
1041
- * @maxLength 255
1042
- */
1043
- toWixUri?: string;
1044
- /**
1045
- * Deprecated.
1046
- * @maxLength 255
1047
- */
1048
- oldToWixUri?: string | null;
1049
- /** Deprecated. */
1050
- requireDomain?: boolean | null;
1051
- }
1052
- interface PendingApps {
1053
- /**
1054
- * A list of pending apps.
1055
- * @maxSize 100
1056
- */
1057
- apps?: PendingApp[];
1058
- }
1059
- declare enum PendingReason {
1060
- UNKNOWN = "UNKNOWN",
1061
- PREMIUM = "PREMIUM",
1062
- APP_MARKET = "APP_MARKET"
1063
- }
1064
- /** @enumType */
1065
- type PendingReasonWithLiterals = PendingReason | 'UNKNOWN' | 'PREMIUM' | 'APP_MARKET';
1066
- interface PendingApp {
1067
- /**
1068
- * App definition id.
1069
- * @maxLength 36
1070
- */
1071
- appId?: string;
1072
- /**
1073
- * A reason.
1074
- * @maxSize 2
1075
- */
1076
- reasons?: PendingReasonWithLiterals[];
1077
- }
1078
- /** Determined by Multilingual via SiteProperties */
1079
- interface SiteLanguages {
1080
- /** A primary language. */
1081
- primary?: SiteLanguage;
1082
- /**
1083
- * All secondaries.
1084
- * @maxSize 1000
1085
- */
1086
- secondaries?: SiteLanguage[];
1087
- }
1088
- interface SiteLanguage {
1089
- /**
1090
- * A language code.
1091
- * @maxLength 5
1092
- */
1093
- languageCode?: string;
1094
- /** A resolution method. */
1095
- resolutionMethod?: ResolutionMethodWithLiterals;
1096
- }
1097
- declare enum ResolutionMethod {
1098
- /** Render site for language using query param. eg: https://www.alonkochba.com/?lang=fr */
1099
- QUERY_PARAM = "QUERY_PARAM",
1100
- /** Render site for language using subdomain. eg: https://fr.alonkochba.com/ */
1101
- SUBDOMAIN = "SUBDOMAIN",
1102
- /** Render site for language using subdirectory. eg: https://www.alonkochba.com/fr */
1103
- SUBDIRECTORY = "SUBDIRECTORY"
1104
- }
1105
- /** @enumType */
1106
- type ResolutionMethodWithLiterals = ResolutionMethod | 'QUERY_PARAM' | 'SUBDOMAIN' | 'SUBDIRECTORY';
1107
- interface DeleteContext {
1108
- /** When the meta site was deleted. */
1109
- dateDeleted?: Date | null;
1110
- /** A status. */
1111
- deleteStatus?: DeleteStatusWithLiterals;
1112
- /**
1113
- * A reason (flow).
1114
- * @maxLength 255
1115
- */
1116
- deleteOrigin?: string;
1117
- /**
1118
- * A service that deleted it.
1119
- * @maxLength 255
1120
- */
1121
- initiatorId?: string | null;
1122
- }
1123
- declare enum DeleteStatus {
1124
- UNKNOWN = "UNKNOWN",
1125
- TRASH = "TRASH",
1126
- DELETED = "DELETED",
1127
- PENDING_PURGE = "PENDING_PURGE",
1128
- PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
1129
- }
1130
- /** @enumType */
1131
- type DeleteStatusWithLiterals = DeleteStatus | 'UNKNOWN' | 'TRASH' | 'DELETED' | 'PENDING_PURGE' | 'PURGED_EXTERNALLY';
1132
- /** Contains data related to Routes API (routes-writer service). */
1133
- interface RoutesApiData {
1134
- /** A primary URL selected in Routes API. */
1135
- primaryUrl?: PrimaryUrl;
1136
- }
1137
- interface PrimaryUrl {
1138
- /**
1139
- * A route id of the primary URL.
1140
- * @maxLength 36
1141
- */
1142
- routeId?: string;
1143
- /**
1144
- * A URL.
1145
- * @maxLength 4000
1146
- */
1147
- url?: string;
1148
- }
1149
- declare enum Context {
1150
- UNKNOWN = "UNKNOWN",
1151
- /** Creation of the site (might be from template, clone, blank site, etc). */
1152
- CREATE = "CREATE",
1153
- /** Update of the existing site. */
1154
- UPDATE = "UPDATE",
1155
- /** Deletion of the site FOREVER (shouldn't present in db anymore). */
1156
- HARD_DELETE = "HARD_DELETE",
1157
- /** Soft deletion of the site (could be restored). */
1158
- ARCHIVE = "ARCHIVE",
1159
- /** Restoration of a soft deleted site. */
1160
- RESTORE = "RESTORE",
1161
- /** Update of deleted meta site. Happens rarely, only because of data migrations. */
1162
- UPDATE_DELETED = "UPDATE_DELETED",
1163
- /** notify about deleted site. */
1164
- PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
1165
- }
1166
- /** @enumType */
1167
- type ContextWithLiterals = Context | 'UNKNOWN' | 'CREATE' | 'UPDATE' | 'HARD_DELETE' | 'ARCHIVE' | 'RESTORE' | 'UPDATE_DELETED' | 'PURGED_EXTERNALLY';
1168
- interface MetaSiteEvent extends MetaSiteEventPayloadOneOf {
1169
- /** Site is created. */
1170
- created?: SiteCreated;
1171
- /** Site is transferred. */
1172
- transferred?: SiteTransferred;
1173
- /** Site is deleted. */
1174
- deleted?: SiteDeleted;
1175
- /** Site is undeleted (restored)., */
1176
- undeleted?: SiteUndeleted;
1177
- /** Site is published. */
1178
- published?: SitePublished;
1179
- /** Site is unpublished. */
1180
- unpublished?: SiteUnpublished;
1181
- /** Marked as Template. */
1182
- markedAsTemplate?: SiteMarkedAsTemplate;
1183
- /** Marked as WixSite. */
1184
- markedAsWixSite?: SiteMarkedAsWixSite;
1185
- /** A service is provisioned. */
1186
- serviceProvisioned?: ServiceProvisioned;
1187
- /** A service is removed. */
1188
- serviceRemoved?: ServiceRemoved;
1189
- /** Site is renamed. */
1190
- renamed?: SiteRenamed;
1191
- /** Site is hard deleted. */
1192
- hardDeleted?: SiteHardDeleted;
1193
- /** Site's namespace is changed. */
1194
- namespaceChanged?: NamespaceChanged;
1195
- /** Site's URLs are changed. */
1196
- urlChanged?: SiteUrlChanged;
1197
- /** Site is marked/created as Wix Studio site */
1198
- studioAssigned?: StudioAssigned;
1199
- /** Site is no longer WIx Studio site */
1200
- studioUnassigned?: StudioUnassigned;
1201
- /** A service mentioned in one of the payloads is a Virtual Tpa */
1202
- virtualTpaMentioned?: VirtualTpaMentioned;
1203
- /** Site is marked as PurgedExternally */
1204
- sitePurgedExternally?: SitePurgedExternally;
1205
- /** Site is marked/created as Odeditor site */
1206
- odeditorAssigned?: OdeditorAssigned;
1207
- /** Site is no longer Odeditor site */
1208
- odeditorUnassigned?: OdeditorUnassigned;
1209
- /** Site is marked/created as Picasso site */
1210
- picassoAssigned?: PicassoAssigned;
1211
- /** Site is no longer Picasso site */
1212
- picassoUnassigned?: PicassoUnassigned;
1213
- }
1214
- /** @oneof */
1215
- interface MetaSiteEventPayloadOneOf {
1216
- /** Site is created. */
1217
- created?: SiteCreated;
1218
- /** Site is transferred. */
1219
- transferred?: SiteTransferred;
1220
- /** Site is deleted. */
1221
- deleted?: SiteDeleted;
1222
- /** Site is undeleted (restored)., */
1223
- undeleted?: SiteUndeleted;
1224
- /** Site is published. */
1225
- published?: SitePublished;
1226
- /** Site is unpublished. */
1227
- unpublished?: SiteUnpublished;
1228
- /** Marked as Template. */
1229
- markedAsTemplate?: SiteMarkedAsTemplate;
1230
- /** Marked as WixSite. */
1231
- markedAsWixSite?: SiteMarkedAsWixSite;
1232
- /** A service is provisioned. */
1233
- serviceProvisioned?: ServiceProvisioned;
1234
- /** A service is removed. */
1235
- serviceRemoved?: ServiceRemoved;
1236
- /** Site is renamed. */
1237
- renamed?: SiteRenamed;
1238
- /** Site is hard deleted. */
1239
- hardDeleted?: SiteHardDeleted;
1240
- /** Site's namespace is changed. */
1241
- namespaceChanged?: NamespaceChanged;
1242
- /** Site's URLs are changed. */
1243
- urlChanged?: SiteUrlChanged;
1244
- /** Site is marked/created as Wix Studio site */
1245
- studioAssigned?: StudioAssigned;
1246
- /** Site is no longer WIx Studio site */
1247
- studioUnassigned?: StudioUnassigned;
1248
- /** A service mentioned in one of the payloads is a Virtual Tpa */
1249
- virtualTpaMentioned?: VirtualTpaMentioned;
1250
- /** Site is marked as PurgedExternally */
1251
- sitePurgedExternally?: SitePurgedExternally;
1252
- /** Site is marked/created as Odeditor site */
1253
- odeditorAssigned?: OdeditorAssigned;
1254
- /** Site is no longer Odeditor site */
1255
- odeditorUnassigned?: OdeditorUnassigned;
1256
- /** Site is marked/created as Picasso site */
1257
- picassoAssigned?: PicassoAssigned;
1258
- /** Site is no longer Picasso site */
1259
- picassoUnassigned?: PicassoUnassigned;
1260
- }
1261
- interface SiteCreated {
1262
- /**
1263
- * A template identifier (empty if not created from a template).
1264
- * @maxLength 36
1265
- */
1266
- originTemplateId?: string;
1267
- /**
1268
- * An account id of the owner.
1269
- * @format GUID
1270
- */
1271
- ownerId?: string;
1272
- /** A context in which meta site was created. */
1273
- context?: SiteCreatedContextWithLiterals;
1274
- /**
1275
- * A meta site id from which this site was created.
1276
- *
1277
- * In case of a creation from a template it's a template id.
1278
- * In case of a site duplication ("Save As" in dashboard or duplicate in UM) it's an id of a source site.
1279
- * @format GUID
1280
- */
1281
- originMetaSiteId?: string | null;
1282
- /**
1283
- * A meta site name (URL slug).
1284
- * @maxLength 20
1285
- */
1286
- siteName?: string;
1287
- /** A namespace. */
1288
- namespace?: NamespaceWithLiterals;
1289
- }
1290
- declare enum SiteCreatedContext {
1291
- /** A valid option, we don't expose all reasons why site might be created. */
1292
- OTHER = "OTHER",
1293
- /** A meta site was created from template. */
1294
- FROM_TEMPLATE = "FROM_TEMPLATE",
1295
- /** A meta site was created by copying of the transfferred meta site. */
1296
- DUPLICATE_BY_SITE_TRANSFER = "DUPLICATE_BY_SITE_TRANSFER",
1297
- /** A copy of existing meta site. */
1298
- DUPLICATE = "DUPLICATE",
1299
- /** A meta site was created as a transfferred site (copy of the original), old flow, should die soon. */
1300
- OLD_SITE_TRANSFER = "OLD_SITE_TRANSFER",
1301
- /** deprecated A meta site was created for Flash editor. */
1302
- FLASH = "FLASH"
616
+ SHARED_BLOG_ENTERPRISE = "SHARED_BLOG_ENTERPRISE",
617
+ /** Standalone forms (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
618
+ STANDALONE_FORMS = "STANDALONE_FORMS",
619
+ /** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
620
+ STANDALONE_EVENTS = "STANDALONE_EVENTS",
621
+ /** MIMIR - Siteless account for MIMIR Ai Job runner. */
622
+ MIMIR = "MIMIR",
623
+ /** Wix Twins platform. */
624
+ TWINS = "TWINS",
625
+ /** Wix Nano. */
626
+ NANO = "NANO"
1303
627
  }
1304
628
  /** @enumType */
1305
- type SiteCreatedContextWithLiterals = SiteCreatedContext | 'OTHER' | 'FROM_TEMPLATE' | 'DUPLICATE_BY_SITE_TRANSFER' | 'DUPLICATE' | 'OLD_SITE_TRANSFER' | 'FLASH';
629
+ 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';
1306
630
  /** Site transferred to another user. */
1307
631
  interface SiteTransferred {
1308
632
  /**
@@ -1321,6 +645,31 @@ interface SiteDeleted {
1321
645
  /** A deletion context. */
1322
646
  deleteContext?: DeleteContext;
1323
647
  }
648
+ interface DeleteContext {
649
+ /** When the meta site was deleted. */
650
+ dateDeleted?: Date | null;
651
+ /** A status. */
652
+ deleteStatus?: DeleteStatusWithLiterals;
653
+ /**
654
+ * A reason (flow).
655
+ * @maxLength 255
656
+ */
657
+ deleteOrigin?: string;
658
+ /**
659
+ * A service that deleted it.
660
+ * @maxLength 255
661
+ */
662
+ initiatorId?: string | null;
663
+ }
664
+ declare enum DeleteStatus {
665
+ UNKNOWN = "UNKNOWN",
666
+ TRASH = "TRASH",
667
+ DELETED = "DELETED",
668
+ PENDING_PURGE = "PENDING_PURGE",
669
+ PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
670
+ }
671
+ /** @enumType */
672
+ type DeleteStatusWithLiterals = DeleteStatus | 'UNKNOWN' | 'TRASH' | 'DELETED' | 'PENDING_PURGE' | 'PURGED_EXTERNALLY';
1324
673
  /** Restoration of the meta site. */
1325
674
  interface SiteUndeleted {
1326
675
  }
@@ -1426,6 +775,12 @@ interface NamespaceChanged {
1426
775
  /** A new namespace. */
1427
776
  newNamespace?: NamespaceWithLiterals;
1428
777
  }
778
+ /** Assigned Studio editor */
779
+ interface StudioAssigned {
780
+ }
781
+ /** Unassigned Studio editor */
782
+ interface StudioUnassigned {
783
+ }
1429
784
  /**
1430
785
  * Fired in case site URLs were changed in any way: new secondary domain, published, account slug rename, site rename etc.
1431
786
  *
@@ -1436,24 +791,6 @@ interface NamespaceChanged {
1436
791
  */
1437
792
  interface SiteUrlChanged {
1438
793
  }
1439
- /** Assigned Studio editor */
1440
- interface StudioAssigned {
1441
- }
1442
- /** Unassigned Studio editor */
1443
- interface StudioUnassigned {
1444
- }
1445
- /**
1446
- * Used in case a Virtual Tpa is one of the apps mentioned in one of the payloads.
1447
- * A Virtual Tpa represents an embedded service that is in the process of migrating to a ThirdPartyApp.
1448
- * It is not persisted on the MetaSite, or in app-container, but it is treated by consumers outside of MetaSite as if it is a provisioned app.
1449
- */
1450
- interface VirtualTpaMentioned {
1451
- /**
1452
- * Either UUID or EmbeddedServiceType.
1453
- * @maxLength 36
1454
- */
1455
- appDefId?: string;
1456
- }
1457
794
  /**
1458
795
  * Used at the end of the deletion flow for both draft sites and when a user deletes a site.
1459
796
  * Consumed by other teams to remove relevant data.
@@ -1479,145 +816,6 @@ interface PicassoAssigned {
1479
816
  /** Unassigned Picasso */
1480
817
  interface PicassoUnassigned {
1481
818
  }
1482
- interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
1483
- /** Emitted on a meta site creation. */
1484
- siteCreated?: SiteCreated;
1485
- /** Emitted on a meta site transfer completion. */
1486
- siteTransferred?: SiteTransferred;
1487
- /** Emitted on a meta site deletion. */
1488
- siteDeleted?: SiteDeleted;
1489
- /** Emitted on a meta site restoration. */
1490
- siteUndeleted?: SiteUndeleted;
1491
- /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
1492
- sitePublished?: SitePublished;
1493
- /** Emitted on a meta site unpublish. */
1494
- siteUnpublished?: SiteUnpublished;
1495
- /** Emitted when meta site is marked as template. */
1496
- siteMarkedAsTemplate?: SiteMarkedAsTemplate;
1497
- /** Emitted when meta site is marked as a WixSite. */
1498
- siteMarkedAsWixSite?: SiteMarkedAsWixSite;
1499
- /** Emitted when an application is provisioned (installed). */
1500
- serviceProvisioned?: ServiceProvisioned;
1501
- /** Emitted when an application is removed (uninstalled). */
1502
- serviceRemoved?: ServiceRemoved;
1503
- /** Emitted when meta site name (URL slug) is changed. */
1504
- siteRenamedPayload?: SiteRenamed;
1505
- /** Emitted when meta site was permanently deleted. */
1506
- hardDeleted?: SiteHardDeleted;
1507
- /** Emitted on a namespace change. */
1508
- namespaceChanged?: NamespaceChanged;
1509
- /** Emitted when Studio is attached. */
1510
- studioAssigned?: StudioAssigned;
1511
- /** Emitted when Studio is detached. */
1512
- studioUnassigned?: StudioUnassigned;
1513
- /**
1514
- * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
1515
- * the actual URL.
1516
- *
1517
- * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
1518
- * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
1519
- */
1520
- urlChanged?: SiteUrlChanged;
1521
- /** Site is marked as PurgedExternally */
1522
- sitePurgedExternally?: SitePurgedExternally;
1523
- /** Emitted when Odeditor is attached. */
1524
- odeditorAssigned?: OdeditorAssigned;
1525
- /** Emitted when Odeditor is detached. */
1526
- odeditorUnassigned?: OdeditorUnassigned;
1527
- /** Emitted when Picasso is attached. */
1528
- picassoAssigned?: PicassoAssigned;
1529
- /** Emitted when Picasso is detached. */
1530
- picassoUnassigned?: PicassoUnassigned;
1531
- /**
1532
- * A meta site id.
1533
- * @format GUID
1534
- */
1535
- metaSiteId?: string;
1536
- /** A meta site version. Monotonically increasing. */
1537
- version?: string;
1538
- /** A timestamp of the event. */
1539
- timestamp?: string;
1540
- /**
1541
- * TODO(meta-site): Change validation once validations are disabled for consumers
1542
- * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
1543
- * @maxSize 4000
1544
- */
1545
- assets?: Asset[];
1546
- }
1547
- /** @oneof */
1548
- interface MetaSiteSpecialEventPayloadOneOf {
1549
- /** Emitted on a meta site creation. */
1550
- siteCreated?: SiteCreated;
1551
- /** Emitted on a meta site transfer completion. */
1552
- siteTransferred?: SiteTransferred;
1553
- /** Emitted on a meta site deletion. */
1554
- siteDeleted?: SiteDeleted;
1555
- /** Emitted on a meta site restoration. */
1556
- siteUndeleted?: SiteUndeleted;
1557
- /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
1558
- sitePublished?: SitePublished;
1559
- /** Emitted on a meta site unpublish. */
1560
- siteUnpublished?: SiteUnpublished;
1561
- /** Emitted when meta site is marked as template. */
1562
- siteMarkedAsTemplate?: SiteMarkedAsTemplate;
1563
- /** Emitted when meta site is marked as a WixSite. */
1564
- siteMarkedAsWixSite?: SiteMarkedAsWixSite;
1565
- /** Emitted when an application is provisioned (installed). */
1566
- serviceProvisioned?: ServiceProvisioned;
1567
- /** Emitted when an application is removed (uninstalled). */
1568
- serviceRemoved?: ServiceRemoved;
1569
- /** Emitted when meta site name (URL slug) is changed. */
1570
- siteRenamedPayload?: SiteRenamed;
1571
- /** Emitted when meta site was permanently deleted. */
1572
- hardDeleted?: SiteHardDeleted;
1573
- /** Emitted on a namespace change. */
1574
- namespaceChanged?: NamespaceChanged;
1575
- /** Emitted when Studio is attached. */
1576
- studioAssigned?: StudioAssigned;
1577
- /** Emitted when Studio is detached. */
1578
- studioUnassigned?: StudioUnassigned;
1579
- /**
1580
- * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
1581
- * the actual URL.
1582
- *
1583
- * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
1584
- * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
1585
- */
1586
- urlChanged?: SiteUrlChanged;
1587
- /** Site is marked as PurgedExternally */
1588
- sitePurgedExternally?: SitePurgedExternally;
1589
- /** Emitted when Odeditor is attached. */
1590
- odeditorAssigned?: OdeditorAssigned;
1591
- /** Emitted when Odeditor is detached. */
1592
- odeditorUnassigned?: OdeditorUnassigned;
1593
- /** Emitted when Picasso is attached. */
1594
- picassoAssigned?: PicassoAssigned;
1595
- /** Emitted when Picasso is detached. */
1596
- picassoUnassigned?: PicassoUnassigned;
1597
- }
1598
- interface Asset {
1599
- /**
1600
- * An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum).
1601
- * @maxLength 36
1602
- */
1603
- appDefId?: string;
1604
- /**
1605
- * An instance id. For legacy reasons may be UUID or a string.
1606
- * @maxLength 200
1607
- */
1608
- instanceId?: string;
1609
- /** An application state. */
1610
- state?: StateWithLiterals;
1611
- }
1612
- declare enum State {
1613
- UNKNOWN = "UNKNOWN",
1614
- ENABLED = "ENABLED",
1615
- DISABLED = "DISABLED",
1616
- PENDING = "PENDING",
1617
- DEMO = "DEMO"
1618
- }
1619
- /** @enumType */
1620
- type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'PENDING' | 'DEMO';
1621
819
  interface DomainEvent extends DomainEventBodyOneOf {
1622
820
  createdEvent?: EntityCreatedEvent;
1623
821
  updatedEvent?: EntityUpdatedEvent;
@@ -1754,25 +952,25 @@ declare enum WebhookIdentityType {
1754
952
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1755
953
  interface UpdatePaymentAcceptanceConfiguration {
1756
954
  /**
1757
- * id
955
+ * Id
1758
956
  * @format GUID
1759
957
  * @readonly
1760
958
  * @immutable
1761
959
  */
1762
960
  _id?: string | null;
1763
961
  /**
1764
- * app_id
962
+ * App id
1765
963
  * @format GUID
1766
964
  * @immutable
1767
965
  */
1768
966
  appId?: string | null;
1769
967
  /**
1770
- * rules
968
+ * Rules
1771
969
  * @maxSize 1000
1772
970
  */
1773
971
  rules?: PaymentAcceptanceRule[];
1774
972
  /**
1775
- * revision
973
+ * Revision
1776
974
  * @readonly
1777
975
  */
1778
976
  revision?: string | null;
@@ -1882,4 +1080,4 @@ interface BulkUpdatePaymentAcceptanceConfigurationTagsByFilterOptions {
1882
1080
  unassignTags?: Tags;
1883
1081
  }
1884
1082
 
1885
- export { type ActionEvent, ApiState, type ApiStateWithLiterals, type AppBuilderAttributes, type Application, type ApplicationError, ApplicationType, type ApplicationTypeWithLiterals, type Asset, type BulkActionMetadata, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsResult, type ClubsAttributes, CollectionExposure, type CollectionExposureWithLiterals, Compatibility, type CompatibilityWithLiterals, type ContactsAttributes, Context, type ContextWithLiterals, type CreatePaymentAcceptanceConfigurationRequest, type CreatePaymentAcceptanceConfigurationResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DeleteContext, type DeletePaymentAcceptanceConfigurationRequest, type DeletePaymentAcceptanceConfigurationResponse, DeleteStatus, type DeleteStatusWithLiterals, DocumentType, type DocumentTypeWithLiterals, type Domain, type DomainEvent, type DomainEventBodyOneOf, type EmbeddedService, type EmbeddedServiceAttributesOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EntryPoint, type EntryPointDataOneOf, type EntryPointDomain, type ExtendedFields, type ExternalUriMapping, Flag, type FlagWithLiterals, FormFace, type FormFaceWithLiterals, type GetPaymentAcceptanceConfigurationRequest, type GetPaymentAcceptanceConfigurationResponse, HttpsPolicy, type HttpsPolicyWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type ItemMetadata, Kind, type KindWithLiterals, type ListsAppsAttributes, type MessageEnvelope, type MetaSite, type MetaSiteEvent, type MetaSiteEventPayloadOneOf, type MetaSiteFullEvent, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type MetaTag, type MobileAppAttributes, type MobileAppBannerInfo, type MultilingualDomain, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type OdeditorAssigned, type OdeditorUnassigned, type OnboardingAttributes, type PaymentAcceptanceConfiguration, type PaymentAcceptanceConfigurationsQueryBuilder, type PaymentAcceptanceConfigurationsQueryResult, type PaymentAcceptanceRule, type PendingApp, type PendingApps, PendingReason, type PendingReasonWithLiterals, type PicassoAssigned, type PicassoUnassigned, PremiumFeature, type PremiumFeatureWithLiterals, type PrimaryUrl, type ProvidedMailingServiceAttributes, type QueryPaymentAcceptanceConfigurationsRequest, type QueryPaymentAcceptanceConfigurationsResponse, ResolutionMethod, type ResolutionMethodWithLiterals, type RestoreInfo, type RoutesApiData, type SeoData, type ServiceProvisioned, type ServiceRemoved, type SinglePath, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteLanguage, type SiteLanguages, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SiteMembersAttributes, 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 ThirdPartyAppsAttributes, type TrackingData, type UpdatePaymentAcceptanceConfiguration, type UpdatePaymentAcceptanceConfigurationRequest, type UpdatePaymentAcceptanceConfigurationResponse, type UrlMapping, type UserInHost, type UserInPath, type VirtualTpaMentioned, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WixCodeAttributes, type WixSiteProperties };
1083
+ export { type ActionEvent, type ApplicationError, type Asset, type Brands, type BulkActionMetadata, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsResult, type Countries, type CreatePaymentAcceptanceConfigurationRequest, type CreatePaymentAcceptanceConfigurationResponse, type Currencies, 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 Restrictions, type RestrictionsBrandsOneOf, type RestrictionsCountriesOneOf, type RestrictionsCurrenciesOneOf, 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 };