bmlt-server-client 1.3.0 → 2.0.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/.openapi-generator/FILES +6 -6
- package/dist/apis/{ServerApi.d.ts → RootServerApi.d.ts} +16 -16
- package/dist/apis/{ServerApi.js → RootServerApi.js} +86 -86
- package/dist/apis/index.d.ts +1 -1
- package/dist/apis/index.js +1 -1
- package/dist/models/RootServer.d.ts +69 -0
- package/dist/models/{Server.js → RootServer.js} +17 -17
- package/dist/models/RootServerBase.d.ts +63 -0
- package/dist/models/{ServerBase.js → RootServerBase.js} +17 -17
- package/dist/models/RootServerBaseStatistics.d.ts +40 -0
- package/dist/models/RootServerBaseStatistics.js +58 -0
- package/dist/models/RootServerBaseStatisticsMeetings.d.ts +56 -0
- package/dist/models/{ServerBaseStatisticsMeetings.js → RootServerBaseStatisticsMeetings.js} +14 -14
- package/dist/models/RootServerBaseStatisticsServiceBodies.d.ts +50 -0
- package/dist/models/RootServerBaseStatisticsServiceBodies.js +64 -0
- package/dist/models/index.d.ts +5 -5
- package/dist/models/index.js +5 -5
- package/openapi.json +1 -1
- package/package.json +1 -1
- package/src/apis/{ServerApi.ts → RootServerApi.ts} +27 -27
- package/src/apis/index.ts +1 -1
- package/src/models/{Server.ts → RootServer.ts} +27 -27
- package/src/models/{ServerBase.ts → RootServerBase.ts} +26 -26
- package/src/models/RootServerBaseStatistics.ts +90 -0
- package/src/models/{ServerBaseStatisticsMeetings.ts → RootServerBaseStatisticsMeetings.ts} +15 -15
- package/src/models/{ServerBaseStatisticsServiceBodies.ts → RootServerBaseStatisticsServiceBodies.ts} +14 -14
- package/src/models/index.ts +5 -5
- package/dist/models/Server.d.ts +0 -69
- package/dist/models/ServerBase.d.ts +0 -63
- package/dist/models/ServerBaseStatistics.d.ts +0 -40
- package/dist/models/ServerBaseStatistics.js +0 -58
- package/dist/models/ServerBaseStatisticsMeetings.d.ts +0 -56
- package/dist/models/ServerBaseStatisticsServiceBodies.d.ts +0 -50
- package/dist/models/ServerBaseStatisticsServiceBodies.js +0 -64
- package/src/models/ServerBaseStatistics.ts +0 -90
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BMLT
|
|
3
|
+
* BMLT Admin API Documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { RootServerBaseStatistics } from './RootServerBaseStatistics';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RootServer
|
|
17
|
+
*/
|
|
18
|
+
export interface RootServer {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof RootServer
|
|
23
|
+
*/
|
|
24
|
+
sourceId: number;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof RootServer
|
|
29
|
+
*/
|
|
30
|
+
name: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof RootServer
|
|
35
|
+
*/
|
|
36
|
+
url: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {RootServerBaseStatistics}
|
|
40
|
+
* @memberof RootServer
|
|
41
|
+
*/
|
|
42
|
+
statistics?: RootServerBaseStatistics;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof RootServer
|
|
47
|
+
*/
|
|
48
|
+
serverInfo?: string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {Date}
|
|
52
|
+
* @memberof RootServer
|
|
53
|
+
*/
|
|
54
|
+
lastSuccessfulImport: Date;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {number}
|
|
58
|
+
* @memberof RootServer
|
|
59
|
+
*/
|
|
60
|
+
id: number;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Check if a given object implements the RootServer interface.
|
|
64
|
+
*/
|
|
65
|
+
export declare function instanceOfRootServer(value: object): value is RootServer;
|
|
66
|
+
export declare function RootServerFromJSON(json: any): RootServer;
|
|
67
|
+
export declare function RootServerFromJSONTyped(json: any, ignoreDiscriminator: boolean): RootServer;
|
|
68
|
+
export declare function RootServerToJSON(json: any): RootServer;
|
|
69
|
+
export declare function RootServerToJSONTyped(value?: RootServer | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
17
|
-
var
|
|
16
|
+
exports.RootServerToJSONTyped = exports.RootServerToJSON = exports.RootServerFromJSONTyped = exports.RootServerFromJSON = exports.instanceOfRootServer = void 0;
|
|
17
|
+
var RootServerBaseStatistics_1 = require("./RootServerBaseStatistics");
|
|
18
18
|
/**
|
|
19
|
-
* Check if a given object implements the
|
|
19
|
+
* Check if a given object implements the RootServer interface.
|
|
20
20
|
*/
|
|
21
|
-
function
|
|
21
|
+
function instanceOfRootServer(value) {
|
|
22
22
|
if (!('sourceId' in value) || value['sourceId'] === undefined)
|
|
23
23
|
return false;
|
|
24
24
|
if (!('name' in value) || value['name'] === undefined)
|
|
@@ -31,12 +31,12 @@ function instanceOfServer(value) {
|
|
|
31
31
|
return false;
|
|
32
32
|
return true;
|
|
33
33
|
}
|
|
34
|
-
exports.
|
|
35
|
-
function
|
|
36
|
-
return
|
|
34
|
+
exports.instanceOfRootServer = instanceOfRootServer;
|
|
35
|
+
function RootServerFromJSON(json) {
|
|
36
|
+
return RootServerFromJSONTyped(json, false);
|
|
37
37
|
}
|
|
38
|
-
exports.
|
|
39
|
-
function
|
|
38
|
+
exports.RootServerFromJSON = RootServerFromJSON;
|
|
39
|
+
function RootServerFromJSONTyped(json, ignoreDiscriminator) {
|
|
40
40
|
if (json == null) {
|
|
41
41
|
return json;
|
|
42
42
|
}
|
|
@@ -44,18 +44,18 @@ function ServerFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
44
44
|
'sourceId': json['sourceId'],
|
|
45
45
|
'name': json['name'],
|
|
46
46
|
'url': json['url'],
|
|
47
|
-
'statistics': json['statistics'] == null ? undefined : (0,
|
|
47
|
+
'statistics': json['statistics'] == null ? undefined : (0, RootServerBaseStatistics_1.RootServerBaseStatisticsFromJSON)(json['statistics']),
|
|
48
48
|
'serverInfo': json['serverInfo'] == null ? undefined : json['serverInfo'],
|
|
49
49
|
'lastSuccessfulImport': (new Date(json['lastSuccessfulImport'])),
|
|
50
50
|
'id': json['id'],
|
|
51
51
|
};
|
|
52
52
|
}
|
|
53
|
-
exports.
|
|
54
|
-
function
|
|
55
|
-
return
|
|
53
|
+
exports.RootServerFromJSONTyped = RootServerFromJSONTyped;
|
|
54
|
+
function RootServerToJSON(json) {
|
|
55
|
+
return RootServerToJSONTyped(json, false);
|
|
56
56
|
}
|
|
57
|
-
exports.
|
|
58
|
-
function
|
|
57
|
+
exports.RootServerToJSON = RootServerToJSON;
|
|
58
|
+
function RootServerToJSONTyped(value, ignoreDiscriminator) {
|
|
59
59
|
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
60
60
|
if (value == null) {
|
|
61
61
|
return value;
|
|
@@ -64,10 +64,10 @@ function ServerToJSONTyped(value, ignoreDiscriminator) {
|
|
|
64
64
|
'sourceId': value['sourceId'],
|
|
65
65
|
'name': value['name'],
|
|
66
66
|
'url': value['url'],
|
|
67
|
-
'statistics': (0,
|
|
67
|
+
'statistics': (0, RootServerBaseStatistics_1.RootServerBaseStatisticsToJSON)(value['statistics']),
|
|
68
68
|
'serverInfo': value['serverInfo'],
|
|
69
69
|
'lastSuccessfulImport': ((value['lastSuccessfulImport']).toISOString()),
|
|
70
70
|
'id': value['id'],
|
|
71
71
|
};
|
|
72
72
|
}
|
|
73
|
-
exports.
|
|
73
|
+
exports.RootServerToJSONTyped = RootServerToJSONTyped;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BMLT
|
|
3
|
+
* BMLT Admin API Documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { RootServerBaseStatistics } from './RootServerBaseStatistics';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RootServerBase
|
|
17
|
+
*/
|
|
18
|
+
export interface RootServerBase {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof RootServerBase
|
|
23
|
+
*/
|
|
24
|
+
sourceId?: number;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof RootServerBase
|
|
29
|
+
*/
|
|
30
|
+
name?: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof RootServerBase
|
|
35
|
+
*/
|
|
36
|
+
url?: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {RootServerBaseStatistics}
|
|
40
|
+
* @memberof RootServerBase
|
|
41
|
+
*/
|
|
42
|
+
statistics?: RootServerBaseStatistics;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof RootServerBase
|
|
47
|
+
*/
|
|
48
|
+
serverInfo?: string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {Date}
|
|
52
|
+
* @memberof RootServerBase
|
|
53
|
+
*/
|
|
54
|
+
lastSuccessfulImport?: Date;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Check if a given object implements the RootServerBase interface.
|
|
58
|
+
*/
|
|
59
|
+
export declare function instanceOfRootServerBase(value: object): value is RootServerBase;
|
|
60
|
+
export declare function RootServerBaseFromJSON(json: any): RootServerBase;
|
|
61
|
+
export declare function RootServerBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RootServerBase;
|
|
62
|
+
export declare function RootServerBaseToJSON(json: any): RootServerBase;
|
|
63
|
+
export declare function RootServerBaseToJSONTyped(value?: RootServerBase | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -13,20 +13,20 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
17
|
-
var
|
|
16
|
+
exports.RootServerBaseToJSONTyped = exports.RootServerBaseToJSON = exports.RootServerBaseFromJSONTyped = exports.RootServerBaseFromJSON = exports.instanceOfRootServerBase = void 0;
|
|
17
|
+
var RootServerBaseStatistics_1 = require("./RootServerBaseStatistics");
|
|
18
18
|
/**
|
|
19
|
-
* Check if a given object implements the
|
|
19
|
+
* Check if a given object implements the RootServerBase interface.
|
|
20
20
|
*/
|
|
21
|
-
function
|
|
21
|
+
function instanceOfRootServerBase(value) {
|
|
22
22
|
return true;
|
|
23
23
|
}
|
|
24
|
-
exports.
|
|
25
|
-
function
|
|
26
|
-
return
|
|
24
|
+
exports.instanceOfRootServerBase = instanceOfRootServerBase;
|
|
25
|
+
function RootServerBaseFromJSON(json) {
|
|
26
|
+
return RootServerBaseFromJSONTyped(json, false);
|
|
27
27
|
}
|
|
28
|
-
exports.
|
|
29
|
-
function
|
|
28
|
+
exports.RootServerBaseFromJSON = RootServerBaseFromJSON;
|
|
29
|
+
function RootServerBaseFromJSONTyped(json, ignoreDiscriminator) {
|
|
30
30
|
if (json == null) {
|
|
31
31
|
return json;
|
|
32
32
|
}
|
|
@@ -34,17 +34,17 @@ function ServerBaseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
34
34
|
'sourceId': json['sourceId'] == null ? undefined : json['sourceId'],
|
|
35
35
|
'name': json['name'] == null ? undefined : json['name'],
|
|
36
36
|
'url': json['url'] == null ? undefined : json['url'],
|
|
37
|
-
'statistics': json['statistics'] == null ? undefined : (0,
|
|
37
|
+
'statistics': json['statistics'] == null ? undefined : (0, RootServerBaseStatistics_1.RootServerBaseStatisticsFromJSON)(json['statistics']),
|
|
38
38
|
'serverInfo': json['serverInfo'] == null ? undefined : json['serverInfo'],
|
|
39
39
|
'lastSuccessfulImport': json['lastSuccessfulImport'] == null ? undefined : (new Date(json['lastSuccessfulImport'])),
|
|
40
40
|
};
|
|
41
41
|
}
|
|
42
|
-
exports.
|
|
43
|
-
function
|
|
44
|
-
return
|
|
42
|
+
exports.RootServerBaseFromJSONTyped = RootServerBaseFromJSONTyped;
|
|
43
|
+
function RootServerBaseToJSON(json) {
|
|
44
|
+
return RootServerBaseToJSONTyped(json, false);
|
|
45
45
|
}
|
|
46
|
-
exports.
|
|
47
|
-
function
|
|
46
|
+
exports.RootServerBaseToJSON = RootServerBaseToJSON;
|
|
47
|
+
function RootServerBaseToJSONTyped(value, ignoreDiscriminator) {
|
|
48
48
|
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
49
49
|
if (value == null) {
|
|
50
50
|
return value;
|
|
@@ -53,9 +53,9 @@ function ServerBaseToJSONTyped(value, ignoreDiscriminator) {
|
|
|
53
53
|
'sourceId': value['sourceId'],
|
|
54
54
|
'name': value['name'],
|
|
55
55
|
'url': value['url'],
|
|
56
|
-
'statistics': (0,
|
|
56
|
+
'statistics': (0, RootServerBaseStatistics_1.RootServerBaseStatisticsToJSON)(value['statistics']),
|
|
57
57
|
'serverInfo': value['serverInfo'],
|
|
58
58
|
'lastSuccessfulImport': value['lastSuccessfulImport'] == null ? undefined : ((value['lastSuccessfulImport']).toISOString()),
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
|
-
exports.
|
|
61
|
+
exports.RootServerBaseToJSONTyped = RootServerBaseToJSONTyped;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BMLT
|
|
3
|
+
* BMLT Admin API Documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { RootServerBaseStatisticsMeetings } from './RootServerBaseStatisticsMeetings';
|
|
13
|
+
import type { RootServerBaseStatisticsServiceBodies } from './RootServerBaseStatisticsServiceBodies';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface RootServerBaseStatistics
|
|
18
|
+
*/
|
|
19
|
+
export interface RootServerBaseStatistics {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {RootServerBaseStatisticsServiceBodies}
|
|
23
|
+
* @memberof RootServerBaseStatistics
|
|
24
|
+
*/
|
|
25
|
+
serviceBodies: RootServerBaseStatisticsServiceBodies;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {RootServerBaseStatisticsMeetings}
|
|
29
|
+
* @memberof RootServerBaseStatistics
|
|
30
|
+
*/
|
|
31
|
+
meetings: RootServerBaseStatisticsMeetings;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the RootServerBaseStatistics interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfRootServerBaseStatistics(value: object): value is RootServerBaseStatistics;
|
|
37
|
+
export declare function RootServerBaseStatisticsFromJSON(json: any): RootServerBaseStatistics;
|
|
38
|
+
export declare function RootServerBaseStatisticsFromJSONTyped(json: any, ignoreDiscriminator: boolean): RootServerBaseStatistics;
|
|
39
|
+
export declare function RootServerBaseStatisticsToJSON(json: any): RootServerBaseStatistics;
|
|
40
|
+
export declare function RootServerBaseStatisticsToJSONTyped(value?: RootServerBaseStatistics | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* BMLT
|
|
6
|
+
* BMLT Admin API Documentation
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.RootServerBaseStatisticsToJSONTyped = exports.RootServerBaseStatisticsToJSON = exports.RootServerBaseStatisticsFromJSONTyped = exports.RootServerBaseStatisticsFromJSON = exports.instanceOfRootServerBaseStatistics = void 0;
|
|
17
|
+
var RootServerBaseStatisticsMeetings_1 = require("./RootServerBaseStatisticsMeetings");
|
|
18
|
+
var RootServerBaseStatisticsServiceBodies_1 = require("./RootServerBaseStatisticsServiceBodies");
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the RootServerBaseStatistics interface.
|
|
21
|
+
*/
|
|
22
|
+
function instanceOfRootServerBaseStatistics(value) {
|
|
23
|
+
if (!('serviceBodies' in value) || value['serviceBodies'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('meetings' in value) || value['meetings'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
exports.instanceOfRootServerBaseStatistics = instanceOfRootServerBaseStatistics;
|
|
30
|
+
function RootServerBaseStatisticsFromJSON(json) {
|
|
31
|
+
return RootServerBaseStatisticsFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
exports.RootServerBaseStatisticsFromJSON = RootServerBaseStatisticsFromJSON;
|
|
34
|
+
function RootServerBaseStatisticsFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'serviceBodies': (0, RootServerBaseStatisticsServiceBodies_1.RootServerBaseStatisticsServiceBodiesFromJSON)(json['serviceBodies']),
|
|
40
|
+
'meetings': (0, RootServerBaseStatisticsMeetings_1.RootServerBaseStatisticsMeetingsFromJSON)(json['meetings']),
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
exports.RootServerBaseStatisticsFromJSONTyped = RootServerBaseStatisticsFromJSONTyped;
|
|
44
|
+
function RootServerBaseStatisticsToJSON(json) {
|
|
45
|
+
return RootServerBaseStatisticsToJSONTyped(json, false);
|
|
46
|
+
}
|
|
47
|
+
exports.RootServerBaseStatisticsToJSON = RootServerBaseStatisticsToJSON;
|
|
48
|
+
function RootServerBaseStatisticsToJSONTyped(value, ignoreDiscriminator) {
|
|
49
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'serviceBodies': (0, RootServerBaseStatisticsServiceBodies_1.RootServerBaseStatisticsServiceBodiesToJSON)(value['serviceBodies']),
|
|
55
|
+
'meetings': (0, RootServerBaseStatisticsMeetings_1.RootServerBaseStatisticsMeetingsToJSON)(value['meetings']),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
exports.RootServerBaseStatisticsToJSONTyped = RootServerBaseStatisticsToJSONTyped;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BMLT
|
|
3
|
+
* BMLT Admin API Documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface RootServerBaseStatisticsMeetings
|
|
16
|
+
*/
|
|
17
|
+
export interface RootServerBaseStatisticsMeetings {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof RootServerBaseStatisticsMeetings
|
|
22
|
+
*/
|
|
23
|
+
numTotal: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof RootServerBaseStatisticsMeetings
|
|
28
|
+
*/
|
|
29
|
+
numInPerson: number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof RootServerBaseStatisticsMeetings
|
|
34
|
+
*/
|
|
35
|
+
numVirtual: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof RootServerBaseStatisticsMeetings
|
|
40
|
+
*/
|
|
41
|
+
numHybrid: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof RootServerBaseStatisticsMeetings
|
|
46
|
+
*/
|
|
47
|
+
numUnknown: number;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Check if a given object implements the RootServerBaseStatisticsMeetings interface.
|
|
51
|
+
*/
|
|
52
|
+
export declare function instanceOfRootServerBaseStatisticsMeetings(value: object): value is RootServerBaseStatisticsMeetings;
|
|
53
|
+
export declare function RootServerBaseStatisticsMeetingsFromJSON(json: any): RootServerBaseStatisticsMeetings;
|
|
54
|
+
export declare function RootServerBaseStatisticsMeetingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): RootServerBaseStatisticsMeetings;
|
|
55
|
+
export declare function RootServerBaseStatisticsMeetingsToJSON(json: any): RootServerBaseStatisticsMeetings;
|
|
56
|
+
export declare function RootServerBaseStatisticsMeetingsToJSONTyped(value?: RootServerBaseStatisticsMeetings | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
16
|
+
exports.RootServerBaseStatisticsMeetingsToJSONTyped = exports.RootServerBaseStatisticsMeetingsToJSON = exports.RootServerBaseStatisticsMeetingsFromJSONTyped = exports.RootServerBaseStatisticsMeetingsFromJSON = exports.instanceOfRootServerBaseStatisticsMeetings = void 0;
|
|
17
17
|
/**
|
|
18
|
-
* Check if a given object implements the
|
|
18
|
+
* Check if a given object implements the RootServerBaseStatisticsMeetings interface.
|
|
19
19
|
*/
|
|
20
|
-
function
|
|
20
|
+
function instanceOfRootServerBaseStatisticsMeetings(value) {
|
|
21
21
|
if (!('numTotal' in value) || value['numTotal'] === undefined)
|
|
22
22
|
return false;
|
|
23
23
|
if (!('numInPerson' in value) || value['numInPerson'] === undefined)
|
|
@@ -30,12 +30,12 @@ function instanceOfServerBaseStatisticsMeetings(value) {
|
|
|
30
30
|
return false;
|
|
31
31
|
return true;
|
|
32
32
|
}
|
|
33
|
-
exports.
|
|
34
|
-
function
|
|
35
|
-
return
|
|
33
|
+
exports.instanceOfRootServerBaseStatisticsMeetings = instanceOfRootServerBaseStatisticsMeetings;
|
|
34
|
+
function RootServerBaseStatisticsMeetingsFromJSON(json) {
|
|
35
|
+
return RootServerBaseStatisticsMeetingsFromJSONTyped(json, false);
|
|
36
36
|
}
|
|
37
|
-
exports.
|
|
38
|
-
function
|
|
37
|
+
exports.RootServerBaseStatisticsMeetingsFromJSON = RootServerBaseStatisticsMeetingsFromJSON;
|
|
38
|
+
function RootServerBaseStatisticsMeetingsFromJSONTyped(json, ignoreDiscriminator) {
|
|
39
39
|
if (json == null) {
|
|
40
40
|
return json;
|
|
41
41
|
}
|
|
@@ -47,12 +47,12 @@ function ServerBaseStatisticsMeetingsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
47
47
|
'numUnknown': json['numUnknown'],
|
|
48
48
|
};
|
|
49
49
|
}
|
|
50
|
-
exports.
|
|
51
|
-
function
|
|
52
|
-
return
|
|
50
|
+
exports.RootServerBaseStatisticsMeetingsFromJSONTyped = RootServerBaseStatisticsMeetingsFromJSONTyped;
|
|
51
|
+
function RootServerBaseStatisticsMeetingsToJSON(json) {
|
|
52
|
+
return RootServerBaseStatisticsMeetingsToJSONTyped(json, false);
|
|
53
53
|
}
|
|
54
|
-
exports.
|
|
55
|
-
function
|
|
54
|
+
exports.RootServerBaseStatisticsMeetingsToJSON = RootServerBaseStatisticsMeetingsToJSON;
|
|
55
|
+
function RootServerBaseStatisticsMeetingsToJSONTyped(value, ignoreDiscriminator) {
|
|
56
56
|
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
57
57
|
if (value == null) {
|
|
58
58
|
return value;
|
|
@@ -65,4 +65,4 @@ function ServerBaseStatisticsMeetingsToJSONTyped(value, ignoreDiscriminator) {
|
|
|
65
65
|
'numUnknown': value['numUnknown'],
|
|
66
66
|
};
|
|
67
67
|
}
|
|
68
|
-
exports.
|
|
68
|
+
exports.RootServerBaseStatisticsMeetingsToJSONTyped = RootServerBaseStatisticsMeetingsToJSONTyped;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BMLT
|
|
3
|
+
* BMLT Admin API Documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface RootServerBaseStatisticsServiceBodies
|
|
16
|
+
*/
|
|
17
|
+
export interface RootServerBaseStatisticsServiceBodies {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof RootServerBaseStatisticsServiceBodies
|
|
22
|
+
*/
|
|
23
|
+
numZones: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof RootServerBaseStatisticsServiceBodies
|
|
28
|
+
*/
|
|
29
|
+
numRegions: number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof RootServerBaseStatisticsServiceBodies
|
|
34
|
+
*/
|
|
35
|
+
numAreas: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof RootServerBaseStatisticsServiceBodies
|
|
40
|
+
*/
|
|
41
|
+
numGroups: number;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Check if a given object implements the RootServerBaseStatisticsServiceBodies interface.
|
|
45
|
+
*/
|
|
46
|
+
export declare function instanceOfRootServerBaseStatisticsServiceBodies(value: object): value is RootServerBaseStatisticsServiceBodies;
|
|
47
|
+
export declare function RootServerBaseStatisticsServiceBodiesFromJSON(json: any): RootServerBaseStatisticsServiceBodies;
|
|
48
|
+
export declare function RootServerBaseStatisticsServiceBodiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): RootServerBaseStatisticsServiceBodies;
|
|
49
|
+
export declare function RootServerBaseStatisticsServiceBodiesToJSON(json: any): RootServerBaseStatisticsServiceBodies;
|
|
50
|
+
export declare function RootServerBaseStatisticsServiceBodiesToJSONTyped(value?: RootServerBaseStatisticsServiceBodies | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* BMLT
|
|
6
|
+
* BMLT Admin API Documentation
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.RootServerBaseStatisticsServiceBodiesToJSONTyped = exports.RootServerBaseStatisticsServiceBodiesToJSON = exports.RootServerBaseStatisticsServiceBodiesFromJSONTyped = exports.RootServerBaseStatisticsServiceBodiesFromJSON = exports.instanceOfRootServerBaseStatisticsServiceBodies = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the RootServerBaseStatisticsServiceBodies interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfRootServerBaseStatisticsServiceBodies(value) {
|
|
21
|
+
if (!('numZones' in value) || value['numZones'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('numRegions' in value) || value['numRegions'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('numAreas' in value) || value['numAreas'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('numGroups' in value) || value['numGroups'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
exports.instanceOfRootServerBaseStatisticsServiceBodies = instanceOfRootServerBaseStatisticsServiceBodies;
|
|
32
|
+
function RootServerBaseStatisticsServiceBodiesFromJSON(json) {
|
|
33
|
+
return RootServerBaseStatisticsServiceBodiesFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
exports.RootServerBaseStatisticsServiceBodiesFromJSON = RootServerBaseStatisticsServiceBodiesFromJSON;
|
|
36
|
+
function RootServerBaseStatisticsServiceBodiesFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
+
if (json == null) {
|
|
38
|
+
return json;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'numZones': json['numZones'],
|
|
42
|
+
'numRegions': json['numRegions'],
|
|
43
|
+
'numAreas': json['numAreas'],
|
|
44
|
+
'numGroups': json['numGroups'],
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
exports.RootServerBaseStatisticsServiceBodiesFromJSONTyped = RootServerBaseStatisticsServiceBodiesFromJSONTyped;
|
|
48
|
+
function RootServerBaseStatisticsServiceBodiesToJSON(json) {
|
|
49
|
+
return RootServerBaseStatisticsServiceBodiesToJSONTyped(json, false);
|
|
50
|
+
}
|
|
51
|
+
exports.RootServerBaseStatisticsServiceBodiesToJSON = RootServerBaseStatisticsServiceBodiesToJSON;
|
|
52
|
+
function RootServerBaseStatisticsServiceBodiesToJSONTyped(value, ignoreDiscriminator) {
|
|
53
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
54
|
+
if (value == null) {
|
|
55
|
+
return value;
|
|
56
|
+
}
|
|
57
|
+
return {
|
|
58
|
+
'numZones': value['numZones'],
|
|
59
|
+
'numRegions': value['numRegions'],
|
|
60
|
+
'numAreas': value['numAreas'],
|
|
61
|
+
'numGroups': value['numGroups'],
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
exports.RootServerBaseStatisticsServiceBodiesToJSONTyped = RootServerBaseStatisticsServiceBodiesToJSONTyped;
|
package/dist/models/index.d.ts
CHANGED
|
@@ -15,11 +15,11 @@ export * from './MeetingCreate';
|
|
|
15
15
|
export * from './MeetingPartialUpdate';
|
|
16
16
|
export * from './MeetingUpdate';
|
|
17
17
|
export * from './NotFoundError';
|
|
18
|
-
export * from './
|
|
19
|
-
export * from './
|
|
20
|
-
export * from './
|
|
21
|
-
export * from './
|
|
22
|
-
export * from './
|
|
18
|
+
export * from './RootServer';
|
|
19
|
+
export * from './RootServerBase';
|
|
20
|
+
export * from './RootServerBaseStatistics';
|
|
21
|
+
export * from './RootServerBaseStatisticsMeetings';
|
|
22
|
+
export * from './RootServerBaseStatisticsServiceBodies';
|
|
23
23
|
export * from './ServerError';
|
|
24
24
|
export * from './ServiceBody';
|
|
25
25
|
export * from './ServiceBodyBase';
|
package/dist/models/index.js
CHANGED
|
@@ -33,11 +33,11 @@ __exportStar(require("./MeetingCreate"), exports);
|
|
|
33
33
|
__exportStar(require("./MeetingPartialUpdate"), exports);
|
|
34
34
|
__exportStar(require("./MeetingUpdate"), exports);
|
|
35
35
|
__exportStar(require("./NotFoundError"), exports);
|
|
36
|
-
__exportStar(require("./
|
|
37
|
-
__exportStar(require("./
|
|
38
|
-
__exportStar(require("./
|
|
39
|
-
__exportStar(require("./
|
|
40
|
-
__exportStar(require("./
|
|
36
|
+
__exportStar(require("./RootServer"), exports);
|
|
37
|
+
__exportStar(require("./RootServerBase"), exports);
|
|
38
|
+
__exportStar(require("./RootServerBaseStatistics"), exports);
|
|
39
|
+
__exportStar(require("./RootServerBaseStatisticsMeetings"), exports);
|
|
40
|
+
__exportStar(require("./RootServerBaseStatisticsServiceBodies"), exports);
|
|
41
41
|
__exportStar(require("./ServerError"), exports);
|
|
42
42
|
__exportStar(require("./ServiceBody"), exports);
|
|
43
43
|
__exportStar(require("./ServiceBodyBase"), exports);
|