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,50 @@
1
+
2
+ # SemanticFormat
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `keyString` | string
10
+ `nameString` | string
11
+ `descriptionString` | string
12
+ `lang` | string
13
+ `id` | string
14
+ `worldId` | string
15
+ `rootServerId` | string
16
+ `rootServerUri` | string
17
+ `formatTypeEnum` | string
18
+
19
+ ## Example
20
+
21
+ ```typescript
22
+ import type { SemanticFormat } from 'bmlt-server-semantic-client'
23
+
24
+ // TODO: Update the object below with actual values
25
+ const example = {
26
+ "keyString": null,
27
+ "nameString": null,
28
+ "descriptionString": null,
29
+ "lang": null,
30
+ "id": null,
31
+ "worldId": null,
32
+ "rootServerId": null,
33
+ "rootServerUri": null,
34
+ "formatTypeEnum": null,
35
+ } satisfies SemanticFormat
36
+
37
+ console.log(example)
38
+
39
+ // Convert the instance to a JSON string
40
+ const exampleJSON: string = JSON.stringify(example)
41
+ console.log(exampleJSON)
42
+
43
+ // Parse the JSON string back to an object
44
+ const exampleParsed = JSON.parse(exampleJSON) as SemanticFormat
45
+ console.log(exampleParsed)
46
+ ```
47
+
48
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
49
+
50
+
@@ -0,0 +1,109 @@
1
+
2
+ # SemanticMeeting
3
+
4
+ A meeting record. The actual field set depends on the server\'s enabled fields and the `data_field_key` parameter.
5
+
6
+ ## Properties
7
+
8
+ Name | Type
9
+ ------------ | -------------
10
+ `idBigint` | string
11
+ `worldidMixed` | string
12
+ `sharedGroupIdBigint` | string
13
+ `serviceBodyBigint` | string
14
+ `weekdayTinyint` | string
15
+ `venueType` | string
16
+ `startTime` | string
17
+ `durationTime` | string
18
+ `timeZone` | string
19
+ `formats` | string
20
+ `langEnum` | string
21
+ `longitude` | string
22
+ `latitude` | string
23
+ `distanceInKm` | string
24
+ `distanceInMiles` | string
25
+ `meetingName` | string
26
+ `locationText` | string
27
+ `locationInfo` | string
28
+ `locationStreet` | string
29
+ `locationCitySubsection` | string
30
+ `locationNeighborhood` | string
31
+ `locationMunicipality` | string
32
+ `locationSubProvince` | string
33
+ `locationProvince` | string
34
+ `locationPostalCode1` | string
35
+ `locationNation` | string
36
+ `comments` | string
37
+ `trainLines` | string
38
+ `busLines` | string
39
+ `phoneMeetingNumber` | string
40
+ `virtualMeetingLink` | string
41
+ `virtualMeetingAdditionalInfo` | string
42
+ `contactName1` | string
43
+ `contactPhone1` | string
44
+ `contactEmail1` | string
45
+ `rootServerId` | string
46
+ `rootServerUri` | string
47
+ `formatSharedIdList` | string
48
+
49
+ ## Example
50
+
51
+ ```typescript
52
+ import type { SemanticMeeting } from 'bmlt-server-semantic-client'
53
+
54
+ // TODO: Update the object below with actual values
55
+ const example = {
56
+ "idBigint": null,
57
+ "worldidMixed": null,
58
+ "sharedGroupIdBigint": null,
59
+ "serviceBodyBigint": null,
60
+ "weekdayTinyint": null,
61
+ "venueType": null,
62
+ "startTime": null,
63
+ "durationTime": null,
64
+ "timeZone": null,
65
+ "formats": null,
66
+ "langEnum": null,
67
+ "longitude": null,
68
+ "latitude": null,
69
+ "distanceInKm": null,
70
+ "distanceInMiles": null,
71
+ "meetingName": null,
72
+ "locationText": null,
73
+ "locationInfo": null,
74
+ "locationStreet": null,
75
+ "locationCitySubsection": null,
76
+ "locationNeighborhood": null,
77
+ "locationMunicipality": null,
78
+ "locationSubProvince": null,
79
+ "locationProvince": null,
80
+ "locationPostalCode1": null,
81
+ "locationNation": null,
82
+ "comments": null,
83
+ "trainLines": null,
84
+ "busLines": null,
85
+ "phoneMeetingNumber": null,
86
+ "virtualMeetingLink": null,
87
+ "virtualMeetingAdditionalInfo": null,
88
+ "contactName1": null,
89
+ "contactPhone1": null,
90
+ "contactEmail1": null,
91
+ "rootServerId": null,
92
+ "rootServerUri": null,
93
+ "formatSharedIdList": null,
94
+ } satisfies SemanticMeeting
95
+
96
+ console.log(example)
97
+
98
+ // Convert the instance to a JSON string
99
+ const exampleJSON: string = JSON.stringify(example)
100
+ console.log(exampleJSON)
101
+
102
+ // Parse the JSON string back to an object
103
+ const exampleParsed = JSON.parse(exampleJSON) as SemanticMeeting
104
+ console.log(exampleParsed)
105
+ ```
106
+
107
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
108
+
109
+
@@ -0,0 +1,52 @@
1
+
2
+ # SemanticMeetingChange
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `dateInt` | string
10
+ `dateString` | string
11
+ `changeType` | string
12
+ `meetingId` | string
13
+ `meetingName` | string
14
+ `userId` | string
15
+ `userName` | string
16
+ `serviceBodyId` | string
17
+ `serviceBodyName` | string
18
+ `details` | { [key: string]: any; }
19
+
20
+ ## Example
21
+
22
+ ```typescript
23
+ import type { SemanticMeetingChange } from 'bmlt-server-semantic-client'
24
+
25
+ // TODO: Update the object below with actual values
26
+ const example = {
27
+ "dateInt": null,
28
+ "dateString": null,
29
+ "changeType": null,
30
+ "meetingId": null,
31
+ "meetingName": null,
32
+ "userId": null,
33
+ "userName": null,
34
+ "serviceBodyId": null,
35
+ "serviceBodyName": null,
36
+ "details": null,
37
+ } satisfies SemanticMeetingChange
38
+
39
+ console.log(example)
40
+
41
+ // Convert the instance to a JSON string
42
+ const exampleJSON: string = JSON.stringify(example)
43
+ console.log(exampleJSON)
44
+
45
+ // Parse the JSON string back to an object
46
+ const exampleParsed = JSON.parse(exampleJSON) as SemanticMeetingChange
47
+ console.log(exampleParsed)
48
+ ```
49
+
50
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
51
+
52
+
@@ -0,0 +1,72 @@
1
+
2
+ # SemanticServerInfo
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `version` | string
10
+ `versionInt` | string
11
+ `langs` | string
12
+ `nativeLang` | string
13
+ `centerLongitude` | string
14
+ `centerLatitude` | string
15
+ `centerZoom` | string
16
+ `defaultDuration` | string
17
+ `regionBias` | string
18
+ `charSet` | string
19
+ `distanceUnits` | string
20
+ `semanticAdmin` | string
21
+ `emailEnabled` | string
22
+ `emailIncludesServiceBodies` | string
23
+ `changesPerMeeting` | string
24
+ `meetingStatesAndProvinces` | string
25
+ `meetingCountiesAndSubProvinces` | string
26
+ `availableKeys` | string
27
+ `googleApiKey` | string
28
+ `aggregatorModeEnabled` | [SemanticServerInfoAggregatorModeEnabled](SemanticServerInfoAggregatorModeEnabled.md)
29
+
30
+ ## Example
31
+
32
+ ```typescript
33
+ import type { SemanticServerInfo } from 'bmlt-server-semantic-client'
34
+
35
+ // TODO: Update the object below with actual values
36
+ const example = {
37
+ "version": null,
38
+ "versionInt": null,
39
+ "langs": null,
40
+ "nativeLang": null,
41
+ "centerLongitude": null,
42
+ "centerLatitude": null,
43
+ "centerZoom": null,
44
+ "defaultDuration": null,
45
+ "regionBias": null,
46
+ "charSet": null,
47
+ "distanceUnits": null,
48
+ "semanticAdmin": null,
49
+ "emailEnabled": null,
50
+ "emailIncludesServiceBodies": null,
51
+ "changesPerMeeting": null,
52
+ "meetingStatesAndProvinces": null,
53
+ "meetingCountiesAndSubProvinces": null,
54
+ "availableKeys": null,
55
+ "googleApiKey": null,
56
+ "aggregatorModeEnabled": null,
57
+ } satisfies SemanticServerInfo
58
+
59
+ console.log(example)
60
+
61
+ // Convert the instance to a JSON string
62
+ const exampleJSON: string = JSON.stringify(example)
63
+ console.log(exampleJSON)
64
+
65
+ // Parse the JSON string back to an object
66
+ const exampleParsed = JSON.parse(exampleJSON) as SemanticServerInfo
67
+ console.log(exampleParsed)
68
+ ```
69
+
70
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
71
+
72
+
@@ -0,0 +1,33 @@
1
+
2
+ # SemanticServerInfoAggregatorModeEnabled
3
+
4
+ `1` / `true` if this server is running in aggregator mode.
5
+
6
+ ## Properties
7
+
8
+ Name | Type
9
+ ------------ | -------------
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { SemanticServerInfoAggregatorModeEnabled } from 'bmlt-server-semantic-client'
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ } satisfies SemanticServerInfoAggregatorModeEnabled
19
+
20
+ console.log(example)
21
+
22
+ // Convert the instance to a JSON string
23
+ const exampleJSON: string = JSON.stringify(example)
24
+ console.log(exampleJSON)
25
+
26
+ // Parse the JSON string back to an object
27
+ const exampleParsed = JSON.parse(exampleJSON) as SemanticServerInfoAggregatorModeEnabled
28
+ console.log(exampleParsed)
29
+ ```
30
+
31
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
32
+
33
+
@@ -0,0 +1,52 @@
1
+
2
+ # SemanticServiceBody
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | string
10
+ `parentId` | string
11
+ `name` | string
12
+ `description` | string
13
+ `type` | string
14
+ `url` | string
15
+ `helpline` | string
16
+ `worldId` | string
17
+ `rootServerId` | string
18
+ `rootServerUri` | string
19
+
20
+ ## Example
21
+
22
+ ```typescript
23
+ import type { SemanticServiceBody } from 'bmlt-server-semantic-client'
24
+
25
+ // TODO: Update the object below with actual values
26
+ const example = {
27
+ "id": null,
28
+ "parentId": null,
29
+ "name": null,
30
+ "description": null,
31
+ "type": null,
32
+ "url": null,
33
+ "helpline": null,
34
+ "worldId": null,
35
+ "rootServerId": null,
36
+ "rootServerUri": null,
37
+ } satisfies SemanticServiceBody
38
+
39
+ console.log(example)
40
+
41
+ // Convert the instance to a JSON string
42
+ const exampleJSON: string = JSON.stringify(example)
43
+ console.log(exampleJSON)
44
+
45
+ // Parse the JSON string back to an object
46
+ const exampleParsed = JSON.parse(exampleJSON) as SemanticServiceBody
47
+ console.log(exampleParsed)
48
+ ```
49
+
50
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
51
+
52
+
@@ -0,0 +1,124 @@
1
+ # ServerApi
2
+
3
+ All URIs are relative to *http://localhost:8000/main_server*
4
+
5
+ | Method | HTTP request | Description |
6
+ |------------- | ------------- | -------------|
7
+ | [**getCoverageArea**](ServerApi.md#getcoveragearea) | **GET** /client_interface/json/?switcher=GetCoverageArea | Get the geographic coverage bounding box for this server |
8
+ | [**getSemanticServerInfo**](ServerApi.md#getsemanticserverinfo) | **GET** /client_interface/json/?switcher=GetServerInfo | Get server information |
9
+
10
+
11
+
12
+ ## getCoverageArea
13
+
14
+ > GetCoverageArea200Response getCoverageArea()
15
+
16
+ Get the geographic coverage bounding box for this server
17
+
18
+ ### Example
19
+
20
+ ```ts
21
+ import {
22
+ Configuration,
23
+ ServerApi,
24
+ } from 'bmlt-server-semantic-client';
25
+ import type { GetCoverageAreaRequest } from 'bmlt-server-semantic-client';
26
+
27
+ async function example() {
28
+ console.log("🚀 Testing bmlt-server-semantic-client SDK...");
29
+ const api = new ServerApi();
30
+
31
+ try {
32
+ const data = await api.getCoverageArea();
33
+ console.log(data);
34
+ } catch (error) {
35
+ console.error(error);
36
+ }
37
+ }
38
+
39
+ // Run the test
40
+ example().catch(console.error);
41
+ ```
42
+
43
+ ### Parameters
44
+
45
+ This endpoint does not need any parameter.
46
+
47
+ ### Return type
48
+
49
+ [**GetCoverageArea200Response**](GetCoverageArea200Response.md)
50
+
51
+ ### Authorization
52
+
53
+ No authorization required
54
+
55
+ ### HTTP request headers
56
+
57
+ - **Content-Type**: Not defined
58
+ - **Accept**: `application/json`
59
+
60
+
61
+ ### HTTP response details
62
+ | Status code | Description | Response headers |
63
+ |-------------|-------------|------------------|
64
+ | **200** | Bounding box for the area covered by this server\'s meetings | - |
65
+
66
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
67
+
68
+
69
+ ## getSemanticServerInfo
70
+
71
+ > Array<SemanticServerInfo> getSemanticServerInfo()
72
+
73
+ Get server information
74
+
75
+ ### Example
76
+
77
+ ```ts
78
+ import {
79
+ Configuration,
80
+ ServerApi,
81
+ } from 'bmlt-server-semantic-client';
82
+ import type { GetSemanticServerInfoRequest } from 'bmlt-server-semantic-client';
83
+
84
+ async function example() {
85
+ console.log("🚀 Testing bmlt-server-semantic-client SDK...");
86
+ const api = new ServerApi();
87
+
88
+ try {
89
+ const data = await api.getSemanticServerInfo();
90
+ console.log(data);
91
+ } catch (error) {
92
+ console.error(error);
93
+ }
94
+ }
95
+
96
+ // Run the test
97
+ example().catch(console.error);
98
+ ```
99
+
100
+ ### Parameters
101
+
102
+ This endpoint does not need any parameter.
103
+
104
+ ### Return type
105
+
106
+ [**Array<SemanticServerInfo>**](SemanticServerInfo.md)
107
+
108
+ ### Authorization
109
+
110
+ No authorization required
111
+
112
+ ### HTTP request headers
113
+
114
+ - **Content-Type**: Not defined
115
+ - **Accept**: `application/json`
116
+
117
+
118
+ ### HTTP response details
119
+ | Status code | Description | Response headers |
120
+ |-------------|-------------|------------------|
121
+ | **200** | Server metadata such as version, language, semantic admin URL, etc. | - |
122
+
123
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
124
+
@@ -0,0 +1,72 @@
1
+
2
+ # ServerInfo
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `version` | string
10
+ `versionInt` | string
11
+ `langs` | string
12
+ `nativeLang` | string
13
+ `centerLongitude` | string
14
+ `centerLatitude` | string
15
+ `centerZoom` | string
16
+ `defaultDuration` | string
17
+ `regionBias` | string
18
+ `charSet` | string
19
+ `distanceUnits` | string
20
+ `semanticAdmin` | string
21
+ `emailEnabled` | string
22
+ `emailIncludesServiceBodies` | string
23
+ `changesPerMeeting` | string
24
+ `meetingStatesAndProvinces` | string
25
+ `meetingCountiesAndSubProvinces` | string
26
+ `availableKeys` | string
27
+ `googleApiKey` | string
28
+ `aggregatorModeEnabled` | [ServerInfoAggregatorModeEnabled](ServerInfoAggregatorModeEnabled.md)
29
+
30
+ ## Example
31
+
32
+ ```typescript
33
+ import type { ServerInfo } from 'bmlt-server-semantic-client'
34
+
35
+ // TODO: Update the object below with actual values
36
+ const example = {
37
+ "version": null,
38
+ "versionInt": null,
39
+ "langs": null,
40
+ "nativeLang": null,
41
+ "centerLongitude": null,
42
+ "centerLatitude": null,
43
+ "centerZoom": null,
44
+ "defaultDuration": null,
45
+ "regionBias": null,
46
+ "charSet": null,
47
+ "distanceUnits": null,
48
+ "semanticAdmin": null,
49
+ "emailEnabled": null,
50
+ "emailIncludesServiceBodies": null,
51
+ "changesPerMeeting": null,
52
+ "meetingStatesAndProvinces": null,
53
+ "meetingCountiesAndSubProvinces": null,
54
+ "availableKeys": null,
55
+ "googleApiKey": null,
56
+ "aggregatorModeEnabled": null,
57
+ } satisfies ServerInfo
58
+
59
+ console.log(example)
60
+
61
+ // Convert the instance to a JSON string
62
+ const exampleJSON: string = JSON.stringify(example)
63
+ console.log(exampleJSON)
64
+
65
+ // Parse the JSON string back to an object
66
+ const exampleParsed = JSON.parse(exampleJSON) as ServerInfo
67
+ console.log(exampleParsed)
68
+ ```
69
+
70
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
71
+
72
+
@@ -0,0 +1,33 @@
1
+
2
+ # ServerInfoAggregatorModeEnabled
3
+
4
+ 1 / true if this server is running in aggregator mode.
5
+
6
+ ## Properties
7
+
8
+ Name | Type
9
+ ------------ | -------------
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { ServerInfoAggregatorModeEnabled } from 'bmlt-server-semantic-client'
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ } satisfies ServerInfoAggregatorModeEnabled
19
+
20
+ console.log(example)
21
+
22
+ // Convert the instance to a JSON string
23
+ const exampleJSON: string = JSON.stringify(example)
24
+ console.log(exampleJSON)
25
+
26
+ // Parse the JSON string back to an object
27
+ const exampleParsed = JSON.parse(exampleJSON) as ServerInfoAggregatorModeEnabled
28
+ console.log(exampleParsed)
29
+ ```
30
+
31
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
32
+
33
+
@@ -0,0 +1,80 @@
1
+ # ServiceBodiesApi
2
+
3
+ All URIs are relative to *http://localhost:8000/main_server*
4
+
5
+ | Method | HTTP request | Description |
6
+ |------------- | ------------- | -------------|
7
+ | [**getSemanticServiceBodies**](ServiceBodiesApi.md#getsemanticservicebodies) | **GET** /client_interface/json/?switcher=GetServiceBodies | Get service bodies |
8
+
9
+
10
+
11
+ ## getSemanticServiceBodies
12
+
13
+ > Array<SemanticServiceBody> getSemanticServiceBodies(services, recursive, parents)
14
+
15
+ Get service bodies
16
+
17
+ ### Example
18
+
19
+ ```ts
20
+ import {
21
+ Configuration,
22
+ ServiceBodiesApi,
23
+ } from 'bmlt-server-semantic-client';
24
+ import type { GetSemanticServiceBodiesRequest } from 'bmlt-server-semantic-client';
25
+
26
+ async function example() {
27
+ console.log("🚀 Testing bmlt-server-semantic-client SDK...");
28
+ const api = new ServiceBodiesApi();
29
+
30
+ const body = {
31
+ // string | Service body IDs as comma-separated values. Positive includes, negative excludes. (optional)
32
+ services: services_example,
33
+ // '0' | '1' | Set to `1` to include child service bodies when filtering by `services`. (optional)
34
+ recursive: recursive_example,
35
+ // '0' | '1' | Set to `1` to include parent service bodies in the result. (optional)
36
+ parents: parents_example,
37
+ } satisfies GetSemanticServiceBodiesRequest;
38
+
39
+ try {
40
+ const data = await api.getSemanticServiceBodies(body);
41
+ console.log(data);
42
+ } catch (error) {
43
+ console.error(error);
44
+ }
45
+ }
46
+
47
+ // Run the test
48
+ example().catch(console.error);
49
+ ```
50
+
51
+ ### Parameters
52
+
53
+
54
+ | Name | Type | Description | Notes |
55
+ |------------- | ------------- | ------------- | -------------|
56
+ | **services** | `string` | Service body IDs as comma-separated values. Positive includes, negative excludes. | [Optional] [Defaults to `undefined`] |
57
+ | **recursive** | `0`, `1` | Set to `1` to include child service bodies when filtering by `services`. | [Optional] [Defaults to `undefined`] [Enum: 0, 1] |
58
+ | **parents** | `0`, `1` | Set to `1` to include parent service bodies in the result. | [Optional] [Defaults to `undefined`] [Enum: 0, 1] |
59
+
60
+ ### Return type
61
+
62
+ [**Array<SemanticServiceBody>**](SemanticServiceBody.md)
63
+
64
+ ### Authorization
65
+
66
+ No authorization required
67
+
68
+ ### HTTP request headers
69
+
70
+ - **Content-Type**: Not defined
71
+ - **Accept**: `application/json`
72
+
73
+
74
+ ### HTTP response details
75
+ | Status code | Description | Response headers |
76
+ |-------------|-------------|------------------|
77
+ | **200** | List of service bodies | - |
78
+
79
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
80
+