bmlt-server-client 1.3.0 → 1.3.1

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.
Files changed (38) hide show
  1. package/.openapi-generator/FILES +6 -6
  2. package/dist/apis/{ServerApi.d.ts → RootServerApi.d.ts} +16 -16
  3. package/dist/apis/{ServerApi.js → RootServerApi.js} +86 -86
  4. package/dist/apis/index.d.ts +1 -1
  5. package/dist/apis/index.js +1 -1
  6. package/dist/models/MeetingPartialUpdate.d.ts +10 -10
  7. package/dist/models/MeetingPartialUpdate.js +10 -30
  8. package/dist/models/RootServer.d.ts +69 -0
  9. package/dist/models/{Server.js → RootServer.js} +17 -17
  10. package/dist/models/RootServerBase.d.ts +63 -0
  11. package/dist/models/{ServerBase.js → RootServerBase.js} +17 -17
  12. package/dist/models/RootServerBaseStatistics.d.ts +40 -0
  13. package/dist/models/RootServerBaseStatistics.js +58 -0
  14. package/dist/models/RootServerBaseStatisticsMeetings.d.ts +56 -0
  15. package/dist/models/{ServerBaseStatisticsMeetings.js → RootServerBaseStatisticsMeetings.js} +14 -14
  16. package/dist/models/RootServerBaseStatisticsServiceBodies.d.ts +50 -0
  17. package/dist/models/RootServerBaseStatisticsServiceBodies.js +64 -0
  18. package/dist/models/index.d.ts +5 -5
  19. package/dist/models/index.js +5 -5
  20. package/openapi.json +1 -1
  21. package/package.json +1 -1
  22. package/src/apis/{ServerApi.ts → RootServerApi.ts} +27 -27
  23. package/src/apis/index.ts +1 -1
  24. package/src/models/MeetingPartialUpdate.ts +20 -30
  25. package/src/models/{Server.ts → RootServer.ts} +27 -27
  26. package/src/models/{ServerBase.ts → RootServerBase.ts} +26 -26
  27. package/src/models/RootServerBaseStatistics.ts +90 -0
  28. package/src/models/{ServerBaseStatisticsMeetings.ts → RootServerBaseStatisticsMeetings.ts} +15 -15
  29. package/src/models/{ServerBaseStatisticsServiceBodies.ts → RootServerBaseStatisticsServiceBodies.ts} +14 -14
  30. package/src/models/index.ts +5 -5
  31. package/dist/models/Server.d.ts +0 -69
  32. package/dist/models/ServerBase.d.ts +0 -63
  33. package/dist/models/ServerBaseStatistics.d.ts +0 -40
  34. package/dist/models/ServerBaseStatistics.js +0 -58
  35. package/dist/models/ServerBaseStatisticsMeetings.d.ts +0 -56
  36. package/dist/models/ServerBaseStatisticsServiceBodies.d.ts +0 -50
  37. package/dist/models/ServerBaseStatisticsServiceBodies.js +0 -64
  38. package/src/models/ServerBaseStatistics.ts +0 -90
@@ -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
-