kuzzle-device-manager-types 2.8.0-dev.7 → 2.8.0-dev.8
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.
|
@@ -46,7 +46,7 @@ export declare class AssetService extends DigitalTwinService {
|
|
|
46
46
|
* @param engineGroup
|
|
47
47
|
* @param model
|
|
48
48
|
*/
|
|
49
|
-
updateModelLocales(request: KuzzleRequest,
|
|
49
|
+
updateModelLocales(request: KuzzleRequest, model: string): Promise<ApiAssetUpdateModelLocales[]>;
|
|
50
50
|
private getEngine;
|
|
51
51
|
private refreshModel;
|
|
52
52
|
}
|
|
@@ -8,7 +8,7 @@ interface ModelsControllerRequest {
|
|
|
8
8
|
export interface ApiModelGetAssetRequest extends ModelsControllerRequest {
|
|
9
9
|
action: "getAsset";
|
|
10
10
|
model: string;
|
|
11
|
-
engineGroup
|
|
11
|
+
engineGroup?: string;
|
|
12
12
|
}
|
|
13
13
|
export type ApiModelGetAssetResult = KDocument<AssetModelContent>;
|
|
14
14
|
export interface ApiModelGetDeviceRequest extends ModelsControllerRequest {
|