otomato-sdk 2.0.16 → 2.0.18
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.
|
@@ -36,10 +36,16 @@ export const TRIGGERS = {
|
|
|
36
36
|
{
|
|
37
37
|
"name": "Run it every day for 2 weeks",
|
|
38
38
|
"description": "Set the period to 1 day and the limit to 14 to execute daily for 2 weeks.",
|
|
39
|
-
"parameters":
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
39
|
+
"parameters": [
|
|
40
|
+
{
|
|
41
|
+
"key": "period",
|
|
42
|
+
"value": 86400000
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"key": "limit",
|
|
46
|
+
"value": 14
|
|
47
|
+
}
|
|
48
|
+
]
|
|
43
49
|
}
|
|
44
50
|
],
|
|
45
51
|
"blockId": 18,
|
package/dist/src/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "2.0.
|
|
1
|
+
export declare const SDK_VERSION = "2.0.18";
|
|
2
2
|
export declare function compareVersions(v1: string, v2: string): number;
|