@wix/events 1.0.333 → 1.0.334

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/events",
3
- "version": "1.0.333",
3
+ "version": "1.0.334",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -27,7 +27,7 @@
27
27
  "@wix/events_notifications": "1.0.39",
28
28
  "@wix/events_orders": "1.0.58",
29
29
  "@wix/events_policies": "1.0.47",
30
- "@wix/events_ricos": "1.0.13",
30
+ "@wix/events_ricos": "1.0.14",
31
31
  "@wix/events_rsvp": "1.0.50",
32
32
  "@wix/events_rsvp-v-2": "1.0.21",
33
33
  "@wix/events_schedule": "1.0.44",
@@ -61,5 +61,5 @@
61
61
  "fqdn": ""
62
62
  }
63
63
  },
64
- "falconPackageHash": "1c602a9c848b7b3ff2ec9597f8ed1afcd2a2b8f19ad581dc63211763"
64
+ "falconPackageHash": "18bdc9328302789b15a219b8c371ead1bfd0c6d8fdf7ac93f132254a"
65
65
  }
@@ -12176,6 +12176,16 @@ interface Cursors$5 {
12176
12176
  /** Cursor pointing to previous page in the list of results. */
12177
12177
  prev?: string | null;
12178
12178
  }
12179
+ interface QueryRichContentRequest {
12180
+ /** WQL expression. */
12181
+ query?: CursorQuery$1;
12182
+ }
12183
+ interface QueryRichContentResponse {
12184
+ /** List of RichContents. */
12185
+ richContent?: RichContent[];
12186
+ /** Paging metadata */
12187
+ pagingMetadata?: CursorPagingMetadata$1;
12188
+ }
12179
12189
  interface EventCopied$2 {
12180
12190
  /** Event created timestamp in ISO UTC format. */
12181
12191
  timestamp?: Date | null;
@@ -12766,6 +12776,9 @@ interface UpdateRichContentResponseNonNullableFields {
12766
12776
  interface QueryRichContentsResponseNonNullableFields {
12767
12777
  richContents: RichContentNonNullableFields[];
12768
12778
  }
12779
+ interface QueryRichContentResponseNonNullableFields {
12780
+ richContent: RichContentNonNullableFields[];
12781
+ }
12769
12782
  interface BaseEventMetadata$6 {
12770
12783
  /** App instance ID. */
12771
12784
  instanceId?: string | null;
@@ -12866,6 +12879,10 @@ interface UpdateRichContent {
12866
12879
  /** Data Extensions */
12867
12880
  extendedFields?: ExtendedFields$2;
12868
12881
  }
12882
+ interface QueryRichContentsOptions {
12883
+ /** WQL expression. */
12884
+ query?: CursorQuery$1;
12885
+ }
12869
12886
  interface QueryCursorResult$4 {
12870
12887
  cursors: Cursors$5;
12871
12888
  hasNext: () => boolean;
@@ -12873,55 +12890,55 @@ interface QueryCursorResult$4 {
12873
12890
  length: number;
12874
12891
  pageSize: number;
12875
12892
  }
12876
- interface RichContentsQueryResult extends QueryCursorResult$4 {
12893
+ interface RichContentQueryResult extends QueryCursorResult$4 {
12877
12894
  items: RichContent[];
12878
- query: RichContentsQueryBuilder;
12879
- next: () => Promise<RichContentsQueryResult>;
12880
- prev: () => Promise<RichContentsQueryResult>;
12895
+ query: RichContentQueryBuilder;
12896
+ next: () => Promise<RichContentQueryResult>;
12897
+ prev: () => Promise<RichContentQueryResult>;
12881
12898
  }
12882
- interface RichContentsQueryBuilder {
12899
+ interface RichContentQueryBuilder {
12883
12900
  /** @param propertyName - Property whose value is compared with `value`.
12884
12901
  * @param value - Value to compare against.
12885
12902
  * @documentationMaturity preview
12886
12903
  */
12887
- eq: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentsQueryBuilder;
12904
+ eq: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentQueryBuilder;
12888
12905
  /** @param propertyName - Property whose value is compared with `value`.
12889
12906
  * @param value - Value to compare against.
12890
12907
  * @documentationMaturity preview
12891
12908
  */
12892
- ne: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentsQueryBuilder;
12909
+ ne: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentQueryBuilder;
12893
12910
  /** @param propertyName - Property whose value is compared with `string`.
12894
12911
  * @param string - String to compare against. Case-insensitive.
12895
12912
  * @documentationMaturity preview
12896
12913
  */
12897
- startsWith: (propertyName: '_id' | 'eventId' | 'fieldName', value: string) => RichContentsQueryBuilder;
12914
+ startsWith: (propertyName: '_id' | 'eventId' | 'fieldName', value: string) => RichContentQueryBuilder;
12898
12915
  /** @param propertyName - Property whose value is compared with `values`.
12899
12916
  * @param values - List of values to compare against.
12900
12917
  * @documentationMaturity preview
12901
12918
  */
12902
- hasSome: (propertyName: '_id' | 'eventId' | 'fieldName', value: any[]) => RichContentsQueryBuilder;
12919
+ hasSome: (propertyName: '_id' | 'eventId' | 'fieldName', value: any[]) => RichContentQueryBuilder;
12903
12920
  /** @documentationMaturity preview */
12904
- in: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentsQueryBuilder;
12921
+ in: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentQueryBuilder;
12905
12922
  /** @documentationMaturity preview */
12906
- exists: (propertyName: '_id' | 'eventId' | 'fieldName', value: boolean) => RichContentsQueryBuilder;
12923
+ exists: (propertyName: '_id' | 'eventId' | 'fieldName', value: boolean) => RichContentQueryBuilder;
12907
12924
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
12908
12925
  * @documentationMaturity preview
12909
12926
  */
12910
- ascending: (...propertyNames: Array<'_id' | 'eventId' | 'fieldName'>) => RichContentsQueryBuilder;
12927
+ ascending: (...propertyNames: Array<'_id' | 'eventId' | 'fieldName'>) => RichContentQueryBuilder;
12911
12928
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
12912
12929
  * @documentationMaturity preview
12913
12930
  */
12914
- descending: (...propertyNames: Array<'_id' | 'eventId' | 'fieldName'>) => RichContentsQueryBuilder;
12931
+ descending: (...propertyNames: Array<'_id' | 'eventId' | 'fieldName'>) => RichContentQueryBuilder;
12915
12932
  /** @param limit - Number of items to return, which is also the `pageSize` of the results object.
12916
12933
  * @documentationMaturity preview
12917
12934
  */
12918
- limit: (limit: number) => RichContentsQueryBuilder;
12935
+ limit: (limit: number) => RichContentQueryBuilder;
12919
12936
  /** @param cursor - A pointer to specific record
12920
12937
  * @documentationMaturity preview
12921
12938
  */
12922
- skipTo: (cursor: string) => RichContentsQueryBuilder;
12939
+ skipTo: (cursor: string) => RichContentQueryBuilder;
12923
12940
  /** @documentationMaturity preview */
12924
- find: () => Promise<RichContentsQueryResult>;
12941
+ find: () => Promise<RichContentQueryResult>;
12925
12942
  }
12926
12943
 
12927
12944
  declare function createRichContent$1(httpClient: HttpClient): CreateRichContentSignature;
@@ -12981,8 +12998,14 @@ interface QueryRichContentsSignature {
12981
12998
  * To learn how to query RichContents, see [API Query Language][2].
12982
12999
  * [1]: https://dev.wix.com/api/rest/getting-started/sorting-and-paging
12983
13000
  * [2]: https://dev.wix.com/api/rest/getting-started/api-query-language
13001
+ * @deprecated
12984
13002
  */
12985
- (): RichContentsQueryBuilder;
13003
+ (options?: QueryRichContentsOptions | undefined): Promise<QueryRichContentsResponse & QueryRichContentsResponseNonNullableFields>;
13004
+ }
13005
+ declare function queryRichContent$1(httpClient: HttpClient): QueryRichContentSignature;
13006
+ interface QueryRichContentSignature {
13007
+ /** */
13008
+ (): RichContentQueryBuilder;
12986
13009
  }
12987
13010
  declare const onRichContentCreated$1: EventDefinition<RichContentCreatedEnvelope, "wix.events.v1.rich_content_created">;
12988
13011
  declare const onRichContentUpdated$1: EventDefinition<RichContentUpdatedEnvelope, "wix.events.v1.rich_content_updated">;
@@ -12996,6 +13019,7 @@ declare const findRichContentBySlug: MaybeContext<BuildRESTFunction<typeof findR
12996
13019
  declare const updateRichContent: MaybeContext<BuildRESTFunction<typeof updateRichContent$1> & typeof updateRichContent$1>;
12997
13020
  declare const deleteRichContent: MaybeContext<BuildRESTFunction<typeof deleteRichContent$1> & typeof deleteRichContent$1>;
12998
13021
  declare const queryRichContents: MaybeContext<BuildRESTFunction<typeof queryRichContents$1> & typeof queryRichContents$1>;
13022
+ declare const queryRichContent: MaybeContext<BuildRESTFunction<typeof queryRichContent$1> & typeof queryRichContent$1>;
12999
13023
 
13000
13024
  type _publicOnRichContentCreatedType = typeof onRichContentCreated$1;
13001
13025
  /** */
@@ -13132,6 +13156,10 @@ type context$7_PollLayoutDirection = PollLayoutDirection;
13132
13156
  declare const context$7_PollLayoutDirection: typeof PollLayoutDirection;
13133
13157
  type context$7_PollLayoutType = PollLayoutType;
13134
13158
  declare const context$7_PollLayoutType: typeof PollLayoutType;
13159
+ type context$7_QueryRichContentRequest = QueryRichContentRequest;
13160
+ type context$7_QueryRichContentResponse = QueryRichContentResponse;
13161
+ type context$7_QueryRichContentResponseNonNullableFields = QueryRichContentResponseNonNullableFields;
13162
+ type context$7_QueryRichContentsOptions = QueryRichContentsOptions;
13135
13163
  type context$7_QueryRichContentsRequest = QueryRichContentsRequest;
13136
13164
  type context$7_QueryRichContentsResponse = QueryRichContentsResponse;
13137
13165
  type context$7_QueryRichContentsResponseNonNullableFields = QueryRichContentsResponseNonNullableFields;
@@ -13140,9 +13168,9 @@ type context$7_RichContent = RichContent;
13140
13168
  type context$7_RichContentCreatedEnvelope = RichContentCreatedEnvelope;
13141
13169
  type context$7_RichContentDeletedEnvelope = RichContentDeletedEnvelope;
13142
13170
  type context$7_RichContentNonNullableFields = RichContentNonNullableFields;
13171
+ type context$7_RichContentQueryBuilder = RichContentQueryBuilder;
13172
+ type context$7_RichContentQueryResult = RichContentQueryResult;
13143
13173
  type context$7_RichContentUpdatedEnvelope = RichContentUpdatedEnvelope;
13144
- type context$7_RichContentsQueryBuilder = RichContentsQueryBuilder;
13145
- type context$7_RichContentsQueryResult = RichContentsQueryResult;
13146
13174
  type context$7_Source = Source;
13147
13175
  declare const context$7_Source: typeof Source;
13148
13176
  type context$7_Spoiler = Spoiler;
@@ -13189,10 +13217,11 @@ declare const context$7_getRichContent: typeof getRichContent;
13189
13217
  declare const context$7_onRichContentCreated: typeof onRichContentCreated;
13190
13218
  declare const context$7_onRichContentDeleted: typeof onRichContentDeleted;
13191
13219
  declare const context$7_onRichContentUpdated: typeof onRichContentUpdated;
13220
+ declare const context$7_queryRichContent: typeof queryRichContent;
13192
13221
  declare const context$7_queryRichContents: typeof queryRichContents;
13193
13222
  declare const context$7_updateRichContent: typeof updateRichContent;
13194
13223
  declare namespace context$7 {
13195
- export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, context$7_Alignment as Alignment, type context$7_AnchorData as AnchorData, type context$7_AppEmbedData as AppEmbedData, type context$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$7_AppType as AppType, type context$7_AudioData as AudioData, type context$7_Background as Background, type context$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$7_BackgroundType as BackgroundType, type BaseEventMetadata$6 as BaseEventMetadata, type context$7_BlockquoteData as BlockquoteData, type context$7_BookingData as BookingData, type context$7_Border as Border, type context$7_BorderColors as BorderColors, type context$7_BulletedListData as BulletedListData, type context$7_ButtonData as ButtonData, type context$7_CaptionData as CaptionData, type context$7_CellStyle as CellStyle, type context$7_CodeBlockData as CodeBlockData, type context$7_CollapsibleListData as CollapsibleListData, type context$7_ColorData as ColorData, type context$7_Colors as Colors, type context$7_CreateRichContentRequest as CreateRichContentRequest, type context$7_CreateRichContentResponse as CreateRichContentResponse, type context$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, context$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type context$7_Decoration as Decoration, type context$7_DecorationDataOneOf as DecorationDataOneOf, context$7_DecorationType as DecorationType, type context$7_DeleteRichContentRequest as DeleteRichContentRequest, type context$7_DeleteRichContentResponse as DeleteRichContentResponse, type context$7_Design as Design, type context$7_Dimensions as Dimensions, context$7_Direction as Direction, type context$7_DividerData as DividerData, type context$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type context$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type context$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$3 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type context$7_FileData as FileData, type context$7_FileSource as FileSource, type context$7_FileSourceDataOneOf as FileSourceDataOneOf, type context$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type context$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type context$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type context$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type context$7_FontSizeData as FontSizeData, context$7_FontType as FontType, type context$7_GIF as GIF, type context$7_GIFData as GIFData, type context$7_GalleryData as GalleryData, type context$7_GalleryOptions as GalleryOptions, type context$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type context$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type context$7_GetRichContentRequest as GetRichContentRequest, type context$7_GetRichContentResponse as GetRichContentResponse, type context$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type context$7_Gradient as Gradient, type context$7_HTMLData as HTMLData, type context$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$7_HeadingData as HeadingData, type context$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type context$7_Image as Image, type context$7_ImageData as ImageData, context$7_InitialExpandedItems as InitialExpandedItems, type context$7_Item as Item, type context$7_ItemDataOneOf as ItemDataOneOf, type context$7_ItemStyle as ItemStyle, type context$7_Layout as Layout, context$7_LayoutType as LayoutType, context$7_LineStyle as LineStyle, type context$7_Link as Link, type context$7_LinkData as LinkData, type context$7_LinkDataOneOf as LinkDataOneOf, type context$7_LinkPreviewData as LinkPreviewData, type context$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type context$7_MapData as MapData, type context$7_MapSettings as MapSettings, context$7_MapType as MapType, type context$7_Media as Media, type context$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type context$7_Metadata as Metadata, type context$7_Node as Node, type context$7_NodeDataOneOf as NodeDataOneOf, type context$7_NodeStyle as NodeStyle, context$7_NodeType as NodeType, context$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type context$7_Oembed as Oembed, type context$7_Option as Option, type context$7_OptionDesign as OptionDesign, type context$7_OptionLayout as OptionLayout, type context$7_OrderedListData as OrderedListData, context$7_Orientation as Orientation, type context$7_PDFSettings as PDFSettings, type context$7_ParagraphData as ParagraphData, type context$7_Permissions as Permissions, type context$7_PlaybackOptions as PlaybackOptions, type context$7_PluginContainerData as PluginContainerData, context$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$7_PluginContainerDataWidth as PluginContainerDataWidth, type context$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$7_Poll as Poll, type context$7_PollData as PollData, type context$7_PollDataLayout as PollDataLayout, type context$7_PollDesign as PollDesign, type context$7_PollLayout as PollLayout, context$7_PollLayoutDirection as PollLayoutDirection, context$7_PollLayoutType as PollLayoutType, type context$7_QueryRichContentsRequest as QueryRichContentsRequest, type context$7_QueryRichContentsResponse as QueryRichContentsResponse, type context$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type context$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type context$7_RichContent as RichContent, type context$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type context$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type context$7_RichContentNonNullableFields as RichContentNonNullableFields, type context$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type context$7_RichContentsQueryBuilder as RichContentsQueryBuilder, type context$7_RichContentsQueryResult as RichContentsQueryResult, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, context$7_Source as Source, type context$7_Spoiler as Spoiler, type context$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type context$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type context$7_TableCellData as TableCellData, type context$7_TableData as TableData, context$7_Target as Target, context$7_TextAlignment as TextAlignment, type context$7_TextData as TextData, type context$7_TextNodeStyle as TextNodeStyle, type context$7_TextStyle as TextStyle, type context$7_Thumbnails as Thumbnails, context$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type context$7_UpdateRichContent as UpdateRichContent, type context$7_UpdateRichContentRequest as UpdateRichContentRequest, type context$7_UpdateRichContentResponse as UpdateRichContentResponse, type context$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type context$7_V1RichContent as V1RichContent, context$7_VerticalAlignment as VerticalAlignment, type context$7_Video as Video, type context$7_VideoData as VideoData, context$7_ViewMode as ViewMode, context$7_ViewRole as ViewRole, context$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, context$7_Width as Width, context$7_WidthType as WidthType, type context$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type context$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type context$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, context$7_createRichContent as createRichContent, context$7_deleteRichContent as deleteRichContent, context$7_findRichContentBySlug as findRichContentBySlug, context$7_getRichContent as getRichContent, context$7_onRichContentCreated as onRichContentCreated, context$7_onRichContentDeleted as onRichContentDeleted, context$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, context$7_queryRichContents as queryRichContents, context$7_updateRichContent as updateRichContent };
13224
+ export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, context$7_Alignment as Alignment, type context$7_AnchorData as AnchorData, type context$7_AppEmbedData as AppEmbedData, type context$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$7_AppType as AppType, type context$7_AudioData as AudioData, type context$7_Background as Background, type context$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$7_BackgroundType as BackgroundType, type BaseEventMetadata$6 as BaseEventMetadata, type context$7_BlockquoteData as BlockquoteData, type context$7_BookingData as BookingData, type context$7_Border as Border, type context$7_BorderColors as BorderColors, type context$7_BulletedListData as BulletedListData, type context$7_ButtonData as ButtonData, type context$7_CaptionData as CaptionData, type context$7_CellStyle as CellStyle, type context$7_CodeBlockData as CodeBlockData, type context$7_CollapsibleListData as CollapsibleListData, type context$7_ColorData as ColorData, type context$7_Colors as Colors, type context$7_CreateRichContentRequest as CreateRichContentRequest, type context$7_CreateRichContentResponse as CreateRichContentResponse, type context$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, context$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type context$7_Decoration as Decoration, type context$7_DecorationDataOneOf as DecorationDataOneOf, context$7_DecorationType as DecorationType, type context$7_DeleteRichContentRequest as DeleteRichContentRequest, type context$7_DeleteRichContentResponse as DeleteRichContentResponse, type context$7_Design as Design, type context$7_Dimensions as Dimensions, context$7_Direction as Direction, type context$7_DividerData as DividerData, type context$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type context$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type context$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$3 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type context$7_FileData as FileData, type context$7_FileSource as FileSource, type context$7_FileSourceDataOneOf as FileSourceDataOneOf, type context$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type context$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type context$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type context$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type context$7_FontSizeData as FontSizeData, context$7_FontType as FontType, type context$7_GIF as GIF, type context$7_GIFData as GIFData, type context$7_GalleryData as GalleryData, type context$7_GalleryOptions as GalleryOptions, type context$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type context$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type context$7_GetRichContentRequest as GetRichContentRequest, type context$7_GetRichContentResponse as GetRichContentResponse, type context$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type context$7_Gradient as Gradient, type context$7_HTMLData as HTMLData, type context$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$7_HeadingData as HeadingData, type context$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type context$7_Image as Image, type context$7_ImageData as ImageData, context$7_InitialExpandedItems as InitialExpandedItems, type context$7_Item as Item, type context$7_ItemDataOneOf as ItemDataOneOf, type context$7_ItemStyle as ItemStyle, type context$7_Layout as Layout, context$7_LayoutType as LayoutType, context$7_LineStyle as LineStyle, type context$7_Link as Link, type context$7_LinkData as LinkData, type context$7_LinkDataOneOf as LinkDataOneOf, type context$7_LinkPreviewData as LinkPreviewData, type context$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type context$7_MapData as MapData, type context$7_MapSettings as MapSettings, context$7_MapType as MapType, type context$7_Media as Media, type context$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type context$7_Metadata as Metadata, type context$7_Node as Node, type context$7_NodeDataOneOf as NodeDataOneOf, type context$7_NodeStyle as NodeStyle, context$7_NodeType as NodeType, context$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type context$7_Oembed as Oembed, type context$7_Option as Option, type context$7_OptionDesign as OptionDesign, type context$7_OptionLayout as OptionLayout, type context$7_OrderedListData as OrderedListData, context$7_Orientation as Orientation, type context$7_PDFSettings as PDFSettings, type context$7_ParagraphData as ParagraphData, type context$7_Permissions as Permissions, type context$7_PlaybackOptions as PlaybackOptions, type context$7_PluginContainerData as PluginContainerData, context$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$7_PluginContainerDataWidth as PluginContainerDataWidth, type context$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$7_Poll as Poll, type context$7_PollData as PollData, type context$7_PollDataLayout as PollDataLayout, type context$7_PollDesign as PollDesign, type context$7_PollLayout as PollLayout, context$7_PollLayoutDirection as PollLayoutDirection, context$7_PollLayoutType as PollLayoutType, type context$7_QueryRichContentRequest as QueryRichContentRequest, type context$7_QueryRichContentResponse as QueryRichContentResponse, type context$7_QueryRichContentResponseNonNullableFields as QueryRichContentResponseNonNullableFields, type context$7_QueryRichContentsOptions as QueryRichContentsOptions, type context$7_QueryRichContentsRequest as QueryRichContentsRequest, type context$7_QueryRichContentsResponse as QueryRichContentsResponse, type context$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type context$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type context$7_RichContent as RichContent, type context$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type context$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type context$7_RichContentNonNullableFields as RichContentNonNullableFields, type context$7_RichContentQueryBuilder as RichContentQueryBuilder, type context$7_RichContentQueryResult as RichContentQueryResult, type context$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, context$7_Source as Source, type context$7_Spoiler as Spoiler, type context$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type context$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type context$7_TableCellData as TableCellData, type context$7_TableData as TableData, context$7_Target as Target, context$7_TextAlignment as TextAlignment, type context$7_TextData as TextData, type context$7_TextNodeStyle as TextNodeStyle, type context$7_TextStyle as TextStyle, type context$7_Thumbnails as Thumbnails, context$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type context$7_UpdateRichContent as UpdateRichContent, type context$7_UpdateRichContentRequest as UpdateRichContentRequest, type context$7_UpdateRichContentResponse as UpdateRichContentResponse, type context$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type context$7_V1RichContent as V1RichContent, context$7_VerticalAlignment as VerticalAlignment, type context$7_Video as Video, type context$7_VideoData as VideoData, context$7_ViewMode as ViewMode, context$7_ViewRole as ViewRole, context$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, context$7_Width as Width, context$7_WidthType as WidthType, type context$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type context$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type context$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, context$7_createRichContent as createRichContent, context$7_deleteRichContent as deleteRichContent, context$7_findRichContentBySlug as findRichContentBySlug, context$7_getRichContent as getRichContent, context$7_onRichContentCreated as onRichContentCreated, context$7_onRichContentDeleted as onRichContentDeleted, context$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, context$7_queryRichContent as queryRichContent, context$7_queryRichContents as queryRichContents, context$7_updateRichContent as updateRichContent };
13196
13225
  }
13197
13226
 
13198
13227
  interface RsvpRsvp {
@@ -12176,6 +12176,16 @@ interface Cursors$5 {
12176
12176
  /** Cursor pointing to previous page in the list of results. */
12177
12177
  prev?: string | null;
12178
12178
  }
12179
+ interface QueryRichContentRequest {
12180
+ /** WQL expression. */
12181
+ query?: CursorQuery$1;
12182
+ }
12183
+ interface QueryRichContentResponse {
12184
+ /** List of RichContents. */
12185
+ richContent?: RichContent[];
12186
+ /** Paging metadata */
12187
+ pagingMetadata?: CursorPagingMetadata$1;
12188
+ }
12179
12189
  interface EventCopied$2 {
12180
12190
  /** Event created timestamp in ISO UTC format. */
12181
12191
  timestamp?: Date | null;
@@ -12766,6 +12776,9 @@ interface UpdateRichContentResponseNonNullableFields {
12766
12776
  interface QueryRichContentsResponseNonNullableFields {
12767
12777
  richContents: RichContentNonNullableFields[];
12768
12778
  }
12779
+ interface QueryRichContentResponseNonNullableFields {
12780
+ richContent: RichContentNonNullableFields[];
12781
+ }
12769
12782
  interface BaseEventMetadata$6 {
12770
12783
  /** App instance ID. */
12771
12784
  instanceId?: string | null;
@@ -12866,6 +12879,10 @@ interface UpdateRichContent {
12866
12879
  /** Data Extensions */
12867
12880
  extendedFields?: ExtendedFields$2;
12868
12881
  }
12882
+ interface QueryRichContentsOptions {
12883
+ /** WQL expression. */
12884
+ query?: CursorQuery$1;
12885
+ }
12869
12886
  interface QueryCursorResult$4 {
12870
12887
  cursors: Cursors$5;
12871
12888
  hasNext: () => boolean;
@@ -12873,55 +12890,55 @@ interface QueryCursorResult$4 {
12873
12890
  length: number;
12874
12891
  pageSize: number;
12875
12892
  }
12876
- interface RichContentsQueryResult extends QueryCursorResult$4 {
12893
+ interface RichContentQueryResult extends QueryCursorResult$4 {
12877
12894
  items: RichContent[];
12878
- query: RichContentsQueryBuilder;
12879
- next: () => Promise<RichContentsQueryResult>;
12880
- prev: () => Promise<RichContentsQueryResult>;
12895
+ query: RichContentQueryBuilder;
12896
+ next: () => Promise<RichContentQueryResult>;
12897
+ prev: () => Promise<RichContentQueryResult>;
12881
12898
  }
12882
- interface RichContentsQueryBuilder {
12899
+ interface RichContentQueryBuilder {
12883
12900
  /** @param propertyName - Property whose value is compared with `value`.
12884
12901
  * @param value - Value to compare against.
12885
12902
  * @documentationMaturity preview
12886
12903
  */
12887
- eq: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentsQueryBuilder;
12904
+ eq: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentQueryBuilder;
12888
12905
  /** @param propertyName - Property whose value is compared with `value`.
12889
12906
  * @param value - Value to compare against.
12890
12907
  * @documentationMaturity preview
12891
12908
  */
12892
- ne: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentsQueryBuilder;
12909
+ ne: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentQueryBuilder;
12893
12910
  /** @param propertyName - Property whose value is compared with `string`.
12894
12911
  * @param string - String to compare against. Case-insensitive.
12895
12912
  * @documentationMaturity preview
12896
12913
  */
12897
- startsWith: (propertyName: '_id' | 'eventId' | 'fieldName', value: string) => RichContentsQueryBuilder;
12914
+ startsWith: (propertyName: '_id' | 'eventId' | 'fieldName', value: string) => RichContentQueryBuilder;
12898
12915
  /** @param propertyName - Property whose value is compared with `values`.
12899
12916
  * @param values - List of values to compare against.
12900
12917
  * @documentationMaturity preview
12901
12918
  */
12902
- hasSome: (propertyName: '_id' | 'eventId' | 'fieldName', value: any[]) => RichContentsQueryBuilder;
12919
+ hasSome: (propertyName: '_id' | 'eventId' | 'fieldName', value: any[]) => RichContentQueryBuilder;
12903
12920
  /** @documentationMaturity preview */
12904
- in: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentsQueryBuilder;
12921
+ in: (propertyName: '_id' | 'eventId' | 'fieldName', value: any) => RichContentQueryBuilder;
12905
12922
  /** @documentationMaturity preview */
12906
- exists: (propertyName: '_id' | 'eventId' | 'fieldName', value: boolean) => RichContentsQueryBuilder;
12923
+ exists: (propertyName: '_id' | 'eventId' | 'fieldName', value: boolean) => RichContentQueryBuilder;
12907
12924
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
12908
12925
  * @documentationMaturity preview
12909
12926
  */
12910
- ascending: (...propertyNames: Array<'_id' | 'eventId' | 'fieldName'>) => RichContentsQueryBuilder;
12927
+ ascending: (...propertyNames: Array<'_id' | 'eventId' | 'fieldName'>) => RichContentQueryBuilder;
12911
12928
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
12912
12929
  * @documentationMaturity preview
12913
12930
  */
12914
- descending: (...propertyNames: Array<'_id' | 'eventId' | 'fieldName'>) => RichContentsQueryBuilder;
12931
+ descending: (...propertyNames: Array<'_id' | 'eventId' | 'fieldName'>) => RichContentQueryBuilder;
12915
12932
  /** @param limit - Number of items to return, which is also the `pageSize` of the results object.
12916
12933
  * @documentationMaturity preview
12917
12934
  */
12918
- limit: (limit: number) => RichContentsQueryBuilder;
12935
+ limit: (limit: number) => RichContentQueryBuilder;
12919
12936
  /** @param cursor - A pointer to specific record
12920
12937
  * @documentationMaturity preview
12921
12938
  */
12922
- skipTo: (cursor: string) => RichContentsQueryBuilder;
12939
+ skipTo: (cursor: string) => RichContentQueryBuilder;
12923
12940
  /** @documentationMaturity preview */
12924
- find: () => Promise<RichContentsQueryResult>;
12941
+ find: () => Promise<RichContentQueryResult>;
12925
12942
  }
12926
12943
 
12927
12944
  declare function createRichContent$1(httpClient: HttpClient): CreateRichContentSignature;
@@ -12981,8 +12998,14 @@ interface QueryRichContentsSignature {
12981
12998
  * To learn how to query RichContents, see [API Query Language][2].
12982
12999
  * [1]: https://dev.wix.com/api/rest/getting-started/sorting-and-paging
12983
13000
  * [2]: https://dev.wix.com/api/rest/getting-started/api-query-language
13001
+ * @deprecated
12984
13002
  */
12985
- (): RichContentsQueryBuilder;
13003
+ (options?: QueryRichContentsOptions | undefined): Promise<QueryRichContentsResponse & QueryRichContentsResponseNonNullableFields>;
13004
+ }
13005
+ declare function queryRichContent$1(httpClient: HttpClient): QueryRichContentSignature;
13006
+ interface QueryRichContentSignature {
13007
+ /** */
13008
+ (): RichContentQueryBuilder;
12986
13009
  }
12987
13010
  declare const onRichContentCreated$1: EventDefinition<RichContentCreatedEnvelope, "wix.events.v1.rich_content_created">;
12988
13011
  declare const onRichContentUpdated$1: EventDefinition<RichContentUpdatedEnvelope, "wix.events.v1.rich_content_updated">;
@@ -12996,6 +13019,7 @@ declare const findRichContentBySlug: MaybeContext<BuildRESTFunction<typeof findR
12996
13019
  declare const updateRichContent: MaybeContext<BuildRESTFunction<typeof updateRichContent$1> & typeof updateRichContent$1>;
12997
13020
  declare const deleteRichContent: MaybeContext<BuildRESTFunction<typeof deleteRichContent$1> & typeof deleteRichContent$1>;
12998
13021
  declare const queryRichContents: MaybeContext<BuildRESTFunction<typeof queryRichContents$1> & typeof queryRichContents$1>;
13022
+ declare const queryRichContent: MaybeContext<BuildRESTFunction<typeof queryRichContent$1> & typeof queryRichContent$1>;
12999
13023
 
13000
13024
  type _publicOnRichContentCreatedType = typeof onRichContentCreated$1;
13001
13025
  /** */
@@ -13132,6 +13156,10 @@ type index_d$7_PollLayoutDirection = PollLayoutDirection;
13132
13156
  declare const index_d$7_PollLayoutDirection: typeof PollLayoutDirection;
13133
13157
  type index_d$7_PollLayoutType = PollLayoutType;
13134
13158
  declare const index_d$7_PollLayoutType: typeof PollLayoutType;
13159
+ type index_d$7_QueryRichContentRequest = QueryRichContentRequest;
13160
+ type index_d$7_QueryRichContentResponse = QueryRichContentResponse;
13161
+ type index_d$7_QueryRichContentResponseNonNullableFields = QueryRichContentResponseNonNullableFields;
13162
+ type index_d$7_QueryRichContentsOptions = QueryRichContentsOptions;
13135
13163
  type index_d$7_QueryRichContentsRequest = QueryRichContentsRequest;
13136
13164
  type index_d$7_QueryRichContentsResponse = QueryRichContentsResponse;
13137
13165
  type index_d$7_QueryRichContentsResponseNonNullableFields = QueryRichContentsResponseNonNullableFields;
@@ -13140,9 +13168,9 @@ type index_d$7_RichContent = RichContent;
13140
13168
  type index_d$7_RichContentCreatedEnvelope = RichContentCreatedEnvelope;
13141
13169
  type index_d$7_RichContentDeletedEnvelope = RichContentDeletedEnvelope;
13142
13170
  type index_d$7_RichContentNonNullableFields = RichContentNonNullableFields;
13171
+ type index_d$7_RichContentQueryBuilder = RichContentQueryBuilder;
13172
+ type index_d$7_RichContentQueryResult = RichContentQueryResult;
13143
13173
  type index_d$7_RichContentUpdatedEnvelope = RichContentUpdatedEnvelope;
13144
- type index_d$7_RichContentsQueryBuilder = RichContentsQueryBuilder;
13145
- type index_d$7_RichContentsQueryResult = RichContentsQueryResult;
13146
13174
  type index_d$7_Source = Source;
13147
13175
  declare const index_d$7_Source: typeof Source;
13148
13176
  type index_d$7_Spoiler = Spoiler;
@@ -13189,10 +13217,11 @@ declare const index_d$7_getRichContent: typeof getRichContent;
13189
13217
  declare const index_d$7_onRichContentCreated: typeof onRichContentCreated;
13190
13218
  declare const index_d$7_onRichContentDeleted: typeof onRichContentDeleted;
13191
13219
  declare const index_d$7_onRichContentUpdated: typeof onRichContentUpdated;
13220
+ declare const index_d$7_queryRichContent: typeof queryRichContent;
13192
13221
  declare const index_d$7_queryRichContents: typeof queryRichContents;
13193
13222
  declare const index_d$7_updateRichContent: typeof updateRichContent;
13194
13223
  declare namespace index_d$7 {
13195
- export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, index_d$7_Alignment as Alignment, type index_d$7_AnchorData as AnchorData, type index_d$7_AppEmbedData as AppEmbedData, type index_d$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$7_AppType as AppType, type index_d$7_AudioData as AudioData, type index_d$7_Background as Background, type index_d$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$7_BackgroundType as BackgroundType, type BaseEventMetadata$6 as BaseEventMetadata, type index_d$7_BlockquoteData as BlockquoteData, type index_d$7_BookingData as BookingData, type index_d$7_Border as Border, type index_d$7_BorderColors as BorderColors, type index_d$7_BulletedListData as BulletedListData, type index_d$7_ButtonData as ButtonData, type index_d$7_CaptionData as CaptionData, type index_d$7_CellStyle as CellStyle, type index_d$7_CodeBlockData as CodeBlockData, type index_d$7_CollapsibleListData as CollapsibleListData, type index_d$7_ColorData as ColorData, type index_d$7_Colors as Colors, type index_d$7_CreateRichContentRequest as CreateRichContentRequest, type index_d$7_CreateRichContentResponse as CreateRichContentResponse, type index_d$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, index_d$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$7_Decoration as Decoration, type index_d$7_DecorationDataOneOf as DecorationDataOneOf, index_d$7_DecorationType as DecorationType, type index_d$7_DeleteRichContentRequest as DeleteRichContentRequest, type index_d$7_DeleteRichContentResponse as DeleteRichContentResponse, type index_d$7_Design as Design, type index_d$7_Dimensions as Dimensions, index_d$7_Direction as Direction, type index_d$7_DividerData as DividerData, type index_d$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type index_d$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type index_d$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$3 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type index_d$7_FileData as FileData, type index_d$7_FileSource as FileSource, type index_d$7_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type index_d$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type index_d$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type index_d$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type index_d$7_FontSizeData as FontSizeData, index_d$7_FontType as FontType, type index_d$7_GIF as GIF, type index_d$7_GIFData as GIFData, type index_d$7_GalleryData as GalleryData, type index_d$7_GalleryOptions as GalleryOptions, type index_d$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type index_d$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type index_d$7_GetRichContentRequest as GetRichContentRequest, type index_d$7_GetRichContentResponse as GetRichContentResponse, type index_d$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type index_d$7_Gradient as Gradient, type index_d$7_HTMLData as HTMLData, type index_d$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$7_HeadingData as HeadingData, type index_d$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type index_d$7_Image as Image, type index_d$7_ImageData as ImageData, index_d$7_InitialExpandedItems as InitialExpandedItems, type index_d$7_Item as Item, type index_d$7_ItemDataOneOf as ItemDataOneOf, type index_d$7_ItemStyle as ItemStyle, type index_d$7_Layout as Layout, index_d$7_LayoutType as LayoutType, index_d$7_LineStyle as LineStyle, type index_d$7_Link as Link, type index_d$7_LinkData as LinkData, type index_d$7_LinkDataOneOf as LinkDataOneOf, type index_d$7_LinkPreviewData as LinkPreviewData, type index_d$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type index_d$7_MapData as MapData, type index_d$7_MapSettings as MapSettings, index_d$7_MapType as MapType, type index_d$7_Media as Media, type index_d$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type index_d$7_Metadata as Metadata, type index_d$7_Node as Node, type index_d$7_NodeDataOneOf as NodeDataOneOf, type index_d$7_NodeStyle as NodeStyle, index_d$7_NodeType as NodeType, index_d$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type index_d$7_Oembed as Oembed, type index_d$7_Option as Option, type index_d$7_OptionDesign as OptionDesign, type index_d$7_OptionLayout as OptionLayout, type index_d$7_OrderedListData as OrderedListData, index_d$7_Orientation as Orientation, type index_d$7_PDFSettings as PDFSettings, type index_d$7_ParagraphData as ParagraphData, type index_d$7_Permissions as Permissions, type index_d$7_PlaybackOptions as PlaybackOptions, type index_d$7_PluginContainerData as PluginContainerData, index_d$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$7_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$7_Poll as Poll, type index_d$7_PollData as PollData, type index_d$7_PollDataLayout as PollDataLayout, type index_d$7_PollDesign as PollDesign, type index_d$7_PollLayout as PollLayout, index_d$7_PollLayoutDirection as PollLayoutDirection, index_d$7_PollLayoutType as PollLayoutType, type index_d$7_QueryRichContentsRequest as QueryRichContentsRequest, type index_d$7_QueryRichContentsResponse as QueryRichContentsResponse, type index_d$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type index_d$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type index_d$7_RichContent as RichContent, type index_d$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type index_d$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type index_d$7_RichContentNonNullableFields as RichContentNonNullableFields, type index_d$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type index_d$7_RichContentsQueryBuilder as RichContentsQueryBuilder, type index_d$7_RichContentsQueryResult as RichContentsQueryResult, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, index_d$7_Source as Source, type index_d$7_Spoiler as Spoiler, type index_d$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type index_d$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type index_d$7_TableCellData as TableCellData, type index_d$7_TableData as TableData, index_d$7_Target as Target, index_d$7_TextAlignment as TextAlignment, type index_d$7_TextData as TextData, type index_d$7_TextNodeStyle as TextNodeStyle, type index_d$7_TextStyle as TextStyle, type index_d$7_Thumbnails as Thumbnails, index_d$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type index_d$7_UpdateRichContent as UpdateRichContent, type index_d$7_UpdateRichContentRequest as UpdateRichContentRequest, type index_d$7_UpdateRichContentResponse as UpdateRichContentResponse, type index_d$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type index_d$7_V1RichContent as V1RichContent, index_d$7_VerticalAlignment as VerticalAlignment, type index_d$7_Video as Video, type index_d$7_VideoData as VideoData, index_d$7_ViewMode as ViewMode, index_d$7_ViewRole as ViewRole, index_d$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, index_d$7_Width as Width, index_d$7_WidthType as WidthType, type index_d$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type index_d$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type index_d$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, index_d$7_createRichContent as createRichContent, index_d$7_deleteRichContent as deleteRichContent, index_d$7_findRichContentBySlug as findRichContentBySlug, index_d$7_getRichContent as getRichContent, index_d$7_onRichContentCreated as onRichContentCreated, index_d$7_onRichContentDeleted as onRichContentDeleted, index_d$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, index_d$7_queryRichContents as queryRichContents, index_d$7_updateRichContent as updateRichContent };
13224
+ export { type ActionEvent$4 as ActionEvent, type Address$6 as Address, type AddressLocation$6 as AddressLocation, type AddressStreetOneOf$6 as AddressStreetOneOf, index_d$7_Alignment as Alignment, type index_d$7_AnchorData as AnchorData, type index_d$7_AppEmbedData as AppEmbedData, type index_d$7_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, index_d$7_AppType as AppType, type index_d$7_AudioData as AudioData, type index_d$7_Background as Background, type index_d$7_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, index_d$7_BackgroundType as BackgroundType, type BaseEventMetadata$6 as BaseEventMetadata, type index_d$7_BlockquoteData as BlockquoteData, type index_d$7_BookingData as BookingData, type index_d$7_Border as Border, type index_d$7_BorderColors as BorderColors, type index_d$7_BulletedListData as BulletedListData, type index_d$7_ButtonData as ButtonData, type index_d$7_CaptionData as CaptionData, type index_d$7_CellStyle as CellStyle, type index_d$7_CodeBlockData as CodeBlockData, type index_d$7_CollapsibleListData as CollapsibleListData, type index_d$7_ColorData as ColorData, type index_d$7_Colors as Colors, type index_d$7_CreateRichContentRequest as CreateRichContentRequest, type index_d$7_CreateRichContentResponse as CreateRichContentResponse, type index_d$7_CreateRichContentResponseNonNullableFields as CreateRichContentResponseNonNullableFields, index_d$7_Crop as Crop, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$7_Decoration as Decoration, type index_d$7_DecorationDataOneOf as DecorationDataOneOf, index_d$7_DecorationType as DecorationType, type index_d$7_DeleteRichContentRequest as DeleteRichContentRequest, type index_d$7_DeleteRichContentResponse as DeleteRichContentResponse, type index_d$7_Design as Design, type index_d$7_Dimensions as Dimensions, index_d$7_Direction as Direction, type index_d$7_DividerData as DividerData, type index_d$7_DocumentStyle as DocumentStyle, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type index_d$7_EmbedData as EmbedData, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventCopied$2 as EventCopied, type index_d$7_EventData as EventData, type EventDeleted$3 as EventDeleted, type EventMetadata$3 as EventMetadata, EventStatus$4 as EventStatus, type ExtendedFields$2 as ExtendedFields, type index_d$7_FileData as FileData, type index_d$7_FileSource as FileSource, type index_d$7_FileSourceDataOneOf as FileSourceDataOneOf, type index_d$7_FindRichContentBySlugIdentifiers as FindRichContentBySlugIdentifiers, type index_d$7_FindRichContentBySlugRequest as FindRichContentBySlugRequest, type index_d$7_FindRichContentBySlugResponse as FindRichContentBySlugResponse, type index_d$7_FindRichContentBySlugResponseNonNullableFields as FindRichContentBySlugResponseNonNullableFields, type index_d$7_FontSizeData as FontSizeData, index_d$7_FontType as FontType, type index_d$7_GIF as GIF, type index_d$7_GIFData as GIFData, type index_d$7_GalleryData as GalleryData, type index_d$7_GalleryOptions as GalleryOptions, type index_d$7_GetOrCreateRichContentRequest as GetOrCreateRichContentRequest, type index_d$7_GetOrCreateRichContentResponse as GetOrCreateRichContentResponse, type index_d$7_GetRichContentRequest as GetRichContentRequest, type index_d$7_GetRichContentResponse as GetRichContentResponse, type index_d$7_GetRichContentResponseNonNullableFields as GetRichContentResponseNonNullableFields, type index_d$7_Gradient as Gradient, type index_d$7_HTMLData as HTMLData, type index_d$7_HTMLDataDataOneOf as HTMLDataDataOneOf, type index_d$7_HeadingData as HeadingData, type index_d$7_Height as Height, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type index_d$7_Image as Image, type index_d$7_ImageData as ImageData, index_d$7_InitialExpandedItems as InitialExpandedItems, type index_d$7_Item as Item, type index_d$7_ItemDataOneOf as ItemDataOneOf, type index_d$7_ItemStyle as ItemStyle, type index_d$7_Layout as Layout, index_d$7_LayoutType as LayoutType, index_d$7_LineStyle as LineStyle, type index_d$7_Link as Link, type index_d$7_LinkData as LinkData, type index_d$7_LinkDataOneOf as LinkDataOneOf, type index_d$7_LinkPreviewData as LinkPreviewData, type index_d$7_ListValue as ListValue, type Location$4 as Location, LocationType$4 as LocationType, type MapCoordinates$4 as MapCoordinates, type index_d$7_MapData as MapData, type index_d$7_MapSettings as MapSettings, index_d$7_MapType as MapType, type index_d$7_Media as Media, type index_d$7_MentionData as MentionData, type MessageEnvelope$7 as MessageEnvelope, type index_d$7_Metadata as Metadata, type index_d$7_Node as Node, type index_d$7_NodeDataOneOf as NodeDataOneOf, type index_d$7_NodeStyle as NodeStyle, index_d$7_NodeType as NodeType, index_d$7_NullValue as NullValue, type Occurrence$4 as Occurrence, type index_d$7_Oembed as Oembed, type index_d$7_Option as Option, type index_d$7_OptionDesign as OptionDesign, type index_d$7_OptionLayout as OptionLayout, type index_d$7_OrderedListData as OrderedListData, index_d$7_Orientation as Orientation, type index_d$7_PDFSettings as PDFSettings, type index_d$7_ParagraphData as ParagraphData, type index_d$7_Permissions as Permissions, type index_d$7_PlaybackOptions as PlaybackOptions, type index_d$7_PluginContainerData as PluginContainerData, index_d$7_PluginContainerDataAlignment as PluginContainerDataAlignment, type index_d$7_PluginContainerDataWidth as PluginContainerDataWidth, type index_d$7_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type index_d$7_Poll as Poll, type index_d$7_PollData as PollData, type index_d$7_PollDataLayout as PollDataLayout, type index_d$7_PollDesign as PollDesign, type index_d$7_PollLayout as PollLayout, index_d$7_PollLayoutDirection as PollLayoutDirection, index_d$7_PollLayoutType as PollLayoutType, type index_d$7_QueryRichContentRequest as QueryRichContentRequest, type index_d$7_QueryRichContentResponse as QueryRichContentResponse, type index_d$7_QueryRichContentResponseNonNullableFields as QueryRichContentResponseNonNullableFields, type index_d$7_QueryRichContentsOptions as QueryRichContentsOptions, type index_d$7_QueryRichContentsRequest as QueryRichContentsRequest, type index_d$7_QueryRichContentsResponse as QueryRichContentsResponse, type index_d$7_QueryRichContentsResponseNonNullableFields as QueryRichContentsResponseNonNullableFields, type Recurrences$4 as Recurrences, type index_d$7_Rel as Rel, type RestoreInfo$4 as RestoreInfo, type index_d$7_RichContent as RichContent, type index_d$7_RichContentCreatedEnvelope as RichContentCreatedEnvelope, type index_d$7_RichContentDeletedEnvelope as RichContentDeletedEnvelope, type index_d$7_RichContentNonNullableFields as RichContentNonNullableFields, type index_d$7_RichContentQueryBuilder as RichContentQueryBuilder, type index_d$7_RichContentQueryResult as RichContentQueryResult, type index_d$7_RichContentUpdatedEnvelope as RichContentUpdatedEnvelope, type ScheduleConfig$4 as ScheduleConfig, type Settings$3 as Settings, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, index_d$7_Source as Source, type index_d$7_Spoiler as Spoiler, type index_d$7_SpoilerData as SpoilerData, Status$4 as Status, type StreetAddress$6 as StreetAddress, type index_d$7_Styles as Styles, type Subdivision$6 as Subdivision, SubdivisionType$6 as SubdivisionType, type index_d$7_TableCellData as TableCellData, type index_d$7_TableData as TableData, index_d$7_Target as Target, index_d$7_TextAlignment as TextAlignment, type index_d$7_TextData as TextData, type index_d$7_TextNodeStyle as TextNodeStyle, type index_d$7_TextStyle as TextStyle, type index_d$7_Thumbnails as Thumbnails, index_d$7_ThumbnailsAlignment as ThumbnailsAlignment, Type$3 as Type, type index_d$7_UpdateRichContent as UpdateRichContent, type index_d$7_UpdateRichContentRequest as UpdateRichContentRequest, type index_d$7_UpdateRichContentResponse as UpdateRichContentResponse, type index_d$7_UpdateRichContentResponseNonNullableFields as UpdateRichContentResponseNonNullableFields, type index_d$7_V1RichContent as V1RichContent, index_d$7_VerticalAlignment as VerticalAlignment, type index_d$7_Video as Video, type index_d$7_VideoData as VideoData, index_d$7_ViewMode as ViewMode, index_d$7_ViewRole as ViewRole, index_d$7_VoteRole as VoteRole, WebhookIdentityType$7 as WebhookIdentityType, index_d$7_Width as Width, index_d$7_WidthType as WidthType, type index_d$7__publicOnRichContentCreatedType as _publicOnRichContentCreatedType, type index_d$7__publicOnRichContentDeletedType as _publicOnRichContentDeletedType, type index_d$7__publicOnRichContentUpdatedType as _publicOnRichContentUpdatedType, index_d$7_createRichContent as createRichContent, index_d$7_deleteRichContent as deleteRichContent, index_d$7_findRichContentBySlug as findRichContentBySlug, index_d$7_getRichContent as getRichContent, index_d$7_onRichContentCreated as onRichContentCreated, index_d$7_onRichContentDeleted as onRichContentDeleted, index_d$7_onRichContentUpdated as onRichContentUpdated, onRichContentCreated$1 as publicOnRichContentCreated, onRichContentDeleted$1 as publicOnRichContentDeleted, onRichContentUpdated$1 as publicOnRichContentUpdated, index_d$7_queryRichContent as queryRichContent, index_d$7_queryRichContents as queryRichContents, index_d$7_updateRichContent as updateRichContent };
13196
13225
  }
13197
13226
 
13198
13227
  interface RsvpRsvp {
@@ -8592,6 +8592,16 @@ interface Cursors$9 {
8592
8592
  /** Cursor pointing to previous page in the list of results. */
8593
8593
  prev?: string | null;
8594
8594
  }
8595
+ interface QueryRichContentRequest$1 {
8596
+ /** WQL expression. */
8597
+ query?: CursorQuery$3;
8598
+ }
8599
+ interface QueryRichContentResponse$1 {
8600
+ /** List of RichContents. */
8601
+ richContent?: RichContent$1[];
8602
+ /** Paging metadata */
8603
+ pagingMetadata?: CursorPagingMetadata$3;
8604
+ }
8595
8605
  interface PluginContainerDataWidthNonNullableFields$1 {
8596
8606
  size: WidthType$1;
8597
8607
  }
@@ -8857,6 +8867,9 @@ interface UpdateRichContentResponseNonNullableFields$1 {
8857
8867
  interface QueryRichContentsResponseNonNullableFields$1 {
8858
8868
  richContents: RichContentNonNullableFields$1[];
8859
8869
  }
8870
+ interface QueryRichContentResponseNonNullableFields$1 {
8871
+ richContent: RichContentNonNullableFields$1[];
8872
+ }
8860
8873
 
8861
8874
  interface RichContent {
8862
8875
  /**
@@ -10240,6 +10253,16 @@ interface Cursors$8 {
10240
10253
  /** Cursor pointing to previous page in the list of results. */
10241
10254
  prev?: string | null;
10242
10255
  }
10256
+ interface QueryRichContentRequest {
10257
+ /** WQL expression. */
10258
+ query?: CursorQuery$2;
10259
+ }
10260
+ interface QueryRichContentResponse {
10261
+ /** List of RichContents. */
10262
+ richContent?: RichContent[];
10263
+ /** Paging metadata */
10264
+ pagingMetadata?: CursorPagingMetadata$2;
10265
+ }
10243
10266
  interface PluginContainerDataWidthNonNullableFields {
10244
10267
  size: WidthType;
10245
10268
  }
@@ -10505,6 +10528,9 @@ interface UpdateRichContentResponseNonNullableFields {
10505
10528
  interface QueryRichContentsResponseNonNullableFields {
10506
10529
  richContents: RichContentNonNullableFields[];
10507
10530
  }
10531
+ interface QueryRichContentResponseNonNullableFields {
10532
+ richContent: RichContentNonNullableFields[];
10533
+ }
10508
10534
 
10509
10535
  type __PublicMethodMetaInfo$7<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
10510
10536
  getUrl: (context: any) => string;
@@ -10531,15 +10557,17 @@ declare function deleteRichContent(): __PublicMethodMetaInfo$7<'DELETE', {
10531
10557
  richContentId: string;
10532
10558
  }, DeleteRichContentRequest, DeleteRichContentRequest$1, DeleteRichContentResponse, DeleteRichContentResponse$1>;
10533
10559
  declare function queryRichContents(): __PublicMethodMetaInfo$7<'POST', {}, QueryRichContentsRequest, QueryRichContentsRequest$1, QueryRichContentsResponse & QueryRichContentsResponseNonNullableFields, QueryRichContentsResponse$1 & QueryRichContentsResponseNonNullableFields$1>;
10560
+ declare function queryRichContent(): __PublicMethodMetaInfo$7<'POST', {}, QueryRichContentRequest, QueryRichContentRequest$1, QueryRichContentResponse & QueryRichContentResponseNonNullableFields, QueryRichContentResponse$1 & QueryRichContentResponseNonNullableFields$1>;
10534
10561
 
10535
10562
  declare const meta$7_createRichContent: typeof createRichContent;
10536
10563
  declare const meta$7_deleteRichContent: typeof deleteRichContent;
10537
10564
  declare const meta$7_findRichContentBySlug: typeof findRichContentBySlug;
10538
10565
  declare const meta$7_getRichContent: typeof getRichContent;
10566
+ declare const meta$7_queryRichContent: typeof queryRichContent;
10539
10567
  declare const meta$7_queryRichContents: typeof queryRichContents;
10540
10568
  declare const meta$7_updateRichContent: typeof updateRichContent;
10541
10569
  declare namespace meta$7 {
10542
- export { type __PublicMethodMetaInfo$7 as __PublicMethodMetaInfo, meta$7_createRichContent as createRichContent, meta$7_deleteRichContent as deleteRichContent, meta$7_findRichContentBySlug as findRichContentBySlug, meta$7_getRichContent as getRichContent, meta$7_queryRichContents as queryRichContents, meta$7_updateRichContent as updateRichContent };
10570
+ export { type __PublicMethodMetaInfo$7 as __PublicMethodMetaInfo, meta$7_createRichContent as createRichContent, meta$7_deleteRichContent as deleteRichContent, meta$7_findRichContentBySlug as findRichContentBySlug, meta$7_getRichContent as getRichContent, meta$7_queryRichContent as queryRichContent, meta$7_queryRichContents as queryRichContents, meta$7_updateRichContent as updateRichContent };
10543
10571
  }
10544
10572
 
10545
10573
  interface RsvpRsvp$1 {