@wix/events 1.0.343 → 1.0.344
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/events",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.344",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@wix/events_notifications": "1.0.43",
|
|
28
28
|
"@wix/events_orders": "1.0.61",
|
|
29
29
|
"@wix/events_policies": "1.0.49",
|
|
30
|
-
"@wix/events_ricos": "1.0.
|
|
30
|
+
"@wix/events_ricos": "1.0.20",
|
|
31
31
|
"@wix/events_rsvp": "1.0.53",
|
|
32
32
|
"@wix/events_rsvp-v-2": "1.0.24",
|
|
33
33
|
"@wix/events_schedule": "1.0.47",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"fqdn": ""
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
|
-
"falconPackageHash": "
|
|
64
|
+
"falconPackageHash": "b604342001ec316006527998fb5b425e22927521e06801c405ed4ca6"
|
|
65
65
|
}
|
|
@@ -10797,7 +10797,7 @@ interface RichContent {
|
|
|
10797
10797
|
_updatedDate?: Date | null;
|
|
10798
10798
|
/** ID of the event to which rich content is applied. */
|
|
10799
10799
|
eventId?: string | null;
|
|
10800
|
-
/** Field name which value uses rich content. For the
|
|
10800
|
+
/** Field name which value uses rich content. For the event description use the `about` value. */
|
|
10801
10801
|
fieldName?: string | null;
|
|
10802
10802
|
/**
|
|
10803
10803
|
* Rich content of the event description.
|
|
@@ -12832,11 +12832,11 @@ interface RichContentCreatedEnvelope {
|
|
|
12832
12832
|
entity: RichContent;
|
|
12833
12833
|
metadata: EventMetadata$3;
|
|
12834
12834
|
}
|
|
12835
|
-
interface
|
|
12835
|
+
interface RichContentDeletedEnvelope {
|
|
12836
12836
|
entity: RichContent;
|
|
12837
12837
|
metadata: EventMetadata$3;
|
|
12838
12838
|
}
|
|
12839
|
-
interface
|
|
12839
|
+
interface RichContentUpdatedEnvelope {
|
|
12840
12840
|
entity: RichContent;
|
|
12841
12841
|
metadata: EventMetadata$3;
|
|
12842
12842
|
}
|
|
@@ -12869,7 +12869,7 @@ interface UpdateRichContent {
|
|
|
12869
12869
|
_updatedDate?: Date | null;
|
|
12870
12870
|
/** ID of the event to which rich content is applied. */
|
|
12871
12871
|
eventId?: string | null;
|
|
12872
|
-
/** Field name which value uses rich content. For the
|
|
12872
|
+
/** Field name which value uses rich content. For the event description use the `about` value. */
|
|
12873
12873
|
fieldName?: string | null;
|
|
12874
12874
|
/**
|
|
12875
12875
|
* Rich content of the event description.
|
|
@@ -12953,7 +12953,7 @@ interface CreateRichContentSignature {
|
|
|
12953
12953
|
/**
|
|
12954
12954
|
* Creates rich content for an event description.
|
|
12955
12955
|
*
|
|
12956
|
-
* This method passes rich content value to the
|
|
12956
|
+
* This method passes rich content value to the description of an already created event.
|
|
12957
12957
|
* @param - Rich content info.
|
|
12958
12958
|
* @returns Created rich content.
|
|
12959
12959
|
*/
|
|
@@ -13015,8 +13015,8 @@ interface QueryRichContentSignature {
|
|
|
13015
13015
|
(): RichContentQueryBuilder;
|
|
13016
13016
|
}
|
|
13017
13017
|
declare const onRichContentCreated$1: EventDefinition<RichContentCreatedEnvelope, "wix.events.v1.rich_content_created">;
|
|
13018
|
-
declare const onRichContentUpdated$1: EventDefinition<RichContentUpdatedEnvelope, "wix.events.v1.rich_content_updated">;
|
|
13019
13018
|
declare const onRichContentDeleted$1: EventDefinition<RichContentDeletedEnvelope, "wix.events.v1.rich_content_deleted">;
|
|
13019
|
+
declare const onRichContentUpdated$1: EventDefinition<RichContentUpdatedEnvelope, "wix.events.v1.rich_content_updated">;
|
|
13020
13020
|
|
|
13021
13021
|
declare function createEventModule$6<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
13022
13022
|
|
|
@@ -13034,18 +13034,18 @@ type _publicOnRichContentCreatedType = typeof onRichContentCreated$1;
|
|
|
13034
13034
|
*/
|
|
13035
13035
|
declare const onRichContentCreated: ReturnType<typeof createEventModule$6<_publicOnRichContentCreatedType>>;
|
|
13036
13036
|
|
|
13037
|
-
type _publicOnRichContentUpdatedType = typeof onRichContentUpdated$1;
|
|
13038
|
-
/**
|
|
13039
|
-
* Triggered when rich content is updated.
|
|
13040
|
-
*/
|
|
13041
|
-
declare const onRichContentUpdated: ReturnType<typeof createEventModule$6<_publicOnRichContentUpdatedType>>;
|
|
13042
|
-
|
|
13043
13037
|
type _publicOnRichContentDeletedType = typeof onRichContentDeleted$1;
|
|
13044
13038
|
/**
|
|
13045
13039
|
* Triggered when rich content is deleted.
|
|
13046
13040
|
*/
|
|
13047
13041
|
declare const onRichContentDeleted: ReturnType<typeof createEventModule$6<_publicOnRichContentDeletedType>>;
|
|
13048
13042
|
|
|
13043
|
+
type _publicOnRichContentUpdatedType = typeof onRichContentUpdated$1;
|
|
13044
|
+
/**
|
|
13045
|
+
* Triggered when rich content is updated.
|
|
13046
|
+
*/
|
|
13047
|
+
declare const onRichContentUpdated: ReturnType<typeof createEventModule$6<_publicOnRichContentUpdatedType>>;
|
|
13048
|
+
|
|
13049
13049
|
type context$7_Alignment = Alignment;
|
|
13050
13050
|
declare const context$7_Alignment: typeof Alignment;
|
|
13051
13051
|
type context$7_AnchorData = AnchorData;
|
|
@@ -10797,7 +10797,7 @@ interface RichContent {
|
|
|
10797
10797
|
_updatedDate?: Date | null;
|
|
10798
10798
|
/** ID of the event to which rich content is applied. */
|
|
10799
10799
|
eventId?: string | null;
|
|
10800
|
-
/** Field name which value uses rich content. For the
|
|
10800
|
+
/** Field name which value uses rich content. For the event description use the `about` value. */
|
|
10801
10801
|
fieldName?: string | null;
|
|
10802
10802
|
/**
|
|
10803
10803
|
* Rich content of the event description.
|
|
@@ -12832,11 +12832,11 @@ interface RichContentCreatedEnvelope {
|
|
|
12832
12832
|
entity: RichContent;
|
|
12833
12833
|
metadata: EventMetadata$3;
|
|
12834
12834
|
}
|
|
12835
|
-
interface
|
|
12835
|
+
interface RichContentDeletedEnvelope {
|
|
12836
12836
|
entity: RichContent;
|
|
12837
12837
|
metadata: EventMetadata$3;
|
|
12838
12838
|
}
|
|
12839
|
-
interface
|
|
12839
|
+
interface RichContentUpdatedEnvelope {
|
|
12840
12840
|
entity: RichContent;
|
|
12841
12841
|
metadata: EventMetadata$3;
|
|
12842
12842
|
}
|
|
@@ -12869,7 +12869,7 @@ interface UpdateRichContent {
|
|
|
12869
12869
|
_updatedDate?: Date | null;
|
|
12870
12870
|
/** ID of the event to which rich content is applied. */
|
|
12871
12871
|
eventId?: string | null;
|
|
12872
|
-
/** Field name which value uses rich content. For the
|
|
12872
|
+
/** Field name which value uses rich content. For the event description use the `about` value. */
|
|
12873
12873
|
fieldName?: string | null;
|
|
12874
12874
|
/**
|
|
12875
12875
|
* Rich content of the event description.
|
|
@@ -12953,7 +12953,7 @@ interface CreateRichContentSignature {
|
|
|
12953
12953
|
/**
|
|
12954
12954
|
* Creates rich content for an event description.
|
|
12955
12955
|
*
|
|
12956
|
-
* This method passes rich content value to the
|
|
12956
|
+
* This method passes rich content value to the description of an already created event.
|
|
12957
12957
|
* @param - Rich content info.
|
|
12958
12958
|
* @returns Created rich content.
|
|
12959
12959
|
*/
|
|
@@ -13015,8 +13015,8 @@ interface QueryRichContentSignature {
|
|
|
13015
13015
|
(): RichContentQueryBuilder;
|
|
13016
13016
|
}
|
|
13017
13017
|
declare const onRichContentCreated$1: EventDefinition<RichContentCreatedEnvelope, "wix.events.v1.rich_content_created">;
|
|
13018
|
-
declare const onRichContentUpdated$1: EventDefinition<RichContentUpdatedEnvelope, "wix.events.v1.rich_content_updated">;
|
|
13019
13018
|
declare const onRichContentDeleted$1: EventDefinition<RichContentDeletedEnvelope, "wix.events.v1.rich_content_deleted">;
|
|
13019
|
+
declare const onRichContentUpdated$1: EventDefinition<RichContentUpdatedEnvelope, "wix.events.v1.rich_content_updated">;
|
|
13020
13020
|
|
|
13021
13021
|
declare function createEventModule$6<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
13022
13022
|
|
|
@@ -13034,18 +13034,18 @@ type _publicOnRichContentCreatedType = typeof onRichContentCreated$1;
|
|
|
13034
13034
|
*/
|
|
13035
13035
|
declare const onRichContentCreated: ReturnType<typeof createEventModule$6<_publicOnRichContentCreatedType>>;
|
|
13036
13036
|
|
|
13037
|
-
type _publicOnRichContentUpdatedType = typeof onRichContentUpdated$1;
|
|
13038
|
-
/**
|
|
13039
|
-
* Triggered when rich content is updated.
|
|
13040
|
-
*/
|
|
13041
|
-
declare const onRichContentUpdated: ReturnType<typeof createEventModule$6<_publicOnRichContentUpdatedType>>;
|
|
13042
|
-
|
|
13043
13037
|
type _publicOnRichContentDeletedType = typeof onRichContentDeleted$1;
|
|
13044
13038
|
/**
|
|
13045
13039
|
* Triggered when rich content is deleted.
|
|
13046
13040
|
*/
|
|
13047
13041
|
declare const onRichContentDeleted: ReturnType<typeof createEventModule$6<_publicOnRichContentDeletedType>>;
|
|
13048
13042
|
|
|
13043
|
+
type _publicOnRichContentUpdatedType = typeof onRichContentUpdated$1;
|
|
13044
|
+
/**
|
|
13045
|
+
* Triggered when rich content is updated.
|
|
13046
|
+
*/
|
|
13047
|
+
declare const onRichContentUpdated: ReturnType<typeof createEventModule$6<_publicOnRichContentUpdatedType>>;
|
|
13048
|
+
|
|
13049
13049
|
type index_d$7_Alignment = Alignment;
|
|
13050
13050
|
declare const index_d$7_Alignment: typeof Alignment;
|
|
13051
13051
|
type index_d$7_AnchorData = AnchorData;
|
|
@@ -7235,7 +7235,7 @@ interface RichContent$1 {
|
|
|
7235
7235
|
updatedDate?: Date | null;
|
|
7236
7236
|
/** ID of the event to which rich content is applied. */
|
|
7237
7237
|
eventId?: string | null;
|
|
7238
|
-
/** Field name which value uses rich content. For the
|
|
7238
|
+
/** Field name which value uses rich content. For the event description use the `about` value. */
|
|
7239
7239
|
fieldName?: string | null;
|
|
7240
7240
|
/**
|
|
7241
7241
|
* Rich content of the event description.
|
|
@@ -8900,7 +8900,7 @@ interface RichContent {
|
|
|
8900
8900
|
_updatedDate?: Date | null;
|
|
8901
8901
|
/** ID of the event to which rich content is applied. */
|
|
8902
8902
|
eventId?: string | null;
|
|
8903
|
-
/** Field name which value uses rich content. For the
|
|
8903
|
+
/** Field name which value uses rich content. For the event description use the `about` value. */
|
|
8904
8904
|
fieldName?: string | null;
|
|
8905
8905
|
/**
|
|
8906
8906
|
* Rich content of the event description.
|