bmlt-server-client 1.3.2 → 1.3.4
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 +38 -0
- package/.openapi-generator/VERSION +1 -1
- package/Makefile +1 -0
- package/README.md +167 -28
- package/dist/apis/RootServerApi.d.ts +1 -9
- package/dist/apis/RootServerApi.js +893 -1542
- package/dist/esm/apis/RootServerApi.d.ts +425 -0
- package/dist/esm/apis/RootServerApi.js +1185 -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/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 +68 -0
- package/dist/esm/models/User.js +67 -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 +36 -0
- package/dist/esm/models/index.js +38 -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.js +6 -8
- 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/Token.js +6 -8
- package/dist/models/TokenCredentials.js +6 -8
- package/dist/models/User.js +6 -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/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 +2373 -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/Token.md +40 -0
- package/docs/TokenCredentials.md +36 -0
- package/docs/User.md +46 -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 +149 -44
- package/src/models/RootServer.ts +1 -1
- package/src/models/RootServerBase.ts +1 -1
- package/tsconfig.esm.json +7 -0
- package/tsconfig.json +1 -5
|
@@ -184,7 +184,7 @@ export interface PatchFormatRequest {
|
|
|
184
184
|
export interface PatchMeetingRequest {
|
|
185
185
|
meetingId: number;
|
|
186
186
|
meetingPartialUpdate: MeetingPartialUpdate;
|
|
187
|
-
|
|
187
|
+
skipVenueTypeLocationValidation?: boolean;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
export interface PatchServiceBodyRequest {
|
|
@@ -231,8 +231,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
231
231
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
232
232
|
}
|
|
233
233
|
|
|
234
|
+
|
|
235
|
+
let urlPath = `/api/v1/auth/logout`;
|
|
236
|
+
|
|
234
237
|
const response = await this.request({
|
|
235
|
-
path:
|
|
238
|
+
path: urlPath,
|
|
236
239
|
method: 'POST',
|
|
237
240
|
headers: headerParameters,
|
|
238
241
|
query: queryParameters,
|
|
@@ -263,8 +266,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
263
266
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
264
267
|
}
|
|
265
268
|
|
|
269
|
+
|
|
270
|
+
let urlPath = `/api/v1/auth/refresh`;
|
|
271
|
+
|
|
266
272
|
const response = await this.request({
|
|
267
|
-
path:
|
|
273
|
+
path: urlPath,
|
|
268
274
|
method: 'POST',
|
|
269
275
|
headers: headerParameters,
|
|
270
276
|
query: queryParameters,
|
|
@@ -300,8 +306,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
300
306
|
|
|
301
307
|
headerParameters['Content-Type'] = 'application/json';
|
|
302
308
|
|
|
309
|
+
|
|
310
|
+
let urlPath = `/api/v1/auth/token`;
|
|
311
|
+
|
|
303
312
|
const response = await this.request({
|
|
304
|
-
path:
|
|
313
|
+
path: urlPath,
|
|
305
314
|
method: 'POST',
|
|
306
315
|
headers: headerParameters,
|
|
307
316
|
query: queryParameters,
|
|
@@ -343,8 +352,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
343
352
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
344
353
|
}
|
|
345
354
|
|
|
355
|
+
|
|
356
|
+
let urlPath = `/api/v1/errortest`;
|
|
357
|
+
|
|
346
358
|
const response = await this.request({
|
|
347
|
-
path:
|
|
359
|
+
path: urlPath,
|
|
348
360
|
method: 'POST',
|
|
349
361
|
headers: headerParameters,
|
|
350
362
|
query: queryParameters,
|
|
@@ -386,8 +398,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
386
398
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
387
399
|
}
|
|
388
400
|
|
|
401
|
+
|
|
402
|
+
let urlPath = `/api/v1/formats`;
|
|
403
|
+
|
|
389
404
|
const response = await this.request({
|
|
390
|
-
path:
|
|
405
|
+
path: urlPath,
|
|
391
406
|
method: 'POST',
|
|
392
407
|
headers: headerParameters,
|
|
393
408
|
query: queryParameters,
|
|
@@ -429,8 +444,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
429
444
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
430
445
|
}
|
|
431
446
|
|
|
447
|
+
|
|
448
|
+
let urlPath = `/api/v1/meetings`;
|
|
449
|
+
|
|
432
450
|
const response = await this.request({
|
|
433
|
-
path:
|
|
451
|
+
path: urlPath,
|
|
434
452
|
method: 'POST',
|
|
435
453
|
headers: headerParameters,
|
|
436
454
|
query: queryParameters,
|
|
@@ -472,8 +490,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
472
490
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
473
491
|
}
|
|
474
492
|
|
|
493
|
+
|
|
494
|
+
let urlPath = `/api/v1/servicebodies`;
|
|
495
|
+
|
|
475
496
|
const response = await this.request({
|
|
476
|
-
path:
|
|
497
|
+
path: urlPath,
|
|
477
498
|
method: 'POST',
|
|
478
499
|
headers: headerParameters,
|
|
479
500
|
query: queryParameters,
|
|
@@ -515,8 +536,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
515
536
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
516
537
|
}
|
|
517
538
|
|
|
539
|
+
|
|
540
|
+
let urlPath = `/api/v1/users`;
|
|
541
|
+
|
|
518
542
|
const response = await this.request({
|
|
519
|
-
path:
|
|
543
|
+
path: urlPath,
|
|
520
544
|
method: 'POST',
|
|
521
545
|
headers: headerParameters,
|
|
522
546
|
query: queryParameters,
|
|
@@ -556,8 +580,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
556
580
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
557
581
|
}
|
|
558
582
|
|
|
583
|
+
|
|
584
|
+
let urlPath = `/api/v1/formats/{formatId}`;
|
|
585
|
+
urlPath = urlPath.replace(`{${"formatId"}}`, encodeURIComponent(String(requestParameters['formatId'])));
|
|
586
|
+
|
|
559
587
|
const response = await this.request({
|
|
560
|
-
path:
|
|
588
|
+
path: urlPath,
|
|
561
589
|
method: 'DELETE',
|
|
562
590
|
headers: headerParameters,
|
|
563
591
|
query: queryParameters,
|
|
@@ -595,8 +623,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
595
623
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
596
624
|
}
|
|
597
625
|
|
|
626
|
+
|
|
627
|
+
let urlPath = `/api/v1/meetings/{meetingId}`;
|
|
628
|
+
urlPath = urlPath.replace(`{${"meetingId"}}`, encodeURIComponent(String(requestParameters['meetingId'])));
|
|
629
|
+
|
|
598
630
|
const response = await this.request({
|
|
599
|
-
path:
|
|
631
|
+
path: urlPath,
|
|
600
632
|
method: 'DELETE',
|
|
601
633
|
headers: headerParameters,
|
|
602
634
|
query: queryParameters,
|
|
@@ -634,8 +666,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
634
666
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
635
667
|
}
|
|
636
668
|
|
|
669
|
+
|
|
670
|
+
let urlPath = `/api/v1/servicebodies/{serviceBodyId}`;
|
|
671
|
+
urlPath = urlPath.replace(`{${"serviceBodyId"}}`, encodeURIComponent(String(requestParameters['serviceBodyId'])));
|
|
672
|
+
|
|
637
673
|
const response = await this.request({
|
|
638
|
-
path:
|
|
674
|
+
path: urlPath,
|
|
639
675
|
method: 'DELETE',
|
|
640
676
|
headers: headerParameters,
|
|
641
677
|
query: queryParameters,
|
|
@@ -673,8 +709,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
673
709
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
674
710
|
}
|
|
675
711
|
|
|
712
|
+
|
|
713
|
+
let urlPath = `/api/v1/users/{userId}`;
|
|
714
|
+
urlPath = urlPath.replace(`{${"userId"}}`, encodeURIComponent(String(requestParameters['userId'])));
|
|
715
|
+
|
|
676
716
|
const response = await this.request({
|
|
677
|
-
path:
|
|
717
|
+
path: urlPath,
|
|
678
718
|
method: 'DELETE',
|
|
679
719
|
headers: headerParameters,
|
|
680
720
|
query: queryParameters,
|
|
@@ -712,8 +752,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
712
752
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
713
753
|
}
|
|
714
754
|
|
|
755
|
+
|
|
756
|
+
let urlPath = `/api/v1/formats/{formatId}`;
|
|
757
|
+
urlPath = urlPath.replace(`{${"formatId"}}`, encodeURIComponent(String(requestParameters['formatId'])));
|
|
758
|
+
|
|
715
759
|
const response = await this.request({
|
|
716
|
-
path:
|
|
760
|
+
path: urlPath,
|
|
717
761
|
method: 'GET',
|
|
718
762
|
headers: headerParameters,
|
|
719
763
|
query: queryParameters,
|
|
@@ -745,8 +789,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
745
789
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
746
790
|
}
|
|
747
791
|
|
|
792
|
+
|
|
793
|
+
let urlPath = `/api/v1/formats`;
|
|
794
|
+
|
|
748
795
|
const response = await this.request({
|
|
749
|
-
path:
|
|
796
|
+
path: urlPath,
|
|
750
797
|
method: 'GET',
|
|
751
798
|
headers: headerParameters,
|
|
752
799
|
query: queryParameters,
|
|
@@ -778,8 +825,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
778
825
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
779
826
|
}
|
|
780
827
|
|
|
828
|
+
|
|
829
|
+
let urlPath = `/api/v1/logs/laravel`;
|
|
830
|
+
|
|
781
831
|
const response = await this.request({
|
|
782
|
-
path:
|
|
832
|
+
path: urlPath,
|
|
783
833
|
method: 'GET',
|
|
784
834
|
headers: headerParameters,
|
|
785
835
|
query: queryParameters,
|
|
@@ -818,8 +868,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
818
868
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
819
869
|
}
|
|
820
870
|
|
|
871
|
+
|
|
872
|
+
let urlPath = `/api/v1/meetings/{meetingId}`;
|
|
873
|
+
urlPath = urlPath.replace(`{${"meetingId"}}`, encodeURIComponent(String(requestParameters['meetingId'])));
|
|
874
|
+
|
|
821
875
|
const response = await this.request({
|
|
822
|
-
path:
|
|
876
|
+
path: urlPath,
|
|
823
877
|
method: 'GET',
|
|
824
878
|
headers: headerParameters,
|
|
825
879
|
query: queryParameters,
|
|
@@ -858,8 +912,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
858
912
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
859
913
|
}
|
|
860
914
|
|
|
915
|
+
|
|
916
|
+
let urlPath = `/api/v1/meetings/{meetingId}/changes`;
|
|
917
|
+
urlPath = urlPath.replace(`{${"meetingId"}}`, encodeURIComponent(String(requestParameters['meetingId'])));
|
|
918
|
+
|
|
861
919
|
const response = await this.request({
|
|
862
|
-
path:
|
|
920
|
+
path: urlPath,
|
|
863
921
|
method: 'GET',
|
|
864
922
|
headers: headerParameters,
|
|
865
923
|
query: queryParameters,
|
|
@@ -907,8 +965,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
907
965
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
908
966
|
}
|
|
909
967
|
|
|
968
|
+
|
|
969
|
+
let urlPath = `/api/v1/meetings`;
|
|
970
|
+
|
|
910
971
|
const response = await this.request({
|
|
911
|
-
path:
|
|
972
|
+
path: urlPath,
|
|
912
973
|
method: 'GET',
|
|
913
974
|
headers: headerParameters,
|
|
914
975
|
query: queryParameters,
|
|
@@ -942,8 +1003,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
942
1003
|
|
|
943
1004
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
944
1005
|
|
|
1006
|
+
|
|
1007
|
+
let urlPath = `/api/v1/rootservers/{rootServerId}`;
|
|
1008
|
+
urlPath = urlPath.replace(`{${"rootServerId"}}`, encodeURIComponent(String(requestParameters['rootServerId'])));
|
|
1009
|
+
|
|
945
1010
|
const response = await this.request({
|
|
946
|
-
path:
|
|
1011
|
+
path: urlPath,
|
|
947
1012
|
method: 'GET',
|
|
948
1013
|
headers: headerParameters,
|
|
949
1014
|
query: queryParameters,
|
|
@@ -970,8 +1035,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
970
1035
|
|
|
971
1036
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
972
1037
|
|
|
1038
|
+
|
|
1039
|
+
let urlPath = `/api/v1/rootservers`;
|
|
1040
|
+
|
|
973
1041
|
const response = await this.request({
|
|
974
|
-
path:
|
|
1042
|
+
path: urlPath,
|
|
975
1043
|
method: 'GET',
|
|
976
1044
|
headers: headerParameters,
|
|
977
1045
|
query: queryParameters,
|
|
@@ -1003,8 +1071,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1003
1071
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1004
1072
|
}
|
|
1005
1073
|
|
|
1074
|
+
|
|
1075
|
+
let urlPath = `/api/v1/servicebodies`;
|
|
1076
|
+
|
|
1006
1077
|
const response = await this.request({
|
|
1007
|
-
path:
|
|
1078
|
+
path: urlPath,
|
|
1008
1079
|
method: 'GET',
|
|
1009
1080
|
headers: headerParameters,
|
|
1010
1081
|
query: queryParameters,
|
|
@@ -1043,8 +1114,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1043
1114
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1044
1115
|
}
|
|
1045
1116
|
|
|
1117
|
+
|
|
1118
|
+
let urlPath = `/api/v1/servicebodies/{serviceBodyId}`;
|
|
1119
|
+
urlPath = urlPath.replace(`{${"serviceBodyId"}}`, encodeURIComponent(String(requestParameters['serviceBodyId'])));
|
|
1120
|
+
|
|
1046
1121
|
const response = await this.request({
|
|
1047
|
-
path:
|
|
1122
|
+
path: urlPath,
|
|
1048
1123
|
method: 'GET',
|
|
1049
1124
|
headers: headerParameters,
|
|
1050
1125
|
query: queryParameters,
|
|
@@ -1083,8 +1158,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1083
1158
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1084
1159
|
}
|
|
1085
1160
|
|
|
1161
|
+
|
|
1162
|
+
let urlPath = `/api/v1/users/{userId}`;
|
|
1163
|
+
urlPath = urlPath.replace(`{${"userId"}}`, encodeURIComponent(String(requestParameters['userId'])));
|
|
1164
|
+
|
|
1086
1165
|
const response = await this.request({
|
|
1087
|
-
path:
|
|
1166
|
+
path: urlPath,
|
|
1088
1167
|
method: 'GET',
|
|
1089
1168
|
headers: headerParameters,
|
|
1090
1169
|
query: queryParameters,
|
|
@@ -1116,8 +1195,11 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1116
1195
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1117
1196
|
}
|
|
1118
1197
|
|
|
1198
|
+
|
|
1199
|
+
let urlPath = `/api/v1/users`;
|
|
1200
|
+
|
|
1119
1201
|
const response = await this.request({
|
|
1120
|
-
path:
|
|
1202
|
+
path: urlPath,
|
|
1121
1203
|
method: 'GET',
|
|
1122
1204
|
headers: headerParameters,
|
|
1123
1205
|
query: queryParameters,
|
|
@@ -1165,8 +1247,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1165
1247
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1166
1248
|
}
|
|
1167
1249
|
|
|
1250
|
+
|
|
1251
|
+
let urlPath = `/api/v1/users/{userId}`;
|
|
1252
|
+
urlPath = urlPath.replace(`{${"userId"}}`, encodeURIComponent(String(requestParameters['userId'])));
|
|
1253
|
+
|
|
1168
1254
|
const response = await this.request({
|
|
1169
|
-
path:
|
|
1255
|
+
path: urlPath,
|
|
1170
1256
|
method: 'PATCH',
|
|
1171
1257
|
headers: headerParameters,
|
|
1172
1258
|
query: queryParameters,
|
|
@@ -1214,8 +1300,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1214
1300
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1215
1301
|
}
|
|
1216
1302
|
|
|
1303
|
+
|
|
1304
|
+
let urlPath = `/api/v1/formats/{formatId}`;
|
|
1305
|
+
urlPath = urlPath.replace(`{${"formatId"}}`, encodeURIComponent(String(requestParameters['formatId'])));
|
|
1306
|
+
|
|
1217
1307
|
const response = await this.request({
|
|
1218
|
-
path:
|
|
1308
|
+
path: urlPath,
|
|
1219
1309
|
method: 'PATCH',
|
|
1220
1310
|
headers: headerParameters,
|
|
1221
1311
|
query: queryParameters,
|
|
@@ -1254,8 +1344,8 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1254
1344
|
|
|
1255
1345
|
const queryParameters: any = {};
|
|
1256
1346
|
|
|
1257
|
-
if (requestParameters['
|
|
1258
|
-
queryParameters['
|
|
1347
|
+
if (requestParameters['skipVenueTypeLocationValidation'] != null) {
|
|
1348
|
+
queryParameters['skipVenueTypeLocationValidation'] = requestParameters['skipVenueTypeLocationValidation'];
|
|
1259
1349
|
}
|
|
1260
1350
|
|
|
1261
1351
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
@@ -1267,8 +1357,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1267
1357
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1268
1358
|
}
|
|
1269
1359
|
|
|
1360
|
+
|
|
1361
|
+
let urlPath = `/api/v1/meetings/{meetingId}`;
|
|
1362
|
+
urlPath = urlPath.replace(`{${"meetingId"}}`, encodeURIComponent(String(requestParameters['meetingId'])));
|
|
1363
|
+
|
|
1270
1364
|
const response = await this.request({
|
|
1271
|
-
path:
|
|
1365
|
+
path: urlPath,
|
|
1272
1366
|
method: 'PATCH',
|
|
1273
1367
|
headers: headerParameters,
|
|
1274
1368
|
query: queryParameters,
|
|
@@ -1316,8 +1410,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1316
1410
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1317
1411
|
}
|
|
1318
1412
|
|
|
1413
|
+
|
|
1414
|
+
let urlPath = `/api/v1/servicebodies/{serviceBodyId}`;
|
|
1415
|
+
urlPath = urlPath.replace(`{${"serviceBodyId"}}`, encodeURIComponent(String(requestParameters['serviceBodyId'])));
|
|
1416
|
+
|
|
1319
1417
|
const response = await this.request({
|
|
1320
|
-
path:
|
|
1418
|
+
path: urlPath,
|
|
1321
1419
|
method: 'PATCH',
|
|
1322
1420
|
headers: headerParameters,
|
|
1323
1421
|
query: queryParameters,
|
|
@@ -1365,8 +1463,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1365
1463
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1366
1464
|
}
|
|
1367
1465
|
|
|
1466
|
+
|
|
1467
|
+
let urlPath = `/api/v1/formats/{formatId}`;
|
|
1468
|
+
urlPath = urlPath.replace(`{${"formatId"}}`, encodeURIComponent(String(requestParameters['formatId'])));
|
|
1469
|
+
|
|
1368
1470
|
const response = await this.request({
|
|
1369
|
-
path:
|
|
1471
|
+
path: urlPath,
|
|
1370
1472
|
method: 'PUT',
|
|
1371
1473
|
headers: headerParameters,
|
|
1372
1474
|
query: queryParameters,
|
|
@@ -1414,8 +1516,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1414
1516
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1415
1517
|
}
|
|
1416
1518
|
|
|
1519
|
+
|
|
1520
|
+
let urlPath = `/api/v1/meetings/{meetingId}`;
|
|
1521
|
+
urlPath = urlPath.replace(`{${"meetingId"}}`, encodeURIComponent(String(requestParameters['meetingId'])));
|
|
1522
|
+
|
|
1417
1523
|
const response = await this.request({
|
|
1418
|
-
path:
|
|
1524
|
+
path: urlPath,
|
|
1419
1525
|
method: 'PUT',
|
|
1420
1526
|
headers: headerParameters,
|
|
1421
1527
|
query: queryParameters,
|
|
@@ -1463,8 +1569,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1463
1569
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1464
1570
|
}
|
|
1465
1571
|
|
|
1572
|
+
|
|
1573
|
+
let urlPath = `/api/v1/servicebodies/{serviceBodyId}`;
|
|
1574
|
+
urlPath = urlPath.replace(`{${"serviceBodyId"}}`, encodeURIComponent(String(requestParameters['serviceBodyId'])));
|
|
1575
|
+
|
|
1466
1576
|
const response = await this.request({
|
|
1467
|
-
path:
|
|
1577
|
+
path: urlPath,
|
|
1468
1578
|
method: 'PUT',
|
|
1469
1579
|
headers: headerParameters,
|
|
1470
1580
|
query: queryParameters,
|
|
@@ -1512,8 +1622,12 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1512
1622
|
headerParameters["Authorization"] = await this.configuration.accessToken("bmltToken", []);
|
|
1513
1623
|
}
|
|
1514
1624
|
|
|
1625
|
+
|
|
1626
|
+
let urlPath = `/api/v1/users/{userId}`;
|
|
1627
|
+
urlPath = urlPath.replace(`{${"userId"}}`, encodeURIComponent(String(requestParameters['userId'])));
|
|
1628
|
+
|
|
1515
1629
|
const response = await this.request({
|
|
1516
|
-
path:
|
|
1630
|
+
path: urlPath,
|
|
1517
1631
|
method: 'PUT',
|
|
1518
1632
|
headers: headerParameters,
|
|
1519
1633
|
query: queryParameters,
|
|
@@ -1532,12 +1646,3 @@ export class RootServerApi extends runtime.BaseAPI {
|
|
|
1532
1646
|
}
|
|
1533
1647
|
|
|
1534
1648
|
}
|
|
1535
|
-
|
|
1536
|
-
/**
|
|
1537
|
-
* @export
|
|
1538
|
-
*/
|
|
1539
|
-
export const PatchMeetingSkipValidationEnum = {
|
|
1540
|
-
NUMBER_0: 0,
|
|
1541
|
-
NUMBER_1: 1
|
|
1542
|
-
} as const;
|
|
1543
|
-
export type PatchMeetingSkipValidationEnum = typeof PatchMeetingSkipValidationEnum[keyof typeof PatchMeetingSkipValidationEnum];
|
package/src/models/RootServer.ts
CHANGED
|
@@ -119,7 +119,7 @@ export function RootServerToJSONTyped(value?: RootServer | null, ignoreDiscrimin
|
|
|
119
119
|
'url': value['url'],
|
|
120
120
|
'statistics': RootServerBaseStatisticsToJSON(value['statistics']),
|
|
121
121
|
'serverInfo': value['serverInfo'],
|
|
122
|
-
'lastSuccessfulImport':
|
|
122
|
+
'lastSuccessfulImport': value['lastSuccessfulImport'].toISOString(),
|
|
123
123
|
'id': value['id'],
|
|
124
124
|
};
|
|
125
125
|
}
|
|
@@ -107,7 +107,7 @@ export function RootServerBaseToJSONTyped(value?: RootServerBase | null, ignoreD
|
|
|
107
107
|
'url': value['url'],
|
|
108
108
|
'statistics': RootServerBaseStatisticsToJSON(value['statistics']),
|
|
109
109
|
'serverInfo': value['serverInfo'],
|
|
110
|
-
'lastSuccessfulImport': value['lastSuccessfulImport'] == null ?
|
|
110
|
+
'lastSuccessfulImport': value['lastSuccessfulImport'] == null ? value['lastSuccessfulImport'] : value['lastSuccessfulImport'].toISOString(),
|
|
111
111
|
};
|
|
112
112
|
}
|
|
113
113
|
|
package/tsconfig.json
CHANGED