bmlt-server-client 1.3.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/.github/workflows/release.yml +25 -0
- package/.idea/bmlt-server-typescript-client.iml +9 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/.openapi-generator/FILES +46 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/Makefile +18 -0
- package/README.md +46 -0
- package/dist/apis/ServerApi.d.ts +424 -0
- package/dist/apis/ServerApi.js +1828 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +19 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +21 -0
- package/dist/models/AuthenticationError.d.ts +32 -0
- package/dist/models/AuthenticationError.js +52 -0
- package/dist/models/AuthorizationError.d.ts +32 -0
- package/dist/models/AuthorizationError.js +52 -0
- package/dist/models/ConflictError.d.ts +32 -0
- package/dist/models/ConflictError.js +52 -0
- package/dist/models/ErrorTest.d.ts +44 -0
- package/dist/models/ErrorTest.js +54 -0
- package/dist/models/Format.d.ts +51 -0
- package/dist/models/Format.js +65 -0
- package/dist/models/FormatBase.d.ts +45 -0
- package/dist/models/FormatBase.js +55 -0
- package/dist/models/FormatCreate.d.ts +45 -0
- package/dist/models/FormatCreate.js +57 -0
- package/dist/models/FormatPartialUpdate.d.ts +45 -0
- package/dist/models/FormatPartialUpdate.js +55 -0
- package/dist/models/FormatTranslation.d.ts +50 -0
- package/dist/models/FormatTranslation.js +64 -0
- package/dist/models/FormatUpdate.d.ts +45 -0
- package/dist/models/FormatUpdate.js +57 -0
- package/dist/models/Meeting.d.ts +256 -0
- package/dist/models/Meeting.js +154 -0
- package/dist/models/MeetingBase.d.ts +250 -0
- package/dist/models/MeetingBase.js +122 -0
- package/dist/models/MeetingChangeResource.d.ts +50 -0
- package/dist/models/MeetingChangeResource.js +56 -0
- package/dist/models/MeetingCreate.d.ts +250 -0
- package/dist/models/MeetingCreate.js +142 -0
- package/dist/models/MeetingPartialUpdate.d.ts +250 -0
- package/dist/models/MeetingPartialUpdate.js +142 -0
- package/dist/models/MeetingUpdate.d.ts +250 -0
- package/dist/models/MeetingUpdate.js +142 -0
- package/dist/models/NotFoundError.d.ts +32 -0
- package/dist/models/NotFoundError.js +52 -0
- package/dist/models/Server.d.ts +69 -0
- package/dist/models/Server.js +73 -0
- package/dist/models/ServerBase.d.ts +63 -0
- package/dist/models/ServerBase.js +61 -0
- package/dist/models/ServerBaseStatistics.d.ts +40 -0
- package/dist/models/ServerBaseStatistics.js +58 -0
- package/dist/models/ServerBaseStatisticsMeetings.d.ts +56 -0
- package/dist/models/ServerBaseStatisticsMeetings.js +68 -0
- package/dist/models/ServerBaseStatisticsServiceBodies.d.ts +50 -0
- package/dist/models/ServerBaseStatisticsServiceBodies.js +64 -0
- package/dist/models/ServerError.d.ts +32 -0
- package/dist/models/ServerError.js +52 -0
- package/dist/models/ServiceBody.d.ts +92 -0
- package/dist/models/ServiceBody.js +92 -0
- package/dist/models/ServiceBodyBase.d.ts +86 -0
- package/dist/models/ServiceBodyBase.js +68 -0
- package/dist/models/ServiceBodyCreate.d.ts +86 -0
- package/dist/models/ServiceBodyCreate.js +80 -0
- package/dist/models/ServiceBodyPartialUpdate.d.ts +86 -0
- package/dist/models/ServiceBodyPartialUpdate.js +68 -0
- package/dist/models/ServiceBodyUpdate.d.ts +86 -0
- package/dist/models/ServiceBodyUpdate.js +80 -0
- package/dist/models/Token.d.ts +50 -0
- package/dist/models/Token.js +64 -0
- package/dist/models/TokenCredentials.d.ts +38 -0
- package/dist/models/TokenCredentials.js +56 -0
- package/dist/models/User.d.ts +68 -0
- package/dist/models/User.js +76 -0
- package/dist/models/UserBase.d.ts +62 -0
- package/dist/models/UserBase.js +60 -0
- package/dist/models/UserCreate.d.ts +68 -0
- package/dist/models/UserCreate.js +70 -0
- package/dist/models/UserPartialUpdate.d.ts +68 -0
- package/dist/models/UserPartialUpdate.js +62 -0
- package/dist/models/UserUpdate.d.ts +68 -0
- package/dist/models/UserUpdate.js +68 -0
- package/dist/models/ValidationError.d.ts +40 -0
- package/dist/models/ValidationError.js +56 -0
- package/dist/models/index.d.ts +36 -0
- package/dist/models/index.js +54 -0
- package/dist/runtime.d.ts +184 -0
- package/dist/runtime.js +564 -0
- package/openapi.json +1 -0
- package/package.json +19 -0
- package/src/apis/ServerApi.ts +1529 -0
- package/src/apis/index.ts +3 -0
- package/src/index.ts +5 -0
- package/src/models/AuthenticationError.ts +66 -0
- package/src/models/AuthorizationError.ts +66 -0
- package/src/models/ConflictError.ts +66 -0
- package/src/models/ErrorTest.ts +81 -0
- package/src/models/Format.ts +101 -0
- package/src/models/FormatBase.ts +89 -0
- package/src/models/FormatCreate.ts +90 -0
- package/src/models/FormatPartialUpdate.ts +89 -0
- package/src/models/FormatTranslation.ts +93 -0
- package/src/models/FormatUpdate.ts +90 -0
- package/src/models/Meeting.ts +376 -0
- package/src/models/MeetingBase.ts +353 -0
- package/src/models/MeetingChangeResource.ts +89 -0
- package/src/models/MeetingCreate.ts +363 -0
- package/src/models/MeetingPartialUpdate.ts +363 -0
- package/src/models/MeetingUpdate.ts +363 -0
- package/src/models/NotFoundError.ts +66 -0
- package/src/models/Server.ts +126 -0
- package/src/models/ServerBase.ts +113 -0
- package/src/models/ServerBaseStatistics.ts +90 -0
- package/src/models/ServerBaseStatisticsMeetings.ts +102 -0
- package/src/models/ServerBaseStatisticsServiceBodies.ts +93 -0
- package/src/models/ServerError.ts +66 -0
- package/src/models/ServiceBody.ts +156 -0
- package/src/models/ServiceBodyBase.ts +137 -0
- package/src/models/ServiceBodyCreate.ts +143 -0
- package/src/models/ServiceBodyPartialUpdate.ts +137 -0
- package/src/models/ServiceBodyUpdate.ts +143 -0
- package/src/models/Token.ts +93 -0
- package/src/models/TokenCredentials.ts +75 -0
- package/src/models/User.ts +120 -0
- package/src/models/UserBase.ts +105 -0
- package/src/models/UserCreate.ts +117 -0
- package/src/models/UserPartialUpdate.ts +113 -0
- package/src/models/UserUpdate.ts +116 -0
- package/src/models/ValidationError.ts +75 -0
- package/src/models/index.ts +38 -0
- package/src/runtime.ts +432 -0
- package/tsconfig.json +20 -0
|
@@ -0,0 +1,57 @@
|
|
|
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.FormatCreateToJSONTyped = exports.FormatCreateToJSON = exports.FormatCreateFromJSONTyped = exports.FormatCreateFromJSON = exports.instanceOfFormatCreate = void 0;
|
|
17
|
+
var FormatTranslation_1 = require("./FormatTranslation");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the FormatCreate interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfFormatCreate(value) {
|
|
22
|
+
if (!('translations' in value) || value['translations'] === undefined)
|
|
23
|
+
return false;
|
|
24
|
+
return true;
|
|
25
|
+
}
|
|
26
|
+
exports.instanceOfFormatCreate = instanceOfFormatCreate;
|
|
27
|
+
function FormatCreateFromJSON(json) {
|
|
28
|
+
return FormatCreateFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
exports.FormatCreateFromJSON = FormatCreateFromJSON;
|
|
31
|
+
function FormatCreateFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'worldId': json['worldId'] == null ? undefined : json['worldId'],
|
|
37
|
+
'type': json['type'] == null ? undefined : json['type'],
|
|
38
|
+
'translations': (json['translations'].map(FormatTranslation_1.FormatTranslationFromJSON)),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.FormatCreateFromJSONTyped = FormatCreateFromJSONTyped;
|
|
42
|
+
function FormatCreateToJSON(json) {
|
|
43
|
+
return FormatCreateToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
exports.FormatCreateToJSON = FormatCreateToJSON;
|
|
46
|
+
function FormatCreateToJSONTyped(value, ignoreDiscriminator) {
|
|
47
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'worldId': value['worldId'],
|
|
53
|
+
'type': value['type'],
|
|
54
|
+
'translations': (value['translations'].map(FormatTranslation_1.FormatTranslationToJSON)),
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
exports.FormatCreateToJSONTyped = FormatCreateToJSONTyped;
|
|
@@ -0,0 +1,45 @@
|
|
|
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 { FormatTranslation } from './FormatTranslation';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface FormatPartialUpdate
|
|
17
|
+
*/
|
|
18
|
+
export interface FormatPartialUpdate {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof FormatPartialUpdate
|
|
23
|
+
*/
|
|
24
|
+
worldId?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof FormatPartialUpdate
|
|
29
|
+
*/
|
|
30
|
+
type?: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<FormatTranslation>}
|
|
34
|
+
* @memberof FormatPartialUpdate
|
|
35
|
+
*/
|
|
36
|
+
translations?: Array<FormatTranslation>;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Check if a given object implements the FormatPartialUpdate interface.
|
|
40
|
+
*/
|
|
41
|
+
export declare function instanceOfFormatPartialUpdate(value: object): value is FormatPartialUpdate;
|
|
42
|
+
export declare function FormatPartialUpdateFromJSON(json: any): FormatPartialUpdate;
|
|
43
|
+
export declare function FormatPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormatPartialUpdate;
|
|
44
|
+
export declare function FormatPartialUpdateToJSON(json: any): FormatPartialUpdate;
|
|
45
|
+
export declare function FormatPartialUpdateToJSONTyped(value?: FormatPartialUpdate | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,55 @@
|
|
|
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.FormatPartialUpdateToJSONTyped = exports.FormatPartialUpdateToJSON = exports.FormatPartialUpdateFromJSONTyped = exports.FormatPartialUpdateFromJSON = exports.instanceOfFormatPartialUpdate = void 0;
|
|
17
|
+
var FormatTranslation_1 = require("./FormatTranslation");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the FormatPartialUpdate interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfFormatPartialUpdate(value) {
|
|
22
|
+
return true;
|
|
23
|
+
}
|
|
24
|
+
exports.instanceOfFormatPartialUpdate = instanceOfFormatPartialUpdate;
|
|
25
|
+
function FormatPartialUpdateFromJSON(json) {
|
|
26
|
+
return FormatPartialUpdateFromJSONTyped(json, false);
|
|
27
|
+
}
|
|
28
|
+
exports.FormatPartialUpdateFromJSON = FormatPartialUpdateFromJSON;
|
|
29
|
+
function FormatPartialUpdateFromJSONTyped(json, ignoreDiscriminator) {
|
|
30
|
+
if (json == null) {
|
|
31
|
+
return json;
|
|
32
|
+
}
|
|
33
|
+
return {
|
|
34
|
+
'worldId': json['worldId'] == null ? undefined : json['worldId'],
|
|
35
|
+
'type': json['type'] == null ? undefined : json['type'],
|
|
36
|
+
'translations': json['translations'] == null ? undefined : (json['translations'].map(FormatTranslation_1.FormatTranslationFromJSON)),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
exports.FormatPartialUpdateFromJSONTyped = FormatPartialUpdateFromJSONTyped;
|
|
40
|
+
function FormatPartialUpdateToJSON(json) {
|
|
41
|
+
return FormatPartialUpdateToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
exports.FormatPartialUpdateToJSON = FormatPartialUpdateToJSON;
|
|
44
|
+
function FormatPartialUpdateToJSONTyped(value, ignoreDiscriminator) {
|
|
45
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
46
|
+
if (value == null) {
|
|
47
|
+
return value;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'worldId': value['worldId'],
|
|
51
|
+
'type': value['type'],
|
|
52
|
+
'translations': value['translations'] == null ? undefined : (value['translations'].map(FormatTranslation_1.FormatTranslationToJSON)),
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
exports.FormatPartialUpdateToJSONTyped = FormatPartialUpdateToJSONTyped;
|
|
@@ -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 FormatTranslation
|
|
16
|
+
*/
|
|
17
|
+
export interface FormatTranslation {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof FormatTranslation
|
|
22
|
+
*/
|
|
23
|
+
key: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof FormatTranslation
|
|
28
|
+
*/
|
|
29
|
+
name: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof FormatTranslation
|
|
34
|
+
*/
|
|
35
|
+
description: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof FormatTranslation
|
|
40
|
+
*/
|
|
41
|
+
language: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Check if a given object implements the FormatTranslation interface.
|
|
45
|
+
*/
|
|
46
|
+
export declare function instanceOfFormatTranslation(value: object): value is FormatTranslation;
|
|
47
|
+
export declare function FormatTranslationFromJSON(json: any): FormatTranslation;
|
|
48
|
+
export declare function FormatTranslationFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormatTranslation;
|
|
49
|
+
export declare function FormatTranslationToJSON(json: any): FormatTranslation;
|
|
50
|
+
export declare function FormatTranslationToJSONTyped(value?: FormatTranslation | 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.FormatTranslationToJSONTyped = exports.FormatTranslationToJSON = exports.FormatTranslationFromJSONTyped = exports.FormatTranslationFromJSON = exports.instanceOfFormatTranslation = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the FormatTranslation interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfFormatTranslation(value) {
|
|
21
|
+
if (!('key' in value) || value['key'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('description' in value) || value['description'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('language' in value) || value['language'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
exports.instanceOfFormatTranslation = instanceOfFormatTranslation;
|
|
32
|
+
function FormatTranslationFromJSON(json) {
|
|
33
|
+
return FormatTranslationFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
exports.FormatTranslationFromJSON = FormatTranslationFromJSON;
|
|
36
|
+
function FormatTranslationFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
+
if (json == null) {
|
|
38
|
+
return json;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'key': json['key'],
|
|
42
|
+
'name': json['name'],
|
|
43
|
+
'description': json['description'],
|
|
44
|
+
'language': json['language'],
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
exports.FormatTranslationFromJSONTyped = FormatTranslationFromJSONTyped;
|
|
48
|
+
function FormatTranslationToJSON(json) {
|
|
49
|
+
return FormatTranslationToJSONTyped(json, false);
|
|
50
|
+
}
|
|
51
|
+
exports.FormatTranslationToJSON = FormatTranslationToJSON;
|
|
52
|
+
function FormatTranslationToJSONTyped(value, ignoreDiscriminator) {
|
|
53
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
54
|
+
if (value == null) {
|
|
55
|
+
return value;
|
|
56
|
+
}
|
|
57
|
+
return {
|
|
58
|
+
'key': value['key'],
|
|
59
|
+
'name': value['name'],
|
|
60
|
+
'description': value['description'],
|
|
61
|
+
'language': value['language'],
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
exports.FormatTranslationToJSONTyped = FormatTranslationToJSONTyped;
|
|
@@ -0,0 +1,45 @@
|
|
|
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 { FormatTranslation } from './FormatTranslation';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface FormatUpdate
|
|
17
|
+
*/
|
|
18
|
+
export interface FormatUpdate {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof FormatUpdate
|
|
23
|
+
*/
|
|
24
|
+
worldId?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof FormatUpdate
|
|
29
|
+
*/
|
|
30
|
+
type?: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<FormatTranslation>}
|
|
34
|
+
* @memberof FormatUpdate
|
|
35
|
+
*/
|
|
36
|
+
translations: Array<FormatTranslation>;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Check if a given object implements the FormatUpdate interface.
|
|
40
|
+
*/
|
|
41
|
+
export declare function instanceOfFormatUpdate(value: object): value is FormatUpdate;
|
|
42
|
+
export declare function FormatUpdateFromJSON(json: any): FormatUpdate;
|
|
43
|
+
export declare function FormatUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormatUpdate;
|
|
44
|
+
export declare function FormatUpdateToJSON(json: any): FormatUpdate;
|
|
45
|
+
export declare function FormatUpdateToJSONTyped(value?: FormatUpdate | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,57 @@
|
|
|
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.FormatUpdateToJSONTyped = exports.FormatUpdateToJSON = exports.FormatUpdateFromJSONTyped = exports.FormatUpdateFromJSON = exports.instanceOfFormatUpdate = void 0;
|
|
17
|
+
var FormatTranslation_1 = require("./FormatTranslation");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the FormatUpdate interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfFormatUpdate(value) {
|
|
22
|
+
if (!('translations' in value) || value['translations'] === undefined)
|
|
23
|
+
return false;
|
|
24
|
+
return true;
|
|
25
|
+
}
|
|
26
|
+
exports.instanceOfFormatUpdate = instanceOfFormatUpdate;
|
|
27
|
+
function FormatUpdateFromJSON(json) {
|
|
28
|
+
return FormatUpdateFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
exports.FormatUpdateFromJSON = FormatUpdateFromJSON;
|
|
31
|
+
function FormatUpdateFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'worldId': json['worldId'] == null ? undefined : json['worldId'],
|
|
37
|
+
'type': json['type'] == null ? undefined : json['type'],
|
|
38
|
+
'translations': (json['translations'].map(FormatTranslation_1.FormatTranslationFromJSON)),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.FormatUpdateFromJSONTyped = FormatUpdateFromJSONTyped;
|
|
42
|
+
function FormatUpdateToJSON(json) {
|
|
43
|
+
return FormatUpdateToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
exports.FormatUpdateToJSON = FormatUpdateToJSON;
|
|
46
|
+
function FormatUpdateToJSONTyped(value, ignoreDiscriminator) {
|
|
47
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'worldId': value['worldId'],
|
|
53
|
+
'type': value['type'],
|
|
54
|
+
'translations': (value['translations'].map(FormatTranslation_1.FormatTranslationToJSON)),
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
exports.FormatUpdateToJSONTyped = FormatUpdateToJSONTyped;
|
|
@@ -0,0 +1,256 @@
|
|
|
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 Meeting
|
|
16
|
+
*/
|
|
17
|
+
export interface Meeting {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof Meeting
|
|
22
|
+
*/
|
|
23
|
+
serviceBodyId: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {Array<number>}
|
|
27
|
+
* @memberof Meeting
|
|
28
|
+
*/
|
|
29
|
+
formatIds: Array<number>;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof Meeting
|
|
34
|
+
*/
|
|
35
|
+
venueType: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof Meeting
|
|
40
|
+
*/
|
|
41
|
+
temporarilyVirtual: boolean;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof Meeting
|
|
46
|
+
*/
|
|
47
|
+
day: number;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof Meeting
|
|
52
|
+
*/
|
|
53
|
+
startTime: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof Meeting
|
|
58
|
+
*/
|
|
59
|
+
duration: string;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof Meeting
|
|
64
|
+
*/
|
|
65
|
+
timeZone: string;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof Meeting
|
|
70
|
+
*/
|
|
71
|
+
latitude: number;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof Meeting
|
|
76
|
+
*/
|
|
77
|
+
longitude: number;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {boolean}
|
|
81
|
+
* @memberof Meeting
|
|
82
|
+
*/
|
|
83
|
+
published: boolean;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof Meeting
|
|
88
|
+
*/
|
|
89
|
+
email: string;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof Meeting
|
|
94
|
+
*/
|
|
95
|
+
worldId: string;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof Meeting
|
|
100
|
+
*/
|
|
101
|
+
name: string;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof Meeting
|
|
106
|
+
*/
|
|
107
|
+
locationText?: string;
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof Meeting
|
|
112
|
+
*/
|
|
113
|
+
locationInfo?: string;
|
|
114
|
+
/**
|
|
115
|
+
*
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof Meeting
|
|
118
|
+
*/
|
|
119
|
+
locationStreet?: string;
|
|
120
|
+
/**
|
|
121
|
+
*
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof Meeting
|
|
124
|
+
*/
|
|
125
|
+
locationNeighborhood?: string;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof Meeting
|
|
130
|
+
*/
|
|
131
|
+
locationCitySubsection?: string;
|
|
132
|
+
/**
|
|
133
|
+
*
|
|
134
|
+
* @type {string}
|
|
135
|
+
* @memberof Meeting
|
|
136
|
+
*/
|
|
137
|
+
locationMunicipality?: string;
|
|
138
|
+
/**
|
|
139
|
+
*
|
|
140
|
+
* @type {string}
|
|
141
|
+
* @memberof Meeting
|
|
142
|
+
*/
|
|
143
|
+
locationSubProvince?: string;
|
|
144
|
+
/**
|
|
145
|
+
*
|
|
146
|
+
* @type {string}
|
|
147
|
+
* @memberof Meeting
|
|
148
|
+
*/
|
|
149
|
+
locationProvince?: string;
|
|
150
|
+
/**
|
|
151
|
+
*
|
|
152
|
+
* @type {string}
|
|
153
|
+
* @memberof Meeting
|
|
154
|
+
*/
|
|
155
|
+
locationPostalCode1?: string;
|
|
156
|
+
/**
|
|
157
|
+
*
|
|
158
|
+
* @type {string}
|
|
159
|
+
* @memberof Meeting
|
|
160
|
+
*/
|
|
161
|
+
locationNation?: string;
|
|
162
|
+
/**
|
|
163
|
+
*
|
|
164
|
+
* @type {string}
|
|
165
|
+
* @memberof Meeting
|
|
166
|
+
*/
|
|
167
|
+
phoneMeetingNumber?: string;
|
|
168
|
+
/**
|
|
169
|
+
*
|
|
170
|
+
* @type {string}
|
|
171
|
+
* @memberof Meeting
|
|
172
|
+
*/
|
|
173
|
+
virtualMeetingLink?: string;
|
|
174
|
+
/**
|
|
175
|
+
*
|
|
176
|
+
* @type {string}
|
|
177
|
+
* @memberof Meeting
|
|
178
|
+
*/
|
|
179
|
+
virtualMeetingAdditionalInfo?: string;
|
|
180
|
+
/**
|
|
181
|
+
*
|
|
182
|
+
* @type {string}
|
|
183
|
+
* @memberof Meeting
|
|
184
|
+
*/
|
|
185
|
+
contactName1?: string;
|
|
186
|
+
/**
|
|
187
|
+
*
|
|
188
|
+
* @type {string}
|
|
189
|
+
* @memberof Meeting
|
|
190
|
+
*/
|
|
191
|
+
contactName2?: string;
|
|
192
|
+
/**
|
|
193
|
+
*
|
|
194
|
+
* @type {string}
|
|
195
|
+
* @memberof Meeting
|
|
196
|
+
*/
|
|
197
|
+
contactPhone1?: string;
|
|
198
|
+
/**
|
|
199
|
+
*
|
|
200
|
+
* @type {string}
|
|
201
|
+
* @memberof Meeting
|
|
202
|
+
*/
|
|
203
|
+
contactPhone2?: string;
|
|
204
|
+
/**
|
|
205
|
+
*
|
|
206
|
+
* @type {string}
|
|
207
|
+
* @memberof Meeting
|
|
208
|
+
*/
|
|
209
|
+
contactEmail1?: string;
|
|
210
|
+
/**
|
|
211
|
+
*
|
|
212
|
+
* @type {string}
|
|
213
|
+
* @memberof Meeting
|
|
214
|
+
*/
|
|
215
|
+
contactEmail2?: string;
|
|
216
|
+
/**
|
|
217
|
+
*
|
|
218
|
+
* @type {string}
|
|
219
|
+
* @memberof Meeting
|
|
220
|
+
*/
|
|
221
|
+
busLines?: string;
|
|
222
|
+
/**
|
|
223
|
+
*
|
|
224
|
+
* @type {string}
|
|
225
|
+
* @memberof Meeting
|
|
226
|
+
*/
|
|
227
|
+
trainLines?: string;
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* @type {string}
|
|
231
|
+
* @memberof Meeting
|
|
232
|
+
*/
|
|
233
|
+
comments?: string;
|
|
234
|
+
/**
|
|
235
|
+
*
|
|
236
|
+
* @type {{ [key: string]: string; }}
|
|
237
|
+
* @memberof Meeting
|
|
238
|
+
*/
|
|
239
|
+
customFields?: {
|
|
240
|
+
[key: string]: string;
|
|
241
|
+
};
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* @type {number}
|
|
245
|
+
* @memberof Meeting
|
|
246
|
+
*/
|
|
247
|
+
id: number;
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* Check if a given object implements the Meeting interface.
|
|
251
|
+
*/
|
|
252
|
+
export declare function instanceOfMeeting(value: object): value is Meeting;
|
|
253
|
+
export declare function MeetingFromJSON(json: any): Meeting;
|
|
254
|
+
export declare function MeetingFromJSONTyped(json: any, ignoreDiscriminator: boolean): Meeting;
|
|
255
|
+
export declare function MeetingToJSON(json: any): Meeting;
|
|
256
|
+
export declare function MeetingToJSONTyped(value?: Meeting | null, ignoreDiscriminator?: boolean): any;
|