Skip to content

Commit 0a1e26b

Browse files
authored
Release 7.8.1: Fix bad import (#677)
Fix bad import in Observer.ts
1 parent c32abb4 commit 0a1e26b

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/actions/tests-ac/action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ runs:
1919
- name: Setup Admin console
2020
run: |
2121
export SDK_DIR="$(pwd)"
22+
yarn build
23+
find . -name "*.ts" | xargs rm
2224
git clone -b 4-dev https://github.com/kuzzleio/kuzzle-admin-console /tmp/admin-console
2325
cp -f ./cypress.json /tmp/admin-console/cypress.json
2426
cd /tmp/admin-console
2527
yarn
26-
yarn add kuzzle-sdk-v7.6.1@"$SDK_DIR"
28+
yarn add kuzzle-sdk-v7@"$SDK_DIR"
2729
yarn build
2830
shell: bash
2931
- name: Run e2e tests
@@ -33,5 +35,5 @@ runs:
3335
cd /tmp/admin-console
3436
CYPRESS_RETRIES=5 npm run test:e2e -- --backend=2
3537
env:
36-
CYPRESS_RECORD_KEY: ${{ inputs.cypress-key }}
38+
CYPRESS_RECORD_KEY: ${{ inputs.cypress-key }}
3739
shell: bash

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kuzzle-sdk",
3-
"version": "7.8.0",
3+
"version": "7.8.1",
44
"description": "Official Javascript SDK for Kuzzle",
55
"author": "The Kuzzle Team <[email protected]>",
66
"repository": {

src/core/Observer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Kuzzle } from '../Kuzzle';
22
import { RealtimeDocument } from './RealtimeDocument';
33
import { Document, DocumentNotification, JSONObject } from '../types';
44
import { RealtimeDocumentSearchResult } from './searchResult/RealtimeDocument';
5-
import { ArgsDocumentControllerGet, ArgsDocumentControllerMGet, ArgsDocumentControllerSearch } from 'src/controllers/Document';
5+
import { ArgsDocumentControllerGet, ArgsDocumentControllerMGet, ArgsDocumentControllerSearch } from '../controllers/Document';
66

77
/**
88
* Class based on a Set<string> that holds the observed documents IDs of

0 commit comments

Comments
 (0)