@wix/auto_sdk_faq_question-entry 1.0.48 → 1.0.49
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.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +71 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +529 -1
- package/build/cjs/index.typings.js +71 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +529 -1
- package/build/cjs/meta.js +71 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +67 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +529 -1
- package/build/es/index.typings.mjs +67 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +529 -1
- package/build/es/meta.mjs +67 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +71 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +529 -1
- package/build/internal/cjs/index.typings.js +71 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +529 -1
- package/build/internal/cjs/meta.js +71 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +67 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +529 -1
- package/build/internal/es/index.typings.mjs +67 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +529 -1
- package/build/internal/es/meta.mjs +67 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -2827,6 +2827,534 @@ interface ActionEvent {
|
|
|
2827
2827
|
}
|
|
2828
2828
|
interface Empty {
|
|
2829
2829
|
}
|
|
2830
|
+
interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
2831
|
+
/** Emitted on a meta site creation. */
|
|
2832
|
+
siteCreated?: SiteCreated;
|
|
2833
|
+
/** Emitted on a meta site transfer completion. */
|
|
2834
|
+
siteTransferred?: SiteTransferred;
|
|
2835
|
+
/** Emitted on a meta site deletion. */
|
|
2836
|
+
siteDeleted?: SiteDeleted;
|
|
2837
|
+
/** Emitted on a meta site restoration. */
|
|
2838
|
+
siteUndeleted?: SiteUndeleted;
|
|
2839
|
+
/** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
|
|
2840
|
+
sitePublished?: SitePublished;
|
|
2841
|
+
/** Emitted on a meta site unpublish. */
|
|
2842
|
+
siteUnpublished?: SiteUnpublished;
|
|
2843
|
+
/** Emitted when meta site is marked as template. */
|
|
2844
|
+
siteMarkedAsTemplate?: SiteMarkedAsTemplate;
|
|
2845
|
+
/** Emitted when meta site is marked as a WixSite. */
|
|
2846
|
+
siteMarkedAsWixSite?: SiteMarkedAsWixSite;
|
|
2847
|
+
/** Emitted when an application is provisioned (installed). */
|
|
2848
|
+
serviceProvisioned?: ServiceProvisioned;
|
|
2849
|
+
/** Emitted when an application is removed (uninstalled). */
|
|
2850
|
+
serviceRemoved?: ServiceRemoved;
|
|
2851
|
+
/** Emitted when meta site name (URL slug) is changed. */
|
|
2852
|
+
siteRenamedPayload?: SiteRenamed;
|
|
2853
|
+
/** Emitted when meta site was permanently deleted. */
|
|
2854
|
+
hardDeleted?: SiteHardDeleted;
|
|
2855
|
+
/** Emitted on a namespace change. */
|
|
2856
|
+
namespaceChanged?: NamespaceChanged;
|
|
2857
|
+
/** Emitted when Studio is attached. */
|
|
2858
|
+
studioAssigned?: StudioAssigned;
|
|
2859
|
+
/** Emitted when Studio is detached. */
|
|
2860
|
+
studioUnassigned?: StudioUnassigned;
|
|
2861
|
+
/**
|
|
2862
|
+
* Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
|
|
2863
|
+
* the actual URL.
|
|
2864
|
+
*
|
|
2865
|
+
* See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
|
|
2866
|
+
* See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
|
|
2867
|
+
*/
|
|
2868
|
+
urlChanged?: SiteUrlChanged;
|
|
2869
|
+
/** Site is marked as PurgedExternally */
|
|
2870
|
+
sitePurgedExternally?: SitePurgedExternally;
|
|
2871
|
+
/** Emitted when Odeditor is attached. */
|
|
2872
|
+
odeditorAssigned?: OdeditorAssigned;
|
|
2873
|
+
/** Emitted when Odeditor is detached. */
|
|
2874
|
+
odeditorUnassigned?: OdeditorUnassigned;
|
|
2875
|
+
/** Emitted when Picasso is attached. */
|
|
2876
|
+
picassoAssigned?: PicassoAssigned;
|
|
2877
|
+
/** Emitted when Picasso is detached. */
|
|
2878
|
+
picassoUnassigned?: PicassoUnassigned;
|
|
2879
|
+
/** Emitted when Wixel is attached. */
|
|
2880
|
+
wixelAssigned?: WixelAssigned;
|
|
2881
|
+
/** Emitted when Wixel is detached. */
|
|
2882
|
+
wixelUnassigned?: WixelUnassigned;
|
|
2883
|
+
/** Emitted when StudioTwo is attached. */
|
|
2884
|
+
studioTwoAssigned?: StudioTwoAssigned;
|
|
2885
|
+
/** Emitted when StudioTwo is detached. */
|
|
2886
|
+
studioTwoUnassigned?: StudioTwoUnassigned;
|
|
2887
|
+
/** Emitted when media from user domain is enabled. */
|
|
2888
|
+
userDomainMediaEnabled?: UserDomainMediaEnabled;
|
|
2889
|
+
/** Emitted when media from user domain is disabled. */
|
|
2890
|
+
userDomainMediaDisabled?: UserDomainMediaDisabled;
|
|
2891
|
+
/** Emitted when Editorless is attached. */
|
|
2892
|
+
editorlessAssigned?: EditorlessAssigned;
|
|
2893
|
+
/** Emitted when Editorless is detached. */
|
|
2894
|
+
editorlessUnassigned?: EditorlessUnassigned;
|
|
2895
|
+
/**
|
|
2896
|
+
* A meta site id.
|
|
2897
|
+
* @format GUID
|
|
2898
|
+
*/
|
|
2899
|
+
metaSiteId?: string;
|
|
2900
|
+
/** A meta site version. Monotonically increasing. */
|
|
2901
|
+
version?: string;
|
|
2902
|
+
/** A timestamp of the event. */
|
|
2903
|
+
timestamp?: string;
|
|
2904
|
+
/**
|
|
2905
|
+
* TODO(meta-site): Change validation once validations are disabled for consumers
|
|
2906
|
+
* More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
|
|
2907
|
+
* @maxSize 4000
|
|
2908
|
+
*/
|
|
2909
|
+
assets?: Asset[];
|
|
2910
|
+
}
|
|
2911
|
+
/** @oneof */
|
|
2912
|
+
interface MetaSiteSpecialEventPayloadOneOf {
|
|
2913
|
+
/** Emitted on a meta site creation. */
|
|
2914
|
+
siteCreated?: SiteCreated;
|
|
2915
|
+
/** Emitted on a meta site transfer completion. */
|
|
2916
|
+
siteTransferred?: SiteTransferred;
|
|
2917
|
+
/** Emitted on a meta site deletion. */
|
|
2918
|
+
siteDeleted?: SiteDeleted;
|
|
2919
|
+
/** Emitted on a meta site restoration. */
|
|
2920
|
+
siteUndeleted?: SiteUndeleted;
|
|
2921
|
+
/** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
|
|
2922
|
+
sitePublished?: SitePublished;
|
|
2923
|
+
/** Emitted on a meta site unpublish. */
|
|
2924
|
+
siteUnpublished?: SiteUnpublished;
|
|
2925
|
+
/** Emitted when meta site is marked as template. */
|
|
2926
|
+
siteMarkedAsTemplate?: SiteMarkedAsTemplate;
|
|
2927
|
+
/** Emitted when meta site is marked as a WixSite. */
|
|
2928
|
+
siteMarkedAsWixSite?: SiteMarkedAsWixSite;
|
|
2929
|
+
/** Emitted when an application is provisioned (installed). */
|
|
2930
|
+
serviceProvisioned?: ServiceProvisioned;
|
|
2931
|
+
/** Emitted when an application is removed (uninstalled). */
|
|
2932
|
+
serviceRemoved?: ServiceRemoved;
|
|
2933
|
+
/** Emitted when meta site name (URL slug) is changed. */
|
|
2934
|
+
siteRenamedPayload?: SiteRenamed;
|
|
2935
|
+
/** Emitted when meta site was permanently deleted. */
|
|
2936
|
+
hardDeleted?: SiteHardDeleted;
|
|
2937
|
+
/** Emitted on a namespace change. */
|
|
2938
|
+
namespaceChanged?: NamespaceChanged;
|
|
2939
|
+
/** Emitted when Studio is attached. */
|
|
2940
|
+
studioAssigned?: StudioAssigned;
|
|
2941
|
+
/** Emitted when Studio is detached. */
|
|
2942
|
+
studioUnassigned?: StudioUnassigned;
|
|
2943
|
+
/**
|
|
2944
|
+
* Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
|
|
2945
|
+
* the actual URL.
|
|
2946
|
+
*
|
|
2947
|
+
* See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
|
|
2948
|
+
* See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
|
|
2949
|
+
*/
|
|
2950
|
+
urlChanged?: SiteUrlChanged;
|
|
2951
|
+
/** Site is marked as PurgedExternally */
|
|
2952
|
+
sitePurgedExternally?: SitePurgedExternally;
|
|
2953
|
+
/** Emitted when Odeditor is attached. */
|
|
2954
|
+
odeditorAssigned?: OdeditorAssigned;
|
|
2955
|
+
/** Emitted when Odeditor is detached. */
|
|
2956
|
+
odeditorUnassigned?: OdeditorUnassigned;
|
|
2957
|
+
/** Emitted when Picasso is attached. */
|
|
2958
|
+
picassoAssigned?: PicassoAssigned;
|
|
2959
|
+
/** Emitted when Picasso is detached. */
|
|
2960
|
+
picassoUnassigned?: PicassoUnassigned;
|
|
2961
|
+
/** Emitted when Wixel is attached. */
|
|
2962
|
+
wixelAssigned?: WixelAssigned;
|
|
2963
|
+
/** Emitted when Wixel is detached. */
|
|
2964
|
+
wixelUnassigned?: WixelUnassigned;
|
|
2965
|
+
/** Emitted when StudioTwo is attached. */
|
|
2966
|
+
studioTwoAssigned?: StudioTwoAssigned;
|
|
2967
|
+
/** Emitted when StudioTwo is detached. */
|
|
2968
|
+
studioTwoUnassigned?: StudioTwoUnassigned;
|
|
2969
|
+
/** Emitted when media from user domain is enabled. */
|
|
2970
|
+
userDomainMediaEnabled?: UserDomainMediaEnabled;
|
|
2971
|
+
/** Emitted when media from user domain is disabled. */
|
|
2972
|
+
userDomainMediaDisabled?: UserDomainMediaDisabled;
|
|
2973
|
+
/** Emitted when Editorless is attached. */
|
|
2974
|
+
editorlessAssigned?: EditorlessAssigned;
|
|
2975
|
+
/** Emitted when Editorless is detached. */
|
|
2976
|
+
editorlessUnassigned?: EditorlessUnassigned;
|
|
2977
|
+
}
|
|
2978
|
+
interface Asset {
|
|
2979
|
+
/**
|
|
2980
|
+
* An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum).
|
|
2981
|
+
* @maxLength 36
|
|
2982
|
+
*/
|
|
2983
|
+
appDefId?: string;
|
|
2984
|
+
/**
|
|
2985
|
+
* An instance id. For legacy reasons may be UUID or a string.
|
|
2986
|
+
* @maxLength 200
|
|
2987
|
+
*/
|
|
2988
|
+
instanceId?: string;
|
|
2989
|
+
/** An application state. */
|
|
2990
|
+
state?: StateWithLiterals;
|
|
2991
|
+
}
|
|
2992
|
+
declare enum State {
|
|
2993
|
+
UNKNOWN = "UNKNOWN",
|
|
2994
|
+
ENABLED = "ENABLED",
|
|
2995
|
+
DISABLED = "DISABLED",
|
|
2996
|
+
PENDING = "PENDING",
|
|
2997
|
+
DEMO = "DEMO"
|
|
2998
|
+
}
|
|
2999
|
+
/** @enumType */
|
|
3000
|
+
type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'PENDING' | 'DEMO';
|
|
3001
|
+
interface SiteCreated {
|
|
3002
|
+
/**
|
|
3003
|
+
* A template identifier (empty if not created from a template).
|
|
3004
|
+
* @maxLength 36
|
|
3005
|
+
*/
|
|
3006
|
+
originTemplateId?: string;
|
|
3007
|
+
/**
|
|
3008
|
+
* An account id of the owner.
|
|
3009
|
+
* @format GUID
|
|
3010
|
+
*/
|
|
3011
|
+
ownerId?: string;
|
|
3012
|
+
/** A context in which meta site was created. */
|
|
3013
|
+
context?: SiteCreatedContextWithLiterals;
|
|
3014
|
+
/**
|
|
3015
|
+
* A meta site id from which this site was created.
|
|
3016
|
+
*
|
|
3017
|
+
* In case of a creation from a template it's a template id.
|
|
3018
|
+
* In case of a site duplication ("Save As" in dashboard or duplicate in UM) it's an id of a source site.
|
|
3019
|
+
* @format GUID
|
|
3020
|
+
*/
|
|
3021
|
+
originMetaSiteId?: string | null;
|
|
3022
|
+
/**
|
|
3023
|
+
* A meta site name (URL slug).
|
|
3024
|
+
* @maxLength 20
|
|
3025
|
+
*/
|
|
3026
|
+
siteName?: string;
|
|
3027
|
+
/** A namespace. */
|
|
3028
|
+
namespace?: NamespaceWithLiterals;
|
|
3029
|
+
}
|
|
3030
|
+
declare enum SiteCreatedContext {
|
|
3031
|
+
/** A valid option, we don't expose all reasons why site might be created. */
|
|
3032
|
+
OTHER = "OTHER",
|
|
3033
|
+
/** A meta site was created from template. */
|
|
3034
|
+
FROM_TEMPLATE = "FROM_TEMPLATE",
|
|
3035
|
+
/** A meta site was created by copying of the transfferred meta site. */
|
|
3036
|
+
DUPLICATE_BY_SITE_TRANSFER = "DUPLICATE_BY_SITE_TRANSFER",
|
|
3037
|
+
/** A copy of existing meta site. */
|
|
3038
|
+
DUPLICATE = "DUPLICATE",
|
|
3039
|
+
/** A meta site was created as a transfferred site (copy of the original), old flow, should die soon. */
|
|
3040
|
+
OLD_SITE_TRANSFER = "OLD_SITE_TRANSFER",
|
|
3041
|
+
/** deprecated A meta site was created for Flash editor. */
|
|
3042
|
+
FLASH = "FLASH"
|
|
3043
|
+
}
|
|
3044
|
+
/** @enumType */
|
|
3045
|
+
type SiteCreatedContextWithLiterals = SiteCreatedContext | 'OTHER' | 'FROM_TEMPLATE' | 'DUPLICATE_BY_SITE_TRANSFER' | 'DUPLICATE' | 'OLD_SITE_TRANSFER' | 'FLASH';
|
|
3046
|
+
declare enum Namespace {
|
|
3047
|
+
UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
|
|
3048
|
+
/** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
|
|
3049
|
+
WIX = "WIX",
|
|
3050
|
+
/** 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. */
|
|
3051
|
+
SHOUT_OUT = "SHOUT_OUT",
|
|
3052
|
+
/** 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. */
|
|
3053
|
+
ALBUMS = "ALBUMS",
|
|
3054
|
+
/** 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. */
|
|
3055
|
+
WIX_STORES_TEST_DRIVE = "WIX_STORES_TEST_DRIVE",
|
|
3056
|
+
/** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
3057
|
+
HOTELS = "HOTELS",
|
|
3058
|
+
/** 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. */
|
|
3059
|
+
CLUBS = "CLUBS",
|
|
3060
|
+
/** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
3061
|
+
ONBOARDING_DRAFT = "ONBOARDING_DRAFT",
|
|
3062
|
+
/** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
3063
|
+
DEV_SITE = "DEV_SITE",
|
|
3064
|
+
/** 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. */
|
|
3065
|
+
LOGOS = "LOGOS",
|
|
3066
|
+
/** 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. */
|
|
3067
|
+
VIDEO_MAKER = "VIDEO_MAKER",
|
|
3068
|
+
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
3069
|
+
PARTNER_DASHBOARD = "PARTNER_DASHBOARD",
|
|
3070
|
+
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
3071
|
+
DEV_CENTER_COMPANY = "DEV_CENTER_COMPANY",
|
|
3072
|
+
/**
|
|
3073
|
+
* A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
|
|
3074
|
+
*
|
|
3075
|
+
* Meta site with this namespace will *not* be shown in a user's site list by default.
|
|
3076
|
+
*/
|
|
3077
|
+
HTML_DRAFT = "HTML_DRAFT",
|
|
3078
|
+
/**
|
|
3079
|
+
* the user-journey for Fitness users who want to start from managing their business instead of designing their website.
|
|
3080
|
+
* Will be accessible from Site List and will not have a website app.
|
|
3081
|
+
* Once the user attaches a site, the site will become a regular wixsite.
|
|
3082
|
+
*/
|
|
3083
|
+
SITELESS_BUSINESS = "SITELESS_BUSINESS",
|
|
3084
|
+
/** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
|
|
3085
|
+
CREATOR_ECONOMY = "CREATOR_ECONOMY",
|
|
3086
|
+
/** It is to be used in the Business First efforts. */
|
|
3087
|
+
DASHBOARD_FIRST = "DASHBOARD_FIRST",
|
|
3088
|
+
/** Bookings business flow with no site. */
|
|
3089
|
+
ANYWHERE = "ANYWHERE",
|
|
3090
|
+
/** Namespace for Headless Backoffice with no editor */
|
|
3091
|
+
HEADLESS = "HEADLESS",
|
|
3092
|
+
/**
|
|
3093
|
+
* Namespace for master site that will exist in parent account that will be referenced by subaccounts
|
|
3094
|
+
* The site will be used for account level CSM feature for enterprise
|
|
3095
|
+
*/
|
|
3096
|
+
ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
|
|
3097
|
+
/** Rise.ai Siteless account management for Gift Cards and Store Credit. */
|
|
3098
|
+
RISE = "RISE",
|
|
3099
|
+
/**
|
|
3100
|
+
* As part of the branded app new funnel, users now can create a meta site that will be branded app first.
|
|
3101
|
+
* There's a blank site behind the scene but it's blank).
|
|
3102
|
+
* The Mobile company will be the owner of this namespace.
|
|
3103
|
+
*/
|
|
3104
|
+
BRANDED_FIRST = "BRANDED_FIRST",
|
|
3105
|
+
/** Nownia.com Siteless account management for Ai Scheduling Assistant. */
|
|
3106
|
+
NOWNIA = "NOWNIA",
|
|
3107
|
+
/**
|
|
3108
|
+
* UGC Templates are templates that are created by users for personal use and to sale to other users.
|
|
3109
|
+
* The Partners company owns this namespace.
|
|
3110
|
+
*/
|
|
3111
|
+
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
3112
|
+
/** Codux Headless Sites */
|
|
3113
|
+
CODUX = "CODUX",
|
|
3114
|
+
/** Bobb - AI Design Creator. */
|
|
3115
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR",
|
|
3116
|
+
/**
|
|
3117
|
+
* Shared Blog Site is a unique single site across Enterprise account,
|
|
3118
|
+
* This site will hold all Blog posts related to the Marketing product.
|
|
3119
|
+
*/
|
|
3120
|
+
SHARED_BLOG_ENTERPRISE = "SHARED_BLOG_ENTERPRISE",
|
|
3121
|
+
/** Standalone forms (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
3122
|
+
STANDALONE_FORMS = "STANDALONE_FORMS",
|
|
3123
|
+
/** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
3124
|
+
STANDALONE_EVENTS = "STANDALONE_EVENTS",
|
|
3125
|
+
/** MIMIR - Siteless account for MIMIR Ai Job runner. */
|
|
3126
|
+
MIMIR = "MIMIR",
|
|
3127
|
+
/** Wix Twins platform. */
|
|
3128
|
+
TWINS = "TWINS",
|
|
3129
|
+
/** Wix Nano. */
|
|
3130
|
+
NANO = "NANO",
|
|
3131
|
+
/** Base44 headless sites. */
|
|
3132
|
+
BASE44 = "BASE44",
|
|
3133
|
+
/** Wix Channels Sites */
|
|
3134
|
+
CHANNELS = "CHANNELS",
|
|
3135
|
+
/** Nautilus platform. */
|
|
3136
|
+
NAUTILUS = "NAUTILUS"
|
|
3137
|
+
}
|
|
3138
|
+
/** @enumType */
|
|
3139
|
+
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' | 'CHANNELS' | 'NAUTILUS';
|
|
3140
|
+
/** Site transferred to another user. */
|
|
3141
|
+
interface SiteTransferred {
|
|
3142
|
+
/**
|
|
3143
|
+
* A previous owner id (user that transfers meta site).
|
|
3144
|
+
* @format GUID
|
|
3145
|
+
*/
|
|
3146
|
+
oldOwnerId?: string;
|
|
3147
|
+
/**
|
|
3148
|
+
* A new owner id (user that accepts meta site).
|
|
3149
|
+
* @format GUID
|
|
3150
|
+
*/
|
|
3151
|
+
newOwnerId?: string;
|
|
3152
|
+
}
|
|
3153
|
+
/** Soft deletion of the meta site. Could be restored. */
|
|
3154
|
+
interface SiteDeleted {
|
|
3155
|
+
/** A deletion context. */
|
|
3156
|
+
deleteContext?: DeleteContext;
|
|
3157
|
+
}
|
|
3158
|
+
interface DeleteContext {
|
|
3159
|
+
/** When the meta site was deleted. */
|
|
3160
|
+
dateDeleted?: Date | null;
|
|
3161
|
+
/** A status. */
|
|
3162
|
+
deleteStatus?: DeleteStatusWithLiterals;
|
|
3163
|
+
/**
|
|
3164
|
+
* A reason (flow).
|
|
3165
|
+
* @maxLength 255
|
|
3166
|
+
*/
|
|
3167
|
+
deleteOrigin?: string;
|
|
3168
|
+
/**
|
|
3169
|
+
* A service that deleted it.
|
|
3170
|
+
* @maxLength 255
|
|
3171
|
+
*/
|
|
3172
|
+
initiatorId?: string | null;
|
|
3173
|
+
}
|
|
3174
|
+
declare enum DeleteStatus {
|
|
3175
|
+
UNKNOWN = "UNKNOWN",
|
|
3176
|
+
TRASH = "TRASH",
|
|
3177
|
+
DELETED = "DELETED",
|
|
3178
|
+
PENDING_PURGE = "PENDING_PURGE",
|
|
3179
|
+
PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
|
|
3180
|
+
}
|
|
3181
|
+
/** @enumType */
|
|
3182
|
+
type DeleteStatusWithLiterals = DeleteStatus | 'UNKNOWN' | 'TRASH' | 'DELETED' | 'PENDING_PURGE' | 'PURGED_EXTERNALLY';
|
|
3183
|
+
/** Restoration of the meta site. */
|
|
3184
|
+
interface SiteUndeleted {
|
|
3185
|
+
}
|
|
3186
|
+
/** First publish of a meta site. Or subsequent publish after unpublish. */
|
|
3187
|
+
interface SitePublished {
|
|
3188
|
+
}
|
|
3189
|
+
interface SiteUnpublished {
|
|
3190
|
+
/**
|
|
3191
|
+
* A list of URLs previously associated with the meta site.
|
|
3192
|
+
* @maxLength 4000
|
|
3193
|
+
* @maxSize 10000
|
|
3194
|
+
*/
|
|
3195
|
+
urls?: string[];
|
|
3196
|
+
}
|
|
3197
|
+
interface SiteMarkedAsTemplate {
|
|
3198
|
+
}
|
|
3199
|
+
interface SiteMarkedAsWixSite {
|
|
3200
|
+
}
|
|
3201
|
+
/**
|
|
3202
|
+
* Represents a service provisioned a site.
|
|
3203
|
+
*
|
|
3204
|
+
* Note on `origin_instance_id`:
|
|
3205
|
+
* There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
|
|
3206
|
+
* This is because of the following scenario:
|
|
3207
|
+
*
|
|
3208
|
+
* Imagine you have a template where a third-party application (TPA) includes some stub data,
|
|
3209
|
+
* such as a product catalog. When you create a site from this template, you inherit this
|
|
3210
|
+
* default product catalog. However, if the template's product catalog is modified,
|
|
3211
|
+
* your site will retain the catalog as it was at the time of site creation. This ensures that
|
|
3212
|
+
* your site remains consistent with what you initially received and does not include any
|
|
3213
|
+
* changes made to the original template afterward.
|
|
3214
|
+
* To ensure this, the TPA on the template gets a new instance_id.
|
|
3215
|
+
*/
|
|
3216
|
+
interface ServiceProvisioned {
|
|
3217
|
+
/**
|
|
3218
|
+
* Either UUID or EmbeddedServiceType.
|
|
3219
|
+
* @maxLength 36
|
|
3220
|
+
*/
|
|
3221
|
+
appDefId?: string;
|
|
3222
|
+
/**
|
|
3223
|
+
* Not only UUID. Something here could be something weird.
|
|
3224
|
+
* @maxLength 36
|
|
3225
|
+
*/
|
|
3226
|
+
instanceId?: string;
|
|
3227
|
+
/**
|
|
3228
|
+
* An instance id from which this instance is originated.
|
|
3229
|
+
* @maxLength 36
|
|
3230
|
+
*/
|
|
3231
|
+
originInstanceId?: string;
|
|
3232
|
+
/**
|
|
3233
|
+
* A version.
|
|
3234
|
+
* @maxLength 500
|
|
3235
|
+
*/
|
|
3236
|
+
version?: string | null;
|
|
3237
|
+
/**
|
|
3238
|
+
* The origin meta site id
|
|
3239
|
+
* @format GUID
|
|
3240
|
+
*/
|
|
3241
|
+
originMetaSiteId?: string | null;
|
|
3242
|
+
}
|
|
3243
|
+
interface ServiceRemoved {
|
|
3244
|
+
/**
|
|
3245
|
+
* Either UUID or EmbeddedServiceType.
|
|
3246
|
+
* @maxLength 36
|
|
3247
|
+
*/
|
|
3248
|
+
appDefId?: string;
|
|
3249
|
+
/**
|
|
3250
|
+
* Not only UUID. Something here could be something weird.
|
|
3251
|
+
* @maxLength 36
|
|
3252
|
+
*/
|
|
3253
|
+
instanceId?: string;
|
|
3254
|
+
/**
|
|
3255
|
+
* A version.
|
|
3256
|
+
* @maxLength 500
|
|
3257
|
+
*/
|
|
3258
|
+
version?: string | null;
|
|
3259
|
+
}
|
|
3260
|
+
/** Rename of the site. Meaning, free public url has been changed as well. */
|
|
3261
|
+
interface SiteRenamed {
|
|
3262
|
+
/**
|
|
3263
|
+
* A new meta site name (URL slug).
|
|
3264
|
+
* @maxLength 20
|
|
3265
|
+
*/
|
|
3266
|
+
newSiteName?: string;
|
|
3267
|
+
/**
|
|
3268
|
+
* A previous meta site name (URL slug).
|
|
3269
|
+
* @maxLength 255
|
|
3270
|
+
*/
|
|
3271
|
+
oldSiteName?: string;
|
|
3272
|
+
}
|
|
3273
|
+
/**
|
|
3274
|
+
* Hard deletion of the meta site.
|
|
3275
|
+
*
|
|
3276
|
+
* Could not be restored. Therefore it's desirable to cleanup data.
|
|
3277
|
+
*/
|
|
3278
|
+
interface SiteHardDeleted {
|
|
3279
|
+
/** A deletion context. */
|
|
3280
|
+
deleteContext?: DeleteContext;
|
|
3281
|
+
}
|
|
3282
|
+
interface NamespaceChanged {
|
|
3283
|
+
/** A previous namespace. */
|
|
3284
|
+
oldNamespace?: NamespaceWithLiterals;
|
|
3285
|
+
/** A new namespace. */
|
|
3286
|
+
newNamespace?: NamespaceWithLiterals;
|
|
3287
|
+
}
|
|
3288
|
+
/** Assigned Studio editor */
|
|
3289
|
+
interface StudioAssigned {
|
|
3290
|
+
}
|
|
3291
|
+
/** Unassigned Studio editor */
|
|
3292
|
+
interface StudioUnassigned {
|
|
3293
|
+
}
|
|
3294
|
+
/**
|
|
3295
|
+
* Fired in case site URLs were changed in any way: new secondary domain, published, account slug rename, site rename etc.
|
|
3296
|
+
*
|
|
3297
|
+
* This is an internal event, it's not propagated in special events, because it's non-actionable. If you need to keep up
|
|
3298
|
+
* with sites and its urls, you need to listen to another topic/event. Read about it:
|
|
3299
|
+
*
|
|
3300
|
+
* https://bo.wix.com/wix-docs/rest/meta-site/meta-site---urls-service
|
|
3301
|
+
*/
|
|
3302
|
+
interface SiteUrlChanged {
|
|
3303
|
+
}
|
|
3304
|
+
/**
|
|
3305
|
+
* Used at the end of the deletion flow for both draft sites and when a user deletes a site.
|
|
3306
|
+
* Consumed by other teams to remove relevant data.
|
|
3307
|
+
*/
|
|
3308
|
+
interface SitePurgedExternally {
|
|
3309
|
+
/**
|
|
3310
|
+
* @maxLength 2048
|
|
3311
|
+
* @maxSize 100
|
|
3312
|
+
* @deprecated
|
|
3313
|
+
* @targetRemovalDate 2025-04-15
|
|
3314
|
+
*/
|
|
3315
|
+
appDefId?: string[];
|
|
3316
|
+
}
|
|
3317
|
+
/** Assigned Odeditor */
|
|
3318
|
+
interface OdeditorAssigned {
|
|
3319
|
+
}
|
|
3320
|
+
/** Unassigned Odeditor */
|
|
3321
|
+
interface OdeditorUnassigned {
|
|
3322
|
+
}
|
|
3323
|
+
/** Assigned Picasso editor */
|
|
3324
|
+
interface PicassoAssigned {
|
|
3325
|
+
}
|
|
3326
|
+
/** Unassigned Picasso */
|
|
3327
|
+
interface PicassoUnassigned {
|
|
3328
|
+
}
|
|
3329
|
+
/** Assigned Wixel */
|
|
3330
|
+
interface WixelAssigned {
|
|
3331
|
+
}
|
|
3332
|
+
/** Unassigned Wixel */
|
|
3333
|
+
interface WixelUnassigned {
|
|
3334
|
+
}
|
|
3335
|
+
/** Assigned StudioTwo */
|
|
3336
|
+
interface StudioTwoAssigned {
|
|
3337
|
+
}
|
|
3338
|
+
/** Unassigned StudioTwo */
|
|
3339
|
+
interface StudioTwoUnassigned {
|
|
3340
|
+
}
|
|
3341
|
+
/** Media from user domain is enabled. */
|
|
3342
|
+
interface UserDomainMediaEnabled {
|
|
3343
|
+
}
|
|
3344
|
+
/** Media from user domain is disabled. */
|
|
3345
|
+
interface UserDomainMediaDisabled {
|
|
3346
|
+
}
|
|
3347
|
+
/** Assigned Editorless */
|
|
3348
|
+
interface EditorlessAssigned {
|
|
3349
|
+
}
|
|
3350
|
+
/** Unassigned Editorless */
|
|
3351
|
+
interface EditorlessUnassigned {
|
|
3352
|
+
}
|
|
3353
|
+
/** Triggers FaqDefaultContentJob.handle for the call-scope tenant (Fire Console / DP validation). */
|
|
3354
|
+
interface RunInstallationContentRequest {
|
|
3355
|
+
}
|
|
3356
|
+
interface RunInstallationContentResponse {
|
|
3357
|
+
}
|
|
2830
3358
|
interface MessageEnvelope {
|
|
2831
3359
|
/**
|
|
2832
3360
|
* App instance ID.
|
|
@@ -2950,4 +3478,4 @@ declare function setQuestionEntryLabels(): __PublicMethodMetaInfo<'PATCH', {
|
|
|
2950
3478
|
}, SetQuestionEntryLabelsRequest$1, SetQuestionEntryLabelsRequest, SetQuestionEntryLabelsResponse$1, SetQuestionEntryLabelsResponse>;
|
|
2951
3479
|
declare function bulkUpdateQuestionEntry(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateQuestionEntryRequest$1, BulkUpdateQuestionEntryRequest, BulkUpdateQuestionEntryResponse$1, BulkUpdateQuestionEntryResponse>;
|
|
2952
3480
|
|
|
2953
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Banner as BannerOriginal, BannerPosition as BannerPositionOriginal, type BannerPositionWithLiterals as BannerPositionWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkDeleteQuestionEntriesRequest as BulkDeleteQuestionEntriesRequestOriginal, type BulkDeleteQuestionEntriesResponse as BulkDeleteQuestionEntriesResponseOriginal, type BulkUpdateQuestionEntryRequest as BulkUpdateQuestionEntryRequestOriginal, type BulkUpdateQuestionEntryResponse as BulkUpdateQuestionEntryResponseOriginal, type BulkUpdateQuestionEntryResult as BulkUpdateQuestionEntryResultOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CheckboxListData as CheckboxListDataOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, ContentFormat as ContentFormatOriginal, type ContentFormatWithLiterals as ContentFormatWithLiteralsOriginal, type CreateQuestionEntryRequest as CreateQuestionEntryRequestOriginal, type CreateQuestionEntryResponse as CreateQuestionEntryResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteQuestionEntryRequest as DeleteQuestionEntryRequestOriginal, type DeleteQuestionEntryResponse as DeleteQuestionEntryResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type ExtendedFields as ExtendedFieldsOriginal, FieldSet as FieldSetOriginal, type FieldSetWithLiterals as FieldSetWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetQuestionEntryRequest as GetQuestionEntryRequestOriginal, type GetQuestionEntryResponse as GetQuestionEntryResponseOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Label as LabelOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListItemNodeData as ListItemNodeDataOriginal, type ListQuestionEntriesRequest as ListQuestionEntriesRequestOriginal, type ListQuestionEntriesResponse as ListQuestionEntriesResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MaskedQuestionEntry as MaskedQuestionEntryOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, QueryQuestionEntriesRequestContentFormat as QueryQuestionEntriesRequestContentFormatOriginal, type QueryQuestionEntriesRequestContentFormatWithLiterals as QueryQuestionEntriesRequestContentFormatWithLiteralsOriginal, QueryQuestionEntriesRequestFieldSet as QueryQuestionEntriesRequestFieldSetOriginal, type QueryQuestionEntriesRequestFieldSetWithLiterals as QueryQuestionEntriesRequestFieldSetWithLiteralsOriginal, type QueryQuestionEntriesRequest as QueryQuestionEntriesRequestOriginal, type QueryQuestionEntriesResponse as QueryQuestionEntriesResponseOriginal, type QuestionEntryAnswerOneOf as QuestionEntryAnswerOneOfOriginal, type QuestionEntry as QuestionEntryOriginal, QuestionStatus as QuestionStatusOriginal, type QuestionStatusWithLiterals as QuestionStatusWithLiteralsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type SetQuestionEntryLabelsRequest as SetQuestionEntryLabelsRequestOriginal, type SetQuestionEntryLabelsResponse as SetQuestionEntryLabelsResponseOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequestOriginal, type UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponseOriginal, type UpdateQuestionEntryRequest as UpdateQuestionEntryRequestOriginal, type UpdateQuestionEntryResponse as UpdateQuestionEntryResponseOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, queryQuestionEntries, setQuestionEntryLabels, updateExtendedFields, updateQuestionEntry };
|
|
3481
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type Asset as AssetOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Banner as BannerOriginal, BannerPosition as BannerPositionOriginal, type BannerPositionWithLiterals as BannerPositionWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkDeleteQuestionEntriesRequest as BulkDeleteQuestionEntriesRequestOriginal, type BulkDeleteQuestionEntriesResponse as BulkDeleteQuestionEntriesResponseOriginal, type BulkUpdateQuestionEntryRequest as BulkUpdateQuestionEntryRequestOriginal, type BulkUpdateQuestionEntryResponse as BulkUpdateQuestionEntryResponseOriginal, type BulkUpdateQuestionEntryResult as BulkUpdateQuestionEntryResultOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CheckboxListData as CheckboxListDataOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, ContentFormat as ContentFormatOriginal, type ContentFormatWithLiterals as ContentFormatWithLiteralsOriginal, type CreateQuestionEntryRequest as CreateQuestionEntryRequestOriginal, type CreateQuestionEntryResponse as CreateQuestionEntryResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteContext as DeleteContextOriginal, type DeleteQuestionEntryRequest as DeleteQuestionEntryRequestOriginal, type DeleteQuestionEntryResponse as DeleteQuestionEntryResponseOriginal, DeleteStatus as DeleteStatusOriginal, type DeleteStatusWithLiterals as DeleteStatusWithLiteralsOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EditorlessAssigned as EditorlessAssignedOriginal, type EditorlessUnassigned as EditorlessUnassignedOriginal, type EmbedData as EmbedDataOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type ExtendedFields as ExtendedFieldsOriginal, FieldSet as FieldSetOriginal, type FieldSetWithLiterals as FieldSetWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetQuestionEntryRequest as GetQuestionEntryRequestOriginal, type GetQuestionEntryResponse as GetQuestionEntryResponseOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Label as LabelOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListItemNodeData as ListItemNodeDataOriginal, type ListQuestionEntriesRequest as ListQuestionEntriesRequestOriginal, type ListQuestionEntriesResponse as ListQuestionEntriesResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MaskedQuestionEntry as MaskedQuestionEntryOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaSiteSpecialEvent as MetaSiteSpecialEventOriginal, type MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOfOriginal, type Metadata as MetadataOriginal, type NamespaceChanged as NamespaceChangedOriginal, Namespace as NamespaceOriginal, type NamespaceWithLiterals as NamespaceWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type OdeditorAssigned as OdeditorAssignedOriginal, type OdeditorUnassigned as OdeditorUnassignedOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, type PicassoAssigned as PicassoAssignedOriginal, type PicassoUnassigned as PicassoUnassignedOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, QueryQuestionEntriesRequestContentFormat as QueryQuestionEntriesRequestContentFormatOriginal, type QueryQuestionEntriesRequestContentFormatWithLiterals as QueryQuestionEntriesRequestContentFormatWithLiteralsOriginal, QueryQuestionEntriesRequestFieldSet as QueryQuestionEntriesRequestFieldSetOriginal, type QueryQuestionEntriesRequestFieldSetWithLiterals as QueryQuestionEntriesRequestFieldSetWithLiteralsOriginal, type QueryQuestionEntriesRequest as QueryQuestionEntriesRequestOriginal, type QueryQuestionEntriesResponse as QueryQuestionEntriesResponseOriginal, type QuestionEntryAnswerOneOf as QuestionEntryAnswerOneOfOriginal, type QuestionEntry as QuestionEntryOriginal, QuestionStatus as QuestionStatusOriginal, type QuestionStatusWithLiterals as QuestionStatusWithLiteralsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type RunInstallationContentRequest as RunInstallationContentRequestOriginal, type RunInstallationContentResponse as RunInstallationContentResponseOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ServiceProvisioned as ServiceProvisionedOriginal, type ServiceRemoved as ServiceRemovedOriginal, type SetQuestionEntryLabelsRequest as SetQuestionEntryLabelsRequestOriginal, type SetQuestionEntryLabelsResponse as SetQuestionEntryLabelsResponseOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, 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, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, type Stop as StopOriginal, type StudioAssigned as StudioAssignedOriginal, type StudioTwoAssigned as StudioTwoAssignedOriginal, type StudioTwoUnassigned as StudioTwoUnassignedOriginal, type StudioUnassigned as StudioUnassignedOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequestOriginal, type UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponseOriginal, type UpdateQuestionEntryRequest as UpdateQuestionEntryRequestOriginal, type UpdateQuestionEntryResponse as UpdateQuestionEntryResponseOriginal, type UserDomainMediaDisabled as UserDomainMediaDisabledOriginal, type UserDomainMediaEnabled as UserDomainMediaEnabledOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixelAssigned as WixelAssignedOriginal, type WixelUnassigned as WixelUnassignedOriginal, type __PublicMethodMetaInfo, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, queryQuestionEntries, setQuestionEntryLabels, updateExtendedFields, updateQuestionEntry };
|