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
|
@@ -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
|
-
|