bmlt-server-semantic-client 1.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.
Files changed (174) hide show
  1. package/.github/workflows/release.yml +25 -0
  2. package/.openapi-generator/FILES +44 -0
  3. package/.openapi-generator/VERSION +1 -0
  4. package/.openapi-generator-ignore +23 -0
  5. package/Makefile +31 -0
  6. package/README.md +125 -0
  7. package/dist/apis/FieldsApi.d.ts +56 -0
  8. package/dist/apis/FieldsApi.js +123 -0
  9. package/dist/apis/FormatsApi.d.ts +44 -0
  10. package/dist/apis/FormatsApi.js +87 -0
  11. package/dist/apis/MeetingsApi.d.ts +157 -0
  12. package/dist/apis/MeetingsApi.js +288 -0
  13. package/dist/apis/ServerApi.d.ts +43 -0
  14. package/dist/apis/ServerApi.js +104 -0
  15. package/dist/apis/ServiceBodiesApi.d.ts +51 -0
  16. package/dist/apis/ServiceBodiesApi.js +91 -0
  17. package/dist/apis/index.d.ts +5 -0
  18. package/dist/apis/index.js +23 -0
  19. package/dist/esm/apis/FieldsApi.d.ts +56 -0
  20. package/dist/esm/apis/FieldsApi.js +119 -0
  21. package/dist/esm/apis/FormatsApi.d.ts +44 -0
  22. package/dist/esm/apis/FormatsApi.js +83 -0
  23. package/dist/esm/apis/MeetingsApi.d.ts +157 -0
  24. package/dist/esm/apis/MeetingsApi.js +284 -0
  25. package/dist/esm/apis/ServerApi.d.ts +43 -0
  26. package/dist/esm/apis/ServerApi.js +100 -0
  27. package/dist/esm/apis/ServiceBodiesApi.d.ts +51 -0
  28. package/dist/esm/apis/ServiceBodiesApi.js +87 -0
  29. package/dist/esm/apis/index.d.ts +5 -0
  30. package/dist/esm/apis/index.js +7 -0
  31. package/dist/esm/index.d.ts +3 -0
  32. package/dist/esm/index.js +5 -0
  33. package/dist/esm/models/Format.d.ts +81 -0
  34. package/dist/esm/models/Format.js +37 -0
  35. package/dist/esm/models/GetCoverageArea200Response.d.ts +50 -0
  36. package/dist/esm/models/GetCoverageArea200Response.js +47 -0
  37. package/dist/esm/models/GetFieldKeys200ResponseInner.d.ts +38 -0
  38. package/dist/esm/models/GetFieldKeys200ResponseInner.js +43 -0
  39. package/dist/esm/models/GetFieldValues200ResponseInner.d.ts +38 -0
  40. package/dist/esm/models/GetFieldValues200ResponseInner.js +43 -0
  41. package/dist/esm/models/GetSearchResults200Response.d.ts +24 -0
  42. package/dist/esm/models/GetSearchResults200Response.js +68 -0
  43. package/dist/esm/models/GetSearchResults200ResponseOneOf.d.ts +40 -0
  44. package/dist/esm/models/GetSearchResults200ResponseOneOf.js +45 -0
  45. package/dist/esm/models/Meeting.d.ts +255 -0
  46. package/dist/esm/models/Meeting.js +37 -0
  47. package/dist/esm/models/MeetingChange.d.ts +89 -0
  48. package/dist/esm/models/MeetingChange.js +37 -0
  49. package/dist/esm/models/ModelError.d.ts +33 -0
  50. package/dist/esm/models/ModelError.js +37 -0
  51. package/dist/esm/models/SemanticError.d.ts +33 -0
  52. package/dist/esm/models/SemanticError.js +37 -0
  53. package/dist/esm/models/SemanticFormat.d.ts +81 -0
  54. package/dist/esm/models/SemanticFormat.js +37 -0
  55. package/dist/esm/models/SemanticMeeting.d.ts +255 -0
  56. package/dist/esm/models/SemanticMeeting.js +37 -0
  57. package/dist/esm/models/SemanticMeetingChange.d.ts +89 -0
  58. package/dist/esm/models/SemanticMeetingChange.js +37 -0
  59. package/dist/esm/models/SemanticServerInfo.d.ts +156 -0
  60. package/dist/esm/models/SemanticServerInfo.js +45 -0
  61. package/dist/esm/models/SemanticServerInfoAggregatorModeEnabled.d.ts +21 -0
  62. package/dist/esm/models/SemanticServerInfoAggregatorModeEnabled.js +43 -0
  63. package/dist/esm/models/SemanticServiceBody.d.ts +87 -0
  64. package/dist/esm/models/SemanticServiceBody.js +37 -0
  65. package/dist/esm/models/ServerInfo.d.ts +156 -0
  66. package/dist/esm/models/ServerInfo.js +45 -0
  67. package/dist/esm/models/ServerInfoAggregatorModeEnabled.d.ts +21 -0
  68. package/dist/esm/models/ServerInfoAggregatorModeEnabled.js +43 -0
  69. package/dist/esm/models/ServiceBody.d.ts +87 -0
  70. package/dist/esm/models/ServiceBody.js +37 -0
  71. package/dist/esm/models/index.d.ts +12 -0
  72. package/dist/esm/models/index.js +14 -0
  73. package/dist/esm/runtime.d.ts +184 -0
  74. package/dist/esm/runtime.js +349 -0
  75. package/dist/index.d.ts +3 -0
  76. package/dist/index.js +21 -0
  77. package/dist/models/Format.d.ts +81 -0
  78. package/dist/models/Format.js +44 -0
  79. package/dist/models/GetCoverageArea200Response.d.ts +50 -0
  80. package/dist/models/GetCoverageArea200Response.js +54 -0
  81. package/dist/models/GetFieldKeys200ResponseInner.d.ts +38 -0
  82. package/dist/models/GetFieldKeys200ResponseInner.js +50 -0
  83. package/dist/models/GetFieldValues200ResponseInner.d.ts +38 -0
  84. package/dist/models/GetFieldValues200ResponseInner.js +50 -0
  85. package/dist/models/GetSearchResults200Response.d.ts +24 -0
  86. package/dist/models/GetSearchResults200Response.js +74 -0
  87. package/dist/models/GetSearchResults200ResponseOneOf.d.ts +40 -0
  88. package/dist/models/GetSearchResults200ResponseOneOf.js +52 -0
  89. package/dist/models/Meeting.d.ts +255 -0
  90. package/dist/models/Meeting.js +44 -0
  91. package/dist/models/MeetingChange.d.ts +89 -0
  92. package/dist/models/MeetingChange.js +44 -0
  93. package/dist/models/ModelError.d.ts +33 -0
  94. package/dist/models/ModelError.js +44 -0
  95. package/dist/models/SemanticError.d.ts +33 -0
  96. package/dist/models/SemanticError.js +44 -0
  97. package/dist/models/SemanticFormat.d.ts +81 -0
  98. package/dist/models/SemanticFormat.js +44 -0
  99. package/dist/models/SemanticMeeting.d.ts +255 -0
  100. package/dist/models/SemanticMeeting.js +44 -0
  101. package/dist/models/SemanticMeetingChange.d.ts +89 -0
  102. package/dist/models/SemanticMeetingChange.js +44 -0
  103. package/dist/models/SemanticServerInfo.d.ts +156 -0
  104. package/dist/models/SemanticServerInfo.js +53 -0
  105. package/dist/models/SemanticServerInfoAggregatorModeEnabled.d.ts +21 -0
  106. package/dist/models/SemanticServerInfoAggregatorModeEnabled.js +49 -0
  107. package/dist/models/SemanticServiceBody.d.ts +87 -0
  108. package/dist/models/SemanticServiceBody.js +44 -0
  109. package/dist/models/ServerInfo.d.ts +156 -0
  110. package/dist/models/ServerInfo.js +53 -0
  111. package/dist/models/ServerInfoAggregatorModeEnabled.d.ts +21 -0
  112. package/dist/models/ServerInfoAggregatorModeEnabled.js +49 -0
  113. package/dist/models/ServiceBody.d.ts +87 -0
  114. package/dist/models/ServiceBody.js +44 -0
  115. package/dist/models/index.d.ts +12 -0
  116. package/dist/models/index.js +30 -0
  117. package/dist/runtime.d.ts +184 -0
  118. package/dist/runtime.js +365 -0
  119. package/docs/FieldsApi.md +139 -0
  120. package/docs/Format.md +50 -0
  121. package/docs/FormatsApi.md +83 -0
  122. package/docs/GetCoverageArea200Response.md +40 -0
  123. package/docs/GetFieldKeys200ResponseInner.md +36 -0
  124. package/docs/GetFieldValues200ResponseInner.md +36 -0
  125. package/docs/GetSearchResults200Response.md +36 -0
  126. package/docs/GetSearchResults200ResponseOneOf.md +36 -0
  127. package/docs/Meeting.md +109 -0
  128. package/docs/MeetingChange.md +52 -0
  129. package/docs/MeetingsApi.md +261 -0
  130. package/docs/ModelError.md +34 -0
  131. package/docs/SemanticError.md +34 -0
  132. package/docs/SemanticFormat.md +50 -0
  133. package/docs/SemanticMeeting.md +109 -0
  134. package/docs/SemanticMeetingChange.md +52 -0
  135. package/docs/SemanticServerInfo.md +72 -0
  136. package/docs/SemanticServerInfoAggregatorModeEnabled.md +33 -0
  137. package/docs/SemanticServiceBody.md +52 -0
  138. package/docs/ServerApi.md +124 -0
  139. package/docs/ServerInfo.md +72 -0
  140. package/docs/ServerInfoAggregatorModeEnabled.md +33 -0
  141. package/docs/ServiceBodiesApi.md +80 -0
  142. package/docs/ServiceBody.md +52 -0
  143. package/openapi.json +1 -0
  144. package/package.json +21 -0
  145. package/src/apis/FieldsApi.ts +145 -0
  146. package/src/apis/FormatsApi.ts +96 -0
  147. package/src/apis/MeetingsApi.ts +392 -0
  148. package/src/apis/ServerApi.ts +106 -0
  149. package/src/apis/ServiceBodiesApi.ts +99 -0
  150. package/src/apis/index.ts +7 -0
  151. package/src/index.ts +5 -0
  152. package/src/models/Format.ts +132 -0
  153. package/src/models/GetCoverageArea200Response.ts +89 -0
  154. package/src/models/GetFieldKeys200ResponseInner.ts +73 -0
  155. package/src/models/GetFieldValues200ResponseInner.ts +73 -0
  156. package/src/models/GetSearchResults200Response.ts +99 -0
  157. package/src/models/GetSearchResults200ResponseOneOf.ts +88 -0
  158. package/src/models/Meeting.ts +364 -0
  159. package/src/models/MeetingChange.ts +140 -0
  160. package/src/models/ModelError.ts +68 -0
  161. package/src/models/SemanticError.ts +68 -0
  162. package/src/models/SemanticFormat.ts +132 -0
  163. package/src/models/SemanticMeeting.ts +364 -0
  164. package/src/models/SemanticMeetingChange.ts +140 -0
  165. package/src/models/SemanticServerInfo.ts +239 -0
  166. package/src/models/SemanticServerInfoAggregatorModeEnabled.ts +55 -0
  167. package/src/models/SemanticServiceBody.ts +140 -0
  168. package/src/models/ServerInfo.ts +239 -0
  169. package/src/models/ServerInfoAggregatorModeEnabled.ts +55 -0
  170. package/src/models/ServiceBody.ts +140 -0
  171. package/src/models/index.ts +14 -0
  172. package/src/runtime.ts +449 -0
  173. package/tsconfig.esm.json +7 -0
  174. package/tsconfig.json +16 -0
@@ -0,0 +1,81 @@
1
+ /**
2
+ * BMLT Semantic API
3
+ * OpenAPI description of the Basic Meeting List Toolbox (BMLT) Semantic Interface for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **PHP array syntax** — repeatable array parameters use trailing `[]` in the name (`weekdays[]=2&weekdays[]=3`). The parameter names in this spec preserve the brackets so generated clients emit them. - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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 Format
16
+ */
17
+ export interface Format {
18
+ [key: string]: any | any;
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof Format
23
+ */
24
+ keyString?: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof Format
29
+ */
30
+ nameString?: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof Format
35
+ */
36
+ descriptionString?: string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof Format
41
+ */
42
+ lang?: string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof Format
47
+ */
48
+ id?: string;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof Format
53
+ */
54
+ worldId?: string;
55
+ /**
56
+ * Aggregator mode only.
57
+ * @type {string}
58
+ * @memberof Format
59
+ */
60
+ rootServerId?: string;
61
+ /**
62
+ * Aggregator mode only.
63
+ * @type {string}
64
+ * @memberof Format
65
+ */
66
+ rootServerUri?: string;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof Format
71
+ */
72
+ formatTypeEnum?: string;
73
+ }
74
+ /**
75
+ * Check if a given object implements the Format interface.
76
+ */
77
+ export declare function instanceOfFormat(value: object): value is Format;
78
+ export declare function FormatFromJSON(json: any): Format;
79
+ export declare function FormatFromJSONTyped(json: any, ignoreDiscriminator: boolean): Format;
80
+ export declare function FormatToJSON(json: any): Format;
81
+ export declare function FormatToJSONTyped(value?: Format | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,37 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * BMLT Semantic API
5
+ * OpenAPI description of the Basic Meeting List Toolbox (BMLT) Semantic Interface for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **PHP array syntax** — repeatable array parameters use trailing `[]` in the name (`weekdays[]=2&weekdays[]=3`). The parameter names in this spec preserve the brackets so generated clients emit them. - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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
+ * Check if a given object implements the Format interface.
16
+ */
17
+ export function instanceOfFormat(value) {
18
+ return true;
19
+ }
20
+ export function FormatFromJSON(json) {
21
+ return FormatFromJSONTyped(json, false);
22
+ }
23
+ export function FormatFromJSONTyped(json, ignoreDiscriminator) {
24
+ if (json == null) {
25
+ return json;
26
+ }
27
+ return Object.assign(Object.assign({}, json), { 'keyString': json['key_string'] == null ? undefined : json['key_string'], 'nameString': json['name_string'] == null ? undefined : json['name_string'], 'descriptionString': json['description_string'] == null ? undefined : json['description_string'], 'lang': json['lang'] == null ? undefined : json['lang'], 'id': json['id'] == null ? undefined : json['id'], 'worldId': json['world_id'] == null ? undefined : json['world_id'], 'rootServerId': json['root_server_id'] == null ? undefined : json['root_server_id'], 'rootServerUri': json['root_server_uri'] == null ? undefined : json['root_server_uri'], 'formatTypeEnum': json['format_type_enum'] == null ? undefined : json['format_type_enum'] });
28
+ }
29
+ export function FormatToJSON(json) {
30
+ return FormatToJSONTyped(json, false);
31
+ }
32
+ export function FormatToJSONTyped(value, ignoreDiscriminator = false) {
33
+ if (value == null) {
34
+ return value;
35
+ }
36
+ return Object.assign(Object.assign({}, value), { 'key_string': value['keyString'], 'name_string': value['nameString'], 'description_string': value['descriptionString'], 'lang': value['lang'], 'id': value['id'], 'world_id': value['worldId'], 'root_server_id': value['rootServerId'], 'root_server_uri': value['rootServerUri'], 'format_type_enum': value['formatTypeEnum'] });
37
+ }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * BMLT Semantic API
3
+ * OpenAPI description of the BMLT Semantic Interface (the read-only meeting-query API) for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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 GetCoverageArea200Response
16
+ */
17
+ export interface GetCoverageArea200Response {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof GetCoverageArea200Response
22
+ */
23
+ nwCornerLongitude?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof GetCoverageArea200Response
28
+ */
29
+ nwCornerLatitude?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof GetCoverageArea200Response
34
+ */
35
+ seCornerLongitude?: number;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof GetCoverageArea200Response
40
+ */
41
+ seCornerLatitude?: number;
42
+ }
43
+ /**
44
+ * Check if a given object implements the GetCoverageArea200Response interface.
45
+ */
46
+ export declare function instanceOfGetCoverageArea200Response(value: object): value is GetCoverageArea200Response;
47
+ export declare function GetCoverageArea200ResponseFromJSON(json: any): GetCoverageArea200Response;
48
+ export declare function GetCoverageArea200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCoverageArea200Response;
49
+ export declare function GetCoverageArea200ResponseToJSON(json: any): GetCoverageArea200Response;
50
+ export declare function GetCoverageArea200ResponseToJSONTyped(value?: GetCoverageArea200Response | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,47 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * BMLT Semantic API
5
+ * OpenAPI description of the BMLT Semantic Interface (the read-only meeting-query API) for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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
+ * Check if a given object implements the GetCoverageArea200Response interface.
16
+ */
17
+ export function instanceOfGetCoverageArea200Response(value) {
18
+ return true;
19
+ }
20
+ export function GetCoverageArea200ResponseFromJSON(json) {
21
+ return GetCoverageArea200ResponseFromJSONTyped(json, false);
22
+ }
23
+ export function GetCoverageArea200ResponseFromJSONTyped(json, ignoreDiscriminator) {
24
+ if (json == null) {
25
+ return json;
26
+ }
27
+ return {
28
+ 'nwCornerLongitude': json['nw_corner_longitude'] == null ? undefined : json['nw_corner_longitude'],
29
+ 'nwCornerLatitude': json['nw_corner_latitude'] == null ? undefined : json['nw_corner_latitude'],
30
+ 'seCornerLongitude': json['se_corner_longitude'] == null ? undefined : json['se_corner_longitude'],
31
+ 'seCornerLatitude': json['se_corner_latitude'] == null ? undefined : json['se_corner_latitude'],
32
+ };
33
+ }
34
+ export function GetCoverageArea200ResponseToJSON(json) {
35
+ return GetCoverageArea200ResponseToJSONTyped(json, false);
36
+ }
37
+ export function GetCoverageArea200ResponseToJSONTyped(value, ignoreDiscriminator = false) {
38
+ if (value == null) {
39
+ return value;
40
+ }
41
+ return {
42
+ 'nw_corner_longitude': value['nwCornerLongitude'],
43
+ 'nw_corner_latitude': value['nwCornerLatitude'],
44
+ 'se_corner_longitude': value['seCornerLongitude'],
45
+ 'se_corner_latitude': value['seCornerLatitude'],
46
+ };
47
+ }
@@ -0,0 +1,38 @@
1
+ /**
2
+ * BMLT Semantic API
3
+ * OpenAPI description of the BMLT Semantic Interface (the read-only meeting-query API) for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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 GetFieldKeys200ResponseInner
16
+ */
17
+ export interface GetFieldKeys200ResponseInner {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof GetFieldKeys200ResponseInner
22
+ */
23
+ key?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof GetFieldKeys200ResponseInner
28
+ */
29
+ description?: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the GetFieldKeys200ResponseInner interface.
33
+ */
34
+ export declare function instanceOfGetFieldKeys200ResponseInner(value: object): value is GetFieldKeys200ResponseInner;
35
+ export declare function GetFieldKeys200ResponseInnerFromJSON(json: any): GetFieldKeys200ResponseInner;
36
+ export declare function GetFieldKeys200ResponseInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFieldKeys200ResponseInner;
37
+ export declare function GetFieldKeys200ResponseInnerToJSON(json: any): GetFieldKeys200ResponseInner;
38
+ export declare function GetFieldKeys200ResponseInnerToJSONTyped(value?: GetFieldKeys200ResponseInner | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,43 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * BMLT Semantic API
5
+ * OpenAPI description of the BMLT Semantic Interface (the read-only meeting-query API) for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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
+ * Check if a given object implements the GetFieldKeys200ResponseInner interface.
16
+ */
17
+ export function instanceOfGetFieldKeys200ResponseInner(value) {
18
+ return true;
19
+ }
20
+ export function GetFieldKeys200ResponseInnerFromJSON(json) {
21
+ return GetFieldKeys200ResponseInnerFromJSONTyped(json, false);
22
+ }
23
+ export function GetFieldKeys200ResponseInnerFromJSONTyped(json, ignoreDiscriminator) {
24
+ if (json == null) {
25
+ return json;
26
+ }
27
+ return {
28
+ 'key': json['key'] == null ? undefined : json['key'],
29
+ 'description': json['description'] == null ? undefined : json['description'],
30
+ };
31
+ }
32
+ export function GetFieldKeys200ResponseInnerToJSON(json) {
33
+ return GetFieldKeys200ResponseInnerToJSONTyped(json, false);
34
+ }
35
+ export function GetFieldKeys200ResponseInnerToJSONTyped(value, ignoreDiscriminator = false) {
36
+ if (value == null) {
37
+ return value;
38
+ }
39
+ return {
40
+ 'key': value['key'],
41
+ 'description': value['description'],
42
+ };
43
+ }
@@ -0,0 +1,38 @@
1
+ /**
2
+ * BMLT Semantic API
3
+ * OpenAPI description of the BMLT Semantic Interface (the read-only meeting-query API) for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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 GetFieldValues200ResponseInner
16
+ */
17
+ export interface GetFieldValues200ResponseInner {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof GetFieldValues200ResponseInner
22
+ */
23
+ ids?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof GetFieldValues200ResponseInner
28
+ */
29
+ meetingKeyValue?: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the GetFieldValues200ResponseInner interface.
33
+ */
34
+ export declare function instanceOfGetFieldValues200ResponseInner(value: object): value is GetFieldValues200ResponseInner;
35
+ export declare function GetFieldValues200ResponseInnerFromJSON(json: any): GetFieldValues200ResponseInner;
36
+ export declare function GetFieldValues200ResponseInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFieldValues200ResponseInner;
37
+ export declare function GetFieldValues200ResponseInnerToJSON(json: any): GetFieldValues200ResponseInner;
38
+ export declare function GetFieldValues200ResponseInnerToJSONTyped(value?: GetFieldValues200ResponseInner | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,43 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * BMLT Semantic API
5
+ * OpenAPI description of the BMLT Semantic Interface (the read-only meeting-query API) for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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
+ * Check if a given object implements the GetFieldValues200ResponseInner interface.
16
+ */
17
+ export function instanceOfGetFieldValues200ResponseInner(value) {
18
+ return true;
19
+ }
20
+ export function GetFieldValues200ResponseInnerFromJSON(json) {
21
+ return GetFieldValues200ResponseInnerFromJSONTyped(json, false);
22
+ }
23
+ export function GetFieldValues200ResponseInnerFromJSONTyped(json, ignoreDiscriminator) {
24
+ if (json == null) {
25
+ return json;
26
+ }
27
+ return {
28
+ 'ids': json['ids'] == null ? undefined : json['ids'],
29
+ 'meetingKeyValue': json['meeting_key_value'] == null ? undefined : json['meeting_key_value'],
30
+ };
31
+ }
32
+ export function GetFieldValues200ResponseInnerToJSON(json) {
33
+ return GetFieldValues200ResponseInnerToJSONTyped(json, false);
34
+ }
35
+ export function GetFieldValues200ResponseInnerToJSONTyped(value, ignoreDiscriminator = false) {
36
+ if (value == null) {
37
+ return value;
38
+ }
39
+ return {
40
+ 'ids': value['ids'],
41
+ 'meeting_key_value': value['meetingKeyValue'],
42
+ };
43
+ }
@@ -0,0 +1,24 @@
1
+ /**
2
+ * BMLT Semantic API
3
+ * OpenAPI description of the BMLT Semantic Interface (the read-only meeting-query API) for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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 { SemanticFormat } from './SemanticFormat';
13
+ import type { SemanticMeeting } from './SemanticMeeting';
14
+ import type { GetSearchResults200ResponseOneOf } from './GetSearchResults200ResponseOneOf';
15
+ /**
16
+ * @type GetSearchResults200Response
17
+ *
18
+ * @export
19
+ */
20
+ export type GetSearchResults200Response = Array<SemanticFormat> | Array<SemanticMeeting> | GetSearchResults200ResponseOneOf;
21
+ export declare function GetSearchResults200ResponseFromJSON(json: any): GetSearchResults200Response;
22
+ export declare function GetSearchResults200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSearchResults200Response;
23
+ export declare function GetSearchResults200ResponseToJSON(json: any): any;
24
+ export declare function GetSearchResults200ResponseToJSONTyped(value?: GetSearchResults200Response | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,68 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * BMLT Semantic API
5
+ * OpenAPI description of the BMLT Semantic Interface (the read-only meeting-query API) for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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
+ import { instanceOfSemanticFormat, SemanticFormatFromJSONTyped, SemanticFormatToJSON, } from './SemanticFormat';
15
+ import { instanceOfSemanticMeeting, SemanticMeetingFromJSONTyped, SemanticMeetingToJSON, } from './SemanticMeeting';
16
+ import { instanceOfGetSearchResults200ResponseOneOf, GetSearchResults200ResponseOneOfFromJSONTyped, GetSearchResults200ResponseOneOfToJSON, } from './GetSearchResults200ResponseOneOf';
17
+ export function GetSearchResults200ResponseFromJSON(json) {
18
+ return GetSearchResults200ResponseFromJSONTyped(json, false);
19
+ }
20
+ export function GetSearchResults200ResponseFromJSONTyped(json, ignoreDiscriminator) {
21
+ if (json == null) {
22
+ return json;
23
+ }
24
+ if (typeof json !== 'object') {
25
+ return json;
26
+ }
27
+ if (instanceOfGetSearchResults200ResponseOneOf(json)) {
28
+ return GetSearchResults200ResponseOneOfFromJSONTyped(json, true);
29
+ }
30
+ if (Array.isArray(json)) {
31
+ if (json.every(item => typeof item === 'object')) {
32
+ if (json.every(item => instanceOfSemanticFormat(item))) {
33
+ return json.map(value => SemanticFormatFromJSONTyped(value, true));
34
+ }
35
+ if (json.every(item => instanceOfSemanticMeeting(item))) {
36
+ return json.map(value => SemanticMeetingFromJSONTyped(value, true));
37
+ }
38
+ }
39
+ return json;
40
+ }
41
+ return {};
42
+ }
43
+ export function GetSearchResults200ResponseToJSON(json) {
44
+ return GetSearchResults200ResponseToJSONTyped(json, false);
45
+ }
46
+ export function GetSearchResults200ResponseToJSONTyped(value, ignoreDiscriminator = false) {
47
+ if (value == null) {
48
+ return value;
49
+ }
50
+ if (typeof value !== 'object') {
51
+ return value;
52
+ }
53
+ if (instanceOfGetSearchResults200ResponseOneOf(value)) {
54
+ return GetSearchResults200ResponseOneOfToJSON(value);
55
+ }
56
+ if (Array.isArray(value)) {
57
+ if (value.every(item => typeof item === 'object')) {
58
+ if (value.every(item => instanceOfSemanticFormat(item))) {
59
+ return value.map(value => SemanticFormatToJSON(value));
60
+ }
61
+ if (value.every(item => instanceOfSemanticMeeting(item))) {
62
+ return value.map(value => SemanticMeetingToJSON(value));
63
+ }
64
+ }
65
+ return value;
66
+ }
67
+ return {};
68
+ }
@@ -0,0 +1,40 @@
1
+ /**
2
+ * BMLT Semantic API
3
+ * OpenAPI description of the BMLT Semantic Interface (the read-only meeting-query API) for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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 { SemanticFormat } from './SemanticFormat';
13
+ import type { SemanticMeeting } from './SemanticMeeting';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface GetSearchResults200ResponseOneOf
18
+ */
19
+ export interface GetSearchResults200ResponseOneOf {
20
+ /**
21
+ *
22
+ * @type {Array<SemanticMeeting>}
23
+ * @memberof GetSearchResults200ResponseOneOf
24
+ */
25
+ meetings?: Array<SemanticMeeting>;
26
+ /**
27
+ *
28
+ * @type {Array<SemanticFormat>}
29
+ * @memberof GetSearchResults200ResponseOneOf
30
+ */
31
+ formats?: Array<SemanticFormat>;
32
+ }
33
+ /**
34
+ * Check if a given object implements the GetSearchResults200ResponseOneOf interface.
35
+ */
36
+ export declare function instanceOfGetSearchResults200ResponseOneOf(value: object): value is GetSearchResults200ResponseOneOf;
37
+ export declare function GetSearchResults200ResponseOneOfFromJSON(json: any): GetSearchResults200ResponseOneOf;
38
+ export declare function GetSearchResults200ResponseOneOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSearchResults200ResponseOneOf;
39
+ export declare function GetSearchResults200ResponseOneOfToJSON(json: any): GetSearchResults200ResponseOneOf;
40
+ export declare function GetSearchResults200ResponseOneOfToJSONTyped(value?: GetSearchResults200ResponseOneOf | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,45 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * BMLT Semantic API
5
+ * OpenAPI description of the BMLT Semantic Interface (the read-only meeting-query API) for the JSON data format. The semantic interface dispatches all operations from a single endpoint (`/client_interface/json/`) using a `switcher` query parameter. To keep each operation discoverable, this spec models each `switcher` value as a distinct path key with the query string baked in. Tools such as Swagger UI, Redoc, and openapi-generator handle these path keys correctly even though the OpenAPI spec technically expects unique URL paths. ### Things that do not map cleanly onto OpenAPI - **Sign-as-operator** — many filters (`formats`, `services`, `weekdays`, `venue_types`, `meeting_ids`, `root_server_ids`, `format_ids`) use *positive* values to include and *negative* values to exclude. JSON Schema cannot enforce that semantics; it is documented per parameter. - **Cross-parameter constraints** — in aggregator mode `GetSearchResults` requires at least one filter parameter. Invalid combinations typically return an empty array `[]` instead of an HTTP error. - **Empty-array errors** — many endpoints return `[]` for invalid input rather than a 4xx response body.
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
+ import { SemanticFormatFromJSON, SemanticFormatToJSON, } from './SemanticFormat';
15
+ import { SemanticMeetingFromJSON, SemanticMeetingToJSON, } from './SemanticMeeting';
16
+ /**
17
+ * Check if a given object implements the GetSearchResults200ResponseOneOf interface.
18
+ */
19
+ export function instanceOfGetSearchResults200ResponseOneOf(value) {
20
+ return true;
21
+ }
22
+ export function GetSearchResults200ResponseOneOfFromJSON(json) {
23
+ return GetSearchResults200ResponseOneOfFromJSONTyped(json, false);
24
+ }
25
+ export function GetSearchResults200ResponseOneOfFromJSONTyped(json, ignoreDiscriminator) {
26
+ if (json == null) {
27
+ return json;
28
+ }
29
+ return {
30
+ 'meetings': json['meetings'] == null ? undefined : (json['meetings'].map(SemanticMeetingFromJSON)),
31
+ 'formats': json['formats'] == null ? undefined : (json['formats'].map(SemanticFormatFromJSON)),
32
+ };
33
+ }
34
+ export function GetSearchResults200ResponseOneOfToJSON(json) {
35
+ return GetSearchResults200ResponseOneOfToJSONTyped(json, false);
36
+ }
37
+ export function GetSearchResults200ResponseOneOfToJSONTyped(value, ignoreDiscriminator = false) {
38
+ if (value == null) {
39
+ return value;
40
+ }
41
+ return {
42
+ 'meetings': value['meetings'] == null ? undefined : (value['meetings'].map(SemanticMeetingToJSON)),
43
+ 'formats': value['formats'] == null ? undefined : (value['formats'].map(SemanticFormatToJSON)),
44
+ };
45
+ }