@wix/events 1.0.290 → 1.0.291
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.291",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@wix/events_categories": "1.0.41",
|
|
22
22
|
"@wix/events_forms": "1.0.43",
|
|
23
|
-
"@wix/events_guests": "1.0.
|
|
23
|
+
"@wix/events_guests": "1.0.59",
|
|
24
24
|
"@wix/events_notifications": "1.0.31",
|
|
25
25
|
"@wix/events_orders": "1.0.46",
|
|
26
26
|
"@wix/events_policies": "1.0.40",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"fqdn": ""
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
|
-
"falconPackageHash": "
|
|
61
|
+
"falconPackageHash": "9a5712006e072daad1c0c5f07eb25f636d545bb81a8adab8f1028b54"
|
|
62
62
|
}
|
|
@@ -523,7 +523,7 @@ interface TaskContext {
|
|
|
523
523
|
_id?: string | null;
|
|
524
524
|
/** Notify action type. */
|
|
525
525
|
type?: NotifyActionType;
|
|
526
|
-
/** Timing. Used for
|
|
526
|
+
/** Timing. Used for EVENT_STARTS */
|
|
527
527
|
timing?: Timing;
|
|
528
528
|
/** Event context. */
|
|
529
529
|
event?: EventDetails;
|
|
@@ -544,17 +544,17 @@ declare enum Timing {
|
|
|
544
544
|
/** Default value. This value is unused. */
|
|
545
545
|
UNKNOWN_TIMING = "UNKNOWN_TIMING",
|
|
546
546
|
/** Instant */
|
|
547
|
-
|
|
547
|
+
NOW = "NOW",
|
|
548
548
|
/** 24 hours prior */
|
|
549
|
-
|
|
549
|
+
STARTS_IN_1_DAY = "STARTS_IN_1_DAY",
|
|
550
550
|
/** 3 days prior */
|
|
551
|
-
|
|
551
|
+
STARTS_IN_3_DAYS = "STARTS_IN_3_DAYS",
|
|
552
552
|
/** 7 days prior */
|
|
553
|
-
|
|
553
|
+
STARTS_IN_1_WEEK = "STARTS_IN_1_WEEK",
|
|
554
554
|
/** 1 hour prior */
|
|
555
|
-
|
|
555
|
+
STARTS_IN_1_HOUR = "STARTS_IN_1_HOUR",
|
|
556
556
|
/** 30 minutes prior */
|
|
557
|
-
|
|
557
|
+
STARTS_IN_30_MINUTES = "STARTS_IN_30_MINUTES"
|
|
558
558
|
}
|
|
559
559
|
interface OrderDetails {
|
|
560
560
|
/** Order status */
|
|
@@ -523,7 +523,7 @@ interface TaskContext {
|
|
|
523
523
|
_id?: string | null;
|
|
524
524
|
/** Notify action type. */
|
|
525
525
|
type?: NotifyActionType;
|
|
526
|
-
/** Timing. Used for
|
|
526
|
+
/** Timing. Used for EVENT_STARTS */
|
|
527
527
|
timing?: Timing;
|
|
528
528
|
/** Event context. */
|
|
529
529
|
event?: EventDetails;
|
|
@@ -544,17 +544,17 @@ declare enum Timing {
|
|
|
544
544
|
/** Default value. This value is unused. */
|
|
545
545
|
UNKNOWN_TIMING = "UNKNOWN_TIMING",
|
|
546
546
|
/** Instant */
|
|
547
|
-
|
|
547
|
+
NOW = "NOW",
|
|
548
548
|
/** 24 hours prior */
|
|
549
|
-
|
|
549
|
+
STARTS_IN_1_DAY = "STARTS_IN_1_DAY",
|
|
550
550
|
/** 3 days prior */
|
|
551
|
-
|
|
551
|
+
STARTS_IN_3_DAYS = "STARTS_IN_3_DAYS",
|
|
552
552
|
/** 7 days prior */
|
|
553
|
-
|
|
553
|
+
STARTS_IN_1_WEEK = "STARTS_IN_1_WEEK",
|
|
554
554
|
/** 1 hour prior */
|
|
555
|
-
|
|
555
|
+
STARTS_IN_1_HOUR = "STARTS_IN_1_HOUR",
|
|
556
556
|
/** 30 minutes prior */
|
|
557
|
-
|
|
557
|
+
STARTS_IN_30_MINUTES = "STARTS_IN_30_MINUTES"
|
|
558
558
|
}
|
|
559
559
|
interface OrderDetails {
|
|
560
560
|
/** Order status */
|