ob-bms-sdk 0.0.40 → 0.0.42
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/api/api.ts +57 -2
- package/dist/api/api.d.ts +57 -2
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -23,6 +23,61 @@ import type { RequestArgs } from './base';
|
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError } from './base';
|
|
25
25
|
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface AuthorizedLocationData
|
|
30
|
+
*/
|
|
31
|
+
export interface AuthorizedLocationData {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof AuthorizedLocationData
|
|
36
|
+
*/
|
|
37
|
+
'id': string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof AuthorizedLocationData
|
|
42
|
+
*/
|
|
43
|
+
'uid': string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof AuthorizedLocationData
|
|
48
|
+
*/
|
|
49
|
+
'name': string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {JsonValue}
|
|
53
|
+
* @memberof AuthorizedLocationData
|
|
54
|
+
*/
|
|
55
|
+
'display_name': JsonValue | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof AuthorizedLocationData
|
|
60
|
+
*/
|
|
61
|
+
'tower_id': string;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof AuthorizedLocationData
|
|
66
|
+
*/
|
|
67
|
+
'floor_id': string;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof AuthorizedLocationData
|
|
72
|
+
*/
|
|
73
|
+
'created_at': string;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof AuthorizedLocationData
|
|
78
|
+
*/
|
|
79
|
+
'updated_at': string;
|
|
80
|
+
}
|
|
26
81
|
/**
|
|
27
82
|
*
|
|
28
83
|
* @export
|
|
@@ -1410,10 +1465,10 @@ export interface TowerData {
|
|
|
1410
1465
|
'floors': Array<FloorData>;
|
|
1411
1466
|
/**
|
|
1412
1467
|
*
|
|
1413
|
-
* @type {Array<
|
|
1468
|
+
* @type {Array<AuthorizedLocationData>}
|
|
1414
1469
|
* @memberof TowerData
|
|
1415
1470
|
*/
|
|
1416
|
-
'locations': Array<
|
|
1471
|
+
'locations': Array<AuthorizedLocationData>;
|
|
1417
1472
|
}
|
|
1418
1473
|
/**
|
|
1419
1474
|
*
|
package/dist/api/api.d.ts
CHANGED
|
@@ -13,6 +13,61 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface AuthorizedLocationData
|
|
20
|
+
*/
|
|
21
|
+
export interface AuthorizedLocationData {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof AuthorizedLocationData
|
|
26
|
+
*/
|
|
27
|
+
'id': string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof AuthorizedLocationData
|
|
32
|
+
*/
|
|
33
|
+
'uid': string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof AuthorizedLocationData
|
|
38
|
+
*/
|
|
39
|
+
'name': string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {JsonValue}
|
|
43
|
+
* @memberof AuthorizedLocationData
|
|
44
|
+
*/
|
|
45
|
+
'display_name': JsonValue | null;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof AuthorizedLocationData
|
|
50
|
+
*/
|
|
51
|
+
'tower_id': string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof AuthorizedLocationData
|
|
56
|
+
*/
|
|
57
|
+
'floor_id': string;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof AuthorizedLocationData
|
|
62
|
+
*/
|
|
63
|
+
'created_at': string;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof AuthorizedLocationData
|
|
68
|
+
*/
|
|
69
|
+
'updated_at': string;
|
|
70
|
+
}
|
|
16
71
|
/**
|
|
17
72
|
*
|
|
18
73
|
* @export
|
|
@@ -1399,10 +1454,10 @@ export interface TowerData {
|
|
|
1399
1454
|
'floors': Array<FloorData>;
|
|
1400
1455
|
/**
|
|
1401
1456
|
*
|
|
1402
|
-
* @type {Array<
|
|
1457
|
+
* @type {Array<AuthorizedLocationData>}
|
|
1403
1458
|
* @memberof TowerData
|
|
1404
1459
|
*/
|
|
1405
|
-
'locations': Array<
|
|
1460
|
+
'locations': Array<AuthorizedLocationData>;
|
|
1406
1461
|
}
|
|
1407
1462
|
/**
|
|
1408
1463
|
*
|