bmlt-server-client 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release.yml +4 -4
- package/.openapi-generator/FILES +44 -0
- package/.openapi-generator/VERSION +1 -1
- package/Makefile +2 -1
- package/README.md +172 -28
- package/dist/apis/RootServerApi.d.ts +25 -1
- package/dist/apis/RootServerApi.js +960 -1531
- package/dist/esm/apis/RootServerApi.d.ts +448 -0
- package/dist/esm/apis/RootServerApi.js +1253 -0
- package/dist/esm/apis/index.d.ts +1 -0
- package/dist/esm/apis/index.js +3 -0
- package/dist/esm/index.d.ts +3 -0
- package/dist/esm/index.js +5 -0
- package/dist/esm/models/AuthenticationError.d.ts +32 -0
- package/dist/esm/models/AuthenticationError.js +43 -0
- package/dist/esm/models/AuthorizationError.d.ts +32 -0
- package/dist/esm/models/AuthorizationError.js +43 -0
- package/dist/esm/models/ConflictError.d.ts +32 -0
- package/dist/esm/models/ConflictError.js +43 -0
- package/dist/esm/models/ErrorTest.d.ts +44 -0
- package/dist/esm/models/ErrorTest.js +45 -0
- package/dist/esm/models/Format.d.ts +51 -0
- package/dist/esm/models/Format.js +56 -0
- package/dist/esm/models/FormatBase.d.ts +45 -0
- package/dist/esm/models/FormatBase.js +46 -0
- package/dist/esm/models/FormatCreate.d.ts +45 -0
- package/dist/esm/models/FormatCreate.js +48 -0
- package/dist/esm/models/FormatPartialUpdate.d.ts +45 -0
- package/dist/esm/models/FormatPartialUpdate.js +46 -0
- package/dist/esm/models/FormatTranslation.d.ts +50 -0
- package/dist/esm/models/FormatTranslation.js +55 -0
- package/dist/esm/models/FormatUpdate.d.ts +45 -0
- package/dist/esm/models/FormatUpdate.js +48 -0
- package/dist/esm/models/Meeting.d.ts +256 -0
- package/dist/esm/models/Meeting.js +145 -0
- package/dist/esm/models/MeetingBase.d.ts +250 -0
- package/dist/esm/models/MeetingBase.js +113 -0
- package/dist/esm/models/MeetingChangeResource.d.ts +50 -0
- package/dist/esm/models/MeetingChangeResource.js +47 -0
- package/dist/esm/models/MeetingCreate.d.ts +250 -0
- package/dist/esm/models/MeetingCreate.js +133 -0
- package/dist/esm/models/MeetingPartialUpdate.d.ts +250 -0
- package/dist/esm/models/MeetingPartialUpdate.js +113 -0
- package/dist/esm/models/MeetingUpdate.d.ts +250 -0
- package/dist/esm/models/MeetingUpdate.js +133 -0
- package/dist/esm/models/NotFoundError.d.ts +32 -0
- package/dist/esm/models/NotFoundError.js +43 -0
- package/dist/esm/models/RootServer.d.ts +69 -0
- package/dist/esm/models/RootServer.js +64 -0
- package/dist/esm/models/RootServerBase.d.ts +63 -0
- package/dist/esm/models/RootServerBase.js +52 -0
- package/dist/esm/models/RootServerBaseStatistics.d.ts +40 -0
- package/dist/esm/models/RootServerBaseStatistics.js +49 -0
- package/dist/esm/models/RootServerBaseStatisticsMeetings.d.ts +56 -0
- package/dist/esm/models/RootServerBaseStatisticsMeetings.js +59 -0
- package/dist/esm/models/RootServerBaseStatisticsServiceBodies.d.ts +50 -0
- package/dist/esm/models/RootServerBaseStatisticsServiceBodies.js +55 -0
- package/dist/esm/models/ServerError.d.ts +32 -0
- package/dist/esm/models/ServerError.js +43 -0
- package/dist/esm/models/ServiceBody.d.ts +92 -0
- package/dist/esm/models/ServiceBody.js +83 -0
- package/dist/esm/models/ServiceBodyBase.d.ts +86 -0
- package/dist/esm/models/ServiceBodyBase.js +59 -0
- package/dist/esm/models/ServiceBodyCreate.d.ts +86 -0
- package/dist/esm/models/ServiceBodyCreate.js +71 -0
- package/dist/esm/models/ServiceBodyPartialUpdate.d.ts +86 -0
- package/dist/esm/models/ServiceBodyPartialUpdate.js +59 -0
- package/dist/esm/models/ServiceBodyUpdate.d.ts +86 -0
- package/dist/esm/models/ServiceBodyUpdate.js +71 -0
- package/dist/esm/models/SettingsBase.d.ts +158 -0
- package/dist/esm/models/SettingsBase.js +83 -0
- package/dist/esm/models/SettingsObject.d.ts +158 -0
- package/dist/esm/models/SettingsObject.js +83 -0
- package/dist/esm/models/SettingsUpdate.d.ts +158 -0
- package/dist/esm/models/SettingsUpdate.js +83 -0
- package/dist/esm/models/Token.d.ts +50 -0
- package/dist/esm/models/Token.js +55 -0
- package/dist/esm/models/TokenCredentials.d.ts +38 -0
- package/dist/esm/models/TokenCredentials.js +47 -0
- package/dist/esm/models/User.d.ts +74 -0
- package/dist/esm/models/User.js +69 -0
- package/dist/esm/models/UserBase.d.ts +62 -0
- package/dist/esm/models/UserBase.js +51 -0
- package/dist/esm/models/UserCreate.d.ts +68 -0
- package/dist/esm/models/UserCreate.js +61 -0
- package/dist/esm/models/UserPartialUpdate.d.ts +68 -0
- package/dist/esm/models/UserPartialUpdate.js +53 -0
- package/dist/esm/models/UserUpdate.d.ts +68 -0
- package/dist/esm/models/UserUpdate.js +59 -0
- package/dist/esm/models/ValidationError.d.ts +40 -0
- package/dist/esm/models/ValidationError.js +47 -0
- package/dist/esm/models/index.d.ts +39 -0
- package/dist/esm/models/index.js +41 -0
- package/dist/esm/runtime.d.ts +184 -0
- package/dist/esm/runtime.js +334 -0
- package/dist/models/AuthenticationError.js +6 -8
- package/dist/models/AuthorizationError.js +6 -8
- package/dist/models/ConflictError.js +6 -8
- package/dist/models/ErrorTest.js +6 -8
- package/dist/models/Format.js +7 -9
- package/dist/models/FormatBase.js +7 -9
- package/dist/models/FormatCreate.js +7 -9
- package/dist/models/FormatPartialUpdate.js +7 -9
- package/dist/models/FormatTranslation.js +6 -8
- package/dist/models/FormatUpdate.js +7 -9
- package/dist/models/Meeting.js +6 -8
- package/dist/models/MeetingBase.js +6 -8
- package/dist/models/MeetingChangeResource.js +6 -8
- package/dist/models/MeetingCreate.js +6 -8
- package/dist/models/MeetingPartialUpdate.d.ts +10 -10
- package/dist/models/MeetingPartialUpdate.js +16 -38
- package/dist/models/MeetingUpdate.js +6 -8
- package/dist/models/NotFoundError.js +6 -8
- package/dist/models/RootServer.js +8 -10
- package/dist/models/RootServerBase.js +8 -10
- package/dist/models/RootServerBaseStatistics.js +8 -10
- package/dist/models/RootServerBaseStatisticsMeetings.js +6 -8
- package/dist/models/RootServerBaseStatisticsServiceBodies.js +6 -8
- package/dist/models/ServerError.js +6 -8
- package/dist/models/ServiceBody.js +6 -8
- package/dist/models/ServiceBodyBase.js +6 -8
- package/dist/models/ServiceBodyCreate.js +6 -8
- package/dist/models/ServiceBodyPartialUpdate.js +6 -8
- package/dist/models/ServiceBodyUpdate.js +6 -8
- package/dist/models/SettingsBase.d.ts +158 -0
- package/dist/models/SettingsBase.js +90 -0
- package/dist/models/SettingsObject.d.ts +158 -0
- package/dist/models/SettingsObject.js +90 -0
- package/dist/models/SettingsUpdate.d.ts +158 -0
- package/dist/models/SettingsUpdate.js +90 -0
- package/dist/models/Token.js +6 -8
- package/dist/models/TokenCredentials.js +6 -8
- package/dist/models/User.d.ts +6 -0
- package/dist/models/User.js +8 -8
- package/dist/models/UserBase.js +6 -8
- package/dist/models/UserCreate.js +6 -8
- package/dist/models/UserPartialUpdate.js +6 -8
- package/dist/models/UserUpdate.js +6 -8
- package/dist/models/ValidationError.js +6 -8
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/runtime.d.ts +9 -9
- package/dist/runtime.js +226 -440
- package/docs/AuthenticationError.md +34 -0
- package/docs/AuthorizationError.md +34 -0
- package/docs/ConflictError.md +34 -0
- package/docs/ErrorTest.md +38 -0
- package/docs/Format.md +40 -0
- package/docs/FormatBase.md +38 -0
- package/docs/FormatCreate.md +38 -0
- package/docs/FormatPartialUpdate.md +38 -0
- package/docs/FormatTranslation.md +40 -0
- package/docs/FormatUpdate.md +38 -0
- package/docs/Meeting.md +108 -0
- package/docs/MeetingBase.md +106 -0
- package/docs/MeetingChangeResource.md +40 -0
- package/docs/MeetingCreate.md +106 -0
- package/docs/MeetingPartialUpdate.md +106 -0
- package/docs/MeetingUpdate.md +106 -0
- package/docs/NotFoundError.md +34 -0
- package/docs/RootServer.md +46 -0
- package/docs/RootServerApi.md +2514 -0
- package/docs/RootServerBase.md +44 -0
- package/docs/RootServerBaseStatistics.md +36 -0
- package/docs/RootServerBaseStatisticsMeetings.md +42 -0
- package/docs/RootServerBaseStatisticsServiceBodies.md +40 -0
- package/docs/ServerError.md +34 -0
- package/docs/ServiceBody.md +54 -0
- package/docs/ServiceBodyBase.md +52 -0
- package/docs/ServiceBodyCreate.md +52 -0
- package/docs/ServiceBodyPartialUpdate.md +52 -0
- package/docs/ServiceBodyUpdate.md +52 -0
- package/docs/SettingsBase.md +76 -0
- package/docs/SettingsObject.md +76 -0
- package/docs/SettingsUpdate.md +77 -0
- package/docs/Token.md +40 -0
- package/docs/TokenCredentials.md +36 -0
- package/docs/User.md +48 -0
- package/docs/UserBase.md +44 -0
- package/docs/UserCreate.md +46 -0
- package/docs/UserPartialUpdate.md +46 -0
- package/docs/UserUpdate.md +46 -0
- package/docs/ValidationError.md +36 -0
- package/openapi.json +1 -1
- package/package.json +5 -3
- package/src/apis/RootServerApi.ts +242 -32
- package/src/models/MeetingPartialUpdate.ts +20 -30
- package/src/models/RootServer.ts +1 -1
- package/src/models/RootServerBase.ts +1 -1
- package/src/models/SettingsBase.ts +233 -0
- package/src/models/SettingsObject.ts +233 -0
- package/src/models/SettingsUpdate.ts +233 -0
- package/src/models/User.ts +8 -0
- package/src/models/index.ts +3 -0
- package/tsconfig.esm.json +7 -0
- package/tsconfig.json +1 -5
- package/.idea/bmlt-server-typescript-client.iml +0 -9
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
|
|
2
|
+
# RootServerBase
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`sourceId` | number
|
|
10
|
+
`name` | string
|
|
11
|
+
`url` | string
|
|
12
|
+
`statistics` | [RootServerBaseStatistics](RootServerBaseStatistics.md)
|
|
13
|
+
`serverInfo` | string
|
|
14
|
+
`lastSuccessfulImport` | Date
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
import type { RootServerBase } from 'bmlt-server-client'
|
|
20
|
+
|
|
21
|
+
// TODO: Update the object below with actual values
|
|
22
|
+
const example = {
|
|
23
|
+
"sourceId": 0,
|
|
24
|
+
"name": string,
|
|
25
|
+
"url": https://example.com/main_server,
|
|
26
|
+
"statistics": null,
|
|
27
|
+
"serverInfo": string,
|
|
28
|
+
"lastSuccessfulImport": null,
|
|
29
|
+
} satisfies RootServerBase
|
|
30
|
+
|
|
31
|
+
console.log(example)
|
|
32
|
+
|
|
33
|
+
// Convert the instance to a JSON string
|
|
34
|
+
const exampleJSON: string = JSON.stringify(example)
|
|
35
|
+
console.log(exampleJSON)
|
|
36
|
+
|
|
37
|
+
// Parse the JSON string back to an object
|
|
38
|
+
const exampleParsed = JSON.parse(exampleJSON) as RootServerBase
|
|
39
|
+
console.log(exampleParsed)
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
43
|
+
|
|
44
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
|
|
2
|
+
# RootServerBaseStatistics
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`serviceBodies` | [RootServerBaseStatisticsServiceBodies](RootServerBaseStatisticsServiceBodies.md)
|
|
10
|
+
`meetings` | [RootServerBaseStatisticsMeetings](RootServerBaseStatisticsMeetings.md)
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import type { RootServerBaseStatistics } from 'bmlt-server-client'
|
|
16
|
+
|
|
17
|
+
// TODO: Update the object below with actual values
|
|
18
|
+
const example = {
|
|
19
|
+
"serviceBodies": null,
|
|
20
|
+
"meetings": null,
|
|
21
|
+
} satisfies RootServerBaseStatistics
|
|
22
|
+
|
|
23
|
+
console.log(example)
|
|
24
|
+
|
|
25
|
+
// Convert the instance to a JSON string
|
|
26
|
+
const exampleJSON: string = JSON.stringify(example)
|
|
27
|
+
console.log(exampleJSON)
|
|
28
|
+
|
|
29
|
+
// Parse the JSON string back to an object
|
|
30
|
+
const exampleParsed = JSON.parse(exampleJSON) as RootServerBaseStatistics
|
|
31
|
+
console.log(exampleParsed)
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
35
|
+
|
|
36
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
|
|
2
|
+
# RootServerBaseStatisticsMeetings
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`numTotal` | number
|
|
10
|
+
`numInPerson` | number
|
|
11
|
+
`numVirtual` | number
|
|
12
|
+
`numHybrid` | number
|
|
13
|
+
`numUnknown` | number
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
import type { RootServerBaseStatisticsMeetings } from 'bmlt-server-client'
|
|
19
|
+
|
|
20
|
+
// TODO: Update the object below with actual values
|
|
21
|
+
const example = {
|
|
22
|
+
"numTotal": 0,
|
|
23
|
+
"numInPerson": 0,
|
|
24
|
+
"numVirtual": 0,
|
|
25
|
+
"numHybrid": 0,
|
|
26
|
+
"numUnknown": 0,
|
|
27
|
+
} satisfies RootServerBaseStatisticsMeetings
|
|
28
|
+
|
|
29
|
+
console.log(example)
|
|
30
|
+
|
|
31
|
+
// Convert the instance to a JSON string
|
|
32
|
+
const exampleJSON: string = JSON.stringify(example)
|
|
33
|
+
console.log(exampleJSON)
|
|
34
|
+
|
|
35
|
+
// Parse the JSON string back to an object
|
|
36
|
+
const exampleParsed = JSON.parse(exampleJSON) as RootServerBaseStatisticsMeetings
|
|
37
|
+
console.log(exampleParsed)
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
41
|
+
|
|
42
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
|
|
2
|
+
# RootServerBaseStatisticsServiceBodies
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`numZones` | number
|
|
10
|
+
`numRegions` | number
|
|
11
|
+
`numAreas` | number
|
|
12
|
+
`numGroups` | number
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import type { RootServerBaseStatisticsServiceBodies } from 'bmlt-server-client'
|
|
18
|
+
|
|
19
|
+
// TODO: Update the object below with actual values
|
|
20
|
+
const example = {
|
|
21
|
+
"numZones": 0,
|
|
22
|
+
"numRegions": 0,
|
|
23
|
+
"numAreas": 0,
|
|
24
|
+
"numGroups": 0,
|
|
25
|
+
} satisfies RootServerBaseStatisticsServiceBodies
|
|
26
|
+
|
|
27
|
+
console.log(example)
|
|
28
|
+
|
|
29
|
+
// Convert the instance to a JSON string
|
|
30
|
+
const exampleJSON: string = JSON.stringify(example)
|
|
31
|
+
console.log(exampleJSON)
|
|
32
|
+
|
|
33
|
+
// Parse the JSON string back to an object
|
|
34
|
+
const exampleParsed = JSON.parse(exampleJSON) as RootServerBaseStatisticsServiceBodies
|
|
35
|
+
console.log(exampleParsed)
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
39
|
+
|
|
40
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
|
|
2
|
+
# ServerError
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`message` | string
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import type { ServerError } from 'bmlt-server-client'
|
|
15
|
+
|
|
16
|
+
// TODO: Update the object below with actual values
|
|
17
|
+
const example = {
|
|
18
|
+
"message": Server Error,
|
|
19
|
+
} satisfies ServerError
|
|
20
|
+
|
|
21
|
+
console.log(example)
|
|
22
|
+
|
|
23
|
+
// Convert the instance to a JSON string
|
|
24
|
+
const exampleJSON: string = JSON.stringify(example)
|
|
25
|
+
console.log(exampleJSON)
|
|
26
|
+
|
|
27
|
+
// Parse the JSON string back to an object
|
|
28
|
+
const exampleParsed = JSON.parse(exampleJSON) as ServerError
|
|
29
|
+
console.log(exampleParsed)
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
33
|
+
|
|
34
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
|
|
2
|
+
# ServiceBody
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`parentId` | number
|
|
10
|
+
`name` | string
|
|
11
|
+
`description` | string
|
|
12
|
+
`type` | string
|
|
13
|
+
`adminUserId` | number
|
|
14
|
+
`assignedUserIds` | Array<number>
|
|
15
|
+
`url` | string
|
|
16
|
+
`helpline` | string
|
|
17
|
+
`email` | string
|
|
18
|
+
`worldId` | string
|
|
19
|
+
`id` | number
|
|
20
|
+
|
|
21
|
+
## Example
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import type { ServiceBody } from 'bmlt-server-client'
|
|
25
|
+
|
|
26
|
+
// TODO: Update the object below with actual values
|
|
27
|
+
const example = {
|
|
28
|
+
"parentId": 0,
|
|
29
|
+
"name": string,
|
|
30
|
+
"description": string,
|
|
31
|
+
"type": string,
|
|
32
|
+
"adminUserId": 0,
|
|
33
|
+
"assignedUserIds": null,
|
|
34
|
+
"url": string,
|
|
35
|
+
"helpline": string,
|
|
36
|
+
"email": string,
|
|
37
|
+
"worldId": string,
|
|
38
|
+
"id": 0,
|
|
39
|
+
} satisfies ServiceBody
|
|
40
|
+
|
|
41
|
+
console.log(example)
|
|
42
|
+
|
|
43
|
+
// Convert the instance to a JSON string
|
|
44
|
+
const exampleJSON: string = JSON.stringify(example)
|
|
45
|
+
console.log(exampleJSON)
|
|
46
|
+
|
|
47
|
+
// Parse the JSON string back to an object
|
|
48
|
+
const exampleParsed = JSON.parse(exampleJSON) as ServiceBody
|
|
49
|
+
console.log(exampleParsed)
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
53
|
+
|
|
54
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
|
|
2
|
+
# ServiceBodyBase
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`parentId` | number
|
|
10
|
+
`name` | string
|
|
11
|
+
`description` | string
|
|
12
|
+
`type` | string
|
|
13
|
+
`adminUserId` | number
|
|
14
|
+
`assignedUserIds` | Array<number>
|
|
15
|
+
`url` | string
|
|
16
|
+
`helpline` | string
|
|
17
|
+
`email` | string
|
|
18
|
+
`worldId` | string
|
|
19
|
+
|
|
20
|
+
## Example
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import type { ServiceBodyBase } from 'bmlt-server-client'
|
|
24
|
+
|
|
25
|
+
// TODO: Update the object below with actual values
|
|
26
|
+
const example = {
|
|
27
|
+
"parentId": 0,
|
|
28
|
+
"name": string,
|
|
29
|
+
"description": string,
|
|
30
|
+
"type": string,
|
|
31
|
+
"adminUserId": 0,
|
|
32
|
+
"assignedUserIds": null,
|
|
33
|
+
"url": string,
|
|
34
|
+
"helpline": string,
|
|
35
|
+
"email": string,
|
|
36
|
+
"worldId": string,
|
|
37
|
+
} satisfies ServiceBodyBase
|
|
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 ServiceBodyBase
|
|
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,52 @@
|
|
|
1
|
+
|
|
2
|
+
# ServiceBodyCreate
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`parentId` | number
|
|
10
|
+
`name` | string
|
|
11
|
+
`description` | string
|
|
12
|
+
`type` | string
|
|
13
|
+
`adminUserId` | number
|
|
14
|
+
`assignedUserIds` | Array<number>
|
|
15
|
+
`url` | string
|
|
16
|
+
`helpline` | string
|
|
17
|
+
`email` | string
|
|
18
|
+
`worldId` | string
|
|
19
|
+
|
|
20
|
+
## Example
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import type { ServiceBodyCreate } from 'bmlt-server-client'
|
|
24
|
+
|
|
25
|
+
// TODO: Update the object below with actual values
|
|
26
|
+
const example = {
|
|
27
|
+
"parentId": 0,
|
|
28
|
+
"name": string,
|
|
29
|
+
"description": string,
|
|
30
|
+
"type": string,
|
|
31
|
+
"adminUserId": 0,
|
|
32
|
+
"assignedUserIds": null,
|
|
33
|
+
"url": string,
|
|
34
|
+
"helpline": string,
|
|
35
|
+
"email": string,
|
|
36
|
+
"worldId": string,
|
|
37
|
+
} satisfies ServiceBodyCreate
|
|
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 ServiceBodyCreate
|
|
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,52 @@
|
|
|
1
|
+
|
|
2
|
+
# ServiceBodyPartialUpdate
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`parentId` | number
|
|
10
|
+
`name` | string
|
|
11
|
+
`description` | string
|
|
12
|
+
`type` | string
|
|
13
|
+
`adminUserId` | number
|
|
14
|
+
`assignedUserIds` | Array<number>
|
|
15
|
+
`url` | string
|
|
16
|
+
`helpline` | string
|
|
17
|
+
`email` | string
|
|
18
|
+
`worldId` | string
|
|
19
|
+
|
|
20
|
+
## Example
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import type { ServiceBodyPartialUpdate } from 'bmlt-server-client'
|
|
24
|
+
|
|
25
|
+
// TODO: Update the object below with actual values
|
|
26
|
+
const example = {
|
|
27
|
+
"parentId": 0,
|
|
28
|
+
"name": string,
|
|
29
|
+
"description": string,
|
|
30
|
+
"type": string,
|
|
31
|
+
"adminUserId": 0,
|
|
32
|
+
"assignedUserIds": null,
|
|
33
|
+
"url": string,
|
|
34
|
+
"helpline": string,
|
|
35
|
+
"email": string,
|
|
36
|
+
"worldId": string,
|
|
37
|
+
} satisfies ServiceBodyPartialUpdate
|
|
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 ServiceBodyPartialUpdate
|
|
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,52 @@
|
|
|
1
|
+
|
|
2
|
+
# ServiceBodyUpdate
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`parentId` | number
|
|
10
|
+
`name` | string
|
|
11
|
+
`description` | string
|
|
12
|
+
`type` | string
|
|
13
|
+
`adminUserId` | number
|
|
14
|
+
`assignedUserIds` | Array<number>
|
|
15
|
+
`url` | string
|
|
16
|
+
`helpline` | string
|
|
17
|
+
`email` | string
|
|
18
|
+
`worldId` | string
|
|
19
|
+
|
|
20
|
+
## Example
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import type { ServiceBodyUpdate } from 'bmlt-server-client'
|
|
24
|
+
|
|
25
|
+
// TODO: Update the object below with actual values
|
|
26
|
+
const example = {
|
|
27
|
+
"parentId": 0,
|
|
28
|
+
"name": string,
|
|
29
|
+
"description": string,
|
|
30
|
+
"type": string,
|
|
31
|
+
"adminUserId": 0,
|
|
32
|
+
"assignedUserIds": null,
|
|
33
|
+
"url": string,
|
|
34
|
+
"helpline": string,
|
|
35
|
+
"email": string,
|
|
36
|
+
"worldId": string,
|
|
37
|
+
} satisfies ServiceBodyUpdate
|
|
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 ServiceBodyUpdate
|
|
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,76 @@
|
|
|
1
|
+
|
|
2
|
+
# SettingsBase
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`googleApiKey` | string
|
|
10
|
+
`changeDepthForMeetings` | number
|
|
11
|
+
`defaultSortKey` | string
|
|
12
|
+
`language` | string
|
|
13
|
+
`defaultDurationTime` | string
|
|
14
|
+
`regionBias` | string
|
|
15
|
+
`distanceUnits` | string
|
|
16
|
+
`meetingStatesAndProvinces` | Array<string>
|
|
17
|
+
`meetingCountiesAndSubProvinces` | Array<string>
|
|
18
|
+
`searchSpecMapCenterLongitude` | number
|
|
19
|
+
`searchSpecMapCenterLatitude` | number
|
|
20
|
+
`searchSpecMapCenterZoom` | number
|
|
21
|
+
`numberOfMeetingsForAuto` | number
|
|
22
|
+
`autoGeocodingEnabled` | boolean
|
|
23
|
+
`countyAutoGeocodingEnabled` | boolean
|
|
24
|
+
`zipAutoGeocodingEnabled` | boolean
|
|
25
|
+
`defaultClosedStatus` | boolean
|
|
26
|
+
`enableLanguageSelector` | boolean
|
|
27
|
+
`includeServiceBodyEmailInSemantic` | boolean
|
|
28
|
+
`bmltTitle` | string
|
|
29
|
+
`bmltNotice` | string
|
|
30
|
+
`formatLangNames` | object
|
|
31
|
+
|
|
32
|
+
## Example
|
|
33
|
+
|
|
34
|
+
```typescript
|
|
35
|
+
import type { SettingsBase } from 'bmlt-server-client'
|
|
36
|
+
|
|
37
|
+
// TODO: Update the object below with actual values
|
|
38
|
+
const example = {
|
|
39
|
+
"googleApiKey": null,
|
|
40
|
+
"changeDepthForMeetings": null,
|
|
41
|
+
"defaultSortKey": null,
|
|
42
|
+
"language": null,
|
|
43
|
+
"defaultDurationTime": null,
|
|
44
|
+
"regionBias": null,
|
|
45
|
+
"distanceUnits": null,
|
|
46
|
+
"meetingStatesAndProvinces": null,
|
|
47
|
+
"meetingCountiesAndSubProvinces": null,
|
|
48
|
+
"searchSpecMapCenterLongitude": null,
|
|
49
|
+
"searchSpecMapCenterLatitude": null,
|
|
50
|
+
"searchSpecMapCenterZoom": null,
|
|
51
|
+
"numberOfMeetingsForAuto": null,
|
|
52
|
+
"autoGeocodingEnabled": null,
|
|
53
|
+
"countyAutoGeocodingEnabled": null,
|
|
54
|
+
"zipAutoGeocodingEnabled": null,
|
|
55
|
+
"defaultClosedStatus": null,
|
|
56
|
+
"enableLanguageSelector": null,
|
|
57
|
+
"includeServiceBodyEmailInSemantic": null,
|
|
58
|
+
"bmltTitle": null,
|
|
59
|
+
"bmltNotice": null,
|
|
60
|
+
"formatLangNames": null,
|
|
61
|
+
} satisfies SettingsBase
|
|
62
|
+
|
|
63
|
+
console.log(example)
|
|
64
|
+
|
|
65
|
+
// Convert the instance to a JSON string
|
|
66
|
+
const exampleJSON: string = JSON.stringify(example)
|
|
67
|
+
console.log(exampleJSON)
|
|
68
|
+
|
|
69
|
+
// Parse the JSON string back to an object
|
|
70
|
+
const exampleParsed = JSON.parse(exampleJSON) as SettingsBase
|
|
71
|
+
console.log(exampleParsed)
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
75
|
+
|
|
76
|
+
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
|
|
2
|
+
# SettingsObject
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`googleApiKey` | string
|
|
10
|
+
`changeDepthForMeetings` | number
|
|
11
|
+
`defaultSortKey` | string
|
|
12
|
+
`language` | string
|
|
13
|
+
`defaultDurationTime` | string
|
|
14
|
+
`regionBias` | string
|
|
15
|
+
`distanceUnits` | string
|
|
16
|
+
`meetingStatesAndProvinces` | Array<string>
|
|
17
|
+
`meetingCountiesAndSubProvinces` | Array<string>
|
|
18
|
+
`searchSpecMapCenterLongitude` | number
|
|
19
|
+
`searchSpecMapCenterLatitude` | number
|
|
20
|
+
`searchSpecMapCenterZoom` | number
|
|
21
|
+
`numberOfMeetingsForAuto` | number
|
|
22
|
+
`autoGeocodingEnabled` | boolean
|
|
23
|
+
`countyAutoGeocodingEnabled` | boolean
|
|
24
|
+
`zipAutoGeocodingEnabled` | boolean
|
|
25
|
+
`defaultClosedStatus` | boolean
|
|
26
|
+
`enableLanguageSelector` | boolean
|
|
27
|
+
`includeServiceBodyEmailInSemantic` | boolean
|
|
28
|
+
`bmltTitle` | string
|
|
29
|
+
`bmltNotice` | string
|
|
30
|
+
`formatLangNames` | object
|
|
31
|
+
|
|
32
|
+
## Example
|
|
33
|
+
|
|
34
|
+
```typescript
|
|
35
|
+
import type { SettingsObject } from 'bmlt-server-client'
|
|
36
|
+
|
|
37
|
+
// TODO: Update the object below with actual values
|
|
38
|
+
const example = {
|
|
39
|
+
"googleApiKey": ,
|
|
40
|
+
"changeDepthForMeetings": 0,
|
|
41
|
+
"defaultSortKey": null,
|
|
42
|
+
"language": en,
|
|
43
|
+
"defaultDurationTime": 01:00,
|
|
44
|
+
"regionBias": us,
|
|
45
|
+
"distanceUnits": mi,
|
|
46
|
+
"meetingStatesAndProvinces": [],
|
|
47
|
+
"meetingCountiesAndSubProvinces": [],
|
|
48
|
+
"searchSpecMapCenterLongitude": -118.563659,
|
|
49
|
+
"searchSpecMapCenterLatitude": 34.235918,
|
|
50
|
+
"searchSpecMapCenterZoom": 6,
|
|
51
|
+
"numberOfMeetingsForAuto": 10,
|
|
52
|
+
"autoGeocodingEnabled": true,
|
|
53
|
+
"countyAutoGeocodingEnabled": false,
|
|
54
|
+
"zipAutoGeocodingEnabled": false,
|
|
55
|
+
"defaultClosedStatus": true,
|
|
56
|
+
"enableLanguageSelector": false,
|
|
57
|
+
"includeServiceBodyEmailInSemantic": false,
|
|
58
|
+
"bmltTitle": ,
|
|
59
|
+
"bmltNotice": ,
|
|
60
|
+
"formatLangNames": [],
|
|
61
|
+
} satisfies SettingsObject
|
|
62
|
+
|
|
63
|
+
console.log(example)
|
|
64
|
+
|
|
65
|
+
// Convert the instance to a JSON string
|
|
66
|
+
const exampleJSON: string = JSON.stringify(example)
|
|
67
|
+
console.log(exampleJSON)
|
|
68
|
+
|
|
69
|
+
// Parse the JSON string back to an object
|
|
70
|
+
const exampleParsed = JSON.parse(exampleJSON) as SettingsObject
|
|
71
|
+
console.log(exampleParsed)
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
75
|
+
|
|
76
|
+
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
|
|
2
|
+
# SettingsUpdate
|
|
3
|
+
|
|
4
|
+
Partial update object - include only the settings you want to update
|
|
5
|
+
|
|
6
|
+
## Properties
|
|
7
|
+
|
|
8
|
+
Name | Type
|
|
9
|
+
------------ | -------------
|
|
10
|
+
`googleApiKey` | string
|
|
11
|
+
`changeDepthForMeetings` | number
|
|
12
|
+
`defaultSortKey` | string
|
|
13
|
+
`language` | string
|
|
14
|
+
`defaultDurationTime` | string
|
|
15
|
+
`regionBias` | string
|
|
16
|
+
`distanceUnits` | string
|
|
17
|
+
`meetingStatesAndProvinces` | Array<string>
|
|
18
|
+
`meetingCountiesAndSubProvinces` | Array<string>
|
|
19
|
+
`searchSpecMapCenterLongitude` | number
|
|
20
|
+
`searchSpecMapCenterLatitude` | number
|
|
21
|
+
`searchSpecMapCenterZoom` | number
|
|
22
|
+
`numberOfMeetingsForAuto` | number
|
|
23
|
+
`autoGeocodingEnabled` | boolean
|
|
24
|
+
`countyAutoGeocodingEnabled` | boolean
|
|
25
|
+
`zipAutoGeocodingEnabled` | boolean
|
|
26
|
+
`defaultClosedStatus` | boolean
|
|
27
|
+
`enableLanguageSelector` | boolean
|
|
28
|
+
`includeServiceBodyEmailInSemantic` | boolean
|
|
29
|
+
`bmltTitle` | string
|
|
30
|
+
`bmltNotice` | string
|
|
31
|
+
`formatLangNames` | object
|
|
32
|
+
|
|
33
|
+
## Example
|
|
34
|
+
|
|
35
|
+
```typescript
|
|
36
|
+
import type { SettingsUpdate } from 'bmlt-server-client'
|
|
37
|
+
|
|
38
|
+
// TODO: Update the object below with actual values
|
|
39
|
+
const example = {
|
|
40
|
+
"googleApiKey": null,
|
|
41
|
+
"changeDepthForMeetings": null,
|
|
42
|
+
"defaultSortKey": null,
|
|
43
|
+
"language": null,
|
|
44
|
+
"defaultDurationTime": null,
|
|
45
|
+
"regionBias": null,
|
|
46
|
+
"distanceUnits": null,
|
|
47
|
+
"meetingStatesAndProvinces": null,
|
|
48
|
+
"meetingCountiesAndSubProvinces": null,
|
|
49
|
+
"searchSpecMapCenterLongitude": null,
|
|
50
|
+
"searchSpecMapCenterLatitude": null,
|
|
51
|
+
"searchSpecMapCenterZoom": null,
|
|
52
|
+
"numberOfMeetingsForAuto": null,
|
|
53
|
+
"autoGeocodingEnabled": null,
|
|
54
|
+
"countyAutoGeocodingEnabled": null,
|
|
55
|
+
"zipAutoGeocodingEnabled": null,
|
|
56
|
+
"defaultClosedStatus": null,
|
|
57
|
+
"enableLanguageSelector": null,
|
|
58
|
+
"includeServiceBodyEmailInSemantic": null,
|
|
59
|
+
"bmltTitle": null,
|
|
60
|
+
"bmltNotice": null,
|
|
61
|
+
"formatLangNames": null,
|
|
62
|
+
} satisfies SettingsUpdate
|
|
63
|
+
|
|
64
|
+
console.log(example)
|
|
65
|
+
|
|
66
|
+
// Convert the instance to a JSON string
|
|
67
|
+
const exampleJSON: string = JSON.stringify(example)
|
|
68
|
+
console.log(exampleJSON)
|
|
69
|
+
|
|
70
|
+
// Parse the JSON string back to an object
|
|
71
|
+
const exampleParsed = JSON.parse(exampleJSON) as SettingsUpdate
|
|
72
|
+
console.log(exampleParsed)
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
76
|
+
|
|
77
|
+
|