bmlt-server-client 2.0.3 → 2.0.5-beta1

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.
@@ -28,6 +28,7 @@ docs/ServerError.md
28
28
  docs/ServiceBody.md
29
29
  docs/ServiceBodyBase.md
30
30
  docs/ServiceBodyCreate.md
31
+ docs/ServiceBodyEditor.md
31
32
  docs/ServiceBodyPartialUpdate.md
32
33
  docs/ServiceBodyUpdate.md
33
34
  docs/SettingsBase.md
@@ -71,6 +72,7 @@ src/models/ServerError.ts
71
72
  src/models/ServiceBody.ts
72
73
  src/models/ServiceBodyBase.ts
73
74
  src/models/ServiceBodyCreate.ts
75
+ src/models/ServiceBodyEditor.ts
74
76
  src/models/ServiceBodyPartialUpdate.ts
75
77
  src/models/ServiceBodyUpdate.ts
76
78
  src/models/SettingsBase.ts
@@ -1 +1 @@
1
- 7.19.0-SNAPSHOT
1
+ 7.23.0-SNAPSHOT
package/README.md CHANGED
@@ -71,6 +71,7 @@ All URIs are relative to *http://localhost:8000/main_server*
71
71
  *RootServerApi* | [**getRootServers**](docs/RootServerApi.md#getrootservers) | **GET** /api/v1/rootservers | Retrieves root servers
72
72
  *RootServerApi* | [**getServiceBodies**](docs/RootServerApi.md#getservicebodies) | **GET** /api/v1/servicebodies | Retrieves service bodies
73
73
  *RootServerApi* | [**getServiceBody**](docs/RootServerApi.md#getservicebody) | **GET** /api/v1/servicebodies/{serviceBodyId} | Retrieves a service body
74
+ *RootServerApi* | [**getServiceBodyEditors**](docs/RootServerApi.md#getservicebodyeditors) | **GET** /api/v1/servicebodies/{serviceBodyId}/editors | Retrieves the editors assigned to a service body
74
75
  *RootServerApi* | [**getSettings**](docs/RootServerApi.md#getsettings) | **GET** /api/v1/settings | Retrieves all settings
75
76
  *RootServerApi* | [**getUser**](docs/RootServerApi.md#getuser) | **GET** /api/v1/users/{userId} | Retrieves a single user
76
77
  *RootServerApi* | [**getUsers**](docs/RootServerApi.md#getusers) | **GET** /api/v1/users | Retrieves users
@@ -113,6 +114,7 @@ All URIs are relative to *http://localhost:8000/main_server*
113
114
  - [ServiceBody](docs/ServiceBody.md)
114
115
  - [ServiceBodyBase](docs/ServiceBodyBase.md)
115
116
  - [ServiceBodyCreate](docs/ServiceBodyCreate.md)
117
+ - [ServiceBodyEditor](docs/ServiceBodyEditor.md)
116
118
  - [ServiceBodyPartialUpdate](docs/ServiceBodyPartialUpdate.md)
117
119
  - [ServiceBodyUpdate](docs/ServiceBodyUpdate.md)
118
120
  - [SettingsBase](docs/SettingsBase.md)
@@ -148,7 +150,7 @@ and is automatically generated by the
148
150
 
149
151
  - API version: `1.0.0`
150
152
  - Package version: `1.4.0`
151
- - Generator version: `7.19.0-SNAPSHOT`
153
+ - Generator version: `7.23.0-SNAPSHOT`
152
154
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
153
155
 
154
156
  The generated npm module supports the following:
@@ -10,7 +10,30 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as runtime from '../runtime';
13
- import type { ErrorTest, Format, FormatCreate, FormatPartialUpdate, FormatUpdate, Meeting, MeetingChangeResource, MeetingCreate, MeetingPartialUpdate, MeetingUpdate, RootServer, ServiceBody, ServiceBodyCreate, ServiceBodyPartialUpdate, ServiceBodyUpdate, SettingsObject, SettingsUpdate, Token, TokenCredentials, User, UserCreate, UserPartialUpdate, UserUpdate } from '../models/index';
13
+ import { type ErrorTest } from '../models/ErrorTest';
14
+ import { type Format } from '../models/Format';
15
+ import { type FormatCreate } from '../models/FormatCreate';
16
+ import { type FormatPartialUpdate } from '../models/FormatPartialUpdate';
17
+ import { type FormatUpdate } from '../models/FormatUpdate';
18
+ import { type Meeting } from '../models/Meeting';
19
+ import { type MeetingChangeResource } from '../models/MeetingChangeResource';
20
+ import { type MeetingCreate } from '../models/MeetingCreate';
21
+ import { type MeetingPartialUpdate } from '../models/MeetingPartialUpdate';
22
+ import { type MeetingUpdate } from '../models/MeetingUpdate';
23
+ import { type RootServer } from '../models/RootServer';
24
+ import { type ServiceBody } from '../models/ServiceBody';
25
+ import { type ServiceBodyCreate } from '../models/ServiceBodyCreate';
26
+ import { type ServiceBodyEditor } from '../models/ServiceBodyEditor';
27
+ import { type ServiceBodyPartialUpdate } from '../models/ServiceBodyPartialUpdate';
28
+ import { type ServiceBodyUpdate } from '../models/ServiceBodyUpdate';
29
+ import { type SettingsObject } from '../models/SettingsObject';
30
+ import { type SettingsUpdate } from '../models/SettingsUpdate';
31
+ import { type Token } from '../models/Token';
32
+ import { type TokenCredentials } from '../models/TokenCredentials';
33
+ import { type User } from '../models/User';
34
+ import { type UserCreate } from '../models/UserCreate';
35
+ import { type UserPartialUpdate } from '../models/UserPartialUpdate';
36
+ import { type UserUpdate } from '../models/UserUpdate';
14
37
  export interface AuthTokenRequest {
15
38
  tokenCredentials: TokenCredentials;
16
39
  }
@@ -63,6 +86,9 @@ export interface GetRootServerRequest {
63
86
  export interface GetServiceBodyRequest {
64
87
  serviceBodyId: number;
65
88
  }
89
+ export interface GetServiceBodyEditorsRequest {
90
+ serviceBodyId: number;
91
+ }
66
92
  export interface GetUserRequest {
67
93
  userId: number;
68
94
  }
@@ -106,6 +132,10 @@ export interface UpdateUserRequest {
106
132
  *
107
133
  */
108
134
  export declare class RootServerApi extends runtime.BaseAPI {
135
+ /**
136
+ * Creates request options for authLogout without sending the request
137
+ */
138
+ authLogoutRequestOpts(): Promise<runtime.RequestOpts>;
109
139
  /**
110
140
  * Revoke token and logout.
111
141
  * Revokes a token
@@ -116,6 +146,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
116
146
  * Revokes a token
117
147
  */
118
148
  authLogout(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
149
+ /**
150
+ * Creates request options for authRefresh without sending the request
151
+ */
152
+ authRefreshRequestOpts(): Promise<runtime.RequestOpts>;
119
153
  /**
120
154
  * Refresh token.
121
155
  * Revokes and issues a new token
@@ -126,6 +160,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
126
160
  * Revokes and issues a new token
127
161
  */
128
162
  authRefresh(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Token>;
163
+ /**
164
+ * Creates request options for authToken without sending the request
165
+ */
166
+ authTokenRequestOpts(requestParameters: AuthTokenRequest): Promise<runtime.RequestOpts>;
129
167
  /**
130
168
  * Exchange credentials for a new token
131
169
  * Creates a token
@@ -136,6 +174,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
136
174
  * Creates a token
137
175
  */
138
176
  authToken(requestParameters: AuthTokenRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Token>;
177
+ /**
178
+ * Creates request options for createErrorTest without sending the request
179
+ */
180
+ createErrorTestRequestOpts(requestParameters: CreateErrorTestRequest): Promise<runtime.RequestOpts>;
139
181
  /**
140
182
  * Tests some errors.
141
183
  * Tests some errors
@@ -146,6 +188,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
146
188
  * Tests some errors
147
189
  */
148
190
  createErrorTest(requestParameters: CreateErrorTestRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ErrorTest>;
191
+ /**
192
+ * Creates request options for createFormat without sending the request
193
+ */
194
+ createFormatRequestOpts(requestParameters: CreateFormatRequest): Promise<runtime.RequestOpts>;
149
195
  /**
150
196
  * Creates a format.
151
197
  * Creates a format
@@ -156,6 +202,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
156
202
  * Creates a format
157
203
  */
158
204
  createFormat(requestParameters: CreateFormatRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Format>;
205
+ /**
206
+ * Creates request options for createMeeting without sending the request
207
+ */
208
+ createMeetingRequestOpts(requestParameters: CreateMeetingRequest): Promise<runtime.RequestOpts>;
159
209
  /**
160
210
  * Creates a meeting.
161
211
  * Creates a meeting
@@ -166,6 +216,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
166
216
  * Creates a meeting
167
217
  */
168
218
  createMeeting(requestParameters: CreateMeetingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Meeting>;
219
+ /**
220
+ * Creates request options for createServiceBody without sending the request
221
+ */
222
+ createServiceBodyRequestOpts(requestParameters: CreateServiceBodyRequest): Promise<runtime.RequestOpts>;
169
223
  /**
170
224
  * Creates a service body.
171
225
  * Creates a service body
@@ -176,6 +230,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
176
230
  * Creates a service body
177
231
  */
178
232
  createServiceBody(requestParameters: CreateServiceBodyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ServiceBody>;
233
+ /**
234
+ * Creates request options for createUser without sending the request
235
+ */
236
+ createUserRequestOpts(requestParameters: CreateUserRequest): Promise<runtime.RequestOpts>;
179
237
  /**
180
238
  * Creates a user.
181
239
  * Creates a user
@@ -186,6 +244,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
186
244
  * Creates a user
187
245
  */
188
246
  createUser(requestParameters: CreateUserRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<User>;
247
+ /**
248
+ * Creates request options for deleteFormat without sending the request
249
+ */
250
+ deleteFormatRequestOpts(requestParameters: DeleteFormatRequest): Promise<runtime.RequestOpts>;
189
251
  /**
190
252
  * Deletes a format by id.
191
253
  * Deletes a format
@@ -196,6 +258,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
196
258
  * Deletes a format
197
259
  */
198
260
  deleteFormat(requestParameters: DeleteFormatRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
261
+ /**
262
+ * Creates request options for deleteMeeting without sending the request
263
+ */
264
+ deleteMeetingRequestOpts(requestParameters: DeleteMeetingRequest): Promise<runtime.RequestOpts>;
199
265
  /**
200
266
  * Deletes a meeting by id.
201
267
  * Deletes a meeting
@@ -206,6 +272,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
206
272
  * Deletes a meeting
207
273
  */
208
274
  deleteMeeting(requestParameters: DeleteMeetingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
275
+ /**
276
+ * Creates request options for deleteServiceBody without sending the request
277
+ */
278
+ deleteServiceBodyRequestOpts(requestParameters: DeleteServiceBodyRequest): Promise<runtime.RequestOpts>;
209
279
  /**
210
280
  * Deletes a service body by id. If the service body has meetings, use force=true to delete them as well.
211
281
  * Deletes a service body
@@ -216,6 +286,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
216
286
  * Deletes a service body
217
287
  */
218
288
  deleteServiceBody(requestParameters: DeleteServiceBodyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
289
+ /**
290
+ * Creates request options for deleteUser without sending the request
291
+ */
292
+ deleteUserRequestOpts(requestParameters: DeleteUserRequest): Promise<runtime.RequestOpts>;
219
293
  /**
220
294
  * Deletes a user by id
221
295
  * Deletes a user
@@ -226,6 +300,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
226
300
  * Deletes a user
227
301
  */
228
302
  deleteUser(requestParameters: DeleteUserRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
303
+ /**
304
+ * Creates request options for getFormat without sending the request
305
+ */
306
+ getFormatRequestOpts(requestParameters: GetFormatRequest): Promise<runtime.RequestOpts>;
229
307
  /**
230
308
  * Retrieve a format
231
309
  * Retrieves a format
@@ -236,6 +314,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
236
314
  * Retrieves a format
237
315
  */
238
316
  getFormat(requestParameters: GetFormatRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Format>;
317
+ /**
318
+ * Creates request options for getFormats without sending the request
319
+ */
320
+ getFormatsRequestOpts(): Promise<runtime.RequestOpts>;
239
321
  /**
240
322
  * Retrieve formats
241
323
  * Retrieves formats
@@ -246,6 +328,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
246
328
  * Retrieves formats
247
329
  */
248
330
  getFormats(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<Format>>;
331
+ /**
332
+ * Creates request options for getLaravelLog without sending the request
333
+ */
334
+ getLaravelLogRequestOpts(): Promise<runtime.RequestOpts>;
249
335
  /**
250
336
  * Retrieve the laravel log if it exists.
251
337
  * Retrieves laravel log
@@ -256,6 +342,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
256
342
  * Retrieves laravel log
257
343
  */
258
344
  getLaravelLog(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Blob>;
345
+ /**
346
+ * Creates request options for getMeeting without sending the request
347
+ */
348
+ getMeetingRequestOpts(requestParameters: GetMeetingRequest): Promise<runtime.RequestOpts>;
259
349
  /**
260
350
  * Retrieve a meeting.
261
351
  * Retrieves a meeting
@@ -266,6 +356,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
266
356
  * Retrieves a meeting
267
357
  */
268
358
  getMeeting(requestParameters: GetMeetingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Meeting>;
359
+ /**
360
+ * Creates request options for getMeetingChanges without sending the request
361
+ */
362
+ getMeetingChangesRequestOpts(requestParameters: GetMeetingChangesRequest): Promise<runtime.RequestOpts>;
269
363
  /**
270
364
  * Retrieve all changes made to a specific meeting.
271
365
  * Retrieve changes for a meeting
@@ -276,6 +370,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
276
370
  * Retrieve changes for a meeting
277
371
  */
278
372
  getMeetingChanges(requestParameters: GetMeetingChangesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<MeetingChangeResource>>;
373
+ /**
374
+ * Creates request options for getMeetings without sending the request
375
+ */
376
+ getMeetingsRequestOpts(requestParameters: GetMeetingsRequest): Promise<runtime.RequestOpts>;
279
377
  /**
280
378
  * Retrieve meetings for authenticated user.
281
379
  * Retrieves meetings
@@ -286,6 +384,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
286
384
  * Retrieves meetings
287
385
  */
288
386
  getMeetings(requestParameters?: GetMeetingsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<Meeting>>;
387
+ /**
388
+ * Creates request options for getRootServer without sending the request
389
+ */
390
+ getRootServerRequestOpts(requestParameters: GetRootServerRequest): Promise<runtime.RequestOpts>;
289
391
  /**
290
392
  * Retrieve a single root server id.
291
393
  * Retrieves a root server
@@ -296,6 +398,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
296
398
  * Retrieves a root server
297
399
  */
298
400
  getRootServer(requestParameters: GetRootServerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RootServer>;
401
+ /**
402
+ * Creates request options for getRootServers without sending the request
403
+ */
404
+ getRootServersRequestOpts(): Promise<runtime.RequestOpts>;
299
405
  /**
300
406
  * Retrieve root servers.
301
407
  * Retrieves root servers
@@ -306,6 +412,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
306
412
  * Retrieves root servers
307
413
  */
308
414
  getRootServers(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<RootServer>>;
415
+ /**
416
+ * Creates request options for getServiceBodies without sending the request
417
+ */
418
+ getServiceBodiesRequestOpts(): Promise<runtime.RequestOpts>;
309
419
  /**
310
420
  * Retrieve service bodies for authenticated user.
311
421
  * Retrieves service bodies
@@ -316,6 +426,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
316
426
  * Retrieves service bodies
317
427
  */
318
428
  getServiceBodies(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<ServiceBody>>;
429
+ /**
430
+ * Creates request options for getServiceBody without sending the request
431
+ */
432
+ getServiceBodyRequestOpts(requestParameters: GetServiceBodyRequest): Promise<runtime.RequestOpts>;
319
433
  /**
320
434
  * Retrieve a single service body by id.
321
435
  * Retrieves a service body
@@ -326,6 +440,24 @@ export declare class RootServerApi extends runtime.BaseAPI {
326
440
  * Retrieves a service body
327
441
  */
328
442
  getServiceBody(requestParameters: GetServiceBodyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ServiceBody>;
443
+ /**
444
+ * Creates request options for getServiceBodyEditors without sending the request
445
+ */
446
+ getServiceBodyEditorsRequestOpts(requestParameters: GetServiceBodyEditorsRequest): Promise<runtime.RequestOpts>;
447
+ /**
448
+ * Retrieve the meeting list editors assigned to a service body. Each editor includes a readOnly flag that is true when the calling user does not otherwise have access to manage that user via the users API.
449
+ * Retrieves the editors assigned to a service body
450
+ */
451
+ getServiceBodyEditorsRaw(requestParameters: GetServiceBodyEditorsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<ServiceBodyEditor>>>;
452
+ /**
453
+ * Retrieve the meeting list editors assigned to a service body. Each editor includes a readOnly flag that is true when the calling user does not otherwise have access to manage that user via the users API.
454
+ * Retrieves the editors assigned to a service body
455
+ */
456
+ getServiceBodyEditors(requestParameters: GetServiceBodyEditorsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<ServiceBodyEditor>>;
457
+ /**
458
+ * Creates request options for getSettings without sending the request
459
+ */
460
+ getSettingsRequestOpts(): Promise<runtime.RequestOpts>;
329
461
  /**
330
462
  * Retrieve all server settings. Only accessible to server administrators.
331
463
  * Retrieves all settings
@@ -336,6 +468,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
336
468
  * Retrieves all settings
337
469
  */
338
470
  getSettings(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SettingsObject>;
471
+ /**
472
+ * Creates request options for getUser without sending the request
473
+ */
474
+ getUserRequestOpts(requestParameters: GetUserRequest): Promise<runtime.RequestOpts>;
339
475
  /**
340
476
  * Retrieve single user.
341
477
  * Retrieves a single user
@@ -346,6 +482,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
346
482
  * Retrieves a single user
347
483
  */
348
484
  getUser(requestParameters: GetUserRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<User>;
485
+ /**
486
+ * Creates request options for getUsers without sending the request
487
+ */
488
+ getUsersRequestOpts(): Promise<runtime.RequestOpts>;
349
489
  /**
350
490
  * Retrieve users for authenticated user.
351
491
  * Retrieves users
@@ -356,6 +496,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
356
496
  * Retrieves users
357
497
  */
358
498
  getUsers(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<User>>;
499
+ /**
500
+ * Creates request options for partialUpdateUser without sending the request
501
+ */
502
+ partialUpdateUserRequestOpts(requestParameters: PartialUpdateUserRequest): Promise<runtime.RequestOpts>;
359
503
  /**
360
504
  * Patches a user by id.
361
505
  * Patches a user
@@ -366,6 +510,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
366
510
  * Patches a user
367
511
  */
368
512
  partialUpdateUser(requestParameters: PartialUpdateUserRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
513
+ /**
514
+ * Creates request options for patchFormat without sending the request
515
+ */
516
+ patchFormatRequestOpts(requestParameters: PatchFormatRequest): Promise<runtime.RequestOpts>;
369
517
  /**
370
518
  * Patches a single format by id.
371
519
  * Patches a format
@@ -376,6 +524,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
376
524
  * Patches a format
377
525
  */
378
526
  patchFormat(requestParameters: PatchFormatRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
527
+ /**
528
+ * Creates request options for patchMeeting without sending the request
529
+ */
530
+ patchMeetingRequestOpts(requestParameters: PatchMeetingRequest): Promise<runtime.RequestOpts>;
379
531
  /**
380
532
  * Patches a meeting by id
381
533
  * Patches a meeting
@@ -386,6 +538,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
386
538
  * Patches a meeting
387
539
  */
388
540
  patchMeeting(requestParameters: PatchMeetingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
541
+ /**
542
+ * Creates request options for patchServiceBody without sending the request
543
+ */
544
+ patchServiceBodyRequestOpts(requestParameters: PatchServiceBodyRequest): Promise<runtime.RequestOpts>;
389
545
  /**
390
546
  * Patches a single service body by id.
391
547
  * Patches a service body
@@ -396,6 +552,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
396
552
  * Patches a service body
397
553
  */
398
554
  patchServiceBody(requestParameters: PatchServiceBodyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
555
+ /**
556
+ * Creates request options for updateFormat without sending the request
557
+ */
558
+ updateFormatRequestOpts(requestParameters: UpdateFormatRequest): Promise<runtime.RequestOpts>;
399
559
  /**
400
560
  * Updates a format.
401
561
  * Updates a format
@@ -406,6 +566,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
406
566
  * Updates a format
407
567
  */
408
568
  updateFormat(requestParameters: UpdateFormatRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
569
+ /**
570
+ * Creates request options for updateMeeting without sending the request
571
+ */
572
+ updateMeetingRequestOpts(requestParameters: UpdateMeetingRequest): Promise<runtime.RequestOpts>;
409
573
  /**
410
574
  * Updates a meeting.
411
575
  * Updates a meeting
@@ -416,6 +580,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
416
580
  * Updates a meeting
417
581
  */
418
582
  updateMeeting(requestParameters: UpdateMeetingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
583
+ /**
584
+ * Creates request options for updateServiceBody without sending the request
585
+ */
586
+ updateServiceBodyRequestOpts(requestParameters: UpdateServiceBodyRequest): Promise<runtime.RequestOpts>;
419
587
  /**
420
588
  * Updates a single service body.
421
589
  * Updates a Service Body
@@ -426,6 +594,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
426
594
  * Updates a Service Body
427
595
  */
428
596
  updateServiceBody(requestParameters: UpdateServiceBodyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
597
+ /**
598
+ * Creates request options for updateSettings without sending the request
599
+ */
600
+ updateSettingsRequestOpts(requestParameters: UpdateSettingsRequest): Promise<runtime.RequestOpts>;
429
601
  /**
430
602
  * Updates one or more server settings. Only accessible to server administrators.
431
603
  * Update settings
@@ -436,6 +608,10 @@ export declare class RootServerApi extends runtime.BaseAPI {
436
608
  * Update settings
437
609
  */
438
610
  updateSettings(requestParameters: UpdateSettingsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
611
+ /**
612
+ * Creates request options for updateUser without sending the request
613
+ */
614
+ updateUserRequestOpts(requestParameters: UpdateUserRequest): Promise<runtime.RequestOpts>;
439
615
  /**
440
616
  * Updates a user.
441
617
  * Update single user