ob-bms-sdk 0.0.113 → 0.0.115

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/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,34 @@ 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
+ const localVarPath = `/v2/parking_tickets/all_details`;
1745
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1746
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1747
+ let baseOptions;
1748
+ if (configuration) {
1749
+ baseOptions = configuration.baseOptions;
1750
+ }
1751
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1752
+ const localVarHeaderParameter = {};
1753
+ const localVarQueryParameter = {};
1754
+ if (xAccountId != null) {
1755
+ localVarHeaderParameter['x-account-id'] = String(xAccountId);
1756
+ }
1757
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1758
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1759
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1760
+ return {
1761
+ url: (0, common_1.toPathString)(localVarUrlObj),
1762
+ options: localVarRequestOptions,
1763
+ };
1764
+ }),
1693
1765
  /**
1694
1766
  *
1695
1767
  * @param {string} visitScheduleId
@@ -2145,13 +2217,16 @@ const DefaultApiAxiosParamCreator = function (configuration) {
2145
2217
  /**
2146
2218
  *
2147
2219
  * @param {string} id
2220
+ * @param {string} xAccountId
2148
2221
  * @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
2149
2222
  * @param {*} [options] Override http request option.
2150
2223
  * @throws {RequiredError}
2151
2224
  */
2152
- visitorSchedulesUpdate: (id, updateVisitorScheduleBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
2225
+ visitorSchedulesUpdate: (id, xAccountId, updateVisitorScheduleBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
2153
2226
  // verify required parameter 'id' is not null or undefined
2154
2227
  (0, common_1.assertParamExists)('visitorSchedulesUpdate', 'id', id);
2228
+ // verify required parameter 'xAccountId' is not null or undefined
2229
+ (0, common_1.assertParamExists)('visitorSchedulesUpdate', 'xAccountId', xAccountId);
2155
2230
  // verify required parameter 'updateVisitorScheduleBody' is not null or undefined
2156
2231
  (0, common_1.assertParamExists)('visitorSchedulesUpdate', 'updateVisitorScheduleBody', updateVisitorScheduleBody);
2157
2232
  const localVarPath = `/visitor_schedules/{id}`
@@ -2165,6 +2240,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
2165
2240
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
2166
2241
  const localVarHeaderParameter = {};
2167
2242
  const localVarQueryParameter = {};
2243
+ if (xAccountId != null) {
2244
+ localVarHeaderParameter['x-account-id'] = String(xAccountId);
2245
+ }
2168
2246
  localVarHeaderParameter['Content-Type'] = 'application/json';
2169
2247
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2170
2248
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2289,6 +2367,35 @@ const DefaultApiAxiosParamCreator = function (configuration) {
2289
2367
  options: localVarRequestOptions,
2290
2368
  };
2291
2369
  }),
2370
+ /**
2371
+ *
2372
+ * @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
2373
+ * @param {*} [options] Override http request option.
2374
+ * @throws {RequiredError}
2375
+ */
2376
+ visitorsResidentDeactive: (deactiveVisitorResidentBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
2377
+ // verify required parameter 'deactiveVisitorResidentBody' is not null or undefined
2378
+ (0, common_1.assertParamExists)('visitorsResidentDeactive', 'deactiveVisitorResidentBody', deactiveVisitorResidentBody);
2379
+ const localVarPath = `/visitors/resident/deactive`;
2380
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
2381
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2382
+ let baseOptions;
2383
+ if (configuration) {
2384
+ baseOptions = configuration.baseOptions;
2385
+ }
2386
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
2387
+ const localVarHeaderParameter = {};
2388
+ const localVarQueryParameter = {};
2389
+ localVarHeaderParameter['Content-Type'] = 'application/json';
2390
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2391
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2392
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2393
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(deactiveVisitorResidentBody, localVarRequestOptions, configuration);
2394
+ return {
2395
+ url: (0, common_1.toPathString)(localVarUrlObj),
2396
+ options: localVarRequestOptions,
2397
+ };
2398
+ }),
2292
2399
  /**
2293
2400
  *
2294
2401
  * @param {string} id
@@ -2838,12 +2945,13 @@ const DefaultApiFp = function (configuration) {
2838
2945
  * @param {number} memberTypeId
2839
2946
  * @param {number} departmentId
2840
2947
  * @param {number} vehicleTypeId
2948
+ * @param {string} [inviteId]
2841
2949
  * @param {*} [options] Override http request option.
2842
2950
  * @throws {RequiredError}
2843
2951
  */
2844
- parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options) {
2952
+ parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options) {
2845
2953
  return __awaiter(this, void 0, void 0, function* () {
2846
- const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options);
2954
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options);
2847
2955
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2848
2956
  });
2849
2957
  },
@@ -2873,6 +2981,20 @@ const DefaultApiFp = function (configuration) {
2873
2981
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2874
2982
  });
2875
2983
  },
2984
+ /**
2985
+ *
2986
+ * @param {string} tenantId
2987
+ * @param {number} projectId
2988
+ * @param {string} [lang]
2989
+ * @param {*} [options] Override http request option.
2990
+ * @throws {RequiredError}
2991
+ */
2992
+ parkingResidentialTicketsTerms(tenantId, projectId, lang, options) {
2993
+ return __awaiter(this, void 0, void 0, function* () {
2994
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingResidentialTicketsTerms(tenantId, projectId, lang, options);
2995
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2996
+ });
2997
+ },
2876
2998
  /**
2877
2999
  *
2878
3000
  * @param {*} [options] Override http request option.
@@ -2922,6 +3044,18 @@ const DefaultApiFp = function (configuration) {
2922
3044
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2923
3045
  });
2924
3046
  },
3047
+ /**
3048
+ *
3049
+ * @param {string} [xAccountId]
3050
+ * @param {*} [options] Override http request option.
3051
+ * @throws {RequiredError}
3052
+ */
3053
+ parkingTicketsV2AllDetails(xAccountId, options) {
3054
+ return __awaiter(this, void 0, void 0, function* () {
3055
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingTicketsV2AllDetails(xAccountId, options);
3056
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
3057
+ });
3058
+ },
2925
3059
  /**
2926
3060
  *
2927
3061
  * @param {string} visitScheduleId
@@ -3111,13 +3245,14 @@ const DefaultApiFp = function (configuration) {
3111
3245
  /**
3112
3246
  *
3113
3247
  * @param {string} id
3248
+ * @param {string} xAccountId
3114
3249
  * @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
3115
3250
  * @param {*} [options] Override http request option.
3116
3251
  * @throws {RequiredError}
3117
3252
  */
3118
- visitorSchedulesUpdate(id, updateVisitorScheduleBody, options) {
3253
+ visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options) {
3119
3254
  return __awaiter(this, void 0, void 0, function* () {
3120
- const localVarAxiosArgs = yield localVarAxiosParamCreator.visitorSchedulesUpdate(id, updateVisitorScheduleBody, options);
3255
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options);
3121
3256
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
3122
3257
  });
3123
3258
  },
@@ -3169,6 +3304,18 @@ const DefaultApiFp = function (configuration) {
3169
3304
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
3170
3305
  });
3171
3306
  },
3307
+ /**
3308
+ *
3309
+ * @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
3310
+ * @param {*} [options] Override http request option.
3311
+ * @throws {RequiredError}
3312
+ */
3313
+ visitorsResidentDeactive(deactiveVisitorResidentBody, options) {
3314
+ return __awaiter(this, void 0, void 0, function* () {
3315
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.visitorsResidentDeactive(deactiveVisitorResidentBody, options);
3316
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
3317
+ });
3318
+ },
3172
3319
  /**
3173
3320
  *
3174
3321
  * @param {string} id
@@ -3588,11 +3735,12 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3588
3735
  * @param {number} memberTypeId
3589
3736
  * @param {number} departmentId
3590
3737
  * @param {number} vehicleTypeId
3738
+ * @param {string} [inviteId]
3591
3739
  * @param {*} [options] Override http request option.
3592
3740
  * @throws {RequiredError}
3593
3741
  */
3594
- parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options) {
3595
- return localVarFp.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options).then((request) => request(axios, basePath));
3742
+ parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options) {
3743
+ return localVarFp.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options).then((request) => request(axios, basePath));
3596
3744
  },
3597
3745
  /**
3598
3746
  *
@@ -3614,6 +3762,17 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3614
3762
  parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options) {
3615
3763
  return localVarFp.parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options).then((request) => request(axios, basePath));
3616
3764
  },
3765
+ /**
3766
+ *
3767
+ * @param {string} tenantId
3768
+ * @param {number} projectId
3769
+ * @param {string} [lang]
3770
+ * @param {*} [options] Override http request option.
3771
+ * @throws {RequiredError}
3772
+ */
3773
+ parkingResidentialTicketsTerms(tenantId, projectId, lang, options) {
3774
+ return localVarFp.parkingResidentialTicketsTerms(tenantId, projectId, lang, options).then((request) => request(axios, basePath));
3775
+ },
3617
3776
  /**
3618
3777
  *
3619
3778
  * @param {*} [options] Override http request option.
@@ -3651,6 +3810,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3651
3810
  parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options) {
3652
3811
  return localVarFp.parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options).then((request) => request(axios, basePath));
3653
3812
  },
3813
+ /**
3814
+ *
3815
+ * @param {string} [xAccountId]
3816
+ * @param {*} [options] Override http request option.
3817
+ * @throws {RequiredError}
3818
+ */
3819
+ parkingTicketsV2AllDetails(xAccountId, options) {
3820
+ return localVarFp.parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(axios, basePath));
3821
+ },
3654
3822
  /**
3655
3823
  *
3656
3824
  * @param {string} visitScheduleId
@@ -3795,12 +3963,13 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3795
3963
  /**
3796
3964
  *
3797
3965
  * @param {string} id
3966
+ * @param {string} xAccountId
3798
3967
  * @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
3799
3968
  * @param {*} [options] Override http request option.
3800
3969
  * @throws {RequiredError}
3801
3970
  */
3802
- visitorSchedulesUpdate(id, updateVisitorScheduleBody, options) {
3803
- return localVarFp.visitorSchedulesUpdate(id, updateVisitorScheduleBody, options).then((request) => request(axios, basePath));
3971
+ visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options) {
3972
+ return localVarFp.visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options).then((request) => request(axios, basePath));
3804
3973
  },
3805
3974
  /**
3806
3975
  *
@@ -3838,6 +4007,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3838
4007
  visitorsResidentCreate(createVisitorResidentBody, options) {
3839
4008
  return localVarFp.visitorsResidentCreate(createVisitorResidentBody, options).then((request) => request(axios, basePath));
3840
4009
  },
4010
+ /**
4011
+ *
4012
+ * @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
4013
+ * @param {*} [options] Override http request option.
4014
+ * @throws {RequiredError}
4015
+ */
4016
+ visitorsResidentDeactive(deactiveVisitorResidentBody, options) {
4017
+ return localVarFp.visitorsResidentDeactive(deactiveVisitorResidentBody, options).then((request) => request(axios, basePath));
4018
+ },
3841
4019
  /**
3842
4020
  *
3843
4021
  * @param {string} id
@@ -4292,12 +4470,13 @@ class DefaultApi extends base_1.BaseAPI {
4292
4470
  * @param {number} memberTypeId
4293
4471
  * @param {number} departmentId
4294
4472
  * @param {number} vehicleTypeId
4473
+ * @param {string} [inviteId]
4295
4474
  * @param {*} [options] Override http request option.
4296
4475
  * @throws {RequiredError}
4297
4476
  * @memberof DefaultApi
4298
4477
  */
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));
4478
+ parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options) {
4479
+ return (0, exports.DefaultApiFp)(this.configuration).parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options).then((request) => request(this.axios, this.basePath));
4301
4480
  }
4302
4481
  /**
4303
4482
  *
@@ -4321,6 +4500,18 @@ class DefaultApi extends base_1.BaseAPI {
4321
4500
  parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options) {
4322
4501
  return (0, exports.DefaultApiFp)(this.configuration).parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options).then((request) => request(this.axios, this.basePath));
4323
4502
  }
4503
+ /**
4504
+ *
4505
+ * @param {string} tenantId
4506
+ * @param {number} projectId
4507
+ * @param {string} [lang]
4508
+ * @param {*} [options] Override http request option.
4509
+ * @throws {RequiredError}
4510
+ * @memberof DefaultApi
4511
+ */
4512
+ parkingResidentialTicketsTerms(tenantId, projectId, lang, options) {
4513
+ return (0, exports.DefaultApiFp)(this.configuration).parkingResidentialTicketsTerms(tenantId, projectId, lang, options).then((request) => request(this.axios, this.basePath));
4514
+ }
4324
4515
  /**
4325
4516
  *
4326
4517
  * @param {*} [options] Override http request option.
@@ -4362,6 +4553,16 @@ class DefaultApi extends base_1.BaseAPI {
4362
4553
  parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options) {
4363
4554
  return (0, exports.DefaultApiFp)(this.configuration).parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options).then((request) => request(this.axios, this.basePath));
4364
4555
  }
4556
+ /**
4557
+ *
4558
+ * @param {string} [xAccountId]
4559
+ * @param {*} [options] Override http request option.
4560
+ * @throws {RequiredError}
4561
+ * @memberof DefaultApi
4562
+ */
4563
+ parkingTicketsV2AllDetails(xAccountId, options) {
4564
+ return (0, exports.DefaultApiFp)(this.configuration).parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(this.axios, this.basePath));
4565
+ }
4365
4566
  /**
4366
4567
  *
4367
4568
  * @param {string} visitScheduleId
@@ -4521,13 +4722,14 @@ class DefaultApi extends base_1.BaseAPI {
4521
4722
  /**
4522
4723
  *
4523
4724
  * @param {string} id
4725
+ * @param {string} xAccountId
4524
4726
  * @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
4525
4727
  * @param {*} [options] Override http request option.
4526
4728
  * @throws {RequiredError}
4527
4729
  * @memberof DefaultApi
4528
4730
  */
4529
- visitorSchedulesUpdate(id, updateVisitorScheduleBody, options) {
4530
- return (0, exports.DefaultApiFp)(this.configuration).visitorSchedulesUpdate(id, updateVisitorScheduleBody, options).then((request) => request(this.axios, this.basePath));
4731
+ visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options) {
4732
+ return (0, exports.DefaultApiFp)(this.configuration).visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options).then((request) => request(this.axios, this.basePath));
4531
4733
  }
4532
4734
  /**
4533
4735
  *
@@ -4569,6 +4771,16 @@ class DefaultApi extends base_1.BaseAPI {
4569
4771
  visitorsResidentCreate(createVisitorResidentBody, options) {
4570
4772
  return (0, exports.DefaultApiFp)(this.configuration).visitorsResidentCreate(createVisitorResidentBody, options).then((request) => request(this.axios, this.basePath));
4571
4773
  }
4774
+ /**
4775
+ *
4776
+ * @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
4777
+ * @param {*} [options] Override http request option.
4778
+ * @throws {RequiredError}
4779
+ * @memberof DefaultApi
4780
+ */
4781
+ visitorsResidentDeactive(deactiveVisitorResidentBody, options) {
4782
+ return (0, exports.DefaultApiFp)(this.configuration).visitorsResidentDeactive(deactiveVisitorResidentBody, options).then((request) => request(this.axios, this.basePath));
4783
+ }
4572
4784
  /**
4573
4785
  *
4574
4786
  * @param {string} id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-bms-sdk",
3
- "version": "0.0.113",
3
+ "version": "0.0.115",
4
4
  "description": "API interfaces for OB BMS",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"