bmlt-server-client 1.3.0 → 1.3.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.
- package/.openapi-generator/FILES +6 -6
- package/dist/apis/{ServerApi.d.ts → RootServerApi.d.ts} +25 -16
- package/dist/apis/{ServerApi.js → RootServerApi.js} +96 -86
- package/dist/apis/index.d.ts +1 -1
- package/dist/apis/index.js +1 -1
- package/dist/models/MeetingPartialUpdate.d.ts +10 -10
- package/dist/models/MeetingPartialUpdate.js +10 -30
- 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} +41 -27
- package/src/apis/index.ts +1 -1
- package/src/models/MeetingPartialUpdate.ts +20 -30
- 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
|
@@ -16,45 +16,45 @@ import { mapValues } from '../runtime';
|
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
18
18
|
* @export
|
|
19
|
-
* @interface
|
|
19
|
+
* @interface RootServerBaseStatisticsMeetings
|
|
20
20
|
*/
|
|
21
|
-
export interface
|
|
21
|
+
export interface RootServerBaseStatisticsMeetings {
|
|
22
22
|
/**
|
|
23
23
|
*
|
|
24
24
|
* @type {number}
|
|
25
|
-
* @memberof
|
|
25
|
+
* @memberof RootServerBaseStatisticsMeetings
|
|
26
26
|
*/
|
|
27
27
|
numTotal: number;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {number}
|
|
31
|
-
* @memberof
|
|
31
|
+
* @memberof RootServerBaseStatisticsMeetings
|
|
32
32
|
*/
|
|
33
33
|
numInPerson: number;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {number}
|
|
37
|
-
* @memberof
|
|
37
|
+
* @memberof RootServerBaseStatisticsMeetings
|
|
38
38
|
*/
|
|
39
39
|
numVirtual: number;
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
42
|
* @type {number}
|
|
43
|
-
* @memberof
|
|
43
|
+
* @memberof RootServerBaseStatisticsMeetings
|
|
44
44
|
*/
|
|
45
45
|
numHybrid: number;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
48
|
* @type {number}
|
|
49
|
-
* @memberof
|
|
49
|
+
* @memberof RootServerBaseStatisticsMeetings
|
|
50
50
|
*/
|
|
51
51
|
numUnknown: number;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
/**
|
|
55
|
-
* Check if a given object implements the
|
|
55
|
+
* Check if a given object implements the RootServerBaseStatisticsMeetings interface.
|
|
56
56
|
*/
|
|
57
|
-
export function
|
|
57
|
+
export function instanceOfRootServerBaseStatisticsMeetings(value: object): value is RootServerBaseStatisticsMeetings {
|
|
58
58
|
if (!('numTotal' in value) || value['numTotal'] === undefined) return false;
|
|
59
59
|
if (!('numInPerson' in value) || value['numInPerson'] === undefined) return false;
|
|
60
60
|
if (!('numVirtual' in value) || value['numVirtual'] === undefined) return false;
|
|
@@ -63,11 +63,11 @@ export function instanceOfServerBaseStatisticsMeetings(value: object): value is
|
|
|
63
63
|
return true;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
export function
|
|
67
|
-
return
|
|
66
|
+
export function RootServerBaseStatisticsMeetingsFromJSON(json: any): RootServerBaseStatisticsMeetings {
|
|
67
|
+
return RootServerBaseStatisticsMeetingsFromJSONTyped(json, false);
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
export function
|
|
70
|
+
export function RootServerBaseStatisticsMeetingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): RootServerBaseStatisticsMeetings {
|
|
71
71
|
if (json == null) {
|
|
72
72
|
return json;
|
|
73
73
|
}
|
|
@@ -81,11 +81,11 @@ export function ServerBaseStatisticsMeetingsFromJSONTyped(json: any, ignoreDiscr
|
|
|
81
81
|
};
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
export function
|
|
85
|
-
return
|
|
84
|
+
export function RootServerBaseStatisticsMeetingsToJSON(json: any): RootServerBaseStatisticsMeetings {
|
|
85
|
+
return RootServerBaseStatisticsMeetingsToJSONTyped(json, false);
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
export function
|
|
88
|
+
export function RootServerBaseStatisticsMeetingsToJSONTyped(value?: RootServerBaseStatisticsMeetings | null, ignoreDiscriminator: boolean = false): any {
|
|
89
89
|
if (value == null) {
|
|
90
90
|
return value;
|
|
91
91
|
}
|
package/src/models/{ServerBaseStatisticsServiceBodies.ts → RootServerBaseStatisticsServiceBodies.ts}
RENAMED
|
@@ -16,39 +16,39 @@ import { mapValues } from '../runtime';
|
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
18
18
|
* @export
|
|
19
|
-
* @interface
|
|
19
|
+
* @interface RootServerBaseStatisticsServiceBodies
|
|
20
20
|
*/
|
|
21
|
-
export interface
|
|
21
|
+
export interface RootServerBaseStatisticsServiceBodies {
|
|
22
22
|
/**
|
|
23
23
|
*
|
|
24
24
|
* @type {number}
|
|
25
|
-
* @memberof
|
|
25
|
+
* @memberof RootServerBaseStatisticsServiceBodies
|
|
26
26
|
*/
|
|
27
27
|
numZones: number;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {number}
|
|
31
|
-
* @memberof
|
|
31
|
+
* @memberof RootServerBaseStatisticsServiceBodies
|
|
32
32
|
*/
|
|
33
33
|
numRegions: number;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {number}
|
|
37
|
-
* @memberof
|
|
37
|
+
* @memberof RootServerBaseStatisticsServiceBodies
|
|
38
38
|
*/
|
|
39
39
|
numAreas: number;
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
42
|
* @type {number}
|
|
43
|
-
* @memberof
|
|
43
|
+
* @memberof RootServerBaseStatisticsServiceBodies
|
|
44
44
|
*/
|
|
45
45
|
numGroups: number;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
|
-
* Check if a given object implements the
|
|
49
|
+
* Check if a given object implements the RootServerBaseStatisticsServiceBodies interface.
|
|
50
50
|
*/
|
|
51
|
-
export function
|
|
51
|
+
export function instanceOfRootServerBaseStatisticsServiceBodies(value: object): value is RootServerBaseStatisticsServiceBodies {
|
|
52
52
|
if (!('numZones' in value) || value['numZones'] === undefined) return false;
|
|
53
53
|
if (!('numRegions' in value) || value['numRegions'] === undefined) return false;
|
|
54
54
|
if (!('numAreas' in value) || value['numAreas'] === undefined) return false;
|
|
@@ -56,11 +56,11 @@ export function instanceOfServerBaseStatisticsServiceBodies(value: object): valu
|
|
|
56
56
|
return true;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
export function
|
|
60
|
-
return
|
|
59
|
+
export function RootServerBaseStatisticsServiceBodiesFromJSON(json: any): RootServerBaseStatisticsServiceBodies {
|
|
60
|
+
return RootServerBaseStatisticsServiceBodiesFromJSONTyped(json, false);
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
export function
|
|
63
|
+
export function RootServerBaseStatisticsServiceBodiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): RootServerBaseStatisticsServiceBodies {
|
|
64
64
|
if (json == null) {
|
|
65
65
|
return json;
|
|
66
66
|
}
|
|
@@ -73,11 +73,11 @@ export function ServerBaseStatisticsServiceBodiesFromJSONTyped(json: any, ignore
|
|
|
73
73
|
};
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
export function
|
|
77
|
-
return
|
|
76
|
+
export function RootServerBaseStatisticsServiceBodiesToJSON(json: any): RootServerBaseStatisticsServiceBodies {
|
|
77
|
+
return RootServerBaseStatisticsServiceBodiesToJSONTyped(json, false);
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
export function
|
|
80
|
+
export function RootServerBaseStatisticsServiceBodiesToJSONTyped(value?: RootServerBaseStatisticsServiceBodies | null, ignoreDiscriminator: boolean = false): any {
|
|
81
81
|
if (value == null) {
|
|
82
82
|
return value;
|
|
83
83
|
}
|
package/src/models/index.ts
CHANGED
|
@@ -17,11 +17,11 @@ export * from './MeetingCreate';
|
|
|
17
17
|
export * from './MeetingPartialUpdate';
|
|
18
18
|
export * from './MeetingUpdate';
|
|
19
19
|
export * from './NotFoundError';
|
|
20
|
-
export * from './
|
|
21
|
-
export * from './
|
|
22
|
-
export * from './
|
|
23
|
-
export * from './
|
|
24
|
-
export * from './
|
|
20
|
+
export * from './RootServer';
|
|
21
|
+
export * from './RootServerBase';
|
|
22
|
+
export * from './RootServerBaseStatistics';
|
|
23
|
+
export * from './RootServerBaseStatisticsMeetings';
|
|
24
|
+
export * from './RootServerBaseStatisticsServiceBodies';
|
|
25
25
|
export * from './ServerError';
|
|
26
26
|
export * from './ServiceBody';
|
|
27
27
|
export * from './ServiceBodyBase';
|
package/dist/models/Server.d.ts
DELETED
|
@@ -1,69 +0,0 @@
|
|
|
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 { ServerBaseStatistics } from './ServerBaseStatistics';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface Server
|
|
17
|
-
*/
|
|
18
|
-
export interface Server {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {number}
|
|
22
|
-
* @memberof Server
|
|
23
|
-
*/
|
|
24
|
-
sourceId: number;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof Server
|
|
29
|
-
*/
|
|
30
|
-
name: string;
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {string}
|
|
34
|
-
* @memberof Server
|
|
35
|
-
*/
|
|
36
|
-
url: string;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {ServerBaseStatistics}
|
|
40
|
-
* @memberof Server
|
|
41
|
-
*/
|
|
42
|
-
statistics?: ServerBaseStatistics;
|
|
43
|
-
/**
|
|
44
|
-
*
|
|
45
|
-
* @type {string}
|
|
46
|
-
* @memberof Server
|
|
47
|
-
*/
|
|
48
|
-
serverInfo?: string;
|
|
49
|
-
/**
|
|
50
|
-
*
|
|
51
|
-
* @type {Date}
|
|
52
|
-
* @memberof Server
|
|
53
|
-
*/
|
|
54
|
-
lastSuccessfulImport: Date;
|
|
55
|
-
/**
|
|
56
|
-
*
|
|
57
|
-
* @type {number}
|
|
58
|
-
* @memberof Server
|
|
59
|
-
*/
|
|
60
|
-
id: number;
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* Check if a given object implements the Server interface.
|
|
64
|
-
*/
|
|
65
|
-
export declare function instanceOfServer(value: object): value is Server;
|
|
66
|
-
export declare function ServerFromJSON(json: any): Server;
|
|
67
|
-
export declare function ServerFromJSONTyped(json: any, ignoreDiscriminator: boolean): Server;
|
|
68
|
-
export declare function ServerToJSON(json: any): Server;
|
|
69
|
-
export declare function ServerToJSONTyped(value?: Server | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,63 +0,0 @@
|
|
|
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 { ServerBaseStatistics } from './ServerBaseStatistics';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface ServerBase
|
|
17
|
-
*/
|
|
18
|
-
export interface ServerBase {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {number}
|
|
22
|
-
* @memberof ServerBase
|
|
23
|
-
*/
|
|
24
|
-
sourceId?: number;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof ServerBase
|
|
29
|
-
*/
|
|
30
|
-
name?: string;
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {string}
|
|
34
|
-
* @memberof ServerBase
|
|
35
|
-
*/
|
|
36
|
-
url?: string;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {ServerBaseStatistics}
|
|
40
|
-
* @memberof ServerBase
|
|
41
|
-
*/
|
|
42
|
-
statistics?: ServerBaseStatistics;
|
|
43
|
-
/**
|
|
44
|
-
*
|
|
45
|
-
* @type {string}
|
|
46
|
-
* @memberof ServerBase
|
|
47
|
-
*/
|
|
48
|
-
serverInfo?: string;
|
|
49
|
-
/**
|
|
50
|
-
*
|
|
51
|
-
* @type {Date}
|
|
52
|
-
* @memberof ServerBase
|
|
53
|
-
*/
|
|
54
|
-
lastSuccessfulImport?: Date;
|
|
55
|
-
}
|
|
56
|
-
/**
|
|
57
|
-
* Check if a given object implements the ServerBase interface.
|
|
58
|
-
*/
|
|
59
|
-
export declare function instanceOfServerBase(value: object): value is ServerBase;
|
|
60
|
-
export declare function ServerBaseFromJSON(json: any): ServerBase;
|
|
61
|
-
export declare function ServerBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerBase;
|
|
62
|
-
export declare function ServerBaseToJSON(json: any): ServerBase;
|
|
63
|
-
export declare function ServerBaseToJSONTyped(value?: ServerBase | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,40 +0,0 @@
|
|
|
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 { ServerBaseStatisticsServiceBodies } from './ServerBaseStatisticsServiceBodies';
|
|
13
|
-
import type { ServerBaseStatisticsMeetings } from './ServerBaseStatisticsMeetings';
|
|
14
|
-
/**
|
|
15
|
-
*
|
|
16
|
-
* @export
|
|
17
|
-
* @interface ServerBaseStatistics
|
|
18
|
-
*/
|
|
19
|
-
export interface ServerBaseStatistics {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {ServerBaseStatisticsServiceBodies}
|
|
23
|
-
* @memberof ServerBaseStatistics
|
|
24
|
-
*/
|
|
25
|
-
serviceBodies: ServerBaseStatisticsServiceBodies;
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {ServerBaseStatisticsMeetings}
|
|
29
|
-
* @memberof ServerBaseStatistics
|
|
30
|
-
*/
|
|
31
|
-
meetings: ServerBaseStatisticsMeetings;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* Check if a given object implements the ServerBaseStatistics interface.
|
|
35
|
-
*/
|
|
36
|
-
export declare function instanceOfServerBaseStatistics(value: object): value is ServerBaseStatistics;
|
|
37
|
-
export declare function ServerBaseStatisticsFromJSON(json: any): ServerBaseStatistics;
|
|
38
|
-
export declare function ServerBaseStatisticsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerBaseStatistics;
|
|
39
|
-
export declare function ServerBaseStatisticsToJSON(json: any): ServerBaseStatistics;
|
|
40
|
-
export declare function ServerBaseStatisticsToJSONTyped(value?: ServerBaseStatistics | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,58 +0,0 @@
|
|
|
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.ServerBaseStatisticsToJSONTyped = exports.ServerBaseStatisticsToJSON = exports.ServerBaseStatisticsFromJSONTyped = exports.ServerBaseStatisticsFromJSON = exports.instanceOfServerBaseStatistics = void 0;
|
|
17
|
-
var ServerBaseStatisticsServiceBodies_1 = require("./ServerBaseStatisticsServiceBodies");
|
|
18
|
-
var ServerBaseStatisticsMeetings_1 = require("./ServerBaseStatisticsMeetings");
|
|
19
|
-
/**
|
|
20
|
-
* Check if a given object implements the ServerBaseStatistics interface.
|
|
21
|
-
*/
|
|
22
|
-
function instanceOfServerBaseStatistics(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.instanceOfServerBaseStatistics = instanceOfServerBaseStatistics;
|
|
30
|
-
function ServerBaseStatisticsFromJSON(json) {
|
|
31
|
-
return ServerBaseStatisticsFromJSONTyped(json, false);
|
|
32
|
-
}
|
|
33
|
-
exports.ServerBaseStatisticsFromJSON = ServerBaseStatisticsFromJSON;
|
|
34
|
-
function ServerBaseStatisticsFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
-
if (json == null) {
|
|
36
|
-
return json;
|
|
37
|
-
}
|
|
38
|
-
return {
|
|
39
|
-
'serviceBodies': (0, ServerBaseStatisticsServiceBodies_1.ServerBaseStatisticsServiceBodiesFromJSON)(json['serviceBodies']),
|
|
40
|
-
'meetings': (0, ServerBaseStatisticsMeetings_1.ServerBaseStatisticsMeetingsFromJSON)(json['meetings']),
|
|
41
|
-
};
|
|
42
|
-
}
|
|
43
|
-
exports.ServerBaseStatisticsFromJSONTyped = ServerBaseStatisticsFromJSONTyped;
|
|
44
|
-
function ServerBaseStatisticsToJSON(json) {
|
|
45
|
-
return ServerBaseStatisticsToJSONTyped(json, false);
|
|
46
|
-
}
|
|
47
|
-
exports.ServerBaseStatisticsToJSON = ServerBaseStatisticsToJSON;
|
|
48
|
-
function ServerBaseStatisticsToJSONTyped(value, ignoreDiscriminator) {
|
|
49
|
-
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
50
|
-
if (value == null) {
|
|
51
|
-
return value;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
'serviceBodies': (0, ServerBaseStatisticsServiceBodies_1.ServerBaseStatisticsServiceBodiesToJSON)(value['serviceBodies']),
|
|
55
|
-
'meetings': (0, ServerBaseStatisticsMeetings_1.ServerBaseStatisticsMeetingsToJSON)(value['meetings']),
|
|
56
|
-
};
|
|
57
|
-
}
|
|
58
|
-
exports.ServerBaseStatisticsToJSONTyped = ServerBaseStatisticsToJSONTyped;
|
|
@@ -1,56 +0,0 @@
|
|
|
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 ServerBaseStatisticsMeetings
|
|
16
|
-
*/
|
|
17
|
-
export interface ServerBaseStatisticsMeetings {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof ServerBaseStatisticsMeetings
|
|
22
|
-
*/
|
|
23
|
-
numTotal: number;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {number}
|
|
27
|
-
* @memberof ServerBaseStatisticsMeetings
|
|
28
|
-
*/
|
|
29
|
-
numInPerson: number;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof ServerBaseStatisticsMeetings
|
|
34
|
-
*/
|
|
35
|
-
numVirtual: number;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {number}
|
|
39
|
-
* @memberof ServerBaseStatisticsMeetings
|
|
40
|
-
*/
|
|
41
|
-
numHybrid: number;
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {number}
|
|
45
|
-
* @memberof ServerBaseStatisticsMeetings
|
|
46
|
-
*/
|
|
47
|
-
numUnknown: number;
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* Check if a given object implements the ServerBaseStatisticsMeetings interface.
|
|
51
|
-
*/
|
|
52
|
-
export declare function instanceOfServerBaseStatisticsMeetings(value: object): value is ServerBaseStatisticsMeetings;
|
|
53
|
-
export declare function ServerBaseStatisticsMeetingsFromJSON(json: any): ServerBaseStatisticsMeetings;
|
|
54
|
-
export declare function ServerBaseStatisticsMeetingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerBaseStatisticsMeetings;
|
|
55
|
-
export declare function ServerBaseStatisticsMeetingsToJSON(json: any): ServerBaseStatisticsMeetings;
|
|
56
|
-
export declare function ServerBaseStatisticsMeetingsToJSONTyped(value?: ServerBaseStatisticsMeetings | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,50 +0,0 @@
|
|
|
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 ServerBaseStatisticsServiceBodies
|
|
16
|
-
*/
|
|
17
|
-
export interface ServerBaseStatisticsServiceBodies {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof ServerBaseStatisticsServiceBodies
|
|
22
|
-
*/
|
|
23
|
-
numZones: number;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {number}
|
|
27
|
-
* @memberof ServerBaseStatisticsServiceBodies
|
|
28
|
-
*/
|
|
29
|
-
numRegions: number;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof ServerBaseStatisticsServiceBodies
|
|
34
|
-
*/
|
|
35
|
-
numAreas: number;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {number}
|
|
39
|
-
* @memberof ServerBaseStatisticsServiceBodies
|
|
40
|
-
*/
|
|
41
|
-
numGroups: number;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Check if a given object implements the ServerBaseStatisticsServiceBodies interface.
|
|
45
|
-
*/
|
|
46
|
-
export declare function instanceOfServerBaseStatisticsServiceBodies(value: object): value is ServerBaseStatisticsServiceBodies;
|
|
47
|
-
export declare function ServerBaseStatisticsServiceBodiesFromJSON(json: any): ServerBaseStatisticsServiceBodies;
|
|
48
|
-
export declare function ServerBaseStatisticsServiceBodiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerBaseStatisticsServiceBodies;
|
|
49
|
-
export declare function ServerBaseStatisticsServiceBodiesToJSON(json: any): ServerBaseStatisticsServiceBodies;
|
|
50
|
-
export declare function ServerBaseStatisticsServiceBodiesToJSONTyped(value?: ServerBaseStatisticsServiceBodies | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,64 +0,0 @@
|
|
|
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.ServerBaseStatisticsServiceBodiesToJSONTyped = exports.ServerBaseStatisticsServiceBodiesToJSON = exports.ServerBaseStatisticsServiceBodiesFromJSONTyped = exports.ServerBaseStatisticsServiceBodiesFromJSON = exports.instanceOfServerBaseStatisticsServiceBodies = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Check if a given object implements the ServerBaseStatisticsServiceBodies interface.
|
|
19
|
-
*/
|
|
20
|
-
function instanceOfServerBaseStatisticsServiceBodies(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.instanceOfServerBaseStatisticsServiceBodies = instanceOfServerBaseStatisticsServiceBodies;
|
|
32
|
-
function ServerBaseStatisticsServiceBodiesFromJSON(json) {
|
|
33
|
-
return ServerBaseStatisticsServiceBodiesFromJSONTyped(json, false);
|
|
34
|
-
}
|
|
35
|
-
exports.ServerBaseStatisticsServiceBodiesFromJSON = ServerBaseStatisticsServiceBodiesFromJSON;
|
|
36
|
-
function ServerBaseStatisticsServiceBodiesFromJSONTyped(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.ServerBaseStatisticsServiceBodiesFromJSONTyped = ServerBaseStatisticsServiceBodiesFromJSONTyped;
|
|
48
|
-
function ServerBaseStatisticsServiceBodiesToJSON(json) {
|
|
49
|
-
return ServerBaseStatisticsServiceBodiesToJSONTyped(json, false);
|
|
50
|
-
}
|
|
51
|
-
exports.ServerBaseStatisticsServiceBodiesToJSON = ServerBaseStatisticsServiceBodiesToJSON;
|
|
52
|
-
function ServerBaseStatisticsServiceBodiesToJSONTyped(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.ServerBaseStatisticsServiceBodiesToJSONTyped = ServerBaseStatisticsServiceBodiesToJSONTyped;
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* BMLT
|
|
5
|
-
* BMLT Admin API Documentation
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
import type { ServerBaseStatisticsServiceBodies } from './ServerBaseStatisticsServiceBodies';
|
|
17
|
-
import {
|
|
18
|
-
ServerBaseStatisticsServiceBodiesFromJSON,
|
|
19
|
-
ServerBaseStatisticsServiceBodiesFromJSONTyped,
|
|
20
|
-
ServerBaseStatisticsServiceBodiesToJSON,
|
|
21
|
-
ServerBaseStatisticsServiceBodiesToJSONTyped,
|
|
22
|
-
} from './ServerBaseStatisticsServiceBodies';
|
|
23
|
-
import type { ServerBaseStatisticsMeetings } from './ServerBaseStatisticsMeetings';
|
|
24
|
-
import {
|
|
25
|
-
ServerBaseStatisticsMeetingsFromJSON,
|
|
26
|
-
ServerBaseStatisticsMeetingsFromJSONTyped,
|
|
27
|
-
ServerBaseStatisticsMeetingsToJSON,
|
|
28
|
-
ServerBaseStatisticsMeetingsToJSONTyped,
|
|
29
|
-
} from './ServerBaseStatisticsMeetings';
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @export
|
|
34
|
-
* @interface ServerBaseStatistics
|
|
35
|
-
*/
|
|
36
|
-
export interface ServerBaseStatistics {
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {ServerBaseStatisticsServiceBodies}
|
|
40
|
-
* @memberof ServerBaseStatistics
|
|
41
|
-
*/
|
|
42
|
-
serviceBodies: ServerBaseStatisticsServiceBodies;
|
|
43
|
-
/**
|
|
44
|
-
*
|
|
45
|
-
* @type {ServerBaseStatisticsMeetings}
|
|
46
|
-
* @memberof ServerBaseStatistics
|
|
47
|
-
*/
|
|
48
|
-
meetings: ServerBaseStatisticsMeetings;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
/**
|
|
52
|
-
* Check if a given object implements the ServerBaseStatistics interface.
|
|
53
|
-
*/
|
|
54
|
-
export function instanceOfServerBaseStatistics(value: object): value is ServerBaseStatistics {
|
|
55
|
-
if (!('serviceBodies' in value) || value['serviceBodies'] === undefined) return false;
|
|
56
|
-
if (!('meetings' in value) || value['meetings'] === undefined) return false;
|
|
57
|
-
return true;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export function ServerBaseStatisticsFromJSON(json: any): ServerBaseStatistics {
|
|
61
|
-
return ServerBaseStatisticsFromJSONTyped(json, false);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export function ServerBaseStatisticsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerBaseStatistics {
|
|
65
|
-
if (json == null) {
|
|
66
|
-
return json;
|
|
67
|
-
}
|
|
68
|
-
return {
|
|
69
|
-
|
|
70
|
-
'serviceBodies': ServerBaseStatisticsServiceBodiesFromJSON(json['serviceBodies']),
|
|
71
|
-
'meetings': ServerBaseStatisticsMeetingsFromJSON(json['meetings']),
|
|
72
|
-
};
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
export function ServerBaseStatisticsToJSON(json: any): ServerBaseStatistics {
|
|
76
|
-
return ServerBaseStatisticsToJSONTyped(json, false);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
export function ServerBaseStatisticsToJSONTyped(value?: ServerBaseStatistics | null, ignoreDiscriminator: boolean = false): any {
|
|
80
|
-
if (value == null) {
|
|
81
|
-
return value;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
return {
|
|
85
|
-
|
|
86
|
-
'serviceBodies': ServerBaseStatisticsServiceBodiesToJSON(value['serviceBodies']),
|
|
87
|
-
'meetings': ServerBaseStatisticsMeetingsToJSON(value['meetings']),
|
|
88
|
-
};
|
|
89
|
-
}
|
|
90
|
-
|