@formant/data-sdk 0.0.88 → 0.0.91
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/dist/data-sdk.es.js +73 -56
- package/dist/data-sdk.umd.js +14 -14
- package/dist/types/data-sdk/src/Fleet.d.ts +1 -0
- package/package.json +2 -2
|
@@ -35,5 +35,6 @@ export declare class Fleet {
|
|
|
35
35
|
static getFileUrl(uuid: string): Promise<string>;
|
|
36
36
|
static queryTelemetry(query: IQuery): Promise<IStreamData<keyof import("./main").IStreamTypeMap>[]>;
|
|
37
37
|
static queryEvents(query: IEventQuery): Promise<IEvent[]>;
|
|
38
|
+
static getEvent(uuid: string): Promise<IEvent>;
|
|
38
39
|
static getInterventions(): Promise<IEvent[]>;
|
|
39
40
|
}
|
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"require": "./dist/data-sdk.umd.js"
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
|
-
"version": "0.0.
|
|
21
|
+
"version": "0.0.91",
|
|
22
22
|
"scripts": {
|
|
23
23
|
"dev": "vite --port 9146",
|
|
24
24
|
"build": "tsc && vite build",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"types": "./dist/types/data-sdk/src/main.d.ts",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@formant/realtime-sdk": "0.0.
|
|
35
|
+
"@formant/realtime-sdk": "0.0.13",
|
|
36
36
|
"@types/google-protobuf": "^3.15.5",
|
|
37
37
|
"typedoc": "^0.22.13"
|
|
38
38
|
}
|