Skip to content

Commit 125cdcf

Browse files
authored
Merge pull request #36 from codenotary/fix/imports
Fix organization imports
2 parents b1b4299 + 4ce86e4 commit 125cdcf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+68
-108
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ jobs:
2929
npm run build
3030
- name: Run overview showcase
3131
run: |
32-
docker run -d --rm --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -p 3322:3322 --name immudb codenotary/immudb:1.3.2
32+
docker run -d --rm --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -p 3322:3322 --name immudb codenotary/immudb:1.4.1
3333
npx ts-node --esm ./immudb-node-showcase/src/overview-showcase.ts
3434
docker stop immudb
3535
- name: Run sql showcase
3636
run: |
37-
docker run -d --rm --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -p 3322:3322 --name immudb codenotary/immudb:1.3.2
37+
docker run -d --rm --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -p 3322:3322 --name immudb codenotary/immudb:1.4.1
3838
npx ts-node --esm ./immudb-node-showcase/src/sql-showcase.ts
3939
docker stop immudb
4040
- name: Run zSet showcase
4141
run: |
42-
docker run -d --rm --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -p 3322:3322 --name immudb codenotary/immudb:1.3.2
42+
docker run -d --rm --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -p 3322:3322 --name immudb codenotary/immudb:1.4.1
4343
npx ts-node --esm ./immudb-node-showcase/src/zSet-showcase.ts
4444
docker stop immudb

immudb-node-doc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codenotary/immudb-node-doc",
3-
"version": "2.0.0-alpha.0",
3+
"version": "2.0.0-alpha.1",
44
"license": "Apache-2.0",
55
"repository": {
66
"type": "git",

immudb-node-grpcjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codenotary/immudb-node-grpcjs",
3-
"version": "2.0.0-alpha.0",
3+
"version": "2.0.0-alpha.1",
44
"license": "Apache-2.0",
55
"repository": {
66
"type": "git",

immudb-node-pbjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codenotary/immudb-node-pbjs",
3-
"version": "2.0.0-alpha.0",
3+
"version": "2.0.0-alpha.1",
44
"license": "Apache-2.0",
55
"repository": {
66
"type": "git",

immudb-node-showcase/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codenotary/immudb-node-showcase",
3-
"version": "2.0.0-alpha.0",
3+
"version": "2.0.0-alpha.1",
44
"license": "Apache-2.0",
55
"repository": {
66
"type": "git",
@@ -19,7 +19,7 @@
1919
}
2020
},
2121
"dependencies": {
22-
"@codenotary/immudb-node": "2.0.0-alpha.0",
22+
"@codenotary/immudb-node": "2.0.0-alpha.1",
2323
"long": "^5.2.0"
2424
},
2525
"devDependencies": {

immudb-node-showcase/src/overview-showcase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
verifyVerification,
55
types,
66
stream,
7-
} from 'immudb-node'
7+
} from '@codenotary/immudb-node'
88

99

1010

immudb-node-showcase/src/sql-showcase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
verifyVerification,
1212
types,
1313
stream,
14-
} from 'immudb-node'
14+
} from '@codenotary/immudb-node'
1515

1616

1717

immudb-node-showcase/src/zSet-showcase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
verifyVerification,
55
types,
66
stream,
7-
} from 'immudb-node'
7+
} from '@codenotary/immudb-node'
88

99

1010

immudb-node/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codenotary/immudb-node",
3-
"version": "2.0.0-alpha.0",
3+
"version": "2.0.0-alpha.1",
44
"license": "Apache-2.0",
55
"repository": {
66
"type": "git",
@@ -34,8 +34,8 @@
3434
"types": "dist/index.d.ts",
3535
"dependencies": {
3636
"@grpc/grpc-js": "^1.7.0",
37-
"@codenotary/immudb-node-grpcjs": "2.0.0-alpha.0",
38-
"@codenotary/immudb-node-pbjs": "2.0.0-alpha.0",
37+
"@codenotary/immudb-node-grpcjs": "2.0.0-alpha.1",
38+
"@codenotary/immudb-node-pbjs": "2.0.0-alpha.1",
3939
"long": "^5.2.0"
4040
},
4141
"devDependencies": {

immudb-node/src/immu-api/db.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type * as immu from '../types/index.js'
22
import * as igd from '../immu-grpc-db.js'
33
import * as grpcjs from '@grpc/grpc-js'
44
import * as immuGrpc from '../immu-grpc/index.js'
5-
import type * as igrpc from 'immudb-node-grpcjs'
5+
import type * as igrpc from '@codenotary/immudb-node-grpcjs'
66

77

88

0 commit comments

Comments
 (0)