@streamr/cli-tools 0.0.1-tatum.0 → 0.0.1-tatum.2
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/bin/streamr-storage-node-add-stream.ts +1 -1
- package/bin/streamr-storage-node-list-streams.ts +1 -1
- package/bin/streamr-storage-node-remove-stream.ts +1 -1
- package/bin/streamr-stream-create.ts +1 -1
- package/bin/streamr-stream-resend-from.ts +1 -1
- package/bin/streamr-stream-resend-last.ts +1 -1
- package/bin/streamr-stream-search.ts +1 -1
- package/bin/streamr-stream-show.ts +1 -1
- package/bin/streamr-stream-subscribe.ts +1 -1
- package/bin/streamr-wallet-whoami.ts +1 -1
- package/dist/package.json +7 -7
- package/package.json +7 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import '../src/logLevel'
|
|
3
|
-
import StreamrClient from 'streamr-client'
|
|
3
|
+
import { StreamrClient } from 'streamr-client'
|
|
4
4
|
import { createClientCommand } from '../src/command'
|
|
5
5
|
|
|
6
6
|
createClientCommand(async (client: StreamrClient, storageNodeAddress: string, streamId: string) => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import '../src/logLevel'
|
|
3
3
|
import EasyTable from 'easy-table'
|
|
4
|
-
import StreamrClient from 'streamr-client'
|
|
4
|
+
import { StreamrClient } from 'streamr-client'
|
|
5
5
|
import { createClientCommand } from '../src/command'
|
|
6
6
|
|
|
7
7
|
createClientCommand((async (client: StreamrClient, storageNodeAddress: string) => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import '../src/logLevel'
|
|
3
|
-
import StreamrClient from 'streamr-client'
|
|
3
|
+
import { StreamrClient } from 'streamr-client'
|
|
4
4
|
import { createClientCommand } from '../src/command'
|
|
5
5
|
|
|
6
6
|
createClientCommand(async (client: StreamrClient, storageNodeAddress: string, streamId: string) => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import '../src/logLevel'
|
|
3
|
-
import StreamrClient from 'streamr-client'
|
|
3
|
+
import { StreamrClient } from 'streamr-client'
|
|
4
4
|
import { createFnParseInt } from '../src/common'
|
|
5
5
|
import { createClientCommand, Options as BaseOptions } from '../src/command'
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import '../src/logLevel'
|
|
3
|
-
import StreamrClient,
|
|
3
|
+
import { StreamrClient, SearchStreamsPermissionFilter, StreamPermission } from 'streamr-client'
|
|
4
4
|
import { createClientCommand, Options as BaseOptions } from '../src/command'
|
|
5
5
|
import { Option } from 'commander'
|
|
6
6
|
import { getPermission, PERMISSIONS } from '../src/permission'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import '../src/logLevel'
|
|
3
|
-
import StreamrClient from 'streamr-client'
|
|
3
|
+
import { StreamrClient } from 'streamr-client'
|
|
4
4
|
import { createClientCommand, Options as BaseOptions } from '../src/command'
|
|
5
5
|
import { getPermissionId } from '../src/permission'
|
|
6
6
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import '../src/logLevel'
|
|
3
3
|
import omit from 'lodash/omit'
|
|
4
4
|
import isString from 'lodash/isString'
|
|
5
|
-
import StreamrClient,
|
|
5
|
+
import { StreamrClient, MessageMetadata } from 'streamr-client'
|
|
6
6
|
import { createClientCommand, Options as BaseOptions } from '../src/command'
|
|
7
7
|
import { createFnParseInt } from '../src/common'
|
|
8
8
|
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@streamr/cli-tools",
|
|
3
|
-
"version": "0.0.1-tatum.
|
|
3
|
+
"version": "0.0.1-tatum.2",
|
|
4
4
|
"description": "Command line tools for Streamr",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"check": "tsc -p ./tsconfig.json --noEmit",
|
|
16
16
|
"clean": "jest --clearCache || true; rm -rf dist *.tsbuildinfo node_modules/.cache || true",
|
|
17
17
|
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'",
|
|
18
|
-
"test": "npm run build && jest --forceExit"
|
|
18
|
+
"test": "npm run build && jest --bail --forceExit"
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
21
21
|
"streamr",
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
"license": "AGPL-3.0",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@ethersproject/wallet": "^5.5.0",
|
|
30
|
-
"@snapshot-labs/snapshot.js": "^0.5.
|
|
31
|
-
"@streamr/utils": "0.0.1-tatum.
|
|
30
|
+
"@snapshot-labs/snapshot.js": "^0.5.8",
|
|
31
|
+
"@streamr/utils": "0.0.1-tatum.2",
|
|
32
32
|
"commander": "^11.0.0",
|
|
33
33
|
"easy-table": "^1.1.1",
|
|
34
34
|
"event-stream": "^4.0.1",
|
|
35
35
|
"lodash": "^4.17.21",
|
|
36
|
-
"streamr-client": "0.0.1-tatum.
|
|
36
|
+
"streamr-client": "0.0.1-tatum.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@streamr/test-utils": "0.0.1-tatum.
|
|
39
|
+
"@streamr/test-utils": "0.0.1-tatum.2",
|
|
40
40
|
"@types/event-stream": "^4.0.0",
|
|
41
|
-
"@types/lodash": "^4.14.
|
|
41
|
+
"@types/lodash": "^4.14.198",
|
|
42
42
|
"@types/merge2": "^1.4.0",
|
|
43
43
|
"merge2": "^1.4.1"
|
|
44
44
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@streamr/cli-tools",
|
|
3
|
-
"version": "0.0.1-tatum.
|
|
3
|
+
"version": "0.0.1-tatum.2",
|
|
4
4
|
"description": "Command line tools for Streamr",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"check": "tsc -p ./tsconfig.json --noEmit",
|
|
16
16
|
"clean": "jest --clearCache || true; rm -rf dist *.tsbuildinfo node_modules/.cache || true",
|
|
17
17
|
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'",
|
|
18
|
-
"test": "npm run build && jest --forceExit"
|
|
18
|
+
"test": "npm run build && jest --bail --forceExit"
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
21
21
|
"streamr",
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
"license": "AGPL-3.0",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@ethersproject/wallet": "^5.5.0",
|
|
30
|
-
"@snapshot-labs/snapshot.js": "^0.5.
|
|
31
|
-
"@streamr/utils": "0.0.1-tatum.
|
|
30
|
+
"@snapshot-labs/snapshot.js": "^0.5.8",
|
|
31
|
+
"@streamr/utils": "0.0.1-tatum.2",
|
|
32
32
|
"commander": "^11.0.0",
|
|
33
33
|
"easy-table": "^1.1.1",
|
|
34
34
|
"event-stream": "^4.0.1",
|
|
35
35
|
"lodash": "^4.17.21",
|
|
36
|
-
"streamr-client": "0.0.1-tatum.
|
|
36
|
+
"streamr-client": "0.0.1-tatum.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@streamr/test-utils": "0.0.1-tatum.
|
|
39
|
+
"@streamr/test-utils": "0.0.1-tatum.2",
|
|
40
40
|
"@types/event-stream": "^4.0.0",
|
|
41
|
-
"@types/lodash": "^4.14.
|
|
41
|
+
"@types/lodash": "^4.14.198",
|
|
42
42
|
"@types/merge2": "^1.4.0",
|
|
43
43
|
"merge2": "^1.4.1"
|
|
44
44
|
}
|