Skip to content

Commit 9205782

Browse files
committed
Merge branch 'development'
2 parents eb04538 + fac4d82 commit 9205782

32 files changed

+165
-103
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.6.0
1+
3.7.0

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typedb-studio",
3-
"version": "3.6.0",
3+
"version": "3.7.0",
44
"scripts": {
55
"ng": "ng",
66
"generate-grammar": "lezer-generator --typeScript src/framework/codemirror-lang-typeql/typeql.grammar -o src/framework/codemirror-lang-typeql/generated/typeql.grammar.generated",
@@ -46,7 +46,7 @@
4646
"rxjs": "~7.8.0",
4747
"sigma": "3.0.1",
4848
"tslib": "^2.3.0",
49-
"typedb-driver-http": "0.0.1",
49+
"@typedb/driver-http": "3.7.0",
5050
"typedb-web-common": "workspace:*",
5151
"uuid": "11.1.0",
5252
"zone.js": "~0.15.1",

pnpm-lock.yaml

Lines changed: 8 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typedb-studio"
3-
version = "3.6.0"
3+
version = "3.7.0"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "typedb-studio",
4-
"version": "3.6.0",
4+
"version": "3.7.0",
55
"identifier": "com.typedb.studio",
66
"build": {
77
"beforeDevCommand": "pnpm start",
@@ -31,7 +31,7 @@
3131
],
3232
"windows": {
3333
"wix": {
34-
"version": "3.6.0"
34+
"version": "3.7.0"
3535
}
3636
},
3737
"macOS": {

src/concept/action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
55
*/
66

7-
import { ApiResponse, QueryResponse } from "typedb-driver-http";
7+
import { ApiResponse, QueryResponse } from "@typedb/driver-http";
88
import { TransactionOperation } from "./transaction";
99

1010
interface DriverActionBase {

src/concept/connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import {
88
Database, DriverParams, DriverParamsBasic, DriverParamsTranslated, isBasicParams, TranslatedAddress
9-
} from "typedb-driver-http";
9+
} from "@typedb/driver-http";
1010

1111
export class ConnectionConfig {
1212

src/concept/transaction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
55
*/
66

7-
import { TransactionType } from "typedb-driver-http";
7+
import { TransactionType } from "@typedb/driver-http";
88
import { QueryRunAction } from "./action";
99

1010
export class Transaction {

src/framework/graph-visualiser/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { EdgeKind, RoleType } from "typedb-driver-http";
1+
import { EdgeKind, RoleType } from "@typedb/driver-http";
22
import {DataVertex, DataVertexKind, VertexUnavailable} from "./graph";
33
import {Color} from "chroma-js";
44

0 commit comments

Comments
 (0)