@wix/multilingual 1.0.22 → 1.0.24

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.
@@ -4138,6 +4138,14 @@ interface UpdateContentResponse {
4138
4138
  /** Updated Content. */
4139
4139
  content?: Content;
4140
4140
  }
4141
+ interface UpdateContentByKeyRequest {
4142
+ /** Content to be updated, may be partial. */
4143
+ content: Content;
4144
+ }
4145
+ interface UpdateContentByKeyResponse {
4146
+ /** Updated Content. */
4147
+ content?: Content;
4148
+ }
4141
4149
  interface DeleteContentRequest {
4142
4150
  /** Id of the Content to delete. */
4143
4151
  contentId: string;
@@ -4149,26 +4157,32 @@ interface QueryContentsRequest {
4149
4157
  query?: CursorQuery$1;
4150
4158
  }
4151
4159
  interface CursorQuery$1 extends CursorQueryPagingMethodOneOf$1 {
4152
- /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
4160
+ /**
4161
+ * Cursor paging options.
4162
+ *
4163
+ * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
4164
+ */
4153
4165
  cursorPaging?: CursorPaging$1;
4154
4166
  /**
4155
- * Filter object in the following format:
4156
- * `"filter" : {
4157
- * "fieldName1": "value1",
4158
- * "fieldName2":{"$operator":"value2"}
4159
- * }`
4160
- * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
4167
+ * Filter object.
4168
+ *
4169
+ * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
4161
4170
  */
4162
4171
  filter?: Record<string, any> | null;
4163
4172
  /**
4164
- * Sort object in the following format:
4165
- * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
4173
+ * Sort object.
4174
+ *
4175
+ * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
4166
4176
  */
4167
4177
  sort?: Sorting$1[];
4168
4178
  }
4169
4179
  /** @oneof */
4170
4180
  interface CursorQueryPagingMethodOneOf$1 {
4171
- /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
4181
+ /**
4182
+ * Cursor paging options.
4183
+ *
4184
+ * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
4185
+ */
4172
4186
  cursorPaging?: CursorPaging$1;
4173
4187
  }
4174
4188
  interface Sorting$1 {
@@ -4227,17 +4241,15 @@ interface QueryV2 extends QueryV2PagingMethodOneOf {
4227
4241
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
4228
4242
  cursorPaging?: CursorPaging$1;
4229
4243
  /**
4230
- * Filter object in the following format:
4231
- * `"filter" : {
4232
- * "fieldName1": "value1",
4233
- * "fieldName2":{"$operator":"value2"}
4234
- * }`
4235
- * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
4244
+ * Filter object.
4245
+ *
4246
+ * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
4236
4247
  */
4237
4248
  filter?: Record<string, any> | null;
4238
4249
  /**
4239
- * Sort object in the following format:
4240
- * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
4250
+ * Sort object.
4251
+ *
4252
+ * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
4241
4253
  */
4242
4254
  sort?: Sorting$1[];
4243
4255
  /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
@@ -4281,17 +4293,26 @@ interface SearchContentsRequest {
4281
4293
  }
4282
4294
  interface CursorSearch extends CursorSearchPagingMethodOneOf {
4283
4295
  /**
4284
- * Cursor pointing to page of results.
4285
- * When requesting 'cursor_paging.cursor', no `filter`, `sort` or `search` can be provided.
4296
+ * Cursor paging options.
4297
+ *
4298
+ * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
4286
4299
  */
4287
4300
  cursorPaging?: CursorPaging$1;
4288
- /** A filter object. See documentation [here](https://bo.wix.com/wix-docs/rnd/platformization-guidelines/api-query-language#platformization-guidelines_api-query-language_defining-in-protobuf) */
4301
+ /**
4302
+ * Filter object.
4303
+ *
4304
+ * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
4305
+ */
4289
4306
  filter?: Record<string, any> | null;
4290
- /** Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}] */
4307
+ /**
4308
+ * List of sort objects.
4309
+ *
4310
+ * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
4311
+ */
4291
4312
  sort?: Sorting$1[];
4292
4313
  /** Aggregations | Faceted search: refers to a way to explore large amounts of data by displaying summaries about various partitions of the data and later allowing to narrow the navigation to a specific partition. */
4293
4314
  aggregations?: Aggregation[];
4294
- /** Free text to match in searchable fields */
4315
+ /** Free text to match in searchable fields. */
4295
4316
  search?: SearchDetails;
4296
4317
  /**
4297
4318
  * UTC offset or IANA time zone. Valid values are
@@ -4307,8 +4328,9 @@ interface CursorSearch extends CursorSearchPagingMethodOneOf {
4307
4328
  /** @oneof */
4308
4329
  interface CursorSearchPagingMethodOneOf {
4309
4330
  /**
4310
- * Cursor pointing to page of results.
4311
- * When requesting 'cursor_paging.cursor', no `filter`, `sort` or `search` can be provided.
4331
+ * Cursor paging options.
4332
+ *
4333
+ * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
4312
4334
  */
4313
4335
  cursorPaging?: CursorPaging$1;
4314
4336
  }
@@ -4737,11 +4759,11 @@ interface BulkActionMetadata {
4737
4759
  }
4738
4760
  interface BulkUpdateContentRequest {
4739
4761
  /** Contents to be updated. TODO: think again if we want to increase maxSize */
4740
- contents: MaskedContent[];
4762
+ contents: BulkUpdateContentRequestMaskedContent[];
4741
4763
  /** set to `true` if you wish to receive back the created contents in the response */
4742
4764
  returnEntity?: boolean;
4743
4765
  }
4744
- interface MaskedContent {
4766
+ interface BulkUpdateContentRequestMaskedContent {
4745
4767
  /** Content to be updated, may be partial */
4746
4768
  content?: Content;
4747
4769
  }
@@ -4757,6 +4779,50 @@ interface BulkUpdateContentResponseBulkContentResult {
4757
4779
  /** Only exists if `returnEntity` was set to true in the request */
4758
4780
  item?: Content;
4759
4781
  }
4782
+ interface BulkUpdateContentByKeyRequest {
4783
+ /** Contents to be updated. TODO: think again if we want to increase maxSize */
4784
+ contents: MaskedContent[];
4785
+ /** set to `true` if you wish to receive back the created contents in the response */
4786
+ returnEntity?: boolean;
4787
+ }
4788
+ interface MaskedContent {
4789
+ /** Content to be updated, may be partial */
4790
+ content?: Content;
4791
+ }
4792
+ interface BulkUpdateContentByKeyResponse {
4793
+ /** List of results */
4794
+ results?: BulkUpdateContentByKeyResponseBulkContentResult[];
4795
+ /** metadata */
4796
+ bulkActionMetadata?: BulkActionMetadata;
4797
+ }
4798
+ interface BulkUpdateContentByKeyResponseBulkContentResult {
4799
+ /** metadata */
4800
+ itemMetadata?: ItemMetadata;
4801
+ /** Only exists if `returnEntity` was set to true in the request */
4802
+ item?: Content;
4803
+ }
4804
+ interface PermissiveBulkUpdateContentRequest {
4805
+ /** Contents to be updated. TODO: think again if we want to increase maxSize */
4806
+ contents?: PermissiveBulkUpdateContentRequestMaskedContent[];
4807
+ /** set to `true` if you wish to receive back the created contents in the response */
4808
+ returnEntity?: boolean;
4809
+ }
4810
+ interface PermissiveBulkUpdateContentRequestMaskedContent {
4811
+ /** Content to be updated, may be partial */
4812
+ content?: Content;
4813
+ }
4814
+ interface PermissiveBulkUpdateContentResponse {
4815
+ /** List of results */
4816
+ results?: PermissiveBulkUpdateContentResponseBulkContentResult[];
4817
+ /** metadata */
4818
+ bulkActionMetadata?: BulkActionMetadata;
4819
+ }
4820
+ interface PermissiveBulkUpdateContentResponseBulkContentResult {
4821
+ /** metadata */
4822
+ itemMetadata?: ItemMetadata;
4823
+ /** Only exists if `returnEntity` was set to true in the request */
4824
+ item?: Content;
4825
+ }
4760
4826
  interface BulkDeleteContentRequest {
4761
4827
  /** Content ids to be deleted. TODO: think again if we want to increase maxSize */
4762
4828
  contentIds: string[];
@@ -5183,6 +5249,9 @@ interface GetContentResponseNonNullableFields {
5183
5249
  interface UpdateContentResponseNonNullableFields {
5184
5250
  content?: ContentNonNullableFields;
5185
5251
  }
5252
+ interface UpdateContentByKeyResponseNonNullableFields {
5253
+ content?: ContentNonNullableFields;
5254
+ }
5186
5255
  interface QueryContentsResponseNonNullableFields {
5187
5256
  contents: ContentNonNullableFields[];
5188
5257
  }
@@ -5272,6 +5341,14 @@ interface BulkUpdateContentResponseNonNullableFields {
5272
5341
  results: BulkUpdateContentResponseBulkContentResultNonNullableFields[];
5273
5342
  bulkActionMetadata?: BulkActionMetadataNonNullableFields;
5274
5343
  }
5344
+ interface BulkUpdateContentByKeyResponseBulkContentResultNonNullableFields {
5345
+ itemMetadata?: ItemMetadataNonNullableFields;
5346
+ item?: ContentNonNullableFields;
5347
+ }
5348
+ interface BulkUpdateContentByKeyResponseNonNullableFields {
5349
+ results: BulkUpdateContentByKeyResponseBulkContentResultNonNullableFields[];
5350
+ bulkActionMetadata?: BulkActionMetadataNonNullableFields;
5351
+ }
5275
5352
  interface BulkDeleteContentResponseBulkContentResultNonNullableFields {
5276
5353
  itemMetadata?: ItemMetadataNonNullableFields;
5277
5354
  }
@@ -5279,67 +5356,95 @@ interface BulkDeleteContentResponseNonNullableFields {
5279
5356
  results: BulkDeleteContentResponseBulkContentResultNonNullableFields[];
5280
5357
  bulkActionMetadata?: BulkActionMetadataNonNullableFields;
5281
5358
  }
5282
- interface BaseEventMetadata$1 {
5283
- /** App instance ID. */
5284
- instanceId?: string | null;
5285
- /** Event type. */
5286
- eventType?: string;
5287
- /** The identification type and identity data. */
5288
- identity?: IdentificationData$1;
5289
- }
5290
- interface EventMetadata$1 extends BaseEventMetadata$1 {
5291
- /**
5292
- * Unique event ID.
5293
- * Allows clients to ignore duplicate webhooks.
5294
- */
5295
- _id?: string;
5296
- /**
5297
- * Assumes actions are also always typed to an entity_type
5298
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
5299
- */
5300
- entityFqdn?: string;
5359
+ interface UpdateContent {
5301
5360
  /**
5302
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
5303
- * This is although the created/updated/deleted notion is duplication of the oneof types
5304
- * Example: created/updated/deleted/started/completed/email_opened
5361
+ * Content ID.
5362
+ * @readonly
5305
5363
  */
5306
- slug?: string;
5307
- /** ID of the entity associated with the event. */
5364
+ _id?: string | null;
5365
+ /** Schema unique identifier */
5366
+ schemaId?: string;
5367
+ /** Unique identifier that represents a specific entity in the app */
5308
5368
  entityId?: string;
5309
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
5310
- eventTime?: Date;
5369
+ /** Indicates the locale of this content */
5370
+ locale?: string;
5371
+ /** List of fields localized in the given language */
5372
+ fields?: Record<string, ContentField>;
5373
+ /** Optional field that will group in the UI contents with the same group name */
5374
+ parentEntityId?: string | null;
5311
5375
  /**
5312
- * Whether the event was triggered as a result of a privacy regulation application
5313
- * (for example, GDPR).
5376
+ * The aggregated published status across all content fields
5377
+ * @readonly
5314
5378
  */
5315
- triggeredByAnonymizeRequest?: boolean | null;
5316
- /** If present, indicates the action that triggered the event. */
5317
- originatedFrom?: string | null;
5379
+ publishStatus?: PublishStatus;
5318
5380
  /**
5319
- * A sequence number defining the order of updates to the underlying entity.
5320
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
5321
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
5322
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
5323
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
5324
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
5381
+ * Contains the value of the preview field according to the schema if exists.
5382
+ * @readonly
5325
5383
  */
5326
- entityEventSequence?: string | null;
5384
+ previewField?: string | null;
5385
+ /** @readonly */
5386
+ _createdDate?: Date;
5387
+ /** @readonly */
5388
+ _updatedDate?: Date;
5327
5389
  }
5328
- interface ContentCreatedEnvelope {
5329
- entity: Content;
5330
- metadata: EventMetadata$1;
5390
+ interface QueryContentsOptions {
5331
5391
  }
5332
- interface ContentUpdatedEnvelope {
5333
- entity: Content;
5334
- metadata: EventMetadata$1;
5392
+ interface QueryCursorResult$1 {
5393
+ cursors: Cursors$1;
5394
+ hasNext: () => boolean;
5395
+ hasPrev: () => boolean;
5396
+ length: number;
5397
+ pageSize: number;
5335
5398
  }
5336
- interface ContentDeletedEnvelope {
5337
- entity: Content;
5338
- metadata: EventMetadata$1;
5399
+ interface ContentsQueryResult extends QueryCursorResult$1 {
5400
+ items: Content[];
5401
+ query: ContentsQueryBuilder;
5402
+ next: () => Promise<ContentsQueryResult>;
5403
+ prev: () => Promise<ContentsQueryResult>;
5339
5404
  }
5340
- interface QueryContentsOptions {
5341
- /** WQL expression. */
5342
- query?: CursorQuery$1;
5405
+ interface ContentsQueryBuilder {
5406
+ /** @param propertyName - Property whose value is compared with `value`.
5407
+ * @param value - Value to compare against.
5408
+ * @documentationMaturity preview
5409
+ */
5410
+ eq: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus', value: any) => ContentsQueryBuilder;
5411
+ /** @param propertyName - Property whose value is compared with `value`.
5412
+ * @param value - Value to compare against.
5413
+ * @documentationMaturity preview
5414
+ */
5415
+ ne: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus', value: any) => ContentsQueryBuilder;
5416
+ /** @param propertyName - Property whose value is compared with `string`.
5417
+ * @param string - String to compare against. Case-insensitive.
5418
+ * @documentationMaturity preview
5419
+ */
5420
+ startsWith: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId', value: string) => ContentsQueryBuilder;
5421
+ /** @param propertyName - Property whose value is compared with `values`.
5422
+ * @param values - List of values to compare against.
5423
+ * @documentationMaturity preview
5424
+ */
5425
+ hasSome: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus', value: any[]) => ContentsQueryBuilder;
5426
+ /** @documentationMaturity preview */
5427
+ in: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus', value: any) => ContentsQueryBuilder;
5428
+ /** @documentationMaturity preview */
5429
+ exists: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus', value: boolean) => ContentsQueryBuilder;
5430
+ /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
5431
+ * @documentationMaturity preview
5432
+ */
5433
+ ascending: (...propertyNames: Array<'_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus'>) => ContentsQueryBuilder;
5434
+ /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
5435
+ * @documentationMaturity preview
5436
+ */
5437
+ descending: (...propertyNames: Array<'_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus'>) => ContentsQueryBuilder;
5438
+ /** @param limit - Number of items to return, which is also the `pageSize` of the results object.
5439
+ * @documentationMaturity preview
5440
+ */
5441
+ limit: (limit: number) => ContentsQueryBuilder;
5442
+ /** @param cursor - A pointer to specific record
5443
+ * @documentationMaturity preview
5444
+ */
5445
+ skipTo: (cursor: string) => ContentsQueryBuilder;
5446
+ /** @documentationMaturity preview */
5447
+ find: () => Promise<ContentsQueryResult>;
5343
5448
  }
5344
5449
  interface SearchContentsOptions {
5345
5450
  search?: CursorSearch;
@@ -5352,23 +5457,24 @@ interface BulkUpdateContentOptions {
5352
5457
  /** set to `true` if you wish to receive back the created contents in the response */
5353
5458
  returnEntity?: boolean;
5354
5459
  }
5460
+ interface BulkUpdateContentByKeyOptions {
5461
+ /** set to `true` if you wish to receive back the created contents in the response */
5462
+ returnEntity?: boolean;
5463
+ }
5355
5464
 
5356
5465
  declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
5357
5466
 
5358
- declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
5359
-
5360
5467
  declare const createContent: ReturnType<typeof createRESTModule$1<typeof publicCreateContent>>;
5361
5468
  declare const getContent: ReturnType<typeof createRESTModule$1<typeof publicGetContent>>;
5362
5469
  declare const updateContent: ReturnType<typeof createRESTModule$1<typeof publicUpdateContent>>;
5470
+ declare const updateContentByKey: ReturnType<typeof createRESTModule$1<typeof publicUpdateContentByKey>>;
5363
5471
  declare const deleteContent: ReturnType<typeof createRESTModule$1<typeof publicDeleteContent>>;
5364
5472
  declare const queryContents: ReturnType<typeof createRESTModule$1<typeof publicQueryContents>>;
5365
5473
  declare const searchContents: ReturnType<typeof createRESTModule$1<typeof publicSearchContents>>;
5366
5474
  declare const bulkCreateContent: ReturnType<typeof createRESTModule$1<typeof publicBulkCreateContent>>;
5367
5475
  declare const bulkUpdateContent: ReturnType<typeof createRESTModule$1<typeof publicBulkUpdateContent>>;
5476
+ declare const bulkUpdateContentByKey: ReturnType<typeof createRESTModule$1<typeof publicBulkUpdateContentByKey>>;
5368
5477
  declare const bulkDeleteContent: ReturnType<typeof createRESTModule$1<typeof publicBulkDeleteContent>>;
5369
- declare const onContentCreated: ReturnType<typeof createEventModule$1<typeof publicOnContentCreated>>;
5370
- declare const onContentUpdated: ReturnType<typeof createEventModule$1<typeof publicOnContentUpdated>>;
5371
- declare const onContentDeleted: ReturnType<typeof createEventModule$1<typeof publicOnContentDeleted>>;
5372
5478
 
5373
5479
  type index_d$1_Aggregation = Aggregation;
5374
5480
  type index_d$1_AggregationData = AggregationData;
@@ -5405,8 +5511,14 @@ type index_d$1_BulkDeleteContentRequest = BulkDeleteContentRequest;
5405
5511
  type index_d$1_BulkDeleteContentResponse = BulkDeleteContentResponse;
5406
5512
  type index_d$1_BulkDeleteContentResponseBulkContentResult = BulkDeleteContentResponseBulkContentResult;
5407
5513
  type index_d$1_BulkDeleteContentResponseNonNullableFields = BulkDeleteContentResponseNonNullableFields;
5514
+ type index_d$1_BulkUpdateContentByKeyOptions = BulkUpdateContentByKeyOptions;
5515
+ type index_d$1_BulkUpdateContentByKeyRequest = BulkUpdateContentByKeyRequest;
5516
+ type index_d$1_BulkUpdateContentByKeyResponse = BulkUpdateContentByKeyResponse;
5517
+ type index_d$1_BulkUpdateContentByKeyResponseBulkContentResult = BulkUpdateContentByKeyResponseBulkContentResult;
5518
+ type index_d$1_BulkUpdateContentByKeyResponseNonNullableFields = BulkUpdateContentByKeyResponseNonNullableFields;
5408
5519
  type index_d$1_BulkUpdateContentOptions = BulkUpdateContentOptions;
5409
5520
  type index_d$1_BulkUpdateContentRequest = BulkUpdateContentRequest;
5521
+ type index_d$1_BulkUpdateContentRequestMaskedContent = BulkUpdateContentRequestMaskedContent;
5410
5522
  type index_d$1_BulkUpdateContentResponse = BulkUpdateContentResponse;
5411
5523
  type index_d$1_BulkUpdateContentResponseBulkContentResult = BulkUpdateContentResponseBulkContentResult;
5412
5524
  type index_d$1_BulkUpdateContentResponseNonNullableFields = BulkUpdateContentResponseNonNullableFields;
@@ -5418,12 +5530,11 @@ type index_d$1_CollapsibleListData = CollapsibleListData;
5418
5530
  type index_d$1_ColorData = ColorData;
5419
5531
  type index_d$1_Colors = Colors;
5420
5532
  type index_d$1_Content = Content;
5421
- type index_d$1_ContentCreatedEnvelope = ContentCreatedEnvelope;
5422
- type index_d$1_ContentDeletedEnvelope = ContentDeletedEnvelope;
5423
5533
  type index_d$1_ContentField = ContentField;
5424
5534
  type index_d$1_ContentFieldValueOneOf = ContentFieldValueOneOf;
5425
5535
  type index_d$1_ContentNonNullableFields = ContentNonNullableFields;
5426
- type index_d$1_ContentUpdatedEnvelope = ContentUpdatedEnvelope;
5536
+ type index_d$1_ContentsQueryBuilder = ContentsQueryBuilder;
5537
+ type index_d$1_ContentsQueryResult = ContentsQueryResult;
5427
5538
  type index_d$1_CreateContentRequest = CreateContentRequest;
5428
5539
  type index_d$1_CreateContentResponse = CreateContentResponse;
5429
5540
  type index_d$1_CreateContentResponseNonNullableFields = CreateContentResponseNonNullableFields;
@@ -5532,6 +5643,10 @@ type index_d$1_Paging = Paging;
5532
5643
  type index_d$1_PagingMetadataV2 = PagingMetadataV2;
5533
5644
  type index_d$1_ParagraphData = ParagraphData;
5534
5645
  type index_d$1_Permissions = Permissions;
5646
+ type index_d$1_PermissiveBulkUpdateContentRequest = PermissiveBulkUpdateContentRequest;
5647
+ type index_d$1_PermissiveBulkUpdateContentRequestMaskedContent = PermissiveBulkUpdateContentRequestMaskedContent;
5648
+ type index_d$1_PermissiveBulkUpdateContentResponse = PermissiveBulkUpdateContentResponse;
5649
+ type index_d$1_PermissiveBulkUpdateContentResponseBulkContentResult = PermissiveBulkUpdateContentResponseBulkContentResult;
5535
5650
  type index_d$1_PlaybackOptions = PlaybackOptions;
5536
5651
  type index_d$1_PluginContainerData = PluginContainerData;
5537
5652
  type index_d$1_PluginContainerDataAlignment = PluginContainerDataAlignment;
@@ -5602,6 +5717,10 @@ type index_d$1_ThumbnailsAlignment = ThumbnailsAlignment;
5602
5717
  declare const index_d$1_ThumbnailsAlignment: typeof ThumbnailsAlignment;
5603
5718
  type index_d$1_Type = Type;
5604
5719
  declare const index_d$1_Type: typeof Type;
5720
+ type index_d$1_UpdateContent = UpdateContent;
5721
+ type index_d$1_UpdateContentByKeyRequest = UpdateContentByKeyRequest;
5722
+ type index_d$1_UpdateContentByKeyResponse = UpdateContentByKeyResponse;
5723
+ type index_d$1_UpdateContentByKeyResponseNonNullableFields = UpdateContentByKeyResponseNonNullableFields;
5605
5724
  type index_d$1_UpdateContentRequest = UpdateContentRequest;
5606
5725
  type index_d$1_UpdateContentResponse = UpdateContentResponse;
5607
5726
  type index_d$1_UpdateContentResponseNonNullableFields = UpdateContentResponseNonNullableFields;
@@ -5630,17 +5749,16 @@ declare const index_d$1_WidthType: typeof WidthType;
5630
5749
  declare const index_d$1_bulkCreateContent: typeof bulkCreateContent;
5631
5750
  declare const index_d$1_bulkDeleteContent: typeof bulkDeleteContent;
5632
5751
  declare const index_d$1_bulkUpdateContent: typeof bulkUpdateContent;
5752
+ declare const index_d$1_bulkUpdateContentByKey: typeof bulkUpdateContentByKey;
5633
5753
  declare const index_d$1_createContent: typeof createContent;
5634
5754
  declare const index_d$1_deleteContent: typeof deleteContent;
5635
5755
  declare const index_d$1_getContent: typeof getContent;
5636
- declare const index_d$1_onContentCreated: typeof onContentCreated;
5637
- declare const index_d$1_onContentDeleted: typeof onContentDeleted;
5638
- declare const index_d$1_onContentUpdated: typeof onContentUpdated;
5639
5756
  declare const index_d$1_queryContents: typeof queryContents;
5640
5757
  declare const index_d$1_searchContents: typeof searchContents;
5641
5758
  declare const index_d$1_updateContent: typeof updateContent;
5759
+ declare const index_d$1_updateContentByKey: typeof updateContentByKey;
5642
5760
  declare namespace index_d$1 {
5643
- 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_BulkUpdateContentOptions as BulkUpdateContentOptions, type index_d$1_BulkUpdateContentRequest as BulkUpdateContentRequest, 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_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_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_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_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, index_d$1_queryContents as queryContents, index_d$1_searchContents as searchContents, index_d$1_updateContent as updateContent };
5761
+ 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 };
5644
5762
  }
5645
5763
 
5646
5764
  interface Schema {