ob-bms-sdk 0.0.97 → 0.0.99
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/api/api.ts +812 -189
- package/api/base.ts +1 -1
- package/api/common.ts +1 -1
- package/api/configuration.ts +1 -1
- package/api/index.ts +1 -1
- package/dist/api/api.d.ts +641 -107
- package/dist/api/api.js +286 -142
- package/dist/api/base.d.ts +1 -1
- package/dist/api/base.js +1 -1
- package/dist/api/common.d.ts +1 -1
- package/dist/api/common.js +1 -1
- package/dist/api/configuration.d.ts +1 -1
- package/dist/api/configuration.js +1 -1
- package/dist/api/index.d.ts +1 -1
- package/dist/api/index.js +1 -1
- package/package.json +1 -1
package/dist/api/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* ob-bms
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.15
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -354,26 +354,25 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
354
354
|
}),
|
|
355
355
|
/**
|
|
356
356
|
*
|
|
357
|
-
* @param {AccessorType}
|
|
357
|
+
* @param {AccessorType} accessorType
|
|
358
358
|
* @param {string} [orderBy]
|
|
359
359
|
* @param {string} [orderDirection]
|
|
360
360
|
* @param {number} [pageNumber]
|
|
361
361
|
* @param {number} [pageSize]
|
|
362
|
-
* @param {string} [name]
|
|
363
362
|
* @param {string} [displayTower]
|
|
364
|
-
* @param {string} [companyName]
|
|
365
|
-
* @param {string} [id]
|
|
366
363
|
* @param {string} [filter]
|
|
364
|
+
* @param {string} [id]
|
|
367
365
|
* @param {string} [building]
|
|
368
366
|
* @param {number} [status]
|
|
369
367
|
* @param {string} [startDate]
|
|
370
368
|
* @param {string} [endDate]
|
|
369
|
+
* @param {string} [name]
|
|
371
370
|
* @param {*} [options] Override http request option.
|
|
372
371
|
* @throws {RequiredError}
|
|
373
372
|
*/
|
|
374
|
-
buildingAccessLogsIndex: (
|
|
375
|
-
// verify required parameter '
|
|
376
|
-
(0, common_1.assertParamExists)('buildingAccessLogsIndex', '
|
|
373
|
+
buildingAccessLogsIndex: (accessorType, orderBy, orderDirection, pageNumber, pageSize, displayTower, filter, id, building, status, startDate, endDate, name, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
374
|
+
// verify required parameter 'accessorType' is not null or undefined
|
|
375
|
+
(0, common_1.assertParamExists)('buildingAccessLogsIndex', 'accessorType', accessorType);
|
|
377
376
|
const localVarPath = `/building_access`;
|
|
378
377
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
379
378
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -396,24 +395,18 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
396
395
|
if (pageSize !== undefined) {
|
|
397
396
|
localVarQueryParameter['page_size'] = pageSize;
|
|
398
397
|
}
|
|
399
|
-
if (
|
|
400
|
-
localVarQueryParameter['
|
|
401
|
-
}
|
|
402
|
-
if (name !== undefined) {
|
|
403
|
-
localVarQueryParameter['name'] = name;
|
|
398
|
+
if (accessorType !== undefined) {
|
|
399
|
+
localVarQueryParameter['accessorType'] = accessorType;
|
|
404
400
|
}
|
|
405
401
|
if (displayTower !== undefined) {
|
|
406
402
|
localVarQueryParameter['display_tower'] = displayTower;
|
|
407
403
|
}
|
|
408
|
-
if (
|
|
409
|
-
localVarQueryParameter['
|
|
404
|
+
if (filter !== undefined) {
|
|
405
|
+
localVarQueryParameter['filter'] = filter;
|
|
410
406
|
}
|
|
411
407
|
if (id !== undefined) {
|
|
412
408
|
localVarQueryParameter['id'] = id;
|
|
413
409
|
}
|
|
414
|
-
if (filter !== undefined) {
|
|
415
|
-
localVarQueryParameter['filter'] = filter;
|
|
416
|
-
}
|
|
417
410
|
if (building !== undefined) {
|
|
418
411
|
localVarQueryParameter['building'] = building;
|
|
419
412
|
}
|
|
@@ -426,6 +419,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
426
419
|
if (endDate !== undefined) {
|
|
427
420
|
localVarQueryParameter['endDate'] = endDate;
|
|
428
421
|
}
|
|
422
|
+
if (name !== undefined) {
|
|
423
|
+
localVarQueryParameter['name'] = name;
|
|
424
|
+
}
|
|
429
425
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
430
426
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
431
427
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -437,28 +433,15 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
437
433
|
/**
|
|
438
434
|
*
|
|
439
435
|
* @param {string} id
|
|
440
|
-
* @param {AccessorType}
|
|
441
|
-
* @param {string} [orderBy]
|
|
442
|
-
* @param {string} [orderDirection]
|
|
443
|
-
* @param {number} [pageNumber]
|
|
444
|
-
* @param {number} [pageSize]
|
|
445
|
-
* @param {string} [name]
|
|
446
|
-
* @param {string} [displayTower]
|
|
447
|
-
* @param {string} [companyName]
|
|
448
|
-
* @param {string} [id2]
|
|
449
|
-
* @param {string} [filter]
|
|
450
|
-
* @param {string} [building]
|
|
451
|
-
* @param {number} [status]
|
|
452
|
-
* @param {string} [startDate]
|
|
453
|
-
* @param {string} [endDate]
|
|
436
|
+
* @param {AccessorType} accessorType
|
|
454
437
|
* @param {*} [options] Override http request option.
|
|
455
438
|
* @throws {RequiredError}
|
|
456
439
|
*/
|
|
457
|
-
buildingAccessLogsShow: (id,
|
|
440
|
+
buildingAccessLogsShow: (id, accessorType, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
458
441
|
// verify required parameter 'id' is not null or undefined
|
|
459
442
|
(0, common_1.assertParamExists)('buildingAccessLogsShow', 'id', id);
|
|
460
|
-
// verify required parameter '
|
|
461
|
-
(0, common_1.assertParamExists)('buildingAccessLogsShow', '
|
|
443
|
+
// verify required parameter 'accessorType' is not null or undefined
|
|
444
|
+
(0, common_1.assertParamExists)('buildingAccessLogsShow', 'accessorType', accessorType);
|
|
462
445
|
const localVarPath = `/building_access/{id}`
|
|
463
446
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
464
447
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -470,47 +453,8 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
470
453
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
471
454
|
const localVarHeaderParameter = {};
|
|
472
455
|
const localVarQueryParameter = {};
|
|
473
|
-
if (
|
|
474
|
-
localVarQueryParameter['
|
|
475
|
-
}
|
|
476
|
-
if (orderDirection !== undefined) {
|
|
477
|
-
localVarQueryParameter['order_direction'] = orderDirection;
|
|
478
|
-
}
|
|
479
|
-
if (pageNumber !== undefined) {
|
|
480
|
-
localVarQueryParameter['page_number'] = pageNumber;
|
|
481
|
-
}
|
|
482
|
-
if (pageSize !== undefined) {
|
|
483
|
-
localVarQueryParameter['page_size'] = pageSize;
|
|
484
|
-
}
|
|
485
|
-
if (type !== undefined) {
|
|
486
|
-
localVarQueryParameter['type'] = type;
|
|
487
|
-
}
|
|
488
|
-
if (name !== undefined) {
|
|
489
|
-
localVarQueryParameter['name'] = name;
|
|
490
|
-
}
|
|
491
|
-
if (displayTower !== undefined) {
|
|
492
|
-
localVarQueryParameter['display_tower'] = displayTower;
|
|
493
|
-
}
|
|
494
|
-
if (companyName !== undefined) {
|
|
495
|
-
localVarQueryParameter['company_name'] = companyName;
|
|
496
|
-
}
|
|
497
|
-
if (id2 !== undefined) {
|
|
498
|
-
localVarQueryParameter['id'] = id2;
|
|
499
|
-
}
|
|
500
|
-
if (filter !== undefined) {
|
|
501
|
-
localVarQueryParameter['filter'] = filter;
|
|
502
|
-
}
|
|
503
|
-
if (building !== undefined) {
|
|
504
|
-
localVarQueryParameter['building'] = building;
|
|
505
|
-
}
|
|
506
|
-
if (status !== undefined) {
|
|
507
|
-
localVarQueryParameter['status'] = status;
|
|
508
|
-
}
|
|
509
|
-
if (startDate !== undefined) {
|
|
510
|
-
localVarQueryParameter['startDate'] = startDate;
|
|
511
|
-
}
|
|
512
|
-
if (endDate !== undefined) {
|
|
513
|
-
localVarQueryParameter['endDate'] = endDate;
|
|
456
|
+
if (accessorType !== undefined) {
|
|
457
|
+
localVarQueryParameter['accessorType'] = accessorType;
|
|
514
458
|
}
|
|
515
459
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
516
460
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1032,6 +976,99 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1032
976
|
options: localVarRequestOptions,
|
|
1033
977
|
};
|
|
1034
978
|
}),
|
|
979
|
+
/**
|
|
980
|
+
*
|
|
981
|
+
* @param {string} [orderBy]
|
|
982
|
+
* @param {string} [orderDirection]
|
|
983
|
+
* @param {number} [pageNumber]
|
|
984
|
+
* @param {number} [pageSize]
|
|
985
|
+
* @param {string} [floorId]
|
|
986
|
+
* @param {string} [tenantId]
|
|
987
|
+
* @param {*} [options] Override http request option.
|
|
988
|
+
* @throws {RequiredError}
|
|
989
|
+
*/
|
|
990
|
+
membersV2Index: (orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
991
|
+
const localVarPath = `/v2/members`;
|
|
992
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
993
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
994
|
+
let baseOptions;
|
|
995
|
+
if (configuration) {
|
|
996
|
+
baseOptions = configuration.baseOptions;
|
|
997
|
+
}
|
|
998
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
999
|
+
const localVarHeaderParameter = {};
|
|
1000
|
+
const localVarQueryParameter = {};
|
|
1001
|
+
if (orderBy !== undefined) {
|
|
1002
|
+
localVarQueryParameter['order_by'] = orderBy;
|
|
1003
|
+
}
|
|
1004
|
+
if (orderDirection !== undefined) {
|
|
1005
|
+
localVarQueryParameter['order_direction'] = orderDirection;
|
|
1006
|
+
}
|
|
1007
|
+
if (pageNumber !== undefined) {
|
|
1008
|
+
localVarQueryParameter['page_number'] = pageNumber;
|
|
1009
|
+
}
|
|
1010
|
+
if (pageSize !== undefined) {
|
|
1011
|
+
localVarQueryParameter['page_size'] = pageSize;
|
|
1012
|
+
}
|
|
1013
|
+
if (floorId !== undefined) {
|
|
1014
|
+
localVarQueryParameter['floor_id'] = floorId;
|
|
1015
|
+
}
|
|
1016
|
+
if (tenantId !== undefined) {
|
|
1017
|
+
localVarQueryParameter['tenant_id'] = tenantId;
|
|
1018
|
+
}
|
|
1019
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1020
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1021
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1022
|
+
return {
|
|
1023
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1024
|
+
options: localVarRequestOptions,
|
|
1025
|
+
};
|
|
1026
|
+
}),
|
|
1027
|
+
/**
|
|
1028
|
+
*
|
|
1029
|
+
* @param {MemberListBody} memberListBody
|
|
1030
|
+
* @param {string} [orderBy]
|
|
1031
|
+
* @param {string} [orderDirection]
|
|
1032
|
+
* @param {number} [pageNumber]
|
|
1033
|
+
* @param {number} [pageSize]
|
|
1034
|
+
* @param {*} [options] Override http request option.
|
|
1035
|
+
* @throws {RequiredError}
|
|
1036
|
+
*/
|
|
1037
|
+
membersV2ListMembers: (memberListBody, orderBy, orderDirection, pageNumber, pageSize, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1038
|
+
// verify required parameter 'memberListBody' is not null or undefined
|
|
1039
|
+
(0, common_1.assertParamExists)('membersV2ListMembers', 'memberListBody', memberListBody);
|
|
1040
|
+
const localVarPath = `/v2/members`;
|
|
1041
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1042
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1043
|
+
let baseOptions;
|
|
1044
|
+
if (configuration) {
|
|
1045
|
+
baseOptions = configuration.baseOptions;
|
|
1046
|
+
}
|
|
1047
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1048
|
+
const localVarHeaderParameter = {};
|
|
1049
|
+
const localVarQueryParameter = {};
|
|
1050
|
+
if (orderBy !== undefined) {
|
|
1051
|
+
localVarQueryParameter['order_by'] = orderBy;
|
|
1052
|
+
}
|
|
1053
|
+
if (orderDirection !== undefined) {
|
|
1054
|
+
localVarQueryParameter['order_direction'] = orderDirection;
|
|
1055
|
+
}
|
|
1056
|
+
if (pageNumber !== undefined) {
|
|
1057
|
+
localVarQueryParameter['page_number'] = pageNumber;
|
|
1058
|
+
}
|
|
1059
|
+
if (pageSize !== undefined) {
|
|
1060
|
+
localVarQueryParameter['page_size'] = pageSize;
|
|
1061
|
+
}
|
|
1062
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1063
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1064
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1065
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1066
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(memberListBody, localVarRequestOptions, configuration);
|
|
1067
|
+
return {
|
|
1068
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1069
|
+
options: localVarRequestOptions,
|
|
1070
|
+
};
|
|
1071
|
+
}),
|
|
1035
1072
|
/**
|
|
1036
1073
|
*
|
|
1037
1074
|
* @param {string} [orderBy]
|
|
@@ -1224,6 +1261,35 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1224
1261
|
options: localVarRequestOptions,
|
|
1225
1262
|
};
|
|
1226
1263
|
}),
|
|
1264
|
+
/**
|
|
1265
|
+
*
|
|
1266
|
+
* @param {ParkingSpaceDetailBody} parkingSpaceDetailBody
|
|
1267
|
+
* @param {*} [options] Override http request option.
|
|
1268
|
+
* @throws {RequiredError}
|
|
1269
|
+
*/
|
|
1270
|
+
parkingTicketsLocation: (parkingSpaceDetailBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1271
|
+
// verify required parameter 'parkingSpaceDetailBody' is not null or undefined
|
|
1272
|
+
(0, common_1.assertParamExists)('parkingTicketsLocation', 'parkingSpaceDetailBody', parkingSpaceDetailBody);
|
|
1273
|
+
const localVarPath = `/parking_tickets/location`;
|
|
1274
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1275
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1276
|
+
let baseOptions;
|
|
1277
|
+
if (configuration) {
|
|
1278
|
+
baseOptions = configuration.baseOptions;
|
|
1279
|
+
}
|
|
1280
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1281
|
+
const localVarHeaderParameter = {};
|
|
1282
|
+
const localVarQueryParameter = {};
|
|
1283
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1284
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1285
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1286
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1287
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(parkingSpaceDetailBody, localVarRequestOptions, configuration);
|
|
1288
|
+
return {
|
|
1289
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1290
|
+
options: localVarRequestOptions,
|
|
1291
|
+
};
|
|
1292
|
+
}),
|
|
1227
1293
|
/**
|
|
1228
1294
|
*
|
|
1229
1295
|
* @param {string} logId
|
|
@@ -1808,52 +1874,38 @@ const DefaultApiFp = function (configuration) {
|
|
|
1808
1874
|
},
|
|
1809
1875
|
/**
|
|
1810
1876
|
*
|
|
1811
|
-
* @param {AccessorType}
|
|
1877
|
+
* @param {AccessorType} accessorType
|
|
1812
1878
|
* @param {string} [orderBy]
|
|
1813
1879
|
* @param {string} [orderDirection]
|
|
1814
1880
|
* @param {number} [pageNumber]
|
|
1815
1881
|
* @param {number} [pageSize]
|
|
1816
|
-
* @param {string} [name]
|
|
1817
1882
|
* @param {string} [displayTower]
|
|
1818
|
-
* @param {string} [companyName]
|
|
1819
|
-
* @param {string} [id]
|
|
1820
1883
|
* @param {string} [filter]
|
|
1884
|
+
* @param {string} [id]
|
|
1821
1885
|
* @param {string} [building]
|
|
1822
1886
|
* @param {number} [status]
|
|
1823
1887
|
* @param {string} [startDate]
|
|
1824
1888
|
* @param {string} [endDate]
|
|
1889
|
+
* @param {string} [name]
|
|
1825
1890
|
* @param {*} [options] Override http request option.
|
|
1826
1891
|
* @throws {RequiredError}
|
|
1827
1892
|
*/
|
|
1828
|
-
buildingAccessLogsIndex(
|
|
1893
|
+
buildingAccessLogsIndex(accessorType, orderBy, orderDirection, pageNumber, pageSize, displayTower, filter, id, building, status, startDate, endDate, name, options) {
|
|
1829
1894
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1830
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.buildingAccessLogsIndex(
|
|
1895
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.buildingAccessLogsIndex(accessorType, orderBy, orderDirection, pageNumber, pageSize, displayTower, filter, id, building, status, startDate, endDate, name, options);
|
|
1831
1896
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1832
1897
|
});
|
|
1833
1898
|
},
|
|
1834
1899
|
/**
|
|
1835
1900
|
*
|
|
1836
1901
|
* @param {string} id
|
|
1837
|
-
* @param {AccessorType}
|
|
1838
|
-
* @param {string} [orderBy]
|
|
1839
|
-
* @param {string} [orderDirection]
|
|
1840
|
-
* @param {number} [pageNumber]
|
|
1841
|
-
* @param {number} [pageSize]
|
|
1842
|
-
* @param {string} [name]
|
|
1843
|
-
* @param {string} [displayTower]
|
|
1844
|
-
* @param {string} [companyName]
|
|
1845
|
-
* @param {string} [id2]
|
|
1846
|
-
* @param {string} [filter]
|
|
1847
|
-
* @param {string} [building]
|
|
1848
|
-
* @param {number} [status]
|
|
1849
|
-
* @param {string} [startDate]
|
|
1850
|
-
* @param {string} [endDate]
|
|
1902
|
+
* @param {AccessorType} accessorType
|
|
1851
1903
|
* @param {*} [options] Override http request option.
|
|
1852
1904
|
* @throws {RequiredError}
|
|
1853
1905
|
*/
|
|
1854
|
-
buildingAccessLogsShow(id,
|
|
1906
|
+
buildingAccessLogsShow(id, accessorType, options) {
|
|
1855
1907
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1856
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.buildingAccessLogsShow(id,
|
|
1908
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.buildingAccessLogsShow(id, accessorType, options);
|
|
1857
1909
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1858
1910
|
});
|
|
1859
1911
|
},
|
|
@@ -2068,6 +2120,39 @@ const DefaultApiFp = function (configuration) {
|
|
|
2068
2120
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2069
2121
|
});
|
|
2070
2122
|
},
|
|
2123
|
+
/**
|
|
2124
|
+
*
|
|
2125
|
+
* @param {string} [orderBy]
|
|
2126
|
+
* @param {string} [orderDirection]
|
|
2127
|
+
* @param {number} [pageNumber]
|
|
2128
|
+
* @param {number} [pageSize]
|
|
2129
|
+
* @param {string} [floorId]
|
|
2130
|
+
* @param {string} [tenantId]
|
|
2131
|
+
* @param {*} [options] Override http request option.
|
|
2132
|
+
* @throws {RequiredError}
|
|
2133
|
+
*/
|
|
2134
|
+
membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options) {
|
|
2135
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2136
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options);
|
|
2137
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2138
|
+
});
|
|
2139
|
+
},
|
|
2140
|
+
/**
|
|
2141
|
+
*
|
|
2142
|
+
* @param {MemberListBody} memberListBody
|
|
2143
|
+
* @param {string} [orderBy]
|
|
2144
|
+
* @param {string} [orderDirection]
|
|
2145
|
+
* @param {number} [pageNumber]
|
|
2146
|
+
* @param {number} [pageSize]
|
|
2147
|
+
* @param {*} [options] Override http request option.
|
|
2148
|
+
* @throws {RequiredError}
|
|
2149
|
+
*/
|
|
2150
|
+
membersV2ListMembers(memberListBody, orderBy, orderDirection, pageNumber, pageSize, options) {
|
|
2151
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2152
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.membersV2ListMembers(memberListBody, orderBy, orderDirection, pageNumber, pageSize, options);
|
|
2153
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2154
|
+
});
|
|
2155
|
+
},
|
|
2071
2156
|
/**
|
|
2072
2157
|
*
|
|
2073
2158
|
* @param {string} [orderBy]
|
|
@@ -2139,6 +2224,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
2139
2224
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2140
2225
|
});
|
|
2141
2226
|
},
|
|
2227
|
+
/**
|
|
2228
|
+
*
|
|
2229
|
+
* @param {ParkingSpaceDetailBody} parkingSpaceDetailBody
|
|
2230
|
+
* @param {*} [options] Override http request option.
|
|
2231
|
+
* @throws {RequiredError}
|
|
2232
|
+
*/
|
|
2233
|
+
parkingTicketsLocation(parkingSpaceDetailBody, options) {
|
|
2234
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2235
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingTicketsLocation(parkingSpaceDetailBody, options);
|
|
2236
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2237
|
+
});
|
|
2238
|
+
},
|
|
2142
2239
|
/**
|
|
2143
2240
|
*
|
|
2144
2241
|
* @param {string} logId
|
|
@@ -2413,48 +2510,34 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2413
2510
|
},
|
|
2414
2511
|
/**
|
|
2415
2512
|
*
|
|
2416
|
-
* @param {AccessorType}
|
|
2513
|
+
* @param {AccessorType} accessorType
|
|
2417
2514
|
* @param {string} [orderBy]
|
|
2418
2515
|
* @param {string} [orderDirection]
|
|
2419
2516
|
* @param {number} [pageNumber]
|
|
2420
2517
|
* @param {number} [pageSize]
|
|
2421
|
-
* @param {string} [name]
|
|
2422
2518
|
* @param {string} [displayTower]
|
|
2423
|
-
* @param {string} [companyName]
|
|
2424
|
-
* @param {string} [id]
|
|
2425
2519
|
* @param {string} [filter]
|
|
2520
|
+
* @param {string} [id]
|
|
2426
2521
|
* @param {string} [building]
|
|
2427
2522
|
* @param {number} [status]
|
|
2428
2523
|
* @param {string} [startDate]
|
|
2429
2524
|
* @param {string} [endDate]
|
|
2525
|
+
* @param {string} [name]
|
|
2430
2526
|
* @param {*} [options] Override http request option.
|
|
2431
2527
|
* @throws {RequiredError}
|
|
2432
2528
|
*/
|
|
2433
|
-
buildingAccessLogsIndex(
|
|
2434
|
-
return localVarFp.buildingAccessLogsIndex(
|
|
2529
|
+
buildingAccessLogsIndex(accessorType, orderBy, orderDirection, pageNumber, pageSize, displayTower, filter, id, building, status, startDate, endDate, name, options) {
|
|
2530
|
+
return localVarFp.buildingAccessLogsIndex(accessorType, orderBy, orderDirection, pageNumber, pageSize, displayTower, filter, id, building, status, startDate, endDate, name, options).then((request) => request(axios, basePath));
|
|
2435
2531
|
},
|
|
2436
2532
|
/**
|
|
2437
2533
|
*
|
|
2438
2534
|
* @param {string} id
|
|
2439
|
-
* @param {AccessorType}
|
|
2440
|
-
* @param {string} [orderBy]
|
|
2441
|
-
* @param {string} [orderDirection]
|
|
2442
|
-
* @param {number} [pageNumber]
|
|
2443
|
-
* @param {number} [pageSize]
|
|
2444
|
-
* @param {string} [name]
|
|
2445
|
-
* @param {string} [displayTower]
|
|
2446
|
-
* @param {string} [companyName]
|
|
2447
|
-
* @param {string} [id2]
|
|
2448
|
-
* @param {string} [filter]
|
|
2449
|
-
* @param {string} [building]
|
|
2450
|
-
* @param {number} [status]
|
|
2451
|
-
* @param {string} [startDate]
|
|
2452
|
-
* @param {string} [endDate]
|
|
2535
|
+
* @param {AccessorType} accessorType
|
|
2453
2536
|
* @param {*} [options] Override http request option.
|
|
2454
2537
|
* @throws {RequiredError}
|
|
2455
2538
|
*/
|
|
2456
|
-
buildingAccessLogsShow(id,
|
|
2457
|
-
return localVarFp.buildingAccessLogsShow(id,
|
|
2539
|
+
buildingAccessLogsShow(id, accessorType, options) {
|
|
2540
|
+
return localVarFp.buildingAccessLogsShow(id, accessorType, options).then((request) => request(axios, basePath));
|
|
2458
2541
|
},
|
|
2459
2542
|
/**
|
|
2460
2543
|
*
|
|
@@ -2616,6 +2699,33 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2616
2699
|
membersUpdate(id, updateMemberRequestBody, options) {
|
|
2617
2700
|
return localVarFp.membersUpdate(id, updateMemberRequestBody, options).then((request) => request(axios, basePath));
|
|
2618
2701
|
},
|
|
2702
|
+
/**
|
|
2703
|
+
*
|
|
2704
|
+
* @param {string} [orderBy]
|
|
2705
|
+
* @param {string} [orderDirection]
|
|
2706
|
+
* @param {number} [pageNumber]
|
|
2707
|
+
* @param {number} [pageSize]
|
|
2708
|
+
* @param {string} [floorId]
|
|
2709
|
+
* @param {string} [tenantId]
|
|
2710
|
+
* @param {*} [options] Override http request option.
|
|
2711
|
+
* @throws {RequiredError}
|
|
2712
|
+
*/
|
|
2713
|
+
membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options) {
|
|
2714
|
+
return localVarFp.membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options).then((request) => request(axios, basePath));
|
|
2715
|
+
},
|
|
2716
|
+
/**
|
|
2717
|
+
*
|
|
2718
|
+
* @param {MemberListBody} memberListBody
|
|
2719
|
+
* @param {string} [orderBy]
|
|
2720
|
+
* @param {string} [orderDirection]
|
|
2721
|
+
* @param {number} [pageNumber]
|
|
2722
|
+
* @param {number} [pageSize]
|
|
2723
|
+
* @param {*} [options] Override http request option.
|
|
2724
|
+
* @throws {RequiredError}
|
|
2725
|
+
*/
|
|
2726
|
+
membersV2ListMembers(memberListBody, orderBy, orderDirection, pageNumber, pageSize, options) {
|
|
2727
|
+
return localVarFp.membersV2ListMembers(memberListBody, orderBy, orderDirection, pageNumber, pageSize, options).then((request) => request(axios, basePath));
|
|
2728
|
+
},
|
|
2619
2729
|
/**
|
|
2620
2730
|
*
|
|
2621
2731
|
* @param {string} [orderBy]
|
|
@@ -2672,6 +2782,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2672
2782
|
parkingTicketsIndex(type, id, options) {
|
|
2673
2783
|
return localVarFp.parkingTicketsIndex(type, id, options).then((request) => request(axios, basePath));
|
|
2674
2784
|
},
|
|
2785
|
+
/**
|
|
2786
|
+
*
|
|
2787
|
+
* @param {ParkingSpaceDetailBody} parkingSpaceDetailBody
|
|
2788
|
+
* @param {*} [options] Override http request option.
|
|
2789
|
+
* @throws {RequiredError}
|
|
2790
|
+
*/
|
|
2791
|
+
parkingTicketsLocation(parkingSpaceDetailBody, options) {
|
|
2792
|
+
return localVarFp.parkingTicketsLocation(parkingSpaceDetailBody, options).then((request) => request(axios, basePath));
|
|
2793
|
+
},
|
|
2675
2794
|
/**
|
|
2676
2795
|
*
|
|
2677
2796
|
* @param {string} logId
|
|
@@ -2904,50 +3023,36 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2904
3023
|
}
|
|
2905
3024
|
/**
|
|
2906
3025
|
*
|
|
2907
|
-
* @param {AccessorType}
|
|
3026
|
+
* @param {AccessorType} accessorType
|
|
2908
3027
|
* @param {string} [orderBy]
|
|
2909
3028
|
* @param {string} [orderDirection]
|
|
2910
3029
|
* @param {number} [pageNumber]
|
|
2911
3030
|
* @param {number} [pageSize]
|
|
2912
|
-
* @param {string} [name]
|
|
2913
3031
|
* @param {string} [displayTower]
|
|
2914
|
-
* @param {string} [companyName]
|
|
2915
|
-
* @param {string} [id]
|
|
2916
3032
|
* @param {string} [filter]
|
|
3033
|
+
* @param {string} [id]
|
|
2917
3034
|
* @param {string} [building]
|
|
2918
3035
|
* @param {number} [status]
|
|
2919
3036
|
* @param {string} [startDate]
|
|
2920
3037
|
* @param {string} [endDate]
|
|
3038
|
+
* @param {string} [name]
|
|
2921
3039
|
* @param {*} [options] Override http request option.
|
|
2922
3040
|
* @throws {RequiredError}
|
|
2923
3041
|
* @memberof DefaultApi
|
|
2924
3042
|
*/
|
|
2925
|
-
buildingAccessLogsIndex(
|
|
2926
|
-
return (0, exports.DefaultApiFp)(this.configuration).buildingAccessLogsIndex(
|
|
3043
|
+
buildingAccessLogsIndex(accessorType, orderBy, orderDirection, pageNumber, pageSize, displayTower, filter, id, building, status, startDate, endDate, name, options) {
|
|
3044
|
+
return (0, exports.DefaultApiFp)(this.configuration).buildingAccessLogsIndex(accessorType, orderBy, orderDirection, pageNumber, pageSize, displayTower, filter, id, building, status, startDate, endDate, name, options).then((request) => request(this.axios, this.basePath));
|
|
2927
3045
|
}
|
|
2928
3046
|
/**
|
|
2929
3047
|
*
|
|
2930
3048
|
* @param {string} id
|
|
2931
|
-
* @param {AccessorType}
|
|
2932
|
-
* @param {string} [orderBy]
|
|
2933
|
-
* @param {string} [orderDirection]
|
|
2934
|
-
* @param {number} [pageNumber]
|
|
2935
|
-
* @param {number} [pageSize]
|
|
2936
|
-
* @param {string} [name]
|
|
2937
|
-
* @param {string} [displayTower]
|
|
2938
|
-
* @param {string} [companyName]
|
|
2939
|
-
* @param {string} [id2]
|
|
2940
|
-
* @param {string} [filter]
|
|
2941
|
-
* @param {string} [building]
|
|
2942
|
-
* @param {number} [status]
|
|
2943
|
-
* @param {string} [startDate]
|
|
2944
|
-
* @param {string} [endDate]
|
|
3049
|
+
* @param {AccessorType} accessorType
|
|
2945
3050
|
* @param {*} [options] Override http request option.
|
|
2946
3051
|
* @throws {RequiredError}
|
|
2947
3052
|
* @memberof DefaultApi
|
|
2948
3053
|
*/
|
|
2949
|
-
buildingAccessLogsShow(id,
|
|
2950
|
-
return (0, exports.DefaultApiFp)(this.configuration).buildingAccessLogsShow(id,
|
|
3054
|
+
buildingAccessLogsShow(id, accessorType, options) {
|
|
3055
|
+
return (0, exports.DefaultApiFp)(this.configuration).buildingAccessLogsShow(id, accessorType, options).then((request) => request(this.axios, this.basePath));
|
|
2951
3056
|
}
|
|
2952
3057
|
/**
|
|
2953
3058
|
*
|
|
@@ -3126,6 +3231,35 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3126
3231
|
membersUpdate(id, updateMemberRequestBody, options) {
|
|
3127
3232
|
return (0, exports.DefaultApiFp)(this.configuration).membersUpdate(id, updateMemberRequestBody, options).then((request) => request(this.axios, this.basePath));
|
|
3128
3233
|
}
|
|
3234
|
+
/**
|
|
3235
|
+
*
|
|
3236
|
+
* @param {string} [orderBy]
|
|
3237
|
+
* @param {string} [orderDirection]
|
|
3238
|
+
* @param {number} [pageNumber]
|
|
3239
|
+
* @param {number} [pageSize]
|
|
3240
|
+
* @param {string} [floorId]
|
|
3241
|
+
* @param {string} [tenantId]
|
|
3242
|
+
* @param {*} [options] Override http request option.
|
|
3243
|
+
* @throws {RequiredError}
|
|
3244
|
+
* @memberof DefaultApi
|
|
3245
|
+
*/
|
|
3246
|
+
membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options) {
|
|
3247
|
+
return (0, exports.DefaultApiFp)(this.configuration).membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options).then((request) => request(this.axios, this.basePath));
|
|
3248
|
+
}
|
|
3249
|
+
/**
|
|
3250
|
+
*
|
|
3251
|
+
* @param {MemberListBody} memberListBody
|
|
3252
|
+
* @param {string} [orderBy]
|
|
3253
|
+
* @param {string} [orderDirection]
|
|
3254
|
+
* @param {number} [pageNumber]
|
|
3255
|
+
* @param {number} [pageSize]
|
|
3256
|
+
* @param {*} [options] Override http request option.
|
|
3257
|
+
* @throws {RequiredError}
|
|
3258
|
+
* @memberof DefaultApi
|
|
3259
|
+
*/
|
|
3260
|
+
membersV2ListMembers(memberListBody, orderBy, orderDirection, pageNumber, pageSize, options) {
|
|
3261
|
+
return (0, exports.DefaultApiFp)(this.configuration).membersV2ListMembers(memberListBody, orderBy, orderDirection, pageNumber, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
3262
|
+
}
|
|
3129
3263
|
/**
|
|
3130
3264
|
*
|
|
3131
3265
|
* @param {string} [orderBy]
|
|
@@ -3187,6 +3321,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3187
3321
|
parkingTicketsIndex(type, id, options) {
|
|
3188
3322
|
return (0, exports.DefaultApiFp)(this.configuration).parkingTicketsIndex(type, id, options).then((request) => request(this.axios, this.basePath));
|
|
3189
3323
|
}
|
|
3324
|
+
/**
|
|
3325
|
+
*
|
|
3326
|
+
* @param {ParkingSpaceDetailBody} parkingSpaceDetailBody
|
|
3327
|
+
* @param {*} [options] Override http request option.
|
|
3328
|
+
* @throws {RequiredError}
|
|
3329
|
+
* @memberof DefaultApi
|
|
3330
|
+
*/
|
|
3331
|
+
parkingTicketsLocation(parkingSpaceDetailBody, options) {
|
|
3332
|
+
return (0, exports.DefaultApiFp)(this.configuration).parkingTicketsLocation(parkingSpaceDetailBody, options).then((request) => request(this.axios, this.basePath));
|
|
3333
|
+
}
|
|
3190
3334
|
/**
|
|
3191
3335
|
*
|
|
3192
3336
|
* @param {string} logId
|
package/dist/api/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ob-bms
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.15
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* ob-bms
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.15
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ob-bms
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.15
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|