ob-bms-sdk 0.0.112 → 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 +720 -36
- package/dist/api/api.d.ts +474 -18
- package/dist/api/api.js +419 -31
- package/package.json +1 -1
package/dist/api/api.d.ts
CHANGED
|
@@ -1089,6 +1089,25 @@ export interface CreateMembersResponse {
|
|
|
1089
1089
|
[key: string]: any;
|
|
1090
1090
|
} | null;
|
|
1091
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
|
+
}
|
|
1092
1111
|
/**
|
|
1093
1112
|
*
|
|
1094
1113
|
* @export
|
|
@@ -1151,6 +1170,79 @@ export interface CreateVisitorBody {
|
|
|
1151
1170
|
*/
|
|
1152
1171
|
'visitor_schedule': VisitorSchedule;
|
|
1153
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
|
+
}
|
|
1154
1246
|
/**
|
|
1155
1247
|
*
|
|
1156
1248
|
* @export
|
|
@@ -1211,6 +1303,12 @@ export interface CreateVisitorResponse {
|
|
|
1211
1303
|
* @memberof CreateVisitorResponse
|
|
1212
1304
|
*/
|
|
1213
1305
|
'updated_at': string;
|
|
1306
|
+
/**
|
|
1307
|
+
*
|
|
1308
|
+
* @type {string}
|
|
1309
|
+
* @memberof CreateVisitorResponse
|
|
1310
|
+
*/
|
|
1311
|
+
'invite_id'?: string | null;
|
|
1214
1312
|
}
|
|
1215
1313
|
/**
|
|
1216
1314
|
*
|
|
@@ -2025,6 +2123,12 @@ export interface MemberIndexInterface {
|
|
|
2025
2123
|
* @memberof MemberIndexInterface
|
|
2026
2124
|
*/
|
|
2027
2125
|
'metadata'?: PrismaJsonValue | null;
|
|
2126
|
+
/**
|
|
2127
|
+
*
|
|
2128
|
+
* @type {PrismaJsonValue}
|
|
2129
|
+
* @memberof MemberIndexInterface
|
|
2130
|
+
*/
|
|
2131
|
+
'metadata_resident'?: PrismaJsonValue | null;
|
|
2028
2132
|
/**
|
|
2029
2133
|
*
|
|
2030
2134
|
* @type {string}
|
|
@@ -2338,6 +2442,25 @@ export interface MembersShowResponse {
|
|
|
2338
2442
|
*/
|
|
2339
2443
|
'passed_turnstile': boolean;
|
|
2340
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
|
+
}
|
|
2341
2464
|
/**
|
|
2342
2465
|
*
|
|
2343
2466
|
* @export
|
|
@@ -3093,14 +3216,30 @@ export interface ParkingReservationResponse {
|
|
|
3093
3216
|
/**
|
|
3094
3217
|
*
|
|
3095
3218
|
* @export
|
|
3096
|
-
* @
|
|
3219
|
+
* @interface ParkingResidentialTicketsIndexQuery
|
|
3097
3220
|
*/
|
|
3098
|
-
export
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
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;
|
|
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";
|
|
3102
3241
|
};
|
|
3103
|
-
export type
|
|
3242
|
+
export type ParkingResidentialTicketsIndexQueryTypeEnum = typeof ParkingResidentialTicketsIndexQueryTypeEnum[keyof typeof ParkingResidentialTicketsIndexQueryTypeEnum];
|
|
3104
3243
|
/**
|
|
3105
3244
|
*
|
|
3106
3245
|
* @export
|
|
@@ -3466,6 +3605,25 @@ export interface ParkingTicketsRedeemBody {
|
|
|
3466
3605
|
*/
|
|
3467
3606
|
'redeemer_id': string;
|
|
3468
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
|
+
}
|
|
3469
3627
|
/**
|
|
3470
3628
|
*
|
|
3471
3629
|
* @export
|
|
@@ -3521,6 +3679,12 @@ export interface PassConsentResponse {
|
|
|
3521
3679
|
* @memberof PassConsentResponse
|
|
3522
3680
|
*/
|
|
3523
3681
|
'uid': string | null;
|
|
3682
|
+
/**
|
|
3683
|
+
*
|
|
3684
|
+
* @type {MetaDataPasses}
|
|
3685
|
+
* @memberof PassConsentResponse
|
|
3686
|
+
*/
|
|
3687
|
+
'metadata_resident'?: MetaDataPasses;
|
|
3524
3688
|
/**
|
|
3525
3689
|
*
|
|
3526
3690
|
* @type {string}
|
|
@@ -3949,6 +4113,55 @@ export interface PersonData {
|
|
|
3949
4113
|
*/
|
|
3950
4114
|
'canPreRegister': boolean;
|
|
3951
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
|
+
}
|
|
3952
4165
|
/**
|
|
3953
4166
|
*
|
|
3954
4167
|
* @export
|
|
@@ -4454,6 +4667,12 @@ export interface ServiceRequestsUpdateRequestBodyStatus {
|
|
|
4454
4667
|
* @interface ShowPassResponse
|
|
4455
4668
|
*/
|
|
4456
4669
|
export interface ShowPassResponse {
|
|
4670
|
+
/**
|
|
4671
|
+
*
|
|
4672
|
+
* @type {MetaDataPasses}
|
|
4673
|
+
* @memberof ShowPassResponse
|
|
4674
|
+
*/
|
|
4675
|
+
'metadata_resident'?: MetaDataPasses;
|
|
4457
4676
|
/**
|
|
4458
4677
|
*
|
|
4459
4678
|
* @type {LocationPasses}
|
|
@@ -4610,6 +4829,12 @@ export interface ShowVisitorResponse {
|
|
|
4610
4829
|
* @memberof ShowVisitorResponse
|
|
4611
4830
|
*/
|
|
4612
4831
|
'updated_at': string;
|
|
4832
|
+
/**
|
|
4833
|
+
*
|
|
4834
|
+
* @type {string}
|
|
4835
|
+
* @memberof ShowVisitorResponse
|
|
4836
|
+
*/
|
|
4837
|
+
'invite_id'?: string | null;
|
|
4613
4838
|
}
|
|
4614
4839
|
/**
|
|
4615
4840
|
*
|
|
@@ -7153,6 +7378,12 @@ export interface WrappedResponseCreateVisitorResponseData {
|
|
|
7153
7378
|
* @memberof WrappedResponseCreateVisitorResponseData
|
|
7154
7379
|
*/
|
|
7155
7380
|
'updated_at': string;
|
|
7381
|
+
/**
|
|
7382
|
+
*
|
|
7383
|
+
* @type {string}
|
|
7384
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
7385
|
+
*/
|
|
7386
|
+
'invite_id'?: string | null;
|
|
7156
7387
|
}
|
|
7157
7388
|
/**
|
|
7158
7389
|
*
|
|
@@ -7256,6 +7487,26 @@ export declare const WrappedResponseNullDataEnum: {
|
|
|
7256
7487
|
readonly NUMBER_null: null;
|
|
7257
7488
|
};
|
|
7258
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
|
+
}
|
|
7259
7510
|
/**
|
|
7260
7511
|
*
|
|
7261
7512
|
* @export
|
|
@@ -7645,6 +7896,12 @@ export interface WrappedResponsePassConsentResponseData {
|
|
|
7645
7896
|
* @memberof WrappedResponsePassConsentResponseData
|
|
7646
7897
|
*/
|
|
7647
7898
|
'uid': string | null;
|
|
7899
|
+
/**
|
|
7900
|
+
*
|
|
7901
|
+
* @type {MetaDataPasses}
|
|
7902
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
7903
|
+
*/
|
|
7904
|
+
'metadata_resident'?: MetaDataPasses;
|
|
7648
7905
|
/**
|
|
7649
7906
|
*
|
|
7650
7907
|
* @type {string}
|
|
@@ -7830,6 +8087,12 @@ export interface WrappedResponseShowVisitorResponseData {
|
|
|
7830
8087
|
* @memberof WrappedResponseShowVisitorResponseData
|
|
7831
8088
|
*/
|
|
7832
8089
|
'updated_at': string;
|
|
8090
|
+
/**
|
|
8091
|
+
*
|
|
8092
|
+
* @type {string}
|
|
8093
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
8094
|
+
*/
|
|
8095
|
+
'invite_id'?: string | null;
|
|
7833
8096
|
}
|
|
7834
8097
|
/**
|
|
7835
8098
|
*
|
|
@@ -8382,6 +8645,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8382
8645
|
* @throws {RequiredError}
|
|
8383
8646
|
*/
|
|
8384
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>;
|
|
8385
8655
|
/**
|
|
8386
8656
|
*
|
|
8387
8657
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -8533,12 +8803,10 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8533
8803
|
/**
|
|
8534
8804
|
*
|
|
8535
8805
|
* @param {string} id
|
|
8536
|
-
* @param {ParkingReservationStatus} [status]
|
|
8537
|
-
* @param {string} [xAccountId]
|
|
8538
8806
|
* @param {*} [options] Override http request option.
|
|
8539
8807
|
* @throws {RequiredError}
|
|
8540
8808
|
*/
|
|
8541
|
-
parkingReservationsListDetail: (id: string,
|
|
8809
|
+
parkingReservationsListDetail: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8542
8810
|
/**
|
|
8543
8811
|
*
|
|
8544
8812
|
* @param {string} [xAccountId]
|
|
@@ -8546,6 +8814,32 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8546
8814
|
* @throws {RequiredError}
|
|
8547
8815
|
*/
|
|
8548
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>;
|
|
8549
8843
|
/**
|
|
8550
8844
|
*
|
|
8551
8845
|
* @param {*} [options] Override http request option.
|
|
@@ -8674,6 +8968,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8674
8968
|
* @throws {RequiredError}
|
|
8675
8969
|
*/
|
|
8676
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>;
|
|
8677
8977
|
/**
|
|
8678
8978
|
*
|
|
8679
8979
|
* @param {*} [options] Override http request option.
|
|
@@ -8709,6 +9009,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8709
9009
|
* @throws {RequiredError}
|
|
8710
9010
|
*/
|
|
8711
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>;
|
|
8712
9019
|
/**
|
|
8713
9020
|
*
|
|
8714
9021
|
* @param {string} id
|
|
@@ -8868,6 +9175,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
8868
9175
|
* @throws {RequiredError}
|
|
8869
9176
|
*/
|
|
8870
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>>;
|
|
8871
9185
|
/**
|
|
8872
9186
|
*
|
|
8873
9187
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -9019,12 +9333,10 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9019
9333
|
/**
|
|
9020
9334
|
*
|
|
9021
9335
|
* @param {string} id
|
|
9022
|
-
* @param {ParkingReservationStatus} [status]
|
|
9023
|
-
* @param {string} [xAccountId]
|
|
9024
9336
|
* @param {*} [options] Override http request option.
|
|
9025
9337
|
* @throws {RequiredError}
|
|
9026
9338
|
*/
|
|
9027
|
-
parkingReservationsListDetail(id: string,
|
|
9339
|
+
parkingReservationsListDetail(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseParkingReservationDetailResponse>>;
|
|
9028
9340
|
/**
|
|
9029
9341
|
*
|
|
9030
9342
|
* @param {string} [xAccountId]
|
|
@@ -9032,6 +9344,32 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9032
9344
|
* @throws {RequiredError}
|
|
9033
9345
|
*/
|
|
9034
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>>;
|
|
9035
9373
|
/**
|
|
9036
9374
|
*
|
|
9037
9375
|
* @param {*} [options] Override http request option.
|
|
@@ -9160,6 +9498,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9160
9498
|
* @throws {RequiredError}
|
|
9161
9499
|
*/
|
|
9162
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>>;
|
|
9163
9507
|
/**
|
|
9164
9508
|
*
|
|
9165
9509
|
* @param {*} [options] Override http request option.
|
|
@@ -9195,6 +9539,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9195
9539
|
* @throws {RequiredError}
|
|
9196
9540
|
*/
|
|
9197
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>>;
|
|
9198
9549
|
/**
|
|
9199
9550
|
*
|
|
9200
9551
|
* @param {string} id
|
|
@@ -9354,6 +9705,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9354
9705
|
* @throws {RequiredError}
|
|
9355
9706
|
*/
|
|
9356
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>;
|
|
9357
9715
|
/**
|
|
9358
9716
|
*
|
|
9359
9717
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -9505,12 +9863,10 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9505
9863
|
/**
|
|
9506
9864
|
*
|
|
9507
9865
|
* @param {string} id
|
|
9508
|
-
* @param {ParkingReservationStatus} [status]
|
|
9509
|
-
* @param {string} [xAccountId]
|
|
9510
9866
|
* @param {*} [options] Override http request option.
|
|
9511
9867
|
* @throws {RequiredError}
|
|
9512
9868
|
*/
|
|
9513
|
-
parkingReservationsListDetail(id: string,
|
|
9869
|
+
parkingReservationsListDetail(id: string, options?: any): AxiosPromise<WrappedOneResponseParkingReservationDetailResponse>;
|
|
9514
9870
|
/**
|
|
9515
9871
|
*
|
|
9516
9872
|
* @param {string} [xAccountId]
|
|
@@ -9518,6 +9874,32 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9518
9874
|
* @throws {RequiredError}
|
|
9519
9875
|
*/
|
|
9520
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>;
|
|
9521
9903
|
/**
|
|
9522
9904
|
*
|
|
9523
9905
|
* @param {*} [options] Override http request option.
|
|
@@ -9646,6 +10028,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9646
10028
|
* @throws {RequiredError}
|
|
9647
10029
|
*/
|
|
9648
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>;
|
|
9649
10037
|
/**
|
|
9650
10038
|
*
|
|
9651
10039
|
* @param {*} [options] Override http request option.
|
|
@@ -9681,6 +10069,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9681
10069
|
* @throws {RequiredError}
|
|
9682
10070
|
*/
|
|
9683
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>;
|
|
9684
10079
|
/**
|
|
9685
10080
|
*
|
|
9686
10081
|
* @param {string} id
|
|
@@ -9860,6 +10255,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
9860
10255
|
* @memberof DefaultApi
|
|
9861
10256
|
*/
|
|
9862
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>>;
|
|
9863
10266
|
/**
|
|
9864
10267
|
*
|
|
9865
10268
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -10028,13 +10431,11 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10028
10431
|
/**
|
|
10029
10432
|
*
|
|
10030
10433
|
* @param {string} id
|
|
10031
|
-
* @param {ParkingReservationStatus} [status]
|
|
10032
|
-
* @param {string} [xAccountId]
|
|
10033
10434
|
* @param {*} [options] Override http request option.
|
|
10034
10435
|
* @throws {RequiredError}
|
|
10035
10436
|
* @memberof DefaultApi
|
|
10036
10437
|
*/
|
|
10037
|
-
parkingReservationsListDetail(id: string,
|
|
10438
|
+
parkingReservationsListDetail(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedOneResponseParkingReservationDetailResponse, any>>;
|
|
10038
10439
|
/**
|
|
10039
10440
|
*
|
|
10040
10441
|
* @param {string} [xAccountId]
|
|
@@ -10043,6 +10444,35 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10043
10444
|
* @memberof DefaultApi
|
|
10044
10445
|
*/
|
|
10045
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>>;
|
|
10046
10476
|
/**
|
|
10047
10477
|
*
|
|
10048
10478
|
* @param {*} [options] Override http request option.
|
|
@@ -10188,6 +10618,13 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10188
10618
|
* @memberof DefaultApi
|
|
10189
10619
|
*/
|
|
10190
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>>;
|
|
10191
10628
|
/**
|
|
10192
10629
|
*
|
|
10193
10630
|
* @param {*} [options] Override http request option.
|
|
@@ -10228,6 +10665,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10228
10665
|
* @memberof DefaultApi
|
|
10229
10666
|
*/
|
|
10230
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>>;
|
|
10231
10676
|
/**
|
|
10232
10677
|
*
|
|
10233
10678
|
* @param {string} id
|
|
@@ -10237,6 +10682,17 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10237
10682
|
*/
|
|
10238
10683
|
visitorsShow(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseShowVisitorResponse, any>>;
|
|
10239
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];
|
|
10240
10696
|
/**
|
|
10241
10697
|
* @export
|
|
10242
10698
|
*/
|