@wix/multilingual 1.0.34 → 1.0.36
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/package.json +5 -5
- package/type-bundles/context.bundle.d.ts +171 -86
- package/type-bundles/index.bundle.d.ts +171 -86
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/multilingual",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.36",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/multilingual_entity-mapper": "1.0.
|
|
21
|
+
"@wix/multilingual_entity-mapper": "1.0.10",
|
|
22
22
|
"@wix/multilingual_machine-translation": "1.0.26",
|
|
23
23
|
"@wix/multilingual_site-translator": "1.0.12",
|
|
24
|
-
"@wix/multilingual_translation-contents": "1.0.
|
|
25
|
-
"@wix/multilingual_translation-published-contents": "1.0.
|
|
24
|
+
"@wix/multilingual_translation-contents": "1.0.15",
|
|
25
|
+
"@wix/multilingual_translation-published-contents": "1.0.3",
|
|
26
26
|
"@wix/multilingual_translation-schemas": "1.0.13"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "b35d9bc33c9271af41b5892df6a7235270499ddba0c79d888e6ae198"
|
|
52
52
|
}
|
|
@@ -457,63 +457,6 @@ interface StressDMRequest {
|
|
|
457
457
|
}
|
|
458
458
|
interface StressDMResponse {
|
|
459
459
|
}
|
|
460
|
-
interface BaseEventMetadata$1 {
|
|
461
|
-
/** App instance ID. */
|
|
462
|
-
instanceId?: string | null;
|
|
463
|
-
/** Event type. */
|
|
464
|
-
eventType?: string;
|
|
465
|
-
/** The identification type and identity data. */
|
|
466
|
-
identity?: IdentificationData$3;
|
|
467
|
-
}
|
|
468
|
-
interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
469
|
-
/**
|
|
470
|
-
* Unique event ID.
|
|
471
|
-
* Allows clients to ignore duplicate webhooks.
|
|
472
|
-
*/
|
|
473
|
-
_id?: string;
|
|
474
|
-
/**
|
|
475
|
-
* Assumes actions are also always typed to an entity_type
|
|
476
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
477
|
-
*/
|
|
478
|
-
entityFqdn?: string;
|
|
479
|
-
/**
|
|
480
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
481
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
482
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
483
|
-
*/
|
|
484
|
-
slug?: string;
|
|
485
|
-
/** ID of the entity associated with the event. */
|
|
486
|
-
entityId?: string;
|
|
487
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
488
|
-
eventTime?: Date;
|
|
489
|
-
/**
|
|
490
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
491
|
-
* (for example, GDPR).
|
|
492
|
-
*/
|
|
493
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
494
|
-
/** If present, indicates the action that triggered the event. */
|
|
495
|
-
originatedFrom?: string | null;
|
|
496
|
-
/**
|
|
497
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
498
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
499
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
500
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
501
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
502
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
503
|
-
*/
|
|
504
|
-
entityEventSequence?: string | null;
|
|
505
|
-
}
|
|
506
|
-
interface EntityMapperCreatedEnvelope {
|
|
507
|
-
entity: Mapper;
|
|
508
|
-
metadata: EventMetadata$1;
|
|
509
|
-
}
|
|
510
|
-
interface EntityMapperUpdatedEnvelope {
|
|
511
|
-
entity: Mapper;
|
|
512
|
-
metadata: EventMetadata$1;
|
|
513
|
-
}
|
|
514
|
-
interface EntityMapperDeletedEnvelope {
|
|
515
|
-
metadata: EventMetadata$1;
|
|
516
|
-
}
|
|
517
460
|
interface SyncEditorDataOptions {
|
|
518
461
|
/** an optional filter for syncing the content */
|
|
519
462
|
syncFilter?: SyncFilter;
|
|
@@ -526,26 +469,9 @@ interface SyncEditorDataSignature {
|
|
|
526
469
|
*/
|
|
527
470
|
(options?: SyncEditorDataOptions | undefined): Promise<void>;
|
|
528
471
|
}
|
|
529
|
-
declare const onEntityMapperCreated$1: EventDefinition<EntityMapperCreatedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_created">;
|
|
530
|
-
declare const onEntityMapperUpdated$1: EventDefinition<EntityMapperUpdatedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_updated">;
|
|
531
|
-
declare const onEntityMapperDeleted$1: EventDefinition<EntityMapperDeletedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_deleted">;
|
|
532
|
-
|
|
533
|
-
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
534
472
|
|
|
535
473
|
declare const syncEditorData: BuildRESTFunction<typeof syncEditorData$1> & typeof syncEditorData$1;
|
|
536
474
|
|
|
537
|
-
type _publicOnEntityMapperCreatedType = typeof onEntityMapperCreated$1;
|
|
538
|
-
/** */
|
|
539
|
-
declare const onEntityMapperCreated: ReturnType<typeof createEventModule$1<_publicOnEntityMapperCreatedType>>;
|
|
540
|
-
|
|
541
|
-
type _publicOnEntityMapperUpdatedType = typeof onEntityMapperUpdated$1;
|
|
542
|
-
/** */
|
|
543
|
-
declare const onEntityMapperUpdated: ReturnType<typeof createEventModule$1<_publicOnEntityMapperUpdatedType>>;
|
|
544
|
-
|
|
545
|
-
type _publicOnEntityMapperDeletedType = typeof onEntityMapperDeleted$1;
|
|
546
|
-
/** */
|
|
547
|
-
declare const onEntityMapperDeleted: ReturnType<typeof createEventModule$1<_publicOnEntityMapperDeletedType>>;
|
|
548
|
-
|
|
549
475
|
type context$5_ChangedPages = ChangedPages;
|
|
550
476
|
type context$5_CreateOrUpdateAction = CreateOrUpdateAction;
|
|
551
477
|
type context$5_CreateOrUpdateEditorMapperRequest = CreateOrUpdateEditorMapperRequest;
|
|
@@ -557,9 +483,6 @@ type context$5_DeleteEntityMapperRequest = DeleteEntityMapperRequest;
|
|
|
557
483
|
type context$5_DeleteEntityMapperResponse = DeleteEntityMapperResponse;
|
|
558
484
|
type context$5_DeleteMapperRequest = DeleteMapperRequest;
|
|
559
485
|
type context$5_DeleteMapperResponse = DeleteMapperResponse;
|
|
560
|
-
type context$5_EntityMapperCreatedEnvelope = EntityMapperCreatedEnvelope;
|
|
561
|
-
type context$5_EntityMapperDeletedEnvelope = EntityMapperDeletedEnvelope;
|
|
562
|
-
type context$5_EntityMapperUpdatedEnvelope = EntityMapperUpdatedEnvelope;
|
|
563
486
|
type context$5_FieldSequence = FieldSequence;
|
|
564
487
|
type context$5_GetEntityMapperRequest = GetEntityMapperRequest;
|
|
565
488
|
type context$5_GetEntityMapperResponse = GetEntityMapperResponse;
|
|
@@ -592,15 +515,9 @@ type context$5_SyncEditorDataOptions = SyncEditorDataOptions;
|
|
|
592
515
|
type context$5_SyncEditorDataRequest = SyncEditorDataRequest;
|
|
593
516
|
type context$5_SyncEditorDataResponse = SyncEditorDataResponse;
|
|
594
517
|
type context$5_SyncFilter = SyncFilter;
|
|
595
|
-
type context$5__publicOnEntityMapperCreatedType = _publicOnEntityMapperCreatedType;
|
|
596
|
-
type context$5__publicOnEntityMapperDeletedType = _publicOnEntityMapperDeletedType;
|
|
597
|
-
type context$5__publicOnEntityMapperUpdatedType = _publicOnEntityMapperUpdatedType;
|
|
598
|
-
declare const context$5_onEntityMapperCreated: typeof onEntityMapperCreated;
|
|
599
|
-
declare const context$5_onEntityMapperDeleted: typeof onEntityMapperDeleted;
|
|
600
|
-
declare const context$5_onEntityMapperUpdated: typeof onEntityMapperUpdated;
|
|
601
518
|
declare const context$5_syncEditorData: typeof syncEditorData;
|
|
602
519
|
declare namespace context$5 {
|
|
603
|
-
export { type ActionEvent$3 as ActionEvent, type
|
|
520
|
+
export { type ActionEvent$3 as ActionEvent, type context$5_ChangedPages as ChangedPages, type context$5_CreateOrUpdateAction as CreateOrUpdateAction, type context$5_CreateOrUpdateEditorMapperRequest as CreateOrUpdateEditorMapperRequest, type context$5_CreateOrUpdateEditorMapperResponse as CreateOrUpdateEditorMapperResponse, type context$5_CreateOrUpdateNileMapperRequest as CreateOrUpdateNileMapperRequest, type context$5_CreateOrUpdateNileMapperResponse as CreateOrUpdateNileMapperResponse, type context$5_DeleteAction as DeleteAction, type context$5_DeleteEntityMapperRequest as DeleteEntityMapperRequest, type context$5_DeleteEntityMapperResponse as DeleteEntityMapperResponse, type context$5_DeleteMapperRequest as DeleteMapperRequest, type context$5_DeleteMapperResponse as DeleteMapperResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type context$5_FieldSequence as FieldSequence, FieldType$1 as FieldType, type context$5_GetEntityMapperRequest as GetEntityMapperRequest, type context$5_GetEntityMapperResponse as GetEntityMapperResponse, type context$5_GetMapperRequest as GetMapperRequest, type context$5_GetMapperResponse as GetMapperResponse, type context$5_GetSubscribedTopicsRequest as GetSubscribedTopicsRequest, type context$5_GetSubscribedTopicsResponse as GetSubscribedTopicsResponse, type context$5_HtmlNewRevisionSavedMessage as HtmlNewRevisionSavedMessage, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type context$5_ListMappersRequest as ListMappersRequest, type context$5_ListMappersResponse as ListMappersResponse, type context$5_LocalizationPublicAction as LocalizationPublicAction, type context$5_LocalizationPublicActionActionOneOf as LocalizationPublicActionActionOneOf, type context$5_LocalizedContentKey as LocalizedContentKey, type context$5_LocalizedPublishedContent as LocalizedPublishedContent, type context$5_LocalizedPublishedContentField as LocalizedPublishedContentField, type context$5_LocalizedPublishedContentFieldValueOneOf as LocalizedPublishedContentFieldValueOneOf, type context$5_LocalizedPublishedLanguageContentChanged as LocalizedPublishedLanguageContentChanged, type context$5_Mapper as Mapper, type context$5_MapperField as MapperField, type context$5_MediaItem as MediaItem, type context$5_MediaItemMediaOneOf as MediaItemMediaOneOf, type MessageEnvelope$3 as MessageEnvelope, type context$5_Page as Page, type context$5_PublishSiteTranslationsRequest as PublishSiteTranslationsRequest, type context$5_PublishSiteTranslationsResponse as PublishSiteTranslationsResponse, type RestoreInfo$3 as RestoreInfo, type context$5_RevisionInfo as RevisionInfo, type SchemaKey$2 as SchemaKey, SchemaScope$2 as SchemaScope, type context$5_SequencePath as SequencePath, type context$5_StressDMRequest as StressDMRequest, type context$5_StressDMResponse as StressDMResponse, type context$5_SyncEditorDataOptions as SyncEditorDataOptions, type context$5_SyncEditorDataRequest as SyncEditorDataRequest, type context$5_SyncEditorDataResponse as SyncEditorDataResponse, type context$5_SyncFilter as SyncFilter, type VideoResolution$2 as VideoResolution, WebhookIdentityType$3 as WebhookIdentityType, context$5_syncEditorData as syncEditorData };
|
|
604
521
|
}
|
|
605
522
|
|
|
606
523
|
/** Represents a content of an entity with its published translations */
|
|
@@ -2391,6 +2308,64 @@ interface PublishedContentNonNullableFields {
|
|
|
2391
2308
|
interface QueryPublishedContentResponseNonNullableFields {
|
|
2392
2309
|
publishedContent: PublishedContentNonNullableFields[];
|
|
2393
2310
|
}
|
|
2311
|
+
interface BaseEventMetadata$2 {
|
|
2312
|
+
/** App instance ID. */
|
|
2313
|
+
instanceId?: string | null;
|
|
2314
|
+
/** Event type. */
|
|
2315
|
+
eventType?: string;
|
|
2316
|
+
/** The identification type and identity data. */
|
|
2317
|
+
identity?: IdentificationData$2;
|
|
2318
|
+
}
|
|
2319
|
+
interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
2320
|
+
/**
|
|
2321
|
+
* Unique event ID.
|
|
2322
|
+
* Allows clients to ignore duplicate webhooks.
|
|
2323
|
+
*/
|
|
2324
|
+
_id?: string;
|
|
2325
|
+
/**
|
|
2326
|
+
* Assumes actions are also always typed to an entity_type
|
|
2327
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
2328
|
+
*/
|
|
2329
|
+
entityFqdn?: string;
|
|
2330
|
+
/**
|
|
2331
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
2332
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
2333
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
2334
|
+
*/
|
|
2335
|
+
slug?: string;
|
|
2336
|
+
/** ID of the entity associated with the event. */
|
|
2337
|
+
entityId?: string;
|
|
2338
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2339
|
+
eventTime?: Date;
|
|
2340
|
+
/**
|
|
2341
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2342
|
+
* (for example, GDPR).
|
|
2343
|
+
*/
|
|
2344
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2345
|
+
/** If present, indicates the action that triggered the event. */
|
|
2346
|
+
originatedFrom?: string | null;
|
|
2347
|
+
/**
|
|
2348
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
2349
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
2350
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
2351
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
2352
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
2353
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
2354
|
+
*/
|
|
2355
|
+
entityEventSequence?: string | null;
|
|
2356
|
+
}
|
|
2357
|
+
interface PublishedContentCreatedEnvelope {
|
|
2358
|
+
entity: PublishedContent;
|
|
2359
|
+
metadata: EventMetadata$2;
|
|
2360
|
+
}
|
|
2361
|
+
interface PublishedContentUpdatedEnvelope {
|
|
2362
|
+
entity: PublishedContent;
|
|
2363
|
+
metadata: EventMetadata$2;
|
|
2364
|
+
}
|
|
2365
|
+
interface PublishedContentDeletedEnvelope {
|
|
2366
|
+
entity: PublishedContent;
|
|
2367
|
+
metadata: EventMetadata$2;
|
|
2368
|
+
}
|
|
2394
2369
|
interface QueryCursorResult$2 {
|
|
2395
2370
|
cursors: Cursors$2;
|
|
2396
2371
|
hasNext: () => boolean;
|
|
@@ -2456,23 +2431,49 @@ interface QueryPublishedContentSignature {
|
|
|
2456
2431
|
*/
|
|
2457
2432
|
(): PublishedContentQueryBuilder;
|
|
2458
2433
|
}
|
|
2434
|
+
declare const onPublishedContentCreated$1: EventDefinition<PublishedContentCreatedEnvelope, "wix.multilingual.localization_public.v3.published_content_created">;
|
|
2435
|
+
declare const onPublishedContentUpdated$1: EventDefinition<PublishedContentUpdatedEnvelope, "wix.multilingual.localization_public.v3.published_content_updated">;
|
|
2436
|
+
declare const onPublishedContentDeleted$1: EventDefinition<PublishedContentDeletedEnvelope, "wix.multilingual.localization_public.v3.published_content_deleted">;
|
|
2437
|
+
|
|
2438
|
+
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2459
2439
|
|
|
2460
2440
|
declare const queryPublishedContent: BuildRESTFunction<typeof queryPublishedContent$1> & typeof queryPublishedContent$1;
|
|
2461
2441
|
|
|
2442
|
+
type _publicOnPublishedContentCreatedType = typeof onPublishedContentCreated$1;
|
|
2443
|
+
/** */
|
|
2444
|
+
declare const onPublishedContentCreated: ReturnType<typeof createEventModule$2<_publicOnPublishedContentCreatedType>>;
|
|
2445
|
+
|
|
2446
|
+
type _publicOnPublishedContentUpdatedType = typeof onPublishedContentUpdated$1;
|
|
2447
|
+
/** */
|
|
2448
|
+
declare const onPublishedContentUpdated: ReturnType<typeof createEventModule$2<_publicOnPublishedContentUpdatedType>>;
|
|
2449
|
+
|
|
2450
|
+
type _publicOnPublishedContentDeletedType = typeof onPublishedContentDeleted$1;
|
|
2451
|
+
/** */
|
|
2452
|
+
declare const onPublishedContentDeleted: ReturnType<typeof createEventModule$2<_publicOnPublishedContentDeletedType>>;
|
|
2453
|
+
|
|
2462
2454
|
type context$4_ExtendedFields = ExtendedFields;
|
|
2463
2455
|
type context$4_GetPublishedContentRequest = GetPublishedContentRequest;
|
|
2464
2456
|
type context$4_GetPublishedContentResponse = GetPublishedContentResponse;
|
|
2465
2457
|
type context$4_PublishedContent = PublishedContent;
|
|
2458
|
+
type context$4_PublishedContentCreatedEnvelope = PublishedContentCreatedEnvelope;
|
|
2459
|
+
type context$4_PublishedContentDeletedEnvelope = PublishedContentDeletedEnvelope;
|
|
2466
2460
|
type context$4_PublishedContentField = PublishedContentField;
|
|
2467
2461
|
type context$4_PublishedContentFieldValueOneOf = PublishedContentFieldValueOneOf;
|
|
2468
2462
|
type context$4_PublishedContentQueryBuilder = PublishedContentQueryBuilder;
|
|
2469
2463
|
type context$4_PublishedContentQueryResult = PublishedContentQueryResult;
|
|
2464
|
+
type context$4_PublishedContentUpdatedEnvelope = PublishedContentUpdatedEnvelope;
|
|
2470
2465
|
type context$4_QueryPublishedContentRequest = QueryPublishedContentRequest;
|
|
2471
2466
|
type context$4_QueryPublishedContentResponse = QueryPublishedContentResponse;
|
|
2472
2467
|
type context$4_QueryPublishedContentResponseNonNullableFields = QueryPublishedContentResponseNonNullableFields;
|
|
2468
|
+
type context$4__publicOnPublishedContentCreatedType = _publicOnPublishedContentCreatedType;
|
|
2469
|
+
type context$4__publicOnPublishedContentDeletedType = _publicOnPublishedContentDeletedType;
|
|
2470
|
+
type context$4__publicOnPublishedContentUpdatedType = _publicOnPublishedContentUpdatedType;
|
|
2471
|
+
declare const context$4_onPublishedContentCreated: typeof onPublishedContentCreated;
|
|
2472
|
+
declare const context$4_onPublishedContentDeleted: typeof onPublishedContentDeleted;
|
|
2473
|
+
declare const context$4_onPublishedContentUpdated: typeof onPublishedContentUpdated;
|
|
2473
2474
|
declare const context$4_queryPublishedContent: typeof queryPublishedContent;
|
|
2474
2475
|
declare namespace context$4 {
|
|
2475
|
-
export { type ActionEvent$2 as ActionEvent, Alignment$2 as Alignment, type AnchorData$2 as AnchorData, type AppEmbedData$2 as AppEmbedData, type AppEmbedDataAppDataOneOf$2 as AppEmbedDataAppDataOneOf, AppType$2 as AppType, type AudioData$2 as AudioData, type Background$2 as Background, type BackgroundBackgroundOneOf$2 as BackgroundBackgroundOneOf, BackgroundType$2 as BackgroundType, type BlockquoteData$2 as BlockquoteData, type BookingData$2 as BookingData, type Border$2 as Border, type BorderColors$2 as BorderColors, type BulletedListData$2 as BulletedListData, type ButtonData$2 as ButtonData, type CellStyle$2 as CellStyle, type CodeBlockData$2 as CodeBlockData, type CollapsibleListData$2 as CollapsibleListData, type ColorData$2 as ColorData, type Colors$2 as Colors, Crop$2 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type Decoration$2 as Decoration, type DecorationDataOneOf$2 as DecorationDataOneOf, DecorationType$2 as DecorationType, type Design$2 as Design, type Dimensions$2 as Dimensions, Direction$2 as Direction, type DividerData$2 as DividerData, type DocumentStyle$2 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type EmbedData$2 as EmbedData, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$2 as EventData, type context$4_ExtendedFields as ExtendedFields, type FileData$2 as FileData, type FileSource$2 as FileSource, type FileSourceDataOneOf$2 as FileSourceDataOneOf, type FontSizeData$2 as FontSizeData, FontType$2 as FontType, type GIF$2 as GIF, type GIFData$2 as GIFData, type GalleryData$2 as GalleryData, type GalleryOptions$2 as GalleryOptions, type context$4_GetPublishedContentRequest as GetPublishedContentRequest, type context$4_GetPublishedContentResponse as GetPublishedContentResponse, type Gradient$2 as Gradient, type HTMLData$2 as HTMLData, type HTMLDataDataOneOf$2 as HTMLDataDataOneOf, type HeadingData$2 as HeadingData, type Height$2 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$2 as Image, type ImageData$2 as ImageData, InitialExpandedItems$2 as InitialExpandedItems, type Item$2 as Item, type ItemDataOneOf$2 as ItemDataOneOf, type ItemStyle$2 as ItemStyle, type Layout$2 as Layout, LayoutType$2 as LayoutType, LineStyle$2 as LineStyle, type Link$2 as Link, type LinkData$2 as LinkData, type LinkDataOneOf$2 as LinkDataOneOf, type LinkPreviewData$2 as LinkPreviewData, type ListValue$2 as ListValue, type MapData$2 as MapData, type MapSettings$2 as MapSettings, MapType$2 as MapType, type Media$2 as Media, type MentionData$2 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$2 as Metadata, type Node$2 as Node, type NodeDataOneOf$2 as NodeDataOneOf, type NodeStyle$2 as NodeStyle, NodeType$2 as NodeType, NullValue$2 as NullValue, type Oembed$2 as Oembed, type Option$2 as Option, type OptionDesign$2 as OptionDesign, type OptionLayout$2 as OptionLayout, type OrderedListData$2 as OrderedListData, Orientation$2 as Orientation, type PDFSettings$2 as PDFSettings, type ParagraphData$2 as ParagraphData, type Permissions$2 as Permissions, type PlaybackOptions$2 as PlaybackOptions, type PluginContainerData$2 as PluginContainerData, PluginContainerDataAlignment$2 as PluginContainerDataAlignment, type PluginContainerDataWidth$2 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$2 as PluginContainerDataWidthDataOneOf, type Poll$2 as Poll, type PollData$2 as PollData, type PollDataLayout$2 as PollDataLayout, type PollDesign$2 as PollDesign, type PollLayout$2 as PollLayout, PollLayoutDirection$2 as PollLayoutDirection, PollLayoutType$2 as PollLayoutType, type context$4_PublishedContent as PublishedContent, type context$4_PublishedContentField as PublishedContentField, type context$4_PublishedContentFieldValueOneOf as PublishedContentFieldValueOneOf, type context$4_PublishedContentQueryBuilder as PublishedContentQueryBuilder, type context$4_PublishedContentQueryResult as PublishedContentQueryResult, type context$4_QueryPublishedContentRequest as QueryPublishedContentRequest, type context$4_QueryPublishedContentResponse as QueryPublishedContentResponse, type context$4_QueryPublishedContentResponseNonNullableFields as QueryPublishedContentResponseNonNullableFields, type Rel$2 as Rel, type RestoreInfo$2 as RestoreInfo, type RichContent$2 as RichContent, type SchemaKey$1 as SchemaKey, SchemaScope$1 as SchemaScope, type Settings$2 as Settings, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$2 as Source, type Spoiler$2 as Spoiler, type SpoilerData$2 as SpoilerData, type Styles$2 as Styles, type TableCellData$2 as TableCellData, type TableData$2 as TableData, Target$2 as Target, TextAlignment$2 as TextAlignment, type TextData$2 as TextData, type TextNodeStyle$2 as TextNodeStyle, type TextStyle$2 as TextStyle, type Thumbnails$2 as Thumbnails, ThumbnailsAlignment$2 as ThumbnailsAlignment, Type$2 as Type, VerticalAlignment$2 as VerticalAlignment, type Video$2 as Video, type VideoData$2 as VideoData, type VideoResolution$1 as VideoResolution, ViewMode$2 as ViewMode, ViewRole$2 as ViewRole, VoteRole$2 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$2 as Width, WidthType$2 as WidthType, context$4_queryPublishedContent as queryPublishedContent };
|
|
2476
|
+
export { type ActionEvent$2 as ActionEvent, Alignment$2 as Alignment, type AnchorData$2 as AnchorData, type AppEmbedData$2 as AppEmbedData, type AppEmbedDataAppDataOneOf$2 as AppEmbedDataAppDataOneOf, AppType$2 as AppType, type AudioData$2 as AudioData, type Background$2 as Background, type BackgroundBackgroundOneOf$2 as BackgroundBackgroundOneOf, BackgroundType$2 as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type BlockquoteData$2 as BlockquoteData, type BookingData$2 as BookingData, type Border$2 as Border, type BorderColors$2 as BorderColors, type BulletedListData$2 as BulletedListData, type ButtonData$2 as ButtonData, type CellStyle$2 as CellStyle, type CodeBlockData$2 as CodeBlockData, type CollapsibleListData$2 as CollapsibleListData, type ColorData$2 as ColorData, type Colors$2 as Colors, Crop$2 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type Decoration$2 as Decoration, type DecorationDataOneOf$2 as DecorationDataOneOf, DecorationType$2 as DecorationType, type Design$2 as Design, type Dimensions$2 as Dimensions, Direction$2 as Direction, type DividerData$2 as DividerData, type DocumentStyle$2 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type EmbedData$2 as EmbedData, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$2 as EventData, type EventMetadata$2 as EventMetadata, type context$4_ExtendedFields as ExtendedFields, type FileData$2 as FileData, type FileSource$2 as FileSource, type FileSourceDataOneOf$2 as FileSourceDataOneOf, type FontSizeData$2 as FontSizeData, FontType$2 as FontType, type GIF$2 as GIF, type GIFData$2 as GIFData, type GalleryData$2 as GalleryData, type GalleryOptions$2 as GalleryOptions, type context$4_GetPublishedContentRequest as GetPublishedContentRequest, type context$4_GetPublishedContentResponse as GetPublishedContentResponse, type Gradient$2 as Gradient, type HTMLData$2 as HTMLData, type HTMLDataDataOneOf$2 as HTMLDataDataOneOf, type HeadingData$2 as HeadingData, type Height$2 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$2 as Image, type ImageData$2 as ImageData, InitialExpandedItems$2 as InitialExpandedItems, type Item$2 as Item, type ItemDataOneOf$2 as ItemDataOneOf, type ItemStyle$2 as ItemStyle, type Layout$2 as Layout, LayoutType$2 as LayoutType, LineStyle$2 as LineStyle, type Link$2 as Link, type LinkData$2 as LinkData, type LinkDataOneOf$2 as LinkDataOneOf, type LinkPreviewData$2 as LinkPreviewData, type ListValue$2 as ListValue, type MapData$2 as MapData, type MapSettings$2 as MapSettings, MapType$2 as MapType, type Media$2 as Media, type MentionData$2 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$2 as Metadata, type Node$2 as Node, type NodeDataOneOf$2 as NodeDataOneOf, type NodeStyle$2 as NodeStyle, NodeType$2 as NodeType, NullValue$2 as NullValue, type Oembed$2 as Oembed, type Option$2 as Option, type OptionDesign$2 as OptionDesign, type OptionLayout$2 as OptionLayout, type OrderedListData$2 as OrderedListData, Orientation$2 as Orientation, type PDFSettings$2 as PDFSettings, type ParagraphData$2 as ParagraphData, type Permissions$2 as Permissions, type PlaybackOptions$2 as PlaybackOptions, type PluginContainerData$2 as PluginContainerData, PluginContainerDataAlignment$2 as PluginContainerDataAlignment, type PluginContainerDataWidth$2 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$2 as PluginContainerDataWidthDataOneOf, type Poll$2 as Poll, type PollData$2 as PollData, type PollDataLayout$2 as PollDataLayout, type PollDesign$2 as PollDesign, type PollLayout$2 as PollLayout, PollLayoutDirection$2 as PollLayoutDirection, PollLayoutType$2 as PollLayoutType, type context$4_PublishedContent as PublishedContent, type context$4_PublishedContentCreatedEnvelope as PublishedContentCreatedEnvelope, type context$4_PublishedContentDeletedEnvelope as PublishedContentDeletedEnvelope, type context$4_PublishedContentField as PublishedContentField, type context$4_PublishedContentFieldValueOneOf as PublishedContentFieldValueOneOf, type context$4_PublishedContentQueryBuilder as PublishedContentQueryBuilder, type context$4_PublishedContentQueryResult as PublishedContentQueryResult, type context$4_PublishedContentUpdatedEnvelope as PublishedContentUpdatedEnvelope, type context$4_QueryPublishedContentRequest as QueryPublishedContentRequest, type context$4_QueryPublishedContentResponse as QueryPublishedContentResponse, type context$4_QueryPublishedContentResponseNonNullableFields as QueryPublishedContentResponseNonNullableFields, type Rel$2 as Rel, type RestoreInfo$2 as RestoreInfo, type RichContent$2 as RichContent, type SchemaKey$1 as SchemaKey, SchemaScope$1 as SchemaScope, type Settings$2 as Settings, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$2 as Source, type Spoiler$2 as Spoiler, type SpoilerData$2 as SpoilerData, type Styles$2 as Styles, type TableCellData$2 as TableCellData, type TableData$2 as TableData, Target$2 as Target, TextAlignment$2 as TextAlignment, type TextData$2 as TextData, type TextNodeStyle$2 as TextNodeStyle, type TextStyle$2 as TextStyle, type Thumbnails$2 as Thumbnails, ThumbnailsAlignment$2 as ThumbnailsAlignment, Type$2 as Type, VerticalAlignment$2 as VerticalAlignment, type Video$2 as Video, type VideoData$2 as VideoData, type VideoResolution$1 as VideoResolution, ViewMode$2 as ViewMode, ViewRole$2 as ViewRole, VoteRole$2 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$2 as Width, WidthType$2 as WidthType, type context$4__publicOnPublishedContentCreatedType as _publicOnPublishedContentCreatedType, type context$4__publicOnPublishedContentDeletedType as _publicOnPublishedContentDeletedType, type context$4__publicOnPublishedContentUpdatedType as _publicOnPublishedContentUpdatedType, context$4_onPublishedContentCreated as onPublishedContentCreated, context$4_onPublishedContentDeleted as onPublishedContentDeleted, context$4_onPublishedContentUpdated as onPublishedContentUpdated, onPublishedContentCreated$1 as publicOnPublishedContentCreated, onPublishedContentDeleted$1 as publicOnPublishedContentDeleted, onPublishedContentUpdated$1 as publicOnPublishedContentUpdated, context$4_queryPublishedContent as queryPublishedContent };
|
|
2476
2477
|
}
|
|
2477
2478
|
|
|
2478
2479
|
/**
|
|
@@ -7395,6 +7396,64 @@ interface BulkDeleteContentResponseNonNullableFields {
|
|
|
7395
7396
|
results: BulkDeleteContentResponseBulkContentResultNonNullableFields[];
|
|
7396
7397
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
7397
7398
|
}
|
|
7399
|
+
interface BaseEventMetadata$1 {
|
|
7400
|
+
/** App instance ID. */
|
|
7401
|
+
instanceId?: string | null;
|
|
7402
|
+
/** Event type. */
|
|
7403
|
+
eventType?: string;
|
|
7404
|
+
/** The identification type and identity data. */
|
|
7405
|
+
identity?: IdentificationData$1;
|
|
7406
|
+
}
|
|
7407
|
+
interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
7408
|
+
/**
|
|
7409
|
+
* Unique event ID.
|
|
7410
|
+
* Allows clients to ignore duplicate webhooks.
|
|
7411
|
+
*/
|
|
7412
|
+
_id?: string;
|
|
7413
|
+
/**
|
|
7414
|
+
* Assumes actions are also always typed to an entity_type
|
|
7415
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
7416
|
+
*/
|
|
7417
|
+
entityFqdn?: string;
|
|
7418
|
+
/**
|
|
7419
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
7420
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
7421
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
7422
|
+
*/
|
|
7423
|
+
slug?: string;
|
|
7424
|
+
/** ID of the entity associated with the event. */
|
|
7425
|
+
entityId?: string;
|
|
7426
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
7427
|
+
eventTime?: Date;
|
|
7428
|
+
/**
|
|
7429
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
7430
|
+
* (for example, GDPR).
|
|
7431
|
+
*/
|
|
7432
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
7433
|
+
/** If present, indicates the action that triggered the event. */
|
|
7434
|
+
originatedFrom?: string | null;
|
|
7435
|
+
/**
|
|
7436
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
7437
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
7438
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
7439
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
7440
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
7441
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
7442
|
+
*/
|
|
7443
|
+
entityEventSequence?: string | null;
|
|
7444
|
+
}
|
|
7445
|
+
interface ContentCreatedEnvelope {
|
|
7446
|
+
entity: Content;
|
|
7447
|
+
metadata: EventMetadata$1;
|
|
7448
|
+
}
|
|
7449
|
+
interface ContentUpdatedEnvelope {
|
|
7450
|
+
entity: Content;
|
|
7451
|
+
metadata: EventMetadata$1;
|
|
7452
|
+
}
|
|
7453
|
+
interface ContentDeletedEnvelope {
|
|
7454
|
+
entity: Content;
|
|
7455
|
+
metadata: EventMetadata$1;
|
|
7456
|
+
}
|
|
7398
7457
|
interface UpdateContent {
|
|
7399
7458
|
/**
|
|
7400
7459
|
* Content ID.
|
|
@@ -7593,6 +7652,11 @@ interface BulkDeleteContentSignature {
|
|
|
7593
7652
|
*/
|
|
7594
7653
|
(contentIds: string[]): Promise<BulkDeleteContentResponse & BulkDeleteContentResponseNonNullableFields>;
|
|
7595
7654
|
}
|
|
7655
|
+
declare const onContentCreated$1: EventDefinition<ContentCreatedEnvelope, "wix.multilingual.translation.v1.content_created">;
|
|
7656
|
+
declare const onContentUpdated$1: EventDefinition<ContentUpdatedEnvelope, "wix.multilingual.translation.v1.content_updated">;
|
|
7657
|
+
declare const onContentDeleted$1: EventDefinition<ContentDeletedEnvelope, "wix.multilingual.translation.v1.content_deleted">;
|
|
7658
|
+
|
|
7659
|
+
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
7596
7660
|
|
|
7597
7661
|
declare const createContent: BuildRESTFunction<typeof createContent$1> & typeof createContent$1;
|
|
7598
7662
|
declare const getContent: BuildRESTFunction<typeof getContent$1> & typeof getContent$1;
|
|
@@ -7606,6 +7670,18 @@ declare const bulkUpdateContent: BuildRESTFunction<typeof bulkUpdateContent$1> &
|
|
|
7606
7670
|
declare const bulkUpdateContentByKey: BuildRESTFunction<typeof bulkUpdateContentByKey$1> & typeof bulkUpdateContentByKey$1;
|
|
7607
7671
|
declare const bulkDeleteContent: BuildRESTFunction<typeof bulkDeleteContent$1> & typeof bulkDeleteContent$1;
|
|
7608
7672
|
|
|
7673
|
+
type _publicOnContentCreatedType = typeof onContentCreated$1;
|
|
7674
|
+
/** */
|
|
7675
|
+
declare const onContentCreated: ReturnType<typeof createEventModule$1<_publicOnContentCreatedType>>;
|
|
7676
|
+
|
|
7677
|
+
type _publicOnContentUpdatedType = typeof onContentUpdated$1;
|
|
7678
|
+
/** */
|
|
7679
|
+
declare const onContentUpdated: ReturnType<typeof createEventModule$1<_publicOnContentUpdatedType>>;
|
|
7680
|
+
|
|
7681
|
+
type _publicOnContentDeletedType = typeof onContentDeleted$1;
|
|
7682
|
+
/** */
|
|
7683
|
+
declare const onContentDeleted: ReturnType<typeof createEventModule$1<_publicOnContentDeletedType>>;
|
|
7684
|
+
|
|
7609
7685
|
type context$1_Aggregation = Aggregation;
|
|
7610
7686
|
type context$1_AggregationData = AggregationData;
|
|
7611
7687
|
type context$1_AggregationKindOneOf = AggregationKindOneOf;
|
|
@@ -7660,9 +7736,12 @@ type context$1_CollapsibleListData = CollapsibleListData;
|
|
|
7660
7736
|
type context$1_ColorData = ColorData;
|
|
7661
7737
|
type context$1_Colors = Colors;
|
|
7662
7738
|
type context$1_Content = Content;
|
|
7739
|
+
type context$1_ContentCreatedEnvelope = ContentCreatedEnvelope;
|
|
7740
|
+
type context$1_ContentDeletedEnvelope = ContentDeletedEnvelope;
|
|
7663
7741
|
type context$1_ContentField = ContentField;
|
|
7664
7742
|
type context$1_ContentFieldValueOneOf = ContentFieldValueOneOf;
|
|
7665
7743
|
type context$1_ContentNonNullableFields = ContentNonNullableFields;
|
|
7744
|
+
type context$1_ContentUpdatedEnvelope = ContentUpdatedEnvelope;
|
|
7666
7745
|
type context$1_ContentsQueryBuilder = ContentsQueryBuilder;
|
|
7667
7746
|
type context$1_ContentsQueryResult = ContentsQueryResult;
|
|
7668
7747
|
type context$1_CreateContentRequest = CreateContentRequest;
|
|
@@ -7876,6 +7955,9 @@ type context$1_Width = Width;
|
|
|
7876
7955
|
declare const context$1_Width: typeof Width;
|
|
7877
7956
|
type context$1_WidthType = WidthType;
|
|
7878
7957
|
declare const context$1_WidthType: typeof WidthType;
|
|
7958
|
+
type context$1__publicOnContentCreatedType = _publicOnContentCreatedType;
|
|
7959
|
+
type context$1__publicOnContentDeletedType = _publicOnContentDeletedType;
|
|
7960
|
+
type context$1__publicOnContentUpdatedType = _publicOnContentUpdatedType;
|
|
7879
7961
|
declare const context$1_bulkCreateContent: typeof bulkCreateContent;
|
|
7880
7962
|
declare const context$1_bulkDeleteContent: typeof bulkDeleteContent;
|
|
7881
7963
|
declare const context$1_bulkUpdateContent: typeof bulkUpdateContent;
|
|
@@ -7883,12 +7965,15 @@ declare const context$1_bulkUpdateContentByKey: typeof bulkUpdateContentByKey;
|
|
|
7883
7965
|
declare const context$1_createContent: typeof createContent;
|
|
7884
7966
|
declare const context$1_deleteContent: typeof deleteContent;
|
|
7885
7967
|
declare const context$1_getContent: typeof getContent;
|
|
7968
|
+
declare const context$1_onContentCreated: typeof onContentCreated;
|
|
7969
|
+
declare const context$1_onContentDeleted: typeof onContentDeleted;
|
|
7970
|
+
declare const context$1_onContentUpdated: typeof onContentUpdated;
|
|
7886
7971
|
declare const context$1_queryContents: typeof queryContents;
|
|
7887
7972
|
declare const context$1_searchContents: typeof searchContents;
|
|
7888
7973
|
declare const context$1_updateContent: typeof updateContent;
|
|
7889
7974
|
declare const context$1_updateContentByKey: typeof updateContentByKey;
|
|
7890
7975
|
declare namespace context$1 {
|
|
7891
|
-
export { type ActionEvent$1 as ActionEvent, type context$1_Aggregation as Aggregation, type context$1_AggregationData as AggregationData, type context$1_AggregationKindOneOf as AggregationKindOneOf, type context$1_AggregationResults as AggregationResults, type context$1_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$1_AggregationResultsScalarResult as AggregationResultsScalarResult, context$1_AggregationType as AggregationType, context$1_Alignment as Alignment, type context$1_AnchorData as AnchorData, type context$1_AppEmbedData as AppEmbedData, type context$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$1_AppType as AppType, type context$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type context$1_AudioData as AudioData, type context$1_Background as Background, type context$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$1_BackgroundType as BackgroundType, type context$1_BlockquoteData as BlockquoteData, type context$1_BookingData as BookingData, type context$1_Border as Border, type context$1_BorderColors as BorderColors, type context$1_BulkActionMetadata as BulkActionMetadata, type context$1_BulkContentResult as BulkContentResult, type context$1_BulkCreateContentOptions as BulkCreateContentOptions, type context$1_BulkCreateContentRequest as BulkCreateContentRequest, type context$1_BulkCreateContentResponse as BulkCreateContentResponse, type context$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type context$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type context$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type context$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type context$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type context$1_BulkUpdateContentByKeyOptions as BulkUpdateContentByKeyOptions, type context$1_BulkUpdateContentByKeyRequest as BulkUpdateContentByKeyRequest, type context$1_BulkUpdateContentByKeyResponse as BulkUpdateContentByKeyResponse, type context$1_BulkUpdateContentByKeyResponseBulkContentResult as BulkUpdateContentByKeyResponseBulkContentResult, type context$1_BulkUpdateContentByKeyResponseNonNullableFields as BulkUpdateContentByKeyResponseNonNullableFields, type context$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type context$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type context$1_BulkUpdateContentRequestMaskedContent as BulkUpdateContentRequestMaskedContent, type context$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type context$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type context$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type context$1_BulletedListData as BulletedListData, type context$1_ButtonData as ButtonData, type context$1_CellStyle as CellStyle, type context$1_CodeBlockData as CodeBlockData, type context$1_CollapsibleListData as CollapsibleListData, type context$1_ColorData as ColorData, type context$1_Colors as Colors, type context$1_Content as Content, type context$1_ContentField as ContentField, type context$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type context$1_ContentNonNullableFields as ContentNonNullableFields, type context$1_ContentsQueryBuilder as ContentsQueryBuilder, type context$1_ContentsQueryResult as ContentsQueryResult, type context$1_CreateContentRequest as CreateContentRequest, type context$1_CreateContentResponse as CreateContentResponse, type context$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, context$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type context$1_CursorSearch as CursorSearch, type context$1_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type context$1_DateHistogramAggregation as DateHistogramAggregation, type context$1_DateHistogramResult as DateHistogramResult, type context$1_DateHistogramResults as DateHistogramResults, type context$1_Decoration as Decoration, type context$1_DecorationDataOneOf as DecorationDataOneOf, context$1_DecorationType as DecorationType, type context$1_DeleteContentRequest as DeleteContentRequest, type context$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type context$1_Design as Design, type context$1_Dimensions as Dimensions, context$1_Direction as Direction, type context$1_DividerData as DividerData, type context$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type context$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$1_EventData as EventData, type context$1_FileData as FileData, type context$1_FileSource as FileSource, type context$1_FileSourceDataOneOf as FileSourceDataOneOf, type context$1_FontSizeData as FontSizeData, context$1_FontType as FontType, type context$1_GIF as GIF, type context$1_GIFData as GIFData, type context$1_GalleryData as GalleryData, type context$1_GalleryOptions as GalleryOptions, type context$1_GetContentRequest as GetContentRequest, type context$1_GetContentResponse as GetContentResponse, type context$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type context$1_Gradient as Gradient, type context$1_GroupByAggregation as GroupByAggregation, type context$1_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$1_GroupByValueResults as GroupByValueResults, type context$1_HTMLData as HTMLData, type context$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$1_HeadingData as HeadingData, type context$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$1_Image as Image, type context$1_ImageData as ImageData, type context$1_IncludeMissingValuesOptions as IncludeMissingValuesOptions, context$1_InitialExpandedItems as InitialExpandedItems, context$1_Interval as Interval, type context$1_Item as Item, type context$1_ItemDataOneOf as ItemDataOneOf, type context$1_ItemMetadata as ItemMetadata, type context$1_ItemStyle as ItemStyle, type context$1_Layout as Layout, context$1_LayoutType as LayoutType, context$1_LineStyle as LineStyle, type context$1_Link as Link, type context$1_LinkData as LinkData, type context$1_LinkDataOneOf as LinkDataOneOf, type context$1_LinkPreviewData as LinkPreviewData, type context$1_ListValue as ListValue, type context$1_MapData as MapData, type context$1_MapSettings as MapSettings, context$1_MapType as MapType, type context$1_MaskedContent as MaskedContent, type context$1_Media as Media, type context$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type context$1_Metadata as Metadata, context$1_MissingValues as MissingValues, context$1_Mode as Mode, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$1_NestedAggregation as NestedAggregation, type context$1_NestedAggregationItem as NestedAggregationItem, type context$1_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$1_NestedAggregationResults as NestedAggregationResults, type context$1_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$1_NestedAggregationType as NestedAggregationType, type context$1_NestedResultValue as NestedResultValue, type context$1_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$1_NestedResults as NestedResults, type context$1_NestedValueAggregationResult as NestedValueAggregationResult, type context$1_Node as Node, type context$1_NodeDataOneOf as NodeDataOneOf, type context$1_NodeStyle as NodeStyle, context$1_NodeType as NodeType, context$1_NullValue as NullValue, type context$1_Oembed as Oembed, type context$1_Option as Option, type context$1_OptionDesign as OptionDesign, type context$1_OptionLayout as OptionLayout, type context$1_OrderedListData as OrderedListData, context$1_Orientation as Orientation, type context$1_PDFSettings as PDFSettings, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_ParagraphData as ParagraphData, type context$1_Permissions as Permissions, type context$1_PermissiveBulkUpdateContentRequest as PermissiveBulkUpdateContentRequest, type context$1_PermissiveBulkUpdateContentRequestMaskedContent as PermissiveBulkUpdateContentRequestMaskedContent, type context$1_PermissiveBulkUpdateContentResponse as PermissiveBulkUpdateContentResponse, type context$1_PermissiveBulkUpdateContentResponseBulkContentResult as PermissiveBulkUpdateContentResponseBulkContentResult, type context$1_PlaybackOptions as PlaybackOptions, type context$1_PluginContainerData as PluginContainerData, context$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$1_PluginContainerDataWidth as PluginContainerDataWidth, type context$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$1_Poll as Poll, type context$1_PollData as PollData, type context$1_PollDataLayout as PollDataLayout, type context$1_PollDesign as PollDesign, type context$1_PollLayout as PollLayout, context$1_PollLayoutDirection as PollLayoutDirection, context$1_PollLayoutType as PollLayoutType, context$1_PublishStatus as PublishStatus, type context$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type context$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type context$1_QueryContentsOptions as QueryContentsOptions, type context$1_QueryContentsRequest as QueryContentsRequest, type context$1_QueryContentsResponse as QueryContentsResponse, type context$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_RangeAggregation as RangeAggregation, type context$1_RangeAggregationResult as RangeAggregationResult, type context$1_RangeBucket as RangeBucket, type context$1_RangeResult as RangeResult, type context$1_RangeResults as RangeResults, type context$1_Rel as Rel, type context$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type context$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type context$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type context$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type context$1_Results as Results, type context$1_RichContent as RichContent, type context$1_ScalarAggregation as ScalarAggregation, type context$1_ScalarResult as ScalarResult, context$1_ScalarType as ScalarType, type context$1_SearchContentsOptions as SearchContentsOptions, type context$1_SearchContentsRequest as SearchContentsRequest, type context$1_SearchContentsResponse as SearchContentsResponse, type context$1_SearchContentsResponseNonNullableFields as SearchContentsResponseNonNullableFields, type context$1_SearchDetails as SearchDetails, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type context$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, context$1_SortDirection as SortDirection, SortOrder$1 as SortOrder, context$1_SortType as SortType, type Sorting$1 as Sorting, context$1_Source as Source, type context$1_Spoiler as Spoiler, type context$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$1_Styles as Styles, type context$1_TableCellData as TableCellData, type context$1_TableData as TableData, context$1_Target as Target, context$1_TextAlignment as TextAlignment, type context$1_TextData as TextData, type context$1_TextNodeStyle as TextNodeStyle, type context$1_TextStyle as TextStyle, type context$1_Thumbnails as Thumbnails, context$1_ThumbnailsAlignment as ThumbnailsAlignment, context$1_Type as Type, type context$1_UpdateContent as UpdateContent, type context$1_UpdateContentByKeyRequest as UpdateContentByKeyRequest, type context$1_UpdateContentByKeyResponse as UpdateContentByKeyResponse, type context$1_UpdateContentByKeyResponseNonNullableFields as UpdateContentByKeyResponseNonNullableFields, type context$1_UpdateContentRequest as UpdateContentRequest, type context$1_UpdateContentResponse as UpdateContentResponse, type context$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, context$1_UpdaterIdentity as UpdaterIdentity, type context$1_ValueAggregation as ValueAggregation, type context$1_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$1_ValueAggregationResult as ValueAggregationResult, type context$1_ValueResult as ValueResult, type context$1_ValueResults as ValueResults, context$1_VerticalAlignment as VerticalAlignment, type context$1_Video as Video, type context$1_VideoData as VideoData, type context$1_VideoResolution as VideoResolution, context$1_ViewMode as ViewMode, context$1_ViewRole as ViewRole, context$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, context$1_Width as Width, context$1_WidthType as WidthType, context$1_bulkCreateContent as bulkCreateContent, context$1_bulkDeleteContent as bulkDeleteContent, context$1_bulkUpdateContent as bulkUpdateContent, context$1_bulkUpdateContentByKey as bulkUpdateContentByKey, context$1_createContent as createContent, context$1_deleteContent as deleteContent, context$1_getContent as getContent, context$1_queryContents as queryContents, context$1_searchContents as searchContents, context$1_updateContent as updateContent, context$1_updateContentByKey as updateContentByKey };
|
|
7976
|
+
export { type ActionEvent$1 as ActionEvent, type context$1_Aggregation as Aggregation, type context$1_AggregationData as AggregationData, type context$1_AggregationKindOneOf as AggregationKindOneOf, type context$1_AggregationResults as AggregationResults, type context$1_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$1_AggregationResultsScalarResult as AggregationResultsScalarResult, context$1_AggregationType as AggregationType, context$1_Alignment as Alignment, type context$1_AnchorData as AnchorData, type context$1_AppEmbedData as AppEmbedData, type context$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$1_AppType as AppType, type context$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type context$1_AudioData as AudioData, type context$1_Background as Background, type context$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$1_BackgroundType as BackgroundType, type BaseEventMetadata$1 as BaseEventMetadata, type context$1_BlockquoteData as BlockquoteData, type context$1_BookingData as BookingData, type context$1_Border as Border, type context$1_BorderColors as BorderColors, type context$1_BulkActionMetadata as BulkActionMetadata, type context$1_BulkContentResult as BulkContentResult, type context$1_BulkCreateContentOptions as BulkCreateContentOptions, type context$1_BulkCreateContentRequest as BulkCreateContentRequest, type context$1_BulkCreateContentResponse as BulkCreateContentResponse, type context$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type context$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type context$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type context$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type context$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type context$1_BulkUpdateContentByKeyOptions as BulkUpdateContentByKeyOptions, type context$1_BulkUpdateContentByKeyRequest as BulkUpdateContentByKeyRequest, type context$1_BulkUpdateContentByKeyResponse as BulkUpdateContentByKeyResponse, type context$1_BulkUpdateContentByKeyResponseBulkContentResult as BulkUpdateContentByKeyResponseBulkContentResult, type context$1_BulkUpdateContentByKeyResponseNonNullableFields as BulkUpdateContentByKeyResponseNonNullableFields, type context$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type context$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type context$1_BulkUpdateContentRequestMaskedContent as BulkUpdateContentRequestMaskedContent, type context$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type context$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type context$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type context$1_BulletedListData as BulletedListData, type context$1_ButtonData as ButtonData, type context$1_CellStyle as CellStyle, type context$1_CodeBlockData as CodeBlockData, type context$1_CollapsibleListData as CollapsibleListData, type context$1_ColorData as ColorData, type context$1_Colors as Colors, type context$1_Content as Content, type context$1_ContentCreatedEnvelope as ContentCreatedEnvelope, type context$1_ContentDeletedEnvelope as ContentDeletedEnvelope, type context$1_ContentField as ContentField, type context$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type context$1_ContentNonNullableFields as ContentNonNullableFields, type context$1_ContentUpdatedEnvelope as ContentUpdatedEnvelope, type context$1_ContentsQueryBuilder as ContentsQueryBuilder, type context$1_ContentsQueryResult as ContentsQueryResult, type context$1_CreateContentRequest as CreateContentRequest, type context$1_CreateContentResponse as CreateContentResponse, type context$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, context$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type context$1_CursorSearch as CursorSearch, type context$1_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type context$1_DateHistogramAggregation as DateHistogramAggregation, type context$1_DateHistogramResult as DateHistogramResult, type context$1_DateHistogramResults as DateHistogramResults, type context$1_Decoration as Decoration, type context$1_DecorationDataOneOf as DecorationDataOneOf, context$1_DecorationType as DecorationType, type context$1_DeleteContentRequest as DeleteContentRequest, type context$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type context$1_Design as Design, type context$1_Dimensions as Dimensions, context$1_Direction as Direction, type context$1_DividerData as DividerData, type context$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type context$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$1_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$1_FileData as FileData, type context$1_FileSource as FileSource, type context$1_FileSourceDataOneOf as FileSourceDataOneOf, type context$1_FontSizeData as FontSizeData, context$1_FontType as FontType, type context$1_GIF as GIF, type context$1_GIFData as GIFData, type context$1_GalleryData as GalleryData, type context$1_GalleryOptions as GalleryOptions, type context$1_GetContentRequest as GetContentRequest, type context$1_GetContentResponse as GetContentResponse, type context$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type context$1_Gradient as Gradient, type context$1_GroupByAggregation as GroupByAggregation, type context$1_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$1_GroupByValueResults as GroupByValueResults, type context$1_HTMLData as HTMLData, type context$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$1_HeadingData as HeadingData, type context$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$1_Image as Image, type context$1_ImageData as ImageData, type context$1_IncludeMissingValuesOptions as IncludeMissingValuesOptions, context$1_InitialExpandedItems as InitialExpandedItems, context$1_Interval as Interval, type context$1_Item as Item, type context$1_ItemDataOneOf as ItemDataOneOf, type context$1_ItemMetadata as ItemMetadata, type context$1_ItemStyle as ItemStyle, type context$1_Layout as Layout, context$1_LayoutType as LayoutType, context$1_LineStyle as LineStyle, type context$1_Link as Link, type context$1_LinkData as LinkData, type context$1_LinkDataOneOf as LinkDataOneOf, type context$1_LinkPreviewData as LinkPreviewData, type context$1_ListValue as ListValue, type context$1_MapData as MapData, type context$1_MapSettings as MapSettings, context$1_MapType as MapType, type context$1_MaskedContent as MaskedContent, type context$1_Media as Media, type context$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type context$1_Metadata as Metadata, context$1_MissingValues as MissingValues, context$1_Mode as Mode, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$1_NestedAggregation as NestedAggregation, type context$1_NestedAggregationItem as NestedAggregationItem, type context$1_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$1_NestedAggregationResults as NestedAggregationResults, type context$1_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$1_NestedAggregationType as NestedAggregationType, type context$1_NestedResultValue as NestedResultValue, type context$1_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$1_NestedResults as NestedResults, type context$1_NestedValueAggregationResult as NestedValueAggregationResult, type context$1_Node as Node, type context$1_NodeDataOneOf as NodeDataOneOf, type context$1_NodeStyle as NodeStyle, context$1_NodeType as NodeType, context$1_NullValue as NullValue, type context$1_Oembed as Oembed, type context$1_Option as Option, type context$1_OptionDesign as OptionDesign, type context$1_OptionLayout as OptionLayout, type context$1_OrderedListData as OrderedListData, context$1_Orientation as Orientation, type context$1_PDFSettings as PDFSettings, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_ParagraphData as ParagraphData, type context$1_Permissions as Permissions, type context$1_PermissiveBulkUpdateContentRequest as PermissiveBulkUpdateContentRequest, type context$1_PermissiveBulkUpdateContentRequestMaskedContent as PermissiveBulkUpdateContentRequestMaskedContent, type context$1_PermissiveBulkUpdateContentResponse as PermissiveBulkUpdateContentResponse, type context$1_PermissiveBulkUpdateContentResponseBulkContentResult as PermissiveBulkUpdateContentResponseBulkContentResult, type context$1_PlaybackOptions as PlaybackOptions, type context$1_PluginContainerData as PluginContainerData, context$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$1_PluginContainerDataWidth as PluginContainerDataWidth, type context$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$1_Poll as Poll, type context$1_PollData as PollData, type context$1_PollDataLayout as PollDataLayout, type context$1_PollDesign as PollDesign, type context$1_PollLayout as PollLayout, context$1_PollLayoutDirection as PollLayoutDirection, context$1_PollLayoutType as PollLayoutType, context$1_PublishStatus as PublishStatus, type context$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type context$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type context$1_QueryContentsOptions as QueryContentsOptions, type context$1_QueryContentsRequest as QueryContentsRequest, type context$1_QueryContentsResponse as QueryContentsResponse, type context$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_RangeAggregation as RangeAggregation, type context$1_RangeAggregationResult as RangeAggregationResult, type context$1_RangeBucket as RangeBucket, type context$1_RangeResult as RangeResult, type context$1_RangeResults as RangeResults, type context$1_Rel as Rel, type context$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type context$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type context$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type context$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type context$1_Results as Results, type context$1_RichContent as RichContent, type context$1_ScalarAggregation as ScalarAggregation, type context$1_ScalarResult as ScalarResult, context$1_ScalarType as ScalarType, type context$1_SearchContentsOptions as SearchContentsOptions, type context$1_SearchContentsRequest as SearchContentsRequest, type context$1_SearchContentsResponse as SearchContentsResponse, type context$1_SearchContentsResponseNonNullableFields as SearchContentsResponseNonNullableFields, type context$1_SearchDetails as SearchDetails, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type context$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, context$1_SortDirection as SortDirection, SortOrder$1 as SortOrder, context$1_SortType as SortType, type Sorting$1 as Sorting, context$1_Source as Source, type context$1_Spoiler as Spoiler, type context$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$1_Styles as Styles, type context$1_TableCellData as TableCellData, type context$1_TableData as TableData, context$1_Target as Target, context$1_TextAlignment as TextAlignment, type context$1_TextData as TextData, type context$1_TextNodeStyle as TextNodeStyle, type context$1_TextStyle as TextStyle, type context$1_Thumbnails as Thumbnails, context$1_ThumbnailsAlignment as ThumbnailsAlignment, context$1_Type as Type, type context$1_UpdateContent as UpdateContent, type context$1_UpdateContentByKeyRequest as UpdateContentByKeyRequest, type context$1_UpdateContentByKeyResponse as UpdateContentByKeyResponse, type context$1_UpdateContentByKeyResponseNonNullableFields as UpdateContentByKeyResponseNonNullableFields, type context$1_UpdateContentRequest as UpdateContentRequest, type context$1_UpdateContentResponse as UpdateContentResponse, type context$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, context$1_UpdaterIdentity as UpdaterIdentity, type context$1_ValueAggregation as ValueAggregation, type context$1_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$1_ValueAggregationResult as ValueAggregationResult, type context$1_ValueResult as ValueResult, type context$1_ValueResults as ValueResults, context$1_VerticalAlignment as VerticalAlignment, type context$1_Video as Video, type context$1_VideoData as VideoData, type context$1_VideoResolution as VideoResolution, context$1_ViewMode as ViewMode, context$1_ViewRole as ViewRole, context$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, context$1_Width as Width, context$1_WidthType as WidthType, type context$1__publicOnContentCreatedType as _publicOnContentCreatedType, type context$1__publicOnContentDeletedType as _publicOnContentDeletedType, type context$1__publicOnContentUpdatedType as _publicOnContentUpdatedType, context$1_bulkCreateContent as bulkCreateContent, context$1_bulkDeleteContent as bulkDeleteContent, context$1_bulkUpdateContent as bulkUpdateContent, context$1_bulkUpdateContentByKey as bulkUpdateContentByKey, context$1_createContent as createContent, context$1_deleteContent as deleteContent, context$1_getContent as getContent, context$1_onContentCreated as onContentCreated, context$1_onContentDeleted as onContentDeleted, context$1_onContentUpdated as onContentUpdated, onContentCreated$1 as publicOnContentCreated, onContentDeleted$1 as publicOnContentDeleted, onContentUpdated$1 as publicOnContentUpdated, context$1_queryContents as queryContents, context$1_searchContents as searchContents, context$1_updateContent as updateContent, context$1_updateContentByKey as updateContentByKey };
|
|
7892
7977
|
}
|
|
7893
7978
|
|
|
7894
7979
|
interface Schema {
|
|
@@ -457,63 +457,6 @@ interface StressDMRequest {
|
|
|
457
457
|
}
|
|
458
458
|
interface StressDMResponse {
|
|
459
459
|
}
|
|
460
|
-
interface BaseEventMetadata$1 {
|
|
461
|
-
/** App instance ID. */
|
|
462
|
-
instanceId?: string | null;
|
|
463
|
-
/** Event type. */
|
|
464
|
-
eventType?: string;
|
|
465
|
-
/** The identification type and identity data. */
|
|
466
|
-
identity?: IdentificationData$3;
|
|
467
|
-
}
|
|
468
|
-
interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
469
|
-
/**
|
|
470
|
-
* Unique event ID.
|
|
471
|
-
* Allows clients to ignore duplicate webhooks.
|
|
472
|
-
*/
|
|
473
|
-
_id?: string;
|
|
474
|
-
/**
|
|
475
|
-
* Assumes actions are also always typed to an entity_type
|
|
476
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
477
|
-
*/
|
|
478
|
-
entityFqdn?: string;
|
|
479
|
-
/**
|
|
480
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
481
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
482
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
483
|
-
*/
|
|
484
|
-
slug?: string;
|
|
485
|
-
/** ID of the entity associated with the event. */
|
|
486
|
-
entityId?: string;
|
|
487
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
488
|
-
eventTime?: Date;
|
|
489
|
-
/**
|
|
490
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
491
|
-
* (for example, GDPR).
|
|
492
|
-
*/
|
|
493
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
494
|
-
/** If present, indicates the action that triggered the event. */
|
|
495
|
-
originatedFrom?: string | null;
|
|
496
|
-
/**
|
|
497
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
498
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
499
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
500
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
501
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
502
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
503
|
-
*/
|
|
504
|
-
entityEventSequence?: string | null;
|
|
505
|
-
}
|
|
506
|
-
interface EntityMapperCreatedEnvelope {
|
|
507
|
-
entity: Mapper;
|
|
508
|
-
metadata: EventMetadata$1;
|
|
509
|
-
}
|
|
510
|
-
interface EntityMapperUpdatedEnvelope {
|
|
511
|
-
entity: Mapper;
|
|
512
|
-
metadata: EventMetadata$1;
|
|
513
|
-
}
|
|
514
|
-
interface EntityMapperDeletedEnvelope {
|
|
515
|
-
metadata: EventMetadata$1;
|
|
516
|
-
}
|
|
517
460
|
interface SyncEditorDataOptions {
|
|
518
461
|
/** an optional filter for syncing the content */
|
|
519
462
|
syncFilter?: SyncFilter;
|
|
@@ -526,26 +469,9 @@ interface SyncEditorDataSignature {
|
|
|
526
469
|
*/
|
|
527
470
|
(options?: SyncEditorDataOptions | undefined): Promise<void>;
|
|
528
471
|
}
|
|
529
|
-
declare const onEntityMapperCreated$1: EventDefinition<EntityMapperCreatedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_created">;
|
|
530
|
-
declare const onEntityMapperUpdated$1: EventDefinition<EntityMapperUpdatedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_updated">;
|
|
531
|
-
declare const onEntityMapperDeleted$1: EventDefinition<EntityMapperDeletedEnvelope, "wix.multilingual.genericconverter.v1.entity_mapper_deleted">;
|
|
532
|
-
|
|
533
|
-
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
534
472
|
|
|
535
473
|
declare const syncEditorData: BuildRESTFunction<typeof syncEditorData$1> & typeof syncEditorData$1;
|
|
536
474
|
|
|
537
|
-
type _publicOnEntityMapperCreatedType = typeof onEntityMapperCreated$1;
|
|
538
|
-
/** */
|
|
539
|
-
declare const onEntityMapperCreated: ReturnType<typeof createEventModule$1<_publicOnEntityMapperCreatedType>>;
|
|
540
|
-
|
|
541
|
-
type _publicOnEntityMapperUpdatedType = typeof onEntityMapperUpdated$1;
|
|
542
|
-
/** */
|
|
543
|
-
declare const onEntityMapperUpdated: ReturnType<typeof createEventModule$1<_publicOnEntityMapperUpdatedType>>;
|
|
544
|
-
|
|
545
|
-
type _publicOnEntityMapperDeletedType = typeof onEntityMapperDeleted$1;
|
|
546
|
-
/** */
|
|
547
|
-
declare const onEntityMapperDeleted: ReturnType<typeof createEventModule$1<_publicOnEntityMapperDeletedType>>;
|
|
548
|
-
|
|
549
475
|
type index_d$5_ChangedPages = ChangedPages;
|
|
550
476
|
type index_d$5_CreateOrUpdateAction = CreateOrUpdateAction;
|
|
551
477
|
type index_d$5_CreateOrUpdateEditorMapperRequest = CreateOrUpdateEditorMapperRequest;
|
|
@@ -557,9 +483,6 @@ type index_d$5_DeleteEntityMapperRequest = DeleteEntityMapperRequest;
|
|
|
557
483
|
type index_d$5_DeleteEntityMapperResponse = DeleteEntityMapperResponse;
|
|
558
484
|
type index_d$5_DeleteMapperRequest = DeleteMapperRequest;
|
|
559
485
|
type index_d$5_DeleteMapperResponse = DeleteMapperResponse;
|
|
560
|
-
type index_d$5_EntityMapperCreatedEnvelope = EntityMapperCreatedEnvelope;
|
|
561
|
-
type index_d$5_EntityMapperDeletedEnvelope = EntityMapperDeletedEnvelope;
|
|
562
|
-
type index_d$5_EntityMapperUpdatedEnvelope = EntityMapperUpdatedEnvelope;
|
|
563
486
|
type index_d$5_FieldSequence = FieldSequence;
|
|
564
487
|
type index_d$5_GetEntityMapperRequest = GetEntityMapperRequest;
|
|
565
488
|
type index_d$5_GetEntityMapperResponse = GetEntityMapperResponse;
|
|
@@ -592,15 +515,9 @@ type index_d$5_SyncEditorDataOptions = SyncEditorDataOptions;
|
|
|
592
515
|
type index_d$5_SyncEditorDataRequest = SyncEditorDataRequest;
|
|
593
516
|
type index_d$5_SyncEditorDataResponse = SyncEditorDataResponse;
|
|
594
517
|
type index_d$5_SyncFilter = SyncFilter;
|
|
595
|
-
type index_d$5__publicOnEntityMapperCreatedType = _publicOnEntityMapperCreatedType;
|
|
596
|
-
type index_d$5__publicOnEntityMapperDeletedType = _publicOnEntityMapperDeletedType;
|
|
597
|
-
type index_d$5__publicOnEntityMapperUpdatedType = _publicOnEntityMapperUpdatedType;
|
|
598
|
-
declare const index_d$5_onEntityMapperCreated: typeof onEntityMapperCreated;
|
|
599
|
-
declare const index_d$5_onEntityMapperDeleted: typeof onEntityMapperDeleted;
|
|
600
|
-
declare const index_d$5_onEntityMapperUpdated: typeof onEntityMapperUpdated;
|
|
601
518
|
declare const index_d$5_syncEditorData: typeof syncEditorData;
|
|
602
519
|
declare namespace index_d$5 {
|
|
603
|
-
export { type ActionEvent$3 as ActionEvent, type
|
|
520
|
+
export { type ActionEvent$3 as ActionEvent, type index_d$5_ChangedPages as ChangedPages, type index_d$5_CreateOrUpdateAction as CreateOrUpdateAction, type index_d$5_CreateOrUpdateEditorMapperRequest as CreateOrUpdateEditorMapperRequest, type index_d$5_CreateOrUpdateEditorMapperResponse as CreateOrUpdateEditorMapperResponse, type index_d$5_CreateOrUpdateNileMapperRequest as CreateOrUpdateNileMapperRequest, type index_d$5_CreateOrUpdateNileMapperResponse as CreateOrUpdateNileMapperResponse, type index_d$5_DeleteAction as DeleteAction, type index_d$5_DeleteEntityMapperRequest as DeleteEntityMapperRequest, type index_d$5_DeleteEntityMapperResponse as DeleteEntityMapperResponse, type index_d$5_DeleteMapperRequest as DeleteMapperRequest, type index_d$5_DeleteMapperResponse as DeleteMapperResponse, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$2 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type index_d$5_FieldSequence as FieldSequence, FieldType$1 as FieldType, type index_d$5_GetEntityMapperRequest as GetEntityMapperRequest, type index_d$5_GetEntityMapperResponse as GetEntityMapperResponse, type index_d$5_GetMapperRequest as GetMapperRequest, type index_d$5_GetMapperResponse as GetMapperResponse, type index_d$5_GetSubscribedTopicsRequest as GetSubscribedTopicsRequest, type index_d$5_GetSubscribedTopicsResponse as GetSubscribedTopicsResponse, type index_d$5_HtmlNewRevisionSavedMessage as HtmlNewRevisionSavedMessage, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type index_d$5_ListMappersRequest as ListMappersRequest, type index_d$5_ListMappersResponse as ListMappersResponse, type index_d$5_LocalizationPublicAction as LocalizationPublicAction, type index_d$5_LocalizationPublicActionActionOneOf as LocalizationPublicActionActionOneOf, type index_d$5_LocalizedContentKey as LocalizedContentKey, type index_d$5_LocalizedPublishedContent as LocalizedPublishedContent, type index_d$5_LocalizedPublishedContentField as LocalizedPublishedContentField, type index_d$5_LocalizedPublishedContentFieldValueOneOf as LocalizedPublishedContentFieldValueOneOf, type index_d$5_LocalizedPublishedLanguageContentChanged as LocalizedPublishedLanguageContentChanged, type index_d$5_Mapper as Mapper, type index_d$5_MapperField as MapperField, type index_d$5_MediaItem as MediaItem, type index_d$5_MediaItemMediaOneOf as MediaItemMediaOneOf, type MessageEnvelope$3 as MessageEnvelope, type index_d$5_Page as Page, type index_d$5_PublishSiteTranslationsRequest as PublishSiteTranslationsRequest, type index_d$5_PublishSiteTranslationsResponse as PublishSiteTranslationsResponse, type RestoreInfo$3 as RestoreInfo, type index_d$5_RevisionInfo as RevisionInfo, type SchemaKey$2 as SchemaKey, SchemaScope$2 as SchemaScope, type index_d$5_SequencePath as SequencePath, type index_d$5_StressDMRequest as StressDMRequest, type index_d$5_StressDMResponse as StressDMResponse, type index_d$5_SyncEditorDataOptions as SyncEditorDataOptions, type index_d$5_SyncEditorDataRequest as SyncEditorDataRequest, type index_d$5_SyncEditorDataResponse as SyncEditorDataResponse, type index_d$5_SyncFilter as SyncFilter, type VideoResolution$2 as VideoResolution, WebhookIdentityType$3 as WebhookIdentityType, index_d$5_syncEditorData as syncEditorData };
|
|
604
521
|
}
|
|
605
522
|
|
|
606
523
|
/** Represents a content of an entity with its published translations */
|
|
@@ -2391,6 +2308,64 @@ interface PublishedContentNonNullableFields {
|
|
|
2391
2308
|
interface QueryPublishedContentResponseNonNullableFields {
|
|
2392
2309
|
publishedContent: PublishedContentNonNullableFields[];
|
|
2393
2310
|
}
|
|
2311
|
+
interface BaseEventMetadata$2 {
|
|
2312
|
+
/** App instance ID. */
|
|
2313
|
+
instanceId?: string | null;
|
|
2314
|
+
/** Event type. */
|
|
2315
|
+
eventType?: string;
|
|
2316
|
+
/** The identification type and identity data. */
|
|
2317
|
+
identity?: IdentificationData$2;
|
|
2318
|
+
}
|
|
2319
|
+
interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
2320
|
+
/**
|
|
2321
|
+
* Unique event ID.
|
|
2322
|
+
* Allows clients to ignore duplicate webhooks.
|
|
2323
|
+
*/
|
|
2324
|
+
_id?: string;
|
|
2325
|
+
/**
|
|
2326
|
+
* Assumes actions are also always typed to an entity_type
|
|
2327
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
2328
|
+
*/
|
|
2329
|
+
entityFqdn?: string;
|
|
2330
|
+
/**
|
|
2331
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
2332
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
2333
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
2334
|
+
*/
|
|
2335
|
+
slug?: string;
|
|
2336
|
+
/** ID of the entity associated with the event. */
|
|
2337
|
+
entityId?: string;
|
|
2338
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2339
|
+
eventTime?: Date;
|
|
2340
|
+
/**
|
|
2341
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2342
|
+
* (for example, GDPR).
|
|
2343
|
+
*/
|
|
2344
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2345
|
+
/** If present, indicates the action that triggered the event. */
|
|
2346
|
+
originatedFrom?: string | null;
|
|
2347
|
+
/**
|
|
2348
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
2349
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
2350
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
2351
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
2352
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
2353
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
2354
|
+
*/
|
|
2355
|
+
entityEventSequence?: string | null;
|
|
2356
|
+
}
|
|
2357
|
+
interface PublishedContentCreatedEnvelope {
|
|
2358
|
+
entity: PublishedContent;
|
|
2359
|
+
metadata: EventMetadata$2;
|
|
2360
|
+
}
|
|
2361
|
+
interface PublishedContentUpdatedEnvelope {
|
|
2362
|
+
entity: PublishedContent;
|
|
2363
|
+
metadata: EventMetadata$2;
|
|
2364
|
+
}
|
|
2365
|
+
interface PublishedContentDeletedEnvelope {
|
|
2366
|
+
entity: PublishedContent;
|
|
2367
|
+
metadata: EventMetadata$2;
|
|
2368
|
+
}
|
|
2394
2369
|
interface QueryCursorResult$2 {
|
|
2395
2370
|
cursors: Cursors$2;
|
|
2396
2371
|
hasNext: () => boolean;
|
|
@@ -2456,23 +2431,49 @@ interface QueryPublishedContentSignature {
|
|
|
2456
2431
|
*/
|
|
2457
2432
|
(): PublishedContentQueryBuilder;
|
|
2458
2433
|
}
|
|
2434
|
+
declare const onPublishedContentCreated$1: EventDefinition<PublishedContentCreatedEnvelope, "wix.multilingual.localization_public.v3.published_content_created">;
|
|
2435
|
+
declare const onPublishedContentUpdated$1: EventDefinition<PublishedContentUpdatedEnvelope, "wix.multilingual.localization_public.v3.published_content_updated">;
|
|
2436
|
+
declare const onPublishedContentDeleted$1: EventDefinition<PublishedContentDeletedEnvelope, "wix.multilingual.localization_public.v3.published_content_deleted">;
|
|
2437
|
+
|
|
2438
|
+
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2459
2439
|
|
|
2460
2440
|
declare const queryPublishedContent: BuildRESTFunction<typeof queryPublishedContent$1> & typeof queryPublishedContent$1;
|
|
2461
2441
|
|
|
2442
|
+
type _publicOnPublishedContentCreatedType = typeof onPublishedContentCreated$1;
|
|
2443
|
+
/** */
|
|
2444
|
+
declare const onPublishedContentCreated: ReturnType<typeof createEventModule$2<_publicOnPublishedContentCreatedType>>;
|
|
2445
|
+
|
|
2446
|
+
type _publicOnPublishedContentUpdatedType = typeof onPublishedContentUpdated$1;
|
|
2447
|
+
/** */
|
|
2448
|
+
declare const onPublishedContentUpdated: ReturnType<typeof createEventModule$2<_publicOnPublishedContentUpdatedType>>;
|
|
2449
|
+
|
|
2450
|
+
type _publicOnPublishedContentDeletedType = typeof onPublishedContentDeleted$1;
|
|
2451
|
+
/** */
|
|
2452
|
+
declare const onPublishedContentDeleted: ReturnType<typeof createEventModule$2<_publicOnPublishedContentDeletedType>>;
|
|
2453
|
+
|
|
2462
2454
|
type index_d$4_ExtendedFields = ExtendedFields;
|
|
2463
2455
|
type index_d$4_GetPublishedContentRequest = GetPublishedContentRequest;
|
|
2464
2456
|
type index_d$4_GetPublishedContentResponse = GetPublishedContentResponse;
|
|
2465
2457
|
type index_d$4_PublishedContent = PublishedContent;
|
|
2458
|
+
type index_d$4_PublishedContentCreatedEnvelope = PublishedContentCreatedEnvelope;
|
|
2459
|
+
type index_d$4_PublishedContentDeletedEnvelope = PublishedContentDeletedEnvelope;
|
|
2466
2460
|
type index_d$4_PublishedContentField = PublishedContentField;
|
|
2467
2461
|
type index_d$4_PublishedContentFieldValueOneOf = PublishedContentFieldValueOneOf;
|
|
2468
2462
|
type index_d$4_PublishedContentQueryBuilder = PublishedContentQueryBuilder;
|
|
2469
2463
|
type index_d$4_PublishedContentQueryResult = PublishedContentQueryResult;
|
|
2464
|
+
type index_d$4_PublishedContentUpdatedEnvelope = PublishedContentUpdatedEnvelope;
|
|
2470
2465
|
type index_d$4_QueryPublishedContentRequest = QueryPublishedContentRequest;
|
|
2471
2466
|
type index_d$4_QueryPublishedContentResponse = QueryPublishedContentResponse;
|
|
2472
2467
|
type index_d$4_QueryPublishedContentResponseNonNullableFields = QueryPublishedContentResponseNonNullableFields;
|
|
2468
|
+
type index_d$4__publicOnPublishedContentCreatedType = _publicOnPublishedContentCreatedType;
|
|
2469
|
+
type index_d$4__publicOnPublishedContentDeletedType = _publicOnPublishedContentDeletedType;
|
|
2470
|
+
type index_d$4__publicOnPublishedContentUpdatedType = _publicOnPublishedContentUpdatedType;
|
|
2471
|
+
declare const index_d$4_onPublishedContentCreated: typeof onPublishedContentCreated;
|
|
2472
|
+
declare const index_d$4_onPublishedContentDeleted: typeof onPublishedContentDeleted;
|
|
2473
|
+
declare const index_d$4_onPublishedContentUpdated: typeof onPublishedContentUpdated;
|
|
2473
2474
|
declare const index_d$4_queryPublishedContent: typeof queryPublishedContent;
|
|
2474
2475
|
declare namespace index_d$4 {
|
|
2475
|
-
export { type ActionEvent$2 as ActionEvent, Alignment$2 as Alignment, type AnchorData$2 as AnchorData, type AppEmbedData$2 as AppEmbedData, type AppEmbedDataAppDataOneOf$2 as AppEmbedDataAppDataOneOf, AppType$2 as AppType, type AudioData$2 as AudioData, type Background$2 as Background, type BackgroundBackgroundOneOf$2 as BackgroundBackgroundOneOf, BackgroundType$2 as BackgroundType, type BlockquoteData$2 as BlockquoteData, type BookingData$2 as BookingData, type Border$2 as Border, type BorderColors$2 as BorderColors, type BulletedListData$2 as BulletedListData, type ButtonData$2 as ButtonData, type CellStyle$2 as CellStyle, type CodeBlockData$2 as CodeBlockData, type CollapsibleListData$2 as CollapsibleListData, type ColorData$2 as ColorData, type Colors$2 as Colors, Crop$2 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type Decoration$2 as Decoration, type DecorationDataOneOf$2 as DecorationDataOneOf, DecorationType$2 as DecorationType, type Design$2 as Design, type Dimensions$2 as Dimensions, Direction$2 as Direction, type DividerData$2 as DividerData, type DocumentStyle$2 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type EmbedData$2 as EmbedData, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$2 as EventData, type index_d$4_ExtendedFields as ExtendedFields, type FileData$2 as FileData, type FileSource$2 as FileSource, type FileSourceDataOneOf$2 as FileSourceDataOneOf, type FontSizeData$2 as FontSizeData, FontType$2 as FontType, type GIF$2 as GIF, type GIFData$2 as GIFData, type GalleryData$2 as GalleryData, type GalleryOptions$2 as GalleryOptions, type index_d$4_GetPublishedContentRequest as GetPublishedContentRequest, type index_d$4_GetPublishedContentResponse as GetPublishedContentResponse, type Gradient$2 as Gradient, type HTMLData$2 as HTMLData, type HTMLDataDataOneOf$2 as HTMLDataDataOneOf, type HeadingData$2 as HeadingData, type Height$2 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$2 as Image, type ImageData$2 as ImageData, InitialExpandedItems$2 as InitialExpandedItems, type Item$2 as Item, type ItemDataOneOf$2 as ItemDataOneOf, type ItemStyle$2 as ItemStyle, type Layout$2 as Layout, LayoutType$2 as LayoutType, LineStyle$2 as LineStyle, type Link$2 as Link, type LinkData$2 as LinkData, type LinkDataOneOf$2 as LinkDataOneOf, type LinkPreviewData$2 as LinkPreviewData, type ListValue$2 as ListValue, type MapData$2 as MapData, type MapSettings$2 as MapSettings, MapType$2 as MapType, type Media$2 as Media, type MentionData$2 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$2 as Metadata, type Node$2 as Node, type NodeDataOneOf$2 as NodeDataOneOf, type NodeStyle$2 as NodeStyle, NodeType$2 as NodeType, NullValue$2 as NullValue, type Oembed$2 as Oembed, type Option$2 as Option, type OptionDesign$2 as OptionDesign, type OptionLayout$2 as OptionLayout, type OrderedListData$2 as OrderedListData, Orientation$2 as Orientation, type PDFSettings$2 as PDFSettings, type ParagraphData$2 as ParagraphData, type Permissions$2 as Permissions, type PlaybackOptions$2 as PlaybackOptions, type PluginContainerData$2 as PluginContainerData, PluginContainerDataAlignment$2 as PluginContainerDataAlignment, type PluginContainerDataWidth$2 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$2 as PluginContainerDataWidthDataOneOf, type Poll$2 as Poll, type PollData$2 as PollData, type PollDataLayout$2 as PollDataLayout, type PollDesign$2 as PollDesign, type PollLayout$2 as PollLayout, PollLayoutDirection$2 as PollLayoutDirection, PollLayoutType$2 as PollLayoutType, type index_d$4_PublishedContent as PublishedContent, type index_d$4_PublishedContentField as PublishedContentField, type index_d$4_PublishedContentFieldValueOneOf as PublishedContentFieldValueOneOf, type index_d$4_PublishedContentQueryBuilder as PublishedContentQueryBuilder, type index_d$4_PublishedContentQueryResult as PublishedContentQueryResult, type index_d$4_QueryPublishedContentRequest as QueryPublishedContentRequest, type index_d$4_QueryPublishedContentResponse as QueryPublishedContentResponse, type index_d$4_QueryPublishedContentResponseNonNullableFields as QueryPublishedContentResponseNonNullableFields, type Rel$2 as Rel, type RestoreInfo$2 as RestoreInfo, type RichContent$2 as RichContent, type SchemaKey$1 as SchemaKey, SchemaScope$1 as SchemaScope, type Settings$2 as Settings, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$2 as Source, type Spoiler$2 as Spoiler, type SpoilerData$2 as SpoilerData, type Styles$2 as Styles, type TableCellData$2 as TableCellData, type TableData$2 as TableData, Target$2 as Target, TextAlignment$2 as TextAlignment, type TextData$2 as TextData, type TextNodeStyle$2 as TextNodeStyle, type TextStyle$2 as TextStyle, type Thumbnails$2 as Thumbnails, ThumbnailsAlignment$2 as ThumbnailsAlignment, Type$2 as Type, VerticalAlignment$2 as VerticalAlignment, type Video$2 as Video, type VideoData$2 as VideoData, type VideoResolution$1 as VideoResolution, ViewMode$2 as ViewMode, ViewRole$2 as ViewRole, VoteRole$2 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$2 as Width, WidthType$2 as WidthType, index_d$4_queryPublishedContent as queryPublishedContent };
|
|
2476
|
+
export { type ActionEvent$2 as ActionEvent, Alignment$2 as Alignment, type AnchorData$2 as AnchorData, type AppEmbedData$2 as AppEmbedData, type AppEmbedDataAppDataOneOf$2 as AppEmbedDataAppDataOneOf, AppType$2 as AppType, type AudioData$2 as AudioData, type Background$2 as Background, type BackgroundBackgroundOneOf$2 as BackgroundBackgroundOneOf, BackgroundType$2 as BackgroundType, type BaseEventMetadata$2 as BaseEventMetadata, type BlockquoteData$2 as BlockquoteData, type BookingData$2 as BookingData, type Border$2 as Border, type BorderColors$2 as BorderColors, type BulletedListData$2 as BulletedListData, type ButtonData$2 as ButtonData, type CellStyle$2 as CellStyle, type CodeBlockData$2 as CodeBlockData, type CollapsibleListData$2 as CollapsibleListData, type ColorData$2 as ColorData, type Colors$2 as Colors, Crop$2 as Crop, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type Decoration$2 as Decoration, type DecorationDataOneOf$2 as DecorationDataOneOf, DecorationType$2 as DecorationType, type Design$2 as Design, type Dimensions$2 as Dimensions, Direction$2 as Direction, type DividerData$2 as DividerData, type DocumentStyle$2 as DocumentStyle, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type EmbedData$2 as EmbedData, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventData$2 as EventData, type EventMetadata$2 as EventMetadata, type index_d$4_ExtendedFields as ExtendedFields, type FileData$2 as FileData, type FileSource$2 as FileSource, type FileSourceDataOneOf$2 as FileSourceDataOneOf, type FontSizeData$2 as FontSizeData, FontType$2 as FontType, type GIF$2 as GIF, type GIFData$2 as GIFData, type GalleryData$2 as GalleryData, type GalleryOptions$2 as GalleryOptions, type index_d$4_GetPublishedContentRequest as GetPublishedContentRequest, type index_d$4_GetPublishedContentResponse as GetPublishedContentResponse, type Gradient$2 as Gradient, type HTMLData$2 as HTMLData, type HTMLDataDataOneOf$2 as HTMLDataDataOneOf, type HeadingData$2 as HeadingData, type Height$2 as Height, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type Image$2 as Image, type ImageData$2 as ImageData, InitialExpandedItems$2 as InitialExpandedItems, type Item$2 as Item, type ItemDataOneOf$2 as ItemDataOneOf, type ItemStyle$2 as ItemStyle, type Layout$2 as Layout, LayoutType$2 as LayoutType, LineStyle$2 as LineStyle, type Link$2 as Link, type LinkData$2 as LinkData, type LinkDataOneOf$2 as LinkDataOneOf, type LinkPreviewData$2 as LinkPreviewData, type ListValue$2 as ListValue, type MapData$2 as MapData, type MapSettings$2 as MapSettings, MapType$2 as MapType, type Media$2 as Media, type MentionData$2 as MentionData, type MessageEnvelope$2 as MessageEnvelope, type Metadata$2 as Metadata, type Node$2 as Node, type NodeDataOneOf$2 as NodeDataOneOf, type NodeStyle$2 as NodeStyle, NodeType$2 as NodeType, NullValue$2 as NullValue, type Oembed$2 as Oembed, type Option$2 as Option, type OptionDesign$2 as OptionDesign, type OptionLayout$2 as OptionLayout, type OrderedListData$2 as OrderedListData, Orientation$2 as Orientation, type PDFSettings$2 as PDFSettings, type ParagraphData$2 as ParagraphData, type Permissions$2 as Permissions, type PlaybackOptions$2 as PlaybackOptions, type PluginContainerData$2 as PluginContainerData, PluginContainerDataAlignment$2 as PluginContainerDataAlignment, type PluginContainerDataWidth$2 as PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf$2 as PluginContainerDataWidthDataOneOf, type Poll$2 as Poll, type PollData$2 as PollData, type PollDataLayout$2 as PollDataLayout, type PollDesign$2 as PollDesign, type PollLayout$2 as PollLayout, PollLayoutDirection$2 as PollLayoutDirection, PollLayoutType$2 as PollLayoutType, type index_d$4_PublishedContent as PublishedContent, type index_d$4_PublishedContentCreatedEnvelope as PublishedContentCreatedEnvelope, type index_d$4_PublishedContentDeletedEnvelope as PublishedContentDeletedEnvelope, type index_d$4_PublishedContentField as PublishedContentField, type index_d$4_PublishedContentFieldValueOneOf as PublishedContentFieldValueOneOf, type index_d$4_PublishedContentQueryBuilder as PublishedContentQueryBuilder, type index_d$4_PublishedContentQueryResult as PublishedContentQueryResult, type index_d$4_PublishedContentUpdatedEnvelope as PublishedContentUpdatedEnvelope, type index_d$4_QueryPublishedContentRequest as QueryPublishedContentRequest, type index_d$4_QueryPublishedContentResponse as QueryPublishedContentResponse, type index_d$4_QueryPublishedContentResponseNonNullableFields as QueryPublishedContentResponseNonNullableFields, type Rel$2 as Rel, type RestoreInfo$2 as RestoreInfo, type RichContent$2 as RichContent, type SchemaKey$1 as SchemaKey, SchemaScope$1 as SchemaScope, type Settings$2 as Settings, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, Source$2 as Source, type Spoiler$2 as Spoiler, type SpoilerData$2 as SpoilerData, type Styles$2 as Styles, type TableCellData$2 as TableCellData, type TableData$2 as TableData, Target$2 as Target, TextAlignment$2 as TextAlignment, type TextData$2 as TextData, type TextNodeStyle$2 as TextNodeStyle, type TextStyle$2 as TextStyle, type Thumbnails$2 as Thumbnails, ThumbnailsAlignment$2 as ThumbnailsAlignment, Type$2 as Type, VerticalAlignment$2 as VerticalAlignment, type Video$2 as Video, type VideoData$2 as VideoData, type VideoResolution$1 as VideoResolution, ViewMode$2 as ViewMode, ViewRole$2 as ViewRole, VoteRole$2 as VoteRole, WebhookIdentityType$2 as WebhookIdentityType, Width$2 as Width, WidthType$2 as WidthType, type index_d$4__publicOnPublishedContentCreatedType as _publicOnPublishedContentCreatedType, type index_d$4__publicOnPublishedContentDeletedType as _publicOnPublishedContentDeletedType, type index_d$4__publicOnPublishedContentUpdatedType as _publicOnPublishedContentUpdatedType, index_d$4_onPublishedContentCreated as onPublishedContentCreated, index_d$4_onPublishedContentDeleted as onPublishedContentDeleted, index_d$4_onPublishedContentUpdated as onPublishedContentUpdated, onPublishedContentCreated$1 as publicOnPublishedContentCreated, onPublishedContentDeleted$1 as publicOnPublishedContentDeleted, onPublishedContentUpdated$1 as publicOnPublishedContentUpdated, index_d$4_queryPublishedContent as queryPublishedContent };
|
|
2476
2477
|
}
|
|
2477
2478
|
|
|
2478
2479
|
/**
|
|
@@ -7395,6 +7396,64 @@ interface BulkDeleteContentResponseNonNullableFields {
|
|
|
7395
7396
|
results: BulkDeleteContentResponseBulkContentResultNonNullableFields[];
|
|
7396
7397
|
bulkActionMetadata?: BulkActionMetadataNonNullableFields;
|
|
7397
7398
|
}
|
|
7399
|
+
interface BaseEventMetadata$1 {
|
|
7400
|
+
/** App instance ID. */
|
|
7401
|
+
instanceId?: string | null;
|
|
7402
|
+
/** Event type. */
|
|
7403
|
+
eventType?: string;
|
|
7404
|
+
/** The identification type and identity data. */
|
|
7405
|
+
identity?: IdentificationData$1;
|
|
7406
|
+
}
|
|
7407
|
+
interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
7408
|
+
/**
|
|
7409
|
+
* Unique event ID.
|
|
7410
|
+
* Allows clients to ignore duplicate webhooks.
|
|
7411
|
+
*/
|
|
7412
|
+
_id?: string;
|
|
7413
|
+
/**
|
|
7414
|
+
* Assumes actions are also always typed to an entity_type
|
|
7415
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
7416
|
+
*/
|
|
7417
|
+
entityFqdn?: string;
|
|
7418
|
+
/**
|
|
7419
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
7420
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
7421
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
7422
|
+
*/
|
|
7423
|
+
slug?: string;
|
|
7424
|
+
/** ID of the entity associated with the event. */
|
|
7425
|
+
entityId?: string;
|
|
7426
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
7427
|
+
eventTime?: Date;
|
|
7428
|
+
/**
|
|
7429
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
7430
|
+
* (for example, GDPR).
|
|
7431
|
+
*/
|
|
7432
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
7433
|
+
/** If present, indicates the action that triggered the event. */
|
|
7434
|
+
originatedFrom?: string | null;
|
|
7435
|
+
/**
|
|
7436
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
7437
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
7438
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
7439
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
7440
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
7441
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
7442
|
+
*/
|
|
7443
|
+
entityEventSequence?: string | null;
|
|
7444
|
+
}
|
|
7445
|
+
interface ContentCreatedEnvelope {
|
|
7446
|
+
entity: Content;
|
|
7447
|
+
metadata: EventMetadata$1;
|
|
7448
|
+
}
|
|
7449
|
+
interface ContentUpdatedEnvelope {
|
|
7450
|
+
entity: Content;
|
|
7451
|
+
metadata: EventMetadata$1;
|
|
7452
|
+
}
|
|
7453
|
+
interface ContentDeletedEnvelope {
|
|
7454
|
+
entity: Content;
|
|
7455
|
+
metadata: EventMetadata$1;
|
|
7456
|
+
}
|
|
7398
7457
|
interface UpdateContent {
|
|
7399
7458
|
/**
|
|
7400
7459
|
* Content ID.
|
|
@@ -7593,6 +7652,11 @@ interface BulkDeleteContentSignature {
|
|
|
7593
7652
|
*/
|
|
7594
7653
|
(contentIds: string[]): Promise<BulkDeleteContentResponse & BulkDeleteContentResponseNonNullableFields>;
|
|
7595
7654
|
}
|
|
7655
|
+
declare const onContentCreated$1: EventDefinition<ContentCreatedEnvelope, "wix.multilingual.translation.v1.content_created">;
|
|
7656
|
+
declare const onContentUpdated$1: EventDefinition<ContentUpdatedEnvelope, "wix.multilingual.translation.v1.content_updated">;
|
|
7657
|
+
declare const onContentDeleted$1: EventDefinition<ContentDeletedEnvelope, "wix.multilingual.translation.v1.content_deleted">;
|
|
7658
|
+
|
|
7659
|
+
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
7596
7660
|
|
|
7597
7661
|
declare const createContent: BuildRESTFunction<typeof createContent$1> & typeof createContent$1;
|
|
7598
7662
|
declare const getContent: BuildRESTFunction<typeof getContent$1> & typeof getContent$1;
|
|
@@ -7606,6 +7670,18 @@ declare const bulkUpdateContent: BuildRESTFunction<typeof bulkUpdateContent$1> &
|
|
|
7606
7670
|
declare const bulkUpdateContentByKey: BuildRESTFunction<typeof bulkUpdateContentByKey$1> & typeof bulkUpdateContentByKey$1;
|
|
7607
7671
|
declare const bulkDeleteContent: BuildRESTFunction<typeof bulkDeleteContent$1> & typeof bulkDeleteContent$1;
|
|
7608
7672
|
|
|
7673
|
+
type _publicOnContentCreatedType = typeof onContentCreated$1;
|
|
7674
|
+
/** */
|
|
7675
|
+
declare const onContentCreated: ReturnType<typeof createEventModule$1<_publicOnContentCreatedType>>;
|
|
7676
|
+
|
|
7677
|
+
type _publicOnContentUpdatedType = typeof onContentUpdated$1;
|
|
7678
|
+
/** */
|
|
7679
|
+
declare const onContentUpdated: ReturnType<typeof createEventModule$1<_publicOnContentUpdatedType>>;
|
|
7680
|
+
|
|
7681
|
+
type _publicOnContentDeletedType = typeof onContentDeleted$1;
|
|
7682
|
+
/** */
|
|
7683
|
+
declare const onContentDeleted: ReturnType<typeof createEventModule$1<_publicOnContentDeletedType>>;
|
|
7684
|
+
|
|
7609
7685
|
type index_d$1_Aggregation = Aggregation;
|
|
7610
7686
|
type index_d$1_AggregationData = AggregationData;
|
|
7611
7687
|
type index_d$1_AggregationKindOneOf = AggregationKindOneOf;
|
|
@@ -7660,9 +7736,12 @@ type index_d$1_CollapsibleListData = CollapsibleListData;
|
|
|
7660
7736
|
type index_d$1_ColorData = ColorData;
|
|
7661
7737
|
type index_d$1_Colors = Colors;
|
|
7662
7738
|
type index_d$1_Content = Content;
|
|
7739
|
+
type index_d$1_ContentCreatedEnvelope = ContentCreatedEnvelope;
|
|
7740
|
+
type index_d$1_ContentDeletedEnvelope = ContentDeletedEnvelope;
|
|
7663
7741
|
type index_d$1_ContentField = ContentField;
|
|
7664
7742
|
type index_d$1_ContentFieldValueOneOf = ContentFieldValueOneOf;
|
|
7665
7743
|
type index_d$1_ContentNonNullableFields = ContentNonNullableFields;
|
|
7744
|
+
type index_d$1_ContentUpdatedEnvelope = ContentUpdatedEnvelope;
|
|
7666
7745
|
type index_d$1_ContentsQueryBuilder = ContentsQueryBuilder;
|
|
7667
7746
|
type index_d$1_ContentsQueryResult = ContentsQueryResult;
|
|
7668
7747
|
type index_d$1_CreateContentRequest = CreateContentRequest;
|
|
@@ -7876,6 +7955,9 @@ type index_d$1_Width = Width;
|
|
|
7876
7955
|
declare const index_d$1_Width: typeof Width;
|
|
7877
7956
|
type index_d$1_WidthType = WidthType;
|
|
7878
7957
|
declare const index_d$1_WidthType: typeof WidthType;
|
|
7958
|
+
type index_d$1__publicOnContentCreatedType = _publicOnContentCreatedType;
|
|
7959
|
+
type index_d$1__publicOnContentDeletedType = _publicOnContentDeletedType;
|
|
7960
|
+
type index_d$1__publicOnContentUpdatedType = _publicOnContentUpdatedType;
|
|
7879
7961
|
declare const index_d$1_bulkCreateContent: typeof bulkCreateContent;
|
|
7880
7962
|
declare const index_d$1_bulkDeleteContent: typeof bulkDeleteContent;
|
|
7881
7963
|
declare const index_d$1_bulkUpdateContent: typeof bulkUpdateContent;
|
|
@@ -7883,12 +7965,15 @@ declare const index_d$1_bulkUpdateContentByKey: typeof bulkUpdateContentByKey;
|
|
|
7883
7965
|
declare const index_d$1_createContent: typeof createContent;
|
|
7884
7966
|
declare const index_d$1_deleteContent: typeof deleteContent;
|
|
7885
7967
|
declare const index_d$1_getContent: typeof getContent;
|
|
7968
|
+
declare const index_d$1_onContentCreated: typeof onContentCreated;
|
|
7969
|
+
declare const index_d$1_onContentDeleted: typeof onContentDeleted;
|
|
7970
|
+
declare const index_d$1_onContentUpdated: typeof onContentUpdated;
|
|
7886
7971
|
declare const index_d$1_queryContents: typeof queryContents;
|
|
7887
7972
|
declare const index_d$1_searchContents: typeof searchContents;
|
|
7888
7973
|
declare const index_d$1_updateContent: typeof updateContent;
|
|
7889
7974
|
declare const index_d$1_updateContentByKey: typeof updateContentByKey;
|
|
7890
7975
|
declare namespace index_d$1 {
|
|
7891
|
-
export { type ActionEvent$1 as ActionEvent, type index_d$1_Aggregation as Aggregation, type index_d$1_AggregationData as AggregationData, type index_d$1_AggregationKindOneOf as AggregationKindOneOf, type index_d$1_AggregationResults as AggregationResults, type index_d$1_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$1_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d$1_AggregationType as AggregationType, index_d$1_Alignment as Alignment, type index_d$1_AnchorData as AnchorData, type index_d$1_AppEmbedData as AppEmbedData, type index_d$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$1_AppType as AppType, type index_d$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type index_d$1_AudioData as AudioData, type index_d$1_Background as Background, type index_d$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$1_BackgroundType as BackgroundType, type index_d$1_BlockquoteData as BlockquoteData, type index_d$1_BookingData as BookingData, type index_d$1_Border as Border, type index_d$1_BorderColors as BorderColors, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkContentResult as BulkContentResult, type index_d$1_BulkCreateContentOptions as BulkCreateContentOptions, type index_d$1_BulkCreateContentRequest as BulkCreateContentRequest, type index_d$1_BulkCreateContentResponse as BulkCreateContentResponse, type index_d$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type index_d$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type index_d$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type index_d$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type index_d$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type index_d$1_BulkUpdateContentByKeyOptions as BulkUpdateContentByKeyOptions, type index_d$1_BulkUpdateContentByKeyRequest as BulkUpdateContentByKeyRequest, type index_d$1_BulkUpdateContentByKeyResponse as BulkUpdateContentByKeyResponse, type index_d$1_BulkUpdateContentByKeyResponseBulkContentResult as BulkUpdateContentByKeyResponseBulkContentResult, type index_d$1_BulkUpdateContentByKeyResponseNonNullableFields as BulkUpdateContentByKeyResponseNonNullableFields, type index_d$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type index_d$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type index_d$1_BulkUpdateContentRequestMaskedContent as BulkUpdateContentRequestMaskedContent, type index_d$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type index_d$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type index_d$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type index_d$1_BulletedListData as BulletedListData, type index_d$1_ButtonData as ButtonData, type index_d$1_CellStyle as CellStyle, type index_d$1_CodeBlockData as CodeBlockData, type index_d$1_CollapsibleListData as CollapsibleListData, type index_d$1_ColorData as ColorData, type index_d$1_Colors as Colors, type index_d$1_Content as Content, type index_d$1_ContentField as ContentField, type index_d$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type index_d$1_ContentNonNullableFields as ContentNonNullableFields, type index_d$1_ContentsQueryBuilder as ContentsQueryBuilder, type index_d$1_ContentsQueryResult as ContentsQueryResult, type index_d$1_CreateContentRequest as CreateContentRequest, type index_d$1_CreateContentResponse as CreateContentResponse, type index_d$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, index_d$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type index_d$1_CursorSearch as CursorSearch, type index_d$1_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_DateHistogramAggregation as DateHistogramAggregation, type index_d$1_DateHistogramResult as DateHistogramResult, type index_d$1_DateHistogramResults as DateHistogramResults, type index_d$1_Decoration as Decoration, type index_d$1_DecorationDataOneOf as DecorationDataOneOf, index_d$1_DecorationType as DecorationType, type index_d$1_DeleteContentRequest as DeleteContentRequest, type index_d$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type index_d$1_Design as Design, type index_d$1_Dimensions as Dimensions, index_d$1_Direction as Direction, type index_d$1_DividerData as DividerData, type index_d$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$1_EventData as EventData, type index_d$1_FileData as FileData, type index_d$1_FileSource as FileSource, type index_d$1_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$1_FontSizeData as FontSizeData, index_d$1_FontType as FontType, type index_d$1_GIF as GIF, type index_d$1_GIFData as GIFData, type index_d$1_GalleryData as GalleryData, type index_d$1_GalleryOptions as GalleryOptions, type index_d$1_GetContentRequest as GetContentRequest, type index_d$1_GetContentResponse as GetContentResponse, type index_d$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type index_d$1_Gradient as Gradient, type index_d$1_GroupByAggregation as GroupByAggregation, type index_d$1_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$1_GroupByValueResults as GroupByValueResults, type index_d$1_HTMLData as HTMLData, type index_d$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$1_HeadingData as HeadingData, type index_d$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_Image as Image, type index_d$1_ImageData as ImageData, type index_d$1_IncludeMissingValuesOptions as IncludeMissingValuesOptions, index_d$1_InitialExpandedItems as InitialExpandedItems, index_d$1_Interval as Interval, type index_d$1_Item as Item, type index_d$1_ItemDataOneOf as ItemDataOneOf, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_ItemStyle as ItemStyle, type index_d$1_Layout as Layout, index_d$1_LayoutType as LayoutType, index_d$1_LineStyle as LineStyle, type index_d$1_Link as Link, type index_d$1_LinkData as LinkData, type index_d$1_LinkDataOneOf as LinkDataOneOf, type index_d$1_LinkPreviewData as LinkPreviewData, type index_d$1_ListValue as ListValue, type index_d$1_MapData as MapData, type index_d$1_MapSettings as MapSettings, index_d$1_MapType as MapType, type index_d$1_MaskedContent as MaskedContent, type index_d$1_Media as Media, type index_d$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type index_d$1_Metadata as Metadata, index_d$1_MissingValues as MissingValues, index_d$1_Mode as Mode, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type index_d$1_NestedAggregation as NestedAggregation, type index_d$1_NestedAggregationItem as NestedAggregationItem, type index_d$1_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$1_NestedAggregationResults as NestedAggregationResults, type index_d$1_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$1_NestedAggregationType as NestedAggregationType, type index_d$1_NestedResultValue as NestedResultValue, type index_d$1_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$1_NestedResults as NestedResults, type index_d$1_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$1_Node as Node, type index_d$1_NodeDataOneOf as NodeDataOneOf, type index_d$1_NodeStyle as NodeStyle, index_d$1_NodeType as NodeType, index_d$1_NullValue as NullValue, type index_d$1_Oembed as Oembed, type index_d$1_Option as Option, type index_d$1_OptionDesign as OptionDesign, type index_d$1_OptionLayout as OptionLayout, type index_d$1_OrderedListData as OrderedListData, index_d$1_Orientation as Orientation, type index_d$1_PDFSettings as PDFSettings, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_ParagraphData as ParagraphData, type index_d$1_Permissions as Permissions, type index_d$1_PermissiveBulkUpdateContentRequest as PermissiveBulkUpdateContentRequest, type index_d$1_PermissiveBulkUpdateContentRequestMaskedContent as PermissiveBulkUpdateContentRequestMaskedContent, type index_d$1_PermissiveBulkUpdateContentResponse as PermissiveBulkUpdateContentResponse, type index_d$1_PermissiveBulkUpdateContentResponseBulkContentResult as PermissiveBulkUpdateContentResponseBulkContentResult, type index_d$1_PlaybackOptions as PlaybackOptions, type index_d$1_PluginContainerData as PluginContainerData, index_d$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$1_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$1_Poll as Poll, type index_d$1_PollData as PollData, type index_d$1_PollDataLayout as PollDataLayout, type index_d$1_PollDesign as PollDesign, type index_d$1_PollLayout as PollLayout, index_d$1_PollLayoutDirection as PollLayoutDirection, index_d$1_PollLayoutType as PollLayoutType, index_d$1_PublishStatus as PublishStatus, type index_d$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type index_d$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type index_d$1_QueryContentsOptions as QueryContentsOptions, type index_d$1_QueryContentsRequest as QueryContentsRequest, type index_d$1_QueryContentsResponse as QueryContentsResponse, type index_d$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_RangeAggregation as RangeAggregation, type index_d$1_RangeAggregationResult as RangeAggregationResult, type index_d$1_RangeBucket as RangeBucket, type index_d$1_RangeResult as RangeResult, type index_d$1_RangeResults as RangeResults, type index_d$1_Rel as Rel, type index_d$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type index_d$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type index_d$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type index_d$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type index_d$1_Results as Results, type index_d$1_RichContent as RichContent, type index_d$1_ScalarAggregation as ScalarAggregation, type index_d$1_ScalarResult as ScalarResult, index_d$1_ScalarType as ScalarType, type index_d$1_SearchContentsOptions as SearchContentsOptions, type index_d$1_SearchContentsRequest as SearchContentsRequest, type index_d$1_SearchContentsResponse as SearchContentsResponse, type index_d$1_SearchContentsResponseNonNullableFields as SearchContentsResponseNonNullableFields, type index_d$1_SearchDetails as SearchDetails, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type index_d$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, index_d$1_SortDirection as SortDirection, SortOrder$1 as SortOrder, index_d$1_SortType as SortType, type Sorting$1 as Sorting, index_d$1_Source as Source, type index_d$1_Spoiler as Spoiler, type index_d$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type index_d$1_Styles as Styles, type index_d$1_TableCellData as TableCellData, type index_d$1_TableData as TableData, index_d$1_Target as Target, index_d$1_TextAlignment as TextAlignment, type index_d$1_TextData as TextData, type index_d$1_TextNodeStyle as TextNodeStyle, type index_d$1_TextStyle as TextStyle, type index_d$1_Thumbnails as Thumbnails, index_d$1_ThumbnailsAlignment as ThumbnailsAlignment, index_d$1_Type as Type, type index_d$1_UpdateContent as UpdateContent, type index_d$1_UpdateContentByKeyRequest as UpdateContentByKeyRequest, type index_d$1_UpdateContentByKeyResponse as UpdateContentByKeyResponse, type index_d$1_UpdateContentByKeyResponseNonNullableFields as UpdateContentByKeyResponseNonNullableFields, type index_d$1_UpdateContentRequest as UpdateContentRequest, type index_d$1_UpdateContentResponse as UpdateContentResponse, type index_d$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, index_d$1_UpdaterIdentity as UpdaterIdentity, type index_d$1_ValueAggregation as ValueAggregation, type index_d$1_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$1_ValueAggregationResult as ValueAggregationResult, type index_d$1_ValueResult as ValueResult, type index_d$1_ValueResults as ValueResults, index_d$1_VerticalAlignment as VerticalAlignment, type index_d$1_Video as Video, type index_d$1_VideoData as VideoData, type index_d$1_VideoResolution as VideoResolution, index_d$1_ViewMode as ViewMode, index_d$1_ViewRole as ViewRole, index_d$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, index_d$1_Width as Width, index_d$1_WidthType as WidthType, index_d$1_bulkCreateContent as bulkCreateContent, index_d$1_bulkDeleteContent as bulkDeleteContent, index_d$1_bulkUpdateContent as bulkUpdateContent, index_d$1_bulkUpdateContentByKey as bulkUpdateContentByKey, index_d$1_createContent as createContent, index_d$1_deleteContent as deleteContent, index_d$1_getContent as getContent, index_d$1_queryContents as queryContents, index_d$1_searchContents as searchContents, index_d$1_updateContent as updateContent, index_d$1_updateContentByKey as updateContentByKey };
|
|
7976
|
+
export { type ActionEvent$1 as ActionEvent, type index_d$1_Aggregation as Aggregation, type index_d$1_AggregationData as AggregationData, type index_d$1_AggregationKindOneOf as AggregationKindOneOf, type index_d$1_AggregationResults as AggregationResults, type index_d$1_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$1_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d$1_AggregationType as AggregationType, index_d$1_Alignment as Alignment, type index_d$1_AnchorData as AnchorData, type index_d$1_AppEmbedData as AppEmbedData, type index_d$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$1_AppType as AppType, type index_d$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type index_d$1_AudioData as AudioData, type index_d$1_Background as Background, type index_d$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$1_BackgroundType as BackgroundType, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_BlockquoteData as BlockquoteData, type index_d$1_BookingData as BookingData, type index_d$1_Border as Border, type index_d$1_BorderColors as BorderColors, type index_d$1_BulkActionMetadata as BulkActionMetadata, type index_d$1_BulkContentResult as BulkContentResult, type index_d$1_BulkCreateContentOptions as BulkCreateContentOptions, type index_d$1_BulkCreateContentRequest as BulkCreateContentRequest, type index_d$1_BulkCreateContentResponse as BulkCreateContentResponse, type index_d$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type index_d$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type index_d$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type index_d$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type index_d$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type index_d$1_BulkUpdateContentByKeyOptions as BulkUpdateContentByKeyOptions, type index_d$1_BulkUpdateContentByKeyRequest as BulkUpdateContentByKeyRequest, type index_d$1_BulkUpdateContentByKeyResponse as BulkUpdateContentByKeyResponse, type index_d$1_BulkUpdateContentByKeyResponseBulkContentResult as BulkUpdateContentByKeyResponseBulkContentResult, type index_d$1_BulkUpdateContentByKeyResponseNonNullableFields as BulkUpdateContentByKeyResponseNonNullableFields, type index_d$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type index_d$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type index_d$1_BulkUpdateContentRequestMaskedContent as BulkUpdateContentRequestMaskedContent, type index_d$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type index_d$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type index_d$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type index_d$1_BulletedListData as BulletedListData, type index_d$1_ButtonData as ButtonData, type index_d$1_CellStyle as CellStyle, type index_d$1_CodeBlockData as CodeBlockData, type index_d$1_CollapsibleListData as CollapsibleListData, type index_d$1_ColorData as ColorData, type index_d$1_Colors as Colors, type index_d$1_Content as Content, type index_d$1_ContentCreatedEnvelope as ContentCreatedEnvelope, type index_d$1_ContentDeletedEnvelope as ContentDeletedEnvelope, type index_d$1_ContentField as ContentField, type index_d$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type index_d$1_ContentNonNullableFields as ContentNonNullableFields, type index_d$1_ContentUpdatedEnvelope as ContentUpdatedEnvelope, type index_d$1_ContentsQueryBuilder as ContentsQueryBuilder, type index_d$1_ContentsQueryResult as ContentsQueryResult, type index_d$1_CreateContentRequest as CreateContentRequest, type index_d$1_CreateContentResponse as CreateContentResponse, type index_d$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, index_d$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type index_d$1_CursorSearch as CursorSearch, type index_d$1_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_DateHistogramAggregation as DateHistogramAggregation, type index_d$1_DateHistogramResult as DateHistogramResult, type index_d$1_DateHistogramResults as DateHistogramResults, type index_d$1_Decoration as Decoration, type index_d$1_DecorationDataOneOf as DecorationDataOneOf, index_d$1_DecorationType as DecorationType, type index_d$1_DeleteContentRequest as DeleteContentRequest, type index_d$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type index_d$1_Design as Design, type index_d$1_Dimensions as Dimensions, index_d$1_Direction as Direction, type index_d$1_DividerData as DividerData, type index_d$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$1_EventData as EventData, type EventMetadata$1 as EventMetadata, type index_d$1_FileData as FileData, type index_d$1_FileSource as FileSource, type index_d$1_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$1_FontSizeData as FontSizeData, index_d$1_FontType as FontType, type index_d$1_GIF as GIF, type index_d$1_GIFData as GIFData, type index_d$1_GalleryData as GalleryData, type index_d$1_GalleryOptions as GalleryOptions, type index_d$1_GetContentRequest as GetContentRequest, type index_d$1_GetContentResponse as GetContentResponse, type index_d$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type index_d$1_Gradient as Gradient, type index_d$1_GroupByAggregation as GroupByAggregation, type index_d$1_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$1_GroupByValueResults as GroupByValueResults, type index_d$1_HTMLData as HTMLData, type index_d$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$1_HeadingData as HeadingData, type index_d$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type index_d$1_Image as Image, type index_d$1_ImageData as ImageData, type index_d$1_IncludeMissingValuesOptions as IncludeMissingValuesOptions, index_d$1_InitialExpandedItems as InitialExpandedItems, index_d$1_Interval as Interval, type index_d$1_Item as Item, type index_d$1_ItemDataOneOf as ItemDataOneOf, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_ItemStyle as ItemStyle, type index_d$1_Layout as Layout, index_d$1_LayoutType as LayoutType, index_d$1_LineStyle as LineStyle, type index_d$1_Link as Link, type index_d$1_LinkData as LinkData, type index_d$1_LinkDataOneOf as LinkDataOneOf, type index_d$1_LinkPreviewData as LinkPreviewData, type index_d$1_ListValue as ListValue, type index_d$1_MapData as MapData, type index_d$1_MapSettings as MapSettings, index_d$1_MapType as MapType, type index_d$1_MaskedContent as MaskedContent, type index_d$1_Media as Media, type index_d$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type index_d$1_Metadata as Metadata, index_d$1_MissingValues as MissingValues, index_d$1_Mode as Mode, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type index_d$1_NestedAggregation as NestedAggregation, type index_d$1_NestedAggregationItem as NestedAggregationItem, type index_d$1_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$1_NestedAggregationResults as NestedAggregationResults, type index_d$1_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$1_NestedAggregationType as NestedAggregationType, type index_d$1_NestedResultValue as NestedResultValue, type index_d$1_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$1_NestedResults as NestedResults, type index_d$1_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$1_Node as Node, type index_d$1_NodeDataOneOf as NodeDataOneOf, type index_d$1_NodeStyle as NodeStyle, index_d$1_NodeType as NodeType, index_d$1_NullValue as NullValue, type index_d$1_Oembed as Oembed, type index_d$1_Option as Option, type index_d$1_OptionDesign as OptionDesign, type index_d$1_OptionLayout as OptionLayout, type index_d$1_OrderedListData as OrderedListData, index_d$1_Orientation as Orientation, type index_d$1_PDFSettings as PDFSettings, type index_d$1_Paging as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_ParagraphData as ParagraphData, type index_d$1_Permissions as Permissions, type index_d$1_PermissiveBulkUpdateContentRequest as PermissiveBulkUpdateContentRequest, type index_d$1_PermissiveBulkUpdateContentRequestMaskedContent as PermissiveBulkUpdateContentRequestMaskedContent, type index_d$1_PermissiveBulkUpdateContentResponse as PermissiveBulkUpdateContentResponse, type index_d$1_PermissiveBulkUpdateContentResponseBulkContentResult as PermissiveBulkUpdateContentResponseBulkContentResult, type index_d$1_PlaybackOptions as PlaybackOptions, type index_d$1_PluginContainerData as PluginContainerData, index_d$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$1_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$1_Poll as Poll, type index_d$1_PollData as PollData, type index_d$1_PollDataLayout as PollDataLayout, type index_d$1_PollDesign as PollDesign, type index_d$1_PollLayout as PollLayout, index_d$1_PollLayoutDirection as PollLayoutDirection, index_d$1_PollLayoutType as PollLayoutType, index_d$1_PublishStatus as PublishStatus, type index_d$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type index_d$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type index_d$1_QueryContentsOptions as QueryContentsOptions, type index_d$1_QueryContentsRequest as QueryContentsRequest, type index_d$1_QueryContentsResponse as QueryContentsResponse, type index_d$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_RangeAggregation as RangeAggregation, type index_d$1_RangeAggregationResult as RangeAggregationResult, type index_d$1_RangeBucket as RangeBucket, type index_d$1_RangeResult as RangeResult, type index_d$1_RangeResults as RangeResults, type index_d$1_Rel as Rel, type index_d$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type index_d$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type index_d$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type index_d$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type index_d$1_Results as Results, type index_d$1_RichContent as RichContent, type index_d$1_ScalarAggregation as ScalarAggregation, type index_d$1_ScalarResult as ScalarResult, index_d$1_ScalarType as ScalarType, type index_d$1_SearchContentsOptions as SearchContentsOptions, type index_d$1_SearchContentsRequest as SearchContentsRequest, type index_d$1_SearchContentsResponse as SearchContentsResponse, type index_d$1_SearchContentsResponseNonNullableFields as SearchContentsResponseNonNullableFields, type index_d$1_SearchDetails as SearchDetails, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type index_d$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, index_d$1_SortDirection as SortDirection, SortOrder$1 as SortOrder, index_d$1_SortType as SortType, type Sorting$1 as Sorting, index_d$1_Source as Source, type index_d$1_Spoiler as Spoiler, type index_d$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type index_d$1_Styles as Styles, type index_d$1_TableCellData as TableCellData, type index_d$1_TableData as TableData, index_d$1_Target as Target, index_d$1_TextAlignment as TextAlignment, type index_d$1_TextData as TextData, type index_d$1_TextNodeStyle as TextNodeStyle, type index_d$1_TextStyle as TextStyle, type index_d$1_Thumbnails as Thumbnails, index_d$1_ThumbnailsAlignment as ThumbnailsAlignment, index_d$1_Type as Type, type index_d$1_UpdateContent as UpdateContent, type index_d$1_UpdateContentByKeyRequest as UpdateContentByKeyRequest, type index_d$1_UpdateContentByKeyResponse as UpdateContentByKeyResponse, type index_d$1_UpdateContentByKeyResponseNonNullableFields as UpdateContentByKeyResponseNonNullableFields, type index_d$1_UpdateContentRequest as UpdateContentRequest, type index_d$1_UpdateContentResponse as UpdateContentResponse, type index_d$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, index_d$1_UpdaterIdentity as UpdaterIdentity, type index_d$1_ValueAggregation as ValueAggregation, type index_d$1_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$1_ValueAggregationResult as ValueAggregationResult, type index_d$1_ValueResult as ValueResult, type index_d$1_ValueResults as ValueResults, index_d$1_VerticalAlignment as VerticalAlignment, type index_d$1_Video as Video, type index_d$1_VideoData as VideoData, type index_d$1_VideoResolution as VideoResolution, index_d$1_ViewMode as ViewMode, index_d$1_ViewRole as ViewRole, index_d$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, index_d$1_Width as Width, index_d$1_WidthType as WidthType, type index_d$1__publicOnContentCreatedType as _publicOnContentCreatedType, type index_d$1__publicOnContentDeletedType as _publicOnContentDeletedType, type index_d$1__publicOnContentUpdatedType as _publicOnContentUpdatedType, index_d$1_bulkCreateContent as bulkCreateContent, index_d$1_bulkDeleteContent as bulkDeleteContent, index_d$1_bulkUpdateContent as bulkUpdateContent, index_d$1_bulkUpdateContentByKey as bulkUpdateContentByKey, index_d$1_createContent as createContent, index_d$1_deleteContent as deleteContent, index_d$1_getContent as getContent, index_d$1_onContentCreated as onContentCreated, index_d$1_onContentDeleted as onContentDeleted, index_d$1_onContentUpdated as onContentUpdated, onContentCreated$1 as publicOnContentCreated, onContentDeleted$1 as publicOnContentDeleted, onContentUpdated$1 as publicOnContentUpdated, index_d$1_queryContents as queryContents, index_d$1_searchContents as searchContents, index_d$1_updateContent as updateContent, index_d$1_updateContentByKey as updateContentByKey };
|
|
7892
7977
|
}
|
|
7893
7978
|
|
|
7894
7979
|
interface Schema {
|