ob-bms-sdk 0.0.112 → 0.0.113
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 +720 -36
- package/dist/api/api.d.ts +474 -18
- package/dist/api/api.js +419 -31
- package/package.json +1 -1
package/dist/api/api.js
CHANGED
|
@@ -25,7 +25,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
25
25
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
26
|
};
|
|
27
27
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
-
exports.ParkingTicketsIndexTypeEnum = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WrappedResponsePassConsentResponseDataStatusEnum = exports.WrappedResponseNullDataEnum = exports.TenantMemberRole = exports.ShowPassResponseStatusEnum = exports.ServiceRequestStatusInProgress = exports.ServiceRequestStatusDone = exports.ServiceRequestStatus = exports.SensorType = exports.PositionStatus = exports.PaymentStatus = exports.PassDataStatusEnum = exports.PassConsentResponseStatusEnum = exports.ParkingTicketsIndexQueryTypeEnum = exports.
|
|
28
|
+
exports.ParkingTicketsIndexTypeEnum = exports.ParkingResidentialTicketsIndexTypeEnum = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WrappedResponsePassConsentResponseDataStatusEnum = exports.WrappedResponseNullDataEnum = exports.TenantMemberRole = exports.ShowPassResponseStatusEnum = exports.ServiceRequestStatusInProgress = exports.ServiceRequestStatusDone = exports.ServiceRequestStatus = exports.SensorType = exports.PositionStatus = exports.PaymentStatus = exports.PassDataStatusEnum = exports.PassConsentResponseStatusEnum = exports.ParkingTicketsIndexQueryTypeEnum = exports.ParkingResidentialTicketsIndexQueryTypeEnum = exports.AccessorType = exports.ACRequestStatusRejected = exports.ACRequestStatusApproved = exports.ACRequestStatus = void 0;
|
|
29
29
|
const axios_1 = __importDefault(require("axios"));
|
|
30
30
|
// Some imports not used depending on template conditions
|
|
31
31
|
// @ts-ignore
|
|
@@ -68,15 +68,12 @@ exports.AccessorType = {
|
|
|
68
68
|
Member: 'member',
|
|
69
69
|
Tenant: 'tenant'
|
|
70
70
|
};
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
Pending: 'pending',
|
|
78
|
-
Confirmed: 'confirmed',
|
|
79
|
-
Cancelled: 'cancelled'
|
|
71
|
+
exports.ParkingResidentialTicketsIndexQueryTypeEnum = {
|
|
72
|
+
LogId: 'log_id',
|
|
73
|
+
TicketNumber: 'ticket_number',
|
|
74
|
+
PlateNo: 'plate_no',
|
|
75
|
+
InviteId: 'invite_id',
|
|
76
|
+
MemberId: 'member_id'
|
|
80
77
|
};
|
|
81
78
|
exports.ParkingTicketsIndexQueryTypeEnum = {
|
|
82
79
|
LogId: 'log_id',
|
|
@@ -770,6 +767,35 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
770
767
|
options: localVarRequestOptions,
|
|
771
768
|
};
|
|
772
769
|
}),
|
|
770
|
+
/**
|
|
771
|
+
*
|
|
772
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
773
|
+
* @param {*} [options] Override http request option.
|
|
774
|
+
* @throws {RequiredError}
|
|
775
|
+
*/
|
|
776
|
+
integrationsFsMembersResidentCreate: (createResidenceFSMembersBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
777
|
+
// verify required parameter 'createResidenceFSMembersBody' is not null or undefined
|
|
778
|
+
(0, common_1.assertParamExists)('integrationsFsMembersResidentCreate', 'createResidenceFSMembersBody', createResidenceFSMembersBody);
|
|
779
|
+
const localVarPath = `/integrations/fs/members/resident`;
|
|
780
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
781
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
782
|
+
let baseOptions;
|
|
783
|
+
if (configuration) {
|
|
784
|
+
baseOptions = configuration.baseOptions;
|
|
785
|
+
}
|
|
786
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
787
|
+
const localVarHeaderParameter = {};
|
|
788
|
+
const localVarQueryParameter = {};
|
|
789
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
790
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
791
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
792
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
793
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createResidenceFSMembersBody, localVarRequestOptions, configuration);
|
|
794
|
+
return {
|
|
795
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
796
|
+
options: localVarRequestOptions,
|
|
797
|
+
};
|
|
798
|
+
}),
|
|
773
799
|
/**
|
|
774
800
|
*
|
|
775
801
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -1375,12 +1401,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1375
1401
|
/**
|
|
1376
1402
|
*
|
|
1377
1403
|
* @param {string} id
|
|
1378
|
-
* @param {ParkingReservationStatus} [status]
|
|
1379
|
-
* @param {string} [xAccountId]
|
|
1380
1404
|
* @param {*} [options] Override http request option.
|
|
1381
1405
|
* @throws {RequiredError}
|
|
1382
1406
|
*/
|
|
1383
|
-
parkingReservationsListDetail: (id,
|
|
1407
|
+
parkingReservationsListDetail: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1384
1408
|
// verify required parameter 'id' is not null or undefined
|
|
1385
1409
|
(0, common_1.assertParamExists)('parkingReservationsListDetail', 'id', id);
|
|
1386
1410
|
const localVarPath = `/parking_reservations/{id}`
|
|
@@ -1394,12 +1418,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1394
1418
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1395
1419
|
const localVarHeaderParameter = {};
|
|
1396
1420
|
const localVarQueryParameter = {};
|
|
1397
|
-
if (status !== undefined) {
|
|
1398
|
-
localVarQueryParameter['status'] = status;
|
|
1399
|
-
}
|
|
1400
|
-
if (xAccountId != null) {
|
|
1401
|
-
localVarHeaderParameter['x-account-id'] = String(xAccountId);
|
|
1402
|
-
}
|
|
1403
1421
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1404
1422
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1405
1423
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1436,6 +1454,121 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1436
1454
|
options: localVarRequestOptions,
|
|
1437
1455
|
};
|
|
1438
1456
|
}),
|
|
1457
|
+
/**
|
|
1458
|
+
*
|
|
1459
|
+
* @param {string} tenantId
|
|
1460
|
+
* @param {number} memberTypeId
|
|
1461
|
+
* @param {number} departmentId
|
|
1462
|
+
* @param {number} vehicleTypeId
|
|
1463
|
+
* @param {*} [options] Override http request option.
|
|
1464
|
+
* @throws {RequiredError}
|
|
1465
|
+
*/
|
|
1466
|
+
parkingResidentialRedemptionRatesIndex: (tenantId, memberTypeId, departmentId, vehicleTypeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1467
|
+
// verify required parameter 'tenantId' is not null or undefined
|
|
1468
|
+
(0, common_1.assertParamExists)('parkingResidentialRedemptionRatesIndex', 'tenantId', tenantId);
|
|
1469
|
+
// verify required parameter 'memberTypeId' is not null or undefined
|
|
1470
|
+
(0, common_1.assertParamExists)('parkingResidentialRedemptionRatesIndex', 'memberTypeId', memberTypeId);
|
|
1471
|
+
// verify required parameter 'departmentId' is not null or undefined
|
|
1472
|
+
(0, common_1.assertParamExists)('parkingResidentialRedemptionRatesIndex', 'departmentId', departmentId);
|
|
1473
|
+
// verify required parameter 'vehicleTypeId' is not null or undefined
|
|
1474
|
+
(0, common_1.assertParamExists)('parkingResidentialRedemptionRatesIndex', 'vehicleTypeId', vehicleTypeId);
|
|
1475
|
+
const localVarPath = `/members/{tenantId}/parking_residential_redemption_rates`
|
|
1476
|
+
.replace(`{${"tenantId"}}`, encodeURIComponent(String(tenantId)));
|
|
1477
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1478
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1479
|
+
let baseOptions;
|
|
1480
|
+
if (configuration) {
|
|
1481
|
+
baseOptions = configuration.baseOptions;
|
|
1482
|
+
}
|
|
1483
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1484
|
+
const localVarHeaderParameter = {};
|
|
1485
|
+
const localVarQueryParameter = {};
|
|
1486
|
+
if (memberTypeId !== undefined) {
|
|
1487
|
+
localVarQueryParameter['member_type_id'] = memberTypeId;
|
|
1488
|
+
}
|
|
1489
|
+
if (departmentId !== undefined) {
|
|
1490
|
+
localVarQueryParameter['department_id'] = departmentId;
|
|
1491
|
+
}
|
|
1492
|
+
if (vehicleTypeId !== undefined) {
|
|
1493
|
+
localVarQueryParameter['vehicle_type_id'] = vehicleTypeId;
|
|
1494
|
+
}
|
|
1495
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1496
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1497
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1498
|
+
return {
|
|
1499
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1500
|
+
options: localVarRequestOptions,
|
|
1501
|
+
};
|
|
1502
|
+
}),
|
|
1503
|
+
/**
|
|
1504
|
+
*
|
|
1505
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
1506
|
+
* @param {string} id
|
|
1507
|
+
* @param {*} [options] Override http request option.
|
|
1508
|
+
* @throws {RequiredError}
|
|
1509
|
+
*/
|
|
1510
|
+
parkingResidentialTicketsIndex: (type, id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1511
|
+
// verify required parameter 'type' is not null or undefined
|
|
1512
|
+
(0, common_1.assertParamExists)('parkingResidentialTicketsIndex', 'type', type);
|
|
1513
|
+
// verify required parameter 'id' is not null or undefined
|
|
1514
|
+
(0, common_1.assertParamExists)('parkingResidentialTicketsIndex', 'id', id);
|
|
1515
|
+
const localVarPath = `/parking_tickets/residential`;
|
|
1516
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1517
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1518
|
+
let baseOptions;
|
|
1519
|
+
if (configuration) {
|
|
1520
|
+
baseOptions = configuration.baseOptions;
|
|
1521
|
+
}
|
|
1522
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1523
|
+
const localVarHeaderParameter = {};
|
|
1524
|
+
const localVarQueryParameter = {};
|
|
1525
|
+
if (type !== undefined) {
|
|
1526
|
+
localVarQueryParameter['type'] = type;
|
|
1527
|
+
}
|
|
1528
|
+
if (id !== undefined) {
|
|
1529
|
+
localVarQueryParameter['id'] = id;
|
|
1530
|
+
}
|
|
1531
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1532
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1533
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1534
|
+
return {
|
|
1535
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1536
|
+
options: localVarRequestOptions,
|
|
1537
|
+
};
|
|
1538
|
+
}),
|
|
1539
|
+
/**
|
|
1540
|
+
*
|
|
1541
|
+
* @param {string} logId
|
|
1542
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
1543
|
+
* @param {*} [options] Override http request option.
|
|
1544
|
+
* @throws {RequiredError}
|
|
1545
|
+
*/
|
|
1546
|
+
parkingResidentialTicketsRedeem: (logId, parkingTicketsRedeemBodyResident, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1547
|
+
// verify required parameter 'logId' is not null or undefined
|
|
1548
|
+
(0, common_1.assertParamExists)('parkingResidentialTicketsRedeem', 'logId', logId);
|
|
1549
|
+
// verify required parameter 'parkingTicketsRedeemBodyResident' is not null or undefined
|
|
1550
|
+
(0, common_1.assertParamExists)('parkingResidentialTicketsRedeem', 'parkingTicketsRedeemBodyResident', parkingTicketsRedeemBodyResident);
|
|
1551
|
+
const localVarPath = `/parking_tickets/{log_id}/redeem-residential`
|
|
1552
|
+
.replace(`{${"log_id"}}`, encodeURIComponent(String(logId)));
|
|
1553
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1554
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1555
|
+
let baseOptions;
|
|
1556
|
+
if (configuration) {
|
|
1557
|
+
baseOptions = configuration.baseOptions;
|
|
1558
|
+
}
|
|
1559
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1560
|
+
const localVarHeaderParameter = {};
|
|
1561
|
+
const localVarQueryParameter = {};
|
|
1562
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1563
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1564
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1565
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1566
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(parkingTicketsRedeemBodyResident, localVarRequestOptions, configuration);
|
|
1567
|
+
return {
|
|
1568
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1569
|
+
options: localVarRequestOptions,
|
|
1570
|
+
};
|
|
1571
|
+
}),
|
|
1439
1572
|
/**
|
|
1440
1573
|
*
|
|
1441
1574
|
* @param {*} [options] Override http request option.
|
|
@@ -1961,6 +2094,30 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1961
2094
|
options: localVarRequestOptions,
|
|
1962
2095
|
};
|
|
1963
2096
|
}),
|
|
2097
|
+
/**
|
|
2098
|
+
*
|
|
2099
|
+
* @param {*} [options] Override http request option.
|
|
2100
|
+
* @throws {RequiredError}
|
|
2101
|
+
*/
|
|
2102
|
+
towersOutdoorindex: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2103
|
+
const localVarPath = `/towers/outdoor`;
|
|
2104
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2105
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2106
|
+
let baseOptions;
|
|
2107
|
+
if (configuration) {
|
|
2108
|
+
baseOptions = configuration.baseOptions;
|
|
2109
|
+
}
|
|
2110
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
2111
|
+
const localVarHeaderParameter = {};
|
|
2112
|
+
const localVarQueryParameter = {};
|
|
2113
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2114
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2115
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2116
|
+
return {
|
|
2117
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
2118
|
+
options: localVarRequestOptions,
|
|
2119
|
+
};
|
|
2120
|
+
}),
|
|
1964
2121
|
/**
|
|
1965
2122
|
*
|
|
1966
2123
|
* @param {*} [options] Override http request option.
|
|
@@ -2103,6 +2260,35 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2103
2260
|
options: localVarRequestOptions,
|
|
2104
2261
|
};
|
|
2105
2262
|
}),
|
|
2263
|
+
/**
|
|
2264
|
+
*
|
|
2265
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
2266
|
+
* @param {*} [options] Override http request option.
|
|
2267
|
+
* @throws {RequiredError}
|
|
2268
|
+
*/
|
|
2269
|
+
visitorsResidentCreate: (createVisitorResidentBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2270
|
+
// verify required parameter 'createVisitorResidentBody' is not null or undefined
|
|
2271
|
+
(0, common_1.assertParamExists)('visitorsResidentCreate', 'createVisitorResidentBody', createVisitorResidentBody);
|
|
2272
|
+
const localVarPath = `/visitors/resident`;
|
|
2273
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2274
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2275
|
+
let baseOptions;
|
|
2276
|
+
if (configuration) {
|
|
2277
|
+
baseOptions = configuration.baseOptions;
|
|
2278
|
+
}
|
|
2279
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
2280
|
+
const localVarHeaderParameter = {};
|
|
2281
|
+
const localVarQueryParameter = {};
|
|
2282
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2283
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2284
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2285
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2286
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createVisitorResidentBody, localVarRequestOptions, configuration);
|
|
2287
|
+
return {
|
|
2288
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
2289
|
+
options: localVarRequestOptions,
|
|
2290
|
+
};
|
|
2291
|
+
}),
|
|
2106
2292
|
/**
|
|
2107
2293
|
*
|
|
2108
2294
|
* @param {string} id
|
|
@@ -2377,6 +2563,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
2377
2563
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2378
2564
|
});
|
|
2379
2565
|
},
|
|
2566
|
+
/**
|
|
2567
|
+
*
|
|
2568
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
2569
|
+
* @param {*} [options] Override http request option.
|
|
2570
|
+
* @throws {RequiredError}
|
|
2571
|
+
*/
|
|
2572
|
+
integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options) {
|
|
2573
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2574
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options);
|
|
2575
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2576
|
+
});
|
|
2577
|
+
},
|
|
2380
2578
|
/**
|
|
2381
2579
|
*
|
|
2382
2580
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -2613,14 +2811,12 @@ const DefaultApiFp = function (configuration) {
|
|
|
2613
2811
|
/**
|
|
2614
2812
|
*
|
|
2615
2813
|
* @param {string} id
|
|
2616
|
-
* @param {ParkingReservationStatus} [status]
|
|
2617
|
-
* @param {string} [xAccountId]
|
|
2618
2814
|
* @param {*} [options] Override http request option.
|
|
2619
2815
|
* @throws {RequiredError}
|
|
2620
2816
|
*/
|
|
2621
|
-
parkingReservationsListDetail(id,
|
|
2817
|
+
parkingReservationsListDetail(id, options) {
|
|
2622
2818
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2623
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingReservationsListDetail(id,
|
|
2819
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingReservationsListDetail(id, options);
|
|
2624
2820
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2625
2821
|
});
|
|
2626
2822
|
},
|
|
@@ -2636,6 +2832,47 @@ const DefaultApiFp = function (configuration) {
|
|
|
2636
2832
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2637
2833
|
});
|
|
2638
2834
|
},
|
|
2835
|
+
/**
|
|
2836
|
+
*
|
|
2837
|
+
* @param {string} tenantId
|
|
2838
|
+
* @param {number} memberTypeId
|
|
2839
|
+
* @param {number} departmentId
|
|
2840
|
+
* @param {number} vehicleTypeId
|
|
2841
|
+
* @param {*} [options] Override http request option.
|
|
2842
|
+
* @throws {RequiredError}
|
|
2843
|
+
*/
|
|
2844
|
+
parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options) {
|
|
2845
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2846
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options);
|
|
2847
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2848
|
+
});
|
|
2849
|
+
},
|
|
2850
|
+
/**
|
|
2851
|
+
*
|
|
2852
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
2853
|
+
* @param {string} id
|
|
2854
|
+
* @param {*} [options] Override http request option.
|
|
2855
|
+
* @throws {RequiredError}
|
|
2856
|
+
*/
|
|
2857
|
+
parkingResidentialTicketsIndex(type, id, options) {
|
|
2858
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2859
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingResidentialTicketsIndex(type, id, options);
|
|
2860
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2861
|
+
});
|
|
2862
|
+
},
|
|
2863
|
+
/**
|
|
2864
|
+
*
|
|
2865
|
+
* @param {string} logId
|
|
2866
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
2867
|
+
* @param {*} [options] Override http request option.
|
|
2868
|
+
* @throws {RequiredError}
|
|
2869
|
+
*/
|
|
2870
|
+
parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options) {
|
|
2871
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2872
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options);
|
|
2873
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2874
|
+
});
|
|
2875
|
+
},
|
|
2639
2876
|
/**
|
|
2640
2877
|
*
|
|
2641
2878
|
* @param {*} [options] Override http request option.
|
|
@@ -2849,6 +3086,17 @@ const DefaultApiFp = function (configuration) {
|
|
|
2849
3086
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2850
3087
|
});
|
|
2851
3088
|
},
|
|
3089
|
+
/**
|
|
3090
|
+
*
|
|
3091
|
+
* @param {*} [options] Override http request option.
|
|
3092
|
+
* @throws {RequiredError}
|
|
3093
|
+
*/
|
|
3094
|
+
towersOutdoorindex(options) {
|
|
3095
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3096
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.towersOutdoorindex(options);
|
|
3097
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3098
|
+
});
|
|
3099
|
+
},
|
|
2852
3100
|
/**
|
|
2853
3101
|
*
|
|
2854
3102
|
* @param {*} [options] Override http request option.
|
|
@@ -2909,6 +3157,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
2909
3157
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2910
3158
|
});
|
|
2911
3159
|
},
|
|
3160
|
+
/**
|
|
3161
|
+
*
|
|
3162
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
3163
|
+
* @param {*} [options] Override http request option.
|
|
3164
|
+
* @throws {RequiredError}
|
|
3165
|
+
*/
|
|
3166
|
+
visitorsResidentCreate(createVisitorResidentBody, options) {
|
|
3167
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3168
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.visitorsResidentCreate(createVisitorResidentBody, options);
|
|
3169
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3170
|
+
});
|
|
3171
|
+
},
|
|
2912
3172
|
/**
|
|
2913
3173
|
*
|
|
2914
3174
|
* @param {string} id
|
|
@@ -3113,6 +3373,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3113
3373
|
integrationsFsMembersDelete(destroyFSMembers, options) {
|
|
3114
3374
|
return localVarFp.integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(axios, basePath));
|
|
3115
3375
|
},
|
|
3376
|
+
/**
|
|
3377
|
+
*
|
|
3378
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
3379
|
+
* @param {*} [options] Override http request option.
|
|
3380
|
+
* @throws {RequiredError}
|
|
3381
|
+
*/
|
|
3382
|
+
integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options) {
|
|
3383
|
+
return localVarFp.integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options).then((request) => request(axios, basePath));
|
|
3384
|
+
},
|
|
3116
3385
|
/**
|
|
3117
3386
|
*
|
|
3118
3387
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -3298,13 +3567,11 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3298
3567
|
/**
|
|
3299
3568
|
*
|
|
3300
3569
|
* @param {string} id
|
|
3301
|
-
* @param {ParkingReservationStatus} [status]
|
|
3302
|
-
* @param {string} [xAccountId]
|
|
3303
3570
|
* @param {*} [options] Override http request option.
|
|
3304
3571
|
* @throws {RequiredError}
|
|
3305
3572
|
*/
|
|
3306
|
-
parkingReservationsListDetail(id,
|
|
3307
|
-
return localVarFp.parkingReservationsListDetail(id,
|
|
3573
|
+
parkingReservationsListDetail(id, options) {
|
|
3574
|
+
return localVarFp.parkingReservationsListDetail(id, options).then((request) => request(axios, basePath));
|
|
3308
3575
|
},
|
|
3309
3576
|
/**
|
|
3310
3577
|
*
|
|
@@ -3315,6 +3582,38 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3315
3582
|
parkingReservationsListShow(xAccountId, options) {
|
|
3316
3583
|
return localVarFp.parkingReservationsListShow(xAccountId, options).then((request) => request(axios, basePath));
|
|
3317
3584
|
},
|
|
3585
|
+
/**
|
|
3586
|
+
*
|
|
3587
|
+
* @param {string} tenantId
|
|
3588
|
+
* @param {number} memberTypeId
|
|
3589
|
+
* @param {number} departmentId
|
|
3590
|
+
* @param {number} vehicleTypeId
|
|
3591
|
+
* @param {*} [options] Override http request option.
|
|
3592
|
+
* @throws {RequiredError}
|
|
3593
|
+
*/
|
|
3594
|
+
parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options) {
|
|
3595
|
+
return localVarFp.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options).then((request) => request(axios, basePath));
|
|
3596
|
+
},
|
|
3597
|
+
/**
|
|
3598
|
+
*
|
|
3599
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
3600
|
+
* @param {string} id
|
|
3601
|
+
* @param {*} [options] Override http request option.
|
|
3602
|
+
* @throws {RequiredError}
|
|
3603
|
+
*/
|
|
3604
|
+
parkingResidentialTicketsIndex(type, id, options) {
|
|
3605
|
+
return localVarFp.parkingResidentialTicketsIndex(type, id, options).then((request) => request(axios, basePath));
|
|
3606
|
+
},
|
|
3607
|
+
/**
|
|
3608
|
+
*
|
|
3609
|
+
* @param {string} logId
|
|
3610
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
3611
|
+
* @param {*} [options] Override http request option.
|
|
3612
|
+
* @throws {RequiredError}
|
|
3613
|
+
*/
|
|
3614
|
+
parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options) {
|
|
3615
|
+
return localVarFp.parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options).then((request) => request(axios, basePath));
|
|
3616
|
+
},
|
|
3318
3617
|
/**
|
|
3319
3618
|
*
|
|
3320
3619
|
* @param {*} [options] Override http request option.
|
|
@@ -3477,6 +3776,14 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3477
3776
|
towersIndex(options) {
|
|
3478
3777
|
return localVarFp.towersIndex(options).then((request) => request(axios, basePath));
|
|
3479
3778
|
},
|
|
3779
|
+
/**
|
|
3780
|
+
*
|
|
3781
|
+
* @param {*} [options] Override http request option.
|
|
3782
|
+
* @throws {RequiredError}
|
|
3783
|
+
*/
|
|
3784
|
+
towersOutdoorindex(options) {
|
|
3785
|
+
return localVarFp.towersOutdoorindex(options).then((request) => request(axios, basePath));
|
|
3786
|
+
},
|
|
3480
3787
|
/**
|
|
3481
3788
|
*
|
|
3482
3789
|
* @param {*} [options] Override http request option.
|
|
@@ -3522,6 +3829,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3522
3829
|
visitorsDestroy(id, options) {
|
|
3523
3830
|
return localVarFp.visitorsDestroy(id, options).then((request) => request(axios, basePath));
|
|
3524
3831
|
},
|
|
3832
|
+
/**
|
|
3833
|
+
*
|
|
3834
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
3835
|
+
* @param {*} [options] Override http request option.
|
|
3836
|
+
* @throws {RequiredError}
|
|
3837
|
+
*/
|
|
3838
|
+
visitorsResidentCreate(createVisitorResidentBody, options) {
|
|
3839
|
+
return localVarFp.visitorsResidentCreate(createVisitorResidentBody, options).then((request) => request(axios, basePath));
|
|
3840
|
+
},
|
|
3525
3841
|
/**
|
|
3526
3842
|
*
|
|
3527
3843
|
* @param {string} id
|
|
@@ -3741,6 +4057,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3741
4057
|
integrationsFsMembersDelete(destroyFSMembers, options) {
|
|
3742
4058
|
return (0, exports.DefaultApiFp)(this.configuration).integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(this.axios, this.basePath));
|
|
3743
4059
|
}
|
|
4060
|
+
/**
|
|
4061
|
+
*
|
|
4062
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
4063
|
+
* @param {*} [options] Override http request option.
|
|
4064
|
+
* @throws {RequiredError}
|
|
4065
|
+
* @memberof DefaultApi
|
|
4066
|
+
*/
|
|
4067
|
+
integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options) {
|
|
4068
|
+
return (0, exports.DefaultApiFp)(this.configuration).integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options).then((request) => request(this.axios, this.basePath));
|
|
4069
|
+
}
|
|
3744
4070
|
/**
|
|
3745
4071
|
*
|
|
3746
4072
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -3943,14 +4269,12 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3943
4269
|
/**
|
|
3944
4270
|
*
|
|
3945
4271
|
* @param {string} id
|
|
3946
|
-
* @param {ParkingReservationStatus} [status]
|
|
3947
|
-
* @param {string} [xAccountId]
|
|
3948
4272
|
* @param {*} [options] Override http request option.
|
|
3949
4273
|
* @throws {RequiredError}
|
|
3950
4274
|
* @memberof DefaultApi
|
|
3951
4275
|
*/
|
|
3952
|
-
parkingReservationsListDetail(id,
|
|
3953
|
-
return (0, exports.DefaultApiFp)(this.configuration).parkingReservationsListDetail(id,
|
|
4276
|
+
parkingReservationsListDetail(id, options) {
|
|
4277
|
+
return (0, exports.DefaultApiFp)(this.configuration).parkingReservationsListDetail(id, options).then((request) => request(this.axios, this.basePath));
|
|
3954
4278
|
}
|
|
3955
4279
|
/**
|
|
3956
4280
|
*
|
|
@@ -3962,6 +4286,41 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3962
4286
|
parkingReservationsListShow(xAccountId, options) {
|
|
3963
4287
|
return (0, exports.DefaultApiFp)(this.configuration).parkingReservationsListShow(xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
3964
4288
|
}
|
|
4289
|
+
/**
|
|
4290
|
+
*
|
|
4291
|
+
* @param {string} tenantId
|
|
4292
|
+
* @param {number} memberTypeId
|
|
4293
|
+
* @param {number} departmentId
|
|
4294
|
+
* @param {number} vehicleTypeId
|
|
4295
|
+
* @param {*} [options] Override http request option.
|
|
4296
|
+
* @throws {RequiredError}
|
|
4297
|
+
* @memberof DefaultApi
|
|
4298
|
+
*/
|
|
4299
|
+
parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options) {
|
|
4300
|
+
return (0, exports.DefaultApiFp)(this.configuration).parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options).then((request) => request(this.axios, this.basePath));
|
|
4301
|
+
}
|
|
4302
|
+
/**
|
|
4303
|
+
*
|
|
4304
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
4305
|
+
* @param {string} id
|
|
4306
|
+
* @param {*} [options] Override http request option.
|
|
4307
|
+
* @throws {RequiredError}
|
|
4308
|
+
* @memberof DefaultApi
|
|
4309
|
+
*/
|
|
4310
|
+
parkingResidentialTicketsIndex(type, id, options) {
|
|
4311
|
+
return (0, exports.DefaultApiFp)(this.configuration).parkingResidentialTicketsIndex(type, id, options).then((request) => request(this.axios, this.basePath));
|
|
4312
|
+
}
|
|
4313
|
+
/**
|
|
4314
|
+
*
|
|
4315
|
+
* @param {string} logId
|
|
4316
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
4317
|
+
* @param {*} [options] Override http request option.
|
|
4318
|
+
* @throws {RequiredError}
|
|
4319
|
+
* @memberof DefaultApi
|
|
4320
|
+
*/
|
|
4321
|
+
parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options) {
|
|
4322
|
+
return (0, exports.DefaultApiFp)(this.configuration).parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options).then((request) => request(this.axios, this.basePath));
|
|
4323
|
+
}
|
|
3965
4324
|
/**
|
|
3966
4325
|
*
|
|
3967
4326
|
* @param {*} [options] Override http request option.
|
|
@@ -4141,6 +4500,15 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4141
4500
|
towersIndex(options) {
|
|
4142
4501
|
return (0, exports.DefaultApiFp)(this.configuration).towersIndex(options).then((request) => request(this.axios, this.basePath));
|
|
4143
4502
|
}
|
|
4503
|
+
/**
|
|
4504
|
+
*
|
|
4505
|
+
* @param {*} [options] Override http request option.
|
|
4506
|
+
* @throws {RequiredError}
|
|
4507
|
+
* @memberof DefaultApi
|
|
4508
|
+
*/
|
|
4509
|
+
towersOutdoorindex(options) {
|
|
4510
|
+
return (0, exports.DefaultApiFp)(this.configuration).towersOutdoorindex(options).then((request) => request(this.axios, this.basePath));
|
|
4511
|
+
}
|
|
4144
4512
|
/**
|
|
4145
4513
|
*
|
|
4146
4514
|
* @param {*} [options] Override http request option.
|
|
@@ -4191,6 +4559,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4191
4559
|
visitorsDestroy(id, options) {
|
|
4192
4560
|
return (0, exports.DefaultApiFp)(this.configuration).visitorsDestroy(id, options).then((request) => request(this.axios, this.basePath));
|
|
4193
4561
|
}
|
|
4562
|
+
/**
|
|
4563
|
+
*
|
|
4564
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
4565
|
+
* @param {*} [options] Override http request option.
|
|
4566
|
+
* @throws {RequiredError}
|
|
4567
|
+
* @memberof DefaultApi
|
|
4568
|
+
*/
|
|
4569
|
+
visitorsResidentCreate(createVisitorResidentBody, options) {
|
|
4570
|
+
return (0, exports.DefaultApiFp)(this.configuration).visitorsResidentCreate(createVisitorResidentBody, options).then((request) => request(this.axios, this.basePath));
|
|
4571
|
+
}
|
|
4194
4572
|
/**
|
|
4195
4573
|
*
|
|
4196
4574
|
* @param {string} id
|
|
@@ -4203,6 +4581,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4203
4581
|
}
|
|
4204
4582
|
}
|
|
4205
4583
|
exports.DefaultApi = DefaultApi;
|
|
4584
|
+
/**
|
|
4585
|
+
* @export
|
|
4586
|
+
*/
|
|
4587
|
+
exports.ParkingResidentialTicketsIndexTypeEnum = {
|
|
4588
|
+
LogId: 'log_id',
|
|
4589
|
+
TicketNumber: 'ticket_number',
|
|
4590
|
+
PlateNo: 'plate_no',
|
|
4591
|
+
InviteId: 'invite_id',
|
|
4592
|
+
MemberId: 'member_id'
|
|
4593
|
+
};
|
|
4206
4594
|
/**
|
|
4207
4595
|
* @export
|
|
4208
4596
|
*/
|