@wix/events 1.0.38 → 1.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/src/events-v1-event.types.d.ts +7 -7
- package/build/cjs/src/events-v1-event.universal.d.ts +7 -7
- package/build/es/index.d.ts +1 -1
- package/build/es/index.js +1 -1
- package/build/es/index.js.map +1 -1
- package/build/es/src/events-v1-event.types.d.ts +7 -7
- package/build/es/src/events-v1-event.universal.d.ts +7 -7
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export * as policies from './src/events-v2-policy.public';
|
|
2
1
|
export * as guests from './src/events-guests-v1-guest.public';
|
|
3
2
|
export * as scheduleBookmarks from './src/events-schedule-v1-schedule-item-schedule-bookmarks.public';
|
|
4
3
|
export * as schedule from './src/events-schedule-v1-schedule-item-schedule.public';
|
|
@@ -10,3 +9,4 @@ export * as orders from './src/events-v1-order-orders.public';
|
|
|
10
9
|
export * as rsvp from './src/events-v1-rsvp.public';
|
|
11
10
|
export * as tickets from './src/events-v1-ticket.public';
|
|
12
11
|
export * as ticketDefinitions from './src/events-v1-ticket-definition.public';
|
|
12
|
+
export * as policies from './src/events-v2-policy.public';
|
package/build/cjs/index.js
CHANGED
|
@@ -19,8 +19,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
19
19
|
return result;
|
|
20
20
|
};
|
|
21
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
-
exports.ticketDefinitions = exports.tickets = exports.rsvp = exports.orders = exports.checkout = exports.forms = exports.wixEvents = exports.categories = exports.schedule = exports.scheduleBookmarks = exports.guests =
|
|
23
|
-
exports.policies = __importStar(require("./src/events-v2-policy.public"));
|
|
22
|
+
exports.policies = exports.ticketDefinitions = exports.tickets = exports.rsvp = exports.orders = exports.checkout = exports.forms = exports.wixEvents = exports.categories = exports.schedule = exports.scheduleBookmarks = exports.guests = void 0;
|
|
24
23
|
exports.guests = __importStar(require("./src/events-guests-v1-guest.public"));
|
|
25
24
|
exports.scheduleBookmarks = __importStar(require("./src/events-schedule-v1-schedule-item-schedule-bookmarks.public"));
|
|
26
25
|
exports.schedule = __importStar(require("./src/events-schedule-v1-schedule-item-schedule.public"));
|
|
@@ -32,4 +31,5 @@ exports.orders = __importStar(require("./src/events-v1-order-orders.public"));
|
|
|
32
31
|
exports.rsvp = __importStar(require("./src/events-v1-rsvp.public"));
|
|
33
32
|
exports.tickets = __importStar(require("./src/events-v1-ticket.public"));
|
|
34
33
|
exports.ticketDefinitions = __importStar(require("./src/events-v1-ticket-definition.public"));
|
|
34
|
+
exports.policies = __importStar(require("./src/events-v2-policy.public"));
|
|
35
35
|
//# sourceMappingURL=index.js.map
|
package/build/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,8EAA8D;AAC9D,sHAAsG;AACtG,mGAAmF;AACnF,8EAA8D;AAC9D,0EAA0D;AAC1D,qEAAqD;AACrD,kFAAkE;AAClE,8EAA8D;AAC9D,oEAAoD;AACpD,yEAAyD;AACzD,8FAA8E;AAC9E,0EAA0D"}
|
|
@@ -735,15 +735,15 @@ export interface SeoSettings {
|
|
|
735
735
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
736
736
|
*/
|
|
737
737
|
export interface SeoSchema {
|
|
738
|
-
/** SEO
|
|
738
|
+
/** SEO tag information. */
|
|
739
739
|
tags?: Tag[];
|
|
740
740
|
/** SEO general settings. */
|
|
741
741
|
settings?: Settings;
|
|
742
742
|
}
|
|
743
743
|
export interface Keyword {
|
|
744
|
-
/** Keyword value */
|
|
744
|
+
/** Keyword value. */
|
|
745
745
|
term?: string;
|
|
746
|
-
/** Whether the keyword is the main
|
|
746
|
+
/** Whether the keyword is the main focus keyword. */
|
|
747
747
|
isMain?: boolean;
|
|
748
748
|
}
|
|
749
749
|
export interface Tag {
|
|
@@ -755,7 +755,7 @@ export interface Tag {
|
|
|
755
755
|
*/
|
|
756
756
|
type?: string;
|
|
757
757
|
/**
|
|
758
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
758
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
759
759
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
760
760
|
*/
|
|
761
761
|
props?: Record<string, any> | null;
|
|
@@ -770,13 +770,13 @@ export interface Tag {
|
|
|
770
770
|
}
|
|
771
771
|
export interface Settings {
|
|
772
772
|
/**
|
|
773
|
-
* Whether the
|
|
773
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
774
774
|
*
|
|
775
775
|
*
|
|
776
|
-
* Default: false (
|
|
776
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
777
777
|
*/
|
|
778
778
|
preventAutoRedirect?: boolean;
|
|
779
|
-
/** User-selected keyword terms for a specific page */
|
|
779
|
+
/** User-selected keyword terms for a specific page. */
|
|
780
780
|
keywords?: Keyword[];
|
|
781
781
|
}
|
|
782
782
|
export interface Agenda {
|
|
@@ -719,15 +719,15 @@ export interface SeoSettings {
|
|
|
719
719
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
720
720
|
*/
|
|
721
721
|
export interface SeoSchema {
|
|
722
|
-
/** SEO
|
|
722
|
+
/** SEO tag information. */
|
|
723
723
|
tags?: Tag[];
|
|
724
724
|
/** SEO general settings. */
|
|
725
725
|
settings?: Settings;
|
|
726
726
|
}
|
|
727
727
|
export interface Keyword {
|
|
728
|
-
/** Keyword value */
|
|
728
|
+
/** Keyword value. */
|
|
729
729
|
term?: string;
|
|
730
|
-
/** Whether the keyword is the main
|
|
730
|
+
/** Whether the keyword is the main focus keyword. */
|
|
731
731
|
isMain?: boolean;
|
|
732
732
|
}
|
|
733
733
|
export interface Tag {
|
|
@@ -739,7 +739,7 @@ export interface Tag {
|
|
|
739
739
|
*/
|
|
740
740
|
type?: string;
|
|
741
741
|
/**
|
|
742
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
742
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
743
743
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
744
744
|
*/
|
|
745
745
|
props?: Record<string, any> | null;
|
|
@@ -754,13 +754,13 @@ export interface Tag {
|
|
|
754
754
|
}
|
|
755
755
|
export interface Settings {
|
|
756
756
|
/**
|
|
757
|
-
* Whether the
|
|
757
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
758
758
|
*
|
|
759
759
|
*
|
|
760
|
-
* Default: false (
|
|
760
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
761
761
|
*/
|
|
762
762
|
preventAutoRedirect?: boolean;
|
|
763
|
-
/** User-selected keyword terms for a specific page */
|
|
763
|
+
/** User-selected keyword terms for a specific page. */
|
|
764
764
|
keywords?: Keyword[];
|
|
765
765
|
}
|
|
766
766
|
export interface Agenda {
|
package/build/es/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export * as policies from './src/events-v2-policy.public';
|
|
2
1
|
export * as guests from './src/events-guests-v1-guest.public';
|
|
3
2
|
export * as scheduleBookmarks from './src/events-schedule-v1-schedule-item-schedule-bookmarks.public';
|
|
4
3
|
export * as schedule from './src/events-schedule-v1-schedule-item-schedule.public';
|
|
@@ -10,3 +9,4 @@ export * as orders from './src/events-v1-order-orders.public';
|
|
|
10
9
|
export * as rsvp from './src/events-v1-rsvp.public';
|
|
11
10
|
export * as tickets from './src/events-v1-ticket.public';
|
|
12
11
|
export * as ticketDefinitions from './src/events-v1-ticket-definition.public';
|
|
12
|
+
export * as policies from './src/events-v2-policy.public';
|
package/build/es/index.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export * as policies from './src/events-v2-policy.public';
|
|
2
1
|
export * as guests from './src/events-guests-v1-guest.public';
|
|
3
2
|
export * as scheduleBookmarks from './src/events-schedule-v1-schedule-item-schedule-bookmarks.public';
|
|
4
3
|
export * as schedule from './src/events-schedule-v1-schedule-item-schedule.public';
|
|
@@ -10,4 +9,5 @@ export * as orders from './src/events-v1-order-orders.public';
|
|
|
10
9
|
export * as rsvp from './src/events-v1-rsvp.public';
|
|
11
10
|
export * as tickets from './src/events-v1-ticket.public';
|
|
12
11
|
export * as ticketDefinitions from './src/events-v1-ticket-definition.public';
|
|
12
|
+
export * as policies from './src/events-v2-policy.public';
|
|
13
13
|
//# sourceMappingURL=index.js.map
|
package/build/es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,qCAAqC,CAAC;AAC9D,OAAO,KAAK,iBAAiB,MAAM,kEAAkE,CAAC;AACtG,OAAO,KAAK,QAAQ,MAAM,wDAAwD,CAAC;AACnF,OAAO,KAAK,UAAU,MAAM,iCAAiC,CAAC;AAC9D,OAAO,KAAK,SAAS,MAAM,8BAA8B,CAAC;AAC1D,OAAO,KAAK,KAAK,MAAM,6BAA6B,CAAC;AACrD,OAAO,KAAK,QAAQ,MAAM,uCAAuC,CAAC;AAClE,OAAO,KAAK,MAAM,MAAM,qCAAqC,CAAC;AAC9D,OAAO,KAAK,IAAI,MAAM,6BAA6B,CAAC;AACpD,OAAO,KAAK,OAAO,MAAM,+BAA+B,CAAC;AACzD,OAAO,KAAK,iBAAiB,MAAM,0CAA0C,CAAC;AAC9E,OAAO,KAAK,QAAQ,MAAM,+BAA+B,CAAC"}
|
|
@@ -735,15 +735,15 @@ export interface SeoSettings {
|
|
|
735
735
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
736
736
|
*/
|
|
737
737
|
export interface SeoSchema {
|
|
738
|
-
/** SEO
|
|
738
|
+
/** SEO tag information. */
|
|
739
739
|
tags?: Tag[];
|
|
740
740
|
/** SEO general settings. */
|
|
741
741
|
settings?: Settings;
|
|
742
742
|
}
|
|
743
743
|
export interface Keyword {
|
|
744
|
-
/** Keyword value */
|
|
744
|
+
/** Keyword value. */
|
|
745
745
|
term?: string;
|
|
746
|
-
/** Whether the keyword is the main
|
|
746
|
+
/** Whether the keyword is the main focus keyword. */
|
|
747
747
|
isMain?: boolean;
|
|
748
748
|
}
|
|
749
749
|
export interface Tag {
|
|
@@ -755,7 +755,7 @@ export interface Tag {
|
|
|
755
755
|
*/
|
|
756
756
|
type?: string;
|
|
757
757
|
/**
|
|
758
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
758
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
759
759
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
760
760
|
*/
|
|
761
761
|
props?: Record<string, any> | null;
|
|
@@ -770,13 +770,13 @@ export interface Tag {
|
|
|
770
770
|
}
|
|
771
771
|
export interface Settings {
|
|
772
772
|
/**
|
|
773
|
-
* Whether the
|
|
773
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
774
774
|
*
|
|
775
775
|
*
|
|
776
|
-
* Default: false (
|
|
776
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
777
777
|
*/
|
|
778
778
|
preventAutoRedirect?: boolean;
|
|
779
|
-
/** User-selected keyword terms for a specific page */
|
|
779
|
+
/** User-selected keyword terms for a specific page. */
|
|
780
780
|
keywords?: Keyword[];
|
|
781
781
|
}
|
|
782
782
|
export interface Agenda {
|
|
@@ -719,15 +719,15 @@ export interface SeoSettings {
|
|
|
719
719
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
720
720
|
*/
|
|
721
721
|
export interface SeoSchema {
|
|
722
|
-
/** SEO
|
|
722
|
+
/** SEO tag information. */
|
|
723
723
|
tags?: Tag[];
|
|
724
724
|
/** SEO general settings. */
|
|
725
725
|
settings?: Settings;
|
|
726
726
|
}
|
|
727
727
|
export interface Keyword {
|
|
728
|
-
/** Keyword value */
|
|
728
|
+
/** Keyword value. */
|
|
729
729
|
term?: string;
|
|
730
|
-
/** Whether the keyword is the main
|
|
730
|
+
/** Whether the keyword is the main focus keyword. */
|
|
731
731
|
isMain?: boolean;
|
|
732
732
|
}
|
|
733
733
|
export interface Tag {
|
|
@@ -739,7 +739,7 @@ export interface Tag {
|
|
|
739
739
|
*/
|
|
740
740
|
type?: string;
|
|
741
741
|
/**
|
|
742
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
742
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
743
743
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
744
744
|
*/
|
|
745
745
|
props?: Record<string, any> | null;
|
|
@@ -754,13 +754,13 @@ export interface Tag {
|
|
|
754
754
|
}
|
|
755
755
|
export interface Settings {
|
|
756
756
|
/**
|
|
757
|
-
* Whether the
|
|
757
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
758
758
|
*
|
|
759
759
|
*
|
|
760
|
-
* Default: false (
|
|
760
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
761
761
|
*/
|
|
762
762
|
preventAutoRedirect?: boolean;
|
|
763
|
-
/** User-selected keyword terms for a specific page */
|
|
763
|
+
/** User-selected keyword terms for a specific page. */
|
|
764
764
|
keywords?: Keyword[];
|
|
765
765
|
}
|
|
766
766
|
export interface Agenda {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/events",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.39",
|
|
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": "5b518fe622d16251a848f1f970aa2011b6563f85e86fa7489201c57f"
|
|
37
37
|
}
|