ob-bms-sdk 0.0.113 → 0.0.114
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 +521 -31
- package/dist/api/api.d.ts +386 -26
- package/dist/api/api.js +228 -14
- package/package.json +1 -1
package/dist/api/api.js
CHANGED
|
@@ -1460,10 +1460,11 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1460
1460
|
* @param {number} memberTypeId
|
|
1461
1461
|
* @param {number} departmentId
|
|
1462
1462
|
* @param {number} vehicleTypeId
|
|
1463
|
+
* @param {string} [inviteId]
|
|
1463
1464
|
* @param {*} [options] Override http request option.
|
|
1464
1465
|
* @throws {RequiredError}
|
|
1465
1466
|
*/
|
|
1466
|
-
parkingResidentialRedemptionRatesIndex: (tenantId, memberTypeId, departmentId, vehicleTypeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1467
|
+
parkingResidentialRedemptionRatesIndex: (tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1467
1468
|
// verify required parameter 'tenantId' is not null or undefined
|
|
1468
1469
|
(0, common_1.assertParamExists)('parkingResidentialRedemptionRatesIndex', 'tenantId', tenantId);
|
|
1469
1470
|
// verify required parameter 'memberTypeId' is not null or undefined
|
|
@@ -1492,6 +1493,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1492
1493
|
if (vehicleTypeId !== undefined) {
|
|
1493
1494
|
localVarQueryParameter['vehicle_type_id'] = vehicleTypeId;
|
|
1494
1495
|
}
|
|
1496
|
+
if (inviteId !== undefined) {
|
|
1497
|
+
localVarQueryParameter['invite_id'] = inviteId;
|
|
1498
|
+
}
|
|
1495
1499
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1496
1500
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1497
1501
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1569,6 +1573,46 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1569
1573
|
options: localVarRequestOptions,
|
|
1570
1574
|
};
|
|
1571
1575
|
}),
|
|
1576
|
+
/**
|
|
1577
|
+
*
|
|
1578
|
+
* @param {string} tenantId
|
|
1579
|
+
* @param {number} projectId
|
|
1580
|
+
* @param {string} [lang]
|
|
1581
|
+
* @param {*} [options] Override http request option.
|
|
1582
|
+
* @throws {RequiredError}
|
|
1583
|
+
*/
|
|
1584
|
+
parkingResidentialTicketsTerms: (tenantId, projectId, lang, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1585
|
+
// verify required parameter 'tenantId' is not null or undefined
|
|
1586
|
+
(0, common_1.assertParamExists)('parkingResidentialTicketsTerms', 'tenantId', tenantId);
|
|
1587
|
+
// verify required parameter 'projectId' is not null or undefined
|
|
1588
|
+
(0, common_1.assertParamExists)('parkingResidentialTicketsTerms', 'projectId', projectId);
|
|
1589
|
+
const localVarPath = `/parking_tickets/residential/car_park/terms`;
|
|
1590
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1591
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1592
|
+
let baseOptions;
|
|
1593
|
+
if (configuration) {
|
|
1594
|
+
baseOptions = configuration.baseOptions;
|
|
1595
|
+
}
|
|
1596
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1597
|
+
const localVarHeaderParameter = {};
|
|
1598
|
+
const localVarQueryParameter = {};
|
|
1599
|
+
if (tenantId !== undefined) {
|
|
1600
|
+
localVarQueryParameter['tenant_id'] = tenantId;
|
|
1601
|
+
}
|
|
1602
|
+
if (projectId !== undefined) {
|
|
1603
|
+
localVarQueryParameter['project_id'] = projectId;
|
|
1604
|
+
}
|
|
1605
|
+
if (lang != null) {
|
|
1606
|
+
localVarHeaderParameter['lang'] = String(lang);
|
|
1607
|
+
}
|
|
1608
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1609
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1610
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1611
|
+
return {
|
|
1612
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1613
|
+
options: localVarRequestOptions,
|
|
1614
|
+
};
|
|
1615
|
+
}),
|
|
1572
1616
|
/**
|
|
1573
1617
|
*
|
|
1574
1618
|
* @param {*} [options] Override http request option.
|
|
@@ -1690,6 +1734,36 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1690
1734
|
options: localVarRequestOptions,
|
|
1691
1735
|
};
|
|
1692
1736
|
}),
|
|
1737
|
+
/**
|
|
1738
|
+
*
|
|
1739
|
+
* @param {string} xAccountId
|
|
1740
|
+
* @param {*} [options] Override http request option.
|
|
1741
|
+
* @throws {RequiredError}
|
|
1742
|
+
*/
|
|
1743
|
+
parkingTicketsV2AllDetails: (xAccountId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1744
|
+
// verify required parameter 'xAccountId' is not null or undefined
|
|
1745
|
+
(0, common_1.assertParamExists)('parkingTicketsV2AllDetails', 'xAccountId', xAccountId);
|
|
1746
|
+
const localVarPath = `/v2/parking_tickets/all_details`;
|
|
1747
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1748
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1749
|
+
let baseOptions;
|
|
1750
|
+
if (configuration) {
|
|
1751
|
+
baseOptions = configuration.baseOptions;
|
|
1752
|
+
}
|
|
1753
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1754
|
+
const localVarHeaderParameter = {};
|
|
1755
|
+
const localVarQueryParameter = {};
|
|
1756
|
+
if (xAccountId != null) {
|
|
1757
|
+
localVarHeaderParameter['x-account-id'] = String(xAccountId);
|
|
1758
|
+
}
|
|
1759
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1760
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1761
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1762
|
+
return {
|
|
1763
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1764
|
+
options: localVarRequestOptions,
|
|
1765
|
+
};
|
|
1766
|
+
}),
|
|
1693
1767
|
/**
|
|
1694
1768
|
*
|
|
1695
1769
|
* @param {string} visitScheduleId
|
|
@@ -2145,13 +2219,16 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2145
2219
|
/**
|
|
2146
2220
|
*
|
|
2147
2221
|
* @param {string} id
|
|
2222
|
+
* @param {string} xAccountId
|
|
2148
2223
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
2149
2224
|
* @param {*} [options] Override http request option.
|
|
2150
2225
|
* @throws {RequiredError}
|
|
2151
2226
|
*/
|
|
2152
|
-
visitorSchedulesUpdate: (id, updateVisitorScheduleBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2227
|
+
visitorSchedulesUpdate: (id, xAccountId, updateVisitorScheduleBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2153
2228
|
// verify required parameter 'id' is not null or undefined
|
|
2154
2229
|
(0, common_1.assertParamExists)('visitorSchedulesUpdate', 'id', id);
|
|
2230
|
+
// verify required parameter 'xAccountId' is not null or undefined
|
|
2231
|
+
(0, common_1.assertParamExists)('visitorSchedulesUpdate', 'xAccountId', xAccountId);
|
|
2155
2232
|
// verify required parameter 'updateVisitorScheduleBody' is not null or undefined
|
|
2156
2233
|
(0, common_1.assertParamExists)('visitorSchedulesUpdate', 'updateVisitorScheduleBody', updateVisitorScheduleBody);
|
|
2157
2234
|
const localVarPath = `/visitor_schedules/{id}`
|
|
@@ -2165,6 +2242,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2165
2242
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
2166
2243
|
const localVarHeaderParameter = {};
|
|
2167
2244
|
const localVarQueryParameter = {};
|
|
2245
|
+
if (xAccountId != null) {
|
|
2246
|
+
localVarHeaderParameter['x-account-id'] = String(xAccountId);
|
|
2247
|
+
}
|
|
2168
2248
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2169
2249
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2170
2250
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2289,6 +2369,35 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2289
2369
|
options: localVarRequestOptions,
|
|
2290
2370
|
};
|
|
2291
2371
|
}),
|
|
2372
|
+
/**
|
|
2373
|
+
*
|
|
2374
|
+
* @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
|
|
2375
|
+
* @param {*} [options] Override http request option.
|
|
2376
|
+
* @throws {RequiredError}
|
|
2377
|
+
*/
|
|
2378
|
+
visitorsResidentDeactive: (deactiveVisitorResidentBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2379
|
+
// verify required parameter 'deactiveVisitorResidentBody' is not null or undefined
|
|
2380
|
+
(0, common_1.assertParamExists)('visitorsResidentDeactive', 'deactiveVisitorResidentBody', deactiveVisitorResidentBody);
|
|
2381
|
+
const localVarPath = `/visitors/resident/deactive`;
|
|
2382
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2383
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2384
|
+
let baseOptions;
|
|
2385
|
+
if (configuration) {
|
|
2386
|
+
baseOptions = configuration.baseOptions;
|
|
2387
|
+
}
|
|
2388
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
2389
|
+
const localVarHeaderParameter = {};
|
|
2390
|
+
const localVarQueryParameter = {};
|
|
2391
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2392
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2393
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2394
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2395
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(deactiveVisitorResidentBody, localVarRequestOptions, configuration);
|
|
2396
|
+
return {
|
|
2397
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
2398
|
+
options: localVarRequestOptions,
|
|
2399
|
+
};
|
|
2400
|
+
}),
|
|
2292
2401
|
/**
|
|
2293
2402
|
*
|
|
2294
2403
|
* @param {string} id
|
|
@@ -2838,12 +2947,13 @@ const DefaultApiFp = function (configuration) {
|
|
|
2838
2947
|
* @param {number} memberTypeId
|
|
2839
2948
|
* @param {number} departmentId
|
|
2840
2949
|
* @param {number} vehicleTypeId
|
|
2950
|
+
* @param {string} [inviteId]
|
|
2841
2951
|
* @param {*} [options] Override http request option.
|
|
2842
2952
|
* @throws {RequiredError}
|
|
2843
2953
|
*/
|
|
2844
|
-
parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options) {
|
|
2954
|
+
parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options) {
|
|
2845
2955
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2846
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options);
|
|
2956
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options);
|
|
2847
2957
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2848
2958
|
});
|
|
2849
2959
|
},
|
|
@@ -2873,6 +2983,20 @@ const DefaultApiFp = function (configuration) {
|
|
|
2873
2983
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2874
2984
|
});
|
|
2875
2985
|
},
|
|
2986
|
+
/**
|
|
2987
|
+
*
|
|
2988
|
+
* @param {string} tenantId
|
|
2989
|
+
* @param {number} projectId
|
|
2990
|
+
* @param {string} [lang]
|
|
2991
|
+
* @param {*} [options] Override http request option.
|
|
2992
|
+
* @throws {RequiredError}
|
|
2993
|
+
*/
|
|
2994
|
+
parkingResidentialTicketsTerms(tenantId, projectId, lang, options) {
|
|
2995
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2996
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingResidentialTicketsTerms(tenantId, projectId, lang, options);
|
|
2997
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2998
|
+
});
|
|
2999
|
+
},
|
|
2876
3000
|
/**
|
|
2877
3001
|
*
|
|
2878
3002
|
* @param {*} [options] Override http request option.
|
|
@@ -2922,6 +3046,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
2922
3046
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2923
3047
|
});
|
|
2924
3048
|
},
|
|
3049
|
+
/**
|
|
3050
|
+
*
|
|
3051
|
+
* @param {string} xAccountId
|
|
3052
|
+
* @param {*} [options] Override http request option.
|
|
3053
|
+
* @throws {RequiredError}
|
|
3054
|
+
*/
|
|
3055
|
+
parkingTicketsV2AllDetails(xAccountId, options) {
|
|
3056
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3057
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingTicketsV2AllDetails(xAccountId, options);
|
|
3058
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3059
|
+
});
|
|
3060
|
+
},
|
|
2925
3061
|
/**
|
|
2926
3062
|
*
|
|
2927
3063
|
* @param {string} visitScheduleId
|
|
@@ -3111,13 +3247,14 @@ const DefaultApiFp = function (configuration) {
|
|
|
3111
3247
|
/**
|
|
3112
3248
|
*
|
|
3113
3249
|
* @param {string} id
|
|
3250
|
+
* @param {string} xAccountId
|
|
3114
3251
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
3115
3252
|
* @param {*} [options] Override http request option.
|
|
3116
3253
|
* @throws {RequiredError}
|
|
3117
3254
|
*/
|
|
3118
|
-
visitorSchedulesUpdate(id, updateVisitorScheduleBody, options) {
|
|
3255
|
+
visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options) {
|
|
3119
3256
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3120
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.visitorSchedulesUpdate(id, updateVisitorScheduleBody, options);
|
|
3257
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options);
|
|
3121
3258
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3122
3259
|
});
|
|
3123
3260
|
},
|
|
@@ -3169,6 +3306,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
3169
3306
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3170
3307
|
});
|
|
3171
3308
|
},
|
|
3309
|
+
/**
|
|
3310
|
+
*
|
|
3311
|
+
* @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
|
|
3312
|
+
* @param {*} [options] Override http request option.
|
|
3313
|
+
* @throws {RequiredError}
|
|
3314
|
+
*/
|
|
3315
|
+
visitorsResidentDeactive(deactiveVisitorResidentBody, options) {
|
|
3316
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3317
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.visitorsResidentDeactive(deactiveVisitorResidentBody, options);
|
|
3318
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3319
|
+
});
|
|
3320
|
+
},
|
|
3172
3321
|
/**
|
|
3173
3322
|
*
|
|
3174
3323
|
* @param {string} id
|
|
@@ -3588,11 +3737,12 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3588
3737
|
* @param {number} memberTypeId
|
|
3589
3738
|
* @param {number} departmentId
|
|
3590
3739
|
* @param {number} vehicleTypeId
|
|
3740
|
+
* @param {string} [inviteId]
|
|
3591
3741
|
* @param {*} [options] Override http request option.
|
|
3592
3742
|
* @throws {RequiredError}
|
|
3593
3743
|
*/
|
|
3594
|
-
parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options) {
|
|
3595
|
-
return localVarFp.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options).then((request) => request(axios, basePath));
|
|
3744
|
+
parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options) {
|
|
3745
|
+
return localVarFp.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options).then((request) => request(axios, basePath));
|
|
3596
3746
|
},
|
|
3597
3747
|
/**
|
|
3598
3748
|
*
|
|
@@ -3614,6 +3764,17 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3614
3764
|
parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options) {
|
|
3615
3765
|
return localVarFp.parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options).then((request) => request(axios, basePath));
|
|
3616
3766
|
},
|
|
3767
|
+
/**
|
|
3768
|
+
*
|
|
3769
|
+
* @param {string} tenantId
|
|
3770
|
+
* @param {number} projectId
|
|
3771
|
+
* @param {string} [lang]
|
|
3772
|
+
* @param {*} [options] Override http request option.
|
|
3773
|
+
* @throws {RequiredError}
|
|
3774
|
+
*/
|
|
3775
|
+
parkingResidentialTicketsTerms(tenantId, projectId, lang, options) {
|
|
3776
|
+
return localVarFp.parkingResidentialTicketsTerms(tenantId, projectId, lang, options).then((request) => request(axios, basePath));
|
|
3777
|
+
},
|
|
3617
3778
|
/**
|
|
3618
3779
|
*
|
|
3619
3780
|
* @param {*} [options] Override http request option.
|
|
@@ -3651,6 +3812,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3651
3812
|
parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options) {
|
|
3652
3813
|
return localVarFp.parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options).then((request) => request(axios, basePath));
|
|
3653
3814
|
},
|
|
3815
|
+
/**
|
|
3816
|
+
*
|
|
3817
|
+
* @param {string} xAccountId
|
|
3818
|
+
* @param {*} [options] Override http request option.
|
|
3819
|
+
* @throws {RequiredError}
|
|
3820
|
+
*/
|
|
3821
|
+
parkingTicketsV2AllDetails(xAccountId, options) {
|
|
3822
|
+
return localVarFp.parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(axios, basePath));
|
|
3823
|
+
},
|
|
3654
3824
|
/**
|
|
3655
3825
|
*
|
|
3656
3826
|
* @param {string} visitScheduleId
|
|
@@ -3795,12 +3965,13 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3795
3965
|
/**
|
|
3796
3966
|
*
|
|
3797
3967
|
* @param {string} id
|
|
3968
|
+
* @param {string} xAccountId
|
|
3798
3969
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
3799
3970
|
* @param {*} [options] Override http request option.
|
|
3800
3971
|
* @throws {RequiredError}
|
|
3801
3972
|
*/
|
|
3802
|
-
visitorSchedulesUpdate(id, updateVisitorScheduleBody, options) {
|
|
3803
|
-
return localVarFp.visitorSchedulesUpdate(id, updateVisitorScheduleBody, options).then((request) => request(axios, basePath));
|
|
3973
|
+
visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options) {
|
|
3974
|
+
return localVarFp.visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options).then((request) => request(axios, basePath));
|
|
3804
3975
|
},
|
|
3805
3976
|
/**
|
|
3806
3977
|
*
|
|
@@ -3838,6 +4009,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3838
4009
|
visitorsResidentCreate(createVisitorResidentBody, options) {
|
|
3839
4010
|
return localVarFp.visitorsResidentCreate(createVisitorResidentBody, options).then((request) => request(axios, basePath));
|
|
3840
4011
|
},
|
|
4012
|
+
/**
|
|
4013
|
+
*
|
|
4014
|
+
* @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
|
|
4015
|
+
* @param {*} [options] Override http request option.
|
|
4016
|
+
* @throws {RequiredError}
|
|
4017
|
+
*/
|
|
4018
|
+
visitorsResidentDeactive(deactiveVisitorResidentBody, options) {
|
|
4019
|
+
return localVarFp.visitorsResidentDeactive(deactiveVisitorResidentBody, options).then((request) => request(axios, basePath));
|
|
4020
|
+
},
|
|
3841
4021
|
/**
|
|
3842
4022
|
*
|
|
3843
4023
|
* @param {string} id
|
|
@@ -4292,12 +4472,13 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4292
4472
|
* @param {number} memberTypeId
|
|
4293
4473
|
* @param {number} departmentId
|
|
4294
4474
|
* @param {number} vehicleTypeId
|
|
4475
|
+
* @param {string} [inviteId]
|
|
4295
4476
|
* @param {*} [options] Override http request option.
|
|
4296
4477
|
* @throws {RequiredError}
|
|
4297
4478
|
* @memberof DefaultApi
|
|
4298
4479
|
*/
|
|
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));
|
|
4480
|
+
parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options) {
|
|
4481
|
+
return (0, exports.DefaultApiFp)(this.configuration).parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options).then((request) => request(this.axios, this.basePath));
|
|
4301
4482
|
}
|
|
4302
4483
|
/**
|
|
4303
4484
|
*
|
|
@@ -4321,6 +4502,18 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4321
4502
|
parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options) {
|
|
4322
4503
|
return (0, exports.DefaultApiFp)(this.configuration).parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options).then((request) => request(this.axios, this.basePath));
|
|
4323
4504
|
}
|
|
4505
|
+
/**
|
|
4506
|
+
*
|
|
4507
|
+
* @param {string} tenantId
|
|
4508
|
+
* @param {number} projectId
|
|
4509
|
+
* @param {string} [lang]
|
|
4510
|
+
* @param {*} [options] Override http request option.
|
|
4511
|
+
* @throws {RequiredError}
|
|
4512
|
+
* @memberof DefaultApi
|
|
4513
|
+
*/
|
|
4514
|
+
parkingResidentialTicketsTerms(tenantId, projectId, lang, options) {
|
|
4515
|
+
return (0, exports.DefaultApiFp)(this.configuration).parkingResidentialTicketsTerms(tenantId, projectId, lang, options).then((request) => request(this.axios, this.basePath));
|
|
4516
|
+
}
|
|
4324
4517
|
/**
|
|
4325
4518
|
*
|
|
4326
4519
|
* @param {*} [options] Override http request option.
|
|
@@ -4362,6 +4555,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4362
4555
|
parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options) {
|
|
4363
4556
|
return (0, exports.DefaultApiFp)(this.configuration).parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options).then((request) => request(this.axios, this.basePath));
|
|
4364
4557
|
}
|
|
4558
|
+
/**
|
|
4559
|
+
*
|
|
4560
|
+
* @param {string} xAccountId
|
|
4561
|
+
* @param {*} [options] Override http request option.
|
|
4562
|
+
* @throws {RequiredError}
|
|
4563
|
+
* @memberof DefaultApi
|
|
4564
|
+
*/
|
|
4565
|
+
parkingTicketsV2AllDetails(xAccountId, options) {
|
|
4566
|
+
return (0, exports.DefaultApiFp)(this.configuration).parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
4567
|
+
}
|
|
4365
4568
|
/**
|
|
4366
4569
|
*
|
|
4367
4570
|
* @param {string} visitScheduleId
|
|
@@ -4521,13 +4724,14 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4521
4724
|
/**
|
|
4522
4725
|
*
|
|
4523
4726
|
* @param {string} id
|
|
4727
|
+
* @param {string} xAccountId
|
|
4524
4728
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
4525
4729
|
* @param {*} [options] Override http request option.
|
|
4526
4730
|
* @throws {RequiredError}
|
|
4527
4731
|
* @memberof DefaultApi
|
|
4528
4732
|
*/
|
|
4529
|
-
visitorSchedulesUpdate(id, updateVisitorScheduleBody, options) {
|
|
4530
|
-
return (0, exports.DefaultApiFp)(this.configuration).visitorSchedulesUpdate(id, updateVisitorScheduleBody, options).then((request) => request(this.axios, this.basePath));
|
|
4733
|
+
visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options) {
|
|
4734
|
+
return (0, exports.DefaultApiFp)(this.configuration).visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options).then((request) => request(this.axios, this.basePath));
|
|
4531
4735
|
}
|
|
4532
4736
|
/**
|
|
4533
4737
|
*
|
|
@@ -4569,6 +4773,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4569
4773
|
visitorsResidentCreate(createVisitorResidentBody, options) {
|
|
4570
4774
|
return (0, exports.DefaultApiFp)(this.configuration).visitorsResidentCreate(createVisitorResidentBody, options).then((request) => request(this.axios, this.basePath));
|
|
4571
4775
|
}
|
|
4776
|
+
/**
|
|
4777
|
+
*
|
|
4778
|
+
* @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
|
|
4779
|
+
* @param {*} [options] Override http request option.
|
|
4780
|
+
* @throws {RequiredError}
|
|
4781
|
+
* @memberof DefaultApi
|
|
4782
|
+
*/
|
|
4783
|
+
visitorsResidentDeactive(deactiveVisitorResidentBody, options) {
|
|
4784
|
+
return (0, exports.DefaultApiFp)(this.configuration).visitorsResidentDeactive(deactiveVisitorResidentBody, options).then((request) => request(this.axios, this.basePath));
|
|
4785
|
+
}
|
|
4572
4786
|
/**
|
|
4573
4787
|
*
|
|
4574
4788
|
* @param {string} id
|