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.
Files changed (136) hide show
  1. package/.github/workflows/release.yml +25 -0
  2. package/.idea/bmlt-server-typescript-client.iml +9 -0
  3. package/.idea/misc.xml +6 -0
  4. package/.idea/modules.xml +8 -0
  5. package/.idea/vcs.xml +6 -0
  6. package/.openapi-generator/FILES +46 -0
  7. package/.openapi-generator/VERSION +1 -0
  8. package/.openapi-generator-ignore +23 -0
  9. package/Makefile +18 -0
  10. package/README.md +46 -0
  11. package/dist/apis/ServerApi.d.ts +424 -0
  12. package/dist/apis/ServerApi.js +1828 -0
  13. package/dist/apis/index.d.ts +1 -0
  14. package/dist/apis/index.js +19 -0
  15. package/dist/index.d.ts +3 -0
  16. package/dist/index.js +21 -0
  17. package/dist/models/AuthenticationError.d.ts +32 -0
  18. package/dist/models/AuthenticationError.js +52 -0
  19. package/dist/models/AuthorizationError.d.ts +32 -0
  20. package/dist/models/AuthorizationError.js +52 -0
  21. package/dist/models/ConflictError.d.ts +32 -0
  22. package/dist/models/ConflictError.js +52 -0
  23. package/dist/models/ErrorTest.d.ts +44 -0
  24. package/dist/models/ErrorTest.js +54 -0
  25. package/dist/models/Format.d.ts +51 -0
  26. package/dist/models/Format.js +65 -0
  27. package/dist/models/FormatBase.d.ts +45 -0
  28. package/dist/models/FormatBase.js +55 -0
  29. package/dist/models/FormatCreate.d.ts +45 -0
  30. package/dist/models/FormatCreate.js +57 -0
  31. package/dist/models/FormatPartialUpdate.d.ts +45 -0
  32. package/dist/models/FormatPartialUpdate.js +55 -0
  33. package/dist/models/FormatTranslation.d.ts +50 -0
  34. package/dist/models/FormatTranslation.js +64 -0
  35. package/dist/models/FormatUpdate.d.ts +45 -0
  36. package/dist/models/FormatUpdate.js +57 -0
  37. package/dist/models/Meeting.d.ts +256 -0
  38. package/dist/models/Meeting.js +154 -0
  39. package/dist/models/MeetingBase.d.ts +250 -0
  40. package/dist/models/MeetingBase.js +122 -0
  41. package/dist/models/MeetingChangeResource.d.ts +50 -0
  42. package/dist/models/MeetingChangeResource.js +56 -0
  43. package/dist/models/MeetingCreate.d.ts +250 -0
  44. package/dist/models/MeetingCreate.js +142 -0
  45. package/dist/models/MeetingPartialUpdate.d.ts +250 -0
  46. package/dist/models/MeetingPartialUpdate.js +142 -0
  47. package/dist/models/MeetingUpdate.d.ts +250 -0
  48. package/dist/models/MeetingUpdate.js +142 -0
  49. package/dist/models/NotFoundError.d.ts +32 -0
  50. package/dist/models/NotFoundError.js +52 -0
  51. package/dist/models/Server.d.ts +69 -0
  52. package/dist/models/Server.js +73 -0
  53. package/dist/models/ServerBase.d.ts +63 -0
  54. package/dist/models/ServerBase.js +61 -0
  55. package/dist/models/ServerBaseStatistics.d.ts +40 -0
  56. package/dist/models/ServerBaseStatistics.js +58 -0
  57. package/dist/models/ServerBaseStatisticsMeetings.d.ts +56 -0
  58. package/dist/models/ServerBaseStatisticsMeetings.js +68 -0
  59. package/dist/models/ServerBaseStatisticsServiceBodies.d.ts +50 -0
  60. package/dist/models/ServerBaseStatisticsServiceBodies.js +64 -0
  61. package/dist/models/ServerError.d.ts +32 -0
  62. package/dist/models/ServerError.js +52 -0
  63. package/dist/models/ServiceBody.d.ts +92 -0
  64. package/dist/models/ServiceBody.js +92 -0
  65. package/dist/models/ServiceBodyBase.d.ts +86 -0
  66. package/dist/models/ServiceBodyBase.js +68 -0
  67. package/dist/models/ServiceBodyCreate.d.ts +86 -0
  68. package/dist/models/ServiceBodyCreate.js +80 -0
  69. package/dist/models/ServiceBodyPartialUpdate.d.ts +86 -0
  70. package/dist/models/ServiceBodyPartialUpdate.js +68 -0
  71. package/dist/models/ServiceBodyUpdate.d.ts +86 -0
  72. package/dist/models/ServiceBodyUpdate.js +80 -0
  73. package/dist/models/Token.d.ts +50 -0
  74. package/dist/models/Token.js +64 -0
  75. package/dist/models/TokenCredentials.d.ts +38 -0
  76. package/dist/models/TokenCredentials.js +56 -0
  77. package/dist/models/User.d.ts +68 -0
  78. package/dist/models/User.js +76 -0
  79. package/dist/models/UserBase.d.ts +62 -0
  80. package/dist/models/UserBase.js +60 -0
  81. package/dist/models/UserCreate.d.ts +68 -0
  82. package/dist/models/UserCreate.js +70 -0
  83. package/dist/models/UserPartialUpdate.d.ts +68 -0
  84. package/dist/models/UserPartialUpdate.js +62 -0
  85. package/dist/models/UserUpdate.d.ts +68 -0
  86. package/dist/models/UserUpdate.js +68 -0
  87. package/dist/models/ValidationError.d.ts +40 -0
  88. package/dist/models/ValidationError.js +56 -0
  89. package/dist/models/index.d.ts +36 -0
  90. package/dist/models/index.js +54 -0
  91. package/dist/runtime.d.ts +184 -0
  92. package/dist/runtime.js +564 -0
  93. package/openapi.json +1 -0
  94. package/package.json +19 -0
  95. package/src/apis/ServerApi.ts +1529 -0
  96. package/src/apis/index.ts +3 -0
  97. package/src/index.ts +5 -0
  98. package/src/models/AuthenticationError.ts +66 -0
  99. package/src/models/AuthorizationError.ts +66 -0
  100. package/src/models/ConflictError.ts +66 -0
  101. package/src/models/ErrorTest.ts +81 -0
  102. package/src/models/Format.ts +101 -0
  103. package/src/models/FormatBase.ts +89 -0
  104. package/src/models/FormatCreate.ts +90 -0
  105. package/src/models/FormatPartialUpdate.ts +89 -0
  106. package/src/models/FormatTranslation.ts +93 -0
  107. package/src/models/FormatUpdate.ts +90 -0
  108. package/src/models/Meeting.ts +376 -0
  109. package/src/models/MeetingBase.ts +353 -0
  110. package/src/models/MeetingChangeResource.ts +89 -0
  111. package/src/models/MeetingCreate.ts +363 -0
  112. package/src/models/MeetingPartialUpdate.ts +363 -0
  113. package/src/models/MeetingUpdate.ts +363 -0
  114. package/src/models/NotFoundError.ts +66 -0
  115. package/src/models/Server.ts +126 -0
  116. package/src/models/ServerBase.ts +113 -0
  117. package/src/models/ServerBaseStatistics.ts +90 -0
  118. package/src/models/ServerBaseStatisticsMeetings.ts +102 -0
  119. package/src/models/ServerBaseStatisticsServiceBodies.ts +93 -0
  120. package/src/models/ServerError.ts +66 -0
  121. package/src/models/ServiceBody.ts +156 -0
  122. package/src/models/ServiceBodyBase.ts +137 -0
  123. package/src/models/ServiceBodyCreate.ts +143 -0
  124. package/src/models/ServiceBodyPartialUpdate.ts +137 -0
  125. package/src/models/ServiceBodyUpdate.ts +143 -0
  126. package/src/models/Token.ts +93 -0
  127. package/src/models/TokenCredentials.ts +75 -0
  128. package/src/models/User.ts +120 -0
  129. package/src/models/UserBase.ts +105 -0
  130. package/src/models/UserCreate.ts +117 -0
  131. package/src/models/UserPartialUpdate.ts +113 -0
  132. package/src/models/UserUpdate.ts +116 -0
  133. package/src/models/ValidationError.ts +75 -0
  134. package/src/models/index.ts +38 -0
  135. package/src/runtime.ts +432 -0
  136. package/tsconfig.json +20 -0
@@ -0,0 +1,68 @@
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 UserCreate
16
+ */
17
+ export interface UserCreate {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UserCreate
22
+ */
23
+ username: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof UserCreate
28
+ */
29
+ type: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof UserCreate
34
+ */
35
+ displayName: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof UserCreate
40
+ */
41
+ description?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof UserCreate
46
+ */
47
+ email?: string;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof UserCreate
52
+ */
53
+ ownerId?: number;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof UserCreate
58
+ */
59
+ password: string;
60
+ }
61
+ /**
62
+ * Check if a given object implements the UserCreate interface.
63
+ */
64
+ export declare function instanceOfUserCreate(value: object): value is UserCreate;
65
+ export declare function UserCreateFromJSON(json: any): UserCreate;
66
+ export declare function UserCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserCreate;
67
+ export declare function UserCreateToJSON(json: any): UserCreate;
68
+ export declare function UserCreateToJSONTyped(value?: UserCreate | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,70 @@
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.UserCreateToJSONTyped = exports.UserCreateToJSON = exports.UserCreateFromJSONTyped = exports.UserCreateFromJSON = exports.instanceOfUserCreate = void 0;
17
+ /**
18
+ * Check if a given object implements the UserCreate interface.
19
+ */
20
+ function instanceOfUserCreate(value) {
21
+ if (!('username' in value) || value['username'] === undefined)
22
+ return false;
23
+ if (!('type' in value) || value['type'] === undefined)
24
+ return false;
25
+ if (!('displayName' in value) || value['displayName'] === undefined)
26
+ return false;
27
+ if (!('password' in value) || value['password'] === undefined)
28
+ return false;
29
+ return true;
30
+ }
31
+ exports.instanceOfUserCreate = instanceOfUserCreate;
32
+ function UserCreateFromJSON(json) {
33
+ return UserCreateFromJSONTyped(json, false);
34
+ }
35
+ exports.UserCreateFromJSON = UserCreateFromJSON;
36
+ function UserCreateFromJSONTyped(json, ignoreDiscriminator) {
37
+ if (json == null) {
38
+ return json;
39
+ }
40
+ return {
41
+ 'username': json['username'],
42
+ 'type': json['type'],
43
+ 'displayName': json['displayName'],
44
+ 'description': json['description'] == null ? undefined : json['description'],
45
+ 'email': json['email'] == null ? undefined : json['email'],
46
+ 'ownerId': json['ownerId'] == null ? undefined : json['ownerId'],
47
+ 'password': json['password'],
48
+ };
49
+ }
50
+ exports.UserCreateFromJSONTyped = UserCreateFromJSONTyped;
51
+ function UserCreateToJSON(json) {
52
+ return UserCreateToJSONTyped(json, false);
53
+ }
54
+ exports.UserCreateToJSON = UserCreateToJSON;
55
+ function UserCreateToJSONTyped(value, ignoreDiscriminator) {
56
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
57
+ if (value == null) {
58
+ return value;
59
+ }
60
+ return {
61
+ 'username': value['username'],
62
+ 'type': value['type'],
63
+ 'displayName': value['displayName'],
64
+ 'description': value['description'],
65
+ 'email': value['email'],
66
+ 'ownerId': value['ownerId'],
67
+ 'password': value['password'],
68
+ };
69
+ }
70
+ exports.UserCreateToJSONTyped = UserCreateToJSONTyped;
@@ -0,0 +1,68 @@
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 UserPartialUpdate
16
+ */
17
+ export interface UserPartialUpdate {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UserPartialUpdate
22
+ */
23
+ username?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof UserPartialUpdate
28
+ */
29
+ type?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof UserPartialUpdate
34
+ */
35
+ displayName?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof UserPartialUpdate
40
+ */
41
+ description?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof UserPartialUpdate
46
+ */
47
+ email?: string;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof UserPartialUpdate
52
+ */
53
+ ownerId?: number;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof UserPartialUpdate
58
+ */
59
+ password?: string;
60
+ }
61
+ /**
62
+ * Check if a given object implements the UserPartialUpdate interface.
63
+ */
64
+ export declare function instanceOfUserPartialUpdate(value: object): value is UserPartialUpdate;
65
+ export declare function UserPartialUpdateFromJSON(json: any): UserPartialUpdate;
66
+ export declare function UserPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserPartialUpdate;
67
+ export declare function UserPartialUpdateToJSON(json: any): UserPartialUpdate;
68
+ export declare function UserPartialUpdateToJSONTyped(value?: UserPartialUpdate | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,62 @@
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.UserPartialUpdateToJSONTyped = exports.UserPartialUpdateToJSON = exports.UserPartialUpdateFromJSONTyped = exports.UserPartialUpdateFromJSON = exports.instanceOfUserPartialUpdate = void 0;
17
+ /**
18
+ * Check if a given object implements the UserPartialUpdate interface.
19
+ */
20
+ function instanceOfUserPartialUpdate(value) {
21
+ return true;
22
+ }
23
+ exports.instanceOfUserPartialUpdate = instanceOfUserPartialUpdate;
24
+ function UserPartialUpdateFromJSON(json) {
25
+ return UserPartialUpdateFromJSONTyped(json, false);
26
+ }
27
+ exports.UserPartialUpdateFromJSON = UserPartialUpdateFromJSON;
28
+ function UserPartialUpdateFromJSONTyped(json, ignoreDiscriminator) {
29
+ if (json == null) {
30
+ return json;
31
+ }
32
+ return {
33
+ 'username': json['username'] == null ? undefined : json['username'],
34
+ 'type': json['type'] == null ? undefined : json['type'],
35
+ 'displayName': json['displayName'] == null ? undefined : json['displayName'],
36
+ 'description': json['description'] == null ? undefined : json['description'],
37
+ 'email': json['email'] == null ? undefined : json['email'],
38
+ 'ownerId': json['ownerId'] == null ? undefined : json['ownerId'],
39
+ 'password': json['password'] == null ? undefined : json['password'],
40
+ };
41
+ }
42
+ exports.UserPartialUpdateFromJSONTyped = UserPartialUpdateFromJSONTyped;
43
+ function UserPartialUpdateToJSON(json) {
44
+ return UserPartialUpdateToJSONTyped(json, false);
45
+ }
46
+ exports.UserPartialUpdateToJSON = UserPartialUpdateToJSON;
47
+ function UserPartialUpdateToJSONTyped(value, ignoreDiscriminator) {
48
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
49
+ if (value == null) {
50
+ return value;
51
+ }
52
+ return {
53
+ 'username': value['username'],
54
+ 'type': value['type'],
55
+ 'displayName': value['displayName'],
56
+ 'description': value['description'],
57
+ 'email': value['email'],
58
+ 'ownerId': value['ownerId'],
59
+ 'password': value['password'],
60
+ };
61
+ }
62
+ exports.UserPartialUpdateToJSONTyped = UserPartialUpdateToJSONTyped;
@@ -0,0 +1,68 @@
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 UserUpdate
16
+ */
17
+ export interface UserUpdate {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UserUpdate
22
+ */
23
+ username: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof UserUpdate
28
+ */
29
+ type: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof UserUpdate
34
+ */
35
+ displayName: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof UserUpdate
40
+ */
41
+ description?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof UserUpdate
46
+ */
47
+ email?: string;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof UserUpdate
52
+ */
53
+ ownerId?: number;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof UserUpdate
58
+ */
59
+ password?: string;
60
+ }
61
+ /**
62
+ * Check if a given object implements the UserUpdate interface.
63
+ */
64
+ export declare function instanceOfUserUpdate(value: object): value is UserUpdate;
65
+ export declare function UserUpdateFromJSON(json: any): UserUpdate;
66
+ export declare function UserUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserUpdate;
67
+ export declare function UserUpdateToJSON(json: any): UserUpdate;
68
+ export declare function UserUpdateToJSONTyped(value?: UserUpdate | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,68 @@
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.UserUpdateToJSONTyped = exports.UserUpdateToJSON = exports.UserUpdateFromJSONTyped = exports.UserUpdateFromJSON = exports.instanceOfUserUpdate = void 0;
17
+ /**
18
+ * Check if a given object implements the UserUpdate interface.
19
+ */
20
+ function instanceOfUserUpdate(value) {
21
+ if (!('username' in value) || value['username'] === undefined)
22
+ return false;
23
+ if (!('type' in value) || value['type'] === undefined)
24
+ return false;
25
+ if (!('displayName' in value) || value['displayName'] === undefined)
26
+ return false;
27
+ return true;
28
+ }
29
+ exports.instanceOfUserUpdate = instanceOfUserUpdate;
30
+ function UserUpdateFromJSON(json) {
31
+ return UserUpdateFromJSONTyped(json, false);
32
+ }
33
+ exports.UserUpdateFromJSON = UserUpdateFromJSON;
34
+ function UserUpdateFromJSONTyped(json, ignoreDiscriminator) {
35
+ if (json == null) {
36
+ return json;
37
+ }
38
+ return {
39
+ 'username': json['username'],
40
+ 'type': json['type'],
41
+ 'displayName': json['displayName'],
42
+ 'description': json['description'] == null ? undefined : json['description'],
43
+ 'email': json['email'] == null ? undefined : json['email'],
44
+ 'ownerId': json['ownerId'] == null ? undefined : json['ownerId'],
45
+ 'password': json['password'] == null ? undefined : json['password'],
46
+ };
47
+ }
48
+ exports.UserUpdateFromJSONTyped = UserUpdateFromJSONTyped;
49
+ function UserUpdateToJSON(json) {
50
+ return UserUpdateToJSONTyped(json, false);
51
+ }
52
+ exports.UserUpdateToJSON = UserUpdateToJSON;
53
+ function UserUpdateToJSONTyped(value, ignoreDiscriminator) {
54
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
55
+ if (value == null) {
56
+ return value;
57
+ }
58
+ return {
59
+ 'username': value['username'],
60
+ 'type': value['type'],
61
+ 'displayName': value['displayName'],
62
+ 'description': value['description'],
63
+ 'email': value['email'],
64
+ 'ownerId': value['ownerId'],
65
+ 'password': value['password'],
66
+ };
67
+ }
68
+ exports.UserUpdateToJSONTyped = UserUpdateToJSONTyped;
@@ -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
+ /**
13
+ *
14
+ * @export
15
+ * @interface ValidationError
16
+ */
17
+ export interface ValidationError {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ValidationError
22
+ */
23
+ message: string;
24
+ /**
25
+ *
26
+ * @type {{ [key: string]: Array<string>; }}
27
+ * @memberof ValidationError
28
+ */
29
+ errors: {
30
+ [key: string]: Array<string>;
31
+ };
32
+ }
33
+ /**
34
+ * Check if a given object implements the ValidationError interface.
35
+ */
36
+ export declare function instanceOfValidationError(value: object): value is ValidationError;
37
+ export declare function ValidationErrorFromJSON(json: any): ValidationError;
38
+ export declare function ValidationErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationError;
39
+ export declare function ValidationErrorToJSON(json: any): ValidationError;
40
+ export declare function ValidationErrorToJSONTyped(value?: ValidationError | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,56 @@
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.ValidationErrorToJSONTyped = exports.ValidationErrorToJSON = exports.ValidationErrorFromJSONTyped = exports.ValidationErrorFromJSON = exports.instanceOfValidationError = void 0;
17
+ /**
18
+ * Check if a given object implements the ValidationError interface.
19
+ */
20
+ function instanceOfValidationError(value) {
21
+ if (!('message' in value) || value['message'] === undefined)
22
+ return false;
23
+ if (!('errors' in value) || value['errors'] === undefined)
24
+ return false;
25
+ return true;
26
+ }
27
+ exports.instanceOfValidationError = instanceOfValidationError;
28
+ function ValidationErrorFromJSON(json) {
29
+ return ValidationErrorFromJSONTyped(json, false);
30
+ }
31
+ exports.ValidationErrorFromJSON = ValidationErrorFromJSON;
32
+ function ValidationErrorFromJSONTyped(json, ignoreDiscriminator) {
33
+ if (json == null) {
34
+ return json;
35
+ }
36
+ return {
37
+ 'message': json['message'],
38
+ 'errors': json['errors'],
39
+ };
40
+ }
41
+ exports.ValidationErrorFromJSONTyped = ValidationErrorFromJSONTyped;
42
+ function ValidationErrorToJSON(json) {
43
+ return ValidationErrorToJSONTyped(json, false);
44
+ }
45
+ exports.ValidationErrorToJSON = ValidationErrorToJSON;
46
+ function ValidationErrorToJSONTyped(value, ignoreDiscriminator) {
47
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
48
+ if (value == null) {
49
+ return value;
50
+ }
51
+ return {
52
+ 'message': value['message'],
53
+ 'errors': value['errors'],
54
+ };
55
+ }
56
+ exports.ValidationErrorToJSONTyped = ValidationErrorToJSONTyped;
@@ -0,0 +1,36 @@
1
+ export * from './AuthenticationError';
2
+ export * from './AuthorizationError';
3
+ export * from './ConflictError';
4
+ export * from './ErrorTest';
5
+ export * from './Format';
6
+ export * from './FormatBase';
7
+ export * from './FormatCreate';
8
+ export * from './FormatPartialUpdate';
9
+ export * from './FormatTranslation';
10
+ export * from './FormatUpdate';
11
+ export * from './Meeting';
12
+ export * from './MeetingBase';
13
+ export * from './MeetingChangeResource';
14
+ export * from './MeetingCreate';
15
+ export * from './MeetingPartialUpdate';
16
+ export * from './MeetingUpdate';
17
+ export * from './NotFoundError';
18
+ export * from './Server';
19
+ export * from './ServerBase';
20
+ export * from './ServerBaseStatistics';
21
+ export * from './ServerBaseStatisticsMeetings';
22
+ export * from './ServerBaseStatisticsServiceBodies';
23
+ export * from './ServerError';
24
+ export * from './ServiceBody';
25
+ export * from './ServiceBodyBase';
26
+ export * from './ServiceBodyCreate';
27
+ export * from './ServiceBodyPartialUpdate';
28
+ export * from './ServiceBodyUpdate';
29
+ export * from './Token';
30
+ export * from './TokenCredentials';
31
+ export * from './User';
32
+ export * from './UserBase';
33
+ export * from './UserCreate';
34
+ export * from './UserPartialUpdate';
35
+ export * from './UserUpdate';
36
+ export * from './ValidationError';
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ /* tslint:disable */
18
+ /* eslint-disable */
19
+ __exportStar(require("./AuthenticationError"), exports);
20
+ __exportStar(require("./AuthorizationError"), exports);
21
+ __exportStar(require("./ConflictError"), exports);
22
+ __exportStar(require("./ErrorTest"), exports);
23
+ __exportStar(require("./Format"), exports);
24
+ __exportStar(require("./FormatBase"), exports);
25
+ __exportStar(require("./FormatCreate"), exports);
26
+ __exportStar(require("./FormatPartialUpdate"), exports);
27
+ __exportStar(require("./FormatTranslation"), exports);
28
+ __exportStar(require("./FormatUpdate"), exports);
29
+ __exportStar(require("./Meeting"), exports);
30
+ __exportStar(require("./MeetingBase"), exports);
31
+ __exportStar(require("./MeetingChangeResource"), exports);
32
+ __exportStar(require("./MeetingCreate"), exports);
33
+ __exportStar(require("./MeetingPartialUpdate"), exports);
34
+ __exportStar(require("./MeetingUpdate"), exports);
35
+ __exportStar(require("./NotFoundError"), exports);
36
+ __exportStar(require("./Server"), exports);
37
+ __exportStar(require("./ServerBase"), exports);
38
+ __exportStar(require("./ServerBaseStatistics"), exports);
39
+ __exportStar(require("./ServerBaseStatisticsMeetings"), exports);
40
+ __exportStar(require("./ServerBaseStatisticsServiceBodies"), exports);
41
+ __exportStar(require("./ServerError"), exports);
42
+ __exportStar(require("./ServiceBody"), exports);
43
+ __exportStar(require("./ServiceBodyBase"), exports);
44
+ __exportStar(require("./ServiceBodyCreate"), exports);
45
+ __exportStar(require("./ServiceBodyPartialUpdate"), exports);
46
+ __exportStar(require("./ServiceBodyUpdate"), exports);
47
+ __exportStar(require("./Token"), exports);
48
+ __exportStar(require("./TokenCredentials"), exports);
49
+ __exportStar(require("./User"), exports);
50
+ __exportStar(require("./UserBase"), exports);
51
+ __exportStar(require("./UserCreate"), exports);
52
+ __exportStar(require("./UserPartialUpdate"), exports);
53
+ __exportStar(require("./UserUpdate"), exports);
54
+ __exportStar(require("./ValidationError"), exports);