ob-bms-sdk 0.0.112 → 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 CHANGED
@@ -1117,6 +1117,25 @@ export interface CreateMembersResponse {
1117
1117
  */
1118
1118
  'error': { [key: string]: any; } | null;
1119
1119
  }
1120
+ /**
1121
+ *
1122
+ * @export
1123
+ * @interface CreateResidenceFSMembersBody
1124
+ */
1125
+ export interface CreateResidenceFSMembersBody {
1126
+ /**
1127
+ *
1128
+ * @type {number}
1129
+ * @memberof CreateResidenceFSMembersBody
1130
+ */
1131
+ 'count': number;
1132
+ /**
1133
+ *
1134
+ * @type {Array<PersonDataResident>}
1135
+ * @memberof CreateResidenceFSMembersBody
1136
+ */
1137
+ 'data': Array<PersonDataResident>;
1138
+ }
1120
1139
  /**
1121
1140
  *
1122
1141
  * @export
@@ -1179,6 +1198,97 @@ export interface CreateVisitorBody {
1179
1198
  */
1180
1199
  'visitor_schedule': VisitorSchedule;
1181
1200
  }
1201
+ /**
1202
+ *
1203
+ * @export
1204
+ * @interface CreateVisitorResidentBody
1205
+ */
1206
+ export interface CreateVisitorResidentBody {
1207
+ /**
1208
+ *
1209
+ * @type {string}
1210
+ * @memberof CreateVisitorResidentBody
1211
+ */
1212
+ 'name': string;
1213
+ /**
1214
+ *
1215
+ * @type {string}
1216
+ * @memberof CreateVisitorResidentBody
1217
+ */
1218
+ 'profile_image_url': string | null;
1219
+ /**
1220
+ *
1221
+ * @type {string}
1222
+ * @memberof CreateVisitorResidentBody
1223
+ */
1224
+ 'email': string;
1225
+ /**
1226
+ *
1227
+ * @type {string}
1228
+ * @memberof CreateVisitorResidentBody
1229
+ */
1230
+ 'company_name': string;
1231
+ /**
1232
+ *
1233
+ * @type {string}
1234
+ * @memberof CreateVisitorResidentBody
1235
+ */
1236
+ 'reference'?: string;
1237
+ /**
1238
+ *
1239
+ * @type {string}
1240
+ * @memberof CreateVisitorResidentBody
1241
+ */
1242
+ 'inviter_id': string;
1243
+ /**
1244
+ *
1245
+ * @type {VisitorSchedule}
1246
+ * @memberof CreateVisitorResidentBody
1247
+ */
1248
+ 'visitor_schedule': VisitorSchedule;
1249
+ /**
1250
+ *
1251
+ * @type {string}
1252
+ * @memberof CreateVisitorResidentBody
1253
+ */
1254
+ 'residence_id': string;
1255
+ /**
1256
+ *
1257
+ * @type {number}
1258
+ * @memberof CreateVisitorResidentBody
1259
+ */
1260
+ 'location_id': number;
1261
+ /**
1262
+ *
1263
+ * @type {string}
1264
+ * @memberof CreateVisitorResidentBody
1265
+ */
1266
+ 'invite_name': string;
1267
+ /**
1268
+ *
1269
+ * @type {string}
1270
+ * @memberof CreateVisitorResidentBody
1271
+ */
1272
+ 'invite_house_number': string;
1273
+ /**
1274
+ *
1275
+ * @type {string}
1276
+ * @memberof CreateVisitorResidentBody
1277
+ */
1278
+ 'invite_zone': string;
1279
+ /**
1280
+ *
1281
+ * @type {string}
1282
+ * @memberof CreateVisitorResidentBody
1283
+ */
1284
+ 'tenant_id': string;
1285
+ /**
1286
+ *
1287
+ * @type {number}
1288
+ * @memberof CreateVisitorResidentBody
1289
+ */
1290
+ 'project_id': number;
1291
+ }
1182
1292
  /**
1183
1293
  *
1184
1294
  * @export
@@ -1239,6 +1349,69 @@ export interface CreateVisitorResponse {
1239
1349
  * @memberof CreateVisitorResponse
1240
1350
  */
1241
1351
  'updated_at': string;
1352
+ /**
1353
+ *
1354
+ * @type {string}
1355
+ * @memberof CreateVisitorResponse
1356
+ */
1357
+ 'invite_id'?: string | null;
1358
+ }
1359
+ /**
1360
+ *
1361
+ * @export
1362
+ * @interface DeactivateVisitorPassResponse
1363
+ */
1364
+ export interface DeactivateVisitorPassResponse {
1365
+ /**
1366
+ *
1367
+ * @type {DeactivateVisitorPassResponseApiRes}
1368
+ * @memberof DeactivateVisitorPassResponse
1369
+ */
1370
+ 'apiRes': DeactivateVisitorPassResponseApiRes;
1371
+ /**
1372
+ *
1373
+ * @type {string}
1374
+ * @memberof DeactivateVisitorPassResponse
1375
+ */
1376
+ 'visitorPassId': string;
1377
+ }
1378
+ /**
1379
+ *
1380
+ * @export
1381
+ * @interface DeactivateVisitorPassResponseApiRes
1382
+ */
1383
+ export interface DeactivateVisitorPassResponseApiRes {
1384
+ /**
1385
+ *
1386
+ * @type {object}
1387
+ * @memberof DeactivateVisitorPassResponseApiRes
1388
+ */
1389
+ 'data': object;
1390
+ /**
1391
+ *
1392
+ * @type {number}
1393
+ * @memberof DeactivateVisitorPassResponseApiRes
1394
+ */
1395
+ 'status': number;
1396
+ /**
1397
+ *
1398
+ * @type {string}
1399
+ * @memberof DeactivateVisitorPassResponseApiRes
1400
+ */
1401
+ 'message': string;
1402
+ }
1403
+ /**
1404
+ *
1405
+ * @export
1406
+ * @interface DeactiveVisitorResidentBody
1407
+ */
1408
+ export interface DeactiveVisitorResidentBody {
1409
+ /**
1410
+ *
1411
+ * @type {string}
1412
+ * @memberof DeactiveVisitorResidentBody
1413
+ */
1414
+ 'invite_id': string;
1242
1415
  }
1243
1416
  /**
1244
1417
  *
@@ -1537,6 +1710,75 @@ export interface FloorSensorData {
1537
1710
  */
1538
1711
  'floor_id': string;
1539
1712
  }
1713
+ /**
1714
+ *
1715
+ * @export
1716
+ * @interface GetTermsAndConditionsResidenceParkingResponse
1717
+ */
1718
+ export interface GetTermsAndConditionsResidenceParkingResponse {
1719
+ /**
1720
+ *
1721
+ * @type {GetTermsAndConditionsResidenceParkingResponseData}
1722
+ * @memberof GetTermsAndConditionsResidenceParkingResponse
1723
+ */
1724
+ 'data': GetTermsAndConditionsResidenceParkingResponseData;
1725
+ }
1726
+ /**
1727
+ *
1728
+ * @export
1729
+ * @interface GetTermsAndConditionsResidenceParkingResponseData
1730
+ */
1731
+ export interface GetTermsAndConditionsResidenceParkingResponseData {
1732
+ /**
1733
+ *
1734
+ * @type {string}
1735
+ * @memberof GetTermsAndConditionsResidenceParkingResponseData
1736
+ */
1737
+ 'content': string;
1738
+ /**
1739
+ *
1740
+ * @type {string}
1741
+ * @memberof GetTermsAndConditionsResidenceParkingResponseData
1742
+ */
1743
+ 'title': string;
1744
+ /**
1745
+ *
1746
+ * @type {GetTermsAndConditionsResidenceParkingResponseDataProject}
1747
+ * @memberof GetTermsAndConditionsResidenceParkingResponseData
1748
+ */
1749
+ 'project': GetTermsAndConditionsResidenceParkingResponseDataProject;
1750
+ /**
1751
+ *
1752
+ * @type {string}
1753
+ * @memberof GetTermsAndConditionsResidenceParkingResponseData
1754
+ */
1755
+ 'id': string;
1756
+ }
1757
+ /**
1758
+ *
1759
+ * @export
1760
+ * @interface GetTermsAndConditionsResidenceParkingResponseDataProject
1761
+ */
1762
+ export interface GetTermsAndConditionsResidenceParkingResponseDataProject {
1763
+ /**
1764
+ *
1765
+ * @type {string}
1766
+ * @memberof GetTermsAndConditionsResidenceParkingResponseDataProject
1767
+ */
1768
+ 'projectsName': string;
1769
+ /**
1770
+ *
1771
+ * @type {string}
1772
+ * @memberof GetTermsAndConditionsResidenceParkingResponseDataProject
1773
+ */
1774
+ 'projectCode': string;
1775
+ /**
1776
+ *
1777
+ * @type {number}
1778
+ * @memberof GetTermsAndConditionsResidenceParkingResponseDataProject
1779
+ */
1780
+ 'projectId': number;
1781
+ }
1540
1782
  /**
1541
1783
  *
1542
1784
  * @export
@@ -2049,6 +2291,12 @@ export interface MemberIndexInterface {
2049
2291
  * @memberof MemberIndexInterface
2050
2292
  */
2051
2293
  'metadata'?: PrismaJsonValue | null;
2294
+ /**
2295
+ *
2296
+ * @type {PrismaJsonValue}
2297
+ * @memberof MemberIndexInterface
2298
+ */
2299
+ 'metadata_resident'?: PrismaJsonValue | null;
2052
2300
  /**
2053
2301
  *
2054
2302
  * @type {string}
@@ -2351,10 +2599,10 @@ export interface MembersShowResponse {
2351
2599
  'towers': Array<TowerData>;
2352
2600
  /**
2353
2601
  *
2354
- * @type {Array<OutdoorZoneResponse>}
2602
+ * @type {Array<OutdoorZone>}
2355
2603
  * @memberof MembersShowResponse
2356
2604
  */
2357
- 'outdoor': Array<OutdoorZoneResponse>;
2605
+ 'outdoor': Array<OutdoorZone>;
2358
2606
  /**
2359
2607
  *
2360
2608
  * @type {boolean}
@@ -2365,21 +2613,95 @@ export interface MembersShowResponse {
2365
2613
  /**
2366
2614
  *
2367
2615
  * @export
2368
- * @interface OutdoorZoneResponse
2616
+ * @interface MetaDataPasses
2617
+ */
2618
+ export interface MetaDataPasses {
2619
+ /**
2620
+ *
2621
+ * @type {number}
2622
+ * @memberof MetaDataPasses
2623
+ */
2624
+ 'project_id': number;
2625
+ /**
2626
+ *
2627
+ * @type {string}
2628
+ * @memberof MetaDataPasses
2629
+ */
2630
+ 'tenant_id': string;
2631
+ /**
2632
+ *
2633
+ * @type {string}
2634
+ * @memberof MetaDataPasses
2635
+ */
2636
+ 'invite_zone': string;
2637
+ /**
2638
+ *
2639
+ * @type {string}
2640
+ * @memberof MetaDataPasses
2641
+ */
2642
+ 'invite_house_number': string;
2643
+ /**
2644
+ *
2645
+ * @type {string}
2646
+ * @memberof MetaDataPasses
2647
+ */
2648
+ 'invite_name': string;
2649
+ }
2650
+ /**
2651
+ *
2652
+ * @export
2653
+ * @interface OutdoorZone
2369
2654
  */
2370
- export interface OutdoorZoneResponse {
2655
+ export interface OutdoorZone {
2656
+ /**
2657
+ *
2658
+ * @type {string}
2659
+ * @memberof OutdoorZone
2660
+ */
2661
+ 'id': string;
2371
2662
  /**
2372
2663
  *
2373
2664
  * @type {string}
2374
- * @memberof OutdoorZoneResponse
2665
+ * @memberof OutdoorZone
2375
2666
  */
2376
2667
  'name': string;
2377
2668
  /**
2378
2669
  *
2379
2670
  * @type {string}
2380
- * @memberof OutdoorZoneResponse
2671
+ * @memberof OutdoorZone
2381
2672
  */
2382
2673
  'code': string;
2674
+ /**
2675
+ *
2676
+ * @type {OutdoorZoneDisplayName}
2677
+ * @memberof OutdoorZone
2678
+ */
2679
+ 'display_name': OutdoorZoneDisplayName;
2680
+ }
2681
+ /**
2682
+ *
2683
+ * @export
2684
+ * @interface OutdoorZoneDisplayName
2685
+ */
2686
+ export interface OutdoorZoneDisplayName {
2687
+ /**
2688
+ *
2689
+ * @type {string}
2690
+ * @memberof OutdoorZoneDisplayName
2691
+ */
2692
+ 'zh': string;
2693
+ /**
2694
+ *
2695
+ * @type {string}
2696
+ * @memberof OutdoorZoneDisplayName
2697
+ */
2698
+ 'th': string;
2699
+ /**
2700
+ *
2701
+ * @type {string}
2702
+ * @memberof OutdoorZoneDisplayName
2703
+ */
2704
+ 'en': string;
2383
2705
  }
2384
2706
  /**
2385
2707
  *
@@ -3121,17 +3443,32 @@ export interface ParkingReservationResponse {
3121
3443
  /**
3122
3444
  *
3123
3445
  * @export
3124
- * @enum {string}
3446
+ * @interface ParkingResidentialTicketsIndexQuery
3125
3447
  */
3448
+ export interface ParkingResidentialTicketsIndexQuery {
3449
+ /**
3450
+ *
3451
+ * @type {string}
3452
+ * @memberof ParkingResidentialTicketsIndexQuery
3453
+ */
3454
+ 'type': ParkingResidentialTicketsIndexQueryTypeEnum;
3455
+ /**
3456
+ *
3457
+ * @type {string}
3458
+ * @memberof ParkingResidentialTicketsIndexQuery
3459
+ */
3460
+ 'id': string;
3461
+ }
3126
3462
 
3127
- export const ParkingReservationStatus = {
3128
- Pending: 'pending',
3129
- Confirmed: 'confirmed',
3130
- Cancelled: 'cancelled'
3463
+ export const ParkingResidentialTicketsIndexQueryTypeEnum = {
3464
+ LogId: 'log_id',
3465
+ TicketNumber: 'ticket_number',
3466
+ PlateNo: 'plate_no',
3467
+ InviteId: 'invite_id',
3468
+ MemberId: 'member_id'
3131
3469
  } as const;
3132
3470
 
3133
- export type ParkingReservationStatus = typeof ParkingReservationStatus[keyof typeof ParkingReservationStatus];
3134
-
3471
+ export type ParkingResidentialTicketsIndexQueryTypeEnum = typeof ParkingResidentialTicketsIndexQueryTypeEnum[keyof typeof ParkingResidentialTicketsIndexQueryTypeEnum];
3135
3472
 
3136
3473
  /**
3137
3474
  *
@@ -3504,19 +3841,38 @@ export interface ParkingTicketsRedeemBody {
3504
3841
  /**
3505
3842
  *
3506
3843
  * @export
3507
- * @interface ParkingVisitorAccessLog
3844
+ * @interface ParkingTicketsRedeemBodyResident
3508
3845
  */
3509
- export interface ParkingVisitorAccessLog {
3846
+ export interface ParkingTicketsRedeemBodyResident {
3510
3847
  /**
3511
3848
  *
3512
- * @type {number}
3513
- * @memberof ParkingVisitorAccessLog
3849
+ * @type {string}
3850
+ * @memberof ParkingTicketsRedeemBodyResident
3514
3851
  */
3515
- 'transacId': number;
3852
+ 'remark'?: string;
3516
3853
  /**
3517
3854
  *
3518
3855
  * @type {string}
3519
- * @memberof ParkingVisitorAccessLog
3856
+ * @memberof ParkingTicketsRedeemBodyResident
3857
+ */
3858
+ 'rate_code': string;
3859
+ }
3860
+ /**
3861
+ *
3862
+ * @export
3863
+ * @interface ParkingVisitorAccessLog
3864
+ */
3865
+ export interface ParkingVisitorAccessLog {
3866
+ /**
3867
+ *
3868
+ * @type {number}
3869
+ * @memberof ParkingVisitorAccessLog
3870
+ */
3871
+ 'transacId': number;
3872
+ /**
3873
+ *
3874
+ * @type {string}
3875
+ * @memberof ParkingVisitorAccessLog
3520
3876
  */
3521
3877
  'transacDatetime': string;
3522
3878
  /**
@@ -3556,6 +3912,12 @@ export interface PassConsentResponse {
3556
3912
  * @memberof PassConsentResponse
3557
3913
  */
3558
3914
  'uid': string | null;
3915
+ /**
3916
+ *
3917
+ * @type {MetaDataPasses}
3918
+ * @memberof PassConsentResponse
3919
+ */
3920
+ 'metadata_resident'?: MetaDataPasses;
3559
3921
  /**
3560
3922
  *
3561
3923
  * @type {string}
@@ -3998,6 +4360,55 @@ export interface PersonData {
3998
4360
  */
3999
4361
  'canPreRegister': boolean;
4000
4362
  }
4363
+ /**
4364
+ *
4365
+ * @export
4366
+ * @interface PersonDataResident
4367
+ */
4368
+ export interface PersonDataResident {
4369
+ /**
4370
+ *
4371
+ * @type {string}
4372
+ * @memberof PersonDataResident
4373
+ */
4374
+ 'personID': string;
4375
+ /**
4376
+ *
4377
+ * @type {Array<number>}
4378
+ * @memberof PersonDataResident
4379
+ */
4380
+ 'residenceIDs': Array<number>;
4381
+ /**
4382
+ *
4383
+ * @type {Array<string>}
4384
+ * @memberof PersonDataResident
4385
+ */
4386
+ 'phones': Array<string>;
4387
+ /**
4388
+ *
4389
+ * @type {Array<string>}
4390
+ * @memberof PersonDataResident
4391
+ */
4392
+ 'emails': Array<string>;
4393
+ /**
4394
+ *
4395
+ * @type {string}
4396
+ * @memberof PersonDataResident
4397
+ */
4398
+ 'updateTime': string;
4399
+ /**
4400
+ *
4401
+ * @type {boolean}
4402
+ * @memberof PersonDataResident
4403
+ */
4404
+ 'active': boolean;
4405
+ /**
4406
+ *
4407
+ * @type {string}
4408
+ * @memberof PersonDataResident
4409
+ */
4410
+ 'status'?: string;
4411
+ }
4001
4412
  /**
4002
4413
  *
4003
4414
  * @export
@@ -4527,6 +4938,12 @@ export interface ServiceRequestsUpdateRequestBodyStatus {
4527
4938
  * @interface ShowPassResponse
4528
4939
  */
4529
4940
  export interface ShowPassResponse {
4941
+ /**
4942
+ *
4943
+ * @type {MetaDataPasses}
4944
+ * @memberof ShowPassResponse
4945
+ */
4946
+ 'metadata_resident'?: MetaDataPasses;
4530
4947
  /**
4531
4948
  *
4532
4949
  * @type {LocationPasses}
@@ -4686,6 +5103,12 @@ export interface ShowVisitorResponse {
4686
5103
  * @memberof ShowVisitorResponse
4687
5104
  */
4688
5105
  'updated_at': string;
5106
+ /**
5107
+ *
5108
+ * @type {string}
5109
+ * @memberof ShowVisitorResponse
5110
+ */
5111
+ 'invite_id'?: string | null;
4689
5112
  }
4690
5113
  /**
4691
5114
  *
@@ -7235,6 +7658,44 @@ export interface WrappedResponseCreateVisitorResponseData {
7235
7658
  * @memberof WrappedResponseCreateVisitorResponseData
7236
7659
  */
7237
7660
  'updated_at': string;
7661
+ /**
7662
+ *
7663
+ * @type {string}
7664
+ * @memberof WrappedResponseCreateVisitorResponseData
7665
+ */
7666
+ 'invite_id'?: string | null;
7667
+ }
7668
+ /**
7669
+ *
7670
+ * @export
7671
+ * @interface WrappedResponseDeactivateVisitorPassResponse
7672
+ */
7673
+ export interface WrappedResponseDeactivateVisitorPassResponse {
7674
+ /**
7675
+ *
7676
+ * @type {WrappedResponseDeactivateVisitorPassResponseData}
7677
+ * @memberof WrappedResponseDeactivateVisitorPassResponse
7678
+ */
7679
+ 'data': WrappedResponseDeactivateVisitorPassResponseData | null;
7680
+ }
7681
+ /**
7682
+ *
7683
+ * @export
7684
+ * @interface WrappedResponseDeactivateVisitorPassResponseData
7685
+ */
7686
+ export interface WrappedResponseDeactivateVisitorPassResponseData {
7687
+ /**
7688
+ *
7689
+ * @type {DeactivateVisitorPassResponseApiRes}
7690
+ * @memberof WrappedResponseDeactivateVisitorPassResponseData
7691
+ */
7692
+ 'apiRes': DeactivateVisitorPassResponseApiRes;
7693
+ /**
7694
+ *
7695
+ * @type {string}
7696
+ * @memberof WrappedResponseDeactivateVisitorPassResponseData
7697
+ */
7698
+ 'visitorPassId': string;
7238
7699
  }
7239
7700
  /**
7240
7701
  *
@@ -7268,6 +7729,32 @@ export interface WrappedResponseFetchParkingResultData {
7268
7729
  */
7269
7730
  'error': Array<SyncResultSyncJobErrorInner>;
7270
7731
  }
7732
+ /**
7733
+ *
7734
+ * @export
7735
+ * @interface WrappedResponseGetTermsAndConditionsResidenceParkingResponse
7736
+ */
7737
+ export interface WrappedResponseGetTermsAndConditionsResidenceParkingResponse {
7738
+ /**
7739
+ *
7740
+ * @type {WrappedResponseGetTermsAndConditionsResidenceParkingResponseData}
7741
+ * @memberof WrappedResponseGetTermsAndConditionsResidenceParkingResponse
7742
+ */
7743
+ 'data': WrappedResponseGetTermsAndConditionsResidenceParkingResponseData | null;
7744
+ }
7745
+ /**
7746
+ *
7747
+ * @export
7748
+ * @interface WrappedResponseGetTermsAndConditionsResidenceParkingResponseData
7749
+ */
7750
+ export interface WrappedResponseGetTermsAndConditionsResidenceParkingResponseData {
7751
+ /**
7752
+ *
7753
+ * @type {GetTermsAndConditionsResidenceParkingResponseData}
7754
+ * @memberof WrappedResponseGetTermsAndConditionsResidenceParkingResponseData
7755
+ */
7756
+ 'data': GetTermsAndConditionsResidenceParkingResponseData;
7757
+ }
7271
7758
  /**
7272
7759
  *
7273
7760
  * @export
@@ -7341,6 +7828,26 @@ export const WrappedResponseNullDataEnum = {
7341
7828
 
7342
7829
  export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
7343
7830
 
7831
+ /**
7832
+ *
7833
+ * @export
7834
+ * @interface WrappedResponseOutdoorZoneArray
7835
+ */
7836
+ export interface WrappedResponseOutdoorZoneArray {
7837
+ /**
7838
+ *
7839
+ * @type {WrappedResponseOutdoorZoneArrayData}
7840
+ * @memberof WrappedResponseOutdoorZoneArray
7841
+ */
7842
+ 'data': WrappedResponseOutdoorZoneArrayData | null;
7843
+ }
7844
+ /**
7845
+ *
7846
+ * @export
7847
+ * @interface WrappedResponseOutdoorZoneArrayData
7848
+ */
7849
+ export interface WrappedResponseOutdoorZoneArrayData {
7850
+ }
7344
7851
  /**
7345
7852
  *
7346
7853
  * @export
@@ -7730,6 +8237,12 @@ export interface WrappedResponsePassConsentResponseData {
7730
8237
  * @memberof WrappedResponsePassConsentResponseData
7731
8238
  */
7732
8239
  'uid': string | null;
8240
+ /**
8241
+ *
8242
+ * @type {MetaDataPasses}
8243
+ * @memberof WrappedResponsePassConsentResponseData
8244
+ */
8245
+ 'metadata_resident'?: MetaDataPasses;
7733
8246
  /**
7734
8247
  *
7735
8248
  * @type {string}
@@ -7918,6 +8431,12 @@ export interface WrappedResponseShowVisitorResponseData {
7918
8431
  * @memberof WrappedResponseShowVisitorResponseData
7919
8432
  */
7920
8433
  'updated_at': string;
8434
+ /**
8435
+ *
8436
+ * @type {string}
8437
+ * @memberof WrappedResponseShowVisitorResponseData
8438
+ */
8439
+ 'invite_id'?: string | null;
7921
8440
  }
7922
8441
  /**
7923
8442
  *
@@ -9045,6 +9564,41 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9045
9564
  options: localVarRequestOptions,
9046
9565
  };
9047
9566
  },
9567
+ /**
9568
+ *
9569
+ * @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
9570
+ * @param {*} [options] Override http request option.
9571
+ * @throws {RequiredError}
9572
+ */
9573
+ integrationsFsMembersResidentCreate: async (createResidenceFSMembersBody: CreateResidenceFSMembersBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
9574
+ // verify required parameter 'createResidenceFSMembersBody' is not null or undefined
9575
+ assertParamExists('integrationsFsMembersResidentCreate', 'createResidenceFSMembersBody', createResidenceFSMembersBody)
9576
+ const localVarPath = `/integrations/fs/members/resident`;
9577
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
9578
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
9579
+ let baseOptions;
9580
+ if (configuration) {
9581
+ baseOptions = configuration.baseOptions;
9582
+ }
9583
+
9584
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
9585
+ const localVarHeaderParameter = {} as any;
9586
+ const localVarQueryParameter = {} as any;
9587
+
9588
+
9589
+
9590
+ localVarHeaderParameter['Content-Type'] = 'application/json';
9591
+
9592
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
9593
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9594
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
9595
+ localVarRequestOptions.data = serializeDataIfNeeded(createResidenceFSMembersBody, localVarRequestOptions, configuration)
9596
+
9597
+ return {
9598
+ url: toPathString(localVarUrlObj),
9599
+ options: localVarRequestOptions,
9600
+ };
9601
+ },
9048
9602
  /**
9049
9603
  *
9050
9604
  * @param {IssueTypeRequest} issueTypeRequest
@@ -9773,12 +10327,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9773
10327
  /**
9774
10328
  *
9775
10329
  * @param {string} id
9776
- * @param {ParkingReservationStatus} [status]
9777
- * @param {string} [xAccountId]
9778
10330
  * @param {*} [options] Override http request option.
9779
10331
  * @throws {RequiredError}
9780
10332
  */
9781
- parkingReservationsListDetail: async (id: string, status?: ParkingReservationStatus, xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10333
+ parkingReservationsListDetail: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
9782
10334
  // verify required parameter 'id' is not null or undefined
9783
10335
  assertParamExists('parkingReservationsListDetail', 'id', id)
9784
10336
  const localVarPath = `/parking_reservations/{id}`
@@ -9794,14 +10346,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9794
10346
  const localVarHeaderParameter = {} as any;
9795
10347
  const localVarQueryParameter = {} as any;
9796
10348
 
9797
- if (status !== undefined) {
9798
- localVarQueryParameter['status'] = status;
9799
- }
9800
-
9801
- if (xAccountId != null) {
9802
- localVarHeaderParameter['x-account-id'] = String(xAccountId);
9803
- }
9804
-
9805
10349
 
9806
10350
 
9807
10351
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -9849,11 +10393,25 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9849
10393
  },
9850
10394
  /**
9851
10395
  *
10396
+ * @param {string} tenantId
10397
+ * @param {number} memberTypeId
10398
+ * @param {number} departmentId
10399
+ * @param {number} vehicleTypeId
10400
+ * @param {string} [inviteId]
9852
10401
  * @param {*} [options] Override http request option.
9853
10402
  * @throws {RequiredError}
9854
10403
  */
9855
- parkingSpacesList: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
9856
- const localVarPath = `/parking_spaces`;
10404
+ parkingResidentialRedemptionRatesIndex: async (tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, inviteId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10405
+ // verify required parameter 'tenantId' is not null or undefined
10406
+ assertParamExists('parkingResidentialRedemptionRatesIndex', 'tenantId', tenantId)
10407
+ // verify required parameter 'memberTypeId' is not null or undefined
10408
+ assertParamExists('parkingResidentialRedemptionRatesIndex', 'memberTypeId', memberTypeId)
10409
+ // verify required parameter 'departmentId' is not null or undefined
10410
+ assertParamExists('parkingResidentialRedemptionRatesIndex', 'departmentId', departmentId)
10411
+ // verify required parameter 'vehicleTypeId' is not null or undefined
10412
+ assertParamExists('parkingResidentialRedemptionRatesIndex', 'vehicleTypeId', vehicleTypeId)
10413
+ const localVarPath = `/members/{tenantId}/parking_residential_redemption_rates`
10414
+ .replace(`{${"tenantId"}}`, encodeURIComponent(String(tenantId)));
9857
10415
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
9858
10416
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
9859
10417
  let baseOptions;
@@ -9865,38 +10423,21 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9865
10423
  const localVarHeaderParameter = {} as any;
9866
10424
  const localVarQueryParameter = {} as any;
9867
10425
 
10426
+ if (memberTypeId !== undefined) {
10427
+ localVarQueryParameter['member_type_id'] = memberTypeId;
10428
+ }
9868
10429
 
9869
-
9870
- setSearchParams(localVarUrlObj, localVarQueryParameter);
9871
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9872
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10430
+ if (departmentId !== undefined) {
10431
+ localVarQueryParameter['department_id'] = departmentId;
10432
+ }
9873
10433
 
9874
- return {
9875
- url: toPathString(localVarUrlObj),
9876
- options: localVarRequestOptions,
9877
- };
9878
- },
9879
- /**
9880
- *
9881
- * @param {string} id
9882
- * @param {*} [options] Override http request option.
9883
- * @throws {RequiredError}
9884
- */
9885
- parkingTicketsAllDetails: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
9886
- // verify required parameter 'id' is not null or undefined
9887
- assertParamExists('parkingTicketsAllDetails', 'id', id)
9888
- const localVarPath = `/parking_tickets/all_details/{id}`
9889
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
9890
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
9891
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
9892
- let baseOptions;
9893
- if (configuration) {
9894
- baseOptions = configuration.baseOptions;
10434
+ if (vehicleTypeId !== undefined) {
10435
+ localVarQueryParameter['vehicle_type_id'] = vehicleTypeId;
9895
10436
  }
9896
10437
 
9897
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
9898
- const localVarHeaderParameter = {} as any;
9899
- const localVarQueryParameter = {} as any;
10438
+ if (inviteId !== undefined) {
10439
+ localVarQueryParameter['invite_id'] = inviteId;
10440
+ }
9900
10441
 
9901
10442
 
9902
10443
 
@@ -9911,17 +10452,17 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9911
10452
  },
9912
10453
  /**
9913
10454
  *
9914
- * @param {ParkingTicketsIndexTypeEnum} type
10455
+ * @param {ParkingResidentialTicketsIndexTypeEnum} type
9915
10456
  * @param {string} id
9916
10457
  * @param {*} [options] Override http request option.
9917
10458
  * @throws {RequiredError}
9918
10459
  */
9919
- parkingTicketsIndex: async (type: ParkingTicketsIndexTypeEnum, id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10460
+ parkingResidentialTicketsIndex: async (type: ParkingResidentialTicketsIndexTypeEnum, id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
9920
10461
  // verify required parameter 'type' is not null or undefined
9921
- assertParamExists('parkingTicketsIndex', 'type', type)
10462
+ assertParamExists('parkingResidentialTicketsIndex', 'type', type)
9922
10463
  // verify required parameter 'id' is not null or undefined
9923
- assertParamExists('parkingTicketsIndex', 'id', id)
9924
- const localVarPath = `/parking_tickets`;
10464
+ assertParamExists('parkingResidentialTicketsIndex', 'id', id)
10465
+ const localVarPath = `/parking_tickets/residential`;
9925
10466
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
9926
10467
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
9927
10468
  let baseOptions;
@@ -9955,16 +10496,16 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9955
10496
  /**
9956
10497
  *
9957
10498
  * @param {string} logId
9958
- * @param {ParkingTicketsRedeemBody} parkingTicketsRedeemBody
10499
+ * @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
9959
10500
  * @param {*} [options] Override http request option.
9960
10501
  * @throws {RequiredError}
9961
10502
  */
9962
- parkingTicketsRedeem: async (logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10503
+ parkingResidentialTicketsRedeem: async (logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
9963
10504
  // verify required parameter 'logId' is not null or undefined
9964
- assertParamExists('parkingTicketsRedeem', 'logId', logId)
9965
- // verify required parameter 'parkingTicketsRedeemBody' is not null or undefined
9966
- assertParamExists('parkingTicketsRedeem', 'parkingTicketsRedeemBody', parkingTicketsRedeemBody)
9967
- const localVarPath = `/parking_tickets/{log_id}/redeem`
10505
+ assertParamExists('parkingResidentialTicketsRedeem', 'logId', logId)
10506
+ // verify required parameter 'parkingTicketsRedeemBodyResident' is not null or undefined
10507
+ assertParamExists('parkingResidentialTicketsRedeem', 'parkingTicketsRedeemBodyResident', parkingTicketsRedeemBodyResident)
10508
+ const localVarPath = `/parking_tickets/{log_id}/redeem-residential`
9968
10509
  .replace(`{${"log_id"}}`, encodeURIComponent(String(logId)));
9969
10510
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
9970
10511
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -9984,7 +10525,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9984
10525
  setSearchParams(localVarUrlObj, localVarQueryParameter);
9985
10526
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9986
10527
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
9987
- localVarRequestOptions.data = serializeDataIfNeeded(parkingTicketsRedeemBody, localVarRequestOptions, configuration)
10528
+ localVarRequestOptions.data = serializeDataIfNeeded(parkingTicketsRedeemBodyResident, localVarRequestOptions, configuration)
9988
10529
 
9989
10530
  return {
9990
10531
  url: toPathString(localVarUrlObj),
@@ -9993,18 +10534,18 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9993
10534
  },
9994
10535
  /**
9995
10536
  *
9996
- * @param {string} visitScheduleId
9997
- * @param {ConsentRequestBody} consentRequestBody
10537
+ * @param {string} tenantId
10538
+ * @param {number} projectId
10539
+ * @param {string} [lang]
9998
10540
  * @param {*} [options] Override http request option.
9999
10541
  * @throws {RequiredError}
10000
10542
  */
10001
- passesConsent: async (visitScheduleId: string, consentRequestBody: ConsentRequestBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10002
- // verify required parameter 'visitScheduleId' is not null or undefined
10003
- assertParamExists('passesConsent', 'visitScheduleId', visitScheduleId)
10004
- // verify required parameter 'consentRequestBody' is not null or undefined
10005
- assertParamExists('passesConsent', 'consentRequestBody', consentRequestBody)
10006
- const localVarPath = `/passes/consent/{visit_schedule_id}`
10007
- .replace(`{${"visit_schedule_id"}}`, encodeURIComponent(String(visitScheduleId)));
10543
+ parkingResidentialTicketsTerms: async (tenantId: string, projectId: number, lang?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10544
+ // verify required parameter 'tenantId' is not null or undefined
10545
+ assertParamExists('parkingResidentialTicketsTerms', 'tenantId', tenantId)
10546
+ // verify required parameter 'projectId' is not null or undefined
10547
+ assertParamExists('parkingResidentialTicketsTerms', 'projectId', projectId)
10548
+ const localVarPath = `/parking_tickets/residential/car_park/terms`;
10008
10549
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10009
10550
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10010
10551
  let baseOptions;
@@ -10012,18 +10553,27 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10012
10553
  baseOptions = configuration.baseOptions;
10013
10554
  }
10014
10555
 
10015
- const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
10556
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
10016
10557
  const localVarHeaderParameter = {} as any;
10017
10558
  const localVarQueryParameter = {} as any;
10018
10559
 
10560
+ if (tenantId !== undefined) {
10561
+ localVarQueryParameter['tenant_id'] = tenantId;
10562
+ }
10019
10563
 
10020
-
10021
- localVarHeaderParameter['Content-Type'] = 'application/json';
10564
+ if (projectId !== undefined) {
10565
+ localVarQueryParameter['project_id'] = projectId;
10566
+ }
10567
+
10568
+ if (lang != null) {
10569
+ localVarHeaderParameter['lang'] = String(lang);
10570
+ }
10022
10571
 
10572
+
10573
+
10023
10574
  setSearchParams(localVarUrlObj, localVarQueryParameter);
10024
10575
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10025
10576
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10026
- localVarRequestOptions.data = serializeDataIfNeeded(consentRequestBody, localVarRequestOptions, configuration)
10027
10577
 
10028
10578
  return {
10029
10579
  url: toPathString(localVarUrlObj),
@@ -10032,15 +10582,11 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10032
10582
  },
10033
10583
  /**
10034
10584
  *
10035
- * @param {string} visitScheduleId
10036
10585
  * @param {*} [options] Override http request option.
10037
10586
  * @throws {RequiredError}
10038
10587
  */
10039
- passesShow: async (visitScheduleId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10040
- // verify required parameter 'visitScheduleId' is not null or undefined
10041
- assertParamExists('passesShow', 'visitScheduleId', visitScheduleId)
10042
- const localVarPath = `/passes/{visit_schedule_id}`
10043
- .replace(`{${"visit_schedule_id"}}`, encodeURIComponent(String(visitScheduleId)));
10588
+ parkingSpacesList: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10589
+ const localVarPath = `/parking_spaces`;
10044
10590
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10045
10591
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10046
10592
  let baseOptions;
@@ -10066,7 +10612,230 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10066
10612
  /**
10067
10613
  *
10068
10614
  * @param {string} id
10069
- * @param {string} [xPermissions]
10615
+ * @param {*} [options] Override http request option.
10616
+ * @throws {RequiredError}
10617
+ */
10618
+ parkingTicketsAllDetails: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10619
+ // verify required parameter 'id' is not null or undefined
10620
+ assertParamExists('parkingTicketsAllDetails', 'id', id)
10621
+ const localVarPath = `/parking_tickets/all_details/{id}`
10622
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
10623
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
10624
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10625
+ let baseOptions;
10626
+ if (configuration) {
10627
+ baseOptions = configuration.baseOptions;
10628
+ }
10629
+
10630
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
10631
+ const localVarHeaderParameter = {} as any;
10632
+ const localVarQueryParameter = {} as any;
10633
+
10634
+
10635
+
10636
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
10637
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10638
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10639
+
10640
+ return {
10641
+ url: toPathString(localVarUrlObj),
10642
+ options: localVarRequestOptions,
10643
+ };
10644
+ },
10645
+ /**
10646
+ *
10647
+ * @param {ParkingTicketsIndexTypeEnum} type
10648
+ * @param {string} id
10649
+ * @param {*} [options] Override http request option.
10650
+ * @throws {RequiredError}
10651
+ */
10652
+ parkingTicketsIndex: async (type: ParkingTicketsIndexTypeEnum, id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10653
+ // verify required parameter 'type' is not null or undefined
10654
+ assertParamExists('parkingTicketsIndex', 'type', type)
10655
+ // verify required parameter 'id' is not null or undefined
10656
+ assertParamExists('parkingTicketsIndex', 'id', id)
10657
+ const localVarPath = `/parking_tickets`;
10658
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
10659
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10660
+ let baseOptions;
10661
+ if (configuration) {
10662
+ baseOptions = configuration.baseOptions;
10663
+ }
10664
+
10665
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
10666
+ const localVarHeaderParameter = {} as any;
10667
+ const localVarQueryParameter = {} as any;
10668
+
10669
+ if (type !== undefined) {
10670
+ localVarQueryParameter['type'] = type;
10671
+ }
10672
+
10673
+ if (id !== undefined) {
10674
+ localVarQueryParameter['id'] = id;
10675
+ }
10676
+
10677
+
10678
+
10679
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
10680
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10681
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10682
+
10683
+ return {
10684
+ url: toPathString(localVarUrlObj),
10685
+ options: localVarRequestOptions,
10686
+ };
10687
+ },
10688
+ /**
10689
+ *
10690
+ * @param {string} logId
10691
+ * @param {ParkingTicketsRedeemBody} parkingTicketsRedeemBody
10692
+ * @param {*} [options] Override http request option.
10693
+ * @throws {RequiredError}
10694
+ */
10695
+ parkingTicketsRedeem: async (logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10696
+ // verify required parameter 'logId' is not null or undefined
10697
+ assertParamExists('parkingTicketsRedeem', 'logId', logId)
10698
+ // verify required parameter 'parkingTicketsRedeemBody' is not null or undefined
10699
+ assertParamExists('parkingTicketsRedeem', 'parkingTicketsRedeemBody', parkingTicketsRedeemBody)
10700
+ const localVarPath = `/parking_tickets/{log_id}/redeem`
10701
+ .replace(`{${"log_id"}}`, encodeURIComponent(String(logId)));
10702
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
10703
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10704
+ let baseOptions;
10705
+ if (configuration) {
10706
+ baseOptions = configuration.baseOptions;
10707
+ }
10708
+
10709
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
10710
+ const localVarHeaderParameter = {} as any;
10711
+ const localVarQueryParameter = {} as any;
10712
+
10713
+
10714
+
10715
+ localVarHeaderParameter['Content-Type'] = 'application/json';
10716
+
10717
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
10718
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10719
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10720
+ localVarRequestOptions.data = serializeDataIfNeeded(parkingTicketsRedeemBody, localVarRequestOptions, configuration)
10721
+
10722
+ return {
10723
+ url: toPathString(localVarUrlObj),
10724
+ options: localVarRequestOptions,
10725
+ };
10726
+ },
10727
+ /**
10728
+ *
10729
+ * @param {string} xAccountId
10730
+ * @param {*} [options] Override http request option.
10731
+ * @throws {RequiredError}
10732
+ */
10733
+ parkingTicketsV2AllDetails: async (xAccountId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10734
+ // verify required parameter 'xAccountId' is not null or undefined
10735
+ assertParamExists('parkingTicketsV2AllDetails', 'xAccountId', xAccountId)
10736
+ const localVarPath = `/v2/parking_tickets/all_details`;
10737
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
10738
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10739
+ let baseOptions;
10740
+ if (configuration) {
10741
+ baseOptions = configuration.baseOptions;
10742
+ }
10743
+
10744
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
10745
+ const localVarHeaderParameter = {} as any;
10746
+ const localVarQueryParameter = {} as any;
10747
+
10748
+ if (xAccountId != null) {
10749
+ localVarHeaderParameter['x-account-id'] = String(xAccountId);
10750
+ }
10751
+
10752
+
10753
+
10754
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
10755
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10756
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10757
+
10758
+ return {
10759
+ url: toPathString(localVarUrlObj),
10760
+ options: localVarRequestOptions,
10761
+ };
10762
+ },
10763
+ /**
10764
+ *
10765
+ * @param {string} visitScheduleId
10766
+ * @param {ConsentRequestBody} consentRequestBody
10767
+ * @param {*} [options] Override http request option.
10768
+ * @throws {RequiredError}
10769
+ */
10770
+ passesConsent: async (visitScheduleId: string, consentRequestBody: ConsentRequestBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10771
+ // verify required parameter 'visitScheduleId' is not null or undefined
10772
+ assertParamExists('passesConsent', 'visitScheduleId', visitScheduleId)
10773
+ // verify required parameter 'consentRequestBody' is not null or undefined
10774
+ assertParamExists('passesConsent', 'consentRequestBody', consentRequestBody)
10775
+ const localVarPath = `/passes/consent/{visit_schedule_id}`
10776
+ .replace(`{${"visit_schedule_id"}}`, encodeURIComponent(String(visitScheduleId)));
10777
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
10778
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10779
+ let baseOptions;
10780
+ if (configuration) {
10781
+ baseOptions = configuration.baseOptions;
10782
+ }
10783
+
10784
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
10785
+ const localVarHeaderParameter = {} as any;
10786
+ const localVarQueryParameter = {} as any;
10787
+
10788
+
10789
+
10790
+ localVarHeaderParameter['Content-Type'] = 'application/json';
10791
+
10792
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
10793
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10794
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10795
+ localVarRequestOptions.data = serializeDataIfNeeded(consentRequestBody, localVarRequestOptions, configuration)
10796
+
10797
+ return {
10798
+ url: toPathString(localVarUrlObj),
10799
+ options: localVarRequestOptions,
10800
+ };
10801
+ },
10802
+ /**
10803
+ *
10804
+ * @param {string} visitScheduleId
10805
+ * @param {*} [options] Override http request option.
10806
+ * @throws {RequiredError}
10807
+ */
10808
+ passesShow: async (visitScheduleId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10809
+ // verify required parameter 'visitScheduleId' is not null or undefined
10810
+ assertParamExists('passesShow', 'visitScheduleId', visitScheduleId)
10811
+ const localVarPath = `/passes/{visit_schedule_id}`
10812
+ .replace(`{${"visit_schedule_id"}}`, encodeURIComponent(String(visitScheduleId)));
10813
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
10814
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10815
+ let baseOptions;
10816
+ if (configuration) {
10817
+ baseOptions = configuration.baseOptions;
10818
+ }
10819
+
10820
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
10821
+ const localVarHeaderParameter = {} as any;
10822
+ const localVarQueryParameter = {} as any;
10823
+
10824
+
10825
+
10826
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
10827
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10828
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10829
+
10830
+ return {
10831
+ url: toPathString(localVarUrlObj),
10832
+ options: localVarRequestOptions,
10833
+ };
10834
+ },
10835
+ /**
10836
+ *
10837
+ * @param {string} id
10838
+ * @param {string} [xPermissions]
10070
10839
  * @param {*} [options] Override http request option.
10071
10840
  * @throws {RequiredError}
10072
10841
  */
@@ -10467,6 +11236,35 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10467
11236
 
10468
11237
 
10469
11238
 
11239
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
11240
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
11241
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
11242
+
11243
+ return {
11244
+ url: toPathString(localVarUrlObj),
11245
+ options: localVarRequestOptions,
11246
+ };
11247
+ },
11248
+ /**
11249
+ *
11250
+ * @param {*} [options] Override http request option.
11251
+ * @throws {RequiredError}
11252
+ */
11253
+ towersOutdoorindex: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
11254
+ const localVarPath = `/towers/outdoor`;
11255
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
11256
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
11257
+ let baseOptions;
11258
+ if (configuration) {
11259
+ baseOptions = configuration.baseOptions;
11260
+ }
11261
+
11262
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
11263
+ const localVarHeaderParameter = {} as any;
11264
+ const localVarQueryParameter = {} as any;
11265
+
11266
+
11267
+
10470
11268
  setSearchParams(localVarUrlObj, localVarQueryParameter);
10471
11269
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10472
11270
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -10508,17 +11306,93 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10508
11306
  /**
10509
11307
  *
10510
11308
  * @param {string} id
11309
+ * @param {string} xAccountId
10511
11310
  * @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
10512
11311
  * @param {*} [options] Override http request option.
10513
11312
  * @throws {RequiredError}
10514
11313
  */
10515
- visitorSchedulesUpdate: async (id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10516
- // verify required parameter 'id' is not null or undefined
10517
- assertParamExists('visitorSchedulesUpdate', 'id', id)
10518
- // verify required parameter 'updateVisitorScheduleBody' is not null or undefined
10519
- assertParamExists('visitorSchedulesUpdate', 'updateVisitorScheduleBody', updateVisitorScheduleBody)
10520
- const localVarPath = `/visitor_schedules/{id}`
10521
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
11314
+ visitorSchedulesUpdate: async (id: string, xAccountId: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
11315
+ // verify required parameter 'id' is not null or undefined
11316
+ assertParamExists('visitorSchedulesUpdate', 'id', id)
11317
+ // verify required parameter 'xAccountId' is not null or undefined
11318
+ assertParamExists('visitorSchedulesUpdate', 'xAccountId', xAccountId)
11319
+ // verify required parameter 'updateVisitorScheduleBody' is not null or undefined
11320
+ assertParamExists('visitorSchedulesUpdate', 'updateVisitorScheduleBody', updateVisitorScheduleBody)
11321
+ const localVarPath = `/visitor_schedules/{id}`
11322
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
11323
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
11324
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
11325
+ let baseOptions;
11326
+ if (configuration) {
11327
+ baseOptions = configuration.baseOptions;
11328
+ }
11329
+
11330
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
11331
+ const localVarHeaderParameter = {} as any;
11332
+ const localVarQueryParameter = {} as any;
11333
+
11334
+ if (xAccountId != null) {
11335
+ localVarHeaderParameter['x-account-id'] = String(xAccountId);
11336
+ }
11337
+
11338
+
11339
+
11340
+ localVarHeaderParameter['Content-Type'] = 'application/json';
11341
+
11342
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
11343
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
11344
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
11345
+ localVarRequestOptions.data = serializeDataIfNeeded(updateVisitorScheduleBody, localVarRequestOptions, configuration)
11346
+
11347
+ return {
11348
+ url: toPathString(localVarUrlObj),
11349
+ options: localVarRequestOptions,
11350
+ };
11351
+ },
11352
+ /**
11353
+ *
11354
+ * @param {string} [tokenId]
11355
+ * @param {*} [options] Override http request option.
11356
+ * @throws {RequiredError}
11357
+ */
11358
+ visitorTokensIndex: async (tokenId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
11359
+ const localVarPath = `/visitor_tokens`;
11360
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
11361
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
11362
+ let baseOptions;
11363
+ if (configuration) {
11364
+ baseOptions = configuration.baseOptions;
11365
+ }
11366
+
11367
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
11368
+ const localVarHeaderParameter = {} as any;
11369
+ const localVarQueryParameter = {} as any;
11370
+
11371
+ if (tokenId !== undefined) {
11372
+ localVarQueryParameter['token_id'] = tokenId;
11373
+ }
11374
+
11375
+
11376
+
11377
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
11378
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
11379
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
11380
+
11381
+ return {
11382
+ url: toPathString(localVarUrlObj),
11383
+ options: localVarRequestOptions,
11384
+ };
11385
+ },
11386
+ /**
11387
+ *
11388
+ * @param {CreateVisitorBody} createVisitorBody
11389
+ * @param {*} [options] Override http request option.
11390
+ * @throws {RequiredError}
11391
+ */
11392
+ visitorsCreate: async (createVisitorBody: CreateVisitorBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
11393
+ // verify required parameter 'createVisitorBody' is not null or undefined
11394
+ assertParamExists('visitorsCreate', 'createVisitorBody', createVisitorBody)
11395
+ const localVarPath = `/visitors`;
10522
11396
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10523
11397
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10524
11398
  let baseOptions;
@@ -10526,7 +11400,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10526
11400
  baseOptions = configuration.baseOptions;
10527
11401
  }
10528
11402
 
10529
- const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
11403
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
10530
11404
  const localVarHeaderParameter = {} as any;
10531
11405
  const localVarQueryParameter = {} as any;
10532
11406
 
@@ -10537,7 +11411,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10537
11411
  setSearchParams(localVarUrlObj, localVarQueryParameter);
10538
11412
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10539
11413
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10540
- localVarRequestOptions.data = serializeDataIfNeeded(updateVisitorScheduleBody, localVarRequestOptions, configuration)
11414
+ localVarRequestOptions.data = serializeDataIfNeeded(createVisitorBody, localVarRequestOptions, configuration)
10541
11415
 
10542
11416
  return {
10543
11417
  url: toPathString(localVarUrlObj),
@@ -10546,12 +11420,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10546
11420
  },
10547
11421
  /**
10548
11422
  *
10549
- * @param {string} [tokenId]
11423
+ * @param {string} id
10550
11424
  * @param {*} [options] Override http request option.
10551
11425
  * @throws {RequiredError}
10552
11426
  */
10553
- visitorTokensIndex: async (tokenId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10554
- const localVarPath = `/visitor_tokens`;
11427
+ visitorsDestroy: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
11428
+ // verify required parameter 'id' is not null or undefined
11429
+ assertParamExists('visitorsDestroy', 'id', id)
11430
+ const localVarPath = `/visitors/{id}`
11431
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
10555
11432
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10556
11433
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10557
11434
  let baseOptions;
@@ -10559,14 +11436,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10559
11436
  baseOptions = configuration.baseOptions;
10560
11437
  }
10561
11438
 
10562
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
11439
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
10563
11440
  const localVarHeaderParameter = {} as any;
10564
11441
  const localVarQueryParameter = {} as any;
10565
11442
 
10566
- if (tokenId !== undefined) {
10567
- localVarQueryParameter['token_id'] = tokenId;
10568
- }
10569
-
10570
11443
 
10571
11444
 
10572
11445
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -10580,14 +11453,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10580
11453
  },
10581
11454
  /**
10582
11455
  *
10583
- * @param {CreateVisitorBody} createVisitorBody
11456
+ * @param {CreateVisitorResidentBody} createVisitorResidentBody
10584
11457
  * @param {*} [options] Override http request option.
10585
11458
  * @throws {RequiredError}
10586
11459
  */
10587
- visitorsCreate: async (createVisitorBody: CreateVisitorBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10588
- // verify required parameter 'createVisitorBody' is not null or undefined
10589
- assertParamExists('visitorsCreate', 'createVisitorBody', createVisitorBody)
10590
- const localVarPath = `/visitors`;
11460
+ visitorsResidentCreate: async (createVisitorResidentBody: CreateVisitorResidentBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
11461
+ // verify required parameter 'createVisitorResidentBody' is not null or undefined
11462
+ assertParamExists('visitorsResidentCreate', 'createVisitorResidentBody', createVisitorResidentBody)
11463
+ const localVarPath = `/visitors/resident`;
10591
11464
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10592
11465
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10593
11466
  let baseOptions;
@@ -10606,7 +11479,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10606
11479
  setSearchParams(localVarUrlObj, localVarQueryParameter);
10607
11480
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10608
11481
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10609
- localVarRequestOptions.data = serializeDataIfNeeded(createVisitorBody, localVarRequestOptions, configuration)
11482
+ localVarRequestOptions.data = serializeDataIfNeeded(createVisitorResidentBody, localVarRequestOptions, configuration)
10610
11483
 
10611
11484
  return {
10612
11485
  url: toPathString(localVarUrlObj),
@@ -10615,15 +11488,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10615
11488
  },
10616
11489
  /**
10617
11490
  *
10618
- * @param {string} id
11491
+ * @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
10619
11492
  * @param {*} [options] Override http request option.
10620
11493
  * @throws {RequiredError}
10621
11494
  */
10622
- visitorsDestroy: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10623
- // verify required parameter 'id' is not null or undefined
10624
- assertParamExists('visitorsDestroy', 'id', id)
10625
- const localVarPath = `/visitors/{id}`
10626
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
11495
+ visitorsResidentDeactive: async (deactiveVisitorResidentBody: DeactiveVisitorResidentBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
11496
+ // verify required parameter 'deactiveVisitorResidentBody' is not null or undefined
11497
+ assertParamExists('visitorsResidentDeactive', 'deactiveVisitorResidentBody', deactiveVisitorResidentBody)
11498
+ const localVarPath = `/visitors/resident/deactive`;
10627
11499
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10628
11500
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10629
11501
  let baseOptions;
@@ -10631,15 +11503,18 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10631
11503
  baseOptions = configuration.baseOptions;
10632
11504
  }
10633
11505
 
10634
- const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
11506
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
10635
11507
  const localVarHeaderParameter = {} as any;
10636
11508
  const localVarQueryParameter = {} as any;
10637
11509
 
10638
11510
 
10639
11511
 
11512
+ localVarHeaderParameter['Content-Type'] = 'application/json';
11513
+
10640
11514
  setSearchParams(localVarUrlObj, localVarQueryParameter);
10641
11515
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10642
11516
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
11517
+ localVarRequestOptions.data = serializeDataIfNeeded(deactiveVisitorResidentBody, localVarRequestOptions, configuration)
10643
11518
 
10644
11519
  return {
10645
11520
  url: toPathString(localVarUrlObj),
@@ -10889,6 +11764,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
10889
11764
  const localVarAxiosArgs = await localVarAxiosParamCreator.integrationsFsMembersDelete(destroyFSMembers, options);
10890
11765
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
10891
11766
  },
11767
+ /**
11768
+ *
11769
+ * @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
11770
+ * @param {*} [options] Override http request option.
11771
+ * @throws {RequiredError}
11772
+ */
11773
+ async integrationsFsMembersResidentCreate(createResidenceFSMembersBody: CreateResidenceFSMembersBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateMembersResponse>> {
11774
+ const localVarAxiosArgs = await localVarAxiosParamCreator.integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options);
11775
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11776
+ },
10892
11777
  /**
10893
11778
  *
10894
11779
  * @param {IssueTypeRequest} issueTypeRequest
@@ -11091,13 +11976,11 @@ export const DefaultApiFp = function(configuration?: Configuration) {
11091
11976
  /**
11092
11977
  *
11093
11978
  * @param {string} id
11094
- * @param {ParkingReservationStatus} [status]
11095
- * @param {string} [xAccountId]
11096
11979
  * @param {*} [options] Override http request option.
11097
11980
  * @throws {RequiredError}
11098
11981
  */
11099
- async parkingReservationsListDetail(id: string, status?: ParkingReservationStatus, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseParkingReservationDetailResponse>> {
11100
- const localVarAxiosArgs = await localVarAxiosParamCreator.parkingReservationsListDetail(id, status, xAccountId, options);
11982
+ async parkingReservationsListDetail(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseParkingReservationDetailResponse>> {
11983
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingReservationsListDetail(id, options);
11101
11984
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11102
11985
  },
11103
11986
  /**
@@ -11110,6 +11993,54 @@ export const DefaultApiFp = function(configuration?: Configuration) {
11110
11993
  const localVarAxiosArgs = await localVarAxiosParamCreator.parkingReservationsListShow(xAccountId, options);
11111
11994
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11112
11995
  },
11996
+ /**
11997
+ *
11998
+ * @param {string} tenantId
11999
+ * @param {number} memberTypeId
12000
+ * @param {number} departmentId
12001
+ * @param {number} vehicleTypeId
12002
+ * @param {string} [inviteId]
12003
+ * @param {*} [options] Override http request option.
12004
+ * @throws {RequiredError}
12005
+ */
12006
+ async parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, inviteId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingRedemptionRateResultArray>> {
12007
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options);
12008
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12009
+ },
12010
+ /**
12011
+ *
12012
+ * @param {ParkingResidentialTicketsIndexTypeEnum} type
12013
+ * @param {string} id
12014
+ * @param {*} [options] Override http request option.
12015
+ * @throws {RequiredError}
12016
+ */
12017
+ async parkingResidentialTicketsIndex(type: ParkingResidentialTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketDataArray>> {
12018
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingResidentialTicketsIndex(type, id, options);
12019
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12020
+ },
12021
+ /**
12022
+ *
12023
+ * @param {string} logId
12024
+ * @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
12025
+ * @param {*} [options] Override http request option.
12026
+ * @throws {RequiredError}
12027
+ */
12028
+ async parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketData>> {
12029
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options);
12030
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12031
+ },
12032
+ /**
12033
+ *
12034
+ * @param {string} tenantId
12035
+ * @param {number} projectId
12036
+ * @param {string} [lang]
12037
+ * @param {*} [options] Override http request option.
12038
+ * @throws {RequiredError}
12039
+ */
12040
+ async parkingResidentialTicketsTerms(tenantId: string, projectId: number, lang?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseGetTermsAndConditionsResidenceParkingResponse>> {
12041
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingResidentialTicketsTerms(tenantId, projectId, lang, options);
12042
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12043
+ },
11113
12044
  /**
11114
12045
  *
11115
12046
  * @param {*} [options] Override http request option.
@@ -11151,6 +12082,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
11151
12082
  const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options);
11152
12083
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11153
12084
  },
12085
+ /**
12086
+ *
12087
+ * @param {string} xAccountId
12088
+ * @param {*} [options] Override http request option.
12089
+ * @throws {RequiredError}
12090
+ */
12091
+ async parkingTicketsV2AllDetails(xAccountId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData>> {
12092
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsV2AllDetails(xAccountId, options);
12093
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12094
+ },
11154
12095
  /**
11155
12096
  *
11156
12097
  * @param {string} visitScheduleId
@@ -11289,6 +12230,15 @@ export const DefaultApiFp = function(configuration?: Configuration) {
11289
12230
  const localVarAxiosArgs = await localVarAxiosParamCreator.towersIndex(options);
11290
12231
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11291
12232
  },
12233
+ /**
12234
+ *
12235
+ * @param {*} [options] Override http request option.
12236
+ * @throws {RequiredError}
12237
+ */
12238
+ async towersOutdoorindex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseOutdoorZoneArray>> {
12239
+ const localVarAxiosArgs = await localVarAxiosParamCreator.towersOutdoorindex(options);
12240
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12241
+ },
11292
12242
  /**
11293
12243
  *
11294
12244
  * @param {*} [options] Override http request option.
@@ -11301,12 +12251,13 @@ export const DefaultApiFp = function(configuration?: Configuration) {
11301
12251
  /**
11302
12252
  *
11303
12253
  * @param {string} id
12254
+ * @param {string} xAccountId
11304
12255
  * @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
11305
12256
  * @param {*} [options] Override http request option.
11306
12257
  * @throws {RequiredError}
11307
12258
  */
11308
- async visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseResultResponseData>> {
11309
- const localVarAxiosArgs = await localVarAxiosParamCreator.visitorSchedulesUpdate(id, updateVisitorScheduleBody, options);
12259
+ async visitorSchedulesUpdate(id: string, xAccountId: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseResultResponseData>> {
12260
+ const localVarAxiosArgs = await localVarAxiosParamCreator.visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options);
11310
12261
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11311
12262
  },
11312
12263
  /**
@@ -11339,6 +12290,26 @@ export const DefaultApiFp = function(configuration?: Configuration) {
11339
12290
  const localVarAxiosArgs = await localVarAxiosParamCreator.visitorsDestroy(id, options);
11340
12291
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11341
12292
  },
12293
+ /**
12294
+ *
12295
+ * @param {CreateVisitorResidentBody} createVisitorResidentBody
12296
+ * @param {*} [options] Override http request option.
12297
+ * @throws {RequiredError}
12298
+ */
12299
+ async visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseCreateVisitorResponse>> {
12300
+ const localVarAxiosArgs = await localVarAxiosParamCreator.visitorsResidentCreate(createVisitorResidentBody, options);
12301
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12302
+ },
12303
+ /**
12304
+ *
12305
+ * @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
12306
+ * @param {*} [options] Override http request option.
12307
+ * @throws {RequiredError}
12308
+ */
12309
+ async visitorsResidentDeactive(deactiveVisitorResidentBody: DeactiveVisitorResidentBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseDeactivateVisitorPassResponse>> {
12310
+ const localVarAxiosArgs = await localVarAxiosParamCreator.visitorsResidentDeactive(deactiveVisitorResidentBody, options);
12311
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12312
+ },
11342
12313
  /**
11343
12314
  *
11344
12315
  * @param {string} id
@@ -11541,6 +12512,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
11541
12512
  integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: any): AxiosPromise<DestroyMembersResponse> {
11542
12513
  return localVarFp.integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(axios, basePath));
11543
12514
  },
12515
+ /**
12516
+ *
12517
+ * @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
12518
+ * @param {*} [options] Override http request option.
12519
+ * @throws {RequiredError}
12520
+ */
12521
+ integrationsFsMembersResidentCreate(createResidenceFSMembersBody: CreateResidenceFSMembersBody, options?: any): AxiosPromise<CreateMembersResponse> {
12522
+ return localVarFp.integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options).then((request) => request(axios, basePath));
12523
+ },
11544
12524
  /**
11545
12525
  *
11546
12526
  * @param {IssueTypeRequest} issueTypeRequest
@@ -11726,13 +12706,11 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
11726
12706
  /**
11727
12707
  *
11728
12708
  * @param {string} id
11729
- * @param {ParkingReservationStatus} [status]
11730
- * @param {string} [xAccountId]
11731
12709
  * @param {*} [options] Override http request option.
11732
12710
  * @throws {RequiredError}
11733
12711
  */
11734
- parkingReservationsListDetail(id: string, status?: ParkingReservationStatus, xAccountId?: string, options?: any): AxiosPromise<WrappedOneResponseParkingReservationDetailResponse> {
11735
- return localVarFp.parkingReservationsListDetail(id, status, xAccountId, options).then((request) => request(axios, basePath));
12712
+ parkingReservationsListDetail(id: string, options?: any): AxiosPromise<WrappedOneResponseParkingReservationDetailResponse> {
12713
+ return localVarFp.parkingReservationsListDetail(id, options).then((request) => request(axios, basePath));
11736
12714
  },
11737
12715
  /**
11738
12716
  *
@@ -11743,6 +12721,50 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
11743
12721
  parkingReservationsListShow(xAccountId?: string, options?: any): AxiosPromise<WrappedOneResponseParkingReservationReservedListResponseArray> {
11744
12722
  return localVarFp.parkingReservationsListShow(xAccountId, options).then((request) => request(axios, basePath));
11745
12723
  },
12724
+ /**
12725
+ *
12726
+ * @param {string} tenantId
12727
+ * @param {number} memberTypeId
12728
+ * @param {number} departmentId
12729
+ * @param {number} vehicleTypeId
12730
+ * @param {string} [inviteId]
12731
+ * @param {*} [options] Override http request option.
12732
+ * @throws {RequiredError}
12733
+ */
12734
+ parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, inviteId?: string, options?: any): AxiosPromise<WrappedResponseParkingRedemptionRateResultArray> {
12735
+ return localVarFp.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options).then((request) => request(axios, basePath));
12736
+ },
12737
+ /**
12738
+ *
12739
+ * @param {ParkingResidentialTicketsIndexTypeEnum} type
12740
+ * @param {string} id
12741
+ * @param {*} [options] Override http request option.
12742
+ * @throws {RequiredError}
12743
+ */
12744
+ parkingResidentialTicketsIndex(type: ParkingResidentialTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray> {
12745
+ return localVarFp.parkingResidentialTicketsIndex(type, id, options).then((request) => request(axios, basePath));
12746
+ },
12747
+ /**
12748
+ *
12749
+ * @param {string} logId
12750
+ * @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
12751
+ * @param {*} [options] Override http request option.
12752
+ * @throws {RequiredError}
12753
+ */
12754
+ parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: any): AxiosPromise<WrappedResponseParkingTicketData> {
12755
+ return localVarFp.parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options).then((request) => request(axios, basePath));
12756
+ },
12757
+ /**
12758
+ *
12759
+ * @param {string} tenantId
12760
+ * @param {number} projectId
12761
+ * @param {string} [lang]
12762
+ * @param {*} [options] Override http request option.
12763
+ * @throws {RequiredError}
12764
+ */
12765
+ parkingResidentialTicketsTerms(tenantId: string, projectId: number, lang?: string, options?: any): AxiosPromise<WrappedResponseGetTermsAndConditionsResidenceParkingResponse> {
12766
+ return localVarFp.parkingResidentialTicketsTerms(tenantId, projectId, lang, options).then((request) => request(axios, basePath));
12767
+ },
11746
12768
  /**
11747
12769
  *
11748
12770
  * @param {*} [options] Override http request option.
@@ -11780,6 +12802,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
11780
12802
  parkingTicketsRedeem(logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: any): AxiosPromise<WrappedResponseParkingTicketData> {
11781
12803
  return localVarFp.parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options).then((request) => request(axios, basePath));
11782
12804
  },
12805
+ /**
12806
+ *
12807
+ * @param {string} xAccountId
12808
+ * @param {*} [options] Override http request option.
12809
+ * @throws {RequiredError}
12810
+ */
12811
+ parkingTicketsV2AllDetails(xAccountId: string, options?: any): AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData> {
12812
+ return localVarFp.parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(axios, basePath));
12813
+ },
11783
12814
  /**
11784
12815
  *
11785
12816
  * @param {string} visitScheduleId
@@ -11905,6 +12936,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
11905
12936
  towersIndex(options?: any): AxiosPromise<WrappedResponseTowerIndexResponse> {
11906
12937
  return localVarFp.towersIndex(options).then((request) => request(axios, basePath));
11907
12938
  },
12939
+ /**
12940
+ *
12941
+ * @param {*} [options] Override http request option.
12942
+ * @throws {RequiredError}
12943
+ */
12944
+ towersOutdoorindex(options?: any): AxiosPromise<WrappedResponseOutdoorZoneArray> {
12945
+ return localVarFp.towersOutdoorindex(options).then((request) => request(axios, basePath));
12946
+ },
11908
12947
  /**
11909
12948
  *
11910
12949
  * @param {*} [options] Override http request option.
@@ -11916,12 +12955,13 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
11916
12955
  /**
11917
12956
  *
11918
12957
  * @param {string} id
12958
+ * @param {string} xAccountId
11919
12959
  * @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
11920
12960
  * @param {*} [options] Override http request option.
11921
12961
  * @throws {RequiredError}
11922
12962
  */
11923
- visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: any): AxiosPromise<WrappedResponseResultResponseData> {
11924
- return localVarFp.visitorSchedulesUpdate(id, updateVisitorScheduleBody, options).then((request) => request(axios, basePath));
12963
+ visitorSchedulesUpdate(id: string, xAccountId: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: any): AxiosPromise<WrappedResponseResultResponseData> {
12964
+ return localVarFp.visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options).then((request) => request(axios, basePath));
11925
12965
  },
11926
12966
  /**
11927
12967
  *
@@ -11950,6 +12990,24 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
11950
12990
  visitorsDestroy(id: string, options?: any): AxiosPromise<WrappedResponseNull> {
11951
12991
  return localVarFp.visitorsDestroy(id, options).then((request) => request(axios, basePath));
11952
12992
  },
12993
+ /**
12994
+ *
12995
+ * @param {CreateVisitorResidentBody} createVisitorResidentBody
12996
+ * @param {*} [options] Override http request option.
12997
+ * @throws {RequiredError}
12998
+ */
12999
+ visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: any): AxiosPromise<WrappedResponseCreateVisitorResponse> {
13000
+ return localVarFp.visitorsResidentCreate(createVisitorResidentBody, options).then((request) => request(axios, basePath));
13001
+ },
13002
+ /**
13003
+ *
13004
+ * @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
13005
+ * @param {*} [options] Override http request option.
13006
+ * @throws {RequiredError}
13007
+ */
13008
+ visitorsResidentDeactive(deactiveVisitorResidentBody: DeactiveVisitorResidentBody, options?: any): AxiosPromise<WrappedResponseDeactivateVisitorPassResponse> {
13009
+ return localVarFp.visitorsResidentDeactive(deactiveVisitorResidentBody, options).then((request) => request(axios, basePath));
13010
+ },
11953
13011
  /**
11954
13012
  *
11955
13013
  * @param {string} id
@@ -12187,6 +13245,17 @@ export class DefaultApi extends BaseAPI {
12187
13245
  return DefaultApiFp(this.configuration).integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(this.axios, this.basePath));
12188
13246
  }
12189
13247
 
13248
+ /**
13249
+ *
13250
+ * @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
13251
+ * @param {*} [options] Override http request option.
13252
+ * @throws {RequiredError}
13253
+ * @memberof DefaultApi
13254
+ */
13255
+ public integrationsFsMembersResidentCreate(createResidenceFSMembersBody: CreateResidenceFSMembersBody, options?: AxiosRequestConfig) {
13256
+ return DefaultApiFp(this.configuration).integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options).then((request) => request(this.axios, this.basePath));
13257
+ }
13258
+
12190
13259
  /**
12191
13260
  *
12192
13261
  * @param {IssueTypeRequest} issueTypeRequest
@@ -12406,14 +13475,12 @@ export class DefaultApi extends BaseAPI {
12406
13475
  /**
12407
13476
  *
12408
13477
  * @param {string} id
12409
- * @param {ParkingReservationStatus} [status]
12410
- * @param {string} [xAccountId]
12411
13478
  * @param {*} [options] Override http request option.
12412
13479
  * @throws {RequiredError}
12413
13480
  * @memberof DefaultApi
12414
13481
  */
12415
- public parkingReservationsListDetail(id: string, status?: ParkingReservationStatus, xAccountId?: string, options?: AxiosRequestConfig) {
12416
- return DefaultApiFp(this.configuration).parkingReservationsListDetail(id, status, xAccountId, options).then((request) => request(this.axios, this.basePath));
13482
+ public parkingReservationsListDetail(id: string, options?: AxiosRequestConfig) {
13483
+ return DefaultApiFp(this.configuration).parkingReservationsListDetail(id, options).then((request) => request(this.axios, this.basePath));
12417
13484
  }
12418
13485
 
12419
13486
  /**
@@ -12427,6 +13494,58 @@ export class DefaultApi extends BaseAPI {
12427
13494
  return DefaultApiFp(this.configuration).parkingReservationsListShow(xAccountId, options).then((request) => request(this.axios, this.basePath));
12428
13495
  }
12429
13496
 
13497
+ /**
13498
+ *
13499
+ * @param {string} tenantId
13500
+ * @param {number} memberTypeId
13501
+ * @param {number} departmentId
13502
+ * @param {number} vehicleTypeId
13503
+ * @param {string} [inviteId]
13504
+ * @param {*} [options] Override http request option.
13505
+ * @throws {RequiredError}
13506
+ * @memberof DefaultApi
13507
+ */
13508
+ public parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, inviteId?: string, options?: AxiosRequestConfig) {
13509
+ return DefaultApiFp(this.configuration).parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, inviteId, options).then((request) => request(this.axios, this.basePath));
13510
+ }
13511
+
13512
+ /**
13513
+ *
13514
+ * @param {ParkingResidentialTicketsIndexTypeEnum} type
13515
+ * @param {string} id
13516
+ * @param {*} [options] Override http request option.
13517
+ * @throws {RequiredError}
13518
+ * @memberof DefaultApi
13519
+ */
13520
+ public parkingResidentialTicketsIndex(type: ParkingResidentialTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig) {
13521
+ return DefaultApiFp(this.configuration).parkingResidentialTicketsIndex(type, id, options).then((request) => request(this.axios, this.basePath));
13522
+ }
13523
+
13524
+ /**
13525
+ *
13526
+ * @param {string} logId
13527
+ * @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
13528
+ * @param {*} [options] Override http request option.
13529
+ * @throws {RequiredError}
13530
+ * @memberof DefaultApi
13531
+ */
13532
+ public parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: AxiosRequestConfig) {
13533
+ return DefaultApiFp(this.configuration).parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options).then((request) => request(this.axios, this.basePath));
13534
+ }
13535
+
13536
+ /**
13537
+ *
13538
+ * @param {string} tenantId
13539
+ * @param {number} projectId
13540
+ * @param {string} [lang]
13541
+ * @param {*} [options] Override http request option.
13542
+ * @throws {RequiredError}
13543
+ * @memberof DefaultApi
13544
+ */
13545
+ public parkingResidentialTicketsTerms(tenantId: string, projectId: number, lang?: string, options?: AxiosRequestConfig) {
13546
+ return DefaultApiFp(this.configuration).parkingResidentialTicketsTerms(tenantId, projectId, lang, options).then((request) => request(this.axios, this.basePath));
13547
+ }
13548
+
12430
13549
  /**
12431
13550
  *
12432
13551
  * @param {*} [options] Override http request option.
@@ -12472,6 +13591,17 @@ export class DefaultApi extends BaseAPI {
12472
13591
  return DefaultApiFp(this.configuration).parkingTicketsRedeem(logId, parkingTicketsRedeemBody, options).then((request) => request(this.axios, this.basePath));
12473
13592
  }
12474
13593
 
13594
+ /**
13595
+ *
13596
+ * @param {string} xAccountId
13597
+ * @param {*} [options] Override http request option.
13598
+ * @throws {RequiredError}
13599
+ * @memberof DefaultApi
13600
+ */
13601
+ public parkingTicketsV2AllDetails(xAccountId: string, options?: AxiosRequestConfig) {
13602
+ return DefaultApiFp(this.configuration).parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(this.axios, this.basePath));
13603
+ }
13604
+
12475
13605
  /**
12476
13606
  *
12477
13607
  * @param {string} visitScheduleId
@@ -12623,6 +13753,16 @@ export class DefaultApi extends BaseAPI {
12623
13753
  return DefaultApiFp(this.configuration).towersIndex(options).then((request) => request(this.axios, this.basePath));
12624
13754
  }
12625
13755
 
13756
+ /**
13757
+ *
13758
+ * @param {*} [options] Override http request option.
13759
+ * @throws {RequiredError}
13760
+ * @memberof DefaultApi
13761
+ */
13762
+ public towersOutdoorindex(options?: AxiosRequestConfig) {
13763
+ return DefaultApiFp(this.configuration).towersOutdoorindex(options).then((request) => request(this.axios, this.basePath));
13764
+ }
13765
+
12626
13766
  /**
12627
13767
  *
12628
13768
  * @param {*} [options] Override http request option.
@@ -12636,13 +13776,14 @@ export class DefaultApi extends BaseAPI {
12636
13776
  /**
12637
13777
  *
12638
13778
  * @param {string} id
13779
+ * @param {string} xAccountId
12639
13780
  * @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
12640
13781
  * @param {*} [options] Override http request option.
12641
13782
  * @throws {RequiredError}
12642
13783
  * @memberof DefaultApi
12643
13784
  */
12644
- public visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig) {
12645
- return DefaultApiFp(this.configuration).visitorSchedulesUpdate(id, updateVisitorScheduleBody, options).then((request) => request(this.axios, this.basePath));
13785
+ public visitorSchedulesUpdate(id: string, xAccountId: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig) {
13786
+ return DefaultApiFp(this.configuration).visitorSchedulesUpdate(id, xAccountId, updateVisitorScheduleBody, options).then((request) => request(this.axios, this.basePath));
12646
13787
  }
12647
13788
 
12648
13789
  /**
@@ -12678,6 +13819,28 @@ export class DefaultApi extends BaseAPI {
12678
13819
  return DefaultApiFp(this.configuration).visitorsDestroy(id, options).then((request) => request(this.axios, this.basePath));
12679
13820
  }
12680
13821
 
13822
+ /**
13823
+ *
13824
+ * @param {CreateVisitorResidentBody} createVisitorResidentBody
13825
+ * @param {*} [options] Override http request option.
13826
+ * @throws {RequiredError}
13827
+ * @memberof DefaultApi
13828
+ */
13829
+ public visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: AxiosRequestConfig) {
13830
+ return DefaultApiFp(this.configuration).visitorsResidentCreate(createVisitorResidentBody, options).then((request) => request(this.axios, this.basePath));
13831
+ }
13832
+
13833
+ /**
13834
+ *
13835
+ * @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
13836
+ * @param {*} [options] Override http request option.
13837
+ * @throws {RequiredError}
13838
+ * @memberof DefaultApi
13839
+ */
13840
+ public visitorsResidentDeactive(deactiveVisitorResidentBody: DeactiveVisitorResidentBody, options?: AxiosRequestConfig) {
13841
+ return DefaultApiFp(this.configuration).visitorsResidentDeactive(deactiveVisitorResidentBody, options).then((request) => request(this.axios, this.basePath));
13842
+ }
13843
+
12681
13844
  /**
12682
13845
  *
12683
13846
  * @param {string} id
@@ -12690,6 +13853,17 @@ export class DefaultApi extends BaseAPI {
12690
13853
  }
12691
13854
  }
12692
13855
 
13856
+ /**
13857
+ * @export
13858
+ */
13859
+ export const ParkingResidentialTicketsIndexTypeEnum = {
13860
+ LogId: 'log_id',
13861
+ TicketNumber: 'ticket_number',
13862
+ PlateNo: 'plate_no',
13863
+ InviteId: 'invite_id',
13864
+ MemberId: 'member_id'
13865
+ } as const;
13866
+ export type ParkingResidentialTicketsIndexTypeEnum = typeof ParkingResidentialTicketsIndexTypeEnum[keyof typeof ParkingResidentialTicketsIndexTypeEnum];
12693
13867
  /**
12694
13868
  * @export
12695
13869
  */