Skip to content

Commit bc83321

Browse files
committed
chore!: migrate to new scoped nativescript-couchbase package
1 parent 94365f2 commit bc83321

File tree

5 files changed

+22
-49
lines changed

5 files changed

+22
-49
lines changed

demo/package-lock.json

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

src/internal/activity-recognition/recognizers/state/store.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { HumanActivity, Resolution, StartOptions } from "../../index";
2-
import { Couchbase } from "nativescript-couchbase-plugin";
2+
import { CouchBase } from "@triniwiz/nativescript-couchbase";
33

44
export interface RecognizerStateStore {
55
isActive(recognizer: Resolution): Promise<boolean>;
@@ -20,10 +20,10 @@ const DATABASE_NAME = "context-apis";
2020
const DOC_TYPE = "recognizer-state";
2121

2222
class RecognizersStateStoreDb implements RecognizerStateStore {
23-
private database: Couchbase;
23+
private database: CouchBase;
2424

2525
constructor() {
26-
this.database = new Couchbase(DATABASE_NAME);
26+
this.database = new CouchBase(DATABASE_NAME);
2727
}
2828

2929
async isActive(recognizer: Resolution): Promise<boolean> {

src/package-lock.json

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

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
},
6262
"dependencies": {
6363
"@nativescript/geolocation": "^8.0.2",
64-
"nativescript-couchbase-plugin": "^0.9.6",
64+
"@triniwiz/nativescript-couchbase": "1.2.5",
6565
"nativescript-permissions": "1.3.11",
6666
"rxjs": "^6.5.5"
6767
},
-179 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)