@bitbar/cloud-api-client 1.2.13 → 1.3.0
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/api/models/Device.d.ts +6 -0
- package/dist/api/models/DeviceModel.d.ts +1 -0
- package/dist/bitbar-cloud-api-client.js +8 -2
- package/dist/bitbar-cloud-api-client.js.map +1 -1
- package/dist/bitbar-cloud-api-client.min.js +2 -2
- package/dist/bitbar-cloud-api-client.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -33,6 +33,11 @@ export declare type SoftwareVersion = {
|
|
|
33
33
|
id: number;
|
|
34
34
|
releaseVersion: string;
|
|
35
35
|
};
|
|
36
|
+
export declare enum LockReason {
|
|
37
|
+
TESTING = "TESTING",
|
|
38
|
+
CLEANING = "CLEANING",
|
|
39
|
+
NOT_OPERATIONAL = "NOT_OPERATIONAL"
|
|
40
|
+
}
|
|
36
41
|
export declare type Device = {
|
|
37
42
|
accountId: number;
|
|
38
43
|
accountName: string;
|
|
@@ -54,6 +59,7 @@ export declare type Device = {
|
|
|
54
59
|
imageTop: number;
|
|
55
60
|
imageWidth: number;
|
|
56
61
|
locked: boolean;
|
|
62
|
+
lockReason: LockReason;
|
|
57
63
|
manufacturer: string;
|
|
58
64
|
online: boolean;
|
|
59
65
|
osType: OsType;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @bitbar/cloud-api-client v1.
|
|
1
|
+
/* @bitbar/cloud-api-client v1.3.0 | Copyright 2024 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('axios'), require('@bitbar/finka'), require('qs'), require('node-abort-controller')) :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(['exports', 'axios', '@bitbar/finka', 'qs', 'node-abort-controller'], factory) :
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios);
|
|
11
11
|
var finka__default = /*#__PURE__*/_interopDefaultLegacy(finka);
|
|
12
12
|
|
|
13
|
-
var version = "1.
|
|
13
|
+
var version = "1.3.0";
|
|
14
14
|
|
|
15
15
|
/******************************************************************************
|
|
16
16
|
Copyright (c) Microsoft Corporation.
|
|
@@ -2077,6 +2077,12 @@
|
|
|
2077
2077
|
SupportedCreators["ROBOT"] = "ROBOT";
|
|
2078
2078
|
SupportedCreators["AUTOMATIC"] = "AUTOMATIC";
|
|
2079
2079
|
})(exports.SupportedCreators || (exports.SupportedCreators = {}));
|
|
2080
|
+
exports.LockReason = void 0;
|
|
2081
|
+
(function (LockReason) {
|
|
2082
|
+
LockReason["TESTING"] = "TESTING";
|
|
2083
|
+
LockReason["CLEANING"] = "CLEANING";
|
|
2084
|
+
LockReason["NOT_OPERATIONAL"] = "NOT_OPERATIONAL";
|
|
2085
|
+
})(exports.LockReason || (exports.LockReason = {}));
|
|
2080
2086
|
|
|
2081
2087
|
exports.CriterionField = void 0;
|
|
2082
2088
|
(function (CriterionField) {
|