bmlt-server-client 1.3.0 → 2.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.
- package/.openapi-generator/FILES +6 -6
- package/dist/apis/{ServerApi.d.ts → RootServerApi.d.ts} +16 -16
- package/dist/apis/{ServerApi.js → RootServerApi.js} +86 -86
- package/dist/apis/index.d.ts +1 -1
- package/dist/apis/index.js +1 -1
- package/dist/models/RootServer.d.ts +69 -0
- package/dist/models/{Server.js → RootServer.js} +17 -17
- package/dist/models/RootServerBase.d.ts +63 -0
- package/dist/models/{ServerBase.js → RootServerBase.js} +17 -17
- package/dist/models/RootServerBaseStatistics.d.ts +40 -0
- package/dist/models/RootServerBaseStatistics.js +58 -0
- package/dist/models/RootServerBaseStatisticsMeetings.d.ts +56 -0
- package/dist/models/{ServerBaseStatisticsMeetings.js → RootServerBaseStatisticsMeetings.js} +14 -14
- package/dist/models/RootServerBaseStatisticsServiceBodies.d.ts +50 -0
- package/dist/models/RootServerBaseStatisticsServiceBodies.js +64 -0
- package/dist/models/index.d.ts +5 -5
- package/dist/models/index.js +5 -5
- package/openapi.json +1 -1
- package/package.json +1 -1
- package/src/apis/{ServerApi.ts → RootServerApi.ts} +27 -27
- package/src/apis/index.ts +1 -1
- package/src/models/{Server.ts → RootServer.ts} +27 -27
- package/src/models/{ServerBase.ts → RootServerBase.ts} +26 -26
- package/src/models/RootServerBaseStatistics.ts +90 -0
- package/src/models/{ServerBaseStatisticsMeetings.ts → RootServerBaseStatisticsMeetings.ts} +15 -15
- package/src/models/{ServerBaseStatisticsServiceBodies.ts → RootServerBaseStatisticsServiceBodies.ts} +14 -14
- package/src/models/index.ts +5 -5
- package/dist/models/Server.d.ts +0 -69
- package/dist/models/ServerBase.d.ts +0 -63
- package/dist/models/ServerBaseStatistics.d.ts +0 -40
- package/dist/models/ServerBaseStatistics.js +0 -58
- package/dist/models/ServerBaseStatisticsMeetings.d.ts +0 -56
- package/dist/models/ServerBaseStatisticsServiceBodies.d.ts +0 -50
- package/dist/models/ServerBaseStatisticsServiceBodies.js +0 -64
- package/src/models/ServerBaseStatistics.ts +0 -90
|
@@ -64,22 +64,22 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
64
64
|
}
|
|
65
65
|
};
|
|
66
66
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67
|
-
exports.
|
|
67
|
+
exports.RootServerApi = void 0;
|
|
68
68
|
var runtime = require("../runtime");
|
|
69
69
|
var index_1 = require("../models/index");
|
|
70
70
|
/**
|
|
71
71
|
*
|
|
72
72
|
*/
|
|
73
|
-
var
|
|
74
|
-
__extends(
|
|
75
|
-
function
|
|
73
|
+
var RootServerApi = /** @class */ (function (_super) {
|
|
74
|
+
__extends(RootServerApi, _super);
|
|
75
|
+
function RootServerApi() {
|
|
76
76
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
77
77
|
}
|
|
78
78
|
/**
|
|
79
79
|
* Revoke token and logout.
|
|
80
80
|
* Revokes a token
|
|
81
81
|
*/
|
|
82
|
-
|
|
82
|
+
RootServerApi.prototype.authLogoutRaw = function (initOverrides) {
|
|
83
83
|
return __awaiter(this, void 0, void 0, function () {
|
|
84
84
|
var queryParameters, headerParameters, _a, _b, response;
|
|
85
85
|
return __generator(this, function (_c) {
|
|
@@ -113,7 +113,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
113
113
|
* Revoke token and logout.
|
|
114
114
|
* Revokes a token
|
|
115
115
|
*/
|
|
116
|
-
|
|
116
|
+
RootServerApi.prototype.authLogout = function (initOverrides) {
|
|
117
117
|
return __awaiter(this, void 0, void 0, function () {
|
|
118
118
|
return __generator(this, function (_a) {
|
|
119
119
|
switch (_a.label) {
|
|
@@ -129,7 +129,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
129
129
|
* Refresh token.
|
|
130
130
|
* Revokes and issues a new token
|
|
131
131
|
*/
|
|
132
|
-
|
|
132
|
+
RootServerApi.prototype.authRefreshRaw = function (initOverrides) {
|
|
133
133
|
return __awaiter(this, void 0, void 0, function () {
|
|
134
134
|
var queryParameters, headerParameters, _a, _b, response;
|
|
135
135
|
return __generator(this, function (_c) {
|
|
@@ -163,7 +163,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
163
163
|
* Refresh token.
|
|
164
164
|
* Revokes and issues a new token
|
|
165
165
|
*/
|
|
166
|
-
|
|
166
|
+
RootServerApi.prototype.authRefresh = function (initOverrides) {
|
|
167
167
|
return __awaiter(this, void 0, void 0, function () {
|
|
168
168
|
var response;
|
|
169
169
|
return __generator(this, function (_a) {
|
|
@@ -181,7 +181,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
181
181
|
* Exchange credentials for a new token
|
|
182
182
|
* Creates a token
|
|
183
183
|
*/
|
|
184
|
-
|
|
184
|
+
RootServerApi.prototype.authTokenRaw = function (requestParameters, initOverrides) {
|
|
185
185
|
return __awaiter(this, void 0, void 0, function () {
|
|
186
186
|
var queryParameters, headerParameters, response;
|
|
187
187
|
return __generator(this, function (_a) {
|
|
@@ -211,7 +211,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
211
211
|
* Exchange credentials for a new token
|
|
212
212
|
* Creates a token
|
|
213
213
|
*/
|
|
214
|
-
|
|
214
|
+
RootServerApi.prototype.authToken = function (requestParameters, initOverrides) {
|
|
215
215
|
return __awaiter(this, void 0, void 0, function () {
|
|
216
216
|
var response;
|
|
217
217
|
return __generator(this, function (_a) {
|
|
@@ -229,7 +229,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
229
229
|
* Tests some errors.
|
|
230
230
|
* Tests some errors
|
|
231
231
|
*/
|
|
232
|
-
|
|
232
|
+
RootServerApi.prototype.createErrorTestRaw = function (requestParameters, initOverrides) {
|
|
233
233
|
return __awaiter(this, void 0, void 0, function () {
|
|
234
234
|
var queryParameters, headerParameters, _a, _b, response;
|
|
235
235
|
return __generator(this, function (_c) {
|
|
@@ -268,7 +268,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
268
268
|
* Tests some errors.
|
|
269
269
|
* Tests some errors
|
|
270
270
|
*/
|
|
271
|
-
|
|
271
|
+
RootServerApi.prototype.createErrorTest = function (requestParameters, initOverrides) {
|
|
272
272
|
return __awaiter(this, void 0, void 0, function () {
|
|
273
273
|
var response;
|
|
274
274
|
return __generator(this, function (_a) {
|
|
@@ -286,7 +286,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
286
286
|
* Creates a format.
|
|
287
287
|
* Creates a format
|
|
288
288
|
*/
|
|
289
|
-
|
|
289
|
+
RootServerApi.prototype.createFormatRaw = function (requestParameters, initOverrides) {
|
|
290
290
|
return __awaiter(this, void 0, void 0, function () {
|
|
291
291
|
var queryParameters, headerParameters, _a, _b, response;
|
|
292
292
|
return __generator(this, function (_c) {
|
|
@@ -325,7 +325,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
325
325
|
* Creates a format.
|
|
326
326
|
* Creates a format
|
|
327
327
|
*/
|
|
328
|
-
|
|
328
|
+
RootServerApi.prototype.createFormat = function (requestParameters, initOverrides) {
|
|
329
329
|
return __awaiter(this, void 0, void 0, function () {
|
|
330
330
|
var response;
|
|
331
331
|
return __generator(this, function (_a) {
|
|
@@ -343,7 +343,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
343
343
|
* Creates a meeting.
|
|
344
344
|
* Creates a meeting
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
RootServerApi.prototype.createMeetingRaw = function (requestParameters, initOverrides) {
|
|
347
347
|
return __awaiter(this, void 0, void 0, function () {
|
|
348
348
|
var queryParameters, headerParameters, _a, _b, response;
|
|
349
349
|
return __generator(this, function (_c) {
|
|
@@ -382,7 +382,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
382
382
|
* Creates a meeting.
|
|
383
383
|
* Creates a meeting
|
|
384
384
|
*/
|
|
385
|
-
|
|
385
|
+
RootServerApi.prototype.createMeeting = function (requestParameters, initOverrides) {
|
|
386
386
|
return __awaiter(this, void 0, void 0, function () {
|
|
387
387
|
var response;
|
|
388
388
|
return __generator(this, function (_a) {
|
|
@@ -400,7 +400,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
400
400
|
* Creates a service body.
|
|
401
401
|
* Creates a service body
|
|
402
402
|
*/
|
|
403
|
-
|
|
403
|
+
RootServerApi.prototype.createServiceBodyRaw = function (requestParameters, initOverrides) {
|
|
404
404
|
return __awaiter(this, void 0, void 0, function () {
|
|
405
405
|
var queryParameters, headerParameters, _a, _b, response;
|
|
406
406
|
return __generator(this, function (_c) {
|
|
@@ -439,7 +439,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
439
439
|
* Creates a service body.
|
|
440
440
|
* Creates a service body
|
|
441
441
|
*/
|
|
442
|
-
|
|
442
|
+
RootServerApi.prototype.createServiceBody = function (requestParameters, initOverrides) {
|
|
443
443
|
return __awaiter(this, void 0, void 0, function () {
|
|
444
444
|
var response;
|
|
445
445
|
return __generator(this, function (_a) {
|
|
@@ -457,7 +457,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
457
457
|
* Creates a user.
|
|
458
458
|
* Creates a user
|
|
459
459
|
*/
|
|
460
|
-
|
|
460
|
+
RootServerApi.prototype.createUserRaw = function (requestParameters, initOverrides) {
|
|
461
461
|
return __awaiter(this, void 0, void 0, function () {
|
|
462
462
|
var queryParameters, headerParameters, _a, _b, response;
|
|
463
463
|
return __generator(this, function (_c) {
|
|
@@ -496,7 +496,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
496
496
|
* Creates a user.
|
|
497
497
|
* Creates a user
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
RootServerApi.prototype.createUser = function (requestParameters, initOverrides) {
|
|
500
500
|
return __awaiter(this, void 0, void 0, function () {
|
|
501
501
|
var response;
|
|
502
502
|
return __generator(this, function (_a) {
|
|
@@ -514,7 +514,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
514
514
|
* Deletes a format by id.
|
|
515
515
|
* Deletes a format
|
|
516
516
|
*/
|
|
517
|
-
|
|
517
|
+
RootServerApi.prototype.deleteFormatRaw = function (requestParameters, initOverrides) {
|
|
518
518
|
return __awaiter(this, void 0, void 0, function () {
|
|
519
519
|
var queryParameters, headerParameters, _a, _b, response;
|
|
520
520
|
return __generator(this, function (_c) {
|
|
@@ -551,7 +551,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
551
551
|
* Deletes a format by id.
|
|
552
552
|
* Deletes a format
|
|
553
553
|
*/
|
|
554
|
-
|
|
554
|
+
RootServerApi.prototype.deleteFormat = function (requestParameters, initOverrides) {
|
|
555
555
|
return __awaiter(this, void 0, void 0, function () {
|
|
556
556
|
return __generator(this, function (_a) {
|
|
557
557
|
switch (_a.label) {
|
|
@@ -567,7 +567,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
567
567
|
* Deletes a meeting by id.
|
|
568
568
|
* Deletes a meeting
|
|
569
569
|
*/
|
|
570
|
-
|
|
570
|
+
RootServerApi.prototype.deleteMeetingRaw = function (requestParameters, initOverrides) {
|
|
571
571
|
return __awaiter(this, void 0, void 0, function () {
|
|
572
572
|
var queryParameters, headerParameters, _a, _b, response;
|
|
573
573
|
return __generator(this, function (_c) {
|
|
@@ -604,7 +604,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
604
604
|
* Deletes a meeting by id.
|
|
605
605
|
* Deletes a meeting
|
|
606
606
|
*/
|
|
607
|
-
|
|
607
|
+
RootServerApi.prototype.deleteMeeting = function (requestParameters, initOverrides) {
|
|
608
608
|
return __awaiter(this, void 0, void 0, function () {
|
|
609
609
|
return __generator(this, function (_a) {
|
|
610
610
|
switch (_a.label) {
|
|
@@ -620,7 +620,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
620
620
|
* Deletes a service body by id.
|
|
621
621
|
* Deletes a service body
|
|
622
622
|
*/
|
|
623
|
-
|
|
623
|
+
RootServerApi.prototype.deleteServiceBodyRaw = function (requestParameters, initOverrides) {
|
|
624
624
|
return __awaiter(this, void 0, void 0, function () {
|
|
625
625
|
var queryParameters, headerParameters, _a, _b, response;
|
|
626
626
|
return __generator(this, function (_c) {
|
|
@@ -657,7 +657,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
657
657
|
* Deletes a service body by id.
|
|
658
658
|
* Deletes a service body
|
|
659
659
|
*/
|
|
660
|
-
|
|
660
|
+
RootServerApi.prototype.deleteServiceBody = function (requestParameters, initOverrides) {
|
|
661
661
|
return __awaiter(this, void 0, void 0, function () {
|
|
662
662
|
return __generator(this, function (_a) {
|
|
663
663
|
switch (_a.label) {
|
|
@@ -673,7 +673,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
673
673
|
* Deletes a user by id
|
|
674
674
|
* Deletes a user
|
|
675
675
|
*/
|
|
676
|
-
|
|
676
|
+
RootServerApi.prototype.deleteUserRaw = function (requestParameters, initOverrides) {
|
|
677
677
|
return __awaiter(this, void 0, void 0, function () {
|
|
678
678
|
var queryParameters, headerParameters, _a, _b, response;
|
|
679
679
|
return __generator(this, function (_c) {
|
|
@@ -710,7 +710,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
710
710
|
* Deletes a user by id
|
|
711
711
|
* Deletes a user
|
|
712
712
|
*/
|
|
713
|
-
|
|
713
|
+
RootServerApi.prototype.deleteUser = function (requestParameters, initOverrides) {
|
|
714
714
|
return __awaiter(this, void 0, void 0, function () {
|
|
715
715
|
return __generator(this, function (_a) {
|
|
716
716
|
switch (_a.label) {
|
|
@@ -726,7 +726,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
726
726
|
* Retrieve a format
|
|
727
727
|
* Retrieves a format
|
|
728
728
|
*/
|
|
729
|
-
|
|
729
|
+
RootServerApi.prototype.getFormatRaw = function (requestParameters, initOverrides) {
|
|
730
730
|
return __awaiter(this, void 0, void 0, function () {
|
|
731
731
|
var queryParameters, headerParameters, _a, _b, response;
|
|
732
732
|
return __generator(this, function (_c) {
|
|
@@ -763,7 +763,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
763
763
|
* Retrieve a format
|
|
764
764
|
* Retrieves a format
|
|
765
765
|
*/
|
|
766
|
-
|
|
766
|
+
RootServerApi.prototype.getFormat = function (requestParameters, initOverrides) {
|
|
767
767
|
return __awaiter(this, void 0, void 0, function () {
|
|
768
768
|
var response;
|
|
769
769
|
return __generator(this, function (_a) {
|
|
@@ -781,7 +781,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
781
781
|
* Retrieve formats
|
|
782
782
|
* Retrieves formats
|
|
783
783
|
*/
|
|
784
|
-
|
|
784
|
+
RootServerApi.prototype.getFormatsRaw = function (initOverrides) {
|
|
785
785
|
return __awaiter(this, void 0, void 0, function () {
|
|
786
786
|
var queryParameters, headerParameters, _a, _b, response;
|
|
787
787
|
return __generator(this, function (_c) {
|
|
@@ -815,7 +815,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
815
815
|
* Retrieve formats
|
|
816
816
|
* Retrieves formats
|
|
817
817
|
*/
|
|
818
|
-
|
|
818
|
+
RootServerApi.prototype.getFormats = function (initOverrides) {
|
|
819
819
|
return __awaiter(this, void 0, void 0, function () {
|
|
820
820
|
var response;
|
|
821
821
|
return __generator(this, function (_a) {
|
|
@@ -833,7 +833,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
833
833
|
* Retrieve the laravel log if it exists.
|
|
834
834
|
* Retrieves laravel log
|
|
835
835
|
*/
|
|
836
|
-
|
|
836
|
+
RootServerApi.prototype.getLaravelLogRaw = function (initOverrides) {
|
|
837
837
|
return __awaiter(this, void 0, void 0, function () {
|
|
838
838
|
var queryParameters, headerParameters, _a, _b, response;
|
|
839
839
|
return __generator(this, function (_c) {
|
|
@@ -867,7 +867,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
867
867
|
* Retrieve the laravel log if it exists.
|
|
868
868
|
* Retrieves laravel log
|
|
869
869
|
*/
|
|
870
|
-
|
|
870
|
+
RootServerApi.prototype.getLaravelLog = function (initOverrides) {
|
|
871
871
|
return __awaiter(this, void 0, void 0, function () {
|
|
872
872
|
var response;
|
|
873
873
|
return __generator(this, function (_a) {
|
|
@@ -885,7 +885,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
885
885
|
* Retrieve a meeting.
|
|
886
886
|
* Retrieves a meeting
|
|
887
887
|
*/
|
|
888
|
-
|
|
888
|
+
RootServerApi.prototype.getMeetingRaw = function (requestParameters, initOverrides) {
|
|
889
889
|
return __awaiter(this, void 0, void 0, function () {
|
|
890
890
|
var queryParameters, headerParameters, _a, _b, response;
|
|
891
891
|
return __generator(this, function (_c) {
|
|
@@ -922,7 +922,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
922
922
|
* Retrieve a meeting.
|
|
923
923
|
* Retrieves a meeting
|
|
924
924
|
*/
|
|
925
|
-
|
|
925
|
+
RootServerApi.prototype.getMeeting = function (requestParameters, initOverrides) {
|
|
926
926
|
return __awaiter(this, void 0, void 0, function () {
|
|
927
927
|
var response;
|
|
928
928
|
return __generator(this, function (_a) {
|
|
@@ -940,7 +940,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
940
940
|
* Retrieve all changes made to a specific meeting.
|
|
941
941
|
* Retrieve changes for a meeting
|
|
942
942
|
*/
|
|
943
|
-
|
|
943
|
+
RootServerApi.prototype.getMeetingChangesRaw = function (requestParameters, initOverrides) {
|
|
944
944
|
return __awaiter(this, void 0, void 0, function () {
|
|
945
945
|
var queryParameters, headerParameters, _a, _b, response;
|
|
946
946
|
return __generator(this, function (_c) {
|
|
@@ -977,7 +977,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
977
977
|
* Retrieve all changes made to a specific meeting.
|
|
978
978
|
* Retrieve changes for a meeting
|
|
979
979
|
*/
|
|
980
|
-
|
|
980
|
+
RootServerApi.prototype.getMeetingChanges = function (requestParameters, initOverrides) {
|
|
981
981
|
return __awaiter(this, void 0, void 0, function () {
|
|
982
982
|
var response;
|
|
983
983
|
return __generator(this, function (_a) {
|
|
@@ -995,7 +995,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
995
995
|
* Retrieve meetings for authenticated user.
|
|
996
996
|
* Retrieves meetings
|
|
997
997
|
*/
|
|
998
|
-
|
|
998
|
+
RootServerApi.prototype.getMeetingsRaw = function (requestParameters, initOverrides) {
|
|
999
999
|
return __awaiter(this, void 0, void 0, function () {
|
|
1000
1000
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1001
1001
|
return __generator(this, function (_c) {
|
|
@@ -1041,7 +1041,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1041
1041
|
* Retrieve meetings for authenticated user.
|
|
1042
1042
|
* Retrieves meetings
|
|
1043
1043
|
*/
|
|
1044
|
-
|
|
1044
|
+
RootServerApi.prototype.getMeetings = function (requestParameters, initOverrides) {
|
|
1045
1045
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1046
1046
|
return __awaiter(this, void 0, void 0, function () {
|
|
1047
1047
|
var response;
|
|
@@ -1057,43 +1057,43 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1057
1057
|
});
|
|
1058
1058
|
};
|
|
1059
1059
|
/**
|
|
1060
|
-
* Retrieve a single server id.
|
|
1061
|
-
* Retrieves a server
|
|
1060
|
+
* Retrieve a single root server id.
|
|
1061
|
+
* Retrieves a root server
|
|
1062
1062
|
*/
|
|
1063
|
-
|
|
1063
|
+
RootServerApi.prototype.getRootServerRaw = function (requestParameters, initOverrides) {
|
|
1064
1064
|
return __awaiter(this, void 0, void 0, function () {
|
|
1065
1065
|
var queryParameters, headerParameters, response;
|
|
1066
1066
|
return __generator(this, function (_a) {
|
|
1067
1067
|
switch (_a.label) {
|
|
1068
1068
|
case 0:
|
|
1069
|
-
if (requestParameters['
|
|
1070
|
-
throw new runtime.RequiredError('
|
|
1069
|
+
if (requestParameters['rootServerId'] == null) {
|
|
1070
|
+
throw new runtime.RequiredError('rootServerId', 'Required parameter "rootServerId" was null or undefined when calling getRootServer().');
|
|
1071
1071
|
}
|
|
1072
1072
|
queryParameters = {};
|
|
1073
1073
|
headerParameters = {};
|
|
1074
1074
|
return [4 /*yield*/, this.request({
|
|
1075
|
-
path: "/api/v1/
|
|
1075
|
+
path: "/api/v1/rootservers/{rootServerId}".replace("{".concat("rootServerId", "}"), encodeURIComponent(String(requestParameters['rootServerId']))),
|
|
1076
1076
|
method: 'GET',
|
|
1077
1077
|
headers: headerParameters,
|
|
1078
1078
|
query: queryParameters,
|
|
1079
1079
|
}, initOverrides)];
|
|
1080
1080
|
case 1:
|
|
1081
1081
|
response = _a.sent();
|
|
1082
|
-
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.
|
|
1082
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.RootServerFromJSON)(jsonValue); })];
|
|
1083
1083
|
}
|
|
1084
1084
|
});
|
|
1085
1085
|
});
|
|
1086
1086
|
};
|
|
1087
1087
|
/**
|
|
1088
|
-
* Retrieve a single server id.
|
|
1089
|
-
* Retrieves a server
|
|
1088
|
+
* Retrieve a single root server id.
|
|
1089
|
+
* Retrieves a root server
|
|
1090
1090
|
*/
|
|
1091
|
-
|
|
1091
|
+
RootServerApi.prototype.getRootServer = function (requestParameters, initOverrides) {
|
|
1092
1092
|
return __awaiter(this, void 0, void 0, function () {
|
|
1093
1093
|
var response;
|
|
1094
1094
|
return __generator(this, function (_a) {
|
|
1095
1095
|
switch (_a.label) {
|
|
1096
|
-
case 0: return [4 /*yield*/, this.
|
|
1096
|
+
case 0: return [4 /*yield*/, this.getRootServerRaw(requestParameters, initOverrides)];
|
|
1097
1097
|
case 1:
|
|
1098
1098
|
response = _a.sent();
|
|
1099
1099
|
return [4 /*yield*/, response.value()];
|
|
@@ -1103,10 +1103,10 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1103
1103
|
});
|
|
1104
1104
|
};
|
|
1105
1105
|
/**
|
|
1106
|
-
* Retrieve servers.
|
|
1107
|
-
* Retrieves servers
|
|
1106
|
+
* Retrieve root servers.
|
|
1107
|
+
* Retrieves root servers
|
|
1108
1108
|
*/
|
|
1109
|
-
|
|
1109
|
+
RootServerApi.prototype.getRootServersRaw = function (initOverrides) {
|
|
1110
1110
|
return __awaiter(this, void 0, void 0, function () {
|
|
1111
1111
|
var queryParameters, headerParameters, response;
|
|
1112
1112
|
return __generator(this, function (_a) {
|
|
@@ -1115,28 +1115,28 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1115
1115
|
queryParameters = {};
|
|
1116
1116
|
headerParameters = {};
|
|
1117
1117
|
return [4 /*yield*/, this.request({
|
|
1118
|
-
path: "/api/v1/
|
|
1118
|
+
path: "/api/v1/rootservers",
|
|
1119
1119
|
method: 'GET',
|
|
1120
1120
|
headers: headerParameters,
|
|
1121
1121
|
query: queryParameters,
|
|
1122
1122
|
}, initOverrides)];
|
|
1123
1123
|
case 1:
|
|
1124
1124
|
response = _a.sent();
|
|
1125
|
-
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return jsonValue.map(index_1.
|
|
1125
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return jsonValue.map(index_1.RootServerFromJSON); })];
|
|
1126
1126
|
}
|
|
1127
1127
|
});
|
|
1128
1128
|
});
|
|
1129
1129
|
};
|
|
1130
1130
|
/**
|
|
1131
|
-
* Retrieve servers.
|
|
1132
|
-
* Retrieves servers
|
|
1131
|
+
* Retrieve root servers.
|
|
1132
|
+
* Retrieves root servers
|
|
1133
1133
|
*/
|
|
1134
|
-
|
|
1134
|
+
RootServerApi.prototype.getRootServers = function (initOverrides) {
|
|
1135
1135
|
return __awaiter(this, void 0, void 0, function () {
|
|
1136
1136
|
var response;
|
|
1137
1137
|
return __generator(this, function (_a) {
|
|
1138
1138
|
switch (_a.label) {
|
|
1139
|
-
case 0: return [4 /*yield*/, this.
|
|
1139
|
+
case 0: return [4 /*yield*/, this.getRootServersRaw(initOverrides)];
|
|
1140
1140
|
case 1:
|
|
1141
1141
|
response = _a.sent();
|
|
1142
1142
|
return [4 /*yield*/, response.value()];
|
|
@@ -1149,7 +1149,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1149
1149
|
* Retrieve service bodies for authenticated user.
|
|
1150
1150
|
* Retrieves service bodies
|
|
1151
1151
|
*/
|
|
1152
|
-
|
|
1152
|
+
RootServerApi.prototype.getServiceBodiesRaw = function (initOverrides) {
|
|
1153
1153
|
return __awaiter(this, void 0, void 0, function () {
|
|
1154
1154
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1155
1155
|
return __generator(this, function (_c) {
|
|
@@ -1183,7 +1183,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1183
1183
|
* Retrieve service bodies for authenticated user.
|
|
1184
1184
|
* Retrieves service bodies
|
|
1185
1185
|
*/
|
|
1186
|
-
|
|
1186
|
+
RootServerApi.prototype.getServiceBodies = function (initOverrides) {
|
|
1187
1187
|
return __awaiter(this, void 0, void 0, function () {
|
|
1188
1188
|
var response;
|
|
1189
1189
|
return __generator(this, function (_a) {
|
|
@@ -1201,7 +1201,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1201
1201
|
* Retrieve a single service body by id.
|
|
1202
1202
|
* Retrieves a service body
|
|
1203
1203
|
*/
|
|
1204
|
-
|
|
1204
|
+
RootServerApi.prototype.getServiceBodyRaw = function (requestParameters, initOverrides) {
|
|
1205
1205
|
return __awaiter(this, void 0, void 0, function () {
|
|
1206
1206
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1207
1207
|
return __generator(this, function (_c) {
|
|
@@ -1238,7 +1238,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1238
1238
|
* Retrieve a single service body by id.
|
|
1239
1239
|
* Retrieves a service body
|
|
1240
1240
|
*/
|
|
1241
|
-
|
|
1241
|
+
RootServerApi.prototype.getServiceBody = function (requestParameters, initOverrides) {
|
|
1242
1242
|
return __awaiter(this, void 0, void 0, function () {
|
|
1243
1243
|
var response;
|
|
1244
1244
|
return __generator(this, function (_a) {
|
|
@@ -1256,7 +1256,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1256
1256
|
* Retrieve single user.
|
|
1257
1257
|
* Retrieves a single user
|
|
1258
1258
|
*/
|
|
1259
|
-
|
|
1259
|
+
RootServerApi.prototype.getUserRaw = function (requestParameters, initOverrides) {
|
|
1260
1260
|
return __awaiter(this, void 0, void 0, function () {
|
|
1261
1261
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1262
1262
|
return __generator(this, function (_c) {
|
|
@@ -1293,7 +1293,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1293
1293
|
* Retrieve single user.
|
|
1294
1294
|
* Retrieves a single user
|
|
1295
1295
|
*/
|
|
1296
|
-
|
|
1296
|
+
RootServerApi.prototype.getUser = function (requestParameters, initOverrides) {
|
|
1297
1297
|
return __awaiter(this, void 0, void 0, function () {
|
|
1298
1298
|
var response;
|
|
1299
1299
|
return __generator(this, function (_a) {
|
|
@@ -1311,7 +1311,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1311
1311
|
* Retrieve users for authenticated user.
|
|
1312
1312
|
* Retrieves users
|
|
1313
1313
|
*/
|
|
1314
|
-
|
|
1314
|
+
RootServerApi.prototype.getUsersRaw = function (initOverrides) {
|
|
1315
1315
|
return __awaiter(this, void 0, void 0, function () {
|
|
1316
1316
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1317
1317
|
return __generator(this, function (_c) {
|
|
@@ -1345,7 +1345,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1345
1345
|
* Retrieve users for authenticated user.
|
|
1346
1346
|
* Retrieves users
|
|
1347
1347
|
*/
|
|
1348
|
-
|
|
1348
|
+
RootServerApi.prototype.getUsers = function (initOverrides) {
|
|
1349
1349
|
return __awaiter(this, void 0, void 0, function () {
|
|
1350
1350
|
var response;
|
|
1351
1351
|
return __generator(this, function (_a) {
|
|
@@ -1363,7 +1363,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1363
1363
|
* Patches a user by id.
|
|
1364
1364
|
* Patches a user
|
|
1365
1365
|
*/
|
|
1366
|
-
|
|
1366
|
+
RootServerApi.prototype.partialUpdateUserRaw = function (requestParameters, initOverrides) {
|
|
1367
1367
|
return __awaiter(this, void 0, void 0, function () {
|
|
1368
1368
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1369
1369
|
return __generator(this, function (_c) {
|
|
@@ -1405,7 +1405,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1405
1405
|
* Patches a user by id.
|
|
1406
1406
|
* Patches a user
|
|
1407
1407
|
*/
|
|
1408
|
-
|
|
1408
|
+
RootServerApi.prototype.partialUpdateUser = function (requestParameters, initOverrides) {
|
|
1409
1409
|
return __awaiter(this, void 0, void 0, function () {
|
|
1410
1410
|
return __generator(this, function (_a) {
|
|
1411
1411
|
switch (_a.label) {
|
|
@@ -1421,7 +1421,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1421
1421
|
* Patches a single format by id.
|
|
1422
1422
|
* Patches a format
|
|
1423
1423
|
*/
|
|
1424
|
-
|
|
1424
|
+
RootServerApi.prototype.patchFormatRaw = function (requestParameters, initOverrides) {
|
|
1425
1425
|
return __awaiter(this, void 0, void 0, function () {
|
|
1426
1426
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1427
1427
|
return __generator(this, function (_c) {
|
|
@@ -1463,7 +1463,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1463
1463
|
* Patches a single format by id.
|
|
1464
1464
|
* Patches a format
|
|
1465
1465
|
*/
|
|
1466
|
-
|
|
1466
|
+
RootServerApi.prototype.patchFormat = function (requestParameters, initOverrides) {
|
|
1467
1467
|
return __awaiter(this, void 0, void 0, function () {
|
|
1468
1468
|
return __generator(this, function (_a) {
|
|
1469
1469
|
switch (_a.label) {
|
|
@@ -1479,7 +1479,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1479
1479
|
* Patches a meeting by id
|
|
1480
1480
|
* Patches a meeting
|
|
1481
1481
|
*/
|
|
1482
|
-
|
|
1482
|
+
RootServerApi.prototype.patchMeetingRaw = function (requestParameters, initOverrides) {
|
|
1483
1483
|
return __awaiter(this, void 0, void 0, function () {
|
|
1484
1484
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1485
1485
|
return __generator(this, function (_c) {
|
|
@@ -1521,7 +1521,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1521
1521
|
* Patches a meeting by id
|
|
1522
1522
|
* Patches a meeting
|
|
1523
1523
|
*/
|
|
1524
|
-
|
|
1524
|
+
RootServerApi.prototype.patchMeeting = function (requestParameters, initOverrides) {
|
|
1525
1525
|
return __awaiter(this, void 0, void 0, function () {
|
|
1526
1526
|
return __generator(this, function (_a) {
|
|
1527
1527
|
switch (_a.label) {
|
|
@@ -1537,7 +1537,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1537
1537
|
* Patches a single service body by id.
|
|
1538
1538
|
* Patches a service body
|
|
1539
1539
|
*/
|
|
1540
|
-
|
|
1540
|
+
RootServerApi.prototype.patchServiceBodyRaw = function (requestParameters, initOverrides) {
|
|
1541
1541
|
return __awaiter(this, void 0, void 0, function () {
|
|
1542
1542
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1543
1543
|
return __generator(this, function (_c) {
|
|
@@ -1579,7 +1579,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1579
1579
|
* Patches a single service body by id.
|
|
1580
1580
|
* Patches a service body
|
|
1581
1581
|
*/
|
|
1582
|
-
|
|
1582
|
+
RootServerApi.prototype.patchServiceBody = function (requestParameters, initOverrides) {
|
|
1583
1583
|
return __awaiter(this, void 0, void 0, function () {
|
|
1584
1584
|
return __generator(this, function (_a) {
|
|
1585
1585
|
switch (_a.label) {
|
|
@@ -1595,7 +1595,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1595
1595
|
* Updates a format.
|
|
1596
1596
|
* Updates a format
|
|
1597
1597
|
*/
|
|
1598
|
-
|
|
1598
|
+
RootServerApi.prototype.updateFormatRaw = function (requestParameters, initOverrides) {
|
|
1599
1599
|
return __awaiter(this, void 0, void 0, function () {
|
|
1600
1600
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1601
1601
|
return __generator(this, function (_c) {
|
|
@@ -1637,7 +1637,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1637
1637
|
* Updates a format.
|
|
1638
1638
|
* Updates a format
|
|
1639
1639
|
*/
|
|
1640
|
-
|
|
1640
|
+
RootServerApi.prototype.updateFormat = function (requestParameters, initOverrides) {
|
|
1641
1641
|
return __awaiter(this, void 0, void 0, function () {
|
|
1642
1642
|
return __generator(this, function (_a) {
|
|
1643
1643
|
switch (_a.label) {
|
|
@@ -1653,7 +1653,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1653
1653
|
* Updates a meeting.
|
|
1654
1654
|
* Updates a meeting
|
|
1655
1655
|
*/
|
|
1656
|
-
|
|
1656
|
+
RootServerApi.prototype.updateMeetingRaw = function (requestParameters, initOverrides) {
|
|
1657
1657
|
return __awaiter(this, void 0, void 0, function () {
|
|
1658
1658
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1659
1659
|
return __generator(this, function (_c) {
|
|
@@ -1695,7 +1695,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1695
1695
|
* Updates a meeting.
|
|
1696
1696
|
* Updates a meeting
|
|
1697
1697
|
*/
|
|
1698
|
-
|
|
1698
|
+
RootServerApi.prototype.updateMeeting = function (requestParameters, initOverrides) {
|
|
1699
1699
|
return __awaiter(this, void 0, void 0, function () {
|
|
1700
1700
|
return __generator(this, function (_a) {
|
|
1701
1701
|
switch (_a.label) {
|
|
@@ -1711,7 +1711,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1711
1711
|
* Updates a single service body.
|
|
1712
1712
|
* Updates a Service Body
|
|
1713
1713
|
*/
|
|
1714
|
-
|
|
1714
|
+
RootServerApi.prototype.updateServiceBodyRaw = function (requestParameters, initOverrides) {
|
|
1715
1715
|
return __awaiter(this, void 0, void 0, function () {
|
|
1716
1716
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1717
1717
|
return __generator(this, function (_c) {
|
|
@@ -1753,7 +1753,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1753
1753
|
* Updates a single service body.
|
|
1754
1754
|
* Updates a Service Body
|
|
1755
1755
|
*/
|
|
1756
|
-
|
|
1756
|
+
RootServerApi.prototype.updateServiceBody = function (requestParameters, initOverrides) {
|
|
1757
1757
|
return __awaiter(this, void 0, void 0, function () {
|
|
1758
1758
|
return __generator(this, function (_a) {
|
|
1759
1759
|
switch (_a.label) {
|
|
@@ -1769,7 +1769,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1769
1769
|
* Updates a user.
|
|
1770
1770
|
* Update single user
|
|
1771
1771
|
*/
|
|
1772
|
-
|
|
1772
|
+
RootServerApi.prototype.updateUserRaw = function (requestParameters, initOverrides) {
|
|
1773
1773
|
return __awaiter(this, void 0, void 0, function () {
|
|
1774
1774
|
var queryParameters, headerParameters, _a, _b, response;
|
|
1775
1775
|
return __generator(this, function (_c) {
|
|
@@ -1811,7 +1811,7 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1811
1811
|
* Updates a user.
|
|
1812
1812
|
* Update single user
|
|
1813
1813
|
*/
|
|
1814
|
-
|
|
1814
|
+
RootServerApi.prototype.updateUser = function (requestParameters, initOverrides) {
|
|
1815
1815
|
return __awaiter(this, void 0, void 0, function () {
|
|
1816
1816
|
return __generator(this, function (_a) {
|
|
1817
1817
|
switch (_a.label) {
|
|
@@ -1823,6 +1823,6 @@ var ServerApi = /** @class */ (function (_super) {
|
|
|
1823
1823
|
});
|
|
1824
1824
|
});
|
|
1825
1825
|
};
|
|
1826
|
-
return
|
|
1826
|
+
return RootServerApi;
|
|
1827
1827
|
}(runtime.BaseAPI));
|
|
1828
|
-
exports.
|
|
1828
|
+
exports.RootServerApi = RootServerApi;
|
package/dist/apis/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './RootServerApi';
|
package/dist/apis/index.js
CHANGED
|
@@ -16,4 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
/* tslint:disable */
|
|
18
18
|
/* eslint-disable */
|
|
19
|
-
__exportStar(require("./
|
|
19
|
+
__exportStar(require("./RootServerApi"), exports);
|