ob-bms-sdk 0.0.113 → 0.0.115
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/api.ts +519 -31
- package/dist/api/api.d.ts +386 -26
- package/dist/api/api.js +226 -14
- package/package.json +1 -1
package/dist/api/api.d.ts
CHANGED
|
@@ -1242,6 +1242,24 @@ export interface CreateVisitorResidentBody {
|
|
|
1242
1242
|
* @memberof CreateVisitorResidentBody
|
|
1243
1243
|
*/
|
|
1244
1244
|
'invite_house_number': string;
|
|
1245
|
+
/**
|
|
1246
|
+
*
|
|
1247
|
+
* @type {string}
|
|
1248
|
+
* @memberof CreateVisitorResidentBody
|
|
1249
|
+
*/
|
|
1250
|
+
'invite_zone': string;
|
|
1251
|
+
/**
|
|
1252
|
+
*
|
|
1253
|
+
* @type {string}
|
|
1254
|
+
* @memberof CreateVisitorResidentBody
|
|
1255
|
+
*/
|
|
1256
|
+
'tenant_id': string;
|
|
1257
|
+
/**
|
|
1258
|
+
*
|
|
1259
|
+
* @type {number}
|
|
1260
|
+
* @memberof CreateVisitorResidentBody
|
|
1261
|
+
*/
|
|
1262
|
+
'project_id': number;
|
|
1245
1263
|
}
|
|
1246
1264
|
/**
|
|
1247
1265
|
*
|
|
@@ -1310,6 +1328,63 @@ export interface CreateVisitorResponse {
|
|
|
1310
1328
|
*/
|
|
1311
1329
|
'invite_id'?: string | null;
|
|
1312
1330
|
}
|
|
1331
|
+
/**
|
|
1332
|
+
*
|
|
1333
|
+
* @export
|
|
1334
|
+
* @interface DeactivateVisitorPassResponse
|
|
1335
|
+
*/
|
|
1336
|
+
export interface DeactivateVisitorPassResponse {
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @type {DeactivateVisitorPassResponseApiRes}
|
|
1340
|
+
* @memberof DeactivateVisitorPassResponse
|
|
1341
|
+
*/
|
|
1342
|
+
'apiRes': DeactivateVisitorPassResponseApiRes;
|
|
1343
|
+
/**
|
|
1344
|
+
*
|
|
1345
|
+
* @type {string}
|
|
1346
|
+
* @memberof DeactivateVisitorPassResponse
|
|
1347
|
+
*/
|
|
1348
|
+
'visitorPassId': string;
|
|
1349
|
+
}
|
|
1350
|
+
/**
|
|
1351
|
+
*
|
|
1352
|
+
* @export
|
|
1353
|
+
* @interface DeactivateVisitorPassResponseApiRes
|
|
1354
|
+
*/
|
|
1355
|
+
export interface DeactivateVisitorPassResponseApiRes {
|
|
1356
|
+
/**
|
|
1357
|
+
*
|
|
1358
|
+
* @type {object}
|
|
1359
|
+
* @memberof DeactivateVisitorPassResponseApiRes
|
|
1360
|
+
*/
|
|
1361
|
+
'data': object;
|
|
1362
|
+
/**
|
|
1363
|
+
*
|
|
1364
|
+
* @type {number}
|
|
1365
|
+
* @memberof DeactivateVisitorPassResponseApiRes
|
|
1366
|
+
*/
|
|
1367
|
+
'status': number;
|
|
1368
|
+
/**
|
|
1369
|
+
*
|
|
1370
|
+
* @type {string}
|
|
1371
|
+
* @memberof DeactivateVisitorPassResponseApiRes
|
|
1372
|
+
*/
|
|
1373
|
+
'message': string;
|
|
1374
|
+
}
|
|
1375
|
+
/**
|
|
1376
|
+
*
|
|
1377
|
+
* @export
|
|
1378
|
+
* @interface DeactiveVisitorResidentBody
|
|
1379
|
+
*/
|
|
1380
|
+
export interface DeactiveVisitorResidentBody {
|
|
1381
|
+
/**
|
|
1382
|
+
*
|
|
1383
|
+
* @type {string}
|
|
1384
|
+
* @memberof DeactiveVisitorResidentBody
|
|
1385
|
+
*/
|
|
1386
|
+
'invite_id': string;
|
|
1387
|
+
}
|
|
1313
1388
|
/**
|
|
1314
1389
|
*
|
|
1315
1390
|
* @export
|
|
@@ -1611,6 +1686,75 @@ export interface FloorSensorData {
|
|
|
1611
1686
|
*/
|
|
1612
1687
|
'floor_id': string;
|
|
1613
1688
|
}
|
|
1689
|
+
/**
|
|
1690
|
+
*
|
|
1691
|
+
* @export
|
|
1692
|
+
* @interface GetTermsAndConditionsResidenceParkingResponse
|
|
1693
|
+
*/
|
|
1694
|
+
export interface GetTermsAndConditionsResidenceParkingResponse {
|
|
1695
|
+
/**
|
|
1696
|
+
*
|
|
1697
|
+
* @type {GetTermsAndConditionsResidenceParkingResponseData}
|
|
1698
|
+
* @memberof GetTermsAndConditionsResidenceParkingResponse
|
|
1699
|
+
*/
|
|
1700
|
+
'data': GetTermsAndConditionsResidenceParkingResponseData;
|
|
1701
|
+
}
|
|
1702
|
+
/**
|
|
1703
|
+
*
|
|
1704
|
+
* @export
|
|
1705
|
+
* @interface GetTermsAndConditionsResidenceParkingResponseData
|
|
1706
|
+
*/
|
|
1707
|
+
export interface GetTermsAndConditionsResidenceParkingResponseData {
|
|
1708
|
+
/**
|
|
1709
|
+
*
|
|
1710
|
+
* @type {string}
|
|
1711
|
+
* @memberof GetTermsAndConditionsResidenceParkingResponseData
|
|
1712
|
+
*/
|
|
1713
|
+
'content': string;
|
|
1714
|
+
/**
|
|
1715
|
+
*
|
|
1716
|
+
* @type {string}
|
|
1717
|
+
* @memberof GetTermsAndConditionsResidenceParkingResponseData
|
|
1718
|
+
*/
|
|
1719
|
+
'title': string;
|
|
1720
|
+
/**
|
|
1721
|
+
*
|
|
1722
|
+
* @type {GetTermsAndConditionsResidenceParkingResponseDataProject}
|
|
1723
|
+
* @memberof GetTermsAndConditionsResidenceParkingResponseData
|
|
1724
|
+
*/
|
|
1725
|
+
'project': GetTermsAndConditionsResidenceParkingResponseDataProject;
|
|
1726
|
+
/**
|
|
1727
|
+
*
|
|
1728
|
+
* @type {string}
|
|
1729
|
+
* @memberof GetTermsAndConditionsResidenceParkingResponseData
|
|
1730
|
+
*/
|
|
1731
|
+
'id': string;
|
|
1732
|
+
}
|
|
1733
|
+
/**
|
|
1734
|
+
*
|
|
1735
|
+
* @export
|
|
1736
|
+
* @interface GetTermsAndConditionsResidenceParkingResponseDataProject
|
|
1737
|
+
*/
|
|
1738
|
+
export interface GetTermsAndConditionsResidenceParkingResponseDataProject {
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @type {string}
|
|
1742
|
+
* @memberof GetTermsAndConditionsResidenceParkingResponseDataProject
|
|
1743
|
+
*/
|
|
1744
|
+
'projectsName': string;
|
|
1745
|
+
/**
|
|
1746
|
+
*
|
|
1747
|
+
* @type {string}
|
|
1748
|
+
* @memberof GetTermsAndConditionsResidenceParkingResponseDataProject
|
|
1749
|
+
*/
|
|
1750
|
+
'projectCode': string;
|
|
1751
|
+
/**
|
|
1752
|
+
*
|
|
1753
|
+
* @type {number}
|
|
1754
|
+
* @memberof GetTermsAndConditionsResidenceParkingResponseDataProject
|
|
1755
|
+
*/
|
|
1756
|
+
'projectId': number;
|
|
1757
|
+
}
|
|
1614
1758
|
/**
|
|
1615
1759
|
*
|
|
1616
1760
|
* @export
|
|
@@ -2431,10 +2575,10 @@ export interface MembersShowResponse {
|
|
|
2431
2575
|
'towers': Array<TowerData>;
|
|
2432
2576
|
/**
|
|
2433
2577
|
*
|
|
2434
|
-
* @type {Array<
|
|
2578
|
+
* @type {Array<OutdoorZone>}
|
|
2435
2579
|
* @memberof MembersShowResponse
|
|
2436
2580
|
*/
|
|
2437
|
-
'outdoor': Array<
|
|
2581
|
+
'outdoor': Array<OutdoorZone>;
|
|
2438
2582
|
/**
|
|
2439
2583
|
*
|
|
2440
2584
|
* @type {boolean}
|
|
@@ -2448,6 +2592,24 @@ export interface MembersShowResponse {
|
|
|
2448
2592
|
* @interface MetaDataPasses
|
|
2449
2593
|
*/
|
|
2450
2594
|
export interface MetaDataPasses {
|
|
2595
|
+
/**
|
|
2596
|
+
*
|
|
2597
|
+
* @type {number}
|
|
2598
|
+
* @memberof MetaDataPasses
|
|
2599
|
+
*/
|
|
2600
|
+
'project_id': number;
|
|
2601
|
+
/**
|
|
2602
|
+
*
|
|
2603
|
+
* @type {string}
|
|
2604
|
+
* @memberof MetaDataPasses
|
|
2605
|
+
*/
|
|
2606
|
+
'tenant_id': string;
|
|
2607
|
+
/**
|
|
2608
|
+
*
|
|
2609
|
+
* @type {string}
|
|
2610
|
+
* @memberof MetaDataPasses
|
|
2611
|
+
*/
|
|
2612
|
+
'invite_zone': string;
|
|
2451
2613
|
/**
|
|
2452
2614
|
*
|
|
2453
2615
|
* @type {string}
|
|
@@ -2464,21 +2626,58 @@ export interface MetaDataPasses {
|
|
|
2464
2626
|
/**
|
|
2465
2627
|
*
|
|
2466
2628
|
* @export
|
|
2467
|
-
* @interface
|
|
2629
|
+
* @interface OutdoorZone
|
|
2468
2630
|
*/
|
|
2469
|
-
export interface
|
|
2631
|
+
export interface OutdoorZone {
|
|
2632
|
+
/**
|
|
2633
|
+
*
|
|
2634
|
+
* @type {string}
|
|
2635
|
+
* @memberof OutdoorZone
|
|
2636
|
+
*/
|
|
2637
|
+
'id': string;
|
|
2470
2638
|
/**
|
|
2471
2639
|
*
|
|
2472
2640
|
* @type {string}
|
|
2473
|
-
* @memberof
|
|
2641
|
+
* @memberof OutdoorZone
|
|
2474
2642
|
*/
|
|
2475
2643
|
'name': string;
|
|
2476
2644
|
/**
|
|
2477
2645
|
*
|
|
2478
2646
|
* @type {string}
|
|
2479
|
-
* @memberof
|
|
2647
|
+
* @memberof OutdoorZone
|
|
2480
2648
|
*/
|
|
2481
2649
|
'code': string;
|
|
2650
|
+
/**
|
|
2651
|
+
*
|
|
2652
|
+
* @type {OutdoorZoneDisplayName}
|
|
2653
|
+
* @memberof OutdoorZone
|
|
2654
|
+
*/
|
|
2655
|
+
'display_name': OutdoorZoneDisplayName;
|
|
2656
|
+
}
|
|
2657
|
+
/**
|
|
2658
|
+
*
|
|
2659
|
+
* @export
|
|
2660
|
+
* @interface OutdoorZoneDisplayName
|
|
2661
|
+
*/
|
|
2662
|
+
export interface OutdoorZoneDisplayName {
|
|
2663
|
+
/**
|
|
2664
|
+
*
|
|
2665
|
+
* @type {string}
|
|
2666
|
+
* @memberof OutdoorZoneDisplayName
|
|
2667
|
+
*/
|
|
2668
|
+
'zh': string;
|
|
2669
|
+
/**
|
|
2670
|
+
*
|
|
2671
|
+
* @type {string}
|
|
2672
|
+
* @memberof OutdoorZoneDisplayName
|
|
2673
|
+
*/
|
|
2674
|
+
'th': string;
|
|
2675
|
+
/**
|
|
2676
|
+
*
|
|
2677
|
+
* @type {string}
|
|
2678
|
+
* @memberof OutdoorZoneDisplayName
|
|
2679
|
+
*/
|
|
2680
|
+
'en': string;
|
|
2482
2681
|
}
|
|
2483
2682
|
/**
|
|
2484
2683
|
*
|
|
@@ -3616,7 +3815,7 @@ export interface ParkingTicketsRedeemBodyResident {
|
|
|
3616
3815
|
* @type {string}
|
|
3617
3816
|
* @memberof ParkingTicketsRedeemBodyResident
|
|
3618
3817
|
*/
|
|
3619
|
-
'remark'
|
|
3818
|
+
'remark'?: string;
|
|
3620
3819
|
/**
|
|
3621
3820
|
*
|
|
3622
3821
|
* @type {string}
|
|
@@ -4160,7 +4359,7 @@ export interface PersonDataResident {
|
|
|
4160
4359
|
* @type {string}
|
|
4161
4360
|
* @memberof PersonDataResident
|
|
4162
4361
|
*/
|
|
4163
|
-
'status'
|
|
4362
|
+
'status'?: string;
|
|
4164
4363
|
}
|
|
4165
4364
|
/**
|
|
4166
4365
|
*
|
|
@@ -7385,6 +7584,38 @@ export interface WrappedResponseCreateVisitorResponseData {
|
|
|
7385
7584
|
*/
|
|
7386
7585
|
'invite_id'?: string | null;
|
|
7387
7586
|
}
|
|
7587
|
+
/**
|
|
7588
|
+
*
|
|
7589
|
+
* @export
|
|
7590
|
+
* @interface WrappedResponseDeactivateVisitorPassResponse
|
|
7591
|
+
*/
|
|
7592
|
+
export interface WrappedResponseDeactivateVisitorPassResponse {
|
|
7593
|
+
/**
|
|
7594
|
+
*
|
|
7595
|
+
* @type {WrappedResponseDeactivateVisitorPassResponseData}
|
|
7596
|
+
* @memberof WrappedResponseDeactivateVisitorPassResponse
|
|
7597
|
+
*/
|
|
7598
|
+
'data': WrappedResponseDeactivateVisitorPassResponseData | null;
|
|
7599
|
+
}
|
|
7600
|
+
/**
|
|
7601
|
+
*
|
|
7602
|
+
* @export
|
|
7603
|
+
* @interface WrappedResponseDeactivateVisitorPassResponseData
|
|
7604
|
+
*/
|
|
7605
|
+
export interface WrappedResponseDeactivateVisitorPassResponseData {
|
|
7606
|
+
/**
|
|
7607
|
+
*
|
|
7608
|
+
* @type {DeactivateVisitorPassResponseApiRes}
|
|
7609
|
+
* @memberof WrappedResponseDeactivateVisitorPassResponseData
|
|
7610
|
+
*/
|
|
7611
|
+
'apiRes': DeactivateVisitorPassResponseApiRes;
|
|
7612
|
+
/**
|
|
7613
|
+
*
|
|
7614
|
+
* @type {string}
|
|
7615
|
+
* @memberof WrappedResponseDeactivateVisitorPassResponseData
|
|
7616
|
+
*/
|
|
7617
|
+
'visitorPassId': string;
|
|
7618
|
+
}
|
|
7388
7619
|
/**
|
|
7389
7620
|
*
|
|
7390
7621
|
* @export
|
|
@@ -7417,6 +7648,32 @@ export interface WrappedResponseFetchParkingResultData {
|
|
|
7417
7648
|
*/
|
|
7418
7649
|
'error': Array<SyncResultSyncJobErrorInner>;
|
|
7419
7650
|
}
|
|
7651
|
+
/**
|
|
7652
|
+
*
|
|
7653
|
+
* @export
|
|
7654
|
+
* @interface WrappedResponseGetTermsAndConditionsResidenceParkingResponse
|
|
7655
|
+
*/
|
|
7656
|
+
export interface WrappedResponseGetTermsAndConditionsResidenceParkingResponse {
|
|
7657
|
+
/**
|
|
7658
|
+
*
|
|
7659
|
+
* @type {WrappedResponseGetTermsAndConditionsResidenceParkingResponseData}
|
|
7660
|
+
* @memberof WrappedResponseGetTermsAndConditionsResidenceParkingResponse
|
|
7661
|
+
*/
|
|
7662
|
+
'data': WrappedResponseGetTermsAndConditionsResidenceParkingResponseData | null;
|
|
7663
|
+
}
|
|
7664
|
+
/**
|
|
7665
|
+
*
|
|
7666
|
+
* @export
|
|
7667
|
+
* @interface WrappedResponseGetTermsAndConditionsResidenceParkingResponseData
|
|
7668
|
+
*/
|
|
7669
|
+
export interface WrappedResponseGetTermsAndConditionsResidenceParkingResponseData {
|
|
7670
|
+
/**
|
|
7671
|
+
*
|
|
7672
|
+
* @type {GetTermsAndConditionsResidenceParkingResponseData}
|
|
7673
|
+
* @memberof WrappedResponseGetTermsAndConditionsResidenceParkingResponseData
|
|
7674
|
+
*/
|
|
7675
|
+
'data': GetTermsAndConditionsResidenceParkingResponseData;
|
|
7676
|
+
}
|
|
7420
7677
|
/**
|
|
7421
7678
|
*
|
|
7422
7679
|
* @export
|
|
@@ -7490,22 +7747,22 @@ export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[key
|
|
|
7490
7747
|
/**
|
|
7491
7748
|
*
|
|
7492
7749
|
* @export
|
|
7493
|
-
* @interface
|
|
7750
|
+
* @interface WrappedResponseOutdoorZoneArray
|
|
7494
7751
|
*/
|
|
7495
|
-
export interface
|
|
7752
|
+
export interface WrappedResponseOutdoorZoneArray {
|
|
7496
7753
|
/**
|
|
7497
7754
|
*
|
|
7498
|
-
* @type {
|
|
7499
|
-
* @memberof
|
|
7755
|
+
* @type {WrappedResponseOutdoorZoneArrayData}
|
|
7756
|
+
* @memberof WrappedResponseOutdoorZoneArray
|
|
7500
7757
|
*/
|
|
7501
|
-
'data':
|
|
7758
|
+
'data': WrappedResponseOutdoorZoneArrayData | null;
|
|
7502
7759
|
}
|
|
7503
7760
|
/**
|
|
7504
7761
|
*
|
|
7505
7762
|
* @export
|
|
7506
|
-
* @interface
|
|
7763
|
+
* @interface WrappedResponseOutdoorZoneArrayData
|
|
7507
7764
|
*/
|
|
7508
|
-
export interface
|
|
7765
|
+
export interface WrappedResponseOutdoorZoneArrayData {
|
|
7509
7766
|
}
|
|
7510
7767
|
/**
|
|
7511
7768
|
*
|
|
@@ -8820,10 +9077,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8820
9077
|
* @param {number} memberTypeId
|
|
8821
9078
|
* @param {number} departmentId
|
|
8822
9079
|
* @param {number} vehicleTypeId
|
|
9080
|
+
* @param {string} [inviteId]
|
|
8823
9081
|
* @param {*} [options] Override http request option.
|
|
8824
9082
|
* @throws {RequiredError}
|
|
8825
9083
|
*/
|
|
8826
|
-
parkingResidentialRedemptionRatesIndex: (tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9084
|
+
parkingResidentialRedemptionRatesIndex: (tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, inviteId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8827
9085
|
/**
|
|
8828
9086
|
*
|
|
8829
9087
|
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
@@ -8840,6 +9098,15 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8840
9098
|
* @throws {RequiredError}
|
|
8841
9099
|
*/
|
|
8842
9100
|
parkingResidentialTicketsRedeem: (logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9101
|
+
/**
|
|
9102
|
+
*
|
|
9103
|
+
* @param {string} tenantId
|
|
9104
|
+
* @param {number} projectId
|
|
9105
|
+
* @param {string} [lang]
|
|
9106
|
+
* @param {*} [options] Override http request option.
|
|
9107
|
+
* @throws {RequiredError}
|
|
9108
|
+
*/
|
|
9109
|
+
parkingResidentialTicketsTerms: (tenantId: string, projectId: number, lang?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8843
9110
|
/**
|
|
8844
9111
|
*
|
|
8845
9112
|
* @param {*} [options] Override http request option.
|
|
@@ -8869,6 +9136,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8869
9136
|
* @throws {RequiredError}
|
|
8870
9137
|
*/
|
|
8871
9138
|
parkingTicketsRedeem: (logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9139
|
+
/**
|
|
9140
|
+
*
|
|
9141
|
+
* @param {string} [xAccountId]
|
|
9142
|
+
* @param {*} [options] Override http request option.
|
|
9143
|
+
* @throws {RequiredError}
|
|
9144
|
+
*/
|
|
9145
|
+
parkingTicketsV2AllDetails: (xAccountId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8872
9146
|
/**
|
|
8873
9147
|
*
|
|
8874
9148
|
* @param {string} visitScheduleId
|
|
@@ -8983,11 +9257,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8983
9257
|
/**
|
|
8984
9258
|
*
|
|
8985
9259
|
* @param {string} id
|
|
9260
|
+
* @param {string} xAccountId
|
|
8986
9261
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
8987
9262
|
* @param {*} [options] Override http request option.
|
|
8988
9263
|
* @throws {RequiredError}
|
|
8989
9264
|
*/
|
|
8990
|
-
visitorSchedulesUpdate: (id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9265
|
+
visitorSchedulesUpdate: (id: string, xAccountId: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8991
9266
|
/**
|
|
8992
9267
|
*
|
|
8993
9268
|
* @param {string} [tokenId]
|
|
@@ -9016,6 +9291,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
9016
9291
|
* @throws {RequiredError}
|
|
9017
9292
|
*/
|
|
9018
9293
|
visitorsResidentCreate: (createVisitorResidentBody: CreateVisitorResidentBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9294
|
+
/**
|
|
9295
|
+
*
|
|
9296
|
+
* @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
|
|
9297
|
+
* @param {*} [options] Override http request option.
|
|
9298
|
+
* @throws {RequiredError}
|
|
9299
|
+
*/
|
|
9300
|
+
visitorsResidentDeactive: (deactiveVisitorResidentBody: DeactiveVisitorResidentBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9019
9301
|
/**
|
|
9020
9302
|
*
|
|
9021
9303
|
* @param {string} id
|
|
@@ -9350,10 +9632,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9350
9632
|
* @param {number} memberTypeId
|
|
9351
9633
|
* @param {number} departmentId
|
|
9352
9634
|
* @param {number} vehicleTypeId
|
|
9635
|
+
* @param {string} [inviteId]
|
|
9353
9636
|
* @param {*} [options] Override http request option.
|
|
9354
9637
|
* @throws {RequiredError}
|
|
9355
9638
|
*/
|
|
9356
|
-
parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingRedemptionRateResultArray>>;
|
|
9639
|
+
parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, inviteId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingRedemptionRateResultArray>>;
|
|
9357
9640
|
/**
|
|
9358
9641
|
*
|
|
9359
9642
|
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
@@ -9370,6 +9653,15 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9370
9653
|
* @throws {RequiredError}
|
|
9371
9654
|
*/
|
|
9372
9655
|
parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketData>>;
|
|
9656
|
+
/**
|
|
9657
|
+
*
|
|
9658
|
+
* @param {string} tenantId
|
|
9659
|
+
* @param {number} projectId
|
|
9660
|
+
* @param {string} [lang]
|
|
9661
|
+
* @param {*} [options] Override http request option.
|
|
9662
|
+
* @throws {RequiredError}
|
|
9663
|
+
*/
|
|
9664
|
+
parkingResidentialTicketsTerms(tenantId: string, projectId: number, lang?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseGetTermsAndConditionsResidenceParkingResponse>>;
|
|
9373
9665
|
/**
|
|
9374
9666
|
*
|
|
9375
9667
|
* @param {*} [options] Override http request option.
|
|
@@ -9399,6 +9691,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9399
9691
|
* @throws {RequiredError}
|
|
9400
9692
|
*/
|
|
9401
9693
|
parkingTicketsRedeem(logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketData>>;
|
|
9694
|
+
/**
|
|
9695
|
+
*
|
|
9696
|
+
* @param {string} [xAccountId]
|
|
9697
|
+
* @param {*} [options] Override http request option.
|
|
9698
|
+
* @throws {RequiredError}
|
|
9699
|
+
*/
|
|
9700
|
+
parkingTicketsV2AllDetails(xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData>>;
|
|
9402
9701
|
/**
|
|
9403
9702
|
*
|
|
9404
9703
|
* @param {string} visitScheduleId
|
|
@@ -9503,7 +9802,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9503
9802
|
* @param {*} [options] Override http request option.
|
|
9504
9803
|
* @throws {RequiredError}
|
|
9505
9804
|
*/
|
|
9506
|
-
towersOutdoorindex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9805
|
+
towersOutdoorindex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseOutdoorZoneArray>>;
|
|
9507
9806
|
/**
|
|
9508
9807
|
*
|
|
9509
9808
|
* @param {*} [options] Override http request option.
|
|
@@ -9513,11 +9812,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9513
9812
|
/**
|
|
9514
9813
|
*
|
|
9515
9814
|
* @param {string} id
|
|
9815
|
+
* @param {string} xAccountId
|
|
9516
9816
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
9517
9817
|
* @param {*} [options] Override http request option.
|
|
9518
9818
|
* @throws {RequiredError}
|
|
9519
9819
|
*/
|
|
9520
|
-
visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseResultResponseData>>;
|
|
9820
|
+
visitorSchedulesUpdate(id: string, xAccountId: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseResultResponseData>>;
|
|
9521
9821
|
/**
|
|
9522
9822
|
*
|
|
9523
9823
|
* @param {string} [tokenId]
|
|
@@ -9546,6 +9846,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9546
9846
|
* @throws {RequiredError}
|
|
9547
9847
|
*/
|
|
9548
9848
|
visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseCreateVisitorResponse>>;
|
|
9849
|
+
/**
|
|
9850
|
+
*
|
|
9851
|
+
* @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
|
|
9852
|
+
* @param {*} [options] Override http request option.
|
|
9853
|
+
* @throws {RequiredError}
|
|
9854
|
+
*/
|
|
9855
|
+
visitorsResidentDeactive(deactiveVisitorResidentBody: DeactiveVisitorResidentBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseDeactivateVisitorPassResponse>>;
|
|
9549
9856
|
/**
|
|
9550
9857
|
*
|
|
9551
9858
|
* @param {string} id
|
|
@@ -9880,10 +10187,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9880
10187
|
* @param {number} memberTypeId
|
|
9881
10188
|
* @param {number} departmentId
|
|
9882
10189
|
* @param {number} vehicleTypeId
|
|
10190
|
+
* @param {string} [inviteId]
|
|
9883
10191
|
* @param {*} [options] Override http request option.
|
|
9884
10192
|
* @throws {RequiredError}
|
|
9885
10193
|
*/
|
|
9886
|
-
parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options?: any): AxiosPromise<WrappedResponseParkingRedemptionRateResultArray>;
|
|
10194
|
+
parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, inviteId?: string, options?: any): AxiosPromise<WrappedResponseParkingRedemptionRateResultArray>;
|
|
9887
10195
|
/**
|
|
9888
10196
|
*
|
|
9889
10197
|
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
@@ -9900,6 +10208,15 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9900
10208
|
* @throws {RequiredError}
|
|
9901
10209
|
*/
|
|
9902
10210
|
parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: any): AxiosPromise<WrappedResponseParkingTicketData>;
|
|
10211
|
+
/**
|
|
10212
|
+
*
|
|
10213
|
+
* @param {string} tenantId
|
|
10214
|
+
* @param {number} projectId
|
|
10215
|
+
* @param {string} [lang]
|
|
10216
|
+
* @param {*} [options] Override http request option.
|
|
10217
|
+
* @throws {RequiredError}
|
|
10218
|
+
*/
|
|
10219
|
+
parkingResidentialTicketsTerms(tenantId: string, projectId: number, lang?: string, options?: any): AxiosPromise<WrappedResponseGetTermsAndConditionsResidenceParkingResponse>;
|
|
9903
10220
|
/**
|
|
9904
10221
|
*
|
|
9905
10222
|
* @param {*} [options] Override http request option.
|
|
@@ -9929,6 +10246,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9929
10246
|
* @throws {RequiredError}
|
|
9930
10247
|
*/
|
|
9931
10248
|
parkingTicketsRedeem(logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: any): AxiosPromise<WrappedResponseParkingTicketData>;
|
|
10249
|
+
/**
|
|
10250
|
+
*
|
|
10251
|
+
* @param {string} [xAccountId]
|
|
10252
|
+
* @param {*} [options] Override http request option.
|
|
10253
|
+
* @throws {RequiredError}
|
|
10254
|
+
*/
|
|
10255
|
+
parkingTicketsV2AllDetails(xAccountId?: string, options?: any): AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData>;
|
|
9932
10256
|
/**
|
|
9933
10257
|
*
|
|
9934
10258
|
* @param {string} visitScheduleId
|
|
@@ -10033,7 +10357,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
10033
10357
|
* @param {*} [options] Override http request option.
|
|
10034
10358
|
* @throws {RequiredError}
|
|
10035
10359
|
*/
|
|
10036
|
-
towersOutdoorindex(options?: any): AxiosPromise<
|
|
10360
|
+
towersOutdoorindex(options?: any): AxiosPromise<WrappedResponseOutdoorZoneArray>;
|
|
10037
10361
|
/**
|
|
10038
10362
|
*
|
|
10039
10363
|
* @param {*} [options] Override http request option.
|
|
@@ -10043,11 +10367,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
10043
10367
|
/**
|
|
10044
10368
|
*
|
|
10045
10369
|
* @param {string} id
|
|
10370
|
+
* @param {string} xAccountId
|
|
10046
10371
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
10047
10372
|
* @param {*} [options] Override http request option.
|
|
10048
10373
|
* @throws {RequiredError}
|
|
10049
10374
|
*/
|
|
10050
|
-
visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: any): AxiosPromise<WrappedResponseResultResponseData>;
|
|
10375
|
+
visitorSchedulesUpdate(id: string, xAccountId: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: any): AxiosPromise<WrappedResponseResultResponseData>;
|
|
10051
10376
|
/**
|
|
10052
10377
|
*
|
|
10053
10378
|
* @param {string} [tokenId]
|
|
@@ -10076,6 +10401,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
10076
10401
|
* @throws {RequiredError}
|
|
10077
10402
|
*/
|
|
10078
10403
|
visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: any): AxiosPromise<WrappedResponseCreateVisitorResponse>;
|
|
10404
|
+
/**
|
|
10405
|
+
*
|
|
10406
|
+
* @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
|
|
10407
|
+
* @param {*} [options] Override http request option.
|
|
10408
|
+
* @throws {RequiredError}
|
|
10409
|
+
*/
|
|
10410
|
+
visitorsResidentDeactive(deactiveVisitorResidentBody: DeactiveVisitorResidentBody, options?: any): AxiosPromise<WrappedResponseDeactivateVisitorPassResponse>;
|
|
10079
10411
|
/**
|
|
10080
10412
|
*
|
|
10081
10413
|
* @param {string} id
|
|
@@ -10450,11 +10782,12 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10450
10782
|
* @param {number} memberTypeId
|
|
10451
10783
|
* @param {number} departmentId
|
|
10452
10784
|
* @param {number} vehicleTypeId
|
|
10785
|
+
* @param {string} [inviteId]
|
|
10453
10786
|
* @param {*} [options] Override http request option.
|
|
10454
10787
|
* @throws {RequiredError}
|
|
10455
10788
|
* @memberof DefaultApi
|
|
10456
10789
|
*/
|
|
10457
|
-
parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingRedemptionRateResultArray, any>>;
|
|
10790
|
+
parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, inviteId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingRedemptionRateResultArray, any>>;
|
|
10458
10791
|
/**
|
|
10459
10792
|
*
|
|
10460
10793
|
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
@@ -10473,6 +10806,16 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10473
10806
|
* @memberof DefaultApi
|
|
10474
10807
|
*/
|
|
10475
10808
|
parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingTicketData, any>>;
|
|
10809
|
+
/**
|
|
10810
|
+
*
|
|
10811
|
+
* @param {string} tenantId
|
|
10812
|
+
* @param {number} projectId
|
|
10813
|
+
* @param {string} [lang]
|
|
10814
|
+
* @param {*} [options] Override http request option.
|
|
10815
|
+
* @throws {RequiredError}
|
|
10816
|
+
* @memberof DefaultApi
|
|
10817
|
+
*/
|
|
10818
|
+
parkingResidentialTicketsTerms(tenantId: string, projectId: number, lang?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseGetTermsAndConditionsResidenceParkingResponse, any>>;
|
|
10476
10819
|
/**
|
|
10477
10820
|
*
|
|
10478
10821
|
* @param {*} [options] Override http request option.
|
|
@@ -10506,6 +10849,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10506
10849
|
* @memberof DefaultApi
|
|
10507
10850
|
*/
|
|
10508
10851
|
parkingTicketsRedeem(logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingTicketData, any>>;
|
|
10852
|
+
/**
|
|
10853
|
+
*
|
|
10854
|
+
* @param {string} [xAccountId]
|
|
10855
|
+
* @param {*} [options] Override http request option.
|
|
10856
|
+
* @throws {RequiredError}
|
|
10857
|
+
* @memberof DefaultApi
|
|
10858
|
+
*/
|
|
10859
|
+
parkingTicketsV2AllDetails(xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingSpaceDetailAndSpaceDetailData, any>>;
|
|
10509
10860
|
/**
|
|
10510
10861
|
*
|
|
10511
10862
|
* @param {string} visitScheduleId
|
|
@@ -10624,7 +10975,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10624
10975
|
* @throws {RequiredError}
|
|
10625
10976
|
* @memberof DefaultApi
|
|
10626
10977
|
*/
|
|
10627
|
-
towersOutdoorindex(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
10978
|
+
towersOutdoorindex(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseOutdoorZoneArray, any>>;
|
|
10628
10979
|
/**
|
|
10629
10980
|
*
|
|
10630
10981
|
* @param {*} [options] Override http request option.
|
|
@@ -10635,12 +10986,13 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10635
10986
|
/**
|
|
10636
10987
|
*
|
|
10637
10988
|
* @param {string} id
|
|
10989
|
+
* @param {string} xAccountId
|
|
10638
10990
|
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
10639
10991
|
* @param {*} [options] Override http request option.
|
|
10640
10992
|
* @throws {RequiredError}
|
|
10641
10993
|
* @memberof DefaultApi
|
|
10642
10994
|
*/
|
|
10643
|
-
visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseResultResponseData, any>>;
|
|
10995
|
+
visitorSchedulesUpdate(id: string, xAccountId: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseResultResponseData, any>>;
|
|
10644
10996
|
/**
|
|
10645
10997
|
*
|
|
10646
10998
|
* @param {string} [tokenId]
|
|
@@ -10673,6 +11025,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10673
11025
|
* @memberof DefaultApi
|
|
10674
11026
|
*/
|
|
10675
11027
|
visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseCreateVisitorResponse, any>>;
|
|
11028
|
+
/**
|
|
11029
|
+
*
|
|
11030
|
+
* @param {DeactiveVisitorResidentBody} deactiveVisitorResidentBody
|
|
11031
|
+
* @param {*} [options] Override http request option.
|
|
11032
|
+
* @throws {RequiredError}
|
|
11033
|
+
* @memberof DefaultApi
|
|
11034
|
+
*/
|
|
11035
|
+
visitorsResidentDeactive(deactiveVisitorResidentBody: DeactiveVisitorResidentBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseDeactivateVisitorPassResponse, any>>;
|
|
10676
11036
|
/**
|
|
10677
11037
|
*
|
|
10678
11038
|
* @param {string} id
|