kuzzle-device-manager-types 2.10.2-dev.2 → 2.10.2
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.
|
@@ -95,7 +95,6 @@ export interface ApiAssetMeasureIngestRequest extends AssetsControllerRequest {
|
|
|
95
95
|
action: "measureIngest";
|
|
96
96
|
assetId: string;
|
|
97
97
|
engineId: string;
|
|
98
|
-
engineGroup?: string;
|
|
99
98
|
slotName: string;
|
|
100
99
|
body: {
|
|
101
100
|
dataSource: TypelessApiMeasureSource;
|
|
@@ -111,7 +110,6 @@ export interface ApiAssetmMeasureIngestRequest extends AssetsControllerRequest {
|
|
|
111
110
|
action: "mMeasureIngest";
|
|
112
111
|
assetId: string;
|
|
113
112
|
engineId: string;
|
|
114
|
-
engineGroup?: string;
|
|
115
113
|
body: {
|
|
116
114
|
dataSource: TypelessApiMeasureSource;
|
|
117
115
|
measurements: APIDecodedMeasurement[];
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { JSONObject } from "kuzzle-sdk";
|
|
1
2
|
import { MeasureContent } from "../../measure";
|
|
2
3
|
import { DeviceManagerPlugin, InternalCollection } from "../../plugin";
|
|
3
4
|
import { ApiDigitalTwinMGetLastMeasuredAtResult } from "../types/DigitalTwinApi";
|
|
@@ -18,4 +19,5 @@ export declare class DigitalTwinService extends BaseService {
|
|
|
18
19
|
getLastMeasuredAt(engineId: string, digitalTwinId: string): Promise<number>;
|
|
19
20
|
mGetLastMeasuredAt(engineId: string, digitalTwinIds: string[]): Promise<ApiDigitalTwinMGetLastMeasuredAtResult>;
|
|
20
21
|
private getAggregationQueryParameters;
|
|
22
|
+
getEngine(engineId: string): Promise<JSONObject>;
|
|
21
23
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kuzzle-device-manager-types",
|
|
3
|
-
"version": "2.10.2
|
|
3
|
+
"version": "2.10.2",
|
|
4
4
|
"description": "Shared types for Kuzzle Device Manager",
|
|
5
5
|
"author": "The Kuzzle Team (support@kuzzle.io)",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/kuzzleio/kuzzle-
|
|
10
|
+
"url": "git+https://github.com/kuzzleio/kuzzle-device-manager.git",
|
|
11
11
|
"directory": "types"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|