@wix/blog 1.0.220 → 1.0.222
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/src/blog-v3-category.public.d.ts +1 -1
- package/build/cjs/src/blog-v3-category.types.d.ts +75 -2
- package/build/cjs/src/blog-v3-category.universal.d.ts +73 -0
- package/build/cjs/src/blog-v3-category.universal.js.map +1 -1
- package/build/cjs/src/blog-v3-post.types.d.ts +2 -2
- package/build/cjs/src/blog-v3-tag.public.d.ts +1 -1
- package/build/cjs/src/blog-v3-tag.types.d.ts +75 -2
- package/build/cjs/src/blog-v3-tag.universal.d.ts +73 -0
- package/build/cjs/src/blog-v3-tag.universal.js.map +1 -1
- package/build/es/src/blog-v3-category.public.d.ts +1 -1
- package/build/es/src/blog-v3-category.types.d.ts +75 -2
- package/build/es/src/blog-v3-category.universal.d.ts +73 -0
- package/build/es/src/blog-v3-category.universal.js.map +1 -1
- package/build/es/src/blog-v3-post.types.d.ts +2 -2
- package/build/es/src/blog-v3-tag.public.d.ts +1 -1
- package/build/es/src/blog-v3-tag.types.d.ts +75 -2
- package/build/es/src/blog-v3-tag.universal.d.ts +73 -0
- package/build/es/src/blog-v3-tag.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -39,4 +39,4 @@ export declare function getCategoryBySlug(httpClient: HttpClient): (slug: string
|
|
|
39
39
|
export declare function listCategories(httpClient: HttpClient): (options?: ListCategoriesOptions) => Promise<import("./blog-v3-category.universal").ListCategoriesResponse & import("./blog-v3-category.universal").ListCategoriesResponseNonNullableFields>;
|
|
40
40
|
export declare function queryCategories(httpClient: HttpClient): (options?: QueryCategoriesOptions) => import("./blog-v3-category.universal").CategoriesQueryBuilder;
|
|
41
41
|
export { Field, SortOrder } from './blog-v3-category.universal';
|
|
42
|
-
export { Category, CoverMedia, CoverMediaMediaOneOf, SeoSchema, Keyword, Tag, Settings, CategoryTranslation, InitialCategoriesCopied, CreateCategoryRequest, CreateCategoryResponse, BulkCreateCategoriesRequest, BulkCreateCategoriesResponse, BulkCategoryResult, ItemMetadata, ApplicationError, BulkActionMetadata, BulkUpdateCategoriesRequest, MaskedCategory, BulkUpdateCategoriesResponse, UpdateCategoryRequest, UpdateCategoryResponse, GetCategoryRequest, GetCategoryResponse, GetCategoryBySlugRequest, GetCategoryBySlugResponse, ListCategoriesRequest, BlogPaging, ListCategoriesResponse, MetaData, QueryCategoriesRequest, Sorting, PlatformQuery, PlatformQueryPagingMethodOneOf, Paging, CursorPaging, QueryCategoriesResponse, PagingMetadataV2, Cursors, DeleteCategoryRequest, DeleteCategoryResponse, GetCategoryResponseNonNullableFields, GetCategoryBySlugResponseNonNullableFields, ListCategoriesResponseNonNullableFields, QueryCategoriesResponseNonNullableFields, GetCategoryOptions, GetCategoryBySlugOptions, ListCategoriesOptions, QueryCategoriesOptions, CategoriesQueryResult, CategoriesQueryBuilder, } from './blog-v3-category.universal';
|
|
42
|
+
export { Category, CoverMedia, CoverMediaMediaOneOf, SeoSchema, Keyword, Tag, Settings, CategoryTranslation, InitialCategoriesCopied, CreateCategoryRequest, CreateCategoryResponse, BulkCreateCategoriesRequest, BulkCreateCategoriesResponse, BulkCategoryResult, ItemMetadata, ApplicationError, BulkActionMetadata, BulkUpdateCategoriesRequest, MaskedCategory, BulkUpdateCategoriesResponse, UpdateCategoryRequest, UpdateCategoryResponse, GetCategoryRequest, GetCategoryResponse, GetCategoryBySlugRequest, GetCategoryBySlugResponse, ListCategoriesRequest, BlogPaging, ListCategoriesResponse, MetaData, QueryCategoriesRequest, Sorting, PlatformQuery, PlatformQueryPagingMethodOneOf, Paging, CursorPaging, QueryCategoriesResponse, PagingMetadataV2, Cursors, BulkDeleteCategoryRequest, BulkDeleteCategoryResponse, DeleteCategoryRequest, DeleteCategoryResponse, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, GetCategoryResponseNonNullableFields, GetCategoryBySlugResponseNonNullableFields, ListCategoriesResponseNonNullableFields, QueryCategoriesResponseNonNullableFields, GetCategoryOptions, GetCategoryBySlugOptions, ListCategoriesOptions, QueryCategoriesOptions, CategoriesQueryResult, CategoriesQueryBuilder, } from './blog-v3-category.universal';
|
|
@@ -69,9 +69,9 @@ export interface Category {
|
|
|
69
69
|
coverImage?: Image;
|
|
70
70
|
}
|
|
71
71
|
export interface PageUrl {
|
|
72
|
-
/** The base URL. For premium sites, this
|
|
72
|
+
/** The base URL. For premium sites, this is the domain. For free sites, this is the site URL. For example, `mysite.wixsite.com/mysite`. */
|
|
73
73
|
base?: string;
|
|
74
|
-
/** The path
|
|
74
|
+
/** The relative path for the page within the site. For example, `/product-page/a-product`. */
|
|
75
75
|
path?: string;
|
|
76
76
|
}
|
|
77
77
|
export interface CoverMedia extends CoverMediaMediaOneOf {
|
|
@@ -547,12 +547,85 @@ export interface Cursors {
|
|
|
547
547
|
/** Cursor pointing to previous page in the list of results. */
|
|
548
548
|
prev?: string | null;
|
|
549
549
|
}
|
|
550
|
+
export interface BulkDeleteCategoryRequest {
|
|
551
|
+
/** Category IDs. */
|
|
552
|
+
categoryIds?: string[];
|
|
553
|
+
}
|
|
554
|
+
export interface BulkDeleteCategoryResponse {
|
|
555
|
+
}
|
|
550
556
|
export interface DeleteCategoryRequest {
|
|
551
557
|
/** Category ID. */
|
|
552
558
|
categoryId?: string;
|
|
553
559
|
}
|
|
554
560
|
export interface DeleteCategoryResponse {
|
|
555
561
|
}
|
|
562
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
563
|
+
createdEvent?: EntityCreatedEvent;
|
|
564
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
565
|
+
deletedEvent?: EntityDeletedEvent;
|
|
566
|
+
actionEvent?: ActionEvent;
|
|
567
|
+
/**
|
|
568
|
+
* Unique event ID.
|
|
569
|
+
* Allows clients to ignore duplicate webhooks.
|
|
570
|
+
*/
|
|
571
|
+
id?: string;
|
|
572
|
+
/**
|
|
573
|
+
* Assumes actions are also always typed to an entity_type
|
|
574
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
575
|
+
*/
|
|
576
|
+
entityFqdn?: string;
|
|
577
|
+
/**
|
|
578
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
579
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
580
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
581
|
+
*/
|
|
582
|
+
slug?: string;
|
|
583
|
+
/** ID of the entity associated with the event. */
|
|
584
|
+
entityId?: string;
|
|
585
|
+
/** Event timestamp. */
|
|
586
|
+
eventTime?: Date;
|
|
587
|
+
/**
|
|
588
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
589
|
+
* (for example, GDPR).
|
|
590
|
+
*/
|
|
591
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
592
|
+
/** If present, indicates the action that triggered the event. */
|
|
593
|
+
originatedFrom?: string | null;
|
|
594
|
+
/**
|
|
595
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
596
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
597
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
598
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
599
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
600
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
601
|
+
*/
|
|
602
|
+
entityEventSequence?: string | null;
|
|
603
|
+
}
|
|
604
|
+
/** @oneof */
|
|
605
|
+
export interface DomainEventBodyOneOf {
|
|
606
|
+
createdEvent?: EntityCreatedEvent;
|
|
607
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
608
|
+
deletedEvent?: EntityDeletedEvent;
|
|
609
|
+
actionEvent?: ActionEvent;
|
|
610
|
+
}
|
|
611
|
+
export interface EntityCreatedEvent {
|
|
612
|
+
entityAsJson?: string;
|
|
613
|
+
}
|
|
614
|
+
export interface EntityUpdatedEvent {
|
|
615
|
+
/**
|
|
616
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
617
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
618
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
619
|
+
*/
|
|
620
|
+
currentEntityAsJson?: string;
|
|
621
|
+
}
|
|
622
|
+
export interface EntityDeletedEvent {
|
|
623
|
+
/** Entity that was deleted */
|
|
624
|
+
deletedEntityAsJson?: string | null;
|
|
625
|
+
}
|
|
626
|
+
export interface ActionEvent {
|
|
627
|
+
bodyAsJson?: string;
|
|
628
|
+
}
|
|
556
629
|
export interface GetCategoryResponseNonNullableFields {
|
|
557
630
|
category?: {
|
|
558
631
|
id: string;
|
|
@@ -496,12 +496,85 @@ export interface Cursors {
|
|
|
496
496
|
/** Cursor pointing to previous page in the list of results. */
|
|
497
497
|
prev?: string | null;
|
|
498
498
|
}
|
|
499
|
+
export interface BulkDeleteCategoryRequest {
|
|
500
|
+
/** Category IDs. */
|
|
501
|
+
categoryIds?: string[];
|
|
502
|
+
}
|
|
503
|
+
export interface BulkDeleteCategoryResponse {
|
|
504
|
+
}
|
|
499
505
|
export interface DeleteCategoryRequest {
|
|
500
506
|
/** Category ID. */
|
|
501
507
|
categoryId?: string;
|
|
502
508
|
}
|
|
503
509
|
export interface DeleteCategoryResponse {
|
|
504
510
|
}
|
|
511
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
512
|
+
createdEvent?: EntityCreatedEvent;
|
|
513
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
514
|
+
deletedEvent?: EntityDeletedEvent;
|
|
515
|
+
actionEvent?: ActionEvent;
|
|
516
|
+
/**
|
|
517
|
+
* Unique event ID.
|
|
518
|
+
* Allows clients to ignore duplicate webhooks.
|
|
519
|
+
*/
|
|
520
|
+
_id?: string;
|
|
521
|
+
/**
|
|
522
|
+
* Assumes actions are also always typed to an entity_type
|
|
523
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
524
|
+
*/
|
|
525
|
+
entityFqdn?: string;
|
|
526
|
+
/**
|
|
527
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
528
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
529
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
530
|
+
*/
|
|
531
|
+
slug?: string;
|
|
532
|
+
/** ID of the entity associated with the event. */
|
|
533
|
+
entityId?: string;
|
|
534
|
+
/** Event timestamp. */
|
|
535
|
+
eventTime?: Date;
|
|
536
|
+
/**
|
|
537
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
538
|
+
* (for example, GDPR).
|
|
539
|
+
*/
|
|
540
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
541
|
+
/** If present, indicates the action that triggered the event. */
|
|
542
|
+
originatedFrom?: string | null;
|
|
543
|
+
/**
|
|
544
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
545
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
546
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
547
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
548
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
549
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
550
|
+
*/
|
|
551
|
+
entityEventSequence?: string | null;
|
|
552
|
+
}
|
|
553
|
+
/** @oneof */
|
|
554
|
+
export interface DomainEventBodyOneOf {
|
|
555
|
+
createdEvent?: EntityCreatedEvent;
|
|
556
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
557
|
+
deletedEvent?: EntityDeletedEvent;
|
|
558
|
+
actionEvent?: ActionEvent;
|
|
559
|
+
}
|
|
560
|
+
export interface EntityCreatedEvent {
|
|
561
|
+
entityAsJson?: string;
|
|
562
|
+
}
|
|
563
|
+
export interface EntityUpdatedEvent {
|
|
564
|
+
/**
|
|
565
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
566
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
567
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
568
|
+
*/
|
|
569
|
+
currentEntityAsJson?: string;
|
|
570
|
+
}
|
|
571
|
+
export interface EntityDeletedEvent {
|
|
572
|
+
/** Entity that was deleted */
|
|
573
|
+
deletedEntityAsJson?: string | null;
|
|
574
|
+
}
|
|
575
|
+
export interface ActionEvent {
|
|
576
|
+
bodyAsJson?: string;
|
|
577
|
+
}
|
|
505
578
|
export interface GetCategoryResponseNonNullableFields {
|
|
506
579
|
category?: {
|
|
507
580
|
_id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blog-v3-category.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAIiC;AACjC,sEAAuF;AAEvF,qFAAuE;AACvE,aAAa;AACb,4FAA6E;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAEY,QAAA,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AA6K5B,IAAY,KAaX;AAbD,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX;;;OAGG;IACH,oCAA2B,CAAA;IAC3B,yBAAyB;IACzB,oBAAW,CAAA;IACX,6BAA6B;IAC7B,sCAA6B,CAAA;AAC/B,CAAC,EAbW,KAAK,qBAAL,KAAK,QAahB;AAqQD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"blog-v3-category.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -134,9 +134,9 @@ export interface Post {
|
|
|
134
134
|
internalRelatedPostIds?: string[];
|
|
135
135
|
}
|
|
136
136
|
export interface PageUrl {
|
|
137
|
-
/** The base URL. For premium sites, this
|
|
137
|
+
/** The base URL. For premium sites, this is the domain. For free sites, this is the site URL. For example, `mysite.wixsite.com/mysite`. */
|
|
138
138
|
base?: string;
|
|
139
|
-
/** The path
|
|
139
|
+
/** The relative path for the page within the site. For example, `/product-page/a-product`. */
|
|
140
140
|
path?: string;
|
|
141
141
|
}
|
|
142
142
|
export interface CoverMedia extends CoverMediaMediaOneOf {
|
|
@@ -16,4 +16,4 @@ export declare function getTag(httpClient: HttpClient): (tagId: string, options?
|
|
|
16
16
|
export declare function getTagBySlug(httpClient: HttpClient): (slug: string, options?: GetTagBySlugOptions) => Promise<import("./blog-v3-tag.universal").GetTagBySlugResponse & import("./blog-v3-tag.universal").GetTagBySlugResponseNonNullableFields>;
|
|
17
17
|
export declare function queryTags(httpClient: HttpClient): (options?: QueryTagsOptions) => import("./blog-v3-tag.universal").TagsQueryBuilder;
|
|
18
18
|
export { Field, SortOrder } from './blog-v3-tag.universal';
|
|
19
|
-
export { Tag, SeoSchema, Keyword, SeoSchemaTag, Settings, InitialTagsCopied, GetOrCreateTagRequest, GetOrCreateTagResponse, CreateTagRequest, CreateTagResponse, UpdateTagRequest, UpdateTagResponse, BulkCreateTagsRequest, BulkCreateTagsResponse, BulkTagResult, ItemMetadata, ApplicationError, BulkActionMetadata, GetTagByLabelRequest, GetTagByLabelResponse, GetTagRequest, GetTagResponse, GetTagBySlugRequest, GetTagBySlugResponse, QueryTagsRequest, Sorting, Paging, TagsFieldSet, PlatformQuery, PlatformQueryPagingMethodOneOf, CursorPaging, QueryTagsResponse, MetaData, PagingMetadataV2, Cursors, ListTagsRequest, ListTagsRequestPagingMethodOneOf, ListTagsResponse, DeleteTagRequest, DeleteTagResponse, GetTagByLabelResponseNonNullableFields, GetTagResponseNonNullableFields, GetTagBySlugResponseNonNullableFields, QueryTagsResponseNonNullableFields, GetTagByLabelOptions, GetTagOptions, GetTagBySlugOptions, QueryTagsOptions, TagsQueryResult, TagsQueryBuilder, } from './blog-v3-tag.universal';
|
|
19
|
+
export { Tag, SeoSchema, Keyword, SeoSchemaTag, Settings, InitialTagsCopied, GetOrCreateTagRequest, GetOrCreateTagResponse, CreateTagRequest, CreateTagResponse, UpdateTagRequest, UpdateTagResponse, BulkCreateTagsRequest, BulkCreateTagsResponse, BulkTagResult, ItemMetadata, ApplicationError, BulkActionMetadata, GetTagByLabelRequest, GetTagByLabelResponse, GetTagRequest, GetTagResponse, GetTagBySlugRequest, GetTagBySlugResponse, QueryTagsRequest, Sorting, Paging, TagsFieldSet, PlatformQuery, PlatformQueryPagingMethodOneOf, CursorPaging, QueryTagsResponse, MetaData, PagingMetadataV2, Cursors, ListTagsRequest, ListTagsRequestPagingMethodOneOf, ListTagsResponse, BulkDeleteTagRequest, BulkDeleteTagResponse, DeleteTagRequest, DeleteTagResponse, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, GetTagByLabelResponseNonNullableFields, GetTagResponseNonNullableFields, GetTagBySlugResponseNonNullableFields, QueryTagsResponseNonNullableFields, GetTagByLabelOptions, GetTagOptions, GetTagBySlugOptions, QueryTagsOptions, TagsQueryResult, TagsQueryBuilder, } from './blog-v3-tag.universal';
|
|
@@ -57,9 +57,9 @@ export interface Tag {
|
|
|
57
57
|
language?: string | null;
|
|
58
58
|
}
|
|
59
59
|
export interface PageUrl {
|
|
60
|
-
/** The base URL. For premium sites, this
|
|
60
|
+
/** The base URL. For premium sites, this is the domain. For free sites, this is the site URL. For example, `mysite.wixsite.com/mysite`. */
|
|
61
61
|
base?: string;
|
|
62
|
-
/** The path
|
|
62
|
+
/** The relative path for the page within the site. For example, `/product-page/a-product`. */
|
|
63
63
|
path?: string;
|
|
64
64
|
}
|
|
65
65
|
/**
|
|
@@ -461,12 +461,85 @@ export interface ListTagsResponse {
|
|
|
461
461
|
/** Details on the paged set of results returned. */
|
|
462
462
|
metaData?: MetaData;
|
|
463
463
|
}
|
|
464
|
+
export interface BulkDeleteTagRequest {
|
|
465
|
+
/** Tag IDs. */
|
|
466
|
+
tagIds?: string[];
|
|
467
|
+
}
|
|
468
|
+
export interface BulkDeleteTagResponse {
|
|
469
|
+
}
|
|
464
470
|
export interface DeleteTagRequest {
|
|
465
471
|
/** Tag ID. */
|
|
466
472
|
tagId?: string;
|
|
467
473
|
}
|
|
468
474
|
export interface DeleteTagResponse {
|
|
469
475
|
}
|
|
476
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
477
|
+
createdEvent?: EntityCreatedEvent;
|
|
478
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
479
|
+
deletedEvent?: EntityDeletedEvent;
|
|
480
|
+
actionEvent?: ActionEvent;
|
|
481
|
+
/**
|
|
482
|
+
* Unique event ID.
|
|
483
|
+
* Allows clients to ignore duplicate webhooks.
|
|
484
|
+
*/
|
|
485
|
+
id?: string;
|
|
486
|
+
/**
|
|
487
|
+
* Assumes actions are also always typed to an entity_type
|
|
488
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
489
|
+
*/
|
|
490
|
+
entityFqdn?: string;
|
|
491
|
+
/**
|
|
492
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
493
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
494
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
495
|
+
*/
|
|
496
|
+
slug?: string;
|
|
497
|
+
/** ID of the entity associated with the event. */
|
|
498
|
+
entityId?: string;
|
|
499
|
+
/** Event timestamp. */
|
|
500
|
+
eventTime?: Date;
|
|
501
|
+
/**
|
|
502
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
503
|
+
* (for example, GDPR).
|
|
504
|
+
*/
|
|
505
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
506
|
+
/** If present, indicates the action that triggered the event. */
|
|
507
|
+
originatedFrom?: string | null;
|
|
508
|
+
/**
|
|
509
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
510
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
511
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
512
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
513
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
514
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
515
|
+
*/
|
|
516
|
+
entityEventSequence?: string | null;
|
|
517
|
+
}
|
|
518
|
+
/** @oneof */
|
|
519
|
+
export interface DomainEventBodyOneOf {
|
|
520
|
+
createdEvent?: EntityCreatedEvent;
|
|
521
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
522
|
+
deletedEvent?: EntityDeletedEvent;
|
|
523
|
+
actionEvent?: ActionEvent;
|
|
524
|
+
}
|
|
525
|
+
export interface EntityCreatedEvent {
|
|
526
|
+
entityAsJson?: string;
|
|
527
|
+
}
|
|
528
|
+
export interface EntityUpdatedEvent {
|
|
529
|
+
/**
|
|
530
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
531
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
532
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
533
|
+
*/
|
|
534
|
+
currentEntityAsJson?: string;
|
|
535
|
+
}
|
|
536
|
+
export interface EntityDeletedEvent {
|
|
537
|
+
/** Entity that was deleted */
|
|
538
|
+
deletedEntityAsJson?: string | null;
|
|
539
|
+
}
|
|
540
|
+
export interface ActionEvent {
|
|
541
|
+
bodyAsJson?: string;
|
|
542
|
+
}
|
|
470
543
|
export interface GetTagByLabelResponseNonNullableFields {
|
|
471
544
|
tag?: {
|
|
472
545
|
id: string;
|
|
@@ -467,12 +467,85 @@ export interface ListTagsResponse {
|
|
|
467
467
|
/** Details on the paged set of results returned. */
|
|
468
468
|
metaData?: MetaData;
|
|
469
469
|
}
|
|
470
|
+
export interface BulkDeleteTagRequest {
|
|
471
|
+
/** Tag IDs. */
|
|
472
|
+
tagIds?: string[];
|
|
473
|
+
}
|
|
474
|
+
export interface BulkDeleteTagResponse {
|
|
475
|
+
}
|
|
470
476
|
export interface DeleteTagRequest {
|
|
471
477
|
/** Tag ID. */
|
|
472
478
|
tagId?: string;
|
|
473
479
|
}
|
|
474
480
|
export interface DeleteTagResponse {
|
|
475
481
|
}
|
|
482
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
483
|
+
createdEvent?: EntityCreatedEvent;
|
|
484
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
485
|
+
deletedEvent?: EntityDeletedEvent;
|
|
486
|
+
actionEvent?: ActionEvent;
|
|
487
|
+
/**
|
|
488
|
+
* Unique event ID.
|
|
489
|
+
* Allows clients to ignore duplicate webhooks.
|
|
490
|
+
*/
|
|
491
|
+
_id?: string;
|
|
492
|
+
/**
|
|
493
|
+
* Assumes actions are also always typed to an entity_type
|
|
494
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
495
|
+
*/
|
|
496
|
+
entityFqdn?: string;
|
|
497
|
+
/**
|
|
498
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
499
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
500
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
501
|
+
*/
|
|
502
|
+
slug?: string;
|
|
503
|
+
/** ID of the entity associated with the event. */
|
|
504
|
+
entityId?: string;
|
|
505
|
+
/** Event timestamp. */
|
|
506
|
+
eventTime?: Date;
|
|
507
|
+
/**
|
|
508
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
509
|
+
* (for example, GDPR).
|
|
510
|
+
*/
|
|
511
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
512
|
+
/** If present, indicates the action that triggered the event. */
|
|
513
|
+
originatedFrom?: string | null;
|
|
514
|
+
/**
|
|
515
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
516
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
517
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
518
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
519
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
520
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
521
|
+
*/
|
|
522
|
+
entityEventSequence?: string | null;
|
|
523
|
+
}
|
|
524
|
+
/** @oneof */
|
|
525
|
+
export interface DomainEventBodyOneOf {
|
|
526
|
+
createdEvent?: EntityCreatedEvent;
|
|
527
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
528
|
+
deletedEvent?: EntityDeletedEvent;
|
|
529
|
+
actionEvent?: ActionEvent;
|
|
530
|
+
}
|
|
531
|
+
export interface EntityCreatedEvent {
|
|
532
|
+
entityAsJson?: string;
|
|
533
|
+
}
|
|
534
|
+
export interface EntityUpdatedEvent {
|
|
535
|
+
/**
|
|
536
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
537
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
538
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
539
|
+
*/
|
|
540
|
+
currentEntityAsJson?: string;
|
|
541
|
+
}
|
|
542
|
+
export interface EntityDeletedEvent {
|
|
543
|
+
/** Entity that was deleted */
|
|
544
|
+
deletedEntityAsJson?: string | null;
|
|
545
|
+
}
|
|
546
|
+
export interface ActionEvent {
|
|
547
|
+
bodyAsJson?: string;
|
|
548
|
+
}
|
|
476
549
|
export interface GetTagByLabelResponseNonNullableFields {
|
|
477
550
|
tag?: {
|
|
478
551
|
_id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blog-v3-tag.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-tag.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAIiC;AACjC,sEAAuF;AAEvF,2EAA6D;AAC7D,aAAa;AACb,4FAA6E;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAEY,QAAA,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AA2I5B,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,qCAAqC;IACrC,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AAkOD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"blog-v3-tag.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-tag.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -39,4 +39,4 @@ export declare function getCategoryBySlug(httpClient: HttpClient): (slug: string
|
|
|
39
39
|
export declare function listCategories(httpClient: HttpClient): (options?: ListCategoriesOptions) => Promise<import("./blog-v3-category.universal").ListCategoriesResponse & import("./blog-v3-category.universal").ListCategoriesResponseNonNullableFields>;
|
|
40
40
|
export declare function queryCategories(httpClient: HttpClient): (options?: QueryCategoriesOptions) => import("./blog-v3-category.universal").CategoriesQueryBuilder;
|
|
41
41
|
export { Field, SortOrder } from './blog-v3-category.universal';
|
|
42
|
-
export { Category, CoverMedia, CoverMediaMediaOneOf, SeoSchema, Keyword, Tag, Settings, CategoryTranslation, InitialCategoriesCopied, CreateCategoryRequest, CreateCategoryResponse, BulkCreateCategoriesRequest, BulkCreateCategoriesResponse, BulkCategoryResult, ItemMetadata, ApplicationError, BulkActionMetadata, BulkUpdateCategoriesRequest, MaskedCategory, BulkUpdateCategoriesResponse, UpdateCategoryRequest, UpdateCategoryResponse, GetCategoryRequest, GetCategoryResponse, GetCategoryBySlugRequest, GetCategoryBySlugResponse, ListCategoriesRequest, BlogPaging, ListCategoriesResponse, MetaData, QueryCategoriesRequest, Sorting, PlatformQuery, PlatformQueryPagingMethodOneOf, Paging, CursorPaging, QueryCategoriesResponse, PagingMetadataV2, Cursors, DeleteCategoryRequest, DeleteCategoryResponse, GetCategoryResponseNonNullableFields, GetCategoryBySlugResponseNonNullableFields, ListCategoriesResponseNonNullableFields, QueryCategoriesResponseNonNullableFields, GetCategoryOptions, GetCategoryBySlugOptions, ListCategoriesOptions, QueryCategoriesOptions, CategoriesQueryResult, CategoriesQueryBuilder, } from './blog-v3-category.universal';
|
|
42
|
+
export { Category, CoverMedia, CoverMediaMediaOneOf, SeoSchema, Keyword, Tag, Settings, CategoryTranslation, InitialCategoriesCopied, CreateCategoryRequest, CreateCategoryResponse, BulkCreateCategoriesRequest, BulkCreateCategoriesResponse, BulkCategoryResult, ItemMetadata, ApplicationError, BulkActionMetadata, BulkUpdateCategoriesRequest, MaskedCategory, BulkUpdateCategoriesResponse, UpdateCategoryRequest, UpdateCategoryResponse, GetCategoryRequest, GetCategoryResponse, GetCategoryBySlugRequest, GetCategoryBySlugResponse, ListCategoriesRequest, BlogPaging, ListCategoriesResponse, MetaData, QueryCategoriesRequest, Sorting, PlatformQuery, PlatformQueryPagingMethodOneOf, Paging, CursorPaging, QueryCategoriesResponse, PagingMetadataV2, Cursors, BulkDeleteCategoryRequest, BulkDeleteCategoryResponse, DeleteCategoryRequest, DeleteCategoryResponse, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, GetCategoryResponseNonNullableFields, GetCategoryBySlugResponseNonNullableFields, ListCategoriesResponseNonNullableFields, QueryCategoriesResponseNonNullableFields, GetCategoryOptions, GetCategoryBySlugOptions, ListCategoriesOptions, QueryCategoriesOptions, CategoriesQueryResult, CategoriesQueryBuilder, } from './blog-v3-category.universal';
|
|
@@ -69,9 +69,9 @@ export interface Category {
|
|
|
69
69
|
coverImage?: Image;
|
|
70
70
|
}
|
|
71
71
|
export interface PageUrl {
|
|
72
|
-
/** The base URL. For premium sites, this
|
|
72
|
+
/** The base URL. For premium sites, this is the domain. For free sites, this is the site URL. For example, `mysite.wixsite.com/mysite`. */
|
|
73
73
|
base?: string;
|
|
74
|
-
/** The path
|
|
74
|
+
/** The relative path for the page within the site. For example, `/product-page/a-product`. */
|
|
75
75
|
path?: string;
|
|
76
76
|
}
|
|
77
77
|
export interface CoverMedia extends CoverMediaMediaOneOf {
|
|
@@ -547,12 +547,85 @@ export interface Cursors {
|
|
|
547
547
|
/** Cursor pointing to previous page in the list of results. */
|
|
548
548
|
prev?: string | null;
|
|
549
549
|
}
|
|
550
|
+
export interface BulkDeleteCategoryRequest {
|
|
551
|
+
/** Category IDs. */
|
|
552
|
+
categoryIds?: string[];
|
|
553
|
+
}
|
|
554
|
+
export interface BulkDeleteCategoryResponse {
|
|
555
|
+
}
|
|
550
556
|
export interface DeleteCategoryRequest {
|
|
551
557
|
/** Category ID. */
|
|
552
558
|
categoryId?: string;
|
|
553
559
|
}
|
|
554
560
|
export interface DeleteCategoryResponse {
|
|
555
561
|
}
|
|
562
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
563
|
+
createdEvent?: EntityCreatedEvent;
|
|
564
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
565
|
+
deletedEvent?: EntityDeletedEvent;
|
|
566
|
+
actionEvent?: ActionEvent;
|
|
567
|
+
/**
|
|
568
|
+
* Unique event ID.
|
|
569
|
+
* Allows clients to ignore duplicate webhooks.
|
|
570
|
+
*/
|
|
571
|
+
id?: string;
|
|
572
|
+
/**
|
|
573
|
+
* Assumes actions are also always typed to an entity_type
|
|
574
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
575
|
+
*/
|
|
576
|
+
entityFqdn?: string;
|
|
577
|
+
/**
|
|
578
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
579
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
580
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
581
|
+
*/
|
|
582
|
+
slug?: string;
|
|
583
|
+
/** ID of the entity associated with the event. */
|
|
584
|
+
entityId?: string;
|
|
585
|
+
/** Event timestamp. */
|
|
586
|
+
eventTime?: Date;
|
|
587
|
+
/**
|
|
588
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
589
|
+
* (for example, GDPR).
|
|
590
|
+
*/
|
|
591
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
592
|
+
/** If present, indicates the action that triggered the event. */
|
|
593
|
+
originatedFrom?: string | null;
|
|
594
|
+
/**
|
|
595
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
596
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
597
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
598
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
599
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
600
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
601
|
+
*/
|
|
602
|
+
entityEventSequence?: string | null;
|
|
603
|
+
}
|
|
604
|
+
/** @oneof */
|
|
605
|
+
export interface DomainEventBodyOneOf {
|
|
606
|
+
createdEvent?: EntityCreatedEvent;
|
|
607
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
608
|
+
deletedEvent?: EntityDeletedEvent;
|
|
609
|
+
actionEvent?: ActionEvent;
|
|
610
|
+
}
|
|
611
|
+
export interface EntityCreatedEvent {
|
|
612
|
+
entityAsJson?: string;
|
|
613
|
+
}
|
|
614
|
+
export interface EntityUpdatedEvent {
|
|
615
|
+
/**
|
|
616
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
617
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
618
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
619
|
+
*/
|
|
620
|
+
currentEntityAsJson?: string;
|
|
621
|
+
}
|
|
622
|
+
export interface EntityDeletedEvent {
|
|
623
|
+
/** Entity that was deleted */
|
|
624
|
+
deletedEntityAsJson?: string | null;
|
|
625
|
+
}
|
|
626
|
+
export interface ActionEvent {
|
|
627
|
+
bodyAsJson?: string;
|
|
628
|
+
}
|
|
556
629
|
export interface GetCategoryResponseNonNullableFields {
|
|
557
630
|
category?: {
|
|
558
631
|
id: string;
|
|
@@ -496,12 +496,85 @@ export interface Cursors {
|
|
|
496
496
|
/** Cursor pointing to previous page in the list of results. */
|
|
497
497
|
prev?: string | null;
|
|
498
498
|
}
|
|
499
|
+
export interface BulkDeleteCategoryRequest {
|
|
500
|
+
/** Category IDs. */
|
|
501
|
+
categoryIds?: string[];
|
|
502
|
+
}
|
|
503
|
+
export interface BulkDeleteCategoryResponse {
|
|
504
|
+
}
|
|
499
505
|
export interface DeleteCategoryRequest {
|
|
500
506
|
/** Category ID. */
|
|
501
507
|
categoryId?: string;
|
|
502
508
|
}
|
|
503
509
|
export interface DeleteCategoryResponse {
|
|
504
510
|
}
|
|
511
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
512
|
+
createdEvent?: EntityCreatedEvent;
|
|
513
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
514
|
+
deletedEvent?: EntityDeletedEvent;
|
|
515
|
+
actionEvent?: ActionEvent;
|
|
516
|
+
/**
|
|
517
|
+
* Unique event ID.
|
|
518
|
+
* Allows clients to ignore duplicate webhooks.
|
|
519
|
+
*/
|
|
520
|
+
_id?: string;
|
|
521
|
+
/**
|
|
522
|
+
* Assumes actions are also always typed to an entity_type
|
|
523
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
524
|
+
*/
|
|
525
|
+
entityFqdn?: string;
|
|
526
|
+
/**
|
|
527
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
528
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
529
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
530
|
+
*/
|
|
531
|
+
slug?: string;
|
|
532
|
+
/** ID of the entity associated with the event. */
|
|
533
|
+
entityId?: string;
|
|
534
|
+
/** Event timestamp. */
|
|
535
|
+
eventTime?: Date;
|
|
536
|
+
/**
|
|
537
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
538
|
+
* (for example, GDPR).
|
|
539
|
+
*/
|
|
540
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
541
|
+
/** If present, indicates the action that triggered the event. */
|
|
542
|
+
originatedFrom?: string | null;
|
|
543
|
+
/**
|
|
544
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
545
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
546
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
547
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
548
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
549
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
550
|
+
*/
|
|
551
|
+
entityEventSequence?: string | null;
|
|
552
|
+
}
|
|
553
|
+
/** @oneof */
|
|
554
|
+
export interface DomainEventBodyOneOf {
|
|
555
|
+
createdEvent?: EntityCreatedEvent;
|
|
556
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
557
|
+
deletedEvent?: EntityDeletedEvent;
|
|
558
|
+
actionEvent?: ActionEvent;
|
|
559
|
+
}
|
|
560
|
+
export interface EntityCreatedEvent {
|
|
561
|
+
entityAsJson?: string;
|
|
562
|
+
}
|
|
563
|
+
export interface EntityUpdatedEvent {
|
|
564
|
+
/**
|
|
565
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
566
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
567
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
568
|
+
*/
|
|
569
|
+
currentEntityAsJson?: string;
|
|
570
|
+
}
|
|
571
|
+
export interface EntityDeletedEvent {
|
|
572
|
+
/** Entity that was deleted */
|
|
573
|
+
deletedEntityAsJson?: string | null;
|
|
574
|
+
}
|
|
575
|
+
export interface ActionEvent {
|
|
576
|
+
bodyAsJson?: string;
|
|
577
|
+
}
|
|
505
578
|
export interface GetCategoryResponseNonNullableFields {
|
|
506
579
|
category?: {
|
|
507
580
|
_id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blog-v3-category.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category.universal.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,UAAU,EACV,cAAc,EACd,qCAAqC,GACtC,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAEvF,OAAO,KAAK,2BAA2B,MAAM,yBAAyB,CAAC;AACvE,aAAa;AACb,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AA6K5B,MAAM,CAAN,IAAY,KAaX;AAbD,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX;;;OAGG;IACH,oCAA2B,CAAA;IAC3B,yBAAyB;IACzB,oBAAW,CAAA;IACX,6BAA6B;IAC7B,sCAA6B,CAAA;AAC/B,CAAC,EAbW,KAAK,KAAL,KAAK,QAahB;AAqQD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"blog-v3-category.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -134,9 +134,9 @@ export interface Post {
|
|
|
134
134
|
internalRelatedPostIds?: string[];
|
|
135
135
|
}
|
|
136
136
|
export interface PageUrl {
|
|
137
|
-
/** The base URL. For premium sites, this
|
|
137
|
+
/** The base URL. For premium sites, this is the domain. For free sites, this is the site URL. For example, `mysite.wixsite.com/mysite`. */
|
|
138
138
|
base?: string;
|
|
139
|
-
/** The path
|
|
139
|
+
/** The relative path for the page within the site. For example, `/product-page/a-product`. */
|
|
140
140
|
path?: string;
|
|
141
141
|
}
|
|
142
142
|
export interface CoverMedia extends CoverMediaMediaOneOf {
|
|
@@ -16,4 +16,4 @@ export declare function getTag(httpClient: HttpClient): (tagId: string, options?
|
|
|
16
16
|
export declare function getTagBySlug(httpClient: HttpClient): (slug: string, options?: GetTagBySlugOptions) => Promise<import("./blog-v3-tag.universal").GetTagBySlugResponse & import("./blog-v3-tag.universal").GetTagBySlugResponseNonNullableFields>;
|
|
17
17
|
export declare function queryTags(httpClient: HttpClient): (options?: QueryTagsOptions) => import("./blog-v3-tag.universal").TagsQueryBuilder;
|
|
18
18
|
export { Field, SortOrder } from './blog-v3-tag.universal';
|
|
19
|
-
export { Tag, SeoSchema, Keyword, SeoSchemaTag, Settings, InitialTagsCopied, GetOrCreateTagRequest, GetOrCreateTagResponse, CreateTagRequest, CreateTagResponse, UpdateTagRequest, UpdateTagResponse, BulkCreateTagsRequest, BulkCreateTagsResponse, BulkTagResult, ItemMetadata, ApplicationError, BulkActionMetadata, GetTagByLabelRequest, GetTagByLabelResponse, GetTagRequest, GetTagResponse, GetTagBySlugRequest, GetTagBySlugResponse, QueryTagsRequest, Sorting, Paging, TagsFieldSet, PlatformQuery, PlatformQueryPagingMethodOneOf, CursorPaging, QueryTagsResponse, MetaData, PagingMetadataV2, Cursors, ListTagsRequest, ListTagsRequestPagingMethodOneOf, ListTagsResponse, DeleteTagRequest, DeleteTagResponse, GetTagByLabelResponseNonNullableFields, GetTagResponseNonNullableFields, GetTagBySlugResponseNonNullableFields, QueryTagsResponseNonNullableFields, GetTagByLabelOptions, GetTagOptions, GetTagBySlugOptions, QueryTagsOptions, TagsQueryResult, TagsQueryBuilder, } from './blog-v3-tag.universal';
|
|
19
|
+
export { Tag, SeoSchema, Keyword, SeoSchemaTag, Settings, InitialTagsCopied, GetOrCreateTagRequest, GetOrCreateTagResponse, CreateTagRequest, CreateTagResponse, UpdateTagRequest, UpdateTagResponse, BulkCreateTagsRequest, BulkCreateTagsResponse, BulkTagResult, ItemMetadata, ApplicationError, BulkActionMetadata, GetTagByLabelRequest, GetTagByLabelResponse, GetTagRequest, GetTagResponse, GetTagBySlugRequest, GetTagBySlugResponse, QueryTagsRequest, Sorting, Paging, TagsFieldSet, PlatformQuery, PlatformQueryPagingMethodOneOf, CursorPaging, QueryTagsResponse, MetaData, PagingMetadataV2, Cursors, ListTagsRequest, ListTagsRequestPagingMethodOneOf, ListTagsResponse, BulkDeleteTagRequest, BulkDeleteTagResponse, DeleteTagRequest, DeleteTagResponse, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, GetTagByLabelResponseNonNullableFields, GetTagResponseNonNullableFields, GetTagBySlugResponseNonNullableFields, QueryTagsResponseNonNullableFields, GetTagByLabelOptions, GetTagOptions, GetTagBySlugOptions, QueryTagsOptions, TagsQueryResult, TagsQueryBuilder, } from './blog-v3-tag.universal';
|
|
@@ -57,9 +57,9 @@ export interface Tag {
|
|
|
57
57
|
language?: string | null;
|
|
58
58
|
}
|
|
59
59
|
export interface PageUrl {
|
|
60
|
-
/** The base URL. For premium sites, this
|
|
60
|
+
/** The base URL. For premium sites, this is the domain. For free sites, this is the site URL. For example, `mysite.wixsite.com/mysite`. */
|
|
61
61
|
base?: string;
|
|
62
|
-
/** The path
|
|
62
|
+
/** The relative path for the page within the site. For example, `/product-page/a-product`. */
|
|
63
63
|
path?: string;
|
|
64
64
|
}
|
|
65
65
|
/**
|
|
@@ -461,12 +461,85 @@ export interface ListTagsResponse {
|
|
|
461
461
|
/** Details on the paged set of results returned. */
|
|
462
462
|
metaData?: MetaData;
|
|
463
463
|
}
|
|
464
|
+
export interface BulkDeleteTagRequest {
|
|
465
|
+
/** Tag IDs. */
|
|
466
|
+
tagIds?: string[];
|
|
467
|
+
}
|
|
468
|
+
export interface BulkDeleteTagResponse {
|
|
469
|
+
}
|
|
464
470
|
export interface DeleteTagRequest {
|
|
465
471
|
/** Tag ID. */
|
|
466
472
|
tagId?: string;
|
|
467
473
|
}
|
|
468
474
|
export interface DeleteTagResponse {
|
|
469
475
|
}
|
|
476
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
477
|
+
createdEvent?: EntityCreatedEvent;
|
|
478
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
479
|
+
deletedEvent?: EntityDeletedEvent;
|
|
480
|
+
actionEvent?: ActionEvent;
|
|
481
|
+
/**
|
|
482
|
+
* Unique event ID.
|
|
483
|
+
* Allows clients to ignore duplicate webhooks.
|
|
484
|
+
*/
|
|
485
|
+
id?: string;
|
|
486
|
+
/**
|
|
487
|
+
* Assumes actions are also always typed to an entity_type
|
|
488
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
489
|
+
*/
|
|
490
|
+
entityFqdn?: string;
|
|
491
|
+
/**
|
|
492
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
493
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
494
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
495
|
+
*/
|
|
496
|
+
slug?: string;
|
|
497
|
+
/** ID of the entity associated with the event. */
|
|
498
|
+
entityId?: string;
|
|
499
|
+
/** Event timestamp. */
|
|
500
|
+
eventTime?: Date;
|
|
501
|
+
/**
|
|
502
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
503
|
+
* (for example, GDPR).
|
|
504
|
+
*/
|
|
505
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
506
|
+
/** If present, indicates the action that triggered the event. */
|
|
507
|
+
originatedFrom?: string | null;
|
|
508
|
+
/**
|
|
509
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
510
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
511
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
512
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
513
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
514
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
515
|
+
*/
|
|
516
|
+
entityEventSequence?: string | null;
|
|
517
|
+
}
|
|
518
|
+
/** @oneof */
|
|
519
|
+
export interface DomainEventBodyOneOf {
|
|
520
|
+
createdEvent?: EntityCreatedEvent;
|
|
521
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
522
|
+
deletedEvent?: EntityDeletedEvent;
|
|
523
|
+
actionEvent?: ActionEvent;
|
|
524
|
+
}
|
|
525
|
+
export interface EntityCreatedEvent {
|
|
526
|
+
entityAsJson?: string;
|
|
527
|
+
}
|
|
528
|
+
export interface EntityUpdatedEvent {
|
|
529
|
+
/**
|
|
530
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
531
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
532
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
533
|
+
*/
|
|
534
|
+
currentEntityAsJson?: string;
|
|
535
|
+
}
|
|
536
|
+
export interface EntityDeletedEvent {
|
|
537
|
+
/** Entity that was deleted */
|
|
538
|
+
deletedEntityAsJson?: string | null;
|
|
539
|
+
}
|
|
540
|
+
export interface ActionEvent {
|
|
541
|
+
bodyAsJson?: string;
|
|
542
|
+
}
|
|
470
543
|
export interface GetTagByLabelResponseNonNullableFields {
|
|
471
544
|
tag?: {
|
|
472
545
|
id: string;
|
|
@@ -467,12 +467,85 @@ export interface ListTagsResponse {
|
|
|
467
467
|
/** Details on the paged set of results returned. */
|
|
468
468
|
metaData?: MetaData;
|
|
469
469
|
}
|
|
470
|
+
export interface BulkDeleteTagRequest {
|
|
471
|
+
/** Tag IDs. */
|
|
472
|
+
tagIds?: string[];
|
|
473
|
+
}
|
|
474
|
+
export interface BulkDeleteTagResponse {
|
|
475
|
+
}
|
|
470
476
|
export interface DeleteTagRequest {
|
|
471
477
|
/** Tag ID. */
|
|
472
478
|
tagId?: string;
|
|
473
479
|
}
|
|
474
480
|
export interface DeleteTagResponse {
|
|
475
481
|
}
|
|
482
|
+
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
483
|
+
createdEvent?: EntityCreatedEvent;
|
|
484
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
485
|
+
deletedEvent?: EntityDeletedEvent;
|
|
486
|
+
actionEvent?: ActionEvent;
|
|
487
|
+
/**
|
|
488
|
+
* Unique event ID.
|
|
489
|
+
* Allows clients to ignore duplicate webhooks.
|
|
490
|
+
*/
|
|
491
|
+
_id?: string;
|
|
492
|
+
/**
|
|
493
|
+
* Assumes actions are also always typed to an entity_type
|
|
494
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
495
|
+
*/
|
|
496
|
+
entityFqdn?: string;
|
|
497
|
+
/**
|
|
498
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
499
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
500
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
501
|
+
*/
|
|
502
|
+
slug?: string;
|
|
503
|
+
/** ID of the entity associated with the event. */
|
|
504
|
+
entityId?: string;
|
|
505
|
+
/** Event timestamp. */
|
|
506
|
+
eventTime?: Date;
|
|
507
|
+
/**
|
|
508
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
509
|
+
* (for example, GDPR).
|
|
510
|
+
*/
|
|
511
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
512
|
+
/** If present, indicates the action that triggered the event. */
|
|
513
|
+
originatedFrom?: string | null;
|
|
514
|
+
/**
|
|
515
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
516
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
517
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
518
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
519
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
520
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
521
|
+
*/
|
|
522
|
+
entityEventSequence?: string | null;
|
|
523
|
+
}
|
|
524
|
+
/** @oneof */
|
|
525
|
+
export interface DomainEventBodyOneOf {
|
|
526
|
+
createdEvent?: EntityCreatedEvent;
|
|
527
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
528
|
+
deletedEvent?: EntityDeletedEvent;
|
|
529
|
+
actionEvent?: ActionEvent;
|
|
530
|
+
}
|
|
531
|
+
export interface EntityCreatedEvent {
|
|
532
|
+
entityAsJson?: string;
|
|
533
|
+
}
|
|
534
|
+
export interface EntityUpdatedEvent {
|
|
535
|
+
/**
|
|
536
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
537
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
538
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
539
|
+
*/
|
|
540
|
+
currentEntityAsJson?: string;
|
|
541
|
+
}
|
|
542
|
+
export interface EntityDeletedEvent {
|
|
543
|
+
/** Entity that was deleted */
|
|
544
|
+
deletedEntityAsJson?: string | null;
|
|
545
|
+
}
|
|
546
|
+
export interface ActionEvent {
|
|
547
|
+
bodyAsJson?: string;
|
|
548
|
+
}
|
|
476
549
|
export interface GetTagByLabelResponseNonNullableFields {
|
|
477
550
|
tag?: {
|
|
478
551
|
_id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blog-v3-tag.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-tag.universal.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,UAAU,EACV,cAAc,EACd,qCAAqC,GACtC,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAEvF,OAAO,KAAK,sBAAsB,MAAM,oBAAoB,CAAC;AAC7D,aAAa;AACb,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AA2I5B,MAAM,CAAN,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,qCAAqC;IACrC,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,KAAL,KAAK,QAMhB;AAkOD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;
|
|
1
|
+
{"version":3,"file":"blog-v3-tag.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-tag.universal.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/blog",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.222",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
"falconPackageHash": "
|
|
36
|
+
"falconPackageHash": "a5cd4f7202fdcc41a862f39323f5cf630f35dad7e9f548713161c25a"
|
|
37
37
|
}
|