ob-bms-sdk 0.0.111 → 0.0.113
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/api.ts +1449 -126
- package/dist/api/api.d.ts +1173 -88
- package/dist/api/api.js +420 -15
- package/package.json +1 -1
package/dist/api/api.d.ts
CHANGED
|
@@ -634,6 +634,49 @@ export interface BaseIndexQuery {
|
|
|
634
634
|
*/
|
|
635
635
|
'page_size'?: number;
|
|
636
636
|
}
|
|
637
|
+
/**
|
|
638
|
+
*
|
|
639
|
+
* @export
|
|
640
|
+
* @interface BlockerData
|
|
641
|
+
*/
|
|
642
|
+
export interface BlockerData {
|
|
643
|
+
/**
|
|
644
|
+
*
|
|
645
|
+
* @type {string}
|
|
646
|
+
* @memberof BlockerData
|
|
647
|
+
*/
|
|
648
|
+
'id'?: string;
|
|
649
|
+
/**
|
|
650
|
+
*
|
|
651
|
+
* @type {string}
|
|
652
|
+
* @memberof BlockerData
|
|
653
|
+
*/
|
|
654
|
+
'uid'?: string;
|
|
655
|
+
/**
|
|
656
|
+
*
|
|
657
|
+
* @type {PrismaJsonValue}
|
|
658
|
+
* @memberof BlockerData
|
|
659
|
+
*/
|
|
660
|
+
'meta'?: PrismaJsonValue | null;
|
|
661
|
+
/**
|
|
662
|
+
*
|
|
663
|
+
* @type {string}
|
|
664
|
+
* @memberof BlockerData
|
|
665
|
+
*/
|
|
666
|
+
'parking_space_id'?: string;
|
|
667
|
+
/**
|
|
668
|
+
*
|
|
669
|
+
* @type {string}
|
|
670
|
+
* @memberof BlockerData
|
|
671
|
+
*/
|
|
672
|
+
'created_at'?: string;
|
|
673
|
+
/**
|
|
674
|
+
*
|
|
675
|
+
* @type {string}
|
|
676
|
+
* @memberof BlockerData
|
|
677
|
+
*/
|
|
678
|
+
'updated_at'?: string;
|
|
679
|
+
}
|
|
637
680
|
/**
|
|
638
681
|
*
|
|
639
682
|
* @export
|
|
@@ -1046,6 +1089,25 @@ export interface CreateMembersResponse {
|
|
|
1046
1089
|
[key: string]: any;
|
|
1047
1090
|
} | null;
|
|
1048
1091
|
}
|
|
1092
|
+
/**
|
|
1093
|
+
*
|
|
1094
|
+
* @export
|
|
1095
|
+
* @interface CreateResidenceFSMembersBody
|
|
1096
|
+
*/
|
|
1097
|
+
export interface CreateResidenceFSMembersBody {
|
|
1098
|
+
/**
|
|
1099
|
+
*
|
|
1100
|
+
* @type {number}
|
|
1101
|
+
* @memberof CreateResidenceFSMembersBody
|
|
1102
|
+
*/
|
|
1103
|
+
'count': number;
|
|
1104
|
+
/**
|
|
1105
|
+
*
|
|
1106
|
+
* @type {Array<PersonDataResident>}
|
|
1107
|
+
* @memberof CreateResidenceFSMembersBody
|
|
1108
|
+
*/
|
|
1109
|
+
'data': Array<PersonDataResident>;
|
|
1110
|
+
}
|
|
1049
1111
|
/**
|
|
1050
1112
|
*
|
|
1051
1113
|
* @export
|
|
@@ -1108,6 +1170,79 @@ export interface CreateVisitorBody {
|
|
|
1108
1170
|
*/
|
|
1109
1171
|
'visitor_schedule': VisitorSchedule;
|
|
1110
1172
|
}
|
|
1173
|
+
/**
|
|
1174
|
+
*
|
|
1175
|
+
* @export
|
|
1176
|
+
* @interface CreateVisitorResidentBody
|
|
1177
|
+
*/
|
|
1178
|
+
export interface CreateVisitorResidentBody {
|
|
1179
|
+
/**
|
|
1180
|
+
*
|
|
1181
|
+
* @type {string}
|
|
1182
|
+
* @memberof CreateVisitorResidentBody
|
|
1183
|
+
*/
|
|
1184
|
+
'name': string;
|
|
1185
|
+
/**
|
|
1186
|
+
*
|
|
1187
|
+
* @type {string}
|
|
1188
|
+
* @memberof CreateVisitorResidentBody
|
|
1189
|
+
*/
|
|
1190
|
+
'profile_image_url': string | null;
|
|
1191
|
+
/**
|
|
1192
|
+
*
|
|
1193
|
+
* @type {string}
|
|
1194
|
+
* @memberof CreateVisitorResidentBody
|
|
1195
|
+
*/
|
|
1196
|
+
'email': string;
|
|
1197
|
+
/**
|
|
1198
|
+
*
|
|
1199
|
+
* @type {string}
|
|
1200
|
+
* @memberof CreateVisitorResidentBody
|
|
1201
|
+
*/
|
|
1202
|
+
'company_name': string;
|
|
1203
|
+
/**
|
|
1204
|
+
*
|
|
1205
|
+
* @type {string}
|
|
1206
|
+
* @memberof CreateVisitorResidentBody
|
|
1207
|
+
*/
|
|
1208
|
+
'reference'?: string;
|
|
1209
|
+
/**
|
|
1210
|
+
*
|
|
1211
|
+
* @type {string}
|
|
1212
|
+
* @memberof CreateVisitorResidentBody
|
|
1213
|
+
*/
|
|
1214
|
+
'inviter_id': string;
|
|
1215
|
+
/**
|
|
1216
|
+
*
|
|
1217
|
+
* @type {VisitorSchedule}
|
|
1218
|
+
* @memberof CreateVisitorResidentBody
|
|
1219
|
+
*/
|
|
1220
|
+
'visitor_schedule': VisitorSchedule;
|
|
1221
|
+
/**
|
|
1222
|
+
*
|
|
1223
|
+
* @type {string}
|
|
1224
|
+
* @memberof CreateVisitorResidentBody
|
|
1225
|
+
*/
|
|
1226
|
+
'residence_id': string;
|
|
1227
|
+
/**
|
|
1228
|
+
*
|
|
1229
|
+
* @type {number}
|
|
1230
|
+
* @memberof CreateVisitorResidentBody
|
|
1231
|
+
*/
|
|
1232
|
+
'location_id': number;
|
|
1233
|
+
/**
|
|
1234
|
+
*
|
|
1235
|
+
* @type {string}
|
|
1236
|
+
* @memberof CreateVisitorResidentBody
|
|
1237
|
+
*/
|
|
1238
|
+
'invite_name': string;
|
|
1239
|
+
/**
|
|
1240
|
+
*
|
|
1241
|
+
* @type {string}
|
|
1242
|
+
* @memberof CreateVisitorResidentBody
|
|
1243
|
+
*/
|
|
1244
|
+
'invite_house_number': string;
|
|
1245
|
+
}
|
|
1111
1246
|
/**
|
|
1112
1247
|
*
|
|
1113
1248
|
* @export
|
|
@@ -1168,6 +1303,12 @@ export interface CreateVisitorResponse {
|
|
|
1168
1303
|
* @memberof CreateVisitorResponse
|
|
1169
1304
|
*/
|
|
1170
1305
|
'updated_at': string;
|
|
1306
|
+
/**
|
|
1307
|
+
*
|
|
1308
|
+
* @type {string}
|
|
1309
|
+
* @memberof CreateVisitorResponse
|
|
1310
|
+
*/
|
|
1311
|
+
'invite_id'?: string | null;
|
|
1171
1312
|
}
|
|
1172
1313
|
/**
|
|
1173
1314
|
*
|
|
@@ -1982,6 +2123,12 @@ export interface MemberIndexInterface {
|
|
|
1982
2123
|
* @memberof MemberIndexInterface
|
|
1983
2124
|
*/
|
|
1984
2125
|
'metadata'?: PrismaJsonValue | null;
|
|
2126
|
+
/**
|
|
2127
|
+
*
|
|
2128
|
+
* @type {PrismaJsonValue}
|
|
2129
|
+
* @memberof MemberIndexInterface
|
|
2130
|
+
*/
|
|
2131
|
+
'metadata_resident'?: PrismaJsonValue | null;
|
|
1985
2132
|
/**
|
|
1986
2133
|
*
|
|
1987
2134
|
* @type {string}
|
|
@@ -2295,6 +2442,25 @@ export interface MembersShowResponse {
|
|
|
2295
2442
|
*/
|
|
2296
2443
|
'passed_turnstile': boolean;
|
|
2297
2444
|
}
|
|
2445
|
+
/**
|
|
2446
|
+
*
|
|
2447
|
+
* @export
|
|
2448
|
+
* @interface MetaDataPasses
|
|
2449
|
+
*/
|
|
2450
|
+
export interface MetaDataPasses {
|
|
2451
|
+
/**
|
|
2452
|
+
*
|
|
2453
|
+
* @type {string}
|
|
2454
|
+
* @memberof MetaDataPasses
|
|
2455
|
+
*/
|
|
2456
|
+
'invite_house_number': string;
|
|
2457
|
+
/**
|
|
2458
|
+
*
|
|
2459
|
+
* @type {string}
|
|
2460
|
+
* @memberof MetaDataPasses
|
|
2461
|
+
*/
|
|
2462
|
+
'invite_name': string;
|
|
2463
|
+
}
|
|
2298
2464
|
/**
|
|
2299
2465
|
*
|
|
2300
2466
|
* @export
|
|
@@ -2860,10 +3026,10 @@ export interface ParkingReservationDetailResponse {
|
|
|
2860
3026
|
'status': string;
|
|
2861
3027
|
/**
|
|
2862
3028
|
*
|
|
2863
|
-
* @type {
|
|
3029
|
+
* @type {ParkingSpacesData}
|
|
2864
3030
|
* @memberof ParkingReservationDetailResponse
|
|
2865
3031
|
*/
|
|
2866
|
-
'parking_space':
|
|
3032
|
+
'parking_space': ParkingSpacesData;
|
|
2867
3033
|
/**
|
|
2868
3034
|
*
|
|
2869
3035
|
* @type {ParkingLotData}
|
|
@@ -2884,10 +3050,16 @@ export interface ParkingReservationDetailResponse {
|
|
|
2884
3050
|
'reservation_number': string;
|
|
2885
3051
|
/**
|
|
2886
3052
|
*
|
|
2887
|
-
* @type {
|
|
3053
|
+
* @type {BlockerData}
|
|
3054
|
+
* @memberof ParkingReservationDetailResponse
|
|
3055
|
+
*/
|
|
3056
|
+
'blocker': BlockerData;
|
|
3057
|
+
/**
|
|
3058
|
+
*
|
|
3059
|
+
* @type {PaymentResponse}
|
|
2888
3060
|
* @memberof ParkingReservationDetailResponse
|
|
2889
3061
|
*/
|
|
2890
|
-
'
|
|
3062
|
+
'payment': PaymentResponse;
|
|
2891
3063
|
}
|
|
2892
3064
|
/**
|
|
2893
3065
|
*
|
|
@@ -2951,10 +3123,10 @@ export interface ParkingReservationReservedListResponse {
|
|
|
2951
3123
|
'status': string;
|
|
2952
3124
|
/**
|
|
2953
3125
|
*
|
|
2954
|
-
* @type {
|
|
3126
|
+
* @type {ParkingSpacesData}
|
|
2955
3127
|
* @memberof ParkingReservationReservedListResponse
|
|
2956
3128
|
*/
|
|
2957
|
-
'parking_space':
|
|
3129
|
+
'parking_space': ParkingSpacesData;
|
|
2958
3130
|
}
|
|
2959
3131
|
/**
|
|
2960
3132
|
*
|
|
@@ -3012,10 +3184,10 @@ export interface ParkingReservationResponse {
|
|
|
3012
3184
|
'status': string;
|
|
3013
3185
|
/**
|
|
3014
3186
|
*
|
|
3015
|
-
* @type {
|
|
3187
|
+
* @type {ParkingSpacesData}
|
|
3016
3188
|
* @memberof ParkingReservationResponse
|
|
3017
3189
|
*/
|
|
3018
|
-
'parking_space':
|
|
3190
|
+
'parking_space': ParkingSpacesData;
|
|
3019
3191
|
/**
|
|
3020
3192
|
*
|
|
3021
3193
|
* @type {ParkingLotData}
|
|
@@ -3036,11 +3208,38 @@ export interface ParkingReservationResponse {
|
|
|
3036
3208
|
'reservation_number': string;
|
|
3037
3209
|
/**
|
|
3038
3210
|
*
|
|
3039
|
-
* @type {
|
|
3211
|
+
* @type {BlockerData}
|
|
3040
3212
|
* @memberof ParkingReservationResponse
|
|
3041
3213
|
*/
|
|
3042
|
-
'blocker':
|
|
3214
|
+
'blocker': BlockerData;
|
|
3215
|
+
}
|
|
3216
|
+
/**
|
|
3217
|
+
*
|
|
3218
|
+
* @export
|
|
3219
|
+
* @interface ParkingResidentialTicketsIndexQuery
|
|
3220
|
+
*/
|
|
3221
|
+
export interface ParkingResidentialTicketsIndexQuery {
|
|
3222
|
+
/**
|
|
3223
|
+
*
|
|
3224
|
+
* @type {string}
|
|
3225
|
+
* @memberof ParkingResidentialTicketsIndexQuery
|
|
3226
|
+
*/
|
|
3227
|
+
'type': ParkingResidentialTicketsIndexQueryTypeEnum;
|
|
3228
|
+
/**
|
|
3229
|
+
*
|
|
3230
|
+
* @type {string}
|
|
3231
|
+
* @memberof ParkingResidentialTicketsIndexQuery
|
|
3232
|
+
*/
|
|
3233
|
+
'id': string;
|
|
3043
3234
|
}
|
|
3235
|
+
export declare const ParkingResidentialTicketsIndexQueryTypeEnum: {
|
|
3236
|
+
readonly LogId: "log_id";
|
|
3237
|
+
readonly TicketNumber: "ticket_number";
|
|
3238
|
+
readonly PlateNo: "plate_no";
|
|
3239
|
+
readonly InviteId: "invite_id";
|
|
3240
|
+
readonly MemberId: "member_id";
|
|
3241
|
+
};
|
|
3242
|
+
export type ParkingResidentialTicketsIndexQueryTypeEnum = typeof ParkingResidentialTicketsIndexQueryTypeEnum[keyof typeof ParkingResidentialTicketsIndexQueryTypeEnum];
|
|
3044
3243
|
/**
|
|
3045
3244
|
*
|
|
3046
3245
|
* @export
|
|
@@ -3252,6 +3451,49 @@ export interface ParkingSpaceDetailAndSpaceDetailData {
|
|
|
3252
3451
|
*/
|
|
3253
3452
|
'ibeacon_ipc_minor'?: string;
|
|
3254
3453
|
}
|
|
3454
|
+
/**
|
|
3455
|
+
*
|
|
3456
|
+
* @export
|
|
3457
|
+
* @interface ParkingSpacesData
|
|
3458
|
+
*/
|
|
3459
|
+
export interface ParkingSpacesData {
|
|
3460
|
+
/**
|
|
3461
|
+
*
|
|
3462
|
+
* @type {string}
|
|
3463
|
+
* @memberof ParkingSpacesData
|
|
3464
|
+
*/
|
|
3465
|
+
'id'?: string;
|
|
3466
|
+
/**
|
|
3467
|
+
*
|
|
3468
|
+
* @type {string}
|
|
3469
|
+
* @memberof ParkingSpacesData
|
|
3470
|
+
*/
|
|
3471
|
+
'name'?: string;
|
|
3472
|
+
/**
|
|
3473
|
+
*
|
|
3474
|
+
* @type {string}
|
|
3475
|
+
* @memberof ParkingSpacesData
|
|
3476
|
+
*/
|
|
3477
|
+
'parking_lot_id'?: string;
|
|
3478
|
+
/**
|
|
3479
|
+
*
|
|
3480
|
+
* @type {boolean}
|
|
3481
|
+
* @memberof ParkingSpacesData
|
|
3482
|
+
*/
|
|
3483
|
+
'available'?: boolean;
|
|
3484
|
+
/**
|
|
3485
|
+
*
|
|
3486
|
+
* @type {string}
|
|
3487
|
+
* @memberof ParkingSpacesData
|
|
3488
|
+
*/
|
|
3489
|
+
'created_at'?: string;
|
|
3490
|
+
/**
|
|
3491
|
+
*
|
|
3492
|
+
* @type {string}
|
|
3493
|
+
* @memberof ParkingSpacesData
|
|
3494
|
+
*/
|
|
3495
|
+
'updated_at'?: string;
|
|
3496
|
+
}
|
|
3255
3497
|
/**
|
|
3256
3498
|
*
|
|
3257
3499
|
* @export
|
|
@@ -3363,6 +3605,25 @@ export interface ParkingTicketsRedeemBody {
|
|
|
3363
3605
|
*/
|
|
3364
3606
|
'redeemer_id': string;
|
|
3365
3607
|
}
|
|
3608
|
+
/**
|
|
3609
|
+
*
|
|
3610
|
+
* @export
|
|
3611
|
+
* @interface ParkingTicketsRedeemBodyResident
|
|
3612
|
+
*/
|
|
3613
|
+
export interface ParkingTicketsRedeemBodyResident {
|
|
3614
|
+
/**
|
|
3615
|
+
*
|
|
3616
|
+
* @type {string}
|
|
3617
|
+
* @memberof ParkingTicketsRedeemBodyResident
|
|
3618
|
+
*/
|
|
3619
|
+
'remark': string;
|
|
3620
|
+
/**
|
|
3621
|
+
*
|
|
3622
|
+
* @type {string}
|
|
3623
|
+
* @memberof ParkingTicketsRedeemBodyResident
|
|
3624
|
+
*/
|
|
3625
|
+
'rate_code': string;
|
|
3626
|
+
}
|
|
3366
3627
|
/**
|
|
3367
3628
|
*
|
|
3368
3629
|
* @export
|
|
@@ -3418,6 +3679,12 @@ export interface PassConsentResponse {
|
|
|
3418
3679
|
* @memberof PassConsentResponse
|
|
3419
3680
|
*/
|
|
3420
3681
|
'uid': string | null;
|
|
3682
|
+
/**
|
|
3683
|
+
*
|
|
3684
|
+
* @type {MetaDataPasses}
|
|
3685
|
+
* @memberof PassConsentResponse
|
|
3686
|
+
*/
|
|
3687
|
+
'metadata_resident'?: MetaDataPasses;
|
|
3421
3688
|
/**
|
|
3422
3689
|
*
|
|
3423
3690
|
* @type {string}
|
|
@@ -3598,6 +3865,12 @@ export interface PaymentData {
|
|
|
3598
3865
|
* @memberof PaymentData
|
|
3599
3866
|
*/
|
|
3600
3867
|
'parking_reservation': ParkingReservationData;
|
|
3868
|
+
/**
|
|
3869
|
+
*
|
|
3870
|
+
* @type {string}
|
|
3871
|
+
* @memberof PaymentData
|
|
3872
|
+
*/
|
|
3873
|
+
'user_id': string;
|
|
3601
3874
|
/**
|
|
3602
3875
|
*
|
|
3603
3876
|
* @type {JsonValue}
|
|
@@ -3674,75 +3947,221 @@ export interface PaymentData {
|
|
|
3674
3947
|
/**
|
|
3675
3948
|
*
|
|
3676
3949
|
* @export
|
|
3677
|
-
* @
|
|
3678
|
-
*/
|
|
3679
|
-
export declare const PaymentStatus: {
|
|
3680
|
-
readonly Pending: "pending";
|
|
3681
|
-
readonly Confirmed: "confirmed";
|
|
3682
|
-
readonly Cancelled: "cancelled";
|
|
3683
|
-
};
|
|
3684
|
-
export type PaymentStatus = typeof PaymentStatus[keyof typeof PaymentStatus];
|
|
3685
|
-
/**
|
|
3686
|
-
*
|
|
3687
|
-
* @export
|
|
3688
|
-
* @interface PersonData
|
|
3950
|
+
* @interface PaymentResponse
|
|
3689
3951
|
*/
|
|
3690
|
-
export interface
|
|
3952
|
+
export interface PaymentResponse {
|
|
3691
3953
|
/**
|
|
3692
3954
|
*
|
|
3693
3955
|
* @type {string}
|
|
3694
|
-
* @memberof
|
|
3956
|
+
* @memberof PaymentResponse
|
|
3695
3957
|
*/
|
|
3696
|
-
'
|
|
3958
|
+
'updated_at'?: string;
|
|
3697
3959
|
/**
|
|
3698
3960
|
*
|
|
3699
|
-
* @type {
|
|
3700
|
-
* @memberof
|
|
3961
|
+
* @type {string}
|
|
3962
|
+
* @memberof PaymentResponse
|
|
3701
3963
|
*/
|
|
3702
|
-
'
|
|
3964
|
+
'created_at'?: string;
|
|
3703
3965
|
/**
|
|
3704
3966
|
*
|
|
3705
|
-
* @type {
|
|
3706
|
-
* @memberof
|
|
3967
|
+
* @type {string}
|
|
3968
|
+
* @memberof PaymentResponse
|
|
3707
3969
|
*/
|
|
3708
|
-
'
|
|
3970
|
+
'parking_reservation_id'?: string;
|
|
3709
3971
|
/**
|
|
3710
3972
|
*
|
|
3711
|
-
* @type {
|
|
3712
|
-
* @memberof
|
|
3973
|
+
* @type {JsonValue}
|
|
3974
|
+
* @memberof PaymentResponse
|
|
3713
3975
|
*/
|
|
3714
|
-
'
|
|
3976
|
+
'meta'?: JsonValue | null;
|
|
3715
3977
|
/**
|
|
3716
3978
|
*
|
|
3717
|
-
* @type {
|
|
3718
|
-
* @memberof
|
|
3979
|
+
* @type {string}
|
|
3980
|
+
* @memberof PaymentResponse
|
|
3719
3981
|
*/
|
|
3720
|
-
'
|
|
3982
|
+
'expired_at'?: string;
|
|
3721
3983
|
/**
|
|
3722
3984
|
*
|
|
3723
3985
|
* @type {string}
|
|
3724
|
-
* @memberof
|
|
3986
|
+
* @memberof PaymentResponse
|
|
3725
3987
|
*/
|
|
3726
|
-
'
|
|
3988
|
+
'paid_at'?: string | null;
|
|
3727
3989
|
/**
|
|
3728
3990
|
*
|
|
3729
|
-
* @type {
|
|
3730
|
-
* @memberof
|
|
3991
|
+
* @type {PaymentStatus}
|
|
3992
|
+
* @memberof PaymentResponse
|
|
3731
3993
|
*/
|
|
3732
|
-
'
|
|
3994
|
+
'status'?: PaymentStatus;
|
|
3733
3995
|
/**
|
|
3734
3996
|
*
|
|
3735
|
-
* @type {
|
|
3736
|
-
* @memberof
|
|
3997
|
+
* @type {number}
|
|
3998
|
+
* @memberof PaymentResponse
|
|
3737
3999
|
*/
|
|
3738
|
-
'
|
|
4000
|
+
'total_amount'?: number;
|
|
3739
4001
|
/**
|
|
3740
4002
|
*
|
|
3741
|
-
* @type {
|
|
3742
|
-
* @memberof
|
|
4003
|
+
* @type {number}
|
|
4004
|
+
* @memberof PaymentResponse
|
|
4005
|
+
*/
|
|
4006
|
+
'vat_amount'?: number;
|
|
4007
|
+
/**
|
|
4008
|
+
*
|
|
4009
|
+
* @type {number}
|
|
4010
|
+
* @memberof PaymentResponse
|
|
4011
|
+
*/
|
|
4012
|
+
'amount'?: number;
|
|
4013
|
+
/**
|
|
4014
|
+
*
|
|
4015
|
+
* @type {string}
|
|
4016
|
+
* @memberof PaymentResponse
|
|
4017
|
+
*/
|
|
4018
|
+
'invoice_number'?: string | null;
|
|
4019
|
+
/**
|
|
4020
|
+
*
|
|
4021
|
+
* @type {string}
|
|
4022
|
+
* @memberof PaymentResponse
|
|
4023
|
+
*/
|
|
4024
|
+
'reference_number'?: string;
|
|
4025
|
+
/**
|
|
4026
|
+
*
|
|
4027
|
+
* @type {string}
|
|
4028
|
+
* @memberof PaymentResponse
|
|
4029
|
+
*/
|
|
4030
|
+
'description'?: string;
|
|
4031
|
+
/**
|
|
4032
|
+
*
|
|
4033
|
+
* @type {string}
|
|
4034
|
+
* @memberof PaymentResponse
|
|
4035
|
+
*/
|
|
4036
|
+
'payment_url'?: string | null;
|
|
4037
|
+
/**
|
|
4038
|
+
*
|
|
4039
|
+
* @type {string}
|
|
4040
|
+
* @memberof PaymentResponse
|
|
4041
|
+
*/
|
|
4042
|
+
'id'?: string;
|
|
4043
|
+
}
|
|
4044
|
+
/**
|
|
4045
|
+
*
|
|
4046
|
+
* @export
|
|
4047
|
+
* @enum {string}
|
|
4048
|
+
*/
|
|
4049
|
+
export declare const PaymentStatus: {
|
|
4050
|
+
readonly Pending: "pending";
|
|
4051
|
+
readonly Confirmed: "confirmed";
|
|
4052
|
+
readonly Cancelled: "cancelled";
|
|
4053
|
+
};
|
|
4054
|
+
export type PaymentStatus = typeof PaymentStatus[keyof typeof PaymentStatus];
|
|
4055
|
+
/**
|
|
4056
|
+
*
|
|
4057
|
+
* @export
|
|
4058
|
+
* @interface PersonData
|
|
4059
|
+
*/
|
|
4060
|
+
export interface PersonData {
|
|
4061
|
+
/**
|
|
4062
|
+
*
|
|
4063
|
+
* @type {string}
|
|
4064
|
+
* @memberof PersonData
|
|
4065
|
+
*/
|
|
4066
|
+
'personID': string;
|
|
4067
|
+
/**
|
|
4068
|
+
*
|
|
4069
|
+
* @type {Array<number>}
|
|
4070
|
+
* @memberof PersonData
|
|
4071
|
+
*/
|
|
4072
|
+
'tenantIDs': Array<number>;
|
|
4073
|
+
/**
|
|
4074
|
+
*
|
|
4075
|
+
* @type {Array<string>}
|
|
4076
|
+
* @memberof PersonData
|
|
4077
|
+
*/
|
|
4078
|
+
'phones': Array<string>;
|
|
4079
|
+
/**
|
|
4080
|
+
*
|
|
4081
|
+
* @type {Array<string>}
|
|
4082
|
+
* @memberof PersonData
|
|
4083
|
+
*/
|
|
4084
|
+
'emails': Array<string>;
|
|
4085
|
+
/**
|
|
4086
|
+
*
|
|
4087
|
+
* @type {Array<LocationData>}
|
|
4088
|
+
* @memberof PersonData
|
|
4089
|
+
*/
|
|
4090
|
+
'locations': Array<LocationData>;
|
|
4091
|
+
/**
|
|
4092
|
+
*
|
|
4093
|
+
* @type {string}
|
|
4094
|
+
* @memberof PersonData
|
|
4095
|
+
*/
|
|
4096
|
+
'updateTime': string;
|
|
4097
|
+
/**
|
|
4098
|
+
*
|
|
4099
|
+
* @type {boolean}
|
|
4100
|
+
* @memberof PersonData
|
|
4101
|
+
*/
|
|
4102
|
+
'active': boolean;
|
|
4103
|
+
/**
|
|
4104
|
+
*
|
|
4105
|
+
* @type {string}
|
|
4106
|
+
* @memberof PersonData
|
|
4107
|
+
*/
|
|
4108
|
+
'status': string;
|
|
4109
|
+
/**
|
|
4110
|
+
*
|
|
4111
|
+
* @type {boolean}
|
|
4112
|
+
* @memberof PersonData
|
|
3743
4113
|
*/
|
|
3744
4114
|
'canPreRegister': boolean;
|
|
3745
4115
|
}
|
|
4116
|
+
/**
|
|
4117
|
+
*
|
|
4118
|
+
* @export
|
|
4119
|
+
* @interface PersonDataResident
|
|
4120
|
+
*/
|
|
4121
|
+
export interface PersonDataResident {
|
|
4122
|
+
/**
|
|
4123
|
+
*
|
|
4124
|
+
* @type {string}
|
|
4125
|
+
* @memberof PersonDataResident
|
|
4126
|
+
*/
|
|
4127
|
+
'personID': string;
|
|
4128
|
+
/**
|
|
4129
|
+
*
|
|
4130
|
+
* @type {Array<number>}
|
|
4131
|
+
* @memberof PersonDataResident
|
|
4132
|
+
*/
|
|
4133
|
+
'residenceIDs': Array<number>;
|
|
4134
|
+
/**
|
|
4135
|
+
*
|
|
4136
|
+
* @type {Array<string>}
|
|
4137
|
+
* @memberof PersonDataResident
|
|
4138
|
+
*/
|
|
4139
|
+
'phones': Array<string>;
|
|
4140
|
+
/**
|
|
4141
|
+
*
|
|
4142
|
+
* @type {Array<string>}
|
|
4143
|
+
* @memberof PersonDataResident
|
|
4144
|
+
*/
|
|
4145
|
+
'emails': Array<string>;
|
|
4146
|
+
/**
|
|
4147
|
+
*
|
|
4148
|
+
* @type {string}
|
|
4149
|
+
* @memberof PersonDataResident
|
|
4150
|
+
*/
|
|
4151
|
+
'updateTime': string;
|
|
4152
|
+
/**
|
|
4153
|
+
*
|
|
4154
|
+
* @type {boolean}
|
|
4155
|
+
* @memberof PersonDataResident
|
|
4156
|
+
*/
|
|
4157
|
+
'active': boolean;
|
|
4158
|
+
/**
|
|
4159
|
+
*
|
|
4160
|
+
* @type {string}
|
|
4161
|
+
* @memberof PersonDataResident
|
|
4162
|
+
*/
|
|
4163
|
+
'status': string;
|
|
4164
|
+
}
|
|
3746
4165
|
/**
|
|
3747
4166
|
*
|
|
3748
4167
|
* @export
|
|
@@ -4248,6 +4667,12 @@ export interface ServiceRequestsUpdateRequestBodyStatus {
|
|
|
4248
4667
|
* @interface ShowPassResponse
|
|
4249
4668
|
*/
|
|
4250
4669
|
export interface ShowPassResponse {
|
|
4670
|
+
/**
|
|
4671
|
+
*
|
|
4672
|
+
* @type {MetaDataPasses}
|
|
4673
|
+
* @memberof ShowPassResponse
|
|
4674
|
+
*/
|
|
4675
|
+
'metadata_resident'?: MetaDataPasses;
|
|
4251
4676
|
/**
|
|
4252
4677
|
*
|
|
4253
4678
|
* @type {LocationPasses}
|
|
@@ -4404,6 +4829,12 @@ export interface ShowVisitorResponse {
|
|
|
4404
4829
|
* @memberof ShowVisitorResponse
|
|
4405
4830
|
*/
|
|
4406
4831
|
'updated_at': string;
|
|
4832
|
+
/**
|
|
4833
|
+
*
|
|
4834
|
+
* @type {string}
|
|
4835
|
+
* @memberof ShowVisitorResponse
|
|
4836
|
+
*/
|
|
4837
|
+
'invite_id'?: string | null;
|
|
4407
4838
|
}
|
|
4408
4839
|
/**
|
|
4409
4840
|
*
|
|
@@ -5284,88 +5715,495 @@ export interface ValetParkingDetail {
|
|
|
5284
5715
|
/**
|
|
5285
5716
|
*
|
|
5286
5717
|
* @type {string}
|
|
5287
|
-
* @memberof ValetParkingDetail
|
|
5718
|
+
* @memberof ValetParkingDetail
|
|
5719
|
+
*/
|
|
5720
|
+
'staffVerify': string;
|
|
5721
|
+
/**
|
|
5722
|
+
*
|
|
5723
|
+
* @type {string}
|
|
5724
|
+
* @memberof ValetParkingDetail
|
|
5725
|
+
*/
|
|
5726
|
+
'pickUpStation': string;
|
|
5727
|
+
/**
|
|
5728
|
+
*
|
|
5729
|
+
* @type {DropOffStation}
|
|
5730
|
+
* @memberof ValetParkingDetail
|
|
5731
|
+
*/
|
|
5732
|
+
'dropOffStation': DropOffStation;
|
|
5733
|
+
/**
|
|
5734
|
+
*
|
|
5735
|
+
* @type {Array<Image>}
|
|
5736
|
+
* @memberof ValetParkingDetail
|
|
5737
|
+
*/
|
|
5738
|
+
'images': Array<Image>;
|
|
5739
|
+
/**
|
|
5740
|
+
*
|
|
5741
|
+
* @type {string}
|
|
5742
|
+
* @memberof ValetParkingDetail
|
|
5743
|
+
*/
|
|
5744
|
+
'keyCabinet': string;
|
|
5745
|
+
}
|
|
5746
|
+
/**
|
|
5747
|
+
*
|
|
5748
|
+
* @export
|
|
5749
|
+
* @interface ValetStation
|
|
5750
|
+
*/
|
|
5751
|
+
export interface ValetStation {
|
|
5752
|
+
/**
|
|
5753
|
+
*
|
|
5754
|
+
* @type {number}
|
|
5755
|
+
* @memberof ValetStation
|
|
5756
|
+
*/
|
|
5757
|
+
'id': number;
|
|
5758
|
+
/**
|
|
5759
|
+
*
|
|
5760
|
+
* @type {string}
|
|
5761
|
+
* @memberof ValetStation
|
|
5762
|
+
*/
|
|
5763
|
+
'createdAt': string;
|
|
5764
|
+
/**
|
|
5765
|
+
*
|
|
5766
|
+
* @type {string}
|
|
5767
|
+
* @memberof ValetStation
|
|
5768
|
+
*/
|
|
5769
|
+
'updatedAt': string;
|
|
5770
|
+
/**
|
|
5771
|
+
*
|
|
5772
|
+
* @type {string}
|
|
5773
|
+
* @memberof ValetStation
|
|
5774
|
+
*/
|
|
5775
|
+
'deletedAt': string | null;
|
|
5776
|
+
/**
|
|
5777
|
+
*
|
|
5778
|
+
* @type {string}
|
|
5779
|
+
* @memberof ValetStation
|
|
5780
|
+
*/
|
|
5781
|
+
'name': string;
|
|
5782
|
+
/**
|
|
5783
|
+
*
|
|
5784
|
+
* @type {string}
|
|
5785
|
+
* @memberof ValetStation
|
|
5786
|
+
*/
|
|
5787
|
+
'description': string;
|
|
5788
|
+
/**
|
|
5789
|
+
*
|
|
5790
|
+
* @type {string}
|
|
5791
|
+
* @memberof ValetStation
|
|
5792
|
+
*/
|
|
5793
|
+
'location': string;
|
|
5794
|
+
/**
|
|
5795
|
+
*
|
|
5796
|
+
* @type {boolean}
|
|
5797
|
+
* @memberof ValetStation
|
|
5798
|
+
*/
|
|
5799
|
+
'active': boolean;
|
|
5800
|
+
}
|
|
5801
|
+
/**
|
|
5802
|
+
*
|
|
5803
|
+
* @export
|
|
5804
|
+
* @interface ValetStatusPayload
|
|
5805
|
+
*/
|
|
5806
|
+
export interface ValetStatusPayload {
|
|
5807
|
+
/**
|
|
5808
|
+
*
|
|
5809
|
+
* @type {string}
|
|
5810
|
+
* @memberof ValetStatusPayload
|
|
5811
|
+
*/
|
|
5812
|
+
'uid': string;
|
|
5813
|
+
/**
|
|
5814
|
+
*
|
|
5815
|
+
* @type {ValetStatusPayloadDetail}
|
|
5816
|
+
* @memberof ValetStatusPayload
|
|
5817
|
+
*/
|
|
5818
|
+
'detail': ValetStatusPayloadDetail;
|
|
5819
|
+
}
|
|
5820
|
+
/**
|
|
5821
|
+
*
|
|
5822
|
+
* @export
|
|
5823
|
+
* @interface ValetStatusPayloadDetail
|
|
5824
|
+
*/
|
|
5825
|
+
export interface ValetStatusPayloadDetail {
|
|
5826
|
+
/**
|
|
5827
|
+
*
|
|
5828
|
+
* @type {string}
|
|
5829
|
+
* @memberof ValetStatusPayloadDetail
|
|
5830
|
+
*/
|
|
5831
|
+
'keyCabinet': string;
|
|
5832
|
+
/**
|
|
5833
|
+
*
|
|
5834
|
+
* @type {Array<ValetStatusPayloadDetailImagesInner>}
|
|
5835
|
+
* @memberof ValetStatusPayloadDetail
|
|
5836
|
+
*/
|
|
5837
|
+
'images': Array<ValetStatusPayloadDetailImagesInner>;
|
|
5838
|
+
/**
|
|
5839
|
+
*
|
|
5840
|
+
* @type {ValetStatusPayloadDetailDropOffStation}
|
|
5841
|
+
* @memberof ValetStatusPayloadDetail
|
|
5842
|
+
*/
|
|
5843
|
+
'dropOffStation': ValetStatusPayloadDetailDropOffStation;
|
|
5844
|
+
/**
|
|
5845
|
+
*
|
|
5846
|
+
* @type {string}
|
|
5847
|
+
* @memberof ValetStatusPayloadDetail
|
|
5848
|
+
*/
|
|
5849
|
+
'pickUpStation': string;
|
|
5850
|
+
/**
|
|
5851
|
+
*
|
|
5852
|
+
* @type {string}
|
|
5853
|
+
* @memberof ValetStatusPayloadDetail
|
|
5854
|
+
*/
|
|
5855
|
+
'staffVerify': string;
|
|
5856
|
+
/**
|
|
5857
|
+
*
|
|
5858
|
+
* @type {ValetStatusPayloadDetailStaffConfirmParked}
|
|
5859
|
+
* @memberof ValetStatusPayloadDetail
|
|
5860
|
+
*/
|
|
5861
|
+
'staffConfirmParked': ValetStatusPayloadDetailStaffConfirmParked;
|
|
5862
|
+
/**
|
|
5863
|
+
*
|
|
5864
|
+
* @type {string}
|
|
5865
|
+
* @memberof ValetStatusPayloadDetail
|
|
5866
|
+
*/
|
|
5867
|
+
'staffConfirmDeliver': string;
|
|
5868
|
+
/**
|
|
5869
|
+
*
|
|
5870
|
+
* @type {string}
|
|
5871
|
+
* @memberof ValetStatusPayloadDetail
|
|
5872
|
+
*/
|
|
5873
|
+
'staffParked': string;
|
|
5874
|
+
/**
|
|
5875
|
+
*
|
|
5876
|
+
* @type {string}
|
|
5877
|
+
* @memberof ValetStatusPayloadDetail
|
|
5878
|
+
*/
|
|
5879
|
+
'staffDeliver': string;
|
|
5880
|
+
/**
|
|
5881
|
+
*
|
|
5882
|
+
* @type {string}
|
|
5883
|
+
* @memberof ValetStatusPayloadDetail
|
|
5884
|
+
*/
|
|
5885
|
+
'spot': string;
|
|
5886
|
+
/**
|
|
5887
|
+
*
|
|
5888
|
+
* @type {boolean}
|
|
5889
|
+
* @memberof ValetStatusPayloadDetail
|
|
5890
|
+
*/
|
|
5891
|
+
'isMyQr': boolean;
|
|
5892
|
+
/**
|
|
5893
|
+
*
|
|
5894
|
+
* @type {string}
|
|
5895
|
+
* @memberof ValetStatusPayloadDetail
|
|
5896
|
+
*/
|
|
5897
|
+
'referenceCode': string;
|
|
5898
|
+
/**
|
|
5899
|
+
*
|
|
5900
|
+
* @type {string}
|
|
5901
|
+
* @memberof ValetStatusPayloadDetail
|
|
5902
|
+
*/
|
|
5903
|
+
'signatureURL': string;
|
|
5904
|
+
/**
|
|
5905
|
+
*
|
|
5906
|
+
* @type {string}
|
|
5907
|
+
* @memberof ValetStatusPayloadDetail
|
|
5908
|
+
*/
|
|
5909
|
+
'staffConfirmDeliverId': string;
|
|
5910
|
+
/**
|
|
5911
|
+
*
|
|
5912
|
+
* @type {string}
|
|
5913
|
+
* @memberof ValetStatusPayloadDetail
|
|
5914
|
+
*/
|
|
5915
|
+
'confirmDeliverAt': string;
|
|
5916
|
+
/**
|
|
5917
|
+
*
|
|
5918
|
+
* @type {number}
|
|
5919
|
+
* @memberof ValetStatusPayloadDetail
|
|
5920
|
+
*/
|
|
5921
|
+
'staffConfirmParkedId': number;
|
|
5922
|
+
/**
|
|
5923
|
+
*
|
|
5924
|
+
* @type {string}
|
|
5925
|
+
* @memberof ValetStatusPayloadDetail
|
|
5926
|
+
*/
|
|
5927
|
+
'confirmParkedAt': string;
|
|
5928
|
+
/**
|
|
5929
|
+
*
|
|
5930
|
+
* @type {string}
|
|
5931
|
+
* @memberof ValetStatusPayloadDetail
|
|
5932
|
+
*/
|
|
5933
|
+
'staffVerifyId': string;
|
|
5934
|
+
/**
|
|
5935
|
+
*
|
|
5936
|
+
* @type {string}
|
|
5937
|
+
* @memberof ValetStatusPayloadDetail
|
|
5938
|
+
*/
|
|
5939
|
+
'verifiedAt': string;
|
|
5940
|
+
/**
|
|
5941
|
+
*
|
|
5942
|
+
* @type {number}
|
|
5943
|
+
* @memberof ValetStatusPayloadDetail
|
|
5944
|
+
*/
|
|
5945
|
+
'dropOffStationId': number;
|
|
5946
|
+
/**
|
|
5947
|
+
*
|
|
5948
|
+
* @type {string}
|
|
5949
|
+
* @memberof ValetStatusPayloadDetail
|
|
5950
|
+
*/
|
|
5951
|
+
'pickUpStationId': string;
|
|
5952
|
+
/**
|
|
5953
|
+
*
|
|
5954
|
+
* @type {string}
|
|
5955
|
+
* @memberof ValetStatusPayloadDetail
|
|
5956
|
+
*/
|
|
5957
|
+
'parkingSpotId': string;
|
|
5958
|
+
/**
|
|
5959
|
+
*
|
|
5960
|
+
* @type {string}
|
|
5961
|
+
* @memberof ValetStatusPayloadDetail
|
|
5962
|
+
*/
|
|
5963
|
+
'userId': string;
|
|
5964
|
+
/**
|
|
5965
|
+
*
|
|
5966
|
+
* @type {string}
|
|
5967
|
+
* @memberof ValetStatusPayloadDetail
|
|
5968
|
+
*/
|
|
5969
|
+
'staffDeliverId': string;
|
|
5970
|
+
/**
|
|
5971
|
+
*
|
|
5972
|
+
* @type {string}
|
|
5973
|
+
* @memberof ValetStatusPayloadDetail
|
|
5974
|
+
*/
|
|
5975
|
+
'staffParkedId': string;
|
|
5976
|
+
/**
|
|
5977
|
+
*
|
|
5978
|
+
* @type {string}
|
|
5979
|
+
* @memberof ValetStatusPayloadDetail
|
|
5980
|
+
*/
|
|
5981
|
+
'keyCabinetId': string;
|
|
5982
|
+
/**
|
|
5983
|
+
*
|
|
5984
|
+
* @type {string}
|
|
5985
|
+
* @memberof ValetStatusPayloadDetail
|
|
5986
|
+
*/
|
|
5987
|
+
'licensePlateProvince': string;
|
|
5988
|
+
/**
|
|
5989
|
+
*
|
|
5990
|
+
* @type {string}
|
|
5991
|
+
* @memberof ValetStatusPayloadDetail
|
|
5992
|
+
*/
|
|
5993
|
+
'licensePlate': string;
|
|
5994
|
+
/**
|
|
5995
|
+
*
|
|
5996
|
+
* @type {string}
|
|
5997
|
+
* @memberof ValetStatusPayloadDetail
|
|
5998
|
+
*/
|
|
5999
|
+
'outgoingTime': string;
|
|
6000
|
+
/**
|
|
6001
|
+
*
|
|
6002
|
+
* @type {string}
|
|
6003
|
+
* @memberof ValetStatusPayloadDetail
|
|
6004
|
+
*/
|
|
6005
|
+
'incomingTime': string;
|
|
6006
|
+
/**
|
|
6007
|
+
*
|
|
6008
|
+
* @type {string}
|
|
6009
|
+
* @memberof ValetStatusPayloadDetail
|
|
6010
|
+
*/
|
|
6011
|
+
'phoneNumber': string;
|
|
6012
|
+
/**
|
|
6013
|
+
*
|
|
6014
|
+
* @type {string}
|
|
6015
|
+
* @memberof ValetStatusPayloadDetail
|
|
6016
|
+
*/
|
|
6017
|
+
'name': string;
|
|
6018
|
+
/**
|
|
6019
|
+
*
|
|
6020
|
+
* @type {string}
|
|
6021
|
+
* @memberof ValetStatusPayloadDetail
|
|
6022
|
+
*/
|
|
6023
|
+
'status': string;
|
|
6024
|
+
/**
|
|
6025
|
+
*
|
|
6026
|
+
* @type {string}
|
|
6027
|
+
* @memberof ValetStatusPayloadDetail
|
|
6028
|
+
*/
|
|
6029
|
+
'code': string;
|
|
6030
|
+
/**
|
|
6031
|
+
*
|
|
6032
|
+
* @type {string}
|
|
6033
|
+
* @memberof ValetStatusPayloadDetail
|
|
6034
|
+
*/
|
|
6035
|
+
'deletedAt': string;
|
|
6036
|
+
/**
|
|
6037
|
+
*
|
|
6038
|
+
* @type {string}
|
|
6039
|
+
* @memberof ValetStatusPayloadDetail
|
|
6040
|
+
*/
|
|
6041
|
+
'updatedAt': string;
|
|
6042
|
+
/**
|
|
6043
|
+
*
|
|
6044
|
+
* @type {string}
|
|
6045
|
+
* @memberof ValetStatusPayloadDetail
|
|
6046
|
+
*/
|
|
6047
|
+
'createdAt': string;
|
|
6048
|
+
/**
|
|
6049
|
+
*
|
|
6050
|
+
* @type {number}
|
|
6051
|
+
* @memberof ValetStatusPayloadDetail
|
|
6052
|
+
*/
|
|
6053
|
+
'id': number;
|
|
6054
|
+
}
|
|
6055
|
+
/**
|
|
6056
|
+
*
|
|
6057
|
+
* @export
|
|
6058
|
+
* @interface ValetStatusPayloadDetailDropOffStation
|
|
6059
|
+
*/
|
|
6060
|
+
export interface ValetStatusPayloadDetailDropOffStation {
|
|
6061
|
+
/**
|
|
6062
|
+
*
|
|
6063
|
+
* @type {boolean}
|
|
6064
|
+
* @memberof ValetStatusPayloadDetailDropOffStation
|
|
6065
|
+
*/
|
|
6066
|
+
'isUsed': boolean;
|
|
6067
|
+
/**
|
|
6068
|
+
*
|
|
6069
|
+
* @type {boolean}
|
|
6070
|
+
* @memberof ValetStatusPayloadDetailDropOffStation
|
|
6071
|
+
*/
|
|
6072
|
+
'active': boolean;
|
|
6073
|
+
/**
|
|
6074
|
+
*
|
|
6075
|
+
* @type {string}
|
|
6076
|
+
* @memberof ValetStatusPayloadDetailDropOffStation
|
|
6077
|
+
*/
|
|
6078
|
+
'location': string;
|
|
6079
|
+
/**
|
|
6080
|
+
*
|
|
6081
|
+
* @type {string}
|
|
6082
|
+
* @memberof ValetStatusPayloadDetailDropOffStation
|
|
6083
|
+
*/
|
|
6084
|
+
'description': string;
|
|
6085
|
+
/**
|
|
6086
|
+
*
|
|
6087
|
+
* @type {string}
|
|
6088
|
+
* @memberof ValetStatusPayloadDetailDropOffStation
|
|
6089
|
+
*/
|
|
6090
|
+
'name': string;
|
|
6091
|
+
/**
|
|
6092
|
+
*
|
|
6093
|
+
* @type {string}
|
|
6094
|
+
* @memberof ValetStatusPayloadDetailDropOffStation
|
|
6095
|
+
*/
|
|
6096
|
+
'deletedAt': string;
|
|
6097
|
+
/**
|
|
6098
|
+
*
|
|
6099
|
+
* @type {string}
|
|
6100
|
+
* @memberof ValetStatusPayloadDetailDropOffStation
|
|
6101
|
+
*/
|
|
6102
|
+
'updatedAt': string;
|
|
6103
|
+
/**
|
|
6104
|
+
*
|
|
6105
|
+
* @type {string}
|
|
6106
|
+
* @memberof ValetStatusPayloadDetailDropOffStation
|
|
5288
6107
|
*/
|
|
5289
|
-
'
|
|
6108
|
+
'createdAt': string;
|
|
5290
6109
|
/**
|
|
5291
6110
|
*
|
|
5292
|
-
* @type {
|
|
5293
|
-
* @memberof
|
|
6111
|
+
* @type {number}
|
|
6112
|
+
* @memberof ValetStatusPayloadDetailDropOffStation
|
|
5294
6113
|
*/
|
|
5295
|
-
'
|
|
6114
|
+
'id': number;
|
|
6115
|
+
}
|
|
6116
|
+
/**
|
|
6117
|
+
*
|
|
6118
|
+
* @export
|
|
6119
|
+
* @interface ValetStatusPayloadDetailImagesInner
|
|
6120
|
+
*/
|
|
6121
|
+
export interface ValetStatusPayloadDetailImagesInner {
|
|
5296
6122
|
/**
|
|
5297
6123
|
*
|
|
5298
|
-
* @type {
|
|
5299
|
-
* @memberof
|
|
6124
|
+
* @type {number}
|
|
6125
|
+
* @memberof ValetStatusPayloadDetailImagesInner
|
|
5300
6126
|
*/
|
|
5301
|
-
'
|
|
6127
|
+
'valetParkingId': number;
|
|
5302
6128
|
/**
|
|
5303
6129
|
*
|
|
5304
|
-
* @type {
|
|
5305
|
-
* @memberof
|
|
6130
|
+
* @type {string}
|
|
6131
|
+
* @memberof ValetStatusPayloadDetailImagesInner
|
|
5306
6132
|
*/
|
|
5307
|
-
'
|
|
6133
|
+
'url': string;
|
|
5308
6134
|
/**
|
|
5309
6135
|
*
|
|
5310
6136
|
* @type {string}
|
|
5311
|
-
* @memberof
|
|
6137
|
+
* @memberof ValetStatusPayloadDetailImagesInner
|
|
5312
6138
|
*/
|
|
5313
|
-
'
|
|
6139
|
+
'createdAt': string;
|
|
5314
6140
|
}
|
|
5315
6141
|
/**
|
|
5316
6142
|
*
|
|
5317
6143
|
* @export
|
|
5318
|
-
* @interface
|
|
6144
|
+
* @interface ValetStatusPayloadDetailStaffConfirmParked
|
|
5319
6145
|
*/
|
|
5320
|
-
export interface
|
|
6146
|
+
export interface ValetStatusPayloadDetailStaffConfirmParked {
|
|
5321
6147
|
/**
|
|
5322
6148
|
*
|
|
5323
|
-
* @type {
|
|
5324
|
-
* @memberof
|
|
6149
|
+
* @type {string}
|
|
6150
|
+
* @memberof ValetStatusPayloadDetailStaffConfirmParked
|
|
5325
6151
|
*/
|
|
5326
|
-
'
|
|
6152
|
+
'role': string;
|
|
5327
6153
|
/**
|
|
5328
6154
|
*
|
|
5329
6155
|
* @type {string}
|
|
5330
|
-
* @memberof
|
|
6156
|
+
* @memberof ValetStatusPayloadDetailStaffConfirmParked
|
|
5331
6157
|
*/
|
|
5332
|
-
'
|
|
6158
|
+
'displayName': string;
|
|
5333
6159
|
/**
|
|
5334
6160
|
*
|
|
5335
6161
|
* @type {string}
|
|
5336
|
-
* @memberof
|
|
6162
|
+
* @memberof ValetStatusPayloadDetailStaffConfirmParked
|
|
5337
6163
|
*/
|
|
5338
|
-
'
|
|
6164
|
+
'phoneNumber': string;
|
|
5339
6165
|
/**
|
|
5340
6166
|
*
|
|
5341
6167
|
* @type {string}
|
|
5342
|
-
* @memberof
|
|
6168
|
+
* @memberof ValetStatusPayloadDetailStaffConfirmParked
|
|
5343
6169
|
*/
|
|
5344
|
-
'
|
|
6170
|
+
'email': string;
|
|
5345
6171
|
/**
|
|
5346
6172
|
*
|
|
5347
6173
|
* @type {string}
|
|
5348
|
-
* @memberof
|
|
6174
|
+
* @memberof ValetStatusPayloadDetailStaffConfirmParked
|
|
5349
6175
|
*/
|
|
5350
|
-
'
|
|
6176
|
+
'pin': string;
|
|
5351
6177
|
/**
|
|
5352
6178
|
*
|
|
5353
6179
|
* @type {string}
|
|
5354
|
-
* @memberof
|
|
6180
|
+
* @memberof ValetStatusPayloadDetailStaffConfirmParked
|
|
5355
6181
|
*/
|
|
5356
|
-
'
|
|
6182
|
+
'userName': string;
|
|
5357
6183
|
/**
|
|
5358
6184
|
*
|
|
5359
6185
|
* @type {string}
|
|
5360
|
-
* @memberof
|
|
6186
|
+
* @memberof ValetStatusPayloadDetailStaffConfirmParked
|
|
5361
6187
|
*/
|
|
5362
|
-
'
|
|
6188
|
+
'deletedAt': string;
|
|
5363
6189
|
/**
|
|
5364
6190
|
*
|
|
5365
|
-
* @type {
|
|
5366
|
-
* @memberof
|
|
6191
|
+
* @type {string}
|
|
6192
|
+
* @memberof ValetStatusPayloadDetailStaffConfirmParked
|
|
5367
6193
|
*/
|
|
5368
|
-
'
|
|
6194
|
+
'updatedAt': string;
|
|
6195
|
+
/**
|
|
6196
|
+
*
|
|
6197
|
+
* @type {string}
|
|
6198
|
+
* @memberof ValetStatusPayloadDetailStaffConfirmParked
|
|
6199
|
+
*/
|
|
6200
|
+
'createdAt': string;
|
|
6201
|
+
/**
|
|
6202
|
+
*
|
|
6203
|
+
* @type {number}
|
|
6204
|
+
* @memberof ValetStatusPayloadDetailStaffConfirmParked
|
|
6205
|
+
*/
|
|
6206
|
+
'id': number;
|
|
5369
6207
|
}
|
|
5370
6208
|
/**
|
|
5371
6209
|
*
|
|
@@ -5882,6 +6720,18 @@ export interface WebhookCreateBodyPayload {
|
|
|
5882
6720
|
* @memberof WebhookCreateBodyPayload
|
|
5883
6721
|
*/
|
|
5884
6722
|
'inviteID': string;
|
|
6723
|
+
/**
|
|
6724
|
+
*
|
|
6725
|
+
* @type {string}
|
|
6726
|
+
* @memberof WebhookCreateBodyPayload
|
|
6727
|
+
*/
|
|
6728
|
+
'uid': string;
|
|
6729
|
+
/**
|
|
6730
|
+
*
|
|
6731
|
+
* @type {ValetStatusPayloadDetail}
|
|
6732
|
+
* @memberof WebhookCreateBodyPayload
|
|
6733
|
+
*/
|
|
6734
|
+
'detail': ValetStatusPayloadDetail;
|
|
5885
6735
|
/**
|
|
5886
6736
|
*
|
|
5887
6737
|
* @type {string}
|
|
@@ -6528,6 +7378,12 @@ export interface WrappedResponseCreateVisitorResponseData {
|
|
|
6528
7378
|
* @memberof WrappedResponseCreateVisitorResponseData
|
|
6529
7379
|
*/
|
|
6530
7380
|
'updated_at': string;
|
|
7381
|
+
/**
|
|
7382
|
+
*
|
|
7383
|
+
* @type {string}
|
|
7384
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
7385
|
+
*/
|
|
7386
|
+
'invite_id'?: string | null;
|
|
6531
7387
|
}
|
|
6532
7388
|
/**
|
|
6533
7389
|
*
|
|
@@ -6631,6 +7487,26 @@ export declare const WrappedResponseNullDataEnum: {
|
|
|
6631
7487
|
readonly NUMBER_null: null;
|
|
6632
7488
|
};
|
|
6633
7489
|
export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
|
|
7490
|
+
/**
|
|
7491
|
+
*
|
|
7492
|
+
* @export
|
|
7493
|
+
* @interface WrappedResponseOutdoorZoneResponseArray
|
|
7494
|
+
*/
|
|
7495
|
+
export interface WrappedResponseOutdoorZoneResponseArray {
|
|
7496
|
+
/**
|
|
7497
|
+
*
|
|
7498
|
+
* @type {WrappedResponseOutdoorZoneResponseArrayData}
|
|
7499
|
+
* @memberof WrappedResponseOutdoorZoneResponseArray
|
|
7500
|
+
*/
|
|
7501
|
+
'data': WrappedResponseOutdoorZoneResponseArrayData | null;
|
|
7502
|
+
}
|
|
7503
|
+
/**
|
|
7504
|
+
*
|
|
7505
|
+
* @export
|
|
7506
|
+
* @interface WrappedResponseOutdoorZoneResponseArrayData
|
|
7507
|
+
*/
|
|
7508
|
+
export interface WrappedResponseOutdoorZoneResponseArrayData {
|
|
7509
|
+
}
|
|
6634
7510
|
/**
|
|
6635
7511
|
*
|
|
6636
7512
|
* @export
|
|
@@ -7020,6 +7896,12 @@ export interface WrappedResponsePassConsentResponseData {
|
|
|
7020
7896
|
* @memberof WrappedResponsePassConsentResponseData
|
|
7021
7897
|
*/
|
|
7022
7898
|
'uid': string | null;
|
|
7899
|
+
/**
|
|
7900
|
+
*
|
|
7901
|
+
* @type {MetaDataPasses}
|
|
7902
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
7903
|
+
*/
|
|
7904
|
+
'metadata_resident'?: MetaDataPasses;
|
|
7023
7905
|
/**
|
|
7024
7906
|
*
|
|
7025
7907
|
* @type {string}
|
|
@@ -7205,6 +8087,12 @@ export interface WrappedResponseShowVisitorResponseData {
|
|
|
7205
8087
|
* @memberof WrappedResponseShowVisitorResponseData
|
|
7206
8088
|
*/
|
|
7207
8089
|
'updated_at': string;
|
|
8090
|
+
/**
|
|
8091
|
+
*
|
|
8092
|
+
* @type {string}
|
|
8093
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
8094
|
+
*/
|
|
8095
|
+
'invite_id'?: string | null;
|
|
7208
8096
|
}
|
|
7209
8097
|
/**
|
|
7210
8098
|
*
|
|
@@ -7757,6 +8645,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
7757
8645
|
* @throws {RequiredError}
|
|
7758
8646
|
*/
|
|
7759
8647
|
integrationsFsMembersDelete: (destroyFSMembers: DestroyFSMembers, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8648
|
+
/**
|
|
8649
|
+
*
|
|
8650
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
8651
|
+
* @param {*} [options] Override http request option.
|
|
8652
|
+
* @throws {RequiredError}
|
|
8653
|
+
*/
|
|
8654
|
+
integrationsFsMembersResidentCreate: (createResidenceFSMembersBody: CreateResidenceFSMembersBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7760
8655
|
/**
|
|
7761
8656
|
*
|
|
7762
8657
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -7908,11 +8803,10 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
7908
8803
|
/**
|
|
7909
8804
|
*
|
|
7910
8805
|
* @param {string} id
|
|
7911
|
-
* @param {string} [xAccountId]
|
|
7912
8806
|
* @param {*} [options] Override http request option.
|
|
7913
8807
|
* @throws {RequiredError}
|
|
7914
8808
|
*/
|
|
7915
|
-
parkingReservationsListDetail: (id: string,
|
|
8809
|
+
parkingReservationsListDetail: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7916
8810
|
/**
|
|
7917
8811
|
*
|
|
7918
8812
|
* @param {string} [xAccountId]
|
|
@@ -7920,6 +8814,32 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
7920
8814
|
* @throws {RequiredError}
|
|
7921
8815
|
*/
|
|
7922
8816
|
parkingReservationsListShow: (xAccountId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8817
|
+
/**
|
|
8818
|
+
*
|
|
8819
|
+
* @param {string} tenantId
|
|
8820
|
+
* @param {number} memberTypeId
|
|
8821
|
+
* @param {number} departmentId
|
|
8822
|
+
* @param {number} vehicleTypeId
|
|
8823
|
+
* @param {*} [options] Override http request option.
|
|
8824
|
+
* @throws {RequiredError}
|
|
8825
|
+
*/
|
|
8826
|
+
parkingResidentialRedemptionRatesIndex: (tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8827
|
+
/**
|
|
8828
|
+
*
|
|
8829
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
8830
|
+
* @param {string} id
|
|
8831
|
+
* @param {*} [options] Override http request option.
|
|
8832
|
+
* @throws {RequiredError}
|
|
8833
|
+
*/
|
|
8834
|
+
parkingResidentialTicketsIndex: (type: ParkingResidentialTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8835
|
+
/**
|
|
8836
|
+
*
|
|
8837
|
+
* @param {string} logId
|
|
8838
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
8839
|
+
* @param {*} [options] Override http request option.
|
|
8840
|
+
* @throws {RequiredError}
|
|
8841
|
+
*/
|
|
8842
|
+
parkingResidentialTicketsRedeem: (logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7923
8843
|
/**
|
|
7924
8844
|
*
|
|
7925
8845
|
* @param {*} [options] Override http request option.
|
|
@@ -8048,6 +8968,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8048
8968
|
* @throws {RequiredError}
|
|
8049
8969
|
*/
|
|
8050
8970
|
towersIndex: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8971
|
+
/**
|
|
8972
|
+
*
|
|
8973
|
+
* @param {*} [options] Override http request option.
|
|
8974
|
+
* @throws {RequiredError}
|
|
8975
|
+
*/
|
|
8976
|
+
towersOutdoorindex: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8051
8977
|
/**
|
|
8052
8978
|
*
|
|
8053
8979
|
* @param {*} [options] Override http request option.
|
|
@@ -8083,6 +9009,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8083
9009
|
* @throws {RequiredError}
|
|
8084
9010
|
*/
|
|
8085
9011
|
visitorsDestroy: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9012
|
+
/**
|
|
9013
|
+
*
|
|
9014
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
9015
|
+
* @param {*} [options] Override http request option.
|
|
9016
|
+
* @throws {RequiredError}
|
|
9017
|
+
*/
|
|
9018
|
+
visitorsResidentCreate: (createVisitorResidentBody: CreateVisitorResidentBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8086
9019
|
/**
|
|
8087
9020
|
*
|
|
8088
9021
|
* @param {string} id
|
|
@@ -8242,6 +9175,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
8242
9175
|
* @throws {RequiredError}
|
|
8243
9176
|
*/
|
|
8244
9177
|
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DestroyMembersResponse>>;
|
|
9178
|
+
/**
|
|
9179
|
+
*
|
|
9180
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
9181
|
+
* @param {*} [options] Override http request option.
|
|
9182
|
+
* @throws {RequiredError}
|
|
9183
|
+
*/
|
|
9184
|
+
integrationsFsMembersResidentCreate(createResidenceFSMembersBody: CreateResidenceFSMembersBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateMembersResponse>>;
|
|
8245
9185
|
/**
|
|
8246
9186
|
*
|
|
8247
9187
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -8393,11 +9333,10 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
8393
9333
|
/**
|
|
8394
9334
|
*
|
|
8395
9335
|
* @param {string} id
|
|
8396
|
-
* @param {string} [xAccountId]
|
|
8397
9336
|
* @param {*} [options] Override http request option.
|
|
8398
9337
|
* @throws {RequiredError}
|
|
8399
9338
|
*/
|
|
8400
|
-
parkingReservationsListDetail(id: string,
|
|
9339
|
+
parkingReservationsListDetail(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseParkingReservationDetailResponse>>;
|
|
8401
9340
|
/**
|
|
8402
9341
|
*
|
|
8403
9342
|
* @param {string} [xAccountId]
|
|
@@ -8405,6 +9344,32 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
8405
9344
|
* @throws {RequiredError}
|
|
8406
9345
|
*/
|
|
8407
9346
|
parkingReservationsListShow(xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseParkingReservationReservedListResponseArray>>;
|
|
9347
|
+
/**
|
|
9348
|
+
*
|
|
9349
|
+
* @param {string} tenantId
|
|
9350
|
+
* @param {number} memberTypeId
|
|
9351
|
+
* @param {number} departmentId
|
|
9352
|
+
* @param {number} vehicleTypeId
|
|
9353
|
+
* @param {*} [options] Override http request option.
|
|
9354
|
+
* @throws {RequiredError}
|
|
9355
|
+
*/
|
|
9356
|
+
parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingRedemptionRateResultArray>>;
|
|
9357
|
+
/**
|
|
9358
|
+
*
|
|
9359
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
9360
|
+
* @param {string} id
|
|
9361
|
+
* @param {*} [options] Override http request option.
|
|
9362
|
+
* @throws {RequiredError}
|
|
9363
|
+
*/
|
|
9364
|
+
parkingResidentialTicketsIndex(type: ParkingResidentialTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketDataArray>>;
|
|
9365
|
+
/**
|
|
9366
|
+
*
|
|
9367
|
+
* @param {string} logId
|
|
9368
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
9369
|
+
* @param {*} [options] Override http request option.
|
|
9370
|
+
* @throws {RequiredError}
|
|
9371
|
+
*/
|
|
9372
|
+
parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketData>>;
|
|
8408
9373
|
/**
|
|
8409
9374
|
*
|
|
8410
9375
|
* @param {*} [options] Override http request option.
|
|
@@ -8533,6 +9498,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
8533
9498
|
* @throws {RequiredError}
|
|
8534
9499
|
*/
|
|
8535
9500
|
towersIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseTowerIndexResponse>>;
|
|
9501
|
+
/**
|
|
9502
|
+
*
|
|
9503
|
+
* @param {*} [options] Override http request option.
|
|
9504
|
+
* @throws {RequiredError}
|
|
9505
|
+
*/
|
|
9506
|
+
towersOutdoorindex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseOutdoorZoneResponseArray>>;
|
|
8536
9507
|
/**
|
|
8537
9508
|
*
|
|
8538
9509
|
* @param {*} [options] Override http request option.
|
|
@@ -8568,6 +9539,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
8568
9539
|
* @throws {RequiredError}
|
|
8569
9540
|
*/
|
|
8570
9541
|
visitorsDestroy(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseNull>>;
|
|
9542
|
+
/**
|
|
9543
|
+
*
|
|
9544
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
9545
|
+
* @param {*} [options] Override http request option.
|
|
9546
|
+
* @throws {RequiredError}
|
|
9547
|
+
*/
|
|
9548
|
+
visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseCreateVisitorResponse>>;
|
|
8571
9549
|
/**
|
|
8572
9550
|
*
|
|
8573
9551
|
* @param {string} id
|
|
@@ -8727,6 +9705,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
8727
9705
|
* @throws {RequiredError}
|
|
8728
9706
|
*/
|
|
8729
9707
|
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: any): AxiosPromise<DestroyMembersResponse>;
|
|
9708
|
+
/**
|
|
9709
|
+
*
|
|
9710
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
9711
|
+
* @param {*} [options] Override http request option.
|
|
9712
|
+
* @throws {RequiredError}
|
|
9713
|
+
*/
|
|
9714
|
+
integrationsFsMembersResidentCreate(createResidenceFSMembersBody: CreateResidenceFSMembersBody, options?: any): AxiosPromise<CreateMembersResponse>;
|
|
8730
9715
|
/**
|
|
8731
9716
|
*
|
|
8732
9717
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -8878,11 +9863,10 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
8878
9863
|
/**
|
|
8879
9864
|
*
|
|
8880
9865
|
* @param {string} id
|
|
8881
|
-
* @param {string} [xAccountId]
|
|
8882
9866
|
* @param {*} [options] Override http request option.
|
|
8883
9867
|
* @throws {RequiredError}
|
|
8884
9868
|
*/
|
|
8885
|
-
parkingReservationsListDetail(id: string,
|
|
9869
|
+
parkingReservationsListDetail(id: string, options?: any): AxiosPromise<WrappedOneResponseParkingReservationDetailResponse>;
|
|
8886
9870
|
/**
|
|
8887
9871
|
*
|
|
8888
9872
|
* @param {string} [xAccountId]
|
|
@@ -8890,6 +9874,32 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
8890
9874
|
* @throws {RequiredError}
|
|
8891
9875
|
*/
|
|
8892
9876
|
parkingReservationsListShow(xAccountId?: string, options?: any): AxiosPromise<WrappedOneResponseParkingReservationReservedListResponseArray>;
|
|
9877
|
+
/**
|
|
9878
|
+
*
|
|
9879
|
+
* @param {string} tenantId
|
|
9880
|
+
* @param {number} memberTypeId
|
|
9881
|
+
* @param {number} departmentId
|
|
9882
|
+
* @param {number} vehicleTypeId
|
|
9883
|
+
* @param {*} [options] Override http request option.
|
|
9884
|
+
* @throws {RequiredError}
|
|
9885
|
+
*/
|
|
9886
|
+
parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options?: any): AxiosPromise<WrappedResponseParkingRedemptionRateResultArray>;
|
|
9887
|
+
/**
|
|
9888
|
+
*
|
|
9889
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
9890
|
+
* @param {string} id
|
|
9891
|
+
* @param {*} [options] Override http request option.
|
|
9892
|
+
* @throws {RequiredError}
|
|
9893
|
+
*/
|
|
9894
|
+
parkingResidentialTicketsIndex(type: ParkingResidentialTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray>;
|
|
9895
|
+
/**
|
|
9896
|
+
*
|
|
9897
|
+
* @param {string} logId
|
|
9898
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
9899
|
+
* @param {*} [options] Override http request option.
|
|
9900
|
+
* @throws {RequiredError}
|
|
9901
|
+
*/
|
|
9902
|
+
parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: any): AxiosPromise<WrappedResponseParkingTicketData>;
|
|
8893
9903
|
/**
|
|
8894
9904
|
*
|
|
8895
9905
|
* @param {*} [options] Override http request option.
|
|
@@ -9018,6 +10028,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9018
10028
|
* @throws {RequiredError}
|
|
9019
10029
|
*/
|
|
9020
10030
|
towersIndex(options?: any): AxiosPromise<WrappedResponseTowerIndexResponse>;
|
|
10031
|
+
/**
|
|
10032
|
+
*
|
|
10033
|
+
* @param {*} [options] Override http request option.
|
|
10034
|
+
* @throws {RequiredError}
|
|
10035
|
+
*/
|
|
10036
|
+
towersOutdoorindex(options?: any): AxiosPromise<WrappedResponseOutdoorZoneResponseArray>;
|
|
9021
10037
|
/**
|
|
9022
10038
|
*
|
|
9023
10039
|
* @param {*} [options] Override http request option.
|
|
@@ -9053,6 +10069,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9053
10069
|
* @throws {RequiredError}
|
|
9054
10070
|
*/
|
|
9055
10071
|
visitorsDestroy(id: string, options?: any): AxiosPromise<WrappedResponseNull>;
|
|
10072
|
+
/**
|
|
10073
|
+
*
|
|
10074
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
10075
|
+
* @param {*} [options] Override http request option.
|
|
10076
|
+
* @throws {RequiredError}
|
|
10077
|
+
*/
|
|
10078
|
+
visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: any): AxiosPromise<WrappedResponseCreateVisitorResponse>;
|
|
9056
10079
|
/**
|
|
9057
10080
|
*
|
|
9058
10081
|
* @param {string} id
|
|
@@ -9232,6 +10255,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
9232
10255
|
* @memberof DefaultApi
|
|
9233
10256
|
*/
|
|
9234
10257
|
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DestroyMembersResponse, any>>;
|
|
10258
|
+
/**
|
|
10259
|
+
*
|
|
10260
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
10261
|
+
* @param {*} [options] Override http request option.
|
|
10262
|
+
* @throws {RequiredError}
|
|
10263
|
+
* @memberof DefaultApi
|
|
10264
|
+
*/
|
|
10265
|
+
integrationsFsMembersResidentCreate(createResidenceFSMembersBody: CreateResidenceFSMembersBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMembersResponse, any>>;
|
|
9235
10266
|
/**
|
|
9236
10267
|
*
|
|
9237
10268
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -9400,12 +10431,11 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
9400
10431
|
/**
|
|
9401
10432
|
*
|
|
9402
10433
|
* @param {string} id
|
|
9403
|
-
* @param {string} [xAccountId]
|
|
9404
10434
|
* @param {*} [options] Override http request option.
|
|
9405
10435
|
* @throws {RequiredError}
|
|
9406
10436
|
* @memberof DefaultApi
|
|
9407
10437
|
*/
|
|
9408
|
-
parkingReservationsListDetail(id: string,
|
|
10438
|
+
parkingReservationsListDetail(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedOneResponseParkingReservationDetailResponse, any>>;
|
|
9409
10439
|
/**
|
|
9410
10440
|
*
|
|
9411
10441
|
* @param {string} [xAccountId]
|
|
@@ -9414,6 +10444,35 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
9414
10444
|
* @memberof DefaultApi
|
|
9415
10445
|
*/
|
|
9416
10446
|
parkingReservationsListShow(xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedOneResponseParkingReservationReservedListResponseArray, any>>;
|
|
10447
|
+
/**
|
|
10448
|
+
*
|
|
10449
|
+
* @param {string} tenantId
|
|
10450
|
+
* @param {number} memberTypeId
|
|
10451
|
+
* @param {number} departmentId
|
|
10452
|
+
* @param {number} vehicleTypeId
|
|
10453
|
+
* @param {*} [options] Override http request option.
|
|
10454
|
+
* @throws {RequiredError}
|
|
10455
|
+
* @memberof DefaultApi
|
|
10456
|
+
*/
|
|
10457
|
+
parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingRedemptionRateResultArray, any>>;
|
|
10458
|
+
/**
|
|
10459
|
+
*
|
|
10460
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
10461
|
+
* @param {string} id
|
|
10462
|
+
* @param {*} [options] Override http request option.
|
|
10463
|
+
* @throws {RequiredError}
|
|
10464
|
+
* @memberof DefaultApi
|
|
10465
|
+
*/
|
|
10466
|
+
parkingResidentialTicketsIndex(type: ParkingResidentialTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingTicketDataArray, any>>;
|
|
10467
|
+
/**
|
|
10468
|
+
*
|
|
10469
|
+
* @param {string} logId
|
|
10470
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
10471
|
+
* @param {*} [options] Override http request option.
|
|
10472
|
+
* @throws {RequiredError}
|
|
10473
|
+
* @memberof DefaultApi
|
|
10474
|
+
*/
|
|
10475
|
+
parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingTicketData, any>>;
|
|
9417
10476
|
/**
|
|
9418
10477
|
*
|
|
9419
10478
|
* @param {*} [options] Override http request option.
|
|
@@ -9559,6 +10618,13 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
9559
10618
|
* @memberof DefaultApi
|
|
9560
10619
|
*/
|
|
9561
10620
|
towersIndex(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseTowerIndexResponse, any>>;
|
|
10621
|
+
/**
|
|
10622
|
+
*
|
|
10623
|
+
* @param {*} [options] Override http request option.
|
|
10624
|
+
* @throws {RequiredError}
|
|
10625
|
+
* @memberof DefaultApi
|
|
10626
|
+
*/
|
|
10627
|
+
towersOutdoorindex(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseOutdoorZoneResponseArray, any>>;
|
|
9562
10628
|
/**
|
|
9563
10629
|
*
|
|
9564
10630
|
* @param {*} [options] Override http request option.
|
|
@@ -9599,6 +10665,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
9599
10665
|
* @memberof DefaultApi
|
|
9600
10666
|
*/
|
|
9601
10667
|
visitorsDestroy(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseNull, any>>;
|
|
10668
|
+
/**
|
|
10669
|
+
*
|
|
10670
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
10671
|
+
* @param {*} [options] Override http request option.
|
|
10672
|
+
* @throws {RequiredError}
|
|
10673
|
+
* @memberof DefaultApi
|
|
10674
|
+
*/
|
|
10675
|
+
visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseCreateVisitorResponse, any>>;
|
|
9602
10676
|
/**
|
|
9603
10677
|
*
|
|
9604
10678
|
* @param {string} id
|
|
@@ -9608,6 +10682,17 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
9608
10682
|
*/
|
|
9609
10683
|
visitorsShow(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseShowVisitorResponse, any>>;
|
|
9610
10684
|
}
|
|
10685
|
+
/**
|
|
10686
|
+
* @export
|
|
10687
|
+
*/
|
|
10688
|
+
export declare const ParkingResidentialTicketsIndexTypeEnum: {
|
|
10689
|
+
readonly LogId: "log_id";
|
|
10690
|
+
readonly TicketNumber: "ticket_number";
|
|
10691
|
+
readonly PlateNo: "plate_no";
|
|
10692
|
+
readonly InviteId: "invite_id";
|
|
10693
|
+
readonly MemberId: "member_id";
|
|
10694
|
+
};
|
|
10695
|
+
export type ParkingResidentialTicketsIndexTypeEnum = typeof ParkingResidentialTicketsIndexTypeEnum[keyof typeof ParkingResidentialTicketsIndexTypeEnum];
|
|
9611
10696
|
/**
|
|
9612
10697
|
* @export
|
|
9613
10698
|
*/
|