@wix/blog 1.0.117 → 1.0.119
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/build/cjs/src/blog-v3-category.types.d.ts +60 -32
- package/build/cjs/src/blog-v3-category.types.js.map +1 -1
- package/build/cjs/src/blog-v3-category.universal.d.ts +51 -34
- package/build/cjs/src/blog-v3-category.universal.js.map +1 -1
- package/build/cjs/src/blog-v3-post.public.d.ts +1 -1
- package/build/cjs/src/blog-v3-post.types.d.ts +107 -29
- package/build/cjs/src/blog-v3-post.types.js.map +1 -1
- package/build/cjs/src/blog-v3-post.universal.d.ts +69 -10
- package/build/cjs/src/blog-v3-post.universal.js.map +1 -1
- package/build/cjs/src/blog-v3-tag.http.d.ts +1 -1
- package/build/cjs/src/blog-v3-tag.http.js +1 -1
- package/build/cjs/src/blog-v3-tag.http.js.map +1 -1
- package/build/cjs/src/blog-v3-tag.types.d.ts +57 -25
- package/build/cjs/src/blog-v3-tag.types.js.map +1 -1
- package/build/cjs/src/blog-v3-tag.universal.d.ts +70 -30
- package/build/cjs/src/blog-v3-tag.universal.js +1 -1
- package/build/cjs/src/blog-v3-tag.universal.js.map +1 -1
- package/build/es/src/blog-v3-category.types.d.ts +60 -32
- package/build/es/src/blog-v3-category.types.js.map +1 -1
- package/build/es/src/blog-v3-category.universal.d.ts +51 -34
- package/build/es/src/blog-v3-category.universal.js.map +1 -1
- package/build/es/src/blog-v3-post.public.d.ts +1 -1
- package/build/es/src/blog-v3-post.types.d.ts +107 -29
- package/build/es/src/blog-v3-post.types.js.map +1 -1
- package/build/es/src/blog-v3-post.universal.d.ts +69 -10
- package/build/es/src/blog-v3-post.universal.js.map +1 -1
- package/build/es/src/blog-v3-tag.http.d.ts +1 -1
- package/build/es/src/blog-v3-tag.http.js +1 -1
- package/build/es/src/blog-v3-tag.http.js.map +1 -1
- package/build/es/src/blog-v3-tag.types.d.ts +57 -25
- package/build/es/src/blog-v3-tag.types.js.map +1 -1
- package/build/es/src/blog-v3-tag.universal.d.ts +70 -30
- package/build/es/src/blog-v3-tag.universal.js +1 -1
- package/build/es/src/blog-v3-tag.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -20,7 +20,12 @@ export interface Category {
|
|
|
20
20
|
description?: string | null;
|
|
21
21
|
/** Category title. */
|
|
22
22
|
title?: string;
|
|
23
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* __Deprecated.__ Use `coverImage` instead.
|
|
25
|
+
* This property will be removed on June 30, 2023.
|
|
26
|
+
*
|
|
27
|
+
* Category cover image or video.
|
|
28
|
+
*/
|
|
24
29
|
coverMedia?: CoverMedia;
|
|
25
30
|
/**
|
|
26
31
|
* Reserved for internal use.
|
|
@@ -28,19 +33,25 @@ export interface Category {
|
|
|
28
33
|
*/
|
|
29
34
|
oldRank?: number;
|
|
30
35
|
/**
|
|
36
|
+
* __Deprecated.__ Use `displayPosition` instead.
|
|
37
|
+
* This property will be removed on June 30, 2023.
|
|
38
|
+
*
|
|
31
39
|
* Category position in sequence.
|
|
32
|
-
* Reserved for internal use.
|
|
33
40
|
*/
|
|
34
41
|
rank?: number | null;
|
|
35
42
|
/**
|
|
36
|
-
* Category position in sequence. Categories with lower display position are displayed first. A position of `-1`
|
|
43
|
+
* Category position in sequence. Categories with a lower display position are displayed first. A position of `-1` appears at the end of the sequence.
|
|
37
44
|
*
|
|
38
45
|
* Default: `-1`
|
|
39
46
|
*/
|
|
40
47
|
displayPosition?: number | null;
|
|
41
48
|
/** ID of the category's translations. All translations of a single category will share the same `translationId`. */
|
|
42
49
|
translationId?: string | null;
|
|
43
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* Category language.
|
|
52
|
+
*
|
|
53
|
+
* Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
|
|
54
|
+
*/
|
|
44
55
|
language?: string;
|
|
45
56
|
/** Category slug. For example, 'category-slug'. */
|
|
46
57
|
slug?: string;
|
|
@@ -158,9 +169,9 @@ export interface CreateCategoryRequest {
|
|
|
158
169
|
/** Category info. */
|
|
159
170
|
category: Category;
|
|
160
171
|
/**
|
|
161
|
-
* List of category fields to be included if entities are present
|
|
162
|
-
* Base fieldset
|
|
163
|
-
*
|
|
172
|
+
* List of category fields to be included in the response if the entities are present.
|
|
173
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
174
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
164
175
|
*/
|
|
165
176
|
fieldsets?: Field[];
|
|
166
177
|
}
|
|
@@ -186,9 +197,9 @@ export interface BulkCreateCategoriesRequest {
|
|
|
186
197
|
/** Whether to return the full created category entities in the response. */
|
|
187
198
|
returnFullEntity?: boolean;
|
|
188
199
|
/**
|
|
189
|
-
* List of category fields to be included if entities are present
|
|
190
|
-
* Base fieldset
|
|
191
|
-
*
|
|
200
|
+
* List of category fields to be included in the response if the entities are present.
|
|
201
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
202
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
192
203
|
*/
|
|
193
204
|
fieldsets?: Field[];
|
|
194
205
|
}
|
|
@@ -233,9 +244,9 @@ export interface UpdateCategoryRequest {
|
|
|
233
244
|
/** Field mask of fields to update. */
|
|
234
245
|
fieldMask?: string[];
|
|
235
246
|
/**
|
|
236
|
-
* List of category fields to be included if entities are present
|
|
237
|
-
* Base fieldset
|
|
238
|
-
*
|
|
247
|
+
* List of category fields to be included in the response if the entities are present.
|
|
248
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
249
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
239
250
|
*/
|
|
240
251
|
fieldsets?: Field[];
|
|
241
252
|
}
|
|
@@ -247,9 +258,9 @@ export interface GetCategoryRequest {
|
|
|
247
258
|
/** Category ID. */
|
|
248
259
|
categoryId: string;
|
|
249
260
|
/**
|
|
250
|
-
* List of category fields to be included if entities are present
|
|
251
|
-
* Base fieldset
|
|
252
|
-
*
|
|
261
|
+
* List of category fields to be included in the response if the entities are present.
|
|
262
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
263
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
253
264
|
*/
|
|
254
265
|
fieldsets?: Field[];
|
|
255
266
|
}
|
|
@@ -261,9 +272,9 @@ export interface GetCategoryBySlugRequest {
|
|
|
261
272
|
/** Slug of the category to retrieve. */
|
|
262
273
|
slug: string;
|
|
263
274
|
/**
|
|
264
|
-
* List of category fields to be included if entities are present
|
|
265
|
-
* Base fieldset
|
|
266
|
-
*
|
|
275
|
+
* List of category fields to be included in the response if the entities are present.
|
|
276
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
277
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
267
278
|
*/
|
|
268
279
|
fieldsets?: Field[];
|
|
269
280
|
}
|
|
@@ -275,9 +286,9 @@ export interface ListCategoriesRequest {
|
|
|
275
286
|
/** Pagination options. */
|
|
276
287
|
paging?: BlogPaging;
|
|
277
288
|
/**
|
|
278
|
-
* List of category fields to be included if entities are present
|
|
279
|
-
* Base fieldset
|
|
280
|
-
*
|
|
289
|
+
* List of category fields to be included in the response if the entities are present.
|
|
290
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
291
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
281
292
|
*/
|
|
282
293
|
fieldsets?: Field[];
|
|
283
294
|
}
|
|
@@ -311,23 +322,35 @@ export interface MetaData {
|
|
|
311
322
|
cursor?: string | null;
|
|
312
323
|
}
|
|
313
324
|
export interface QueryCategoriesRequest {
|
|
314
|
-
/** Pagination options. */
|
|
315
|
-
paging?: BlogPaging;
|
|
316
325
|
/**
|
|
317
|
-
*
|
|
318
|
-
*
|
|
326
|
+
* __Deprecated.__ Use `query` instead.
|
|
327
|
+
* This parameter will be removed on June 30, 2023.
|
|
328
|
+
*
|
|
329
|
+
* Pagination options.
|
|
319
330
|
*/
|
|
331
|
+
paging?: BlogPaging;
|
|
332
|
+
/** For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/wix-blog/blog/filter-and-sort). */
|
|
320
333
|
filter?: Record<string, any> | null;
|
|
321
|
-
/**
|
|
334
|
+
/**
|
|
335
|
+
* __Deprecated.__ Use `query` instead.
|
|
336
|
+
* This parameter will be removed on June 3, 2023.
|
|
337
|
+
*
|
|
338
|
+
* Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/wix-blog/blog/filter-and-sort).
|
|
339
|
+
*/
|
|
322
340
|
sort?: Sorting[];
|
|
323
|
-
/**
|
|
341
|
+
/**
|
|
342
|
+
* __Deprecated.__ Use `fieldsets` instead.
|
|
343
|
+
* This parameter will be removed on June 30, 2023.
|
|
344
|
+
*
|
|
345
|
+
* List of category fields to be included in the response.
|
|
346
|
+
*/
|
|
324
347
|
fieldsToInclude?: Field[];
|
|
325
348
|
/** Query options. */
|
|
326
349
|
query?: PlatformQuery;
|
|
327
350
|
/**
|
|
328
|
-
* List of category fields to be included if entities are present
|
|
329
|
-
* Base fieldset
|
|
330
|
-
*
|
|
351
|
+
* List of category fields to be included in the response if the entities are present.
|
|
352
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
353
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
331
354
|
*/
|
|
332
355
|
fieldsets?: Field[];
|
|
333
356
|
}
|
|
@@ -389,7 +412,12 @@ export interface CursorPaging {
|
|
|
389
412
|
export interface QueryCategoriesResponse {
|
|
390
413
|
/** List of categories. */
|
|
391
414
|
categories?: Category[];
|
|
392
|
-
/**
|
|
415
|
+
/**
|
|
416
|
+
* __Deprecated.__ Use `pagingMetadata` instead.
|
|
417
|
+
* This property will be removed on June 30, 2023.
|
|
418
|
+
*
|
|
419
|
+
* Details on the paged set of results returned.
|
|
420
|
+
*/
|
|
393
421
|
metaData?: MetaData;
|
|
394
422
|
/** Details on the paged set of results returned. */
|
|
395
423
|
pagingMetadata?: PagingMetadataV2;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blog-v3-category.types.js","sourceRoot":"","sources":["../../../src/blog-v3-category.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"blog-v3-category.types.js","sourceRoot":"","sources":["../../../src/blog-v3-category.types.ts"],"names":[],"mappings":";;;AA2LA,IAAY,KAWX;AAXD,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX;;;OAGG;IACH,oCAA2B,CAAA;IAC3B,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EAXW,KAAK,GAAL,aAAK,KAAL,aAAK,QAWhB;AAkMD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAGpB"}
|
|
@@ -122,9 +122,9 @@ export interface CreateCategoryRequest {
|
|
|
122
122
|
/** Category info. */
|
|
123
123
|
category: Category;
|
|
124
124
|
/**
|
|
125
|
-
* List of category fields to be included if entities are present
|
|
126
|
-
* Base fieldset
|
|
127
|
-
*
|
|
125
|
+
* List of category fields to be included in the response if the entities are present.
|
|
126
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
127
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
128
128
|
*/
|
|
129
129
|
fieldsets?: Field[];
|
|
130
130
|
}
|
|
@@ -150,9 +150,9 @@ export interface BulkCreateCategoriesRequest {
|
|
|
150
150
|
/** Whether to return the full created category entities in the response. */
|
|
151
151
|
returnFullEntity?: boolean;
|
|
152
152
|
/**
|
|
153
|
-
* List of category fields to be included if entities are present
|
|
154
|
-
* Base fieldset
|
|
155
|
-
*
|
|
153
|
+
* List of category fields to be included in the response if the entities are present.
|
|
154
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
155
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
156
156
|
*/
|
|
157
157
|
fieldsets?: Field[];
|
|
158
158
|
}
|
|
@@ -197,9 +197,9 @@ export interface UpdateCategoryRequest {
|
|
|
197
197
|
/** Field mask of fields to update. */
|
|
198
198
|
fieldMask?: string[];
|
|
199
199
|
/**
|
|
200
|
-
* List of category fields to be included if entities are present
|
|
201
|
-
* Base fieldset
|
|
202
|
-
*
|
|
200
|
+
* List of category fields to be included in the response if the entities are present.
|
|
201
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
202
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
203
203
|
*/
|
|
204
204
|
fieldsets?: Field[];
|
|
205
205
|
}
|
|
@@ -211,9 +211,9 @@ export interface GetCategoryRequest {
|
|
|
211
211
|
/** Category ID. */
|
|
212
212
|
categoryId: string;
|
|
213
213
|
/**
|
|
214
|
-
* List of category fields to be included if entities are present
|
|
215
|
-
* Base fieldset
|
|
216
|
-
*
|
|
214
|
+
* List of category fields to be included in the response if the entities are present.
|
|
215
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
216
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
217
217
|
*/
|
|
218
218
|
fieldsets?: Field[];
|
|
219
219
|
}
|
|
@@ -225,9 +225,9 @@ export interface GetCategoryBySlugRequest {
|
|
|
225
225
|
/** Slug of the category to retrieve. */
|
|
226
226
|
slug: string;
|
|
227
227
|
/**
|
|
228
|
-
* List of category fields to be included if entities are present
|
|
229
|
-
* Base fieldset
|
|
230
|
-
*
|
|
228
|
+
* List of category fields to be included in the response if the entities are present.
|
|
229
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
230
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
231
231
|
*/
|
|
232
232
|
fieldsets?: Field[];
|
|
233
233
|
}
|
|
@@ -239,9 +239,9 @@ export interface ListCategoriesRequest {
|
|
|
239
239
|
/** Pagination options. */
|
|
240
240
|
paging?: BlogPaging;
|
|
241
241
|
/**
|
|
242
|
-
* List of category fields to be included if entities are present
|
|
243
|
-
* Base fieldset
|
|
244
|
-
*
|
|
242
|
+
* List of category fields to be included in the response if the entities are present.
|
|
243
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
244
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
245
245
|
*/
|
|
246
246
|
fieldsets?: Field[];
|
|
247
247
|
}
|
|
@@ -276,23 +276,35 @@ export interface MetaData {
|
|
|
276
276
|
cursor?: string | null;
|
|
277
277
|
}
|
|
278
278
|
export interface QueryCategoriesRequest {
|
|
279
|
-
/** Pagination options. */
|
|
280
|
-
paging?: BlogPaging;
|
|
281
279
|
/**
|
|
282
|
-
*
|
|
283
|
-
*
|
|
280
|
+
* __Deprecated.__ Use `query` instead.
|
|
281
|
+
* This parameter will be removed on June 30, 2023.
|
|
282
|
+
*
|
|
283
|
+
* Pagination options.
|
|
284
284
|
*/
|
|
285
|
+
paging?: BlogPaging;
|
|
286
|
+
/** For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/wix-blog/blog/filter-and-sort). */
|
|
285
287
|
filter?: Record<string, any> | null;
|
|
286
|
-
/**
|
|
288
|
+
/**
|
|
289
|
+
* __Deprecated.__ Use `query` instead.
|
|
290
|
+
* This parameter will be removed on June 3, 2023.
|
|
291
|
+
*
|
|
292
|
+
* Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/wix-blog/blog/filter-and-sort).
|
|
293
|
+
*/
|
|
287
294
|
sort?: Sorting[];
|
|
288
|
-
/**
|
|
295
|
+
/**
|
|
296
|
+
* __Deprecated.__ Use `fieldsets` instead.
|
|
297
|
+
* This parameter will be removed on June 30, 2023.
|
|
298
|
+
*
|
|
299
|
+
* List of category fields to be included in the response.
|
|
300
|
+
*/
|
|
289
301
|
fieldsToInclude?: Field[];
|
|
290
302
|
/** Query options. */
|
|
291
303
|
query?: PlatformQuery;
|
|
292
304
|
/**
|
|
293
|
-
* List of category fields to be included if entities are present
|
|
294
|
-
* Base fieldset
|
|
295
|
-
*
|
|
305
|
+
* List of category fields to be included in the response if the entities are present.
|
|
306
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
307
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
296
308
|
*/
|
|
297
309
|
fieldsets?: Field[];
|
|
298
310
|
}
|
|
@@ -354,7 +366,12 @@ export interface CursorPaging {
|
|
|
354
366
|
export interface QueryCategoriesResponse {
|
|
355
367
|
/** List of categories. */
|
|
356
368
|
categories?: Category[];
|
|
357
|
-
/**
|
|
369
|
+
/**
|
|
370
|
+
* __Deprecated.__ Use `pagingMetadata` instead.
|
|
371
|
+
* This property will be removed on June 30, 2023.
|
|
372
|
+
*
|
|
373
|
+
* Details on the paged set of results returned.
|
|
374
|
+
*/
|
|
358
375
|
metaData?: MetaData;
|
|
359
376
|
/** Details on the paged set of results returned. */
|
|
360
377
|
pagingMetadata?: PagingMetadataV2;
|
|
@@ -393,9 +410,9 @@ export interface DeleteCategoryResponse {
|
|
|
393
410
|
export declare function createCategory(category: Category, options?: CreateCategoryOptions): Promise<CreateCategoryResponse>;
|
|
394
411
|
export interface CreateCategoryOptions {
|
|
395
412
|
/**
|
|
396
|
-
* List of category fields to be included if entities are present
|
|
397
|
-
* Base fieldset
|
|
398
|
-
*
|
|
413
|
+
* List of category fields to be included in the response if the entities are present.
|
|
414
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
415
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
399
416
|
*/
|
|
400
417
|
fieldsets?: Field[];
|
|
401
418
|
}
|
|
@@ -474,9 +491,9 @@ export interface UpdateCategoryOptions {
|
|
|
474
491
|
/** Field mask of fields to update. */
|
|
475
492
|
fieldMask?: string[];
|
|
476
493
|
/**
|
|
477
|
-
* List of category fields to be included if entities are present
|
|
478
|
-
* Base fieldset
|
|
479
|
-
*
|
|
494
|
+
* List of category fields to be included in the response if the entities are present.
|
|
495
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
496
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
480
497
|
*/
|
|
481
498
|
fieldsets?: Field[];
|
|
482
499
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blog-v3-category.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAIiC;AAEjC,qFAAuE;AACvE,aAAa;AACb,4FAA6E;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAEY,QAAA,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AAqI5B,IAAY,KAWX;AAXD,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX;;;OAGG;IACH,oCAA2B,CAAA;IAC3B,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EAXW,KAAK,GAAL,aAAK,KAAL,aAAK,QAWhB;
|
|
1
|
+
{"version":3,"file":"blog-v3-category.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,4 +8,4 @@ export declare function getPostMetrics(httpClient: HttpClient): (postId: string)
|
|
|
8
8
|
export declare function queryPostCountStats(httpClient: HttpClient): (options?: QueryPostCountStatsOptions | undefined) => Promise<import("./blog-v3-post.universal").QueryPostCountStatsResponse>;
|
|
9
9
|
export declare function getTotalPosts(httpClient: HttpClient): (options?: GetTotalPostsOptions | undefined) => Promise<import("./blog-v3-post.universal").GetTotalPostsResponse>;
|
|
10
10
|
export { NodeType, WidthType, PluginContainerDataAlignment, Type, Target, TextAlignment, LineStyle, Width, Alignment, ViewMode, LayoutType, Orientation, Crop, ThumbnailsAlignment, Source, MapType, ViewRole, VoteRole, PollLayoutType, PollLayoutDirection, BackgroundType, DecorationType, FontType, AppType, InitialExpandedItems, Direction, VerticalAlignment, NullValue, ModerationStatusStatus, GetPostTemplatesSort, Origin, Status, Field, PostFieldField, GetPostsSort, SortOrder, QueryPublicationsCountStatsRequestOrder, Order, } from './blog-v3-post.universal';
|
|
11
|
-
export { Post, CoverMedia, CoverMediaMediaOneOf, PostCountInfo, Metrics, SeoSchema, Tag, Settings, RichContent, Node, NodeDataOneOf, NodeStyle, ButtonData, Border, Colors, PluginContainerData, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Spoiler, Height, Styles, Link, LinkDataOneOf, Rel, CodeBlockData, TextStyle, DividerData, FileData, FileSource, FileSourceDataOneOf, PDFSettings, GalleryData, V1Media, Image, Video, Item, ItemDataOneOf, GalleryOptions, Layout, ItemStyle, Thumbnails, GIFData, GIF, HeadingData, HTMLData, HTMLDataDataOneOf, ImageData, LinkPreviewData, MapData, MapSettings, ParagraphData, PollData, Permissions, Option, PollSettings, PollLayout, OptionLayout, Gradient, Background, BackgroundBackgroundOneOf, PollDesign, OptionDesign, Poll, PollDataLayout, Design, TextData, Decoration, DecorationDataOneOf, AnchorData, ColorData, LinkData, MentionData, FontSizeData, AppEmbedData, AppEmbedDataAppDataOneOf, BookingData, EventData, VideoData, EmbedData, Oembed, CollapsibleListData, TableData, Dimensions, TableCellData, CellStyle, BorderColors, ListValue, AudioData, OrderedListData, BulletedListData, BlockquoteData, Metadata, DocumentStyle, TextNodeStyle, ModerationDetails, Media, MediaMediaOneOf, WixMedia, VideoResolution, EmbedMedia, EmbedThumbnail, EmbedVideo, ListTemplatesRequest, BlogPaging, ListTemplatesResponse, MetaData, Category, GetTemplateRequest, GetTemplateResponse, CreateDraftPostFromTemplateRequest, CreateDraftPostFromTemplateResponse, DraftPost, DraftPostTranslation, GetTotalLikesPerMemberRequest, GetTotalLikesPerMemberResponse, PostLiked, PostLikedInitiatorOneOf, PostUnliked, PostUnlikedInitiatorOneOf, PostCountersUpdated, PostCountersUpdatedInitiatorOneOf, PostOwnerChanged, GetPostRequest, GetPostResponse, GetPostBySlugRequest, GetPostBySlugResponse, ListPostsRequest, ListPostsResponse, QueryPostsRequest, Sorting, PlatformQuery, PlatformQueryPagingMethodOneOf, Paging, CursorPaging, QueryPostsResponse, PagingMetadataV2, Cursors, GetPostMetricsRequest, GetPostMetricsResponse, BulkGetPostMetricsRequest, BulkGetPostMetricsResponse, BulkGetPostReactionsRequest, BulkGetPostReactionsResponse, Reactions, OldBlogMigratedEvent, ListMigratedPostsRequest, BlogCursorPaging, ListMigratedPostsResponse, PostMigrationMetaData, CursorMetaData, QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsResponse, PeriodPublicationsCount, QueryPostCountStatsRequest, QueryPostCountStatsResponse, PeriodPostCount, GetTotalPublicationsRequest, GetTotalPublicationsResponse, GetTotalPostsRequest, GetTotalPostsResponse, SendActionEventRequest, SendActionEventRequestActionOneOf, SendActionEventResponse, GetPostOptions, GetPostBySlugOptions, ListPostsOptions, PostsQueryResult, PostsQueryBuilder, QueryPostCountStatsOptions, GetTotalPostsOptions, } from './blog-v3-post.universal';
|
|
11
|
+
export { Post, CoverMedia, CoverMediaMediaOneOf, PostCountInfo, Metrics, SeoSchema, Tag, Settings, RichContent, Node, NodeDataOneOf, NodeStyle, ButtonData, Border, Colors, PluginContainerData, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Spoiler, Height, Styles, Link, LinkDataOneOf, Rel, CodeBlockData, TextStyle, DividerData, FileData, FileSource, FileSourceDataOneOf, PDFSettings, GalleryData, V1Media, Image, Video, Item, ItemDataOneOf, GalleryOptions, Layout, ItemStyle, Thumbnails, GIFData, GIF, HeadingData, HTMLData, HTMLDataDataOneOf, ImageData, LinkPreviewData, MapData, MapSettings, ParagraphData, PollData, Permissions, Option, PollSettings, PollLayout, OptionLayout, Gradient, Background, BackgroundBackgroundOneOf, PollDesign, OptionDesign, Poll, PollDataLayout, Design, TextData, Decoration, DecorationDataOneOf, AnchorData, ColorData, LinkData, MentionData, FontSizeData, AppEmbedData, AppEmbedDataAppDataOneOf, BookingData, EventData, VideoData, PlaybackOptions, EmbedData, Oembed, CollapsibleListData, TableData, Dimensions, TableCellData, CellStyle, BorderColors, ListValue, AudioData, OrderedListData, BulletedListData, BlockquoteData, Metadata, DocumentStyle, TextNodeStyle, ModerationDetails, Media, MediaMediaOneOf, WixMedia, VideoResolution, EmbedMedia, EmbedThumbnail, EmbedVideo, ListTemplatesRequest, BlogPaging, ListTemplatesResponse, MetaData, Category, GetTemplateRequest, GetTemplateResponse, CreateDraftPostFromTemplateRequest, CreateDraftPostFromTemplateResponse, DraftPost, DraftPostTranslation, GetTotalLikesPerMemberRequest, GetTotalLikesPerMemberResponse, PostLiked, PostLikedInitiatorOneOf, PostUnliked, PostUnlikedInitiatorOneOf, PostCountersUpdated, PostCountersUpdatedInitiatorOneOf, PostOwnerChanged, GetPostRequest, GetPostResponse, GetPostBySlugRequest, GetPostBySlugResponse, ListPostsRequest, ListPostsResponse, QueryPostsRequest, Sorting, PlatformQuery, PlatformQueryPagingMethodOneOf, Paging, CursorPaging, QueryPostsResponse, PagingMetadataV2, Cursors, GetPostMetricsRequest, GetPostMetricsResponse, BulkGetPostMetricsRequest, BulkGetPostMetricsResponse, BulkGetPostReactionsRequest, BulkGetPostReactionsResponse, Reactions, OldBlogMigratedEvent, ListMigratedPostsRequest, BlogCursorPaging, ListMigratedPostsResponse, PostMigrationMetaData, CursorMetaData, QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsResponse, PeriodPublicationsCount, QueryPostCountStatsRequest, QueryPostCountStatsResponse, PeriodPostCount, GetTotalPublicationsRequest, GetTotalPublicationsResponse, GetTotalPostsRequest, GetTotalPostsResponse, SendActionEventRequest, SendActionEventRequestActionOneOf, SendActionEventResponse, GetPostOptions, GetPostBySlugOptions, ListPostsOptions, PostsQueryResult, PostsQueryBuilder, QueryPostCountStatsOptions, GetTotalPostsOptions, } from './blog-v3-post.universal';
|