@wix/auto_sdk_blog_posts 1.0.107 → 1.0.109
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/index.d.ts +1 -1
- package/build/cjs/index.js +20 -20
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +361 -361
- package/build/cjs/index.typings.js +20 -20
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +365 -365
- package/build/cjs/meta.js +20 -20
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +20 -20
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +361 -361
- package/build/es/index.typings.mjs +20 -20
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +365 -365
- package/build/es/meta.mjs +20 -20
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +20 -20
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +361 -361
- package/build/internal/cjs/index.typings.js +20 -20
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +365 -365
- package/build/internal/cjs/meta.js +20 -20
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +20 -20
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +361 -361
- package/build/internal/es/index.typings.mjs +20 -20
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +365 -365
- package/build/internal/es/meta.mjs +20 -20
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -2280,411 +2280,130 @@ interface PostUnlikedInitiatorOneOf {
|
|
|
2280
2280
|
*/
|
|
2281
2281
|
anonymousVisitorId?: string | null;
|
|
2282
2282
|
}
|
|
2283
|
-
|
|
2284
|
-
interface QueryPublicationsCountStatsRequest {
|
|
2285
|
-
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2286
|
-
rangeStart?: Date | null;
|
|
2287
|
-
/** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2288
|
-
rangeEnd?: Date | null;
|
|
2289
|
-
/** Order of the returned results. */
|
|
2290
|
-
order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
|
|
2291
|
-
/** Number of months to include in the response. */
|
|
2292
|
-
months?: number;
|
|
2283
|
+
interface ListTemplatesRequest {
|
|
2293
2284
|
/**
|
|
2294
|
-
*
|
|
2295
|
-
*
|
|
2296
|
-
*
|
|
2297
|
-
* @format LANGUAGE_TAG
|
|
2285
|
+
* Filter post templates by given template category ids
|
|
2286
|
+
* @maxSize 50
|
|
2287
|
+
* @format GUID
|
|
2298
2288
|
*/
|
|
2299
|
-
|
|
2289
|
+
categoryIds?: string[];
|
|
2300
2290
|
/**
|
|
2301
|
-
*
|
|
2302
|
-
* @
|
|
2303
|
-
* @maxLength 100
|
|
2291
|
+
* Filter post templates by provided language
|
|
2292
|
+
* @format LANGUAGE_TAG
|
|
2304
2293
|
*/
|
|
2305
|
-
|
|
2294
|
+
language?: string | null;
|
|
2295
|
+
/** Returns post template categories when set to TRUE */
|
|
2296
|
+
listTemplateCategories?: boolean;
|
|
2297
|
+
/** Sort order by ascending/descending publish date. Default is ascending publish date sort */
|
|
2298
|
+
sort?: GetPostTemplatesSortWithLiterals;
|
|
2299
|
+
/** Pagination options. */
|
|
2300
|
+
paging?: BlogPaging;
|
|
2306
2301
|
}
|
|
2307
|
-
declare enum
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2302
|
+
declare enum GetPostTemplatesSort {
|
|
2303
|
+
/** Sort by ascending publishing date. */
|
|
2304
|
+
PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
|
|
2305
|
+
/** Sort by descending publishing date. */
|
|
2306
|
+
PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
|
|
2311
2307
|
}
|
|
2312
2308
|
/** @enumType */
|
|
2313
|
-
type
|
|
2314
|
-
|
|
2315
|
-
interface QueryPublicationsCountStatsResponse {
|
|
2316
|
-
/** Chronologically ordered list of publications. */
|
|
2317
|
-
stats?: PeriodPublicationsCount[];
|
|
2318
|
-
}
|
|
2319
|
-
/** Publications count for a specific time period */
|
|
2320
|
-
interface PeriodPublicationsCount {
|
|
2321
|
-
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2322
|
-
periodStart?: Date | null;
|
|
2323
|
-
/** Number of posts published during this month. */
|
|
2324
|
-
publicationsCount?: number;
|
|
2325
|
-
}
|
|
2326
|
-
/** Get Blog Post Count Stats request */
|
|
2327
|
-
interface QueryPostCountStatsRequest {
|
|
2328
|
-
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2329
|
-
rangeStart?: Date | null;
|
|
2309
|
+
type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
|
|
2310
|
+
interface BlogPaging {
|
|
2330
2311
|
/**
|
|
2331
|
-
*
|
|
2312
|
+
* Number of items to skip in the current sort order.
|
|
2332
2313
|
*
|
|
2333
|
-
* - `OLDEST`: posts by date in ascending order.
|
|
2334
|
-
* - `NEWEST`: posts by date in descending order.
|
|
2335
2314
|
*
|
|
2336
|
-
* Default: `
|
|
2315
|
+
* Default: `0`
|
|
2337
2316
|
*/
|
|
2338
|
-
|
|
2339
|
-
/** Number of months to include in response. */
|
|
2340
|
-
months?: number;
|
|
2317
|
+
offset?: number;
|
|
2341
2318
|
/**
|
|
2342
|
-
*
|
|
2319
|
+
* Number of items to return.
|
|
2343
2320
|
*
|
|
2344
|
-
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2345
|
-
* Pass a language to only receive the period post count for that specified language.
|
|
2346
|
-
* @format LANGUAGE_TAG
|
|
2347
|
-
*/
|
|
2348
|
-
language?: string | null;
|
|
2349
|
-
/**
|
|
2350
|
-
* Time zone to use when calculating the start of the month.
|
|
2351
2321
|
*
|
|
2352
|
-
*
|
|
2353
|
-
* @
|
|
2354
|
-
* @
|
|
2322
|
+
* Default:`50`
|
|
2323
|
+
* @min 1
|
|
2324
|
+
* @max 100
|
|
2355
2325
|
*/
|
|
2356
|
-
|
|
2357
|
-
}
|
|
2358
|
-
declare enum Order {
|
|
2359
|
-
UNKNOWN = "UNKNOWN",
|
|
2360
|
-
OLDEST = "OLDEST",
|
|
2361
|
-
NEWEST = "NEWEST"
|
|
2362
|
-
}
|
|
2363
|
-
/** @enumType */
|
|
2364
|
-
type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
|
|
2365
|
-
/** Get Blog Post Count Stats response */
|
|
2366
|
-
interface QueryPostCountStatsResponse {
|
|
2367
|
-
/** List of published post counts by month. */
|
|
2368
|
-
stats?: PeriodPostCount[];
|
|
2369
|
-
}
|
|
2370
|
-
/** Post count for a specific time period */
|
|
2371
|
-
interface PeriodPostCount {
|
|
2372
|
-
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2373
|
-
periodStart?: Date | null;
|
|
2374
|
-
/** Number of posts published during this month. */
|
|
2375
|
-
postCount?: number;
|
|
2376
|
-
}
|
|
2377
|
-
interface GetTotalPublicationsRequest {
|
|
2326
|
+
limit?: number;
|
|
2378
2327
|
/**
|
|
2379
|
-
*
|
|
2380
|
-
* @
|
|
2381
|
-
* @format LANGUAGE_TAG
|
|
2328
|
+
* Pointer to the next or previous page in the list of results.
|
|
2329
|
+
* @maxLength 2000
|
|
2382
2330
|
*/
|
|
2383
|
-
|
|
2331
|
+
cursor?: string | null;
|
|
2384
2332
|
}
|
|
2385
|
-
interface
|
|
2386
|
-
/**
|
|
2387
|
-
|
|
2333
|
+
interface ListTemplatesResponse {
|
|
2334
|
+
/** Available post templates */
|
|
2335
|
+
postTemplates?: Post[];
|
|
2336
|
+
/** Details on the paged set of posts templates returned. */
|
|
2337
|
+
postTemplatesMetaData?: MetaData;
|
|
2338
|
+
/** Post template categories. This value is returned empty unless asked explicitly */
|
|
2339
|
+
templateCategories?: Category[];
|
|
2388
2340
|
}
|
|
2389
|
-
interface
|
|
2341
|
+
interface MetaData {
|
|
2342
|
+
/** Number of items returned in this response. */
|
|
2343
|
+
count?: number;
|
|
2344
|
+
/** Requested offset. */
|
|
2345
|
+
offset?: number;
|
|
2346
|
+
/** Total number of items that match the query. */
|
|
2347
|
+
total?: number;
|
|
2390
2348
|
/**
|
|
2391
|
-
*
|
|
2392
|
-
*
|
|
2393
|
-
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2394
|
-
* Pass a language to receive the total amount of posts in that specified language.
|
|
2395
|
-
* @format LANGUAGE_TAG
|
|
2349
|
+
* Pointer to the next or previous page in the list of results.
|
|
2350
|
+
* @maxLength 2000
|
|
2396
2351
|
*/
|
|
2397
|
-
|
|
2398
|
-
}
|
|
2399
|
-
interface GetTotalPostsResponse {
|
|
2400
|
-
/** Total amount of published posts. */
|
|
2401
|
-
total?: number;
|
|
2352
|
+
cursor?: string | null;
|
|
2402
2353
|
}
|
|
2403
|
-
interface
|
|
2404
|
-
createdEvent?: EntityCreatedEvent;
|
|
2405
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2406
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2407
|
-
actionEvent?: ActionEvent;
|
|
2354
|
+
interface Category {
|
|
2408
2355
|
/**
|
|
2409
|
-
*
|
|
2410
|
-
*
|
|
2356
|
+
* Category ID.
|
|
2357
|
+
* @immutable
|
|
2358
|
+
* @maxLength 38
|
|
2411
2359
|
*/
|
|
2412
2360
|
id?: string;
|
|
2413
2361
|
/**
|
|
2414
|
-
*
|
|
2415
|
-
*
|
|
2362
|
+
* Category label. Displayed in the Category Menu.
|
|
2363
|
+
* @maxLength 35
|
|
2416
2364
|
*/
|
|
2417
|
-
|
|
2365
|
+
label?: string;
|
|
2418
2366
|
/**
|
|
2419
|
-
*
|
|
2420
|
-
*
|
|
2421
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
2367
|
+
* Number of posts in the category.
|
|
2368
|
+
* @readonly
|
|
2422
2369
|
*/
|
|
2423
|
-
|
|
2424
|
-
/** ID of the entity associated with the event. */
|
|
2425
|
-
entityId?: string;
|
|
2426
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2427
|
-
eventTime?: Date | null;
|
|
2370
|
+
postCount?: number;
|
|
2428
2371
|
/**
|
|
2429
|
-
*
|
|
2430
|
-
*
|
|
2372
|
+
* The `url` of the page that lists every post with the specified category.
|
|
2373
|
+
* @readonly
|
|
2431
2374
|
*/
|
|
2432
|
-
|
|
2433
|
-
/** If present, indicates the action that triggered the event. */
|
|
2434
|
-
originatedFrom?: string | null;
|
|
2375
|
+
url?: PageUrl;
|
|
2435
2376
|
/**
|
|
2436
|
-
*
|
|
2437
|
-
*
|
|
2438
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
2439
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
2440
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
2441
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
2377
|
+
* Category description.
|
|
2378
|
+
* @maxLength 500
|
|
2442
2379
|
*/
|
|
2443
|
-
|
|
2444
|
-
}
|
|
2445
|
-
/** @oneof */
|
|
2446
|
-
interface DomainEventBodyOneOf {
|
|
2447
|
-
createdEvent?: EntityCreatedEvent;
|
|
2448
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2449
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2450
|
-
actionEvent?: ActionEvent;
|
|
2451
|
-
}
|
|
2452
|
-
interface EntityCreatedEvent {
|
|
2453
|
-
entityAsJson?: string;
|
|
2454
|
-
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
2455
|
-
restoreInfo?: RestoreInfo;
|
|
2456
|
-
}
|
|
2457
|
-
interface RestoreInfo {
|
|
2458
|
-
deletedDate?: Date | null;
|
|
2459
|
-
}
|
|
2460
|
-
interface EntityUpdatedEvent {
|
|
2380
|
+
description?: string | null;
|
|
2461
2381
|
/**
|
|
2462
|
-
*
|
|
2463
|
-
*
|
|
2464
|
-
*
|
|
2382
|
+
* Category title.
|
|
2383
|
+
* @maxLength 200
|
|
2384
|
+
* @deprecated Category title.
|
|
2385
|
+
* @targetRemovalDate 2025-07-16
|
|
2465
2386
|
*/
|
|
2466
|
-
|
|
2467
|
-
}
|
|
2468
|
-
interface EntityDeletedEvent {
|
|
2469
|
-
/** Entity that was deleted */
|
|
2470
|
-
deletedEntityAsJson?: string | null;
|
|
2471
|
-
}
|
|
2472
|
-
interface ActionEvent {
|
|
2473
|
-
bodyAsJson?: string;
|
|
2474
|
-
}
|
|
2475
|
-
interface MessageEnvelope {
|
|
2387
|
+
title?: string;
|
|
2476
2388
|
/**
|
|
2477
|
-
*
|
|
2478
|
-
*
|
|
2389
|
+
* Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
|
|
2390
|
+
* Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
|
|
2391
|
+
*
|
|
2392
|
+
* Default: `-1`
|
|
2479
2393
|
*/
|
|
2480
|
-
|
|
2394
|
+
displayPosition?: number | null;
|
|
2481
2395
|
/**
|
|
2482
|
-
*
|
|
2483
|
-
* @
|
|
2396
|
+
* ID of the category's translations. All translations of a single category share the same `translationId`.
|
|
2397
|
+
* @format GUID
|
|
2484
2398
|
*/
|
|
2485
|
-
|
|
2486
|
-
/** The identification type and identity data. */
|
|
2487
|
-
identity?: IdentificationData;
|
|
2488
|
-
/** Stringify payload. */
|
|
2489
|
-
data?: string;
|
|
2490
|
-
}
|
|
2491
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2399
|
+
translationId?: string | null;
|
|
2492
2400
|
/**
|
|
2493
|
-
*
|
|
2494
|
-
*
|
|
2401
|
+
* Category language.
|
|
2402
|
+
*
|
|
2403
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2404
|
+
* @immutable
|
|
2495
2405
|
*/
|
|
2496
|
-
|
|
2497
|
-
/**
|
|
2498
|
-
* ID of a site visitor that has logged in to the site.
|
|
2499
|
-
* @format GUID
|
|
2500
|
-
*/
|
|
2501
|
-
memberId?: string;
|
|
2502
|
-
/**
|
|
2503
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
2504
|
-
* @format GUID
|
|
2505
|
-
*/
|
|
2506
|
-
wixUserId?: string;
|
|
2507
|
-
/**
|
|
2508
|
-
* ID of an app.
|
|
2509
|
-
* @format GUID
|
|
2510
|
-
*/
|
|
2511
|
-
appId?: string;
|
|
2512
|
-
/** @readonly */
|
|
2513
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2514
|
-
}
|
|
2515
|
-
/** @oneof */
|
|
2516
|
-
interface IdentificationDataIdOneOf {
|
|
2517
|
-
/**
|
|
2518
|
-
* ID of a site visitor that has not logged in to the site.
|
|
2519
|
-
* @format GUID
|
|
2520
|
-
*/
|
|
2521
|
-
anonymousVisitorId?: string;
|
|
2522
|
-
/**
|
|
2523
|
-
* ID of a site visitor that has logged in to the site.
|
|
2524
|
-
* @format GUID
|
|
2525
|
-
*/
|
|
2526
|
-
memberId?: string;
|
|
2527
|
-
/**
|
|
2528
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
2529
|
-
* @format GUID
|
|
2530
|
-
*/
|
|
2531
|
-
wixUserId?: string;
|
|
2532
|
-
/**
|
|
2533
|
-
* ID of an app.
|
|
2534
|
-
* @format GUID
|
|
2535
|
-
*/
|
|
2536
|
-
appId?: string;
|
|
2537
|
-
}
|
|
2538
|
-
declare enum WebhookIdentityType {
|
|
2539
|
-
UNKNOWN = "UNKNOWN",
|
|
2540
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2541
|
-
MEMBER = "MEMBER",
|
|
2542
|
-
WIX_USER = "WIX_USER",
|
|
2543
|
-
APP = "APP"
|
|
2544
|
-
}
|
|
2545
|
-
/** @enumType */
|
|
2546
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2547
|
-
interface AccountDetails {
|
|
2548
|
-
/**
|
|
2549
|
-
* ID of the account.
|
|
2550
|
-
* @format GUID
|
|
2551
|
-
*/
|
|
2552
|
-
accountId?: string | null;
|
|
2553
|
-
/**
|
|
2554
|
-
* ID of the parent account.
|
|
2555
|
-
* @format GUID
|
|
2556
|
-
*/
|
|
2557
|
-
parentAccountId?: string | null;
|
|
2558
|
-
/**
|
|
2559
|
-
* ID of the site, if applicable.
|
|
2560
|
-
* @format GUID
|
|
2561
|
-
*/
|
|
2562
|
-
siteId?: string | null;
|
|
2563
|
-
}
|
|
2564
|
-
interface ListTemplatesRequest {
|
|
2565
|
-
/**
|
|
2566
|
-
* Filter post templates by given template category ids
|
|
2567
|
-
* @maxSize 50
|
|
2568
|
-
* @format GUID
|
|
2569
|
-
*/
|
|
2570
|
-
categoryIds?: string[];
|
|
2571
|
-
/**
|
|
2572
|
-
* Filter post templates by provided language
|
|
2573
|
-
* @format LANGUAGE_TAG
|
|
2574
|
-
*/
|
|
2575
|
-
language?: string | null;
|
|
2576
|
-
/** Returns post template categories when set to TRUE */
|
|
2577
|
-
listTemplateCategories?: boolean;
|
|
2578
|
-
/** Sort order by ascending/descending publish date. Default is ascending publish date sort */
|
|
2579
|
-
sort?: GetPostTemplatesSortWithLiterals;
|
|
2580
|
-
/** Pagination options. */
|
|
2581
|
-
paging?: BlogPaging;
|
|
2582
|
-
}
|
|
2583
|
-
declare enum GetPostTemplatesSort {
|
|
2584
|
-
/** Sort by ascending publishing date. */
|
|
2585
|
-
PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
|
|
2586
|
-
/** Sort by descending publishing date. */
|
|
2587
|
-
PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
|
|
2588
|
-
}
|
|
2589
|
-
/** @enumType */
|
|
2590
|
-
type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
|
|
2591
|
-
interface BlogPaging {
|
|
2592
|
-
/**
|
|
2593
|
-
* Number of items to skip in the current sort order.
|
|
2594
|
-
*
|
|
2595
|
-
*
|
|
2596
|
-
* Default: `0`
|
|
2597
|
-
*/
|
|
2598
|
-
offset?: number;
|
|
2599
|
-
/**
|
|
2600
|
-
* Number of items to return.
|
|
2601
|
-
*
|
|
2602
|
-
*
|
|
2603
|
-
* Default:`50`
|
|
2604
|
-
* @min 1
|
|
2605
|
-
* @max 100
|
|
2606
|
-
*/
|
|
2607
|
-
limit?: number;
|
|
2608
|
-
/**
|
|
2609
|
-
* Pointer to the next or previous page in the list of results.
|
|
2610
|
-
* @maxLength 2000
|
|
2611
|
-
*/
|
|
2612
|
-
cursor?: string | null;
|
|
2613
|
-
}
|
|
2614
|
-
interface ListTemplatesResponse {
|
|
2615
|
-
/** Available post templates */
|
|
2616
|
-
postTemplates?: Post[];
|
|
2617
|
-
/** Details on the paged set of posts templates returned. */
|
|
2618
|
-
postTemplatesMetaData?: MetaData;
|
|
2619
|
-
/** Post template categories. This value is returned empty unless asked explicitly */
|
|
2620
|
-
templateCategories?: Category[];
|
|
2621
|
-
}
|
|
2622
|
-
interface MetaData {
|
|
2623
|
-
/** Number of items returned in this response. */
|
|
2624
|
-
count?: number;
|
|
2625
|
-
/** Requested offset. */
|
|
2626
|
-
offset?: number;
|
|
2627
|
-
/** Total number of items that match the query. */
|
|
2628
|
-
total?: number;
|
|
2629
|
-
/**
|
|
2630
|
-
* Pointer to the next or previous page in the list of results.
|
|
2631
|
-
* @maxLength 2000
|
|
2632
|
-
*/
|
|
2633
|
-
cursor?: string | null;
|
|
2634
|
-
}
|
|
2635
|
-
interface Category {
|
|
2636
|
-
/**
|
|
2637
|
-
* Category ID.
|
|
2638
|
-
* @immutable
|
|
2639
|
-
* @maxLength 38
|
|
2640
|
-
*/
|
|
2641
|
-
id?: string;
|
|
2642
|
-
/**
|
|
2643
|
-
* Category label. Displayed in the Category Menu.
|
|
2644
|
-
* @maxLength 35
|
|
2645
|
-
*/
|
|
2646
|
-
label?: string;
|
|
2647
|
-
/**
|
|
2648
|
-
* Number of posts in the category.
|
|
2649
|
-
* @readonly
|
|
2650
|
-
*/
|
|
2651
|
-
postCount?: number;
|
|
2652
|
-
/**
|
|
2653
|
-
* The `url` of the page that lists every post with the specified category.
|
|
2654
|
-
* @readonly
|
|
2655
|
-
*/
|
|
2656
|
-
url?: PageUrl;
|
|
2657
|
-
/**
|
|
2658
|
-
* Category description.
|
|
2659
|
-
* @maxLength 500
|
|
2660
|
-
*/
|
|
2661
|
-
description?: string | null;
|
|
2662
|
-
/**
|
|
2663
|
-
* Category title.
|
|
2664
|
-
* @maxLength 200
|
|
2665
|
-
* @deprecated Category title.
|
|
2666
|
-
* @targetRemovalDate 2025-07-16
|
|
2667
|
-
*/
|
|
2668
|
-
title?: string;
|
|
2669
|
-
/**
|
|
2670
|
-
* Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
|
|
2671
|
-
* Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
|
|
2672
|
-
*
|
|
2673
|
-
* Default: `-1`
|
|
2674
|
-
*/
|
|
2675
|
-
displayPosition?: number | null;
|
|
2676
|
-
/**
|
|
2677
|
-
* ID of the category's translations. All translations of a single category share the same `translationId`.
|
|
2678
|
-
* @format GUID
|
|
2679
|
-
*/
|
|
2680
|
-
translationId?: string | null;
|
|
2681
|
-
/**
|
|
2682
|
-
* Category language.
|
|
2683
|
-
*
|
|
2684
|
-
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2685
|
-
* @immutable
|
|
2686
|
-
*/
|
|
2687
|
-
language?: string | null;
|
|
2406
|
+
language?: string | null;
|
|
2688
2407
|
/**
|
|
2689
2408
|
* Part of a category's URL that refers to a specific category. For example, the slug of `https:/example.com/blog/category/famous-cats` is `famous-cats`.
|
|
2690
2409
|
* @maxLength 100
|
|
@@ -2989,6 +2708,287 @@ interface DraftPostTranslation {
|
|
|
2989
2708
|
/** Post URL. */
|
|
2990
2709
|
url?: PageUrl;
|
|
2991
2710
|
}
|
|
2711
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2712
|
+
createdEvent?: EntityCreatedEvent;
|
|
2713
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2714
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2715
|
+
actionEvent?: ActionEvent;
|
|
2716
|
+
/**
|
|
2717
|
+
* Unique event ID.
|
|
2718
|
+
* Allows clients to ignore duplicate webhooks.
|
|
2719
|
+
*/
|
|
2720
|
+
id?: string;
|
|
2721
|
+
/**
|
|
2722
|
+
* Assumes actions are also always typed to an entity_type
|
|
2723
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
2724
|
+
*/
|
|
2725
|
+
entityFqdn?: string;
|
|
2726
|
+
/**
|
|
2727
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
2728
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
2729
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
2730
|
+
*/
|
|
2731
|
+
slug?: string;
|
|
2732
|
+
/** ID of the entity associated with the event. */
|
|
2733
|
+
entityId?: string;
|
|
2734
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2735
|
+
eventTime?: Date | null;
|
|
2736
|
+
/**
|
|
2737
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2738
|
+
* (for example, GDPR).
|
|
2739
|
+
*/
|
|
2740
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2741
|
+
/** If present, indicates the action that triggered the event. */
|
|
2742
|
+
originatedFrom?: string | null;
|
|
2743
|
+
/**
|
|
2744
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
2745
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
2746
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
2747
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
2748
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
2749
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
2750
|
+
*/
|
|
2751
|
+
entityEventSequence?: string | null;
|
|
2752
|
+
}
|
|
2753
|
+
/** @oneof */
|
|
2754
|
+
interface DomainEventBodyOneOf {
|
|
2755
|
+
createdEvent?: EntityCreatedEvent;
|
|
2756
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2757
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2758
|
+
actionEvent?: ActionEvent;
|
|
2759
|
+
}
|
|
2760
|
+
interface EntityCreatedEvent {
|
|
2761
|
+
entityAsJson?: string;
|
|
2762
|
+
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
2763
|
+
restoreInfo?: RestoreInfo;
|
|
2764
|
+
}
|
|
2765
|
+
interface RestoreInfo {
|
|
2766
|
+
deletedDate?: Date | null;
|
|
2767
|
+
}
|
|
2768
|
+
interface EntityUpdatedEvent {
|
|
2769
|
+
/**
|
|
2770
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2771
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2772
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2773
|
+
*/
|
|
2774
|
+
currentEntityAsJson?: string;
|
|
2775
|
+
}
|
|
2776
|
+
interface EntityDeletedEvent {
|
|
2777
|
+
/** Entity that was deleted */
|
|
2778
|
+
deletedEntityAsJson?: string | null;
|
|
2779
|
+
}
|
|
2780
|
+
interface ActionEvent {
|
|
2781
|
+
bodyAsJson?: string;
|
|
2782
|
+
}
|
|
2783
|
+
interface MessageEnvelope {
|
|
2784
|
+
/**
|
|
2785
|
+
* App instance ID.
|
|
2786
|
+
* @format GUID
|
|
2787
|
+
*/
|
|
2788
|
+
instanceId?: string | null;
|
|
2789
|
+
/**
|
|
2790
|
+
* Event type.
|
|
2791
|
+
* @maxLength 150
|
|
2792
|
+
*/
|
|
2793
|
+
eventType?: string;
|
|
2794
|
+
/** The identification type and identity data. */
|
|
2795
|
+
identity?: IdentificationData;
|
|
2796
|
+
/** Stringify payload. */
|
|
2797
|
+
data?: string;
|
|
2798
|
+
}
|
|
2799
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2800
|
+
/**
|
|
2801
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2802
|
+
* @format GUID
|
|
2803
|
+
*/
|
|
2804
|
+
anonymousVisitorId?: string;
|
|
2805
|
+
/**
|
|
2806
|
+
* ID of a site visitor that has logged in to the site.
|
|
2807
|
+
* @format GUID
|
|
2808
|
+
*/
|
|
2809
|
+
memberId?: string;
|
|
2810
|
+
/**
|
|
2811
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2812
|
+
* @format GUID
|
|
2813
|
+
*/
|
|
2814
|
+
wixUserId?: string;
|
|
2815
|
+
/**
|
|
2816
|
+
* ID of an app.
|
|
2817
|
+
* @format GUID
|
|
2818
|
+
*/
|
|
2819
|
+
appId?: string;
|
|
2820
|
+
/** @readonly */
|
|
2821
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2822
|
+
}
|
|
2823
|
+
/** @oneof */
|
|
2824
|
+
interface IdentificationDataIdOneOf {
|
|
2825
|
+
/**
|
|
2826
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2827
|
+
* @format GUID
|
|
2828
|
+
*/
|
|
2829
|
+
anonymousVisitorId?: string;
|
|
2830
|
+
/**
|
|
2831
|
+
* ID of a site visitor that has logged in to the site.
|
|
2832
|
+
* @format GUID
|
|
2833
|
+
*/
|
|
2834
|
+
memberId?: string;
|
|
2835
|
+
/**
|
|
2836
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2837
|
+
* @format GUID
|
|
2838
|
+
*/
|
|
2839
|
+
wixUserId?: string;
|
|
2840
|
+
/**
|
|
2841
|
+
* ID of an app.
|
|
2842
|
+
* @format GUID
|
|
2843
|
+
*/
|
|
2844
|
+
appId?: string;
|
|
2845
|
+
}
|
|
2846
|
+
declare enum WebhookIdentityType {
|
|
2847
|
+
UNKNOWN = "UNKNOWN",
|
|
2848
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2849
|
+
MEMBER = "MEMBER",
|
|
2850
|
+
WIX_USER = "WIX_USER",
|
|
2851
|
+
APP = "APP"
|
|
2852
|
+
}
|
|
2853
|
+
/** @enumType */
|
|
2854
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2855
|
+
interface AccountInfo {
|
|
2856
|
+
/**
|
|
2857
|
+
* ID of the Wix account associated with the event.
|
|
2858
|
+
* @format GUID
|
|
2859
|
+
*/
|
|
2860
|
+
accountId?: string | null;
|
|
2861
|
+
/**
|
|
2862
|
+
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
2863
|
+
* @format GUID
|
|
2864
|
+
*/
|
|
2865
|
+
parentAccountId?: string | null;
|
|
2866
|
+
/**
|
|
2867
|
+
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
2868
|
+
* @format GUID
|
|
2869
|
+
*/
|
|
2870
|
+
siteId?: string | null;
|
|
2871
|
+
}
|
|
2872
|
+
/** Get Blog Publications Count Stats request */
|
|
2873
|
+
interface QueryPublicationsCountStatsRequest {
|
|
2874
|
+
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2875
|
+
rangeStart?: Date | null;
|
|
2876
|
+
/** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2877
|
+
rangeEnd?: Date | null;
|
|
2878
|
+
/** Order of the returned results. */
|
|
2879
|
+
order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
|
|
2880
|
+
/** Number of months to include in the response. */
|
|
2881
|
+
months?: number;
|
|
2882
|
+
/**
|
|
2883
|
+
* Language filter
|
|
2884
|
+
*
|
|
2885
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2886
|
+
* @format LANGUAGE_TAG
|
|
2887
|
+
*/
|
|
2888
|
+
language?: string | null;
|
|
2889
|
+
/**
|
|
2890
|
+
* Timezone of the client.
|
|
2891
|
+
* @minLength 3
|
|
2892
|
+
* @maxLength 100
|
|
2893
|
+
*/
|
|
2894
|
+
timeZone?: string | null;
|
|
2895
|
+
}
|
|
2896
|
+
declare enum QueryPublicationsCountStatsRequestOrder {
|
|
2897
|
+
UNKNOWN = "UNKNOWN",
|
|
2898
|
+
OLDEST = "OLDEST",
|
|
2899
|
+
NEWEST = "NEWEST"
|
|
2900
|
+
}
|
|
2901
|
+
/** @enumType */
|
|
2902
|
+
type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
|
|
2903
|
+
/** Get Blog Publications Count Stats response */
|
|
2904
|
+
interface QueryPublicationsCountStatsResponse {
|
|
2905
|
+
/** Chronologically ordered list of publications. */
|
|
2906
|
+
stats?: PeriodPublicationsCount[];
|
|
2907
|
+
}
|
|
2908
|
+
/** Publications count for a specific time period */
|
|
2909
|
+
interface PeriodPublicationsCount {
|
|
2910
|
+
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2911
|
+
periodStart?: Date | null;
|
|
2912
|
+
/** Number of posts published during this month. */
|
|
2913
|
+
publicationsCount?: number;
|
|
2914
|
+
}
|
|
2915
|
+
/** Get Blog Post Count Stats request */
|
|
2916
|
+
interface QueryPostCountStatsRequest {
|
|
2917
|
+
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2918
|
+
rangeStart?: Date | null;
|
|
2919
|
+
/**
|
|
2920
|
+
* Order of returned results.
|
|
2921
|
+
*
|
|
2922
|
+
* - `OLDEST`: posts by date in ascending order.
|
|
2923
|
+
* - `NEWEST`: posts by date in descending order.
|
|
2924
|
+
*
|
|
2925
|
+
* Default: `OLDEST`
|
|
2926
|
+
*/
|
|
2927
|
+
order?: OrderWithLiterals;
|
|
2928
|
+
/** Number of months to include in response. */
|
|
2929
|
+
months?: number;
|
|
2930
|
+
/**
|
|
2931
|
+
* Language filter.
|
|
2932
|
+
*
|
|
2933
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2934
|
+
* Pass a language to only receive the period post count for that specified language.
|
|
2935
|
+
* @format LANGUAGE_TAG
|
|
2936
|
+
*/
|
|
2937
|
+
language?: string | null;
|
|
2938
|
+
/**
|
|
2939
|
+
* Time zone to use when calculating the start of the month.
|
|
2940
|
+
*
|
|
2941
|
+
* [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
|
|
2942
|
+
* @minLength 3
|
|
2943
|
+
* @maxLength 100
|
|
2944
|
+
*/
|
|
2945
|
+
timeZone?: string | null;
|
|
2946
|
+
}
|
|
2947
|
+
declare enum Order {
|
|
2948
|
+
UNKNOWN = "UNKNOWN",
|
|
2949
|
+
OLDEST = "OLDEST",
|
|
2950
|
+
NEWEST = "NEWEST"
|
|
2951
|
+
}
|
|
2952
|
+
/** @enumType */
|
|
2953
|
+
type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
|
|
2954
|
+
/** Get Blog Post Count Stats response */
|
|
2955
|
+
interface QueryPostCountStatsResponse {
|
|
2956
|
+
/** List of published post counts by month. */
|
|
2957
|
+
stats?: PeriodPostCount[];
|
|
2958
|
+
}
|
|
2959
|
+
/** Post count for a specific time period */
|
|
2960
|
+
interface PeriodPostCount {
|
|
2961
|
+
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2962
|
+
periodStart?: Date | null;
|
|
2963
|
+
/** Number of posts published during this month. */
|
|
2964
|
+
postCount?: number;
|
|
2965
|
+
}
|
|
2966
|
+
interface GetTotalPublicationsRequest {
|
|
2967
|
+
/**
|
|
2968
|
+
* Language filter
|
|
2969
|
+
* @minLength 2
|
|
2970
|
+
* @format LANGUAGE_TAG
|
|
2971
|
+
*/
|
|
2972
|
+
language?: string | null;
|
|
2973
|
+
}
|
|
2974
|
+
interface GetTotalPublicationsResponse {
|
|
2975
|
+
/** Total amount of publications. */
|
|
2976
|
+
total?: number;
|
|
2977
|
+
}
|
|
2978
|
+
interface GetTotalPostsRequest {
|
|
2979
|
+
/**
|
|
2980
|
+
* Language filter.
|
|
2981
|
+
*
|
|
2982
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2983
|
+
* Pass a language to receive the total amount of posts in that specified language.
|
|
2984
|
+
* @format LANGUAGE_TAG
|
|
2985
|
+
*/
|
|
2986
|
+
language?: string | null;
|
|
2987
|
+
}
|
|
2988
|
+
interface GetTotalPostsResponse {
|
|
2989
|
+
/** Total amount of published posts. */
|
|
2990
|
+
total?: number;
|
|
2991
|
+
}
|
|
2992
2992
|
interface GetTotalLikesPerMemberRequest {
|
|
2993
2993
|
/**
|
|
2994
2994
|
* Member ID.
|
|
@@ -3699,4 +3699,4 @@ declare function getPostMetrics(): __PublicMethodMetaInfo<'GET', {
|
|
|
3699
3699
|
postId: string;
|
|
3700
3700
|
}, GetPostMetricsRequest$1, GetPostMetricsRequest, GetPostMetricsResponse$1, GetPostMetricsResponse>;
|
|
3701
3701
|
|
|
3702
|
-
export { type AccountDetails as AccountDetailsOriginal, type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkGetPostReactionsRequest as BulkGetPostReactionsRequestOriginal, type BulkGetPostReactionsResponse as BulkGetPostReactionsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type ConvertDraftJsToRichContentRequest as ConvertDraftJsToRichContentRequestOriginal, type ConvertDraftJsToRichContentResponse as ConvertDraftJsToRichContentResponseOriginal, type ConvertRichContentToDraftJsRequest as ConvertRichContentToDraftJsRequestOriginal, type ConvertRichContentToDraftJsResponse as ConvertRichContentToDraftJsResponseOriginal, type CoverMediaMediaOneOf as CoverMediaMediaOneOfOriginal, type CoverMedia as CoverMediaOriginal, type CreateDraftPostFromTemplateRequest as CreateDraftPostFromTemplateRequestOriginal, type CreateDraftPostFromTemplateResponse as CreateDraftPostFromTemplateResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftPost as DraftPostOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type EmbedData as EmbedDataOriginal, type EmbedMedia as EmbedMediaOriginal, type EmbedThumbnail as EmbedThumbnailOriginal, type EmbedVideo as EmbedVideoOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetPostBySlugRequest as GetPostBySlugRequestOriginal, type GetPostBySlugResponse as GetPostBySlugResponseOriginal, type GetPostCountPerMonthRequest as GetPostCountPerMonthRequestOriginal, type GetPostCountPerMonthResponse as GetPostCountPerMonthResponseOriginal, type GetPostMetricsRequest as GetPostMetricsRequestOriginal, type GetPostMetricsResponse as GetPostMetricsResponseOriginal, type GetPostRequest as GetPostRequestOriginal, type GetPostResponse as GetPostResponseOriginal, GetPostTemplatesSort as GetPostTemplatesSortOriginal, type GetPostTemplatesSortWithLiterals as GetPostTemplatesSortWithLiteralsOriginal, GetPostsSort as GetPostsSortOriginal, type GetPostsSortWithLiterals as GetPostsSortWithLiteralsOriginal, type GetTemplateRequest as GetTemplateRequestOriginal, type GetTemplateResponse as GetTemplateResponseOriginal, type GetTotalLikesPerMemberRequest as GetTotalLikesPerMemberRequestOriginal, type GetTotalLikesPerMemberResponse as GetTotalLikesPerMemberResponseOriginal, type GetTotalPostsRequest as GetTotalPostsRequestOriginal, type GetTotalPostsResponse as GetTotalPostsResponseOriginal, type GetTotalPublicationsRequest as GetTotalPublicationsRequestOriginal, type GetTotalPublicationsResponse as GetTotalPublicationsResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InitialPostsCopied as InitialPostsCopiedOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type ItemVideo as ItemVideoOriginal, type Keyword as KeywordOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, type LikePostRequest as LikePostRequestOriginal, type LikePostResponse as LikePostResponseOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListDemoPostsRequest as ListDemoPostsRequestOriginal, type ListDemoPostsResponse as ListDemoPostsResponseOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type Metrics as MetricsOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OldBlogMigratedEvent as OldBlogMigratedEventOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type PostCountPerMonth as PostCountPerMonthOriginal, type PostCountersUpdatedInitiatorOneOf as PostCountersUpdatedInitiatorOneOfOriginal, type PostCountersUpdated as PostCountersUpdatedOriginal, PostFieldField as PostFieldFieldOriginal, type PostFieldFieldWithLiterals as PostFieldFieldWithLiteralsOriginal, type PostLikedInitiatorOneOf as PostLikedInitiatorOneOfOriginal, type PostLiked as PostLikedOriginal, type Post as PostOriginal, type PostOwnerChanged as PostOwnerChangedOriginal, type PostTagsUpdated as PostTagsUpdatedOriginal, type PostTranslation as PostTranslationOriginal, type PostUnlikedInitiatorOneOf as PostUnlikedInitiatorOneOfOriginal, type PostUnliked as PostUnlikedOriginal, type PricingData as PricingDataOriginal, type QueryPostCountStatsRequest as QueryPostCountStatsRequestOriginal, type QueryPostCountStatsResponse as QueryPostCountStatsResponseOriginal, type QueryPostsRequest as QueryPostsRequestOriginal, type QueryPostsResponse as QueryPostsResponseOriginal, QueryPublicationsCountStatsRequestOrder as QueryPublicationsCountStatsRequestOrderOriginal, type QueryPublicationsCountStatsRequestOrderWithLiterals as QueryPublicationsCountStatsRequestOrderWithLiteralsOriginal, type QueryPublicationsCountStatsRequest as QueryPublicationsCountStatsRequestOriginal, type QueryPublicationsCountStatsResponse as QueryPublicationsCountStatsResponseOriginal, type Reactions as ReactionsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduledPostPublished as ScheduledPostPublishedOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };
|
|
3702
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkGetPostReactionsRequest as BulkGetPostReactionsRequestOriginal, type BulkGetPostReactionsResponse as BulkGetPostReactionsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type ConvertDraftJsToRichContentRequest as ConvertDraftJsToRichContentRequestOriginal, type ConvertDraftJsToRichContentResponse as ConvertDraftJsToRichContentResponseOriginal, type ConvertRichContentToDraftJsRequest as ConvertRichContentToDraftJsRequestOriginal, type ConvertRichContentToDraftJsResponse as ConvertRichContentToDraftJsResponseOriginal, type CoverMediaMediaOneOf as CoverMediaMediaOneOfOriginal, type CoverMedia as CoverMediaOriginal, type CreateDraftPostFromTemplateRequest as CreateDraftPostFromTemplateRequestOriginal, type CreateDraftPostFromTemplateResponse as CreateDraftPostFromTemplateResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftPost as DraftPostOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type EmbedData as EmbedDataOriginal, type EmbedMedia as EmbedMediaOriginal, type EmbedThumbnail as EmbedThumbnailOriginal, type EmbedVideo as EmbedVideoOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetPostBySlugRequest as GetPostBySlugRequestOriginal, type GetPostBySlugResponse as GetPostBySlugResponseOriginal, type GetPostCountPerMonthRequest as GetPostCountPerMonthRequestOriginal, type GetPostCountPerMonthResponse as GetPostCountPerMonthResponseOriginal, type GetPostMetricsRequest as GetPostMetricsRequestOriginal, type GetPostMetricsResponse as GetPostMetricsResponseOriginal, type GetPostRequest as GetPostRequestOriginal, type GetPostResponse as GetPostResponseOriginal, GetPostTemplatesSort as GetPostTemplatesSortOriginal, type GetPostTemplatesSortWithLiterals as GetPostTemplatesSortWithLiteralsOriginal, GetPostsSort as GetPostsSortOriginal, type GetPostsSortWithLiterals as GetPostsSortWithLiteralsOriginal, type GetTemplateRequest as GetTemplateRequestOriginal, type GetTemplateResponse as GetTemplateResponseOriginal, type GetTotalLikesPerMemberRequest as GetTotalLikesPerMemberRequestOriginal, type GetTotalLikesPerMemberResponse as GetTotalLikesPerMemberResponseOriginal, type GetTotalPostsRequest as GetTotalPostsRequestOriginal, type GetTotalPostsResponse as GetTotalPostsResponseOriginal, type GetTotalPublicationsRequest as GetTotalPublicationsRequestOriginal, type GetTotalPublicationsResponse as GetTotalPublicationsResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InitialPostsCopied as InitialPostsCopiedOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type ItemVideo as ItemVideoOriginal, type Keyword as KeywordOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, type LikePostRequest as LikePostRequestOriginal, type LikePostResponse as LikePostResponseOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListDemoPostsRequest as ListDemoPostsRequestOriginal, type ListDemoPostsResponse as ListDemoPostsResponseOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type Metrics as MetricsOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OldBlogMigratedEvent as OldBlogMigratedEventOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type PostCountPerMonth as PostCountPerMonthOriginal, type PostCountersUpdatedInitiatorOneOf as PostCountersUpdatedInitiatorOneOfOriginal, type PostCountersUpdated as PostCountersUpdatedOriginal, PostFieldField as PostFieldFieldOriginal, type PostFieldFieldWithLiterals as PostFieldFieldWithLiteralsOriginal, type PostLikedInitiatorOneOf as PostLikedInitiatorOneOfOriginal, type PostLiked as PostLikedOriginal, type Post as PostOriginal, type PostOwnerChanged as PostOwnerChangedOriginal, type PostTagsUpdated as PostTagsUpdatedOriginal, type PostTranslation as PostTranslationOriginal, type PostUnlikedInitiatorOneOf as PostUnlikedInitiatorOneOfOriginal, type PostUnliked as PostUnlikedOriginal, type PricingData as PricingDataOriginal, type QueryPostCountStatsRequest as QueryPostCountStatsRequestOriginal, type QueryPostCountStatsResponse as QueryPostCountStatsResponseOriginal, type QueryPostsRequest as QueryPostsRequestOriginal, type QueryPostsResponse as QueryPostsResponseOriginal, QueryPublicationsCountStatsRequestOrder as QueryPublicationsCountStatsRequestOrderOriginal, type QueryPublicationsCountStatsRequestOrderWithLiterals as QueryPublicationsCountStatsRequestOrderWithLiteralsOriginal, type QueryPublicationsCountStatsRequest as QueryPublicationsCountStatsRequestOriginal, type QueryPublicationsCountStatsResponse as QueryPublicationsCountStatsResponseOriginal, type Reactions as ReactionsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduledPostPublished as ScheduledPostPublishedOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };
|