@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
|
@@ -2242,407 +2242,128 @@ interface PostUnlikedInitiatorOneOf {
|
|
|
2242
2242
|
*/
|
|
2243
2243
|
anonymousVisitorId?: string | null;
|
|
2244
2244
|
}
|
|
2245
|
-
|
|
2246
|
-
interface QueryPublicationsCountStatsRequest {
|
|
2247
|
-
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2248
|
-
rangeStart?: Date | null;
|
|
2249
|
-
/** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2250
|
-
rangeEnd?: Date | null;
|
|
2251
|
-
/** Order of the returned results. */
|
|
2252
|
-
order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
|
|
2253
|
-
/** Number of months to include in the response. */
|
|
2254
|
-
months?: number;
|
|
2245
|
+
interface ListTemplatesRequest {
|
|
2255
2246
|
/**
|
|
2256
|
-
*
|
|
2257
|
-
*
|
|
2258
|
-
*
|
|
2259
|
-
* @format LANGUAGE_TAG
|
|
2247
|
+
* Filter post templates by given template category ids
|
|
2248
|
+
* @maxSize 50
|
|
2249
|
+
* @format GUID
|
|
2260
2250
|
*/
|
|
2261
|
-
|
|
2251
|
+
categoryIds?: string[];
|
|
2262
2252
|
/**
|
|
2263
|
-
*
|
|
2264
|
-
* @
|
|
2265
|
-
* @maxLength 100
|
|
2253
|
+
* Filter post templates by provided language
|
|
2254
|
+
* @format LANGUAGE_TAG
|
|
2266
2255
|
*/
|
|
2267
|
-
|
|
2256
|
+
language?: string | null;
|
|
2257
|
+
/** Returns post template categories when set to TRUE */
|
|
2258
|
+
listTemplateCategories?: boolean;
|
|
2259
|
+
/** Sort order by ascending/descending publish date. Default is ascending publish date sort */
|
|
2260
|
+
sort?: GetPostTemplatesSortWithLiterals;
|
|
2261
|
+
/** Pagination options. */
|
|
2262
|
+
paging?: BlogPaging;
|
|
2268
2263
|
}
|
|
2269
|
-
declare enum
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2264
|
+
declare enum GetPostTemplatesSort {
|
|
2265
|
+
/** Sort by ascending publishing date. */
|
|
2266
|
+
PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
|
|
2267
|
+
/** Sort by descending publishing date. */
|
|
2268
|
+
PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
|
|
2273
2269
|
}
|
|
2274
2270
|
/** @enumType */
|
|
2275
|
-
type
|
|
2276
|
-
|
|
2277
|
-
interface QueryPublicationsCountStatsResponse {
|
|
2278
|
-
/** Chronologically ordered list of publications. */
|
|
2279
|
-
stats?: PeriodPublicationsCount[];
|
|
2280
|
-
}
|
|
2281
|
-
/** Publications count for a specific time period */
|
|
2282
|
-
interface PeriodPublicationsCount {
|
|
2283
|
-
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2284
|
-
periodStart?: Date | null;
|
|
2285
|
-
/** Number of posts published during this month. */
|
|
2286
|
-
publicationsCount?: number;
|
|
2287
|
-
}
|
|
2288
|
-
/** Get Blog Post Count Stats request */
|
|
2289
|
-
interface QueryPostCountStatsRequest {
|
|
2290
|
-
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2291
|
-
rangeStart?: Date | null;
|
|
2271
|
+
type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
|
|
2272
|
+
interface BlogPaging {
|
|
2292
2273
|
/**
|
|
2293
|
-
*
|
|
2274
|
+
* Number of items to skip in the current sort order.
|
|
2294
2275
|
*
|
|
2295
|
-
* - `OLDEST`: posts by date in ascending order.
|
|
2296
|
-
* - `NEWEST`: posts by date in descending order.
|
|
2297
2276
|
*
|
|
2298
|
-
* Default: `
|
|
2277
|
+
* Default: `0`
|
|
2299
2278
|
*/
|
|
2300
|
-
|
|
2301
|
-
/** Number of months to include in response. */
|
|
2302
|
-
months?: number;
|
|
2279
|
+
offset?: number;
|
|
2303
2280
|
/**
|
|
2304
|
-
*
|
|
2281
|
+
* Number of items to return.
|
|
2305
2282
|
*
|
|
2306
|
-
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2307
|
-
* Pass a language to only receive the period post count for that specified language.
|
|
2308
|
-
* @format LANGUAGE_TAG
|
|
2309
|
-
*/
|
|
2310
|
-
language?: string | null;
|
|
2311
|
-
/**
|
|
2312
|
-
* Time zone to use when calculating the start of the month.
|
|
2313
2283
|
*
|
|
2314
|
-
*
|
|
2315
|
-
* @
|
|
2316
|
-
* @
|
|
2284
|
+
* Default:`50`
|
|
2285
|
+
* @min 1
|
|
2286
|
+
* @max 100
|
|
2317
2287
|
*/
|
|
2318
|
-
|
|
2319
|
-
}
|
|
2320
|
-
declare enum Order {
|
|
2321
|
-
UNKNOWN = "UNKNOWN",
|
|
2322
|
-
OLDEST = "OLDEST",
|
|
2323
|
-
NEWEST = "NEWEST"
|
|
2324
|
-
}
|
|
2325
|
-
/** @enumType */
|
|
2326
|
-
type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
|
|
2327
|
-
/** Get Blog Post Count Stats response */
|
|
2328
|
-
interface QueryPostCountStatsResponse {
|
|
2329
|
-
/** List of published post counts by month. */
|
|
2330
|
-
stats?: PeriodPostCount[];
|
|
2331
|
-
}
|
|
2332
|
-
/** Post count for a specific time period */
|
|
2333
|
-
interface PeriodPostCount {
|
|
2334
|
-
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2335
|
-
periodStart?: Date | null;
|
|
2336
|
-
/** Number of posts published during this month. */
|
|
2337
|
-
postCount?: number;
|
|
2338
|
-
}
|
|
2339
|
-
interface GetTotalPublicationsRequest {
|
|
2288
|
+
limit?: number;
|
|
2340
2289
|
/**
|
|
2341
|
-
*
|
|
2342
|
-
* @
|
|
2343
|
-
* @format LANGUAGE_TAG
|
|
2290
|
+
* Pointer to the next or previous page in the list of results.
|
|
2291
|
+
* @maxLength 2000
|
|
2344
2292
|
*/
|
|
2345
|
-
|
|
2293
|
+
cursor?: string | null;
|
|
2346
2294
|
}
|
|
2347
|
-
interface
|
|
2348
|
-
/**
|
|
2349
|
-
|
|
2295
|
+
interface ListTemplatesResponse {
|
|
2296
|
+
/** Available post templates */
|
|
2297
|
+
postTemplates?: Post[];
|
|
2298
|
+
/** Details on the paged set of posts templates returned. */
|
|
2299
|
+
postTemplatesMetaData?: MetaData;
|
|
2300
|
+
/** Post template categories. This value is returned empty unless asked explicitly */
|
|
2301
|
+
templateCategories?: Category[];
|
|
2350
2302
|
}
|
|
2351
|
-
interface
|
|
2303
|
+
interface MetaData {
|
|
2304
|
+
/** Number of items returned in this response. */
|
|
2305
|
+
count?: number;
|
|
2306
|
+
/** Requested offset. */
|
|
2307
|
+
offset?: number;
|
|
2308
|
+
/** Total number of items that match the query. */
|
|
2309
|
+
total?: number;
|
|
2352
2310
|
/**
|
|
2353
|
-
*
|
|
2354
|
-
*
|
|
2355
|
-
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2356
|
-
* Pass a language to receive the total amount of posts in that specified language.
|
|
2357
|
-
* @format LANGUAGE_TAG
|
|
2311
|
+
* Pointer to the next or previous page in the list of results.
|
|
2312
|
+
* @maxLength 2000
|
|
2358
2313
|
*/
|
|
2359
|
-
|
|
2360
|
-
}
|
|
2361
|
-
interface GetTotalPostsResponse {
|
|
2362
|
-
/** Total amount of published posts. */
|
|
2363
|
-
total?: number;
|
|
2314
|
+
cursor?: string | null;
|
|
2364
2315
|
}
|
|
2365
|
-
interface
|
|
2366
|
-
createdEvent?: EntityCreatedEvent;
|
|
2367
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2368
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2369
|
-
actionEvent?: ActionEvent;
|
|
2316
|
+
interface Category {
|
|
2370
2317
|
/**
|
|
2371
|
-
*
|
|
2372
|
-
*
|
|
2318
|
+
* Category ID.
|
|
2319
|
+
* @immutable
|
|
2320
|
+
* @maxLength 38
|
|
2373
2321
|
*/
|
|
2374
2322
|
_id?: string;
|
|
2375
2323
|
/**
|
|
2376
|
-
*
|
|
2377
|
-
*
|
|
2378
|
-
*/
|
|
2379
|
-
entityFqdn?: string;
|
|
2380
|
-
/**
|
|
2381
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
2382
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
2383
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
2324
|
+
* Category label. Displayed in the Category Menu.
|
|
2325
|
+
* @maxLength 35
|
|
2384
2326
|
*/
|
|
2385
|
-
|
|
2386
|
-
/** ID of the entity associated with the event. */
|
|
2387
|
-
entityId?: string;
|
|
2388
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2389
|
-
eventTime?: Date | null;
|
|
2327
|
+
label?: string;
|
|
2390
2328
|
/**
|
|
2391
|
-
*
|
|
2392
|
-
*
|
|
2329
|
+
* Number of posts in the category.
|
|
2330
|
+
* @readonly
|
|
2393
2331
|
*/
|
|
2394
|
-
|
|
2395
|
-
/** If present, indicates the action that triggered the event. */
|
|
2396
|
-
originatedFrom?: string | null;
|
|
2332
|
+
postCount?: number;
|
|
2397
2333
|
/**
|
|
2398
|
-
*
|
|
2399
|
-
*
|
|
2400
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
2401
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
2402
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
2403
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
2334
|
+
* The `url` of the page that lists every post with the specified category.
|
|
2335
|
+
* @readonly
|
|
2404
2336
|
*/
|
|
2405
|
-
|
|
2406
|
-
}
|
|
2407
|
-
/** @oneof */
|
|
2408
|
-
interface DomainEventBodyOneOf {
|
|
2409
|
-
createdEvent?: EntityCreatedEvent;
|
|
2410
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2411
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2412
|
-
actionEvent?: ActionEvent;
|
|
2413
|
-
}
|
|
2414
|
-
interface EntityCreatedEvent {
|
|
2415
|
-
entity?: string;
|
|
2416
|
-
}
|
|
2417
|
-
interface RestoreInfo {
|
|
2418
|
-
deletedDate?: Date | null;
|
|
2419
|
-
}
|
|
2420
|
-
interface EntityUpdatedEvent {
|
|
2337
|
+
url?: string;
|
|
2421
2338
|
/**
|
|
2422
|
-
*
|
|
2423
|
-
*
|
|
2424
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2339
|
+
* Category description.
|
|
2340
|
+
* @maxLength 500
|
|
2425
2341
|
*/
|
|
2426
|
-
|
|
2427
|
-
}
|
|
2428
|
-
interface EntityDeletedEvent {
|
|
2429
|
-
/** Entity that was deleted */
|
|
2430
|
-
deletedEntity?: string | null;
|
|
2431
|
-
}
|
|
2432
|
-
interface ActionEvent {
|
|
2433
|
-
body?: string;
|
|
2434
|
-
}
|
|
2435
|
-
interface MessageEnvelope {
|
|
2342
|
+
description?: string | null;
|
|
2436
2343
|
/**
|
|
2437
|
-
*
|
|
2438
|
-
* @
|
|
2344
|
+
* Category title.
|
|
2345
|
+
* @maxLength 200
|
|
2346
|
+
* @deprecated Category title.
|
|
2347
|
+
* @targetRemovalDate 2025-07-16
|
|
2439
2348
|
*/
|
|
2440
|
-
|
|
2349
|
+
title?: string;
|
|
2441
2350
|
/**
|
|
2442
|
-
*
|
|
2443
|
-
*
|
|
2351
|
+
* Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
|
|
2352
|
+
* Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
|
|
2353
|
+
*
|
|
2354
|
+
* Default: `-1`
|
|
2444
2355
|
*/
|
|
2445
|
-
|
|
2446
|
-
/** The identification type and identity data. */
|
|
2447
|
-
identity?: IdentificationData;
|
|
2448
|
-
/** Stringify payload. */
|
|
2449
|
-
data?: string;
|
|
2450
|
-
}
|
|
2451
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2356
|
+
displayPosition?: number | null;
|
|
2452
2357
|
/**
|
|
2453
|
-
* ID of
|
|
2358
|
+
* ID of the category's translations. All translations of a single category share the same `translationId`.
|
|
2454
2359
|
* @format GUID
|
|
2455
2360
|
*/
|
|
2456
|
-
|
|
2361
|
+
translationId?: string | null;
|
|
2457
2362
|
/**
|
|
2458
|
-
*
|
|
2459
|
-
*
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
/**
|
|
2463
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
2464
|
-
* @format GUID
|
|
2465
|
-
*/
|
|
2466
|
-
wixUserId?: string;
|
|
2467
|
-
/**
|
|
2468
|
-
* ID of an app.
|
|
2469
|
-
* @format GUID
|
|
2470
|
-
*/
|
|
2471
|
-
appId?: string;
|
|
2472
|
-
/** @readonly */
|
|
2473
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2474
|
-
}
|
|
2475
|
-
/** @oneof */
|
|
2476
|
-
interface IdentificationDataIdOneOf {
|
|
2477
|
-
/**
|
|
2478
|
-
* ID of a site visitor that has not logged in to the site.
|
|
2479
|
-
* @format GUID
|
|
2480
|
-
*/
|
|
2481
|
-
anonymousVisitorId?: string;
|
|
2482
|
-
/**
|
|
2483
|
-
* ID of a site visitor that has logged in to the site.
|
|
2484
|
-
* @format GUID
|
|
2485
|
-
*/
|
|
2486
|
-
memberId?: string;
|
|
2487
|
-
/**
|
|
2488
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
2489
|
-
* @format GUID
|
|
2490
|
-
*/
|
|
2491
|
-
wixUserId?: string;
|
|
2492
|
-
/**
|
|
2493
|
-
* ID of an app.
|
|
2494
|
-
* @format GUID
|
|
2495
|
-
*/
|
|
2496
|
-
appId?: string;
|
|
2497
|
-
}
|
|
2498
|
-
declare enum WebhookIdentityType {
|
|
2499
|
-
UNKNOWN = "UNKNOWN",
|
|
2500
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2501
|
-
MEMBER = "MEMBER",
|
|
2502
|
-
WIX_USER = "WIX_USER",
|
|
2503
|
-
APP = "APP"
|
|
2504
|
-
}
|
|
2505
|
-
/** @enumType */
|
|
2506
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2507
|
-
interface AccountDetails {
|
|
2508
|
-
/**
|
|
2509
|
-
* ID of the account.
|
|
2510
|
-
* @format GUID
|
|
2511
|
-
*/
|
|
2512
|
-
accountId?: string | null;
|
|
2513
|
-
/**
|
|
2514
|
-
* ID of the parent account.
|
|
2515
|
-
* @format GUID
|
|
2516
|
-
*/
|
|
2517
|
-
parentAccountId?: string | null;
|
|
2518
|
-
/**
|
|
2519
|
-
* ID of the site, if applicable.
|
|
2520
|
-
* @format GUID
|
|
2521
|
-
*/
|
|
2522
|
-
siteId?: string | null;
|
|
2523
|
-
}
|
|
2524
|
-
interface ListTemplatesRequest {
|
|
2525
|
-
/**
|
|
2526
|
-
* Filter post templates by given template category ids
|
|
2527
|
-
* @maxSize 50
|
|
2528
|
-
* @format GUID
|
|
2529
|
-
*/
|
|
2530
|
-
categoryIds?: string[];
|
|
2531
|
-
/**
|
|
2532
|
-
* Filter post templates by provided language
|
|
2533
|
-
* @format LANGUAGE_TAG
|
|
2534
|
-
*/
|
|
2535
|
-
language?: string | null;
|
|
2536
|
-
/** Returns post template categories when set to TRUE */
|
|
2537
|
-
listTemplateCategories?: boolean;
|
|
2538
|
-
/** Sort order by ascending/descending publish date. Default is ascending publish date sort */
|
|
2539
|
-
sort?: GetPostTemplatesSortWithLiterals;
|
|
2540
|
-
/** Pagination options. */
|
|
2541
|
-
paging?: BlogPaging;
|
|
2542
|
-
}
|
|
2543
|
-
declare enum GetPostTemplatesSort {
|
|
2544
|
-
/** Sort by ascending publishing date. */
|
|
2545
|
-
PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
|
|
2546
|
-
/** Sort by descending publishing date. */
|
|
2547
|
-
PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
|
|
2548
|
-
}
|
|
2549
|
-
/** @enumType */
|
|
2550
|
-
type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
|
|
2551
|
-
interface BlogPaging {
|
|
2552
|
-
/**
|
|
2553
|
-
* Number of items to skip in the current sort order.
|
|
2554
|
-
*
|
|
2555
|
-
*
|
|
2556
|
-
* Default: `0`
|
|
2557
|
-
*/
|
|
2558
|
-
offset?: number;
|
|
2559
|
-
/**
|
|
2560
|
-
* Number of items to return.
|
|
2561
|
-
*
|
|
2562
|
-
*
|
|
2563
|
-
* Default:`50`
|
|
2564
|
-
* @min 1
|
|
2565
|
-
* @max 100
|
|
2566
|
-
*/
|
|
2567
|
-
limit?: number;
|
|
2568
|
-
/**
|
|
2569
|
-
* Pointer to the next or previous page in the list of results.
|
|
2570
|
-
* @maxLength 2000
|
|
2571
|
-
*/
|
|
2572
|
-
cursor?: string | null;
|
|
2573
|
-
}
|
|
2574
|
-
interface ListTemplatesResponse {
|
|
2575
|
-
/** Available post templates */
|
|
2576
|
-
postTemplates?: Post[];
|
|
2577
|
-
/** Details on the paged set of posts templates returned. */
|
|
2578
|
-
postTemplatesMetaData?: MetaData;
|
|
2579
|
-
/** Post template categories. This value is returned empty unless asked explicitly */
|
|
2580
|
-
templateCategories?: Category[];
|
|
2581
|
-
}
|
|
2582
|
-
interface MetaData {
|
|
2583
|
-
/** Number of items returned in this response. */
|
|
2584
|
-
count?: number;
|
|
2585
|
-
/** Requested offset. */
|
|
2586
|
-
offset?: number;
|
|
2587
|
-
/** Total number of items that match the query. */
|
|
2588
|
-
total?: number;
|
|
2589
|
-
/**
|
|
2590
|
-
* Pointer to the next or previous page in the list of results.
|
|
2591
|
-
* @maxLength 2000
|
|
2592
|
-
*/
|
|
2593
|
-
cursor?: string | null;
|
|
2594
|
-
}
|
|
2595
|
-
interface Category {
|
|
2596
|
-
/**
|
|
2597
|
-
* Category ID.
|
|
2598
|
-
* @immutable
|
|
2599
|
-
* @maxLength 38
|
|
2600
|
-
*/
|
|
2601
|
-
_id?: string;
|
|
2602
|
-
/**
|
|
2603
|
-
* Category label. Displayed in the Category Menu.
|
|
2604
|
-
* @maxLength 35
|
|
2605
|
-
*/
|
|
2606
|
-
label?: string;
|
|
2607
|
-
/**
|
|
2608
|
-
* Number of posts in the category.
|
|
2609
|
-
* @readonly
|
|
2610
|
-
*/
|
|
2611
|
-
postCount?: number;
|
|
2612
|
-
/**
|
|
2613
|
-
* The `url` of the page that lists every post with the specified category.
|
|
2614
|
-
* @readonly
|
|
2615
|
-
*/
|
|
2616
|
-
url?: string;
|
|
2617
|
-
/**
|
|
2618
|
-
* Category description.
|
|
2619
|
-
* @maxLength 500
|
|
2620
|
-
*/
|
|
2621
|
-
description?: string | null;
|
|
2622
|
-
/**
|
|
2623
|
-
* Category title.
|
|
2624
|
-
* @maxLength 200
|
|
2625
|
-
* @deprecated Category title.
|
|
2626
|
-
* @targetRemovalDate 2025-07-16
|
|
2627
|
-
*/
|
|
2628
|
-
title?: string;
|
|
2629
|
-
/**
|
|
2630
|
-
* Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
|
|
2631
|
-
* Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
|
|
2632
|
-
*
|
|
2633
|
-
* Default: `-1`
|
|
2634
|
-
*/
|
|
2635
|
-
displayPosition?: number | null;
|
|
2636
|
-
/**
|
|
2637
|
-
* ID of the category's translations. All translations of a single category share the same `translationId`.
|
|
2638
|
-
* @format GUID
|
|
2639
|
-
*/
|
|
2640
|
-
translationId?: string | null;
|
|
2641
|
-
/**
|
|
2642
|
-
* Category language.
|
|
2643
|
-
*
|
|
2644
|
-
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2645
|
-
* @immutable
|
|
2363
|
+
* Category language.
|
|
2364
|
+
*
|
|
2365
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2366
|
+
* @immutable
|
|
2646
2367
|
*/
|
|
2647
2368
|
language?: string | null;
|
|
2648
2369
|
/**
|
|
@@ -2949,6 +2670,285 @@ interface DraftPostTranslation {
|
|
|
2949
2670
|
/** Post URL. */
|
|
2950
2671
|
url?: string;
|
|
2951
2672
|
}
|
|
2673
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2674
|
+
createdEvent?: EntityCreatedEvent;
|
|
2675
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2676
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2677
|
+
actionEvent?: ActionEvent;
|
|
2678
|
+
/**
|
|
2679
|
+
* Unique event ID.
|
|
2680
|
+
* Allows clients to ignore duplicate webhooks.
|
|
2681
|
+
*/
|
|
2682
|
+
_id?: string;
|
|
2683
|
+
/**
|
|
2684
|
+
* Assumes actions are also always typed to an entity_type
|
|
2685
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
2686
|
+
*/
|
|
2687
|
+
entityFqdn?: string;
|
|
2688
|
+
/**
|
|
2689
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
2690
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
2691
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
2692
|
+
*/
|
|
2693
|
+
slug?: string;
|
|
2694
|
+
/** ID of the entity associated with the event. */
|
|
2695
|
+
entityId?: string;
|
|
2696
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2697
|
+
eventTime?: Date | null;
|
|
2698
|
+
/**
|
|
2699
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2700
|
+
* (for example, GDPR).
|
|
2701
|
+
*/
|
|
2702
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2703
|
+
/** If present, indicates the action that triggered the event. */
|
|
2704
|
+
originatedFrom?: string | null;
|
|
2705
|
+
/**
|
|
2706
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
2707
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
2708
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
2709
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
2710
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
2711
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
2712
|
+
*/
|
|
2713
|
+
entityEventSequence?: string | null;
|
|
2714
|
+
}
|
|
2715
|
+
/** @oneof */
|
|
2716
|
+
interface DomainEventBodyOneOf {
|
|
2717
|
+
createdEvent?: EntityCreatedEvent;
|
|
2718
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2719
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2720
|
+
actionEvent?: ActionEvent;
|
|
2721
|
+
}
|
|
2722
|
+
interface EntityCreatedEvent {
|
|
2723
|
+
entity?: string;
|
|
2724
|
+
}
|
|
2725
|
+
interface RestoreInfo {
|
|
2726
|
+
deletedDate?: Date | null;
|
|
2727
|
+
}
|
|
2728
|
+
interface EntityUpdatedEvent {
|
|
2729
|
+
/**
|
|
2730
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2731
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2732
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2733
|
+
*/
|
|
2734
|
+
currentEntity?: string;
|
|
2735
|
+
}
|
|
2736
|
+
interface EntityDeletedEvent {
|
|
2737
|
+
/** Entity that was deleted */
|
|
2738
|
+
deletedEntity?: string | null;
|
|
2739
|
+
}
|
|
2740
|
+
interface ActionEvent {
|
|
2741
|
+
body?: string;
|
|
2742
|
+
}
|
|
2743
|
+
interface MessageEnvelope {
|
|
2744
|
+
/**
|
|
2745
|
+
* App instance ID.
|
|
2746
|
+
* @format GUID
|
|
2747
|
+
*/
|
|
2748
|
+
instanceId?: string | null;
|
|
2749
|
+
/**
|
|
2750
|
+
* Event type.
|
|
2751
|
+
* @maxLength 150
|
|
2752
|
+
*/
|
|
2753
|
+
eventType?: string;
|
|
2754
|
+
/** The identification type and identity data. */
|
|
2755
|
+
identity?: IdentificationData;
|
|
2756
|
+
/** Stringify payload. */
|
|
2757
|
+
data?: string;
|
|
2758
|
+
}
|
|
2759
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2760
|
+
/**
|
|
2761
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2762
|
+
* @format GUID
|
|
2763
|
+
*/
|
|
2764
|
+
anonymousVisitorId?: string;
|
|
2765
|
+
/**
|
|
2766
|
+
* ID of a site visitor that has logged in to the site.
|
|
2767
|
+
* @format GUID
|
|
2768
|
+
*/
|
|
2769
|
+
memberId?: string;
|
|
2770
|
+
/**
|
|
2771
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2772
|
+
* @format GUID
|
|
2773
|
+
*/
|
|
2774
|
+
wixUserId?: string;
|
|
2775
|
+
/**
|
|
2776
|
+
* ID of an app.
|
|
2777
|
+
* @format GUID
|
|
2778
|
+
*/
|
|
2779
|
+
appId?: string;
|
|
2780
|
+
/** @readonly */
|
|
2781
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2782
|
+
}
|
|
2783
|
+
/** @oneof */
|
|
2784
|
+
interface IdentificationDataIdOneOf {
|
|
2785
|
+
/**
|
|
2786
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2787
|
+
* @format GUID
|
|
2788
|
+
*/
|
|
2789
|
+
anonymousVisitorId?: string;
|
|
2790
|
+
/**
|
|
2791
|
+
* ID of a site visitor that has logged in to the site.
|
|
2792
|
+
* @format GUID
|
|
2793
|
+
*/
|
|
2794
|
+
memberId?: string;
|
|
2795
|
+
/**
|
|
2796
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2797
|
+
* @format GUID
|
|
2798
|
+
*/
|
|
2799
|
+
wixUserId?: string;
|
|
2800
|
+
/**
|
|
2801
|
+
* ID of an app.
|
|
2802
|
+
* @format GUID
|
|
2803
|
+
*/
|
|
2804
|
+
appId?: string;
|
|
2805
|
+
}
|
|
2806
|
+
declare enum WebhookIdentityType {
|
|
2807
|
+
UNKNOWN = "UNKNOWN",
|
|
2808
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2809
|
+
MEMBER = "MEMBER",
|
|
2810
|
+
WIX_USER = "WIX_USER",
|
|
2811
|
+
APP = "APP"
|
|
2812
|
+
}
|
|
2813
|
+
/** @enumType */
|
|
2814
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2815
|
+
interface AccountInfo {
|
|
2816
|
+
/**
|
|
2817
|
+
* ID of the Wix account associated with the event.
|
|
2818
|
+
* @format GUID
|
|
2819
|
+
*/
|
|
2820
|
+
accountId?: string | null;
|
|
2821
|
+
/**
|
|
2822
|
+
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
2823
|
+
* @format GUID
|
|
2824
|
+
*/
|
|
2825
|
+
parentAccountId?: string | null;
|
|
2826
|
+
/**
|
|
2827
|
+
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
2828
|
+
* @format GUID
|
|
2829
|
+
*/
|
|
2830
|
+
siteId?: string | null;
|
|
2831
|
+
}
|
|
2832
|
+
/** Get Blog Publications Count Stats request */
|
|
2833
|
+
interface QueryPublicationsCountStatsRequest {
|
|
2834
|
+
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2835
|
+
rangeStart?: Date | null;
|
|
2836
|
+
/** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2837
|
+
rangeEnd?: Date | null;
|
|
2838
|
+
/** Order of the returned results. */
|
|
2839
|
+
order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
|
|
2840
|
+
/** Number of months to include in the response. */
|
|
2841
|
+
months?: number;
|
|
2842
|
+
/**
|
|
2843
|
+
* Language filter
|
|
2844
|
+
*
|
|
2845
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2846
|
+
* @format LANGUAGE_TAG
|
|
2847
|
+
*/
|
|
2848
|
+
language?: string | null;
|
|
2849
|
+
/**
|
|
2850
|
+
* Timezone of the client.
|
|
2851
|
+
* @minLength 3
|
|
2852
|
+
* @maxLength 100
|
|
2853
|
+
*/
|
|
2854
|
+
timeZone?: string | null;
|
|
2855
|
+
}
|
|
2856
|
+
declare enum QueryPublicationsCountStatsRequestOrder {
|
|
2857
|
+
UNKNOWN = "UNKNOWN",
|
|
2858
|
+
OLDEST = "OLDEST",
|
|
2859
|
+
NEWEST = "NEWEST"
|
|
2860
|
+
}
|
|
2861
|
+
/** @enumType */
|
|
2862
|
+
type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
|
|
2863
|
+
/** Get Blog Publications Count Stats response */
|
|
2864
|
+
interface QueryPublicationsCountStatsResponse {
|
|
2865
|
+
/** Chronologically ordered list of publications. */
|
|
2866
|
+
stats?: PeriodPublicationsCount[];
|
|
2867
|
+
}
|
|
2868
|
+
/** Publications count for a specific time period */
|
|
2869
|
+
interface PeriodPublicationsCount {
|
|
2870
|
+
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2871
|
+
periodStart?: Date | null;
|
|
2872
|
+
/** Number of posts published during this month. */
|
|
2873
|
+
publicationsCount?: number;
|
|
2874
|
+
}
|
|
2875
|
+
/** Get Blog Post Count Stats request */
|
|
2876
|
+
interface QueryPostCountStatsRequest {
|
|
2877
|
+
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2878
|
+
rangeStart?: Date | null;
|
|
2879
|
+
/**
|
|
2880
|
+
* Order of returned results.
|
|
2881
|
+
*
|
|
2882
|
+
* - `OLDEST`: posts by date in ascending order.
|
|
2883
|
+
* - `NEWEST`: posts by date in descending order.
|
|
2884
|
+
*
|
|
2885
|
+
* Default: `OLDEST`
|
|
2886
|
+
*/
|
|
2887
|
+
order?: OrderWithLiterals;
|
|
2888
|
+
/** Number of months to include in response. */
|
|
2889
|
+
months?: number;
|
|
2890
|
+
/**
|
|
2891
|
+
* Language filter.
|
|
2892
|
+
*
|
|
2893
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2894
|
+
* Pass a language to only receive the period post count for that specified language.
|
|
2895
|
+
* @format LANGUAGE_TAG
|
|
2896
|
+
*/
|
|
2897
|
+
language?: string | null;
|
|
2898
|
+
/**
|
|
2899
|
+
* Time zone to use when calculating the start of the month.
|
|
2900
|
+
*
|
|
2901
|
+
* [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
|
|
2902
|
+
* @minLength 3
|
|
2903
|
+
* @maxLength 100
|
|
2904
|
+
*/
|
|
2905
|
+
timeZone?: string | null;
|
|
2906
|
+
}
|
|
2907
|
+
declare enum Order {
|
|
2908
|
+
UNKNOWN = "UNKNOWN",
|
|
2909
|
+
OLDEST = "OLDEST",
|
|
2910
|
+
NEWEST = "NEWEST"
|
|
2911
|
+
}
|
|
2912
|
+
/** @enumType */
|
|
2913
|
+
type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
|
|
2914
|
+
/** Get Blog Post Count Stats response */
|
|
2915
|
+
interface QueryPostCountStatsResponse {
|
|
2916
|
+
/** List of published post counts by month. */
|
|
2917
|
+
stats?: PeriodPostCount[];
|
|
2918
|
+
}
|
|
2919
|
+
/** Post count for a specific time period */
|
|
2920
|
+
interface PeriodPostCount {
|
|
2921
|
+
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2922
|
+
periodStart?: Date | null;
|
|
2923
|
+
/** Number of posts published during this month. */
|
|
2924
|
+
postCount?: number;
|
|
2925
|
+
}
|
|
2926
|
+
interface GetTotalPublicationsRequest {
|
|
2927
|
+
/**
|
|
2928
|
+
* Language filter
|
|
2929
|
+
* @minLength 2
|
|
2930
|
+
* @format LANGUAGE_TAG
|
|
2931
|
+
*/
|
|
2932
|
+
language?: string | null;
|
|
2933
|
+
}
|
|
2934
|
+
interface GetTotalPublicationsResponse {
|
|
2935
|
+
/** Total amount of publications. */
|
|
2936
|
+
total?: number;
|
|
2937
|
+
}
|
|
2938
|
+
interface GetTotalPostsRequest {
|
|
2939
|
+
/**
|
|
2940
|
+
* Language filter.
|
|
2941
|
+
*
|
|
2942
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2943
|
+
* Pass a language to receive the total amount of posts in that specified language.
|
|
2944
|
+
* @format LANGUAGE_TAG
|
|
2945
|
+
*/
|
|
2946
|
+
language?: string | null;
|
|
2947
|
+
}
|
|
2948
|
+
interface GetTotalPostsResponse {
|
|
2949
|
+
/** Total amount of published posts. */
|
|
2950
|
+
total?: number;
|
|
2951
|
+
}
|
|
2952
2952
|
interface GetTotalLikesPerMemberRequest {
|
|
2953
2953
|
/**
|
|
2954
2954
|
* Member ID.
|
|
@@ -4111,4 +4111,4 @@ type PostQuery = {
|
|
|
4111
4111
|
*/
|
|
4112
4112
|
declare function getPostMetrics(postId: string): Promise<NonNullablePaths<GetPostMetricsResponse, `metrics.comments` | `metrics.likes` | `metrics.views`, 3>>;
|
|
4113
4113
|
|
|
4114
|
-
export { type
|
|
4114
|
+
export { type AccountInfo, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkGetPostReactionsRequest, type BulkGetPostReactionsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type Category, type CategoryTranslation, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonQueryWithEntityContext, type ConvertDraftJsToRichContentRequest, type ConvertDraftJsToRichContentResponse, type ConvertRichContentToDraftJsRequest, type ConvertRichContentToDraftJsResponse, type CoverMedia, type CoverMediaMediaOneOf, type CreateDraftPostFromTemplateRequest, type CreateDraftPostFromTemplateResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftPost, type DraftPostTranslation, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetPostBySlugOptions, type GetPostBySlugRequest, type GetPostBySlugResponse, type GetPostCountPerMonthRequest, type GetPostCountPerMonthResponse, type GetPostMetricsRequest, type GetPostMetricsResponse, type GetPostOptions, type GetPostRequest, type GetPostResponse, GetPostTemplatesSort, type GetPostTemplatesSortWithLiterals, GetPostsSort, type GetPostsSortWithLiterals, type GetTemplateRequest, type GetTemplateResponse, type GetTotalLikesPerMemberRequest, type GetTotalLikesPerMemberResponse, type GetTotalPostsOptions, type GetTotalPostsRequest, type GetTotalPostsResponse, type GetTotalPublicationsRequest, type GetTotalPublicationsResponse, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPostsCopied, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LikePostRequest, type LikePostResponse, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDemoPostsRequest, type ListDemoPostsResponse, type ListPostsArchiveRequest, type ListPostsArchiveResponse, type ListPostsOptions, type ListPostsRequest, type ListPostsResponse, type ListTemplatesRequest, type ListTemplatesResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type Metrics, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type OldBlogMigratedEvent, type Option, type OptionDesign, type OptionLayout, Order, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type PeriodPostCount, type PeriodPublicationsCount, type Permissions, type PinPostRequest, type PinPostResponse, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Post, type PostCategoriesUpdated, type PostCountInfo, type PostCountPerMonth, type PostCountersUpdated, type PostCountersUpdatedInitiatorOneOf, type PostCreatedEnvelope, type PostDeletedEnvelope, PostFieldField, type PostFieldFieldWithLiterals, type PostLiked, type PostLikedEnvelope, type PostLikedInitiatorOneOf, type PostOwnerChanged, type PostQuery, type PostQuerySpec, type PostTagsUpdated, type PostTranslation, type PostUnliked, type PostUnlikedEnvelope, type PostUnlikedInitiatorOneOf, type PostUpdatedEnvelope, type PostsQueryBuilder, type PostsQueryResult, type PricingData, type QueryPostCountStatsOptions, type QueryPostCountStatsRequest, type QueryPostCountStatsResponse, type QueryPostsOptions, type QueryPostsRequest, type QueryPostsResponse, type QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsRequestOrder, type QueryPublicationsCountStatsRequestOrderWithLiterals, type QueryPublicationsCountStatsResponse, type Reactions, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type ScheduledPostPublished, type SeoSchema, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, type UnlikePostRequest, type UnlikePostResponse, type UnpinPostRequest, type UnpinPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, type ViewPostRequest, type ViewPostResponse, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, onPostCreated, onPostDeleted, onPostLiked, onPostUnliked, onPostUpdated, queryPostCountStats, queryPosts, typedQueryPosts };
|