@wix/blog 1.0.220 → 1.0.221
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-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-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
|
@@ -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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"}
|
|
@@ -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.221",
|
|
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": "4defb877baf9fe11b483feaafa39d6e3b051dd65151f57b594fb521a"
|
|
37
37
|
}
|