@wix/multilingual 1.0.22 → 1.0.23

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/multilingual",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -21,7 +21,7 @@
21
21
  "@wix/multilingual_entity-mapper": "1.0.0",
22
22
  "@wix/multilingual_machine-translation": "1.0.20",
23
23
  "@wix/multilingual_site-translator": "1.0.7",
24
- "@wix/multilingual_translation-contents": "1.0.7",
24
+ "@wix/multilingual_translation-contents": "1.0.8",
25
25
  "@wix/multilingual_translation-schemas": "1.0.8"
26
26
  },
27
27
  "devDependencies": {
@@ -46,5 +46,5 @@
46
46
  "fqdn": ""
47
47
  }
48
48
  },
49
- "falconPackageHash": "57773943e04a041ffb129aa7f8f5547be8c9592eb0a293bb36b9c99c"
49
+ "falconPackageHash": "d7c9378bb81eb6ea6a1babb92d63fc79daf633ce7c8053a7dbb0f928"
50
50
  }
@@ -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,64 @@ 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;
5359
+ interface QueryContentsOptions {
5289
5360
  }
5290
- interface EventMetadata$1 extends BaseEventMetadata$1 {
5291
- /**
5292
- * Unique event ID.
5293
- * Allows clients to ignore duplicate webhooks.
5361
+ interface QueryCursorResult$1 {
5362
+ cursors: Cursors$1;
5363
+ hasNext: () => boolean;
5364
+ hasPrev: () => boolean;
5365
+ length: number;
5366
+ pageSize: number;
5367
+ }
5368
+ interface ContentsQueryResult extends QueryCursorResult$1 {
5369
+ items: Content[];
5370
+ query: ContentsQueryBuilder;
5371
+ next: () => Promise<ContentsQueryResult>;
5372
+ prev: () => Promise<ContentsQueryResult>;
5373
+ }
5374
+ interface ContentsQueryBuilder {
5375
+ /** @param propertyName - Property whose value is compared with `value`.
5376
+ * @param value - Value to compare against.
5377
+ * @documentationMaturity preview
5294
5378
  */
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
5379
+ eq: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus', value: any) => ContentsQueryBuilder;
5380
+ /** @param propertyName - Property whose value is compared with `value`.
5381
+ * @param value - Value to compare against.
5382
+ * @documentationMaturity preview
5299
5383
  */
5300
- entityFqdn?: string;
5301
- /**
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
5384
+ ne: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus', value: any) => ContentsQueryBuilder;
5385
+ /** @param propertyName - Property whose value is compared with `string`.
5386
+ * @param string - String to compare against. Case-insensitive.
5387
+ * @documentationMaturity preview
5305
5388
  */
5306
- slug?: string;
5307
- /** ID of the entity associated with the event. */
5308
- 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;
5311
- /**
5312
- * Whether the event was triggered as a result of a privacy regulation application
5313
- * (for example, GDPR).
5389
+ startsWith: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId', value: string) => ContentsQueryBuilder;
5390
+ /** @param propertyName - Property whose value is compared with `values`.
5391
+ * @param values - List of values to compare against.
5392
+ * @documentationMaturity preview
5314
5393
  */
5315
- triggeredByAnonymizeRequest?: boolean | null;
5316
- /** If present, indicates the action that triggered the event. */
5317
- originatedFrom?: string | null;
5318
- /**
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.
5394
+ hasSome: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus', value: any[]) => ContentsQueryBuilder;
5395
+ /** @documentationMaturity preview */
5396
+ in: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus', value: any) => ContentsQueryBuilder;
5397
+ /** @documentationMaturity preview */
5398
+ exists: (propertyName: '_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus', value: boolean) => ContentsQueryBuilder;
5399
+ /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
5400
+ * @documentationMaturity preview
5325
5401
  */
5326
- entityEventSequence?: string | null;
5327
- }
5328
- interface ContentCreatedEnvelope {
5329
- entity: Content;
5330
- metadata: EventMetadata$1;
5331
- }
5332
- interface ContentUpdatedEnvelope {
5333
- entity: Content;
5334
- metadata: EventMetadata$1;
5335
- }
5336
- interface ContentDeletedEnvelope {
5337
- entity: Content;
5338
- metadata: EventMetadata$1;
5339
- }
5340
- interface QueryContentsOptions {
5341
- /** WQL expression. */
5342
- query?: CursorQuery$1;
5402
+ ascending: (...propertyNames: Array<'_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus'>) => ContentsQueryBuilder;
5403
+ /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
5404
+ * @documentationMaturity preview
5405
+ */
5406
+ descending: (...propertyNames: Array<'_id' | 'schemaId' | 'entityId' | 'locale' | 'parentEntityId' | 'publishStatus'>) => ContentsQueryBuilder;
5407
+ /** @param limit - Number of items to return, which is also the `pageSize` of the results object.
5408
+ * @documentationMaturity preview
5409
+ */
5410
+ limit: (limit: number) => ContentsQueryBuilder;
5411
+ /** @param cursor - A pointer to specific record
5412
+ * @documentationMaturity preview
5413
+ */
5414
+ skipTo: (cursor: string) => ContentsQueryBuilder;
5415
+ /** @documentationMaturity preview */
5416
+ find: () => Promise<ContentsQueryResult>;
5343
5417
  }
5344
5418
  interface SearchContentsOptions {
5345
5419
  search?: CursorSearch;
@@ -5352,23 +5426,24 @@ interface BulkUpdateContentOptions {
5352
5426
  /** set to `true` if you wish to receive back the created contents in the response */
5353
5427
  returnEntity?: boolean;
5354
5428
  }
5429
+ interface BulkUpdateContentByKeyOptions {
5430
+ /** set to `true` if you wish to receive back the created contents in the response */
5431
+ returnEntity?: boolean;
5432
+ }
5355
5433
 
5356
5434
  declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
5357
5435
 
5358
- declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
5359
-
5360
5436
  declare const createContent: ReturnType<typeof createRESTModule$1<typeof publicCreateContent>>;
5361
5437
  declare const getContent: ReturnType<typeof createRESTModule$1<typeof publicGetContent>>;
5362
5438
  declare const updateContent: ReturnType<typeof createRESTModule$1<typeof publicUpdateContent>>;
5439
+ declare const updateContentByKey: ReturnType<typeof createRESTModule$1<typeof publicUpdateContentByKey>>;
5363
5440
  declare const deleteContent: ReturnType<typeof createRESTModule$1<typeof publicDeleteContent>>;
5364
5441
  declare const queryContents: ReturnType<typeof createRESTModule$1<typeof publicQueryContents>>;
5365
5442
  declare const searchContents: ReturnType<typeof createRESTModule$1<typeof publicSearchContents>>;
5366
5443
  declare const bulkCreateContent: ReturnType<typeof createRESTModule$1<typeof publicBulkCreateContent>>;
5367
5444
  declare const bulkUpdateContent: ReturnType<typeof createRESTModule$1<typeof publicBulkUpdateContent>>;
5445
+ declare const bulkUpdateContentByKey: ReturnType<typeof createRESTModule$1<typeof publicBulkUpdateContentByKey>>;
5368
5446
  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
5447
 
5373
5448
  type context$1_Aggregation = Aggregation;
5374
5449
  type context$1_AggregationData = AggregationData;
@@ -5405,8 +5480,14 @@ type context$1_BulkDeleteContentRequest = BulkDeleteContentRequest;
5405
5480
  type context$1_BulkDeleteContentResponse = BulkDeleteContentResponse;
5406
5481
  type context$1_BulkDeleteContentResponseBulkContentResult = BulkDeleteContentResponseBulkContentResult;
5407
5482
  type context$1_BulkDeleteContentResponseNonNullableFields = BulkDeleteContentResponseNonNullableFields;
5483
+ type context$1_BulkUpdateContentByKeyOptions = BulkUpdateContentByKeyOptions;
5484
+ type context$1_BulkUpdateContentByKeyRequest = BulkUpdateContentByKeyRequest;
5485
+ type context$1_BulkUpdateContentByKeyResponse = BulkUpdateContentByKeyResponse;
5486
+ type context$1_BulkUpdateContentByKeyResponseBulkContentResult = BulkUpdateContentByKeyResponseBulkContentResult;
5487
+ type context$1_BulkUpdateContentByKeyResponseNonNullableFields = BulkUpdateContentByKeyResponseNonNullableFields;
5408
5488
  type context$1_BulkUpdateContentOptions = BulkUpdateContentOptions;
5409
5489
  type context$1_BulkUpdateContentRequest = BulkUpdateContentRequest;
5490
+ type context$1_BulkUpdateContentRequestMaskedContent = BulkUpdateContentRequestMaskedContent;
5410
5491
  type context$1_BulkUpdateContentResponse = BulkUpdateContentResponse;
5411
5492
  type context$1_BulkUpdateContentResponseBulkContentResult = BulkUpdateContentResponseBulkContentResult;
5412
5493
  type context$1_BulkUpdateContentResponseNonNullableFields = BulkUpdateContentResponseNonNullableFields;
@@ -5418,12 +5499,11 @@ type context$1_CollapsibleListData = CollapsibleListData;
5418
5499
  type context$1_ColorData = ColorData;
5419
5500
  type context$1_Colors = Colors;
5420
5501
  type context$1_Content = Content;
5421
- type context$1_ContentCreatedEnvelope = ContentCreatedEnvelope;
5422
- type context$1_ContentDeletedEnvelope = ContentDeletedEnvelope;
5423
5502
  type context$1_ContentField = ContentField;
5424
5503
  type context$1_ContentFieldValueOneOf = ContentFieldValueOneOf;
5425
5504
  type context$1_ContentNonNullableFields = ContentNonNullableFields;
5426
- type context$1_ContentUpdatedEnvelope = ContentUpdatedEnvelope;
5505
+ type context$1_ContentsQueryBuilder = ContentsQueryBuilder;
5506
+ type context$1_ContentsQueryResult = ContentsQueryResult;
5427
5507
  type context$1_CreateContentRequest = CreateContentRequest;
5428
5508
  type context$1_CreateContentResponse = CreateContentResponse;
5429
5509
  type context$1_CreateContentResponseNonNullableFields = CreateContentResponseNonNullableFields;
@@ -5532,6 +5612,10 @@ type context$1_Paging = Paging;
5532
5612
  type context$1_PagingMetadataV2 = PagingMetadataV2;
5533
5613
  type context$1_ParagraphData = ParagraphData;
5534
5614
  type context$1_Permissions = Permissions;
5615
+ type context$1_PermissiveBulkUpdateContentRequest = PermissiveBulkUpdateContentRequest;
5616
+ type context$1_PermissiveBulkUpdateContentRequestMaskedContent = PermissiveBulkUpdateContentRequestMaskedContent;
5617
+ type context$1_PermissiveBulkUpdateContentResponse = PermissiveBulkUpdateContentResponse;
5618
+ type context$1_PermissiveBulkUpdateContentResponseBulkContentResult = PermissiveBulkUpdateContentResponseBulkContentResult;
5535
5619
  type context$1_PlaybackOptions = PlaybackOptions;
5536
5620
  type context$1_PluginContainerData = PluginContainerData;
5537
5621
  type context$1_PluginContainerDataAlignment = PluginContainerDataAlignment;
@@ -5602,6 +5686,9 @@ type context$1_ThumbnailsAlignment = ThumbnailsAlignment;
5602
5686
  declare const context$1_ThumbnailsAlignment: typeof ThumbnailsAlignment;
5603
5687
  type context$1_Type = Type;
5604
5688
  declare const context$1_Type: typeof Type;
5689
+ type context$1_UpdateContentByKeyRequest = UpdateContentByKeyRequest;
5690
+ type context$1_UpdateContentByKeyResponse = UpdateContentByKeyResponse;
5691
+ type context$1_UpdateContentByKeyResponseNonNullableFields = UpdateContentByKeyResponseNonNullableFields;
5605
5692
  type context$1_UpdateContentRequest = UpdateContentRequest;
5606
5693
  type context$1_UpdateContentResponse = UpdateContentResponse;
5607
5694
  type context$1_UpdateContentResponseNonNullableFields = UpdateContentResponseNonNullableFields;
@@ -5630,17 +5717,16 @@ declare const context$1_WidthType: typeof WidthType;
5630
5717
  declare const context$1_bulkCreateContent: typeof bulkCreateContent;
5631
5718
  declare const context$1_bulkDeleteContent: typeof bulkDeleteContent;
5632
5719
  declare const context$1_bulkUpdateContent: typeof bulkUpdateContent;
5720
+ declare const context$1_bulkUpdateContentByKey: typeof bulkUpdateContentByKey;
5633
5721
  declare const context$1_createContent: typeof createContent;
5634
5722
  declare const context$1_deleteContent: typeof deleteContent;
5635
5723
  declare const context$1_getContent: typeof getContent;
5636
- declare const context$1_onContentCreated: typeof onContentCreated;
5637
- declare const context$1_onContentDeleted: typeof onContentDeleted;
5638
- declare const context$1_onContentUpdated: typeof onContentUpdated;
5639
5724
  declare const context$1_queryContents: typeof queryContents;
5640
5725
  declare const context$1_searchContents: typeof searchContents;
5641
5726
  declare const context$1_updateContent: typeof updateContent;
5727
+ declare const context$1_updateContentByKey: typeof updateContentByKey;
5642
5728
  declare namespace context$1 {
5643
- export { type ActionEvent$1 as ActionEvent, type context$1_Aggregation as Aggregation, type context$1_AggregationData as AggregationData, type context$1_AggregationKindOneOf as AggregationKindOneOf, type context$1_AggregationResults as AggregationResults, type context$1_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$1_AggregationResultsScalarResult as AggregationResultsScalarResult, context$1_AggregationType as AggregationType, context$1_Alignment as Alignment, type context$1_AnchorData as AnchorData, type context$1_AppEmbedData as AppEmbedData, type context$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$1_AppType as AppType, type context$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type context$1_AudioData as AudioData, type context$1_Background as Background, type context$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$1_BackgroundType as BackgroundType, type BaseEventMetadata$1 as BaseEventMetadata, type context$1_BlockquoteData as BlockquoteData, type context$1_BookingData as BookingData, type context$1_Border as Border, type context$1_BorderColors as BorderColors, type context$1_BulkActionMetadata as BulkActionMetadata, type context$1_BulkContentResult as BulkContentResult, type context$1_BulkCreateContentOptions as BulkCreateContentOptions, type context$1_BulkCreateContentRequest as BulkCreateContentRequest, type context$1_BulkCreateContentResponse as BulkCreateContentResponse, type context$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type context$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type context$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type context$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type context$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type context$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type context$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type context$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type context$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type context$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type context$1_BulletedListData as BulletedListData, type context$1_ButtonData as ButtonData, type context$1_CellStyle as CellStyle, type context$1_CodeBlockData as CodeBlockData, type context$1_CollapsibleListData as CollapsibleListData, type context$1_ColorData as ColorData, type context$1_Colors as Colors, type context$1_Content as Content, type context$1_ContentCreatedEnvelope as ContentCreatedEnvelope, type context$1_ContentDeletedEnvelope as ContentDeletedEnvelope, type context$1_ContentField as ContentField, type context$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type context$1_ContentNonNullableFields as ContentNonNullableFields, type context$1_ContentUpdatedEnvelope as ContentUpdatedEnvelope, type context$1_CreateContentRequest as CreateContentRequest, type context$1_CreateContentResponse as CreateContentResponse, type context$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, context$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type context$1_CursorSearch as CursorSearch, type context$1_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type context$1_DateHistogramAggregation as DateHistogramAggregation, type context$1_DateHistogramResult as DateHistogramResult, type context$1_DateHistogramResults as DateHistogramResults, type context$1_Decoration as Decoration, type context$1_DecorationDataOneOf as DecorationDataOneOf, context$1_DecorationType as DecorationType, type context$1_DeleteContentRequest as DeleteContentRequest, type context$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type context$1_Design as Design, type context$1_Dimensions as Dimensions, context$1_Direction as Direction, type context$1_DividerData as DividerData, type context$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type context$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$1_EventData as EventData, type EventMetadata$1 as EventMetadata, type context$1_FileData as FileData, type context$1_FileSource as FileSource, type context$1_FileSourceDataOneOf as FileSourceDataOneOf, type context$1_FontSizeData as FontSizeData, context$1_FontType as FontType, type context$1_GIF as GIF, type context$1_GIFData as GIFData, type context$1_GalleryData as GalleryData, type context$1_GalleryOptions as GalleryOptions, type context$1_GetContentRequest as GetContentRequest, type context$1_GetContentResponse as GetContentResponse, type context$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type context$1_Gradient as Gradient, type context$1_GroupByAggregation as GroupByAggregation, type context$1_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$1_GroupByValueResults as GroupByValueResults, type context$1_HTMLData as HTMLData, type context$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$1_HeadingData as HeadingData, type context$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$1_Image as Image, type context$1_ImageData as ImageData, type context$1_IncludeMissingValuesOptions as IncludeMissingValuesOptions, context$1_InitialExpandedItems as InitialExpandedItems, context$1_Interval as Interval, type context$1_Item as Item, type context$1_ItemDataOneOf as ItemDataOneOf, type context$1_ItemMetadata as ItemMetadata, type context$1_ItemStyle as ItemStyle, type context$1_Layout as Layout, context$1_LayoutType as LayoutType, context$1_LineStyle as LineStyle, type context$1_Link as Link, type context$1_LinkData as LinkData, type context$1_LinkDataOneOf as LinkDataOneOf, type context$1_LinkPreviewData as LinkPreviewData, type context$1_ListValue as ListValue, type context$1_MapData as MapData, type context$1_MapSettings as MapSettings, context$1_MapType as MapType, type context$1_MaskedContent as MaskedContent, type context$1_Media as Media, type context$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type context$1_Metadata as Metadata, context$1_MissingValues as MissingValues, context$1_Mode as Mode, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$1_NestedAggregation as NestedAggregation, type context$1_NestedAggregationItem as NestedAggregationItem, type context$1_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$1_NestedAggregationResults as NestedAggregationResults, type context$1_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$1_NestedAggregationType as NestedAggregationType, type context$1_NestedResultValue as NestedResultValue, type context$1_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$1_NestedResults as NestedResults, type context$1_NestedValueAggregationResult as NestedValueAggregationResult, type context$1_Node as Node, type context$1_NodeDataOneOf as NodeDataOneOf, type context$1_NodeStyle as NodeStyle, context$1_NodeType as NodeType, context$1_NullValue as NullValue, type context$1_Oembed as Oembed, type context$1_Option as Option, type context$1_OptionDesign as OptionDesign, type context$1_OptionLayout as OptionLayout, type context$1_OrderedListData as OrderedListData, context$1_Orientation as Orientation, type context$1_PDFSettings as PDFSettings, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_ParagraphData as ParagraphData, type context$1_Permissions as Permissions, type context$1_PlaybackOptions as PlaybackOptions, type context$1_PluginContainerData as PluginContainerData, context$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$1_PluginContainerDataWidth as PluginContainerDataWidth, type context$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$1_Poll as Poll, type context$1_PollData as PollData, type context$1_PollDataLayout as PollDataLayout, type context$1_PollDesign as PollDesign, type context$1_PollLayout as PollLayout, context$1_PollLayoutDirection as PollLayoutDirection, context$1_PollLayoutType as PollLayoutType, context$1_PublishStatus as PublishStatus, type context$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type context$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type context$1_QueryContentsOptions as QueryContentsOptions, type context$1_QueryContentsRequest as QueryContentsRequest, type context$1_QueryContentsResponse as QueryContentsResponse, type context$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_RangeAggregation as RangeAggregation, type context$1_RangeAggregationResult as RangeAggregationResult, type context$1_RangeBucket as RangeBucket, type context$1_RangeResult as RangeResult, type context$1_RangeResults as RangeResults, type context$1_Rel as Rel, type context$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type context$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type context$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type context$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type context$1_Results as Results, type context$1_RichContent as RichContent, type context$1_ScalarAggregation as ScalarAggregation, type context$1_ScalarResult as ScalarResult, context$1_ScalarType as ScalarType, type context$1_SearchContentsOptions as SearchContentsOptions, type context$1_SearchContentsRequest as SearchContentsRequest, type context$1_SearchContentsResponse as SearchContentsResponse, type context$1_SearchContentsResponseNonNullableFields as SearchContentsResponseNonNullableFields, type context$1_SearchDetails as SearchDetails, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type context$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, context$1_SortDirection as SortDirection, SortOrder$1 as SortOrder, context$1_SortType as SortType, type Sorting$1 as Sorting, context$1_Source as Source, type context$1_Spoiler as Spoiler, type context$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$1_Styles as Styles, type context$1_TableCellData as TableCellData, type context$1_TableData as TableData, context$1_Target as Target, context$1_TextAlignment as TextAlignment, type context$1_TextData as TextData, type context$1_TextNodeStyle as TextNodeStyle, type context$1_TextStyle as TextStyle, type context$1_Thumbnails as Thumbnails, context$1_ThumbnailsAlignment as ThumbnailsAlignment, context$1_Type as Type, type context$1_UpdateContentRequest as UpdateContentRequest, type context$1_UpdateContentResponse as UpdateContentResponse, type context$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, context$1_UpdaterIdentity as UpdaterIdentity, type context$1_ValueAggregation as ValueAggregation, type context$1_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$1_ValueAggregationResult as ValueAggregationResult, type context$1_ValueResult as ValueResult, type context$1_ValueResults as ValueResults, context$1_VerticalAlignment as VerticalAlignment, type context$1_Video as Video, type context$1_VideoData as VideoData, type context$1_VideoResolution as VideoResolution, context$1_ViewMode as ViewMode, context$1_ViewRole as ViewRole, context$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, context$1_Width as Width, context$1_WidthType as WidthType, context$1_bulkCreateContent as bulkCreateContent, context$1_bulkDeleteContent as bulkDeleteContent, context$1_bulkUpdateContent as bulkUpdateContent, context$1_createContent as createContent, context$1_deleteContent as deleteContent, context$1_getContent as getContent, context$1_onContentCreated as onContentCreated, context$1_onContentDeleted as onContentDeleted, context$1_onContentUpdated as onContentUpdated, context$1_queryContents as queryContents, context$1_searchContents as searchContents, context$1_updateContent as updateContent };
5729
+ export { type ActionEvent$1 as ActionEvent, type context$1_Aggregation as Aggregation, type context$1_AggregationData as AggregationData, type context$1_AggregationKindOneOf as AggregationKindOneOf, type context$1_AggregationResults as AggregationResults, type context$1_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type context$1_AggregationResultsScalarResult as AggregationResultsScalarResult, context$1_AggregationType as AggregationType, context$1_Alignment as Alignment, type context$1_AnchorData as AnchorData, type context$1_AppEmbedData as AppEmbedData, type context$1_AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOf, context$1_AppType as AppType, type context$1_ApplicationError as ApplicationError, type Asset$1 as Asset, type context$1_AudioData as AudioData, type context$1_Background as Background, type context$1_BackgroundBackgroundOneOf as BackgroundBackgroundOneOf, context$1_BackgroundType as BackgroundType, type context$1_BlockquoteData as BlockquoteData, type context$1_BookingData as BookingData, type context$1_Border as Border, type context$1_BorderColors as BorderColors, type context$1_BulkActionMetadata as BulkActionMetadata, type context$1_BulkContentResult as BulkContentResult, type context$1_BulkCreateContentOptions as BulkCreateContentOptions, type context$1_BulkCreateContentRequest as BulkCreateContentRequest, type context$1_BulkCreateContentResponse as BulkCreateContentResponse, type context$1_BulkCreateContentResponseNonNullableFields as BulkCreateContentResponseNonNullableFields, type context$1_BulkDeleteContentRequest as BulkDeleteContentRequest, type context$1_BulkDeleteContentResponse as BulkDeleteContentResponse, type context$1_BulkDeleteContentResponseBulkContentResult as BulkDeleteContentResponseBulkContentResult, type context$1_BulkDeleteContentResponseNonNullableFields as BulkDeleteContentResponseNonNullableFields, type context$1_BulkUpdateContentByKeyOptions as BulkUpdateContentByKeyOptions, type context$1_BulkUpdateContentByKeyRequest as BulkUpdateContentByKeyRequest, type context$1_BulkUpdateContentByKeyResponse as BulkUpdateContentByKeyResponse, type context$1_BulkUpdateContentByKeyResponseBulkContentResult as BulkUpdateContentByKeyResponseBulkContentResult, type context$1_BulkUpdateContentByKeyResponseNonNullableFields as BulkUpdateContentByKeyResponseNonNullableFields, type context$1_BulkUpdateContentOptions as BulkUpdateContentOptions, type context$1_BulkUpdateContentRequest as BulkUpdateContentRequest, type context$1_BulkUpdateContentRequestMaskedContent as BulkUpdateContentRequestMaskedContent, type context$1_BulkUpdateContentResponse as BulkUpdateContentResponse, type context$1_BulkUpdateContentResponseBulkContentResult as BulkUpdateContentResponseBulkContentResult, type context$1_BulkUpdateContentResponseNonNullableFields as BulkUpdateContentResponseNonNullableFields, type context$1_BulletedListData as BulletedListData, type context$1_ButtonData as ButtonData, type context$1_CellStyle as CellStyle, type context$1_CodeBlockData as CodeBlockData, type context$1_CollapsibleListData as CollapsibleListData, type context$1_ColorData as ColorData, type context$1_Colors as Colors, type context$1_Content as Content, type context$1_ContentField as ContentField, type context$1_ContentFieldValueOneOf as ContentFieldValueOneOf, type context$1_ContentNonNullableFields as ContentNonNullableFields, type context$1_ContentsQueryBuilder as ContentsQueryBuilder, type context$1_ContentsQueryResult as ContentsQueryResult, type context$1_CreateContentRequest as CreateContentRequest, type context$1_CreateContentResponse as CreateContentResponse, type context$1_CreateContentResponseNonNullableFields as CreateContentResponseNonNullableFields, context$1_Crop as Crop, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type context$1_CursorSearch as CursorSearch, type context$1_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type context$1_DateHistogramAggregation as DateHistogramAggregation, type context$1_DateHistogramResult as DateHistogramResult, type context$1_DateHistogramResults as DateHistogramResults, type context$1_Decoration as Decoration, type context$1_DecorationDataOneOf as DecorationDataOneOf, context$1_DecorationType as DecorationType, type context$1_DeleteContentRequest as DeleteContentRequest, type context$1_DeleteContentResponse as DeleteContentResponse, type DeleteContext$1 as DeleteContext, DeleteStatus$1 as DeleteStatus, type context$1_Design as Design, type context$1_Dimensions as Dimensions, context$1_Direction as Direction, type context$1_DividerData as DividerData, type context$1_DocumentStyle as DocumentStyle, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type context$1_EmbedData as EmbedData, type Empty$1 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$1_EventData as EventData, type context$1_FileData as FileData, type context$1_FileSource as FileSource, type context$1_FileSourceDataOneOf as FileSourceDataOneOf, type context$1_FontSizeData as FontSizeData, context$1_FontType as FontType, type context$1_GIF as GIF, type context$1_GIFData as GIFData, type context$1_GalleryData as GalleryData, type context$1_GalleryOptions as GalleryOptions, type context$1_GetContentRequest as GetContentRequest, type context$1_GetContentResponse as GetContentResponse, type context$1_GetContentResponseNonNullableFields as GetContentResponseNonNullableFields, type context$1_Gradient as Gradient, type context$1_GroupByAggregation as GroupByAggregation, type context$1_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type context$1_GroupByValueResults as GroupByValueResults, type context$1_HTMLData as HTMLData, type context$1_HTMLDataDataOneOf as HTMLDataDataOneOf, type context$1_HeadingData as HeadingData, type context$1_Height as Height, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$1_Image as Image, type context$1_ImageData as ImageData, type context$1_IncludeMissingValuesOptions as IncludeMissingValuesOptions, context$1_InitialExpandedItems as InitialExpandedItems, context$1_Interval as Interval, type context$1_Item as Item, type context$1_ItemDataOneOf as ItemDataOneOf, type context$1_ItemMetadata as ItemMetadata, type context$1_ItemStyle as ItemStyle, type context$1_Layout as Layout, context$1_LayoutType as LayoutType, context$1_LineStyle as LineStyle, type context$1_Link as Link, type context$1_LinkData as LinkData, type context$1_LinkDataOneOf as LinkDataOneOf, type context$1_LinkPreviewData as LinkPreviewData, type context$1_ListValue as ListValue, type context$1_MapData as MapData, type context$1_MapSettings as MapSettings, context$1_MapType as MapType, type context$1_MaskedContent as MaskedContent, type context$1_Media as Media, type context$1_MentionData as MentionData, type MessageEnvelope$1 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type context$1_Metadata as Metadata, context$1_MissingValues as MissingValues, context$1_Mode as Mode, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$1_NestedAggregation as NestedAggregation, type context$1_NestedAggregationItem as NestedAggregationItem, type context$1_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type context$1_NestedAggregationResults as NestedAggregationResults, type context$1_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, context$1_NestedAggregationType as NestedAggregationType, type context$1_NestedResultValue as NestedResultValue, type context$1_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$1_NestedResults as NestedResults, type context$1_NestedValueAggregationResult as NestedValueAggregationResult, type context$1_Node as Node, type context$1_NodeDataOneOf as NodeDataOneOf, type context$1_NodeStyle as NodeStyle, context$1_NodeType as NodeType, context$1_NullValue as NullValue, type context$1_Oembed as Oembed, type context$1_Option as Option, type context$1_OptionDesign as OptionDesign, type context$1_OptionLayout as OptionLayout, type context$1_OrderedListData as OrderedListData, context$1_Orientation as Orientation, type context$1_PDFSettings as PDFSettings, type context$1_Paging as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_ParagraphData as ParagraphData, type context$1_Permissions as Permissions, type context$1_PermissiveBulkUpdateContentRequest as PermissiveBulkUpdateContentRequest, type context$1_PermissiveBulkUpdateContentRequestMaskedContent as PermissiveBulkUpdateContentRequestMaskedContent, type context$1_PermissiveBulkUpdateContentResponse as PermissiveBulkUpdateContentResponse, type context$1_PermissiveBulkUpdateContentResponseBulkContentResult as PermissiveBulkUpdateContentResponseBulkContentResult, type context$1_PlaybackOptions as PlaybackOptions, type context$1_PluginContainerData as PluginContainerData, context$1_PluginContainerDataAlignment as PluginContainerDataAlignment, type context$1_PluginContainerDataWidth as PluginContainerDataWidth, type context$1_PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOf, type context$1_Poll as Poll, type context$1_PollData as PollData, type context$1_PollDataLayout as PollDataLayout, type context$1_PollDesign as PollDesign, type context$1_PollLayout as PollLayout, context$1_PollLayoutDirection as PollLayoutDirection, context$1_PollLayoutType as PollLayoutType, context$1_PublishStatus as PublishStatus, type context$1_QueryContentsLegacyRequest as QueryContentsLegacyRequest, type context$1_QueryContentsLegacyResponse as QueryContentsLegacyResponse, type context$1_QueryContentsOptions as QueryContentsOptions, type context$1_QueryContentsRequest as QueryContentsRequest, type context$1_QueryContentsResponse as QueryContentsResponse, type context$1_QueryContentsResponseNonNullableFields as QueryContentsResponseNonNullableFields, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_RangeAggregation as RangeAggregation, type context$1_RangeAggregationResult as RangeAggregationResult, type context$1_RangeBucket as RangeBucket, type context$1_RangeResult as RangeResult, type context$1_RangeResults as RangeResults, type context$1_Rel as Rel, type context$1_RemoveContentsByFilterRequest as RemoveContentsByFilterRequest, type context$1_RemoveContentsByFilterResponse as RemoveContentsByFilterResponse, type context$1_RepublishContentByFilterRequest as RepublishContentByFilterRequest, type context$1_RepublishContentByFilterResponse as RepublishContentByFilterResponse, type RestoreInfo$1 as RestoreInfo, type context$1_Results as Results, type context$1_RichContent as RichContent, type context$1_ScalarAggregation as ScalarAggregation, type context$1_ScalarResult as ScalarResult, context$1_ScalarType as ScalarType, type context$1_SearchContentsOptions as SearchContentsOptions, type context$1_SearchContentsRequest as SearchContentsRequest, type context$1_SearchContentsResponse as SearchContentsResponse, type context$1_SearchContentsResponseNonNullableFields as SearchContentsResponseNonNullableFields, type context$1_SearchDetails as SearchDetails, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, type context$1_Settings as Settings, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, context$1_SortDirection as SortDirection, SortOrder$1 as SortOrder, context$1_SortType as SortType, type Sorting$1 as Sorting, context$1_Source as Source, type context$1_Spoiler as Spoiler, type context$1_SpoilerData as SpoilerData, State$1 as State, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$1_Styles as Styles, type context$1_TableCellData as TableCellData, type context$1_TableData as TableData, context$1_Target as Target, context$1_TextAlignment as TextAlignment, type context$1_TextData as TextData, type context$1_TextNodeStyle as TextNodeStyle, type context$1_TextStyle as TextStyle, type context$1_Thumbnails as Thumbnails, context$1_ThumbnailsAlignment as ThumbnailsAlignment, context$1_Type as Type, type context$1_UpdateContentByKeyRequest as UpdateContentByKeyRequest, type context$1_UpdateContentByKeyResponse as UpdateContentByKeyResponse, type context$1_UpdateContentByKeyResponseNonNullableFields as UpdateContentByKeyResponseNonNullableFields, type context$1_UpdateContentRequest as UpdateContentRequest, type context$1_UpdateContentResponse as UpdateContentResponse, type context$1_UpdateContentResponseNonNullableFields as UpdateContentResponseNonNullableFields, context$1_UpdaterIdentity as UpdaterIdentity, type context$1_ValueAggregation as ValueAggregation, type context$1_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type context$1_ValueAggregationResult as ValueAggregationResult, type context$1_ValueResult as ValueResult, type context$1_ValueResults as ValueResults, context$1_VerticalAlignment as VerticalAlignment, type context$1_Video as Video, type context$1_VideoData as VideoData, type context$1_VideoResolution as VideoResolution, context$1_ViewMode as ViewMode, context$1_ViewRole as ViewRole, context$1_VoteRole as VoteRole, WebhookIdentityType$1 as WebhookIdentityType, context$1_Width as Width, context$1_WidthType as WidthType, context$1_bulkCreateContent as bulkCreateContent, context$1_bulkDeleteContent as bulkDeleteContent, context$1_bulkUpdateContent as bulkUpdateContent, context$1_bulkUpdateContentByKey as bulkUpdateContentByKey, context$1_createContent as createContent, context$1_deleteContent as deleteContent, context$1_getContent as getContent, context$1_queryContents as queryContents, context$1_searchContents as searchContents, context$1_updateContent as updateContent, context$1_updateContentByKey as updateContentByKey };
5644
5730
  }
5645
5731
 
5646
5732
  interface Schema {