otomato-sdk 2.0.39 → 2.0.40
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Workflow } from
|
|
1
|
+
import { Workflow } from "../models/Workflow";
|
|
2
2
|
export declare const WORKFLOW_TEMPLATES_TAGS: {
|
|
3
3
|
NFTS: string;
|
|
4
4
|
SOCIALS: string;
|
|
@@ -20,7 +20,7 @@ export declare const WORKFLOW_TEMPLATES: ({
|
|
|
20
20
|
output: {
|
|
21
21
|
gasPrice: string;
|
|
22
22
|
};
|
|
23
|
-
parameters: import("
|
|
23
|
+
parameters: import("..").Parameter[];
|
|
24
24
|
examples: {
|
|
25
25
|
name: string;
|
|
26
26
|
description: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "otomato-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.40",
|
|
4
4
|
"description": "An SDK for building and managing automations on Otomato",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/types/src/index.d.ts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"prepublishOnly": "npm run build; npm run test",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"prebuild": "node update-sdk-version.js",
|
|
11
|
-
"build": "
|
|
11
|
+
"build": "rollup -c",
|
|
12
12
|
"test": "mocha --config .mocharc.json"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [
|
|
@@ -29,6 +29,10 @@
|
|
|
29
29
|
"author": "otomato",
|
|
30
30
|
"license": "ISC",
|
|
31
31
|
"devDependencies": {
|
|
32
|
+
"@rollup/plugin-commonjs": "^28.0.2",
|
|
33
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
34
|
+
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
35
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
32
36
|
"@types/axios": "^0.14.0",
|
|
33
37
|
"@types/chai": "^4.3.16",
|
|
34
38
|
"@types/dagre": "^0.7.52",
|
|
@@ -39,8 +43,9 @@
|
|
|
39
43
|
"chai": "^5.1.1",
|
|
40
44
|
"dotenv": "^16.4.5",
|
|
41
45
|
"mocha": "^10.4.0",
|
|
46
|
+
"rollup": "^4.34.1",
|
|
42
47
|
"ts-node": "^10.9.2",
|
|
43
|
-
"typescript": "^5.
|
|
48
|
+
"typescript": "^5.7.3"
|
|
44
49
|
},
|
|
45
50
|
"dependencies": {
|
|
46
51
|
"axios": "^1.7.2",
|