@wix/blog 1.0.151 → 1.0.153
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.http.d.ts +5 -5
- package/build/cjs/src/blog-v3-category.http.js +5 -5
- package/build/cjs/src/blog-v3-category.public.d.ts +1 -1
- package/build/cjs/src/blog-v3-category.types.d.ts +11 -0
- package/build/cjs/src/blog-v3-category.types.js.map +1 -1
- package/build/cjs/src/blog-v3-category.universal.d.ts +38 -10
- package/build/cjs/src/blog-v3-category.universal.js +5 -5
- package/build/cjs/src/blog-v3-category.universal.js.map +1 -1
- package/build/cjs/src/blog-v3-post.http.d.ts +5 -5
- package/build/cjs/src/blog-v3-post.http.js +5 -5
- package/build/cjs/src/blog-v3-post.public.d.ts +1 -1
- package/build/cjs/src/blog-v3-post.types.d.ts +8 -0
- package/build/cjs/src/blog-v3-post.types.js.map +1 -1
- package/build/cjs/src/blog-v3-post.universal.d.ts +37 -11
- package/build/cjs/src/blog-v3-post.universal.js +5 -5
- package/build/cjs/src/blog-v3-post.universal.js.map +1 -1
- package/build/cjs/src/blog-v3-tag.http.d.ts +5 -5
- package/build/cjs/src/blog-v3-tag.http.js +5 -5
- package/build/cjs/src/blog-v3-tag.public.d.ts +1 -1
- package/build/cjs/src/blog-v3-tag.types.d.ts +8 -0
- package/build/cjs/src/blog-v3-tag.types.js.map +1 -1
- package/build/cjs/src/blog-v3-tag.universal.d.ts +34 -9
- package/build/cjs/src/blog-v3-tag.universal.js +5 -5
- package/build/cjs/src/blog-v3-tag.universal.js.map +1 -1
- package/build/es/src/blog-v3-category.http.d.ts +5 -5
- package/build/es/src/blog-v3-category.http.js +5 -5
- package/build/es/src/blog-v3-category.public.d.ts +1 -1
- package/build/es/src/blog-v3-category.types.d.ts +11 -0
- package/build/es/src/blog-v3-category.types.js.map +1 -1
- package/build/es/src/blog-v3-category.universal.d.ts +38 -10
- package/build/es/src/blog-v3-category.universal.js +5 -5
- package/build/es/src/blog-v3-category.universal.js.map +1 -1
- package/build/es/src/blog-v3-post.http.d.ts +5 -5
- package/build/es/src/blog-v3-post.http.js +5 -5
- package/build/es/src/blog-v3-post.public.d.ts +1 -1
- package/build/es/src/blog-v3-post.types.d.ts +8 -0
- package/build/es/src/blog-v3-post.types.js.map +1 -1
- package/build/es/src/blog-v3-post.universal.d.ts +37 -11
- package/build/es/src/blog-v3-post.universal.js +5 -5
- package/build/es/src/blog-v3-post.universal.js.map +1 -1
- package/build/es/src/blog-v3-tag.http.d.ts +5 -5
- package/build/es/src/blog-v3-tag.http.js +5 -5
- package/build/es/src/blog-v3-tag.public.d.ts +1 -1
- package/build/es/src/blog-v3-tag.types.d.ts +8 -0
- package/build/es/src/blog-v3-tag.types.js.map +1 -1
- package/build/es/src/blog-v3-tag.universal.d.ts +34 -9
- package/build/es/src/blog-v3-tag.universal.js +5 -5
- package/build/es/src/blog-v3-tag.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -79,6 +79,12 @@ export interface SeoSchema {
|
|
|
79
79
|
/** SEO general settings. */
|
|
80
80
|
settings?: Settings;
|
|
81
81
|
}
|
|
82
|
+
export interface Keyword {
|
|
83
|
+
/** Keyword value */
|
|
84
|
+
term?: string;
|
|
85
|
+
/** Whether the keyword is the main focused */
|
|
86
|
+
isMain?: boolean;
|
|
87
|
+
}
|
|
82
88
|
export interface SeoSchemaTag {
|
|
83
89
|
/**
|
|
84
90
|
* SEO tag type.
|
|
@@ -109,6 +115,8 @@ export interface Settings {
|
|
|
109
115
|
* Default: enabled
|
|
110
116
|
*/
|
|
111
117
|
preventAutoRedirect?: boolean;
|
|
118
|
+
/** User-selected keyword terms for a specific page */
|
|
119
|
+
keywords?: Keyword[];
|
|
112
120
|
}
|
|
113
121
|
export interface InitialTagsCopied {
|
|
114
122
|
/** Number of tags copied. */
|
|
@@ -549,17 +557,17 @@ export interface GetTagBySlugOptions {
|
|
|
549
557
|
* Creates a query to retrieve a list of tags.
|
|
550
558
|
*
|
|
551
559
|
*
|
|
552
|
-
* The `queryTags()` function builds a query to retrieve a list of up to 4,000 tags per language, and returns a [`TagsQueryBuilder`](https://www.wix.com/velo/reference/wix-blog-backend/
|
|
560
|
+
* The `queryTags()` function builds a query to retrieve a list of up to 4,000 tags per language, and returns a [`TagsQueryBuilder`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsquerybuilder) object.
|
|
553
561
|
*
|
|
554
|
-
* The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://www.wix.com/velo/reference/wix-blog-backend/
|
|
562
|
+
* The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsquerybuilder/find) function.
|
|
555
563
|
*
|
|
556
564
|
* You can refine the query by chaining `TagsQueryBuilder` functions onto the query. `TagsQueryBuilder` functions enable you to sort, filter, and control the results that `queryTags()` returns.
|
|
557
565
|
*
|
|
558
566
|
* `queryTags()` runs with these `TagsQueryBuilder` defaults that can be overridden:
|
|
559
|
-
* - `limit(50)`
|
|
560
|
-
* - `ascending('_id')`
|
|
567
|
+
* - [`limit(50)`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsquerybuilder/limit)
|
|
568
|
+
* - [`ascending('_id')`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsquerybuilder/ascending)
|
|
561
569
|
*
|
|
562
|
-
* The following `TagQueryBuilder` functions are supported for `queryTags()`. For a full description of the Tags object, see the object returned for the [`items`](https://www.wix.com/velo/reference/wix-blog-backend/
|
|
570
|
+
* The following `TagQueryBuilder` functions are supported for `queryTags()`. For a full description of the Tags object, see the object returned for the [`items`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsqueryresult/items) property in [`TagsQueryResult`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsqueryresult).
|
|
563
571
|
* @public
|
|
564
572
|
* @documentationMaturity preview
|
|
565
573
|
* @param options - Options specifying which fields to return.
|
|
@@ -600,44 +608,61 @@ export interface TagsQueryResult extends QueryOffsetResult {
|
|
|
600
608
|
export interface TagsQueryBuilder {
|
|
601
609
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
602
610
|
* @param value - Value to compare against.
|
|
611
|
+
* @documentationMaturity preview
|
|
603
612
|
*/
|
|
604
613
|
eq: (propertyName: string, value: any) => TagsQueryBuilder;
|
|
605
614
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
606
615
|
* @param value - Value to compare against.
|
|
616
|
+
* @documentationMaturity preview
|
|
607
617
|
*/
|
|
608
618
|
ne: (propertyName: string, value: any) => TagsQueryBuilder;
|
|
609
619
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
610
620
|
* @param value - Value to compare against.
|
|
621
|
+
* @documentationMaturity preview
|
|
611
622
|
*/
|
|
612
623
|
ge: (propertyName: string, value: any) => TagsQueryBuilder;
|
|
613
624
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
614
625
|
* @param value - Value to compare against.
|
|
626
|
+
* @documentationMaturity preview
|
|
615
627
|
*/
|
|
616
628
|
gt: (propertyName: string, value: any) => TagsQueryBuilder;
|
|
617
629
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
618
630
|
* @param value - Value to compare against.
|
|
631
|
+
* @documentationMaturity preview
|
|
619
632
|
*/
|
|
620
633
|
le: (propertyName: string, value: any) => TagsQueryBuilder;
|
|
621
634
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
622
635
|
* @param value - Value to compare against.
|
|
636
|
+
* @documentationMaturity preview
|
|
623
637
|
*/
|
|
624
638
|
lt: (propertyName: string, value: any) => TagsQueryBuilder;
|
|
625
639
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
626
640
|
* @param string - String to compare against. Case-insensitive.
|
|
641
|
+
* @documentationMaturity preview
|
|
627
642
|
*/
|
|
628
643
|
startsWith: (propertyName: string, value: string) => TagsQueryBuilder;
|
|
629
644
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
630
645
|
* @param values - List of values to compare against.
|
|
646
|
+
* @documentationMaturity preview
|
|
631
647
|
*/
|
|
632
648
|
hasSome: (propertyName: string, value: any[]) => TagsQueryBuilder;
|
|
633
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
649
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
650
|
+
* @documentationMaturity preview
|
|
651
|
+
*/
|
|
634
652
|
ascending: (...propertyNames: string[]) => TagsQueryBuilder;
|
|
635
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
653
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
654
|
+
* @documentationMaturity preview
|
|
655
|
+
*/
|
|
636
656
|
descending: (...propertyNames: string[]) => TagsQueryBuilder;
|
|
637
|
-
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
657
|
+
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
658
|
+
* @documentationMaturity preview
|
|
659
|
+
*/
|
|
638
660
|
limit: (limit: number) => TagsQueryBuilder;
|
|
639
|
-
/** @param skip - Number of items to skip in the query results before returning the results.
|
|
661
|
+
/** @param skip - Number of items to skip in the query results before returning the results.
|
|
662
|
+
* @documentationMaturity preview
|
|
663
|
+
*/
|
|
640
664
|
skip: (skip: number) => TagsQueryBuilder;
|
|
665
|
+
/** @documentationMaturity preview */
|
|
641
666
|
find: () => Promise<TagsQueryResult>;
|
|
642
667
|
}
|
|
643
668
|
export {};
|
|
@@ -232,17 +232,17 @@ export function getTagBySlug(slug, options) {
|
|
|
232
232
|
* Creates a query to retrieve a list of tags.
|
|
233
233
|
*
|
|
234
234
|
*
|
|
235
|
-
* The `queryTags()` function builds a query to retrieve a list of up to 4,000 tags per language, and returns a [`TagsQueryBuilder`](https://www.wix.com/velo/reference/wix-blog-backend/
|
|
235
|
+
* The `queryTags()` function builds a query to retrieve a list of up to 4,000 tags per language, and returns a [`TagsQueryBuilder`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsquerybuilder) object.
|
|
236
236
|
*
|
|
237
|
-
* The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://www.wix.com/velo/reference/wix-blog-backend/
|
|
237
|
+
* The returned object contains the query definition, which is typically used to run the query using the [`find()`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsquerybuilder/find) function.
|
|
238
238
|
*
|
|
239
239
|
* You can refine the query by chaining `TagsQueryBuilder` functions onto the query. `TagsQueryBuilder` functions enable you to sort, filter, and control the results that `queryTags()` returns.
|
|
240
240
|
*
|
|
241
241
|
* `queryTags()` runs with these `TagsQueryBuilder` defaults that can be overridden:
|
|
242
|
-
* - `limit(50)`
|
|
243
|
-
* - `ascending('_id')`
|
|
242
|
+
* - [`limit(50)`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsquerybuilder/limit)
|
|
243
|
+
* - [`ascending('_id')`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsquerybuilder/ascending)
|
|
244
244
|
*
|
|
245
|
-
* The following `TagQueryBuilder` functions are supported for `queryTags()`. For a full description of the Tags object, see the object returned for the [`items`](https://www.wix.com/velo/reference/wix-blog-backend/
|
|
245
|
+
* The following `TagQueryBuilder` functions are supported for `queryTags()`. For a full description of the Tags object, see the object returned for the [`items`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsqueryresult/items) property in [`TagsQueryResult`](https://www.wix.com/velo/reference/wix-blog-backend/tags/tagsqueryresult).
|
|
246
246
|
* @public
|
|
247
247
|
* @documentationMaturity preview
|
|
248
248
|
* @param options - Options specifying which fields to return.
|
|
@@ -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;AAEjC,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;
|
|
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;AAEjC,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;AAoOD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AA0ID,MAAM,qBAAqB,GAAG,EAAE,CAAC;AACjC,MAAM,sBAAsB,GAAG,EAAE,GAAG,EAAE,MAAM,EAAE,CAAC;AAC/C,MAAM,oBAAoB,GAAG,EAAE,CAAC;AAChC,MAAM,qBAAqB,GAAG,EAAE,GAAG,EAAE,MAAM,EAAE,CAAC;AAC9C,MAAM,cAAc,GAAG,EAAE,CAAC;AAC1B,MAAM,eAAe,GAAG,EAAE,GAAG,EAAE,MAAM,EAAE,CAAC;AACxC,MAAM,iBAAiB,GAAG,EAAE,CAAC;AAC7B,MAAM,kBAAkB,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;AAC5C,MAAM,IAAI,GAAG,EAAE,GAAG,EAAE,oBAAoB,EAAE,CAAC;AAE3C;;;;;;;;;;GAUG;AACH,MAAM,UAAgB,aAAa,CACjC,KAAa,EACb,OAA8B;;;QAE9B,MAAM,qBAAqB,GAAG;YAC5B,KAAK,EAAE,MAAM;YACb,QAAQ,EAAE,eAAe;YACzB,eAAe,EAAE,sBAAsB;YACvC,SAAS,EAAE,gBAAgB;SAC5B,CAAC;QACF,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;YACzC,UAAU,EAAE,qBAAqB;YACjC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;YAC9B,UAAU,EAAE,sBAAsB;YAClC,UAAU,EAAE,EAAE,IAAI,EAAE;YACpB,kBAAkB,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;gBACnB,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC;QAEtD,MAAM,OAAO,GAAG,sBAAsB,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAE9D,KAAK,CAAC,yCAAyC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAErE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,EAAE;gBAClE,OAAO;gBACP,SAAS;aACV,CAAC,CAAC;YACH,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF;AAqBD;;;;;;;;;;GAUG;AACH,MAAM,UAAgB,MAAM,CAC1B,KAAa,EACb,OAAuB;;;QAEvB,MAAM,qBAAqB,GAAG;YAC5B,KAAK,EAAE,MAAM;YACb,eAAe,EAAE,sBAAsB;YACvC,SAAS,EAAE,gBAAgB;SAC5B,CAAC;QACF,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;YACzC,UAAU,EAAE,cAAc;YAC1B,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;YAC9B,UAAU,EAAE,eAAe;YAC3B,UAAU,EAAE,EAAE,IAAI,EAAE;YACpB,kBAAkB,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;gBACnB,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC;QAEtD,MAAM,OAAO,GAAG,sBAAsB,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QAEvD,KAAK,CAAC,kCAAkC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAE9D,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,EAAE;gBAClE,OAAO;gBACP,SAAS;aACV,CAAC,CAAC;YACH,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF;AAcD;;;;;;;;;;;;GAYG;AACH,MAAM,UAAgB,YAAY,CAChC,IAAY,EACZ,OAA6B;;;QAE7B,MAAM,qBAAqB,GAAG;YAC5B,IAAI,EAAE,MAAM;YACZ,eAAe,EAAE,sBAAsB;YACvC,SAAS,EAAE,gBAAgB;SAC5B,CAAC;QACF,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;YACzC,UAAU,EAAE,oBAAoB;YAChC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;YAC9B,UAAU,EAAE,qBAAqB;YACjC,UAAU,EAAE,EAAE,IAAI,EAAE;YACpB,kBAAkB,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;gBACnB,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;QAErD,MAAM,OAAO,GAAG,sBAAsB,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;QAE7D,KAAK,CAAC,wCAAwC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAEpE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,EAAE;gBAClE,MAAM;gBACN,SAAS;aACV,CAAC,CAAC;YACH,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF;AAcD;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,UAAU,SAAS,CAAC,OAA0B;IAClD,MAAM,qBAAqB,GAAG,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,CAAC;IAC7D,MAAM,sBAAsB,GAAG;QAC7B,KAAK,EAAE,QAAQ;QACf,cAAc,EAAE,kBAAkB;KACnC,CAAC;IAEF,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;QACzC,UAAU,EAAE,iBAAiB;QAC7B,UAAU,EAAE,EAAE;QACd,kBAAkB,EAAE;YAClB,KAAK,EAAE,EAAE;YACT,cAAc,EAAE,eAAe;SAChC;QACD,oBAAoB,EAAE,qBAAqB;KAC5C,CAAC,CAAC;IAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;QAC9B,UAAU,EAAE,kBAAkB;QAC9B,UAAU,EAAE,EAAE,IAAI,EAAE;QACpB,kBAAkB,EAAE;YAClB,KAAK,EAAE,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;YAC1B,cAAc,EAAE,aAAa;SAC9B;QACD,oBAAoB,EAAE,sBAAsB;KAC7C,CAAC,CAAC;IAEH,OAAO,oBAAoB,CAAC;QAC1B,IAAI,EAAE,CAAO,OAAY,EAAE,EAAE;;YAC3B,MAAM,OAAO,GAAG,sBAAsB,CAAC,SAAS,iCAC3C,OAAO,GACP,CAAC,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC,EAClB,CAAC;YAEH,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;YAC5B,IAAI;gBACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;gBACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;gBACjC,OAAO,MAAM,CAAC;aACf;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;gBAC5B,MAAM,GAAG,CAAC;aACX;QACH,CAAC,CAAA;QACD,kBAAkB,EAAE,CAAC,GAAG,IAAW,EAAE,EAAE,CAAC,mBAAmB,CAAC,IAAI,CAAC;QACjE,mBAAmB,EAAE,CAAC,EAAE,IAAI,EAAO,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC;QACtD,gBAAgB,EAAE,CAAC,GAAQ,EAAE,EAAE;YAC7B,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,CAAC,CAAC;YAEpE,MAAM,gBAAgB,CAAC;QACzB,CAAC;QACD,YAAY,EAAE,QAAQ;QACtB,mBAAmB,EAAE,qCAAqC,CAAC,aAAa,CAAC;KAC1E,CAAC,CAAC,EAAE,4BAA4B,EAAE,IAAI,EAAE,CAAC,CAAC;AAC7C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/blog",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.153",
|
|
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": "17f612cf7e7f0eb70c34d253e3fde93a0b260179f4c5488452832a97"
|
|
37
37
|
}
|