@wix/automations 1.0.59 → 1.0.60
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/automations",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.60",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/automations_activations": "1.0.
|
|
24
|
+
"@wix/automations_activations": "1.0.36",
|
|
25
25
|
"@wix/automations_automations-service": "1.0.27",
|
|
26
26
|
"@wix/automations_automations-service-v-2": "1.0.38"
|
|
27
27
|
},
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "f4c99c03961474051ef21917c0a700cd71fed6f71f346a882b00154f"
|
|
52
52
|
}
|
|
@@ -2745,12 +2745,14 @@ declare enum Target {
|
|
|
2745
2745
|
}
|
|
2746
2746
|
declare enum CancellationReason {
|
|
2747
2747
|
UNKNOWN_CANCELLATION_REASON = "UNKNOWN_CANCELLATION_REASON",
|
|
2748
|
-
/** Indicating that the activation was cancelled
|
|
2748
|
+
/** Indicating that the activation was cancelled by the provider */
|
|
2749
2749
|
EVENT_CANCELLED = "EVENT_CANCELLED",
|
|
2750
2750
|
/** Indicating that the activation is cancelled because the automation was deactivated */
|
|
2751
2751
|
AUTOMATION_DEACTIVATED = "AUTOMATION_DEACTIVATED",
|
|
2752
2752
|
/** Indicating that the activation is cancelled because the automation was deleted */
|
|
2753
|
-
AUTOMATION_DELETED = "AUTOMATION_DELETED"
|
|
2753
|
+
AUTOMATION_DELETED = "AUTOMATION_DELETED",
|
|
2754
|
+
/** Indicating that the activation is cancelled after the automation schedule time was reached */
|
|
2755
|
+
CANCELLED_BY_REFRESH_PAYLOAD = "CANCELLED_BY_REFRESH_PAYLOAD"
|
|
2754
2756
|
}
|
|
2755
2757
|
interface Identity {
|
|
2756
2758
|
/** User ID */
|
|
@@ -2745,12 +2745,14 @@ declare enum Target {
|
|
|
2745
2745
|
}
|
|
2746
2746
|
declare enum CancellationReason {
|
|
2747
2747
|
UNKNOWN_CANCELLATION_REASON = "UNKNOWN_CANCELLATION_REASON",
|
|
2748
|
-
/** Indicating that the activation was cancelled
|
|
2748
|
+
/** Indicating that the activation was cancelled by the provider */
|
|
2749
2749
|
EVENT_CANCELLED = "EVENT_CANCELLED",
|
|
2750
2750
|
/** Indicating that the activation is cancelled because the automation was deactivated */
|
|
2751
2751
|
AUTOMATION_DEACTIVATED = "AUTOMATION_DEACTIVATED",
|
|
2752
2752
|
/** Indicating that the activation is cancelled because the automation was deleted */
|
|
2753
|
-
AUTOMATION_DELETED = "AUTOMATION_DELETED"
|
|
2753
|
+
AUTOMATION_DELETED = "AUTOMATION_DELETED",
|
|
2754
|
+
/** Indicating that the activation is cancelled after the automation schedule time was reached */
|
|
2755
|
+
CANCELLED_BY_REFRESH_PAYLOAD = "CANCELLED_BY_REFRESH_PAYLOAD"
|
|
2754
2756
|
}
|
|
2755
2757
|
interface Identity {
|
|
2756
2758
|
/** User ID */
|