@wix/blog 1.0.321 → 1.0.322

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/blog",
3
- "version": "1.0.321",
3
+ "version": "1.0.322",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -26,7 +26,7 @@
26
26
  "@wix/blog_categories": "1.0.49",
27
27
  "@wix/blog_draft-posts": "1.0.50",
28
28
  "@wix/blog_posts": "1.0.56",
29
- "@wix/blog_tags": "1.0.50"
29
+ "@wix/blog_tags": "1.0.51"
30
30
  },
31
31
  "devDependencies": {
32
32
  "glob": "^10.4.1",
@@ -51,5 +51,5 @@
51
51
  "fqdn": ""
52
52
  }
53
53
  },
54
- "falconPackageHash": "5c1a2a44c3aac8242759c0d538bca4fa5bf8b0a26633e7b799cf3cb3"
54
+ "falconPackageHash": "88a84bc4aa66fef42b67350f04406c0ef0f1d76c1dd841542999e443"
55
55
  }
@@ -10084,60 +10084,6 @@ interface GetTagBySlugResponse {
10084
10084
  tag?: BlogTag;
10085
10085
  }
10086
10086
  interface QueryTagsRequest {
10087
- /**
10088
- * __Deprecated.__ Use `query` instead.
10089
- * This parameter will be removed on June 30, 2023.
10090
- *
10091
- * Filter object.
10092
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10093
- * @deprecated __Deprecated.__ Use `query` instead.
10094
- * This parameter will be removed on June 30, 2023.
10095
- *
10096
- * Filter object.
10097
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10098
- * @replacedBy query
10099
- * @targetRemovalDate 2024-06-30
10100
- */
10101
- filter?: Record<string, any> | null;
10102
- /**
10103
- * __Deprecated.__ Use `query` instead.
10104
- * This parameter will be removed on June 30, 2023.
10105
- *
10106
- * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10107
- * @deprecated __Deprecated.__ Use `query` instead.
10108
- * This parameter will be removed on June 30, 2023.
10109
- *
10110
- * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10111
- * @replacedBy query
10112
- * @targetRemovalDate 2024-06-30
10113
- */
10114
- sort?: Sorting[];
10115
- /**
10116
- * __Deprecated.__ Use `query` instead.
10117
- * This parameter will be removed on June 30, 2023.
10118
- *
10119
- * Pagination options.
10120
- * @deprecated __Deprecated.__ Use `query` instead.
10121
- * This parameter will be removed on June 30, 2023.
10122
- *
10123
- * Pagination options.
10124
- * @replacedBy query
10125
- * @targetRemovalDate 2024-06-30
10126
- */
10127
- paging?: Paging;
10128
- /**
10129
- * __Deprecated.__ Use `fieldsets` instead.
10130
- * This parameter will be removed on June 30, 2023.
10131
- *
10132
- * List of tag fields to be included in the response.
10133
- * @deprecated __Deprecated.__ Use `fieldsets` instead.
10134
- * This parameter will be removed on June 30, 2023.
10135
- *
10136
- * List of tag fields to be included in the response.
10137
- * @replacedBy fieldsets
10138
- * @targetRemovalDate 2024-06-30
10139
- */
10140
- fieldsToInclude?: Field[];
10141
10087
  /** Query options. */
10142
10088
  query?: PlatformQuery;
10143
10089
  /**
@@ -10147,26 +10093,6 @@ interface QueryTagsRequest {
10147
10093
  */
10148
10094
  fieldsets?: Field[];
10149
10095
  }
10150
- interface Sorting {
10151
- /** Name of the field to sort by. */
10152
- fieldName?: string;
10153
- /** Sort order. */
10154
- order?: SortOrder;
10155
- }
10156
- declare enum SortOrder {
10157
- ASC = "ASC",
10158
- DESC = "DESC"
10159
- }
10160
- interface Paging {
10161
- /** Number of items to load. */
10162
- limit?: number | null;
10163
- /** Number of items to skip in the current sort order. */
10164
- offset?: number | null;
10165
- }
10166
- interface TagsFieldSet {
10167
- /** Includes tag URL when TRUE. Defaults to FALSE. */
10168
- includeUrl?: boolean;
10169
- }
10170
10096
  interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
10171
10097
  /** Paging options to limit and skip the number of items. */
10172
10098
  paging?: Paging;
@@ -10194,6 +10120,22 @@ interface PlatformQueryPagingMethodOneOf {
10194
10120
  /** 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`. */
10195
10121
  cursorPaging?: CursorPaging;
10196
10122
  }
10123
+ interface Sorting {
10124
+ /** Name of the field to sort by. */
10125
+ fieldName?: string;
10126
+ /** Sort order. */
10127
+ order?: SortOrder;
10128
+ }
10129
+ declare enum SortOrder {
10130
+ ASC = "ASC",
10131
+ DESC = "DESC"
10132
+ }
10133
+ interface Paging {
10134
+ /** Number of items to load. */
10135
+ limit?: number | null;
10136
+ /** Number of items to skip in the current sort order. */
10137
+ offset?: number | null;
10138
+ }
10197
10139
  interface CursorPaging {
10198
10140
  /** Number of items to load. */
10199
10141
  limit?: number | null;
@@ -10551,47 +10493,6 @@ interface GetTagBySlugOptions {
10551
10493
  language?: string | null;
10552
10494
  }
10553
10495
  interface QueryTagsOptions {
10554
- /**
10555
- * @internal
10556
- * @deprecated __Deprecated.__ Use `query` instead.
10557
- * This parameter will be removed on June 30, 2023.
10558
- *
10559
- * Filter object.
10560
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10561
- * @replacedBy query
10562
- * @targetRemovalDate 2024-06-30
10563
- */
10564
- filter?: Record<string, any> | null | undefined;
10565
- /**
10566
- * @internal
10567
- * @deprecated __Deprecated.__ Use `query` instead.
10568
- * This parameter will be removed on June 30, 2023.
10569
- *
10570
- * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10571
- * @replacedBy query
10572
- * @targetRemovalDate 2024-06-30
10573
- */
10574
- sort?: Sorting[] | undefined;
10575
- /**
10576
- * @internal
10577
- * @deprecated __Deprecated.__ Use `query` instead.
10578
- * This parameter will be removed on June 30, 2023.
10579
- *
10580
- * Pagination options.
10581
- * @replacedBy query
10582
- * @targetRemovalDate 2024-06-30
10583
- */
10584
- paging?: Paging | undefined;
10585
- /**
10586
- * @internal
10587
- * @deprecated __Deprecated.__ Use `fieldsets` instead.
10588
- * This parameter will be removed on June 30, 2023.
10589
- *
10590
- * List of tag fields to be included in the response.
10591
- * @replacedBy fieldsets
10592
- * @targetRemovalDate 2024-06-30
10593
- */
10594
- fieldsToInclude?: Field[] | undefined;
10595
10496
  /** List of additional tag fields to be included in the response. By default, any fields not passed are not returned. */
10596
10497
  fieldsets?: Field[] | undefined;
10597
10498
  }
@@ -10834,7 +10735,6 @@ type context_TagCreatedEnvelope = TagCreatedEnvelope;
10834
10735
  type context_TagDeletedEnvelope = TagDeletedEnvelope;
10835
10736
  type context_TagLanguageCount = TagLanguageCount;
10836
10737
  type context_TagUpdatedEnvelope = TagUpdatedEnvelope;
10837
- type context_TagsFieldSet = TagsFieldSet;
10838
10738
  type context_TagsQueryBuilder = TagsQueryBuilder;
10839
10739
  type context_TagsQueryResult = TagsQueryResult;
10840
10740
  type context_UpdateTagRequest = UpdateTagRequest;
@@ -10854,7 +10754,7 @@ declare const context_onTagDeleted: typeof onTagDeleted;
10854
10754
  declare const context_onTagUpdated: typeof onTagUpdated;
10855
10755
  declare const context_queryTags: typeof queryTags;
10856
10756
  declare namespace context {
10857
- export { type context_ActionEvent as ActionEvent, type context_ApplicationError as ApplicationError, type context_BaseEventMetadata as BaseEventMetadata, type context_BlogTag as BlogTag, type context_BlogTagNonNullableFields as BlogTagNonNullableFields, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateTagsRequest as BulkCreateTagsRequest, type context_BulkCreateTagsResponse as BulkCreateTagsResponse, type context_BulkDeleteTagRequest as BulkDeleteTagRequest, type context_BulkDeleteTagResponse as BulkDeleteTagResponse, type context_BulkTagResult as BulkTagResult, type context_CreateTagOptions as CreateTagOptions, type context_CreateTagRequest as CreateTagRequest, type context_CreateTagResponse as CreateTagResponse, type context_CreateTagResponseNonNullableFields as CreateTagResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_DeleteTagRequest as DeleteTagRequest, type context_DeleteTagResponse as DeleteTagResponse, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, context_Field as Field, type context_GetOrCreateTagRequest as GetOrCreateTagRequest, type context_GetOrCreateTagResponse as GetOrCreateTagResponse, type context_GetTagByLabelOptions as GetTagByLabelOptions, type context_GetTagByLabelRequest as GetTagByLabelRequest, type context_GetTagByLabelResponse as GetTagByLabelResponse, type context_GetTagByLabelResponseNonNullableFields as GetTagByLabelResponseNonNullableFields, type context_GetTagBySlugOptions as GetTagBySlugOptions, type context_GetTagBySlugRequest as GetTagBySlugRequest, type context_GetTagBySlugResponse as GetTagBySlugResponse, type context_GetTagBySlugResponseNonNullableFields as GetTagBySlugResponseNonNullableFields, type context_GetTagOptions as GetTagOptions, type context_GetTagRequest as GetTagRequest, type context_GetTagResponse as GetTagResponse, type context_GetTagResponseNonNullableFields as GetTagResponseNonNullableFields, type context_GetTagsCountByLanguageRequest as GetTagsCountByLanguageRequest, type context_GetTagsCountByLanguageResponse as GetTagsCountByLanguageResponse, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_InitialTagsCopied as InitialTagsCopied, type context_ItemMetadata as ItemMetadata, type context_Keyword as Keyword, type context_ListTagsRequest as ListTagsRequest, type context_ListTagsRequestPagingMethodOneOf as ListTagsRequestPagingMethodOneOf, type context_ListTagsResponse as ListTagsResponse, type context_MessageEnvelope as MessageEnvelope, type context_MetaData as MetaData, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, type context_PlatformQuery as PlatformQuery, type context_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context_QueryTagsOptions as QueryTagsOptions, type context_QueryTagsRequest as QueryTagsRequest, type context_QueryTagsResponse as QueryTagsResponse, type context_QueryTagsResponseNonNullableFields as QueryTagsResponseNonNullableFields, type context_RestoreInfo as RestoreInfo, type context_SeoSchema as SeoSchema, type context_Settings as Settings, context_SortOrder as SortOrder, type context_Sorting as Sorting, type context_Tag as Tag, type context_TagCreatedEnvelope as TagCreatedEnvelope, type context_TagDeletedEnvelope as TagDeletedEnvelope, type context_TagLanguageCount as TagLanguageCount, type context_TagUpdatedEnvelope as TagUpdatedEnvelope, type context_TagsFieldSet as TagsFieldSet, type context_TagsQueryBuilder as TagsQueryBuilder, type context_TagsQueryResult as TagsQueryResult, type context_UpdateTagRequest as UpdateTagRequest, type context_UpdateTagResponse as UpdateTagResponse, context_WebhookIdentityType as WebhookIdentityType, type context__publicOnTagCreatedType as _publicOnTagCreatedType, type context__publicOnTagDeletedType as _publicOnTagDeletedType, type context__publicOnTagUpdatedType as _publicOnTagUpdatedType, context_createTag as createTag, context_deleteTag as deleteTag, context_getTag as getTag, context_getTagByLabel as getTagByLabel, context_getTagBySlug as getTagBySlug, context_onTagCreated as onTagCreated, context_onTagDeleted as onTagDeleted, context_onTagUpdated as onTagUpdated, onTagCreated$1 as publicOnTagCreated, onTagDeleted$1 as publicOnTagDeleted, onTagUpdated$1 as publicOnTagUpdated, context_queryTags as queryTags };
10757
+ export { type context_ActionEvent as ActionEvent, type context_ApplicationError as ApplicationError, type context_BaseEventMetadata as BaseEventMetadata, type context_BlogTag as BlogTag, type context_BlogTagNonNullableFields as BlogTagNonNullableFields, type context_BulkActionMetadata as BulkActionMetadata, type context_BulkCreateTagsRequest as BulkCreateTagsRequest, type context_BulkCreateTagsResponse as BulkCreateTagsResponse, type context_BulkDeleteTagRequest as BulkDeleteTagRequest, type context_BulkDeleteTagResponse as BulkDeleteTagResponse, type context_BulkTagResult as BulkTagResult, type context_CreateTagOptions as CreateTagOptions, type context_CreateTagRequest as CreateTagRequest, type context_CreateTagResponse as CreateTagResponse, type context_CreateTagResponseNonNullableFields as CreateTagResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_DeleteTagRequest as DeleteTagRequest, type context_DeleteTagResponse as DeleteTagResponse, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, context_Field as Field, type context_GetOrCreateTagRequest as GetOrCreateTagRequest, type context_GetOrCreateTagResponse as GetOrCreateTagResponse, type context_GetTagByLabelOptions as GetTagByLabelOptions, type context_GetTagByLabelRequest as GetTagByLabelRequest, type context_GetTagByLabelResponse as GetTagByLabelResponse, type context_GetTagByLabelResponseNonNullableFields as GetTagByLabelResponseNonNullableFields, type context_GetTagBySlugOptions as GetTagBySlugOptions, type context_GetTagBySlugRequest as GetTagBySlugRequest, type context_GetTagBySlugResponse as GetTagBySlugResponse, type context_GetTagBySlugResponseNonNullableFields as GetTagBySlugResponseNonNullableFields, type context_GetTagOptions as GetTagOptions, type context_GetTagRequest as GetTagRequest, type context_GetTagResponse as GetTagResponse, type context_GetTagResponseNonNullableFields as GetTagResponseNonNullableFields, type context_GetTagsCountByLanguageRequest as GetTagsCountByLanguageRequest, type context_GetTagsCountByLanguageResponse as GetTagsCountByLanguageResponse, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_InitialTagsCopied as InitialTagsCopied, type context_ItemMetadata as ItemMetadata, type context_Keyword as Keyword, type context_ListTagsRequest as ListTagsRequest, type context_ListTagsRequestPagingMethodOneOf as ListTagsRequestPagingMethodOneOf, type context_ListTagsResponse as ListTagsResponse, type context_MessageEnvelope as MessageEnvelope, type context_MetaData as MetaData, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, type context_PlatformQuery as PlatformQuery, type context_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context_QueryTagsOptions as QueryTagsOptions, type context_QueryTagsRequest as QueryTagsRequest, type context_QueryTagsResponse as QueryTagsResponse, type context_QueryTagsResponseNonNullableFields as QueryTagsResponseNonNullableFields, type context_RestoreInfo as RestoreInfo, type context_SeoSchema as SeoSchema, type context_Settings as Settings, context_SortOrder as SortOrder, type context_Sorting as Sorting, type context_Tag as Tag, type context_TagCreatedEnvelope as TagCreatedEnvelope, type context_TagDeletedEnvelope as TagDeletedEnvelope, type context_TagLanguageCount as TagLanguageCount, type context_TagUpdatedEnvelope as TagUpdatedEnvelope, type context_TagsQueryBuilder as TagsQueryBuilder, type context_TagsQueryResult as TagsQueryResult, type context_UpdateTagRequest as UpdateTagRequest, type context_UpdateTagResponse as UpdateTagResponse, context_WebhookIdentityType as WebhookIdentityType, type context__publicOnTagCreatedType as _publicOnTagCreatedType, type context__publicOnTagDeletedType as _publicOnTagDeletedType, type context__publicOnTagUpdatedType as _publicOnTagUpdatedType, context_createTag as createTag, context_deleteTag as deleteTag, context_getTag as getTag, context_getTagByLabel as getTagByLabel, context_getTagBySlug as getTagBySlug, context_onTagCreated as onTagCreated, context_onTagDeleted as onTagDeleted, context_onTagUpdated as onTagUpdated, onTagCreated$1 as publicOnTagCreated, onTagDeleted$1 as publicOnTagDeleted, onTagUpdated$1 as publicOnTagUpdated, context_queryTags as queryTags };
10858
10758
  }
10859
10759
 
10860
10760
  export { context$5 as blogCache, context$4 as blogImporter, context$3 as categories, context$2 as draftPosts, context$1 as posts, context as tags };
@@ -10084,60 +10084,6 @@ interface GetTagBySlugResponse {
10084
10084
  tag?: BlogTag;
10085
10085
  }
10086
10086
  interface QueryTagsRequest {
10087
- /**
10088
- * __Deprecated.__ Use `query` instead.
10089
- * This parameter will be removed on June 30, 2023.
10090
- *
10091
- * Filter object.
10092
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10093
- * @deprecated __Deprecated.__ Use `query` instead.
10094
- * This parameter will be removed on June 30, 2023.
10095
- *
10096
- * Filter object.
10097
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10098
- * @replacedBy query
10099
- * @targetRemovalDate 2024-06-30
10100
- */
10101
- filter?: Record<string, any> | null;
10102
- /**
10103
- * __Deprecated.__ Use `query` instead.
10104
- * This parameter will be removed on June 30, 2023.
10105
- *
10106
- * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10107
- * @deprecated __Deprecated.__ Use `query` instead.
10108
- * This parameter will be removed on June 30, 2023.
10109
- *
10110
- * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10111
- * @replacedBy query
10112
- * @targetRemovalDate 2024-06-30
10113
- */
10114
- sort?: Sorting[];
10115
- /**
10116
- * __Deprecated.__ Use `query` instead.
10117
- * This parameter will be removed on June 30, 2023.
10118
- *
10119
- * Pagination options.
10120
- * @deprecated __Deprecated.__ Use `query` instead.
10121
- * This parameter will be removed on June 30, 2023.
10122
- *
10123
- * Pagination options.
10124
- * @replacedBy query
10125
- * @targetRemovalDate 2024-06-30
10126
- */
10127
- paging?: Paging;
10128
- /**
10129
- * __Deprecated.__ Use `fieldsets` instead.
10130
- * This parameter will be removed on June 30, 2023.
10131
- *
10132
- * List of tag fields to be included in the response.
10133
- * @deprecated __Deprecated.__ Use `fieldsets` instead.
10134
- * This parameter will be removed on June 30, 2023.
10135
- *
10136
- * List of tag fields to be included in the response.
10137
- * @replacedBy fieldsets
10138
- * @targetRemovalDate 2024-06-30
10139
- */
10140
- fieldsToInclude?: Field[];
10141
10087
  /** Query options. */
10142
10088
  query?: PlatformQuery;
10143
10089
  /**
@@ -10147,26 +10093,6 @@ interface QueryTagsRequest {
10147
10093
  */
10148
10094
  fieldsets?: Field[];
10149
10095
  }
10150
- interface Sorting {
10151
- /** Name of the field to sort by. */
10152
- fieldName?: string;
10153
- /** Sort order. */
10154
- order?: SortOrder;
10155
- }
10156
- declare enum SortOrder {
10157
- ASC = "ASC",
10158
- DESC = "DESC"
10159
- }
10160
- interface Paging {
10161
- /** Number of items to load. */
10162
- limit?: number | null;
10163
- /** Number of items to skip in the current sort order. */
10164
- offset?: number | null;
10165
- }
10166
- interface TagsFieldSet {
10167
- /** Includes tag URL when TRUE. Defaults to FALSE. */
10168
- includeUrl?: boolean;
10169
- }
10170
10096
  interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
10171
10097
  /** Paging options to limit and skip the number of items. */
10172
10098
  paging?: Paging;
@@ -10194,6 +10120,22 @@ interface PlatformQueryPagingMethodOneOf {
10194
10120
  /** 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`. */
10195
10121
  cursorPaging?: CursorPaging;
10196
10122
  }
10123
+ interface Sorting {
10124
+ /** Name of the field to sort by. */
10125
+ fieldName?: string;
10126
+ /** Sort order. */
10127
+ order?: SortOrder;
10128
+ }
10129
+ declare enum SortOrder {
10130
+ ASC = "ASC",
10131
+ DESC = "DESC"
10132
+ }
10133
+ interface Paging {
10134
+ /** Number of items to load. */
10135
+ limit?: number | null;
10136
+ /** Number of items to skip in the current sort order. */
10137
+ offset?: number | null;
10138
+ }
10197
10139
  interface CursorPaging {
10198
10140
  /** Number of items to load. */
10199
10141
  limit?: number | null;
@@ -10551,47 +10493,6 @@ interface GetTagBySlugOptions {
10551
10493
  language?: string | null;
10552
10494
  }
10553
10495
  interface QueryTagsOptions {
10554
- /**
10555
- * @internal
10556
- * @deprecated __Deprecated.__ Use `query` instead.
10557
- * This parameter will be removed on June 30, 2023.
10558
- *
10559
- * Filter object.
10560
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10561
- * @replacedBy query
10562
- * @targetRemovalDate 2024-06-30
10563
- */
10564
- filter?: Record<string, any> | null | undefined;
10565
- /**
10566
- * @internal
10567
- * @deprecated __Deprecated.__ Use `query` instead.
10568
- * This parameter will be removed on June 30, 2023.
10569
- *
10570
- * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
10571
- * @replacedBy query
10572
- * @targetRemovalDate 2024-06-30
10573
- */
10574
- sort?: Sorting[] | undefined;
10575
- /**
10576
- * @internal
10577
- * @deprecated __Deprecated.__ Use `query` instead.
10578
- * This parameter will be removed on June 30, 2023.
10579
- *
10580
- * Pagination options.
10581
- * @replacedBy query
10582
- * @targetRemovalDate 2024-06-30
10583
- */
10584
- paging?: Paging | undefined;
10585
- /**
10586
- * @internal
10587
- * @deprecated __Deprecated.__ Use `fieldsets` instead.
10588
- * This parameter will be removed on June 30, 2023.
10589
- *
10590
- * List of tag fields to be included in the response.
10591
- * @replacedBy fieldsets
10592
- * @targetRemovalDate 2024-06-30
10593
- */
10594
- fieldsToInclude?: Field[] | undefined;
10595
10496
  /** List of additional tag fields to be included in the response. By default, any fields not passed are not returned. */
10596
10497
  fieldsets?: Field[] | undefined;
10597
10498
  }
@@ -10834,7 +10735,6 @@ type index_d_TagCreatedEnvelope = TagCreatedEnvelope;
10834
10735
  type index_d_TagDeletedEnvelope = TagDeletedEnvelope;
10835
10736
  type index_d_TagLanguageCount = TagLanguageCount;
10836
10737
  type index_d_TagUpdatedEnvelope = TagUpdatedEnvelope;
10837
- type index_d_TagsFieldSet = TagsFieldSet;
10838
10738
  type index_d_TagsQueryBuilder = TagsQueryBuilder;
10839
10739
  type index_d_TagsQueryResult = TagsQueryResult;
10840
10740
  type index_d_UpdateTagRequest = UpdateTagRequest;
@@ -10854,7 +10754,7 @@ declare const index_d_onTagDeleted: typeof onTagDeleted;
10854
10754
  declare const index_d_onTagUpdated: typeof onTagUpdated;
10855
10755
  declare const index_d_queryTags: typeof queryTags;
10856
10756
  declare namespace index_d {
10857
- export { type index_d_ActionEvent as ActionEvent, type index_d_ApplicationError as ApplicationError, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BlogTag as BlogTag, type index_d_BlogTagNonNullableFields as BlogTagNonNullableFields, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateTagsRequest as BulkCreateTagsRequest, type index_d_BulkCreateTagsResponse as BulkCreateTagsResponse, type index_d_BulkDeleteTagRequest as BulkDeleteTagRequest, type index_d_BulkDeleteTagResponse as BulkDeleteTagResponse, type index_d_BulkTagResult as BulkTagResult, type index_d_CreateTagOptions as CreateTagOptions, type index_d_CreateTagRequest as CreateTagRequest, type index_d_CreateTagResponse as CreateTagResponse, type index_d_CreateTagResponseNonNullableFields as CreateTagResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_DeleteTagRequest as DeleteTagRequest, type index_d_DeleteTagResponse as DeleteTagResponse, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, index_d_Field as Field, type index_d_GetOrCreateTagRequest as GetOrCreateTagRequest, type index_d_GetOrCreateTagResponse as GetOrCreateTagResponse, type index_d_GetTagByLabelOptions as GetTagByLabelOptions, type index_d_GetTagByLabelRequest as GetTagByLabelRequest, type index_d_GetTagByLabelResponse as GetTagByLabelResponse, type index_d_GetTagByLabelResponseNonNullableFields as GetTagByLabelResponseNonNullableFields, type index_d_GetTagBySlugOptions as GetTagBySlugOptions, type index_d_GetTagBySlugRequest as GetTagBySlugRequest, type index_d_GetTagBySlugResponse as GetTagBySlugResponse, type index_d_GetTagBySlugResponseNonNullableFields as GetTagBySlugResponseNonNullableFields, type index_d_GetTagOptions as GetTagOptions, type index_d_GetTagRequest as GetTagRequest, type index_d_GetTagResponse as GetTagResponse, type index_d_GetTagResponseNonNullableFields as GetTagResponseNonNullableFields, type index_d_GetTagsCountByLanguageRequest as GetTagsCountByLanguageRequest, type index_d_GetTagsCountByLanguageResponse as GetTagsCountByLanguageResponse, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_InitialTagsCopied as InitialTagsCopied, type index_d_ItemMetadata as ItemMetadata, type index_d_Keyword as Keyword, type index_d_ListTagsRequest as ListTagsRequest, type index_d_ListTagsRequestPagingMethodOneOf as ListTagsRequestPagingMethodOneOf, type index_d_ListTagsResponse as ListTagsResponse, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MetaData as MetaData, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_PlatformQuery as PlatformQuery, type index_d_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d_QueryTagsOptions as QueryTagsOptions, type index_d_QueryTagsRequest as QueryTagsRequest, type index_d_QueryTagsResponse as QueryTagsResponse, type index_d_QueryTagsResponseNonNullableFields as QueryTagsResponseNonNullableFields, type index_d_RestoreInfo as RestoreInfo, type index_d_SeoSchema as SeoSchema, type index_d_Settings as Settings, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, type index_d_Tag as Tag, type index_d_TagCreatedEnvelope as TagCreatedEnvelope, type index_d_TagDeletedEnvelope as TagDeletedEnvelope, type index_d_TagLanguageCount as TagLanguageCount, type index_d_TagUpdatedEnvelope as TagUpdatedEnvelope, type index_d_TagsFieldSet as TagsFieldSet, type index_d_TagsQueryBuilder as TagsQueryBuilder, type index_d_TagsQueryResult as TagsQueryResult, type index_d_UpdateTagRequest as UpdateTagRequest, type index_d_UpdateTagResponse as UpdateTagResponse, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicOnTagCreatedType as _publicOnTagCreatedType, type index_d__publicOnTagDeletedType as _publicOnTagDeletedType, type index_d__publicOnTagUpdatedType as _publicOnTagUpdatedType, index_d_createTag as createTag, index_d_deleteTag as deleteTag, index_d_getTag as getTag, index_d_getTagByLabel as getTagByLabel, index_d_getTagBySlug as getTagBySlug, index_d_onTagCreated as onTagCreated, index_d_onTagDeleted as onTagDeleted, index_d_onTagUpdated as onTagUpdated, onTagCreated$1 as publicOnTagCreated, onTagDeleted$1 as publicOnTagDeleted, onTagUpdated$1 as publicOnTagUpdated, index_d_queryTags as queryTags };
10757
+ export { type index_d_ActionEvent as ActionEvent, type index_d_ApplicationError as ApplicationError, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_BlogTag as BlogTag, type index_d_BlogTagNonNullableFields as BlogTagNonNullableFields, type index_d_BulkActionMetadata as BulkActionMetadata, type index_d_BulkCreateTagsRequest as BulkCreateTagsRequest, type index_d_BulkCreateTagsResponse as BulkCreateTagsResponse, type index_d_BulkDeleteTagRequest as BulkDeleteTagRequest, type index_d_BulkDeleteTagResponse as BulkDeleteTagResponse, type index_d_BulkTagResult as BulkTagResult, type index_d_CreateTagOptions as CreateTagOptions, type index_d_CreateTagRequest as CreateTagRequest, type index_d_CreateTagResponse as CreateTagResponse, type index_d_CreateTagResponseNonNullableFields as CreateTagResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_DeleteTagRequest as DeleteTagRequest, type index_d_DeleteTagResponse as DeleteTagResponse, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, index_d_Field as Field, type index_d_GetOrCreateTagRequest as GetOrCreateTagRequest, type index_d_GetOrCreateTagResponse as GetOrCreateTagResponse, type index_d_GetTagByLabelOptions as GetTagByLabelOptions, type index_d_GetTagByLabelRequest as GetTagByLabelRequest, type index_d_GetTagByLabelResponse as GetTagByLabelResponse, type index_d_GetTagByLabelResponseNonNullableFields as GetTagByLabelResponseNonNullableFields, type index_d_GetTagBySlugOptions as GetTagBySlugOptions, type index_d_GetTagBySlugRequest as GetTagBySlugRequest, type index_d_GetTagBySlugResponse as GetTagBySlugResponse, type index_d_GetTagBySlugResponseNonNullableFields as GetTagBySlugResponseNonNullableFields, type index_d_GetTagOptions as GetTagOptions, type index_d_GetTagRequest as GetTagRequest, type index_d_GetTagResponse as GetTagResponse, type index_d_GetTagResponseNonNullableFields as GetTagResponseNonNullableFields, type index_d_GetTagsCountByLanguageRequest as GetTagsCountByLanguageRequest, type index_d_GetTagsCountByLanguageResponse as GetTagsCountByLanguageResponse, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_InitialTagsCopied as InitialTagsCopied, type index_d_ItemMetadata as ItemMetadata, type index_d_Keyword as Keyword, type index_d_ListTagsRequest as ListTagsRequest, type index_d_ListTagsRequestPagingMethodOneOf as ListTagsRequestPagingMethodOneOf, type index_d_ListTagsResponse as ListTagsResponse, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MetaData as MetaData, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_PlatformQuery as PlatformQuery, type index_d_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d_QueryTagsOptions as QueryTagsOptions, type index_d_QueryTagsRequest as QueryTagsRequest, type index_d_QueryTagsResponse as QueryTagsResponse, type index_d_QueryTagsResponseNonNullableFields as QueryTagsResponseNonNullableFields, type index_d_RestoreInfo as RestoreInfo, type index_d_SeoSchema as SeoSchema, type index_d_Settings as Settings, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, type index_d_Tag as Tag, type index_d_TagCreatedEnvelope as TagCreatedEnvelope, type index_d_TagDeletedEnvelope as TagDeletedEnvelope, type index_d_TagLanguageCount as TagLanguageCount, type index_d_TagUpdatedEnvelope as TagUpdatedEnvelope, type index_d_TagsQueryBuilder as TagsQueryBuilder, type index_d_TagsQueryResult as TagsQueryResult, type index_d_UpdateTagRequest as UpdateTagRequest, type index_d_UpdateTagResponse as UpdateTagResponse, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicOnTagCreatedType as _publicOnTagCreatedType, type index_d__publicOnTagDeletedType as _publicOnTagDeletedType, type index_d__publicOnTagUpdatedType as _publicOnTagUpdatedType, index_d_createTag as createTag, index_d_deleteTag as deleteTag, index_d_getTag as getTag, index_d_getTagByLabel as getTagByLabel, index_d_getTagBySlug as getTagBySlug, index_d_onTagCreated as onTagCreated, index_d_onTagDeleted as onTagDeleted, index_d_onTagUpdated as onTagUpdated, onTagCreated$1 as publicOnTagCreated, onTagDeleted$1 as publicOnTagDeleted, onTagUpdated$1 as publicOnTagUpdated, index_d_queryTags as queryTags };
10858
10758
  }
10859
10759
 
10860
10760
  export { index_d$5 as blogCache, index_d$4 as blogImporter, index_d$3 as categories, index_d$2 as draftPosts, index_d$1 as posts, index_d as tags };
@@ -11466,60 +11466,6 @@ interface GetTagBySlugResponse$1 {
11466
11466
  tag?: BlogTag$1;
11467
11467
  }
11468
11468
  interface QueryTagsRequest$1 {
11469
- /**
11470
- * __Deprecated.__ Use `query` instead.
11471
- * This parameter will be removed on June 30, 2023.
11472
- *
11473
- * Filter object.
11474
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
11475
- * @deprecated __Deprecated.__ Use `query` instead.
11476
- * This parameter will be removed on June 30, 2023.
11477
- *
11478
- * Filter object.
11479
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
11480
- * @replacedBy query
11481
- * @targetRemovalDate 2024-06-30
11482
- */
11483
- filter?: Record<string, any> | null;
11484
- /**
11485
- * __Deprecated.__ Use `query` instead.
11486
- * This parameter will be removed on June 30, 2023.
11487
- *
11488
- * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
11489
- * @deprecated __Deprecated.__ Use `query` instead.
11490
- * This parameter will be removed on June 30, 2023.
11491
- *
11492
- * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
11493
- * @replacedBy query
11494
- * @targetRemovalDate 2024-06-30
11495
- */
11496
- sort?: Sorting$1[];
11497
- /**
11498
- * __Deprecated.__ Use `query` instead.
11499
- * This parameter will be removed on June 30, 2023.
11500
- *
11501
- * Pagination options.
11502
- * @deprecated __Deprecated.__ Use `query` instead.
11503
- * This parameter will be removed on June 30, 2023.
11504
- *
11505
- * Pagination options.
11506
- * @replacedBy query
11507
- * @targetRemovalDate 2024-06-30
11508
- */
11509
- paging?: Paging$1;
11510
- /**
11511
- * __Deprecated.__ Use `fieldsets` instead.
11512
- * This parameter will be removed on June 30, 2023.
11513
- *
11514
- * List of tag fields to be included in the response.
11515
- * @deprecated __Deprecated.__ Use `fieldsets` instead.
11516
- * This parameter will be removed on June 30, 2023.
11517
- *
11518
- * List of tag fields to be included in the response.
11519
- * @replacedBy fieldsets
11520
- * @targetRemovalDate 2024-06-30
11521
- */
11522
- fieldsToInclude?: Field$1[];
11523
11469
  /** Query options. */
11524
11470
  query?: PlatformQuery$1;
11525
11471
  /**
@@ -11529,22 +11475,6 @@ interface QueryTagsRequest$1 {
11529
11475
  */
11530
11476
  fieldsets?: Field$1[];
11531
11477
  }
11532
- interface Sorting$1 {
11533
- /** Name of the field to sort by. */
11534
- fieldName?: string;
11535
- /** Sort order. */
11536
- order?: SortOrder$1;
11537
- }
11538
- declare enum SortOrder$1 {
11539
- ASC = "ASC",
11540
- DESC = "DESC"
11541
- }
11542
- interface Paging$1 {
11543
- /** Number of items to load. */
11544
- limit?: number | null;
11545
- /** Number of items to skip in the current sort order. */
11546
- offset?: number | null;
11547
- }
11548
11478
  interface PlatformQuery$1 extends PlatformQueryPagingMethodOneOf$1 {
11549
11479
  /** Paging options to limit and skip the number of items. */
11550
11480
  paging?: Paging$1;
@@ -11572,6 +11502,22 @@ interface PlatformQueryPagingMethodOneOf$1 {
11572
11502
  /** 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`. */
11573
11503
  cursorPaging?: CursorPaging$1;
11574
11504
  }
11505
+ interface Sorting$1 {
11506
+ /** Name of the field to sort by. */
11507
+ fieldName?: string;
11508
+ /** Sort order. */
11509
+ order?: SortOrder$1;
11510
+ }
11511
+ declare enum SortOrder$1 {
11512
+ ASC = "ASC",
11513
+ DESC = "DESC"
11514
+ }
11515
+ interface Paging$1 {
11516
+ /** Number of items to load. */
11517
+ limit?: number | null;
11518
+ /** Number of items to skip in the current sort order. */
11519
+ offset?: number | null;
11520
+ }
11575
11521
  interface CursorPaging$1 {
11576
11522
  /** Number of items to load. */
11577
11523
  limit?: number | null;
@@ -11834,60 +11780,6 @@ interface GetTagBySlugResponse {
11834
11780
  tag?: BlogTag;
11835
11781
  }
11836
11782
  interface QueryTagsRequest {
11837
- /**
11838
- * __Deprecated.__ Use `query` instead.
11839
- * This parameter will be removed on June 30, 2023.
11840
- *
11841
- * Filter object.
11842
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
11843
- * @deprecated __Deprecated.__ Use `query` instead.
11844
- * This parameter will be removed on June 30, 2023.
11845
- *
11846
- * Filter object.
11847
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
11848
- * @replacedBy query
11849
- * @targetRemovalDate 2024-06-30
11850
- */
11851
- filter?: Record<string, any> | null;
11852
- /**
11853
- * __Deprecated.__ Use `query` instead.
11854
- * This parameter will be removed on June 30, 2023.
11855
- *
11856
- * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
11857
- * @deprecated __Deprecated.__ Use `query` instead.
11858
- * This parameter will be removed on June 30, 2023.
11859
- *
11860
- * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
11861
- * @replacedBy query
11862
- * @targetRemovalDate 2024-06-30
11863
- */
11864
- sort?: Sorting[];
11865
- /**
11866
- * __Deprecated.__ Use `query` instead.
11867
- * This parameter will be removed on June 30, 2023.
11868
- *
11869
- * Pagination options.
11870
- * @deprecated __Deprecated.__ Use `query` instead.
11871
- * This parameter will be removed on June 30, 2023.
11872
- *
11873
- * Pagination options.
11874
- * @replacedBy query
11875
- * @targetRemovalDate 2024-06-30
11876
- */
11877
- paging?: Paging;
11878
- /**
11879
- * __Deprecated.__ Use `fieldsets` instead.
11880
- * This parameter will be removed on June 30, 2023.
11881
- *
11882
- * List of tag fields to be included in the response.
11883
- * @deprecated __Deprecated.__ Use `fieldsets` instead.
11884
- * This parameter will be removed on June 30, 2023.
11885
- *
11886
- * List of tag fields to be included in the response.
11887
- * @replacedBy fieldsets
11888
- * @targetRemovalDate 2024-06-30
11889
- */
11890
- fieldsToInclude?: Field[];
11891
11783
  /** Query options. */
11892
11784
  query?: PlatformQuery;
11893
11785
  /**
@@ -11897,22 +11789,6 @@ interface QueryTagsRequest {
11897
11789
  */
11898
11790
  fieldsets?: Field[];
11899
11791
  }
11900
- interface Sorting {
11901
- /** Name of the field to sort by. */
11902
- fieldName?: string;
11903
- /** Sort order. */
11904
- order?: SortOrder;
11905
- }
11906
- declare enum SortOrder {
11907
- ASC = "ASC",
11908
- DESC = "DESC"
11909
- }
11910
- interface Paging {
11911
- /** Number of items to load. */
11912
- limit?: number | null;
11913
- /** Number of items to skip in the current sort order. */
11914
- offset?: number | null;
11915
- }
11916
11792
  interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
11917
11793
  /** Paging options to limit and skip the number of items. */
11918
11794
  paging?: Paging;
@@ -11940,6 +11816,22 @@ interface PlatformQueryPagingMethodOneOf {
11940
11816
  /** 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`. */
11941
11817
  cursorPaging?: CursorPaging;
11942
11818
  }
11819
+ interface Sorting {
11820
+ /** Name of the field to sort by. */
11821
+ fieldName?: string;
11822
+ /** Sort order. */
11823
+ order?: SortOrder;
11824
+ }
11825
+ declare enum SortOrder {
11826
+ ASC = "ASC",
11827
+ DESC = "DESC"
11828
+ }
11829
+ interface Paging {
11830
+ /** Number of items to load. */
11831
+ limit?: number | null;
11832
+ /** Number of items to skip in the current sort order. */
11833
+ offset?: number | null;
11834
+ }
11943
11835
  interface CursorPaging {
11944
11836
  /** Number of items to load. */
11945
11837
  limit?: number | null;