@wix/auto_sdk_comments_comments 1.0.37 → 1.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +7 -7
- package/build/cjs/index.js +305 -171
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +294 -165
- package/build/cjs/index.typings.js +21 -14
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +163 -151
- package/build/cjs/meta.js +21 -14
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +7 -7
- package/build/es/index.mjs +304 -171
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +294 -165
- package/build/es/index.typings.mjs +20 -14
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +163 -151
- package/build/es/meta.mjs +20 -14
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +7 -7
- package/build/internal/cjs/index.js +305 -171
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +294 -165
- package/build/internal/cjs/index.typings.js +21 -14
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +163 -151
- package/build/internal/cjs/meta.js +21 -14
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +7 -7
- package/build/internal/es/index.mjs +304 -171
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +294 -165
- package/build/internal/es/index.typings.mjs +20 -14
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +163 -151
- package/build/internal/es/meta.mjs +20 -14
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -1894,6 +1894,8 @@ interface LayoutData {
|
|
|
1894
1894
|
responsivenessBreakpoint?: number | null;
|
|
1895
1895
|
/** Styling for the layout's container. */
|
|
1896
1896
|
containerData?: PluginContainerData;
|
|
1897
|
+
/** Defines where selected design propertied applies to */
|
|
1898
|
+
designTarget?: DesignTargetWithLiterals;
|
|
1897
1899
|
}
|
|
1898
1900
|
declare enum Scaling {
|
|
1899
1901
|
/** Auto image scaling */
|
|
@@ -1955,6 +1957,14 @@ declare enum ResponsivenessBehaviour {
|
|
|
1955
1957
|
}
|
|
1956
1958
|
/** @enumType */
|
|
1957
1959
|
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
1960
|
+
declare enum DesignTarget {
|
|
1961
|
+
/** Design applied to layout */
|
|
1962
|
+
LAYOUT = "LAYOUT",
|
|
1963
|
+
/** Design applied to cells */
|
|
1964
|
+
CELL = "CELL"
|
|
1965
|
+
}
|
|
1966
|
+
/** @enumType */
|
|
1967
|
+
type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
1958
1968
|
interface LayoutCellData {
|
|
1959
1969
|
/** Size of the cell in 12 columns grid. */
|
|
1960
1970
|
colSpan?: number | null;
|
|
@@ -2386,6 +2396,158 @@ interface CommentReactionSummary {
|
|
|
2386
2396
|
*/
|
|
2387
2397
|
reactionCodeCount?: Record<string, number>;
|
|
2388
2398
|
}
|
|
2399
|
+
interface CommentModerated {
|
|
2400
|
+
comment?: Comment;
|
|
2401
|
+
moderationAction?: ActionWithLiterals;
|
|
2402
|
+
}
|
|
2403
|
+
declare enum Action {
|
|
2404
|
+
/** Unknown content. */
|
|
2405
|
+
UNKNOWN = "UNKNOWN",
|
|
2406
|
+
/** Approve draft content. */
|
|
2407
|
+
APPROVE = "APPROVE",
|
|
2408
|
+
/** Reject draft content. */
|
|
2409
|
+
REJECT = "REJECT"
|
|
2410
|
+
}
|
|
2411
|
+
/** @enumType */
|
|
2412
|
+
type ActionWithLiterals = Action | 'UNKNOWN' | 'APPROVE' | 'REJECT';
|
|
2413
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2414
|
+
createdEvent?: EntityCreatedEvent;
|
|
2415
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2416
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2417
|
+
actionEvent?: ActionEvent;
|
|
2418
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2419
|
+
id?: string;
|
|
2420
|
+
/**
|
|
2421
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2422
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2423
|
+
*/
|
|
2424
|
+
entityFqdn?: string;
|
|
2425
|
+
/**
|
|
2426
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2427
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2428
|
+
*/
|
|
2429
|
+
slug?: string;
|
|
2430
|
+
/** ID of the entity associated with the event. */
|
|
2431
|
+
entityId?: string;
|
|
2432
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2433
|
+
eventTime?: Date | null;
|
|
2434
|
+
/**
|
|
2435
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2436
|
+
* (for example, GDPR).
|
|
2437
|
+
*/
|
|
2438
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2439
|
+
/** If present, indicates the action that triggered the event. */
|
|
2440
|
+
originatedFrom?: string | null;
|
|
2441
|
+
/**
|
|
2442
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
2443
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
2444
|
+
*/
|
|
2445
|
+
entityEventSequence?: string | null;
|
|
2446
|
+
}
|
|
2447
|
+
/** @oneof */
|
|
2448
|
+
interface DomainEventBodyOneOf {
|
|
2449
|
+
createdEvent?: EntityCreatedEvent;
|
|
2450
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2451
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2452
|
+
actionEvent?: ActionEvent;
|
|
2453
|
+
}
|
|
2454
|
+
interface EntityCreatedEvent {
|
|
2455
|
+
entityAsJson?: string;
|
|
2456
|
+
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
2457
|
+
restoreInfo?: RestoreInfo;
|
|
2458
|
+
}
|
|
2459
|
+
interface RestoreInfo {
|
|
2460
|
+
deletedDate?: Date | null;
|
|
2461
|
+
}
|
|
2462
|
+
interface EntityUpdatedEvent {
|
|
2463
|
+
/**
|
|
2464
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2465
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2466
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2467
|
+
*/
|
|
2468
|
+
currentEntityAsJson?: string;
|
|
2469
|
+
}
|
|
2470
|
+
interface EntityDeletedEvent {
|
|
2471
|
+
/** Entity that was deleted. */
|
|
2472
|
+
deletedEntityAsJson?: string | null;
|
|
2473
|
+
}
|
|
2474
|
+
interface ActionEvent {
|
|
2475
|
+
bodyAsJson?: string;
|
|
2476
|
+
}
|
|
2477
|
+
interface Empty {
|
|
2478
|
+
}
|
|
2479
|
+
interface MessageEnvelope {
|
|
2480
|
+
/**
|
|
2481
|
+
* App instance ID.
|
|
2482
|
+
* @format GUID
|
|
2483
|
+
*/
|
|
2484
|
+
instanceId?: string | null;
|
|
2485
|
+
/**
|
|
2486
|
+
* Event type.
|
|
2487
|
+
* @maxLength 150
|
|
2488
|
+
*/
|
|
2489
|
+
eventType?: string;
|
|
2490
|
+
/** The identification type and identity data. */
|
|
2491
|
+
identity?: IdentificationData;
|
|
2492
|
+
/** Stringify payload. */
|
|
2493
|
+
data?: string;
|
|
2494
|
+
}
|
|
2495
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2496
|
+
/**
|
|
2497
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2498
|
+
* @format GUID
|
|
2499
|
+
*/
|
|
2500
|
+
anonymousVisitorId?: string;
|
|
2501
|
+
/**
|
|
2502
|
+
* ID of a site visitor that has logged in to the site.
|
|
2503
|
+
* @format GUID
|
|
2504
|
+
*/
|
|
2505
|
+
memberId?: string;
|
|
2506
|
+
/**
|
|
2507
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2508
|
+
* @format GUID
|
|
2509
|
+
*/
|
|
2510
|
+
wixUserId?: string;
|
|
2511
|
+
/**
|
|
2512
|
+
* ID of an app.
|
|
2513
|
+
* @format GUID
|
|
2514
|
+
*/
|
|
2515
|
+
appId?: string;
|
|
2516
|
+
/** @readonly */
|
|
2517
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2518
|
+
}
|
|
2519
|
+
/** @oneof */
|
|
2520
|
+
interface IdentificationDataIdOneOf {
|
|
2521
|
+
/**
|
|
2522
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2523
|
+
* @format GUID
|
|
2524
|
+
*/
|
|
2525
|
+
anonymousVisitorId?: string;
|
|
2526
|
+
/**
|
|
2527
|
+
* ID of a site visitor that has logged in to the site.
|
|
2528
|
+
* @format GUID
|
|
2529
|
+
*/
|
|
2530
|
+
memberId?: string;
|
|
2531
|
+
/**
|
|
2532
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2533
|
+
* @format GUID
|
|
2534
|
+
*/
|
|
2535
|
+
wixUserId?: string;
|
|
2536
|
+
/**
|
|
2537
|
+
* ID of an app.
|
|
2538
|
+
* @format GUID
|
|
2539
|
+
*/
|
|
2540
|
+
appId?: string;
|
|
2541
|
+
}
|
|
2542
|
+
declare enum WebhookIdentityType {
|
|
2543
|
+
UNKNOWN = "UNKNOWN",
|
|
2544
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2545
|
+
MEMBER = "MEMBER",
|
|
2546
|
+
WIX_USER = "WIX_USER",
|
|
2547
|
+
APP = "APP"
|
|
2548
|
+
}
|
|
2549
|
+
/** @enumType */
|
|
2550
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2389
2551
|
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
2390
2552
|
/** insert/update documents */
|
|
2391
2553
|
update?: InternalDocumentUpdateOperation;
|
|
@@ -2521,20 +2683,6 @@ interface VersionedDocumentId {
|
|
|
2521
2683
|
/** versioning mode to use instead of default */
|
|
2522
2684
|
versioningMode?: VersioningModeWithLiterals;
|
|
2523
2685
|
}
|
|
2524
|
-
interface CommentModerated {
|
|
2525
|
-
comment?: Comment;
|
|
2526
|
-
moderationAction?: ActionWithLiterals;
|
|
2527
|
-
}
|
|
2528
|
-
declare enum Action {
|
|
2529
|
-
/** Unknown content. */
|
|
2530
|
-
UNKNOWN = "UNKNOWN",
|
|
2531
|
-
/** Approve draft content. */
|
|
2532
|
-
APPROVE = "APPROVE",
|
|
2533
|
-
/** Reject draft content. */
|
|
2534
|
-
REJECT = "REJECT"
|
|
2535
|
-
}
|
|
2536
|
-
/** @enumType */
|
|
2537
|
-
type ActionWithLiterals = Action | 'UNKNOWN' | 'APPROVE' | 'REJECT';
|
|
2538
2686
|
interface CreateCommentRequest {
|
|
2539
2687
|
/** Comment to create. */
|
|
2540
2688
|
comment?: Comment;
|
|
@@ -3046,142 +3194,6 @@ interface CommentMoved {
|
|
|
3046
3194
|
comment?: Comment;
|
|
3047
3195
|
destination?: Destination;
|
|
3048
3196
|
}
|
|
3049
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
3050
|
-
createdEvent?: EntityCreatedEvent;
|
|
3051
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3052
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3053
|
-
actionEvent?: ActionEvent;
|
|
3054
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
3055
|
-
id?: string;
|
|
3056
|
-
/**
|
|
3057
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
3058
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
3059
|
-
*/
|
|
3060
|
-
entityFqdn?: string;
|
|
3061
|
-
/**
|
|
3062
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
3063
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
3064
|
-
*/
|
|
3065
|
-
slug?: string;
|
|
3066
|
-
/** ID of the entity associated with the event. */
|
|
3067
|
-
entityId?: string;
|
|
3068
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
3069
|
-
eventTime?: Date | null;
|
|
3070
|
-
/**
|
|
3071
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
3072
|
-
* (for example, GDPR).
|
|
3073
|
-
*/
|
|
3074
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
3075
|
-
/** If present, indicates the action that triggered the event. */
|
|
3076
|
-
originatedFrom?: string | null;
|
|
3077
|
-
/**
|
|
3078
|
-
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
3079
|
-
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
3080
|
-
*/
|
|
3081
|
-
entityEventSequence?: string | null;
|
|
3082
|
-
}
|
|
3083
|
-
/** @oneof */
|
|
3084
|
-
interface DomainEventBodyOneOf {
|
|
3085
|
-
createdEvent?: EntityCreatedEvent;
|
|
3086
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3087
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3088
|
-
actionEvent?: ActionEvent;
|
|
3089
|
-
}
|
|
3090
|
-
interface EntityCreatedEvent {
|
|
3091
|
-
entityAsJson?: string;
|
|
3092
|
-
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
3093
|
-
restoreInfo?: RestoreInfo;
|
|
3094
|
-
}
|
|
3095
|
-
interface RestoreInfo {
|
|
3096
|
-
deletedDate?: Date | null;
|
|
3097
|
-
}
|
|
3098
|
-
interface EntityUpdatedEvent {
|
|
3099
|
-
/**
|
|
3100
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3101
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3102
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3103
|
-
*/
|
|
3104
|
-
currentEntityAsJson?: string;
|
|
3105
|
-
}
|
|
3106
|
-
interface EntityDeletedEvent {
|
|
3107
|
-
/** Entity that was deleted. */
|
|
3108
|
-
deletedEntityAsJson?: string | null;
|
|
3109
|
-
}
|
|
3110
|
-
interface ActionEvent {
|
|
3111
|
-
bodyAsJson?: string;
|
|
3112
|
-
}
|
|
3113
|
-
interface MessageEnvelope {
|
|
3114
|
-
/**
|
|
3115
|
-
* App instance ID.
|
|
3116
|
-
* @format GUID
|
|
3117
|
-
*/
|
|
3118
|
-
instanceId?: string | null;
|
|
3119
|
-
/**
|
|
3120
|
-
* Event type.
|
|
3121
|
-
* @maxLength 150
|
|
3122
|
-
*/
|
|
3123
|
-
eventType?: string;
|
|
3124
|
-
/** The identification type and identity data. */
|
|
3125
|
-
identity?: IdentificationData;
|
|
3126
|
-
/** Stringify payload. */
|
|
3127
|
-
data?: string;
|
|
3128
|
-
}
|
|
3129
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3130
|
-
/**
|
|
3131
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3132
|
-
* @format GUID
|
|
3133
|
-
*/
|
|
3134
|
-
anonymousVisitorId?: string;
|
|
3135
|
-
/**
|
|
3136
|
-
* ID of a site visitor that has logged in to the site.
|
|
3137
|
-
* @format GUID
|
|
3138
|
-
*/
|
|
3139
|
-
memberId?: string;
|
|
3140
|
-
/**
|
|
3141
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3142
|
-
* @format GUID
|
|
3143
|
-
*/
|
|
3144
|
-
wixUserId?: string;
|
|
3145
|
-
/**
|
|
3146
|
-
* ID of an app.
|
|
3147
|
-
* @format GUID
|
|
3148
|
-
*/
|
|
3149
|
-
appId?: string;
|
|
3150
|
-
/** @readonly */
|
|
3151
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3152
|
-
}
|
|
3153
|
-
/** @oneof */
|
|
3154
|
-
interface IdentificationDataIdOneOf {
|
|
3155
|
-
/**
|
|
3156
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3157
|
-
* @format GUID
|
|
3158
|
-
*/
|
|
3159
|
-
anonymousVisitorId?: string;
|
|
3160
|
-
/**
|
|
3161
|
-
* ID of a site visitor that has logged in to the site.
|
|
3162
|
-
* @format GUID
|
|
3163
|
-
*/
|
|
3164
|
-
memberId?: string;
|
|
3165
|
-
/**
|
|
3166
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3167
|
-
* @format GUID
|
|
3168
|
-
*/
|
|
3169
|
-
wixUserId?: string;
|
|
3170
|
-
/**
|
|
3171
|
-
* ID of an app.
|
|
3172
|
-
* @format GUID
|
|
3173
|
-
*/
|
|
3174
|
-
appId?: string;
|
|
3175
|
-
}
|
|
3176
|
-
declare enum WebhookIdentityType {
|
|
3177
|
-
UNKNOWN = "UNKNOWN",
|
|
3178
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3179
|
-
MEMBER = "MEMBER",
|
|
3180
|
-
WIX_USER = "WIX_USER",
|
|
3181
|
-
APP = "APP"
|
|
3182
|
-
}
|
|
3183
|
-
/** @enumType */
|
|
3184
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3185
3197
|
/** @docsIgnore */
|
|
3186
3198
|
type CreateCommentApplicationErrors = {
|
|
3187
3199
|
code?: 'INVALID_CAPTCHA';
|
|
@@ -3248,4 +3260,4 @@ declare function bulkDeleteComment(): __PublicMethodMetaInfo<'PUT', {}, BulkDele
|
|
|
3248
3260
|
declare function bulkModerateDraftContent(): __PublicMethodMetaInfo<'POST', {}, BulkModerateDraftContentRequest$1, BulkModerateDraftContentRequest, BulkModerateDraftContentResponse$1, BulkModerateDraftContentResponse>;
|
|
3249
3261
|
declare function bulkMoveCommentByFilter(): __PublicMethodMetaInfo<'PUT', {}, BulkMoveCommentByFilterRequest$1, BulkMoveCommentByFilterRequest, BulkMoveCommentByFilterResponse$1, BulkMoveCommentByFilterResponse>;
|
|
3250
3262
|
|
|
3251
|
-
export { type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, 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, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AttachmentMediaOneOf as AttachmentMediaOneOfOriginal, type Attachment as AttachmentOriginal, type AudioData as AudioDataOriginal, type Audio as AudioOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkDeleteCommentRequest as BulkDeleteCommentRequestOriginal, type BulkDeleteCommentResponse as BulkDeleteCommentResponseOriginal, type BulkHideCommentRequest as BulkHideCommentRequestOriginal, type BulkHideCommentResponse as BulkHideCommentResponseOriginal, type BulkModerateDraftContentRequest as BulkModerateDraftContentRequestOriginal, type BulkModerateDraftContentResponse as BulkModerateDraftContentResponseOriginal, type BulkMoveCommentByFilterRequest as BulkMoveCommentByFilterRequestOriginal, type BulkMoveCommentByFilterResponse as BulkMoveCommentByFilterResponseOriginal, type BulkPublishCommentRequest as BulkPublishCommentRequestOriginal, type BulkPublishCommentResponse as BulkPublishCommentResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CommentAuthorIdentityOneOf as CommentAuthorIdentityOneOfOriginal, type CommentAuthor as CommentAuthorOriginal, type CommentContentChanged as CommentContentChangedOriginal, type CommentContent as CommentContentOriginal, type CommentDeleted as CommentDeletedOriginal, type CommentHidden as CommentHiddenOriginal, type CommentMarked as CommentMarkedOriginal, type CommentModerated as CommentModeratedOriginal, type CommentMoved as CommentMovedOriginal, type Comment as CommentOriginal, type CommentPublished as CommentPublishedOriginal, type CommentReactionSummary as CommentReactionSummaryOriginal, type CommentSort as CommentSortOriginal, type CommentUnmarked as CommentUnmarkedOriginal, type ContactDetails as ContactDetailsOriginal, type ContentAuthorAuthorOneOf as ContentAuthorAuthorOneOfOriginal, type ContentAuthor as ContentAuthorOriginal, type CountCommentsApplicationErrors as CountCommentsApplicationErrorsOriginal, type CountCommentsRequest as CountCommentsRequestOriginal, type CountCommentsResponse as CountCommentsResponseOriginal, type CreateCommentApplicationErrors as CreateCommentApplicationErrorsOriginal, type CreateCommentRequest as CreateCommentRequestOriginal, type CreateCommentResponse as CreateCommentResponseOriginal, 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 DeleteByFilterOperation as DeleteByFilterOperationOriginal, type DeleteByIdsOperation as DeleteByIdsOperationOriginal, type DeleteCommentRequest as DeleteCommentRequestOriginal, type DeleteCommentResponse as DeleteCommentResponseOriginal, type Design as DesignOriginal, type Destination as DestinationOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type Document as DocumentOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, 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 GetCommentRequest as GetCommentRequestOriginal, type GetCommentResponse as GetCommentResponseOriginal, type GetCommentThreadRequest as GetCommentThreadRequestOriginal, type GetCommentThreadResponse as GetCommentThreadResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type HideCommentRequest as HideCommentRequestOriginal, type HideCommentResponse as HideCommentResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InternalDocument as InternalDocumentOriginal, type InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperationOriginal, type InternalDocumentUpdateOperation as InternalDocumentUpdateOperationOriginal, type InternalUpdateExistingOperation as InternalUpdateExistingOperationOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, 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 ListCommentsByResourceCursorPaging as ListCommentsByResourceCursorPagingOriginal, type ListCommentsByResourceRequest as ListCommentsByResourceRequestOriginal, type ListCommentsByResourceResponse as ListCommentsByResourceResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkCommentRequest as MarkCommentRequestOriginal, type MarkCommentResponse as MarkCommentResponseOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MentionIdentityOneOf as MentionIdentityOneOfOriginal, type Mention as MentionOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type ModerateDraftContentRequest as ModerateDraftContentRequestOriginal, type ModerateDraftContentResponse as ModerateDraftContentResponseOriginal, 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, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type ParentComment as ParentCommentOriginal, 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 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, type PublishCommentRequest as PublishCommentRequestOriginal, type PublishCommentResponse as PublishCommentResponseOriginal, type QueryCommentsRequest as QueryCommentsRequestOriginal, type QueryCommentsResponse as QueryCommentsResponseOriginal, type Rel as RelOriginal, type RepliesListResponse as RepliesListResponseOriginal, ReplySortOrder as ReplySortOrderOriginal, type ReplySortOrderWithLiterals as ReplySortOrderWithLiteralsOriginal, type ReplySort as ReplySortOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResourceCommentCountChanged as ResourceCommentCountChangedOriginal, 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 Settings as SettingsOriginal, 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, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, 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 as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnmarkCommentRequest as UnmarkCommentRequestOriginal, type UnmarkCommentResponse as UnmarkCommentResponseOriginal, type UpdateCommentApplicationErrors as UpdateCommentApplicationErrorsOriginal, type UpdateCommentRequest as UpdateCommentRequestOriginal, type UpdateCommentResponse as UpdateCommentResponseOriginal, type UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOfOriginal, type UpdateInternalDocumentsEvent as UpdateInternalDocumentsEventOriginal, type VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperationOriginal, type VersionedDocumentId as VersionedDocumentIdOriginal, type VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperationOriginal, VersioningMode as VersioningModeOriginal, type VersioningModeWithLiterals as VersioningModeWithLiteralsOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, type VoteSummary as VoteSummaryOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, publishComment, queryComments, unmarkComment, updateComment };
|
|
3263
|
+
export { type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, 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, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AttachmentMediaOneOf as AttachmentMediaOneOfOriginal, type Attachment as AttachmentOriginal, type AudioData as AudioDataOriginal, type Audio as AudioOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkDeleteCommentRequest as BulkDeleteCommentRequestOriginal, type BulkDeleteCommentResponse as BulkDeleteCommentResponseOriginal, type BulkHideCommentRequest as BulkHideCommentRequestOriginal, type BulkHideCommentResponse as BulkHideCommentResponseOriginal, type BulkModerateDraftContentRequest as BulkModerateDraftContentRequestOriginal, type BulkModerateDraftContentResponse as BulkModerateDraftContentResponseOriginal, type BulkMoveCommentByFilterRequest as BulkMoveCommentByFilterRequestOriginal, type BulkMoveCommentByFilterResponse as BulkMoveCommentByFilterResponseOriginal, type BulkPublishCommentRequest as BulkPublishCommentRequestOriginal, type BulkPublishCommentResponse as BulkPublishCommentResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CommentAuthorIdentityOneOf as CommentAuthorIdentityOneOfOriginal, type CommentAuthor as CommentAuthorOriginal, type CommentContentChanged as CommentContentChangedOriginal, type CommentContent as CommentContentOriginal, type CommentDeleted as CommentDeletedOriginal, type CommentHidden as CommentHiddenOriginal, type CommentMarked as CommentMarkedOriginal, type CommentModerated as CommentModeratedOriginal, type CommentMoved as CommentMovedOriginal, type Comment as CommentOriginal, type CommentPublished as CommentPublishedOriginal, type CommentReactionSummary as CommentReactionSummaryOriginal, type CommentSort as CommentSortOriginal, type CommentUnmarked as CommentUnmarkedOriginal, type ContactDetails as ContactDetailsOriginal, type ContentAuthorAuthorOneOf as ContentAuthorAuthorOneOfOriginal, type ContentAuthor as ContentAuthorOriginal, type CountCommentsApplicationErrors as CountCommentsApplicationErrorsOriginal, type CountCommentsRequest as CountCommentsRequestOriginal, type CountCommentsResponse as CountCommentsResponseOriginal, type CreateCommentApplicationErrors as CreateCommentApplicationErrorsOriginal, type CreateCommentRequest as CreateCommentRequestOriginal, type CreateCommentResponse as CreateCommentResponseOriginal, 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 DeleteByFilterOperation as DeleteByFilterOperationOriginal, type DeleteByIdsOperation as DeleteByIdsOperationOriginal, type DeleteCommentRequest as DeleteCommentRequestOriginal, type DeleteCommentResponse as DeleteCommentResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Destination as DestinationOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type Document as DocumentOriginal, 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 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 GetCommentRequest as GetCommentRequestOriginal, type GetCommentResponse as GetCommentResponseOriginal, type GetCommentThreadRequest as GetCommentThreadRequestOriginal, type GetCommentThreadResponse as GetCommentThreadResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type HideCommentRequest as HideCommentRequestOriginal, type HideCommentResponse as HideCommentResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InternalDocument as InternalDocumentOriginal, type InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperationOriginal, type InternalDocumentUpdateOperation as InternalDocumentUpdateOperationOriginal, type InternalUpdateExistingOperation as InternalUpdateExistingOperationOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, 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 ListCommentsByResourceCursorPaging as ListCommentsByResourceCursorPagingOriginal, type ListCommentsByResourceRequest as ListCommentsByResourceRequestOriginal, type ListCommentsByResourceResponse as ListCommentsByResourceResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkCommentRequest as MarkCommentRequestOriginal, type MarkCommentResponse as MarkCommentResponseOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MentionIdentityOneOf as MentionIdentityOneOfOriginal, type Mention as MentionOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type ModerateDraftContentRequest as ModerateDraftContentRequestOriginal, type ModerateDraftContentResponse as ModerateDraftContentResponseOriginal, 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, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type ParentComment as ParentCommentOriginal, 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 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, type PublishCommentRequest as PublishCommentRequestOriginal, type PublishCommentResponse as PublishCommentResponseOriginal, type QueryCommentsRequest as QueryCommentsRequestOriginal, type QueryCommentsResponse as QueryCommentsResponseOriginal, type Rel as RelOriginal, type RepliesListResponse as RepliesListResponseOriginal, ReplySortOrder as ReplySortOrderOriginal, type ReplySortOrderWithLiterals as ReplySortOrderWithLiteralsOriginal, type ReplySort as ReplySortOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResourceCommentCountChanged as ResourceCommentCountChangedOriginal, 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 Settings as SettingsOriginal, 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, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, 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 as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnmarkCommentRequest as UnmarkCommentRequestOriginal, type UnmarkCommentResponse as UnmarkCommentResponseOriginal, type UpdateCommentApplicationErrors as UpdateCommentApplicationErrorsOriginal, type UpdateCommentRequest as UpdateCommentRequestOriginal, type UpdateCommentResponse as UpdateCommentResponseOriginal, type UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOfOriginal, type UpdateInternalDocumentsEvent as UpdateInternalDocumentsEventOriginal, type VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperationOriginal, type VersionedDocumentId as VersionedDocumentIdOriginal, type VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperationOriginal, VersioningMode as VersioningModeOriginal, type VersioningModeWithLiterals as VersioningModeWithLiteralsOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, type VoteSummary as VoteSummaryOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, publishComment, queryComments, unmarkComment, updateComment };
|
|
@@ -28,6 +28,7 @@ __export(meta_exports, {
|
|
|
28
28
|
ButtonDataTypeOriginal: () => ButtonDataType,
|
|
29
29
|
CropOriginal: () => Crop,
|
|
30
30
|
DecorationTypeOriginal: () => DecorationType,
|
|
31
|
+
DesignTargetOriginal: () => DesignTarget,
|
|
31
32
|
DirectionOriginal: () => Direction,
|
|
32
33
|
DividerDataAlignmentOriginal: () => DividerDataAlignment,
|
|
33
34
|
FontTypeOriginal: () => FontType,
|
|
@@ -3058,6 +3059,11 @@ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
|
3058
3059
|
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
3059
3060
|
return ResponsivenessBehaviour2;
|
|
3060
3061
|
})(ResponsivenessBehaviour || {});
|
|
3062
|
+
var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
3063
|
+
DesignTarget2["LAYOUT"] = "LAYOUT";
|
|
3064
|
+
DesignTarget2["CELL"] = "CELL";
|
|
3065
|
+
return DesignTarget2;
|
|
3066
|
+
})(DesignTarget || {});
|
|
3061
3067
|
var Status = /* @__PURE__ */ ((Status2) => {
|
|
3062
3068
|
Status2["UNKNOWN"] = "UNKNOWN";
|
|
3063
3069
|
Status2["PUBLISHED"] = "PUBLISHED";
|
|
@@ -3066,18 +3072,26 @@ var Status = /* @__PURE__ */ ((Status2) => {
|
|
|
3066
3072
|
Status2["HIDDEN"] = "HIDDEN";
|
|
3067
3073
|
return Status2;
|
|
3068
3074
|
})(Status || {});
|
|
3069
|
-
var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
3070
|
-
VersioningMode2["DEFAULT"] = "DEFAULT";
|
|
3071
|
-
VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
|
|
3072
|
-
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
3073
|
-
return VersioningMode2;
|
|
3074
|
-
})(VersioningMode || {});
|
|
3075
3075
|
var Action = /* @__PURE__ */ ((Action2) => {
|
|
3076
3076
|
Action2["UNKNOWN"] = "UNKNOWN";
|
|
3077
3077
|
Action2["APPROVE"] = "APPROVE";
|
|
3078
3078
|
Action2["REJECT"] = "REJECT";
|
|
3079
3079
|
return Action2;
|
|
3080
3080
|
})(Action || {});
|
|
3081
|
+
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
3082
|
+
WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
3083
|
+
WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
3084
|
+
WebhookIdentityType2["MEMBER"] = "MEMBER";
|
|
3085
|
+
WebhookIdentityType2["WIX_USER"] = "WIX_USER";
|
|
3086
|
+
WebhookIdentityType2["APP"] = "APP";
|
|
3087
|
+
return WebhookIdentityType2;
|
|
3088
|
+
})(WebhookIdentityType || {});
|
|
3089
|
+
var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
3090
|
+
VersioningMode2["DEFAULT"] = "DEFAULT";
|
|
3091
|
+
VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
|
|
3092
|
+
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
3093
|
+
return VersioningMode2;
|
|
3094
|
+
})(VersioningMode || {});
|
|
3081
3095
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
3082
3096
|
SortOrder2["ASC"] = "ASC";
|
|
3083
3097
|
SortOrder2["DESC"] = "DESC";
|
|
@@ -3101,14 +3115,6 @@ var ReplySortOrder = /* @__PURE__ */ ((ReplySortOrder2) => {
|
|
|
3101
3115
|
ReplySortOrder2["REACTION_COUNT"] = "REACTION_COUNT";
|
|
3102
3116
|
return ReplySortOrder2;
|
|
3103
3117
|
})(ReplySortOrder || {});
|
|
3104
|
-
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
3105
|
-
WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
3106
|
-
WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
3107
|
-
WebhookIdentityType2["MEMBER"] = "MEMBER";
|
|
3108
|
-
WebhookIdentityType2["WIX_USER"] = "WIX_USER";
|
|
3109
|
-
WebhookIdentityType2["APP"] = "APP";
|
|
3110
|
-
return WebhookIdentityType2;
|
|
3111
|
-
})(WebhookIdentityType || {});
|
|
3112
3118
|
|
|
3113
3119
|
// src/comments-v2-comment-comments.meta.ts
|
|
3114
3120
|
function createComment2() {
|
|
@@ -3445,6 +3451,7 @@ function bulkMoveCommentByFilter2() {
|
|
|
3445
3451
|
ButtonDataTypeOriginal,
|
|
3446
3452
|
CropOriginal,
|
|
3447
3453
|
DecorationTypeOriginal,
|
|
3454
|
+
DesignTargetOriginal,
|
|
3448
3455
|
DirectionOriginal,
|
|
3449
3456
|
DividerDataAlignmentOriginal,
|
|
3450
3457
|
FontTypeOriginal,
|