ob-bms-sdk 0.0.111 → 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/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.AccessorType = exports.ACRequestStatusRejected = exports.ACRequestStatusApproved = exports.ACRequestStatus = void 0;
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,6 +68,13 @@ exports.AccessorType = {
68
68
  Member: 'member',
69
69
  Tenant: 'tenant'
70
70
  };
71
+ exports.ParkingResidentialTicketsIndexQueryTypeEnum = {
72
+ LogId: 'log_id',
73
+ TicketNumber: 'ticket_number',
74
+ PlateNo: 'plate_no',
75
+ InviteId: 'invite_id',
76
+ MemberId: 'member_id'
77
+ };
71
78
  exports.ParkingTicketsIndexQueryTypeEnum = {
72
79
  LogId: 'log_id',
73
80
  InviteId: 'invite_id',
@@ -760,6 +767,35 @@ const DefaultApiAxiosParamCreator = function (configuration) {
760
767
  options: localVarRequestOptions,
761
768
  };
762
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
+ }),
763
799
  /**
764
800
  *
765
801
  * @param {IssueTypeRequest} issueTypeRequest
@@ -1365,11 +1401,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1365
1401
  /**
1366
1402
  *
1367
1403
  * @param {string} id
1368
- * @param {string} [xAccountId]
1369
1404
  * @param {*} [options] Override http request option.
1370
1405
  * @throws {RequiredError}
1371
1406
  */
1372
- parkingReservationsListDetail: (id, xAccountId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1407
+ parkingReservationsListDetail: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
1373
1408
  // verify required parameter 'id' is not null or undefined
1374
1409
  (0, common_1.assertParamExists)('parkingReservationsListDetail', 'id', id);
1375
1410
  const localVarPath = `/parking_reservations/{id}`
@@ -1383,9 +1418,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1383
1418
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1384
1419
  const localVarHeaderParameter = {};
1385
1420
  const localVarQueryParameter = {};
1386
- if (xAccountId != null) {
1387
- localVarHeaderParameter['x-account-id'] = String(xAccountId);
1388
- }
1389
1421
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1390
1422
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1391
1423
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -1422,6 +1454,121 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1422
1454
  options: localVarRequestOptions,
1423
1455
  };
1424
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
+ }),
1425
1572
  /**
1426
1573
  *
1427
1574
  * @param {*} [options] Override http request option.
@@ -1947,6 +2094,30 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1947
2094
  options: localVarRequestOptions,
1948
2095
  };
1949
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
+ }),
1950
2121
  /**
1951
2122
  *
1952
2123
  * @param {*} [options] Override http request option.
@@ -2089,6 +2260,35 @@ const DefaultApiAxiosParamCreator = function (configuration) {
2089
2260
  options: localVarRequestOptions,
2090
2261
  };
2091
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
+ }),
2092
2292
  /**
2093
2293
  *
2094
2294
  * @param {string} id
@@ -2363,6 +2563,18 @@ const DefaultApiFp = function (configuration) {
2363
2563
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2364
2564
  });
2365
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
+ },
2366
2578
  /**
2367
2579
  *
2368
2580
  * @param {IssueTypeRequest} issueTypeRequest
@@ -2599,13 +2811,12 @@ const DefaultApiFp = function (configuration) {
2599
2811
  /**
2600
2812
  *
2601
2813
  * @param {string} id
2602
- * @param {string} [xAccountId]
2603
2814
  * @param {*} [options] Override http request option.
2604
2815
  * @throws {RequiredError}
2605
2816
  */
2606
- parkingReservationsListDetail(id, xAccountId, options) {
2817
+ parkingReservationsListDetail(id, options) {
2607
2818
  return __awaiter(this, void 0, void 0, function* () {
2608
- const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingReservationsListDetail(id, xAccountId, options);
2819
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingReservationsListDetail(id, options);
2609
2820
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2610
2821
  });
2611
2822
  },
@@ -2621,6 +2832,47 @@ const DefaultApiFp = function (configuration) {
2621
2832
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2622
2833
  });
2623
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
+ },
2624
2876
  /**
2625
2877
  *
2626
2878
  * @param {*} [options] Override http request option.
@@ -2834,6 +3086,17 @@ const DefaultApiFp = function (configuration) {
2834
3086
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2835
3087
  });
2836
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
+ },
2837
3100
  /**
2838
3101
  *
2839
3102
  * @param {*} [options] Override http request option.
@@ -2894,6 +3157,18 @@ const DefaultApiFp = function (configuration) {
2894
3157
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2895
3158
  });
2896
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
+ },
2897
3172
  /**
2898
3173
  *
2899
3174
  * @param {string} id
@@ -3098,6 +3373,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3098
3373
  integrationsFsMembersDelete(destroyFSMembers, options) {
3099
3374
  return localVarFp.integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(axios, basePath));
3100
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
+ },
3101
3385
  /**
3102
3386
  *
3103
3387
  * @param {IssueTypeRequest} issueTypeRequest
@@ -3283,12 +3567,11 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3283
3567
  /**
3284
3568
  *
3285
3569
  * @param {string} id
3286
- * @param {string} [xAccountId]
3287
3570
  * @param {*} [options] Override http request option.
3288
3571
  * @throws {RequiredError}
3289
3572
  */
3290
- parkingReservationsListDetail(id, xAccountId, options) {
3291
- return localVarFp.parkingReservationsListDetail(id, xAccountId, options).then((request) => request(axios, basePath));
3573
+ parkingReservationsListDetail(id, options) {
3574
+ return localVarFp.parkingReservationsListDetail(id, options).then((request) => request(axios, basePath));
3292
3575
  },
3293
3576
  /**
3294
3577
  *
@@ -3299,6 +3582,38 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3299
3582
  parkingReservationsListShow(xAccountId, options) {
3300
3583
  return localVarFp.parkingReservationsListShow(xAccountId, options).then((request) => request(axios, basePath));
3301
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
+ },
3302
3617
  /**
3303
3618
  *
3304
3619
  * @param {*} [options] Override http request option.
@@ -3461,6 +3776,14 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3461
3776
  towersIndex(options) {
3462
3777
  return localVarFp.towersIndex(options).then((request) => request(axios, basePath));
3463
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
+ },
3464
3787
  /**
3465
3788
  *
3466
3789
  * @param {*} [options] Override http request option.
@@ -3506,6 +3829,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3506
3829
  visitorsDestroy(id, options) {
3507
3830
  return localVarFp.visitorsDestroy(id, options).then((request) => request(axios, basePath));
3508
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
+ },
3509
3841
  /**
3510
3842
  *
3511
3843
  * @param {string} id
@@ -3725,6 +4057,16 @@ class DefaultApi extends base_1.BaseAPI {
3725
4057
  integrationsFsMembersDelete(destroyFSMembers, options) {
3726
4058
  return (0, exports.DefaultApiFp)(this.configuration).integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(this.axios, this.basePath));
3727
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
+ }
3728
4070
  /**
3729
4071
  *
3730
4072
  * @param {IssueTypeRequest} issueTypeRequest
@@ -3927,13 +4269,12 @@ class DefaultApi extends base_1.BaseAPI {
3927
4269
  /**
3928
4270
  *
3929
4271
  * @param {string} id
3930
- * @param {string} [xAccountId]
3931
4272
  * @param {*} [options] Override http request option.
3932
4273
  * @throws {RequiredError}
3933
4274
  * @memberof DefaultApi
3934
4275
  */
3935
- parkingReservationsListDetail(id, xAccountId, options) {
3936
- return (0, exports.DefaultApiFp)(this.configuration).parkingReservationsListDetail(id, xAccountId, options).then((request) => request(this.axios, this.basePath));
4276
+ parkingReservationsListDetail(id, options) {
4277
+ return (0, exports.DefaultApiFp)(this.configuration).parkingReservationsListDetail(id, options).then((request) => request(this.axios, this.basePath));
3937
4278
  }
3938
4279
  /**
3939
4280
  *
@@ -3945,6 +4286,41 @@ class DefaultApi extends base_1.BaseAPI {
3945
4286
  parkingReservationsListShow(xAccountId, options) {
3946
4287
  return (0, exports.DefaultApiFp)(this.configuration).parkingReservationsListShow(xAccountId, options).then((request) => request(this.axios, this.basePath));
3947
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
+ }
3948
4324
  /**
3949
4325
  *
3950
4326
  * @param {*} [options] Override http request option.
@@ -4124,6 +4500,15 @@ class DefaultApi extends base_1.BaseAPI {
4124
4500
  towersIndex(options) {
4125
4501
  return (0, exports.DefaultApiFp)(this.configuration).towersIndex(options).then((request) => request(this.axios, this.basePath));
4126
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
+ }
4127
4512
  /**
4128
4513
  *
4129
4514
  * @param {*} [options] Override http request option.
@@ -4174,6 +4559,16 @@ class DefaultApi extends base_1.BaseAPI {
4174
4559
  visitorsDestroy(id, options) {
4175
4560
  return (0, exports.DefaultApiFp)(this.configuration).visitorsDestroy(id, options).then((request) => request(this.axios, this.basePath));
4176
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
+ }
4177
4572
  /**
4178
4573
  *
4179
4574
  * @param {string} id
@@ -4186,6 +4581,16 @@ class DefaultApi extends base_1.BaseAPI {
4186
4581
  }
4187
4582
  }
4188
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
+ };
4189
4594
  /**
4190
4595
  * @export
4191
4596
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-bms-sdk",
3
- "version": "0.0.111",
3
+ "version": "0.0.113",
4
4
  "description": "API interfaces for OB BMS",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"