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/api/api.ts
CHANGED
|
@@ -1117,6 +1117,25 @@ export interface CreateMembersResponse {
|
|
|
1117
1117
|
*/
|
|
1118
1118
|
'error': { [key: string]: any; } | null;
|
|
1119
1119
|
}
|
|
1120
|
+
/**
|
|
1121
|
+
*
|
|
1122
|
+
* @export
|
|
1123
|
+
* @interface CreateResidenceFSMembersBody
|
|
1124
|
+
*/
|
|
1125
|
+
export interface CreateResidenceFSMembersBody {
|
|
1126
|
+
/**
|
|
1127
|
+
*
|
|
1128
|
+
* @type {number}
|
|
1129
|
+
* @memberof CreateResidenceFSMembersBody
|
|
1130
|
+
*/
|
|
1131
|
+
'count': number;
|
|
1132
|
+
/**
|
|
1133
|
+
*
|
|
1134
|
+
* @type {Array<PersonDataResident>}
|
|
1135
|
+
* @memberof CreateResidenceFSMembersBody
|
|
1136
|
+
*/
|
|
1137
|
+
'data': Array<PersonDataResident>;
|
|
1138
|
+
}
|
|
1120
1139
|
/**
|
|
1121
1140
|
*
|
|
1122
1141
|
* @export
|
|
@@ -1179,6 +1198,79 @@ export interface CreateVisitorBody {
|
|
|
1179
1198
|
*/
|
|
1180
1199
|
'visitor_schedule': VisitorSchedule;
|
|
1181
1200
|
}
|
|
1201
|
+
/**
|
|
1202
|
+
*
|
|
1203
|
+
* @export
|
|
1204
|
+
* @interface CreateVisitorResidentBody
|
|
1205
|
+
*/
|
|
1206
|
+
export interface CreateVisitorResidentBody {
|
|
1207
|
+
/**
|
|
1208
|
+
*
|
|
1209
|
+
* @type {string}
|
|
1210
|
+
* @memberof CreateVisitorResidentBody
|
|
1211
|
+
*/
|
|
1212
|
+
'name': string;
|
|
1213
|
+
/**
|
|
1214
|
+
*
|
|
1215
|
+
* @type {string}
|
|
1216
|
+
* @memberof CreateVisitorResidentBody
|
|
1217
|
+
*/
|
|
1218
|
+
'profile_image_url': string | null;
|
|
1219
|
+
/**
|
|
1220
|
+
*
|
|
1221
|
+
* @type {string}
|
|
1222
|
+
* @memberof CreateVisitorResidentBody
|
|
1223
|
+
*/
|
|
1224
|
+
'email': string;
|
|
1225
|
+
/**
|
|
1226
|
+
*
|
|
1227
|
+
* @type {string}
|
|
1228
|
+
* @memberof CreateVisitorResidentBody
|
|
1229
|
+
*/
|
|
1230
|
+
'company_name': string;
|
|
1231
|
+
/**
|
|
1232
|
+
*
|
|
1233
|
+
* @type {string}
|
|
1234
|
+
* @memberof CreateVisitorResidentBody
|
|
1235
|
+
*/
|
|
1236
|
+
'reference'?: string;
|
|
1237
|
+
/**
|
|
1238
|
+
*
|
|
1239
|
+
* @type {string}
|
|
1240
|
+
* @memberof CreateVisitorResidentBody
|
|
1241
|
+
*/
|
|
1242
|
+
'inviter_id': string;
|
|
1243
|
+
/**
|
|
1244
|
+
*
|
|
1245
|
+
* @type {VisitorSchedule}
|
|
1246
|
+
* @memberof CreateVisitorResidentBody
|
|
1247
|
+
*/
|
|
1248
|
+
'visitor_schedule': VisitorSchedule;
|
|
1249
|
+
/**
|
|
1250
|
+
*
|
|
1251
|
+
* @type {string}
|
|
1252
|
+
* @memberof CreateVisitorResidentBody
|
|
1253
|
+
*/
|
|
1254
|
+
'residence_id': string;
|
|
1255
|
+
/**
|
|
1256
|
+
*
|
|
1257
|
+
* @type {number}
|
|
1258
|
+
* @memberof CreateVisitorResidentBody
|
|
1259
|
+
*/
|
|
1260
|
+
'location_id': number;
|
|
1261
|
+
/**
|
|
1262
|
+
*
|
|
1263
|
+
* @type {string}
|
|
1264
|
+
* @memberof CreateVisitorResidentBody
|
|
1265
|
+
*/
|
|
1266
|
+
'invite_name': string;
|
|
1267
|
+
/**
|
|
1268
|
+
*
|
|
1269
|
+
* @type {string}
|
|
1270
|
+
* @memberof CreateVisitorResidentBody
|
|
1271
|
+
*/
|
|
1272
|
+
'invite_house_number': string;
|
|
1273
|
+
}
|
|
1182
1274
|
/**
|
|
1183
1275
|
*
|
|
1184
1276
|
* @export
|
|
@@ -1239,6 +1331,12 @@ export interface CreateVisitorResponse {
|
|
|
1239
1331
|
* @memberof CreateVisitorResponse
|
|
1240
1332
|
*/
|
|
1241
1333
|
'updated_at': string;
|
|
1334
|
+
/**
|
|
1335
|
+
*
|
|
1336
|
+
* @type {string}
|
|
1337
|
+
* @memberof CreateVisitorResponse
|
|
1338
|
+
*/
|
|
1339
|
+
'invite_id'?: string | null;
|
|
1242
1340
|
}
|
|
1243
1341
|
/**
|
|
1244
1342
|
*
|
|
@@ -2049,6 +2147,12 @@ export interface MemberIndexInterface {
|
|
|
2049
2147
|
* @memberof MemberIndexInterface
|
|
2050
2148
|
*/
|
|
2051
2149
|
'metadata'?: PrismaJsonValue | null;
|
|
2150
|
+
/**
|
|
2151
|
+
*
|
|
2152
|
+
* @type {PrismaJsonValue}
|
|
2153
|
+
* @memberof MemberIndexInterface
|
|
2154
|
+
*/
|
|
2155
|
+
'metadata_resident'?: PrismaJsonValue | null;
|
|
2052
2156
|
/**
|
|
2053
2157
|
*
|
|
2054
2158
|
* @type {string}
|
|
@@ -2362,6 +2466,25 @@ export interface MembersShowResponse {
|
|
|
2362
2466
|
*/
|
|
2363
2467
|
'passed_turnstile': boolean;
|
|
2364
2468
|
}
|
|
2469
|
+
/**
|
|
2470
|
+
*
|
|
2471
|
+
* @export
|
|
2472
|
+
* @interface MetaDataPasses
|
|
2473
|
+
*/
|
|
2474
|
+
export interface MetaDataPasses {
|
|
2475
|
+
/**
|
|
2476
|
+
*
|
|
2477
|
+
* @type {string}
|
|
2478
|
+
* @memberof MetaDataPasses
|
|
2479
|
+
*/
|
|
2480
|
+
'invite_house_number': string;
|
|
2481
|
+
/**
|
|
2482
|
+
*
|
|
2483
|
+
* @type {string}
|
|
2484
|
+
* @memberof MetaDataPasses
|
|
2485
|
+
*/
|
|
2486
|
+
'invite_name': string;
|
|
2487
|
+
}
|
|
2365
2488
|
/**
|
|
2366
2489
|
*
|
|
2367
2490
|
* @export
|
|
@@ -3121,17 +3244,32 @@ export interface ParkingReservationResponse {
|
|
|
3121
3244
|
/**
|
|
3122
3245
|
*
|
|
3123
3246
|
* @export
|
|
3124
|
-
* @
|
|
3247
|
+
* @interface ParkingResidentialTicketsIndexQuery
|
|
3125
3248
|
*/
|
|
3249
|
+
export interface ParkingResidentialTicketsIndexQuery {
|
|
3250
|
+
/**
|
|
3251
|
+
*
|
|
3252
|
+
* @type {string}
|
|
3253
|
+
* @memberof ParkingResidentialTicketsIndexQuery
|
|
3254
|
+
*/
|
|
3255
|
+
'type': ParkingResidentialTicketsIndexQueryTypeEnum;
|
|
3256
|
+
/**
|
|
3257
|
+
*
|
|
3258
|
+
* @type {string}
|
|
3259
|
+
* @memberof ParkingResidentialTicketsIndexQuery
|
|
3260
|
+
*/
|
|
3261
|
+
'id': string;
|
|
3262
|
+
}
|
|
3126
3263
|
|
|
3127
|
-
export const
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3264
|
+
export const ParkingResidentialTicketsIndexQueryTypeEnum = {
|
|
3265
|
+
LogId: 'log_id',
|
|
3266
|
+
TicketNumber: 'ticket_number',
|
|
3267
|
+
PlateNo: 'plate_no',
|
|
3268
|
+
InviteId: 'invite_id',
|
|
3269
|
+
MemberId: 'member_id'
|
|
3131
3270
|
} as const;
|
|
3132
3271
|
|
|
3133
|
-
export type
|
|
3134
|
-
|
|
3272
|
+
export type ParkingResidentialTicketsIndexQueryTypeEnum = typeof ParkingResidentialTicketsIndexQueryTypeEnum[keyof typeof ParkingResidentialTicketsIndexQueryTypeEnum];
|
|
3135
3273
|
|
|
3136
3274
|
/**
|
|
3137
3275
|
*
|
|
@@ -3501,6 +3639,25 @@ export interface ParkingTicketsRedeemBody {
|
|
|
3501
3639
|
*/
|
|
3502
3640
|
'redeemer_id': string;
|
|
3503
3641
|
}
|
|
3642
|
+
/**
|
|
3643
|
+
*
|
|
3644
|
+
* @export
|
|
3645
|
+
* @interface ParkingTicketsRedeemBodyResident
|
|
3646
|
+
*/
|
|
3647
|
+
export interface ParkingTicketsRedeemBodyResident {
|
|
3648
|
+
/**
|
|
3649
|
+
*
|
|
3650
|
+
* @type {string}
|
|
3651
|
+
* @memberof ParkingTicketsRedeemBodyResident
|
|
3652
|
+
*/
|
|
3653
|
+
'remark': string;
|
|
3654
|
+
/**
|
|
3655
|
+
*
|
|
3656
|
+
* @type {string}
|
|
3657
|
+
* @memberof ParkingTicketsRedeemBodyResident
|
|
3658
|
+
*/
|
|
3659
|
+
'rate_code': string;
|
|
3660
|
+
}
|
|
3504
3661
|
/**
|
|
3505
3662
|
*
|
|
3506
3663
|
* @export
|
|
@@ -3556,6 +3713,12 @@ export interface PassConsentResponse {
|
|
|
3556
3713
|
* @memberof PassConsentResponse
|
|
3557
3714
|
*/
|
|
3558
3715
|
'uid': string | null;
|
|
3716
|
+
/**
|
|
3717
|
+
*
|
|
3718
|
+
* @type {MetaDataPasses}
|
|
3719
|
+
* @memberof PassConsentResponse
|
|
3720
|
+
*/
|
|
3721
|
+
'metadata_resident'?: MetaDataPasses;
|
|
3559
3722
|
/**
|
|
3560
3723
|
*
|
|
3561
3724
|
* @type {string}
|
|
@@ -3998,6 +4161,55 @@ export interface PersonData {
|
|
|
3998
4161
|
*/
|
|
3999
4162
|
'canPreRegister': boolean;
|
|
4000
4163
|
}
|
|
4164
|
+
/**
|
|
4165
|
+
*
|
|
4166
|
+
* @export
|
|
4167
|
+
* @interface PersonDataResident
|
|
4168
|
+
*/
|
|
4169
|
+
export interface PersonDataResident {
|
|
4170
|
+
/**
|
|
4171
|
+
*
|
|
4172
|
+
* @type {string}
|
|
4173
|
+
* @memberof PersonDataResident
|
|
4174
|
+
*/
|
|
4175
|
+
'personID': string;
|
|
4176
|
+
/**
|
|
4177
|
+
*
|
|
4178
|
+
* @type {Array<number>}
|
|
4179
|
+
* @memberof PersonDataResident
|
|
4180
|
+
*/
|
|
4181
|
+
'residenceIDs': Array<number>;
|
|
4182
|
+
/**
|
|
4183
|
+
*
|
|
4184
|
+
* @type {Array<string>}
|
|
4185
|
+
* @memberof PersonDataResident
|
|
4186
|
+
*/
|
|
4187
|
+
'phones': Array<string>;
|
|
4188
|
+
/**
|
|
4189
|
+
*
|
|
4190
|
+
* @type {Array<string>}
|
|
4191
|
+
* @memberof PersonDataResident
|
|
4192
|
+
*/
|
|
4193
|
+
'emails': Array<string>;
|
|
4194
|
+
/**
|
|
4195
|
+
*
|
|
4196
|
+
* @type {string}
|
|
4197
|
+
* @memberof PersonDataResident
|
|
4198
|
+
*/
|
|
4199
|
+
'updateTime': string;
|
|
4200
|
+
/**
|
|
4201
|
+
*
|
|
4202
|
+
* @type {boolean}
|
|
4203
|
+
* @memberof PersonDataResident
|
|
4204
|
+
*/
|
|
4205
|
+
'active': boolean;
|
|
4206
|
+
/**
|
|
4207
|
+
*
|
|
4208
|
+
* @type {string}
|
|
4209
|
+
* @memberof PersonDataResident
|
|
4210
|
+
*/
|
|
4211
|
+
'status': string;
|
|
4212
|
+
}
|
|
4001
4213
|
/**
|
|
4002
4214
|
*
|
|
4003
4215
|
* @export
|
|
@@ -4527,6 +4739,12 @@ export interface ServiceRequestsUpdateRequestBodyStatus {
|
|
|
4527
4739
|
* @interface ShowPassResponse
|
|
4528
4740
|
*/
|
|
4529
4741
|
export interface ShowPassResponse {
|
|
4742
|
+
/**
|
|
4743
|
+
*
|
|
4744
|
+
* @type {MetaDataPasses}
|
|
4745
|
+
* @memberof ShowPassResponse
|
|
4746
|
+
*/
|
|
4747
|
+
'metadata_resident'?: MetaDataPasses;
|
|
4530
4748
|
/**
|
|
4531
4749
|
*
|
|
4532
4750
|
* @type {LocationPasses}
|
|
@@ -4686,6 +4904,12 @@ export interface ShowVisitorResponse {
|
|
|
4686
4904
|
* @memberof ShowVisitorResponse
|
|
4687
4905
|
*/
|
|
4688
4906
|
'updated_at': string;
|
|
4907
|
+
/**
|
|
4908
|
+
*
|
|
4909
|
+
* @type {string}
|
|
4910
|
+
* @memberof ShowVisitorResponse
|
|
4911
|
+
*/
|
|
4912
|
+
'invite_id'?: string | null;
|
|
4689
4913
|
}
|
|
4690
4914
|
/**
|
|
4691
4915
|
*
|
|
@@ -7235,6 +7459,12 @@ export interface WrappedResponseCreateVisitorResponseData {
|
|
|
7235
7459
|
* @memberof WrappedResponseCreateVisitorResponseData
|
|
7236
7460
|
*/
|
|
7237
7461
|
'updated_at': string;
|
|
7462
|
+
/**
|
|
7463
|
+
*
|
|
7464
|
+
* @type {string}
|
|
7465
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
7466
|
+
*/
|
|
7467
|
+
'invite_id'?: string | null;
|
|
7238
7468
|
}
|
|
7239
7469
|
/**
|
|
7240
7470
|
*
|
|
@@ -7341,6 +7571,26 @@ export const WrappedResponseNullDataEnum = {
|
|
|
7341
7571
|
|
|
7342
7572
|
export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
|
|
7343
7573
|
|
|
7574
|
+
/**
|
|
7575
|
+
*
|
|
7576
|
+
* @export
|
|
7577
|
+
* @interface WrappedResponseOutdoorZoneResponseArray
|
|
7578
|
+
*/
|
|
7579
|
+
export interface WrappedResponseOutdoorZoneResponseArray {
|
|
7580
|
+
/**
|
|
7581
|
+
*
|
|
7582
|
+
* @type {WrappedResponseOutdoorZoneResponseArrayData}
|
|
7583
|
+
* @memberof WrappedResponseOutdoorZoneResponseArray
|
|
7584
|
+
*/
|
|
7585
|
+
'data': WrappedResponseOutdoorZoneResponseArrayData | null;
|
|
7586
|
+
}
|
|
7587
|
+
/**
|
|
7588
|
+
*
|
|
7589
|
+
* @export
|
|
7590
|
+
* @interface WrappedResponseOutdoorZoneResponseArrayData
|
|
7591
|
+
*/
|
|
7592
|
+
export interface WrappedResponseOutdoorZoneResponseArrayData {
|
|
7593
|
+
}
|
|
7344
7594
|
/**
|
|
7345
7595
|
*
|
|
7346
7596
|
* @export
|
|
@@ -7730,6 +7980,12 @@ export interface WrappedResponsePassConsentResponseData {
|
|
|
7730
7980
|
* @memberof WrappedResponsePassConsentResponseData
|
|
7731
7981
|
*/
|
|
7732
7982
|
'uid': string | null;
|
|
7983
|
+
/**
|
|
7984
|
+
*
|
|
7985
|
+
* @type {MetaDataPasses}
|
|
7986
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
7987
|
+
*/
|
|
7988
|
+
'metadata_resident'?: MetaDataPasses;
|
|
7733
7989
|
/**
|
|
7734
7990
|
*
|
|
7735
7991
|
* @type {string}
|
|
@@ -7918,6 +8174,12 @@ export interface WrappedResponseShowVisitorResponseData {
|
|
|
7918
8174
|
* @memberof WrappedResponseShowVisitorResponseData
|
|
7919
8175
|
*/
|
|
7920
8176
|
'updated_at': string;
|
|
8177
|
+
/**
|
|
8178
|
+
*
|
|
8179
|
+
* @type {string}
|
|
8180
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
8181
|
+
*/
|
|
8182
|
+
'invite_id'?: string | null;
|
|
7921
8183
|
}
|
|
7922
8184
|
/**
|
|
7923
8185
|
*
|
|
@@ -9045,6 +9307,41 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
9045
9307
|
options: localVarRequestOptions,
|
|
9046
9308
|
};
|
|
9047
9309
|
},
|
|
9310
|
+
/**
|
|
9311
|
+
*
|
|
9312
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
9313
|
+
* @param {*} [options] Override http request option.
|
|
9314
|
+
* @throws {RequiredError}
|
|
9315
|
+
*/
|
|
9316
|
+
integrationsFsMembersResidentCreate: async (createResidenceFSMembersBody: CreateResidenceFSMembersBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
9317
|
+
// verify required parameter 'createResidenceFSMembersBody' is not null or undefined
|
|
9318
|
+
assertParamExists('integrationsFsMembersResidentCreate', 'createResidenceFSMembersBody', createResidenceFSMembersBody)
|
|
9319
|
+
const localVarPath = `/integrations/fs/members/resident`;
|
|
9320
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
9321
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
9322
|
+
let baseOptions;
|
|
9323
|
+
if (configuration) {
|
|
9324
|
+
baseOptions = configuration.baseOptions;
|
|
9325
|
+
}
|
|
9326
|
+
|
|
9327
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
9328
|
+
const localVarHeaderParameter = {} as any;
|
|
9329
|
+
const localVarQueryParameter = {} as any;
|
|
9330
|
+
|
|
9331
|
+
|
|
9332
|
+
|
|
9333
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
9334
|
+
|
|
9335
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9336
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
9337
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
9338
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createResidenceFSMembersBody, localVarRequestOptions, configuration)
|
|
9339
|
+
|
|
9340
|
+
return {
|
|
9341
|
+
url: toPathString(localVarUrlObj),
|
|
9342
|
+
options: localVarRequestOptions,
|
|
9343
|
+
};
|
|
9344
|
+
},
|
|
9048
9345
|
/**
|
|
9049
9346
|
*
|
|
9050
9347
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -9773,12 +10070,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
9773
10070
|
/**
|
|
9774
10071
|
*
|
|
9775
10072
|
* @param {string} id
|
|
9776
|
-
* @param {ParkingReservationStatus} [status]
|
|
9777
|
-
* @param {string} [xAccountId]
|
|
9778
10073
|
* @param {*} [options] Override http request option.
|
|
9779
10074
|
* @throws {RequiredError}
|
|
9780
10075
|
*/
|
|
9781
|
-
parkingReservationsListDetail: async (id: string,
|
|
10076
|
+
parkingReservationsListDetail: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
9782
10077
|
// verify required parameter 'id' is not null or undefined
|
|
9783
10078
|
assertParamExists('parkingReservationsListDetail', 'id', id)
|
|
9784
10079
|
const localVarPath = `/parking_reservations/{id}`
|
|
@@ -9794,14 +10089,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
9794
10089
|
const localVarHeaderParameter = {} as any;
|
|
9795
10090
|
const localVarQueryParameter = {} as any;
|
|
9796
10091
|
|
|
9797
|
-
if (status !== undefined) {
|
|
9798
|
-
localVarQueryParameter['status'] = status;
|
|
9799
|
-
}
|
|
9800
|
-
|
|
9801
|
-
if (xAccountId != null) {
|
|
9802
|
-
localVarHeaderParameter['x-account-id'] = String(xAccountId);
|
|
9803
|
-
}
|
|
9804
|
-
|
|
9805
10092
|
|
|
9806
10093
|
|
|
9807
10094
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -9849,11 +10136,24 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
9849
10136
|
},
|
|
9850
10137
|
/**
|
|
9851
10138
|
*
|
|
10139
|
+
* @param {string} tenantId
|
|
10140
|
+
* @param {number} memberTypeId
|
|
10141
|
+
* @param {number} departmentId
|
|
10142
|
+
* @param {number} vehicleTypeId
|
|
9852
10143
|
* @param {*} [options] Override http request option.
|
|
9853
10144
|
* @throws {RequiredError}
|
|
9854
10145
|
*/
|
|
9855
|
-
|
|
9856
|
-
|
|
10146
|
+
parkingResidentialRedemptionRatesIndex: async (tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10147
|
+
// verify required parameter 'tenantId' is not null or undefined
|
|
10148
|
+
assertParamExists('parkingResidentialRedemptionRatesIndex', 'tenantId', tenantId)
|
|
10149
|
+
// verify required parameter 'memberTypeId' is not null or undefined
|
|
10150
|
+
assertParamExists('parkingResidentialRedemptionRatesIndex', 'memberTypeId', memberTypeId)
|
|
10151
|
+
// verify required parameter 'departmentId' is not null or undefined
|
|
10152
|
+
assertParamExists('parkingResidentialRedemptionRatesIndex', 'departmentId', departmentId)
|
|
10153
|
+
// verify required parameter 'vehicleTypeId' is not null or undefined
|
|
10154
|
+
assertParamExists('parkingResidentialRedemptionRatesIndex', 'vehicleTypeId', vehicleTypeId)
|
|
10155
|
+
const localVarPath = `/members/{tenantId}/parking_residential_redemption_rates`
|
|
10156
|
+
.replace(`{${"tenantId"}}`, encodeURIComponent(String(tenantId)));
|
|
9857
10157
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
9858
10158
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
9859
10159
|
let baseOptions;
|
|
@@ -9865,11 +10165,134 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
9865
10165
|
const localVarHeaderParameter = {} as any;
|
|
9866
10166
|
const localVarQueryParameter = {} as any;
|
|
9867
10167
|
|
|
10168
|
+
if (memberTypeId !== undefined) {
|
|
10169
|
+
localVarQueryParameter['member_type_id'] = memberTypeId;
|
|
10170
|
+
}
|
|
9868
10171
|
|
|
9869
|
-
|
|
9870
|
-
|
|
9871
|
-
|
|
9872
|
-
|
|
10172
|
+
if (departmentId !== undefined) {
|
|
10173
|
+
localVarQueryParameter['department_id'] = departmentId;
|
|
10174
|
+
}
|
|
10175
|
+
|
|
10176
|
+
if (vehicleTypeId !== undefined) {
|
|
10177
|
+
localVarQueryParameter['vehicle_type_id'] = vehicleTypeId;
|
|
10178
|
+
}
|
|
10179
|
+
|
|
10180
|
+
|
|
10181
|
+
|
|
10182
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10183
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10184
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
10185
|
+
|
|
10186
|
+
return {
|
|
10187
|
+
url: toPathString(localVarUrlObj),
|
|
10188
|
+
options: localVarRequestOptions,
|
|
10189
|
+
};
|
|
10190
|
+
},
|
|
10191
|
+
/**
|
|
10192
|
+
*
|
|
10193
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
10194
|
+
* @param {string} id
|
|
10195
|
+
* @param {*} [options] Override http request option.
|
|
10196
|
+
* @throws {RequiredError}
|
|
10197
|
+
*/
|
|
10198
|
+
parkingResidentialTicketsIndex: async (type: ParkingResidentialTicketsIndexTypeEnum, id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10199
|
+
// verify required parameter 'type' is not null or undefined
|
|
10200
|
+
assertParamExists('parkingResidentialTicketsIndex', 'type', type)
|
|
10201
|
+
// verify required parameter 'id' is not null or undefined
|
|
10202
|
+
assertParamExists('parkingResidentialTicketsIndex', 'id', id)
|
|
10203
|
+
const localVarPath = `/parking_tickets/residential`;
|
|
10204
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10205
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10206
|
+
let baseOptions;
|
|
10207
|
+
if (configuration) {
|
|
10208
|
+
baseOptions = configuration.baseOptions;
|
|
10209
|
+
}
|
|
10210
|
+
|
|
10211
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
10212
|
+
const localVarHeaderParameter = {} as any;
|
|
10213
|
+
const localVarQueryParameter = {} as any;
|
|
10214
|
+
|
|
10215
|
+
if (type !== undefined) {
|
|
10216
|
+
localVarQueryParameter['type'] = type;
|
|
10217
|
+
}
|
|
10218
|
+
|
|
10219
|
+
if (id !== undefined) {
|
|
10220
|
+
localVarQueryParameter['id'] = id;
|
|
10221
|
+
}
|
|
10222
|
+
|
|
10223
|
+
|
|
10224
|
+
|
|
10225
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10226
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10227
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
10228
|
+
|
|
10229
|
+
return {
|
|
10230
|
+
url: toPathString(localVarUrlObj),
|
|
10231
|
+
options: localVarRequestOptions,
|
|
10232
|
+
};
|
|
10233
|
+
},
|
|
10234
|
+
/**
|
|
10235
|
+
*
|
|
10236
|
+
* @param {string} logId
|
|
10237
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
10238
|
+
* @param {*} [options] Override http request option.
|
|
10239
|
+
* @throws {RequiredError}
|
|
10240
|
+
*/
|
|
10241
|
+
parkingResidentialTicketsRedeem: async (logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10242
|
+
// verify required parameter 'logId' is not null or undefined
|
|
10243
|
+
assertParamExists('parkingResidentialTicketsRedeem', 'logId', logId)
|
|
10244
|
+
// verify required parameter 'parkingTicketsRedeemBodyResident' is not null or undefined
|
|
10245
|
+
assertParamExists('parkingResidentialTicketsRedeem', 'parkingTicketsRedeemBodyResident', parkingTicketsRedeemBodyResident)
|
|
10246
|
+
const localVarPath = `/parking_tickets/{log_id}/redeem-residential`
|
|
10247
|
+
.replace(`{${"log_id"}}`, encodeURIComponent(String(logId)));
|
|
10248
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10249
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10250
|
+
let baseOptions;
|
|
10251
|
+
if (configuration) {
|
|
10252
|
+
baseOptions = configuration.baseOptions;
|
|
10253
|
+
}
|
|
10254
|
+
|
|
10255
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
10256
|
+
const localVarHeaderParameter = {} as any;
|
|
10257
|
+
const localVarQueryParameter = {} as any;
|
|
10258
|
+
|
|
10259
|
+
|
|
10260
|
+
|
|
10261
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
10262
|
+
|
|
10263
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10264
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10265
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
10266
|
+
localVarRequestOptions.data = serializeDataIfNeeded(parkingTicketsRedeemBodyResident, localVarRequestOptions, configuration)
|
|
10267
|
+
|
|
10268
|
+
return {
|
|
10269
|
+
url: toPathString(localVarUrlObj),
|
|
10270
|
+
options: localVarRequestOptions,
|
|
10271
|
+
};
|
|
10272
|
+
},
|
|
10273
|
+
/**
|
|
10274
|
+
*
|
|
10275
|
+
* @param {*} [options] Override http request option.
|
|
10276
|
+
* @throws {RequiredError}
|
|
10277
|
+
*/
|
|
10278
|
+
parkingSpacesList: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10279
|
+
const localVarPath = `/parking_spaces`;
|
|
10280
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10281
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10282
|
+
let baseOptions;
|
|
10283
|
+
if (configuration) {
|
|
10284
|
+
baseOptions = configuration.baseOptions;
|
|
10285
|
+
}
|
|
10286
|
+
|
|
10287
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
10288
|
+
const localVarHeaderParameter = {} as any;
|
|
10289
|
+
const localVarQueryParameter = {} as any;
|
|
10290
|
+
|
|
10291
|
+
|
|
10292
|
+
|
|
10293
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10294
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10295
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
9873
10296
|
|
|
9874
10297
|
return {
|
|
9875
10298
|
url: toPathString(localVarUrlObj),
|
|
@@ -10467,6 +10890,35 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
10467
10890
|
|
|
10468
10891
|
|
|
10469
10892
|
|
|
10893
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10894
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10895
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
10896
|
+
|
|
10897
|
+
return {
|
|
10898
|
+
url: toPathString(localVarUrlObj),
|
|
10899
|
+
options: localVarRequestOptions,
|
|
10900
|
+
};
|
|
10901
|
+
},
|
|
10902
|
+
/**
|
|
10903
|
+
*
|
|
10904
|
+
* @param {*} [options] Override http request option.
|
|
10905
|
+
* @throws {RequiredError}
|
|
10906
|
+
*/
|
|
10907
|
+
towersOutdoorindex: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10908
|
+
const localVarPath = `/towers/outdoor`;
|
|
10909
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10910
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10911
|
+
let baseOptions;
|
|
10912
|
+
if (configuration) {
|
|
10913
|
+
baseOptions = configuration.baseOptions;
|
|
10914
|
+
}
|
|
10915
|
+
|
|
10916
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
10917
|
+
const localVarHeaderParameter = {} as any;
|
|
10918
|
+
const localVarQueryParameter = {} as any;
|
|
10919
|
+
|
|
10920
|
+
|
|
10921
|
+
|
|
10470
10922
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10471
10923
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10472
10924
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -10646,6 +11098,41 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
10646
11098
|
options: localVarRequestOptions,
|
|
10647
11099
|
};
|
|
10648
11100
|
},
|
|
11101
|
+
/**
|
|
11102
|
+
*
|
|
11103
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
11104
|
+
* @param {*} [options] Override http request option.
|
|
11105
|
+
* @throws {RequiredError}
|
|
11106
|
+
*/
|
|
11107
|
+
visitorsResidentCreate: async (createVisitorResidentBody: CreateVisitorResidentBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
11108
|
+
// verify required parameter 'createVisitorResidentBody' is not null or undefined
|
|
11109
|
+
assertParamExists('visitorsResidentCreate', 'createVisitorResidentBody', createVisitorResidentBody)
|
|
11110
|
+
const localVarPath = `/visitors/resident`;
|
|
11111
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11112
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11113
|
+
let baseOptions;
|
|
11114
|
+
if (configuration) {
|
|
11115
|
+
baseOptions = configuration.baseOptions;
|
|
11116
|
+
}
|
|
11117
|
+
|
|
11118
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
11119
|
+
const localVarHeaderParameter = {} as any;
|
|
11120
|
+
const localVarQueryParameter = {} as any;
|
|
11121
|
+
|
|
11122
|
+
|
|
11123
|
+
|
|
11124
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11125
|
+
|
|
11126
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11127
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11128
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
11129
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createVisitorResidentBody, localVarRequestOptions, configuration)
|
|
11130
|
+
|
|
11131
|
+
return {
|
|
11132
|
+
url: toPathString(localVarUrlObj),
|
|
11133
|
+
options: localVarRequestOptions,
|
|
11134
|
+
};
|
|
11135
|
+
},
|
|
10649
11136
|
/**
|
|
10650
11137
|
*
|
|
10651
11138
|
* @param {string} id
|
|
@@ -10889,6 +11376,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
10889
11376
|
const localVarAxiosArgs = await localVarAxiosParamCreator.integrationsFsMembersDelete(destroyFSMembers, options);
|
|
10890
11377
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
10891
11378
|
},
|
|
11379
|
+
/**
|
|
11380
|
+
*
|
|
11381
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
11382
|
+
* @param {*} [options] Override http request option.
|
|
11383
|
+
* @throws {RequiredError}
|
|
11384
|
+
*/
|
|
11385
|
+
async integrationsFsMembersResidentCreate(createResidenceFSMembersBody: CreateResidenceFSMembersBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateMembersResponse>> {
|
|
11386
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options);
|
|
11387
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11388
|
+
},
|
|
10892
11389
|
/**
|
|
10893
11390
|
*
|
|
10894
11391
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -11091,13 +11588,11 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
11091
11588
|
/**
|
|
11092
11589
|
*
|
|
11093
11590
|
* @param {string} id
|
|
11094
|
-
* @param {ParkingReservationStatus} [status]
|
|
11095
|
-
* @param {string} [xAccountId]
|
|
11096
11591
|
* @param {*} [options] Override http request option.
|
|
11097
11592
|
* @throws {RequiredError}
|
|
11098
11593
|
*/
|
|
11099
|
-
async parkingReservationsListDetail(id: string,
|
|
11100
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingReservationsListDetail(id,
|
|
11594
|
+
async parkingReservationsListDetail(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseParkingReservationDetailResponse>> {
|
|
11595
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingReservationsListDetail(id, options);
|
|
11101
11596
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11102
11597
|
},
|
|
11103
11598
|
/**
|
|
@@ -11110,6 +11605,41 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
11110
11605
|
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingReservationsListShow(xAccountId, options);
|
|
11111
11606
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11112
11607
|
},
|
|
11608
|
+
/**
|
|
11609
|
+
*
|
|
11610
|
+
* @param {string} tenantId
|
|
11611
|
+
* @param {number} memberTypeId
|
|
11612
|
+
* @param {number} departmentId
|
|
11613
|
+
* @param {number} vehicleTypeId
|
|
11614
|
+
* @param {*} [options] Override http request option.
|
|
11615
|
+
* @throws {RequiredError}
|
|
11616
|
+
*/
|
|
11617
|
+
async parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingRedemptionRateResultArray>> {
|
|
11618
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options);
|
|
11619
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11620
|
+
},
|
|
11621
|
+
/**
|
|
11622
|
+
*
|
|
11623
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
11624
|
+
* @param {string} id
|
|
11625
|
+
* @param {*} [options] Override http request option.
|
|
11626
|
+
* @throws {RequiredError}
|
|
11627
|
+
*/
|
|
11628
|
+
async parkingResidentialTicketsIndex(type: ParkingResidentialTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketDataArray>> {
|
|
11629
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingResidentialTicketsIndex(type, id, options);
|
|
11630
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11631
|
+
},
|
|
11632
|
+
/**
|
|
11633
|
+
*
|
|
11634
|
+
* @param {string} logId
|
|
11635
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
11636
|
+
* @param {*} [options] Override http request option.
|
|
11637
|
+
* @throws {RequiredError}
|
|
11638
|
+
*/
|
|
11639
|
+
async parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketData>> {
|
|
11640
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options);
|
|
11641
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11642
|
+
},
|
|
11113
11643
|
/**
|
|
11114
11644
|
*
|
|
11115
11645
|
* @param {*} [options] Override http request option.
|
|
@@ -11289,6 +11819,15 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
11289
11819
|
const localVarAxiosArgs = await localVarAxiosParamCreator.towersIndex(options);
|
|
11290
11820
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11291
11821
|
},
|
|
11822
|
+
/**
|
|
11823
|
+
*
|
|
11824
|
+
* @param {*} [options] Override http request option.
|
|
11825
|
+
* @throws {RequiredError}
|
|
11826
|
+
*/
|
|
11827
|
+
async towersOutdoorindex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseOutdoorZoneResponseArray>> {
|
|
11828
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.towersOutdoorindex(options);
|
|
11829
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11830
|
+
},
|
|
11292
11831
|
/**
|
|
11293
11832
|
*
|
|
11294
11833
|
* @param {*} [options] Override http request option.
|
|
@@ -11339,6 +11878,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
11339
11878
|
const localVarAxiosArgs = await localVarAxiosParamCreator.visitorsDestroy(id, options);
|
|
11340
11879
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11341
11880
|
},
|
|
11881
|
+
/**
|
|
11882
|
+
*
|
|
11883
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
11884
|
+
* @param {*} [options] Override http request option.
|
|
11885
|
+
* @throws {RequiredError}
|
|
11886
|
+
*/
|
|
11887
|
+
async visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseCreateVisitorResponse>> {
|
|
11888
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.visitorsResidentCreate(createVisitorResidentBody, options);
|
|
11889
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11890
|
+
},
|
|
11342
11891
|
/**
|
|
11343
11892
|
*
|
|
11344
11893
|
* @param {string} id
|
|
@@ -11541,6 +12090,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
11541
12090
|
integrationsFsMembersDelete(destroyFSMembers: DestroyFSMembers, options?: any): AxiosPromise<DestroyMembersResponse> {
|
|
11542
12091
|
return localVarFp.integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(axios, basePath));
|
|
11543
12092
|
},
|
|
12093
|
+
/**
|
|
12094
|
+
*
|
|
12095
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
12096
|
+
* @param {*} [options] Override http request option.
|
|
12097
|
+
* @throws {RequiredError}
|
|
12098
|
+
*/
|
|
12099
|
+
integrationsFsMembersResidentCreate(createResidenceFSMembersBody: CreateResidenceFSMembersBody, options?: any): AxiosPromise<CreateMembersResponse> {
|
|
12100
|
+
return localVarFp.integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options).then((request) => request(axios, basePath));
|
|
12101
|
+
},
|
|
11544
12102
|
/**
|
|
11545
12103
|
*
|
|
11546
12104
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -11726,13 +12284,11 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
11726
12284
|
/**
|
|
11727
12285
|
*
|
|
11728
12286
|
* @param {string} id
|
|
11729
|
-
* @param {ParkingReservationStatus} [status]
|
|
11730
|
-
* @param {string} [xAccountId]
|
|
11731
12287
|
* @param {*} [options] Override http request option.
|
|
11732
12288
|
* @throws {RequiredError}
|
|
11733
12289
|
*/
|
|
11734
|
-
parkingReservationsListDetail(id: string,
|
|
11735
|
-
return localVarFp.parkingReservationsListDetail(id,
|
|
12290
|
+
parkingReservationsListDetail(id: string, options?: any): AxiosPromise<WrappedOneResponseParkingReservationDetailResponse> {
|
|
12291
|
+
return localVarFp.parkingReservationsListDetail(id, options).then((request) => request(axios, basePath));
|
|
11736
12292
|
},
|
|
11737
12293
|
/**
|
|
11738
12294
|
*
|
|
@@ -11743,6 +12299,38 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
11743
12299
|
parkingReservationsListShow(xAccountId?: string, options?: any): AxiosPromise<WrappedOneResponseParkingReservationReservedListResponseArray> {
|
|
11744
12300
|
return localVarFp.parkingReservationsListShow(xAccountId, options).then((request) => request(axios, basePath));
|
|
11745
12301
|
},
|
|
12302
|
+
/**
|
|
12303
|
+
*
|
|
12304
|
+
* @param {string} tenantId
|
|
12305
|
+
* @param {number} memberTypeId
|
|
12306
|
+
* @param {number} departmentId
|
|
12307
|
+
* @param {number} vehicleTypeId
|
|
12308
|
+
* @param {*} [options] Override http request option.
|
|
12309
|
+
* @throws {RequiredError}
|
|
12310
|
+
*/
|
|
12311
|
+
parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options?: any): AxiosPromise<WrappedResponseParkingRedemptionRateResultArray> {
|
|
12312
|
+
return localVarFp.parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options).then((request) => request(axios, basePath));
|
|
12313
|
+
},
|
|
12314
|
+
/**
|
|
12315
|
+
*
|
|
12316
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
12317
|
+
* @param {string} id
|
|
12318
|
+
* @param {*} [options] Override http request option.
|
|
12319
|
+
* @throws {RequiredError}
|
|
12320
|
+
*/
|
|
12321
|
+
parkingResidentialTicketsIndex(type: ParkingResidentialTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray> {
|
|
12322
|
+
return localVarFp.parkingResidentialTicketsIndex(type, id, options).then((request) => request(axios, basePath));
|
|
12323
|
+
},
|
|
12324
|
+
/**
|
|
12325
|
+
*
|
|
12326
|
+
* @param {string} logId
|
|
12327
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
12328
|
+
* @param {*} [options] Override http request option.
|
|
12329
|
+
* @throws {RequiredError}
|
|
12330
|
+
*/
|
|
12331
|
+
parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: any): AxiosPromise<WrappedResponseParkingTicketData> {
|
|
12332
|
+
return localVarFp.parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options).then((request) => request(axios, basePath));
|
|
12333
|
+
},
|
|
11746
12334
|
/**
|
|
11747
12335
|
*
|
|
11748
12336
|
* @param {*} [options] Override http request option.
|
|
@@ -11905,6 +12493,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
11905
12493
|
towersIndex(options?: any): AxiosPromise<WrappedResponseTowerIndexResponse> {
|
|
11906
12494
|
return localVarFp.towersIndex(options).then((request) => request(axios, basePath));
|
|
11907
12495
|
},
|
|
12496
|
+
/**
|
|
12497
|
+
*
|
|
12498
|
+
* @param {*} [options] Override http request option.
|
|
12499
|
+
* @throws {RequiredError}
|
|
12500
|
+
*/
|
|
12501
|
+
towersOutdoorindex(options?: any): AxiosPromise<WrappedResponseOutdoorZoneResponseArray> {
|
|
12502
|
+
return localVarFp.towersOutdoorindex(options).then((request) => request(axios, basePath));
|
|
12503
|
+
},
|
|
11908
12504
|
/**
|
|
11909
12505
|
*
|
|
11910
12506
|
* @param {*} [options] Override http request option.
|
|
@@ -11950,6 +12546,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
11950
12546
|
visitorsDestroy(id: string, options?: any): AxiosPromise<WrappedResponseNull> {
|
|
11951
12547
|
return localVarFp.visitorsDestroy(id, options).then((request) => request(axios, basePath));
|
|
11952
12548
|
},
|
|
12549
|
+
/**
|
|
12550
|
+
*
|
|
12551
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
12552
|
+
* @param {*} [options] Override http request option.
|
|
12553
|
+
* @throws {RequiredError}
|
|
12554
|
+
*/
|
|
12555
|
+
visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: any): AxiosPromise<WrappedResponseCreateVisitorResponse> {
|
|
12556
|
+
return localVarFp.visitorsResidentCreate(createVisitorResidentBody, options).then((request) => request(axios, basePath));
|
|
12557
|
+
},
|
|
11953
12558
|
/**
|
|
11954
12559
|
*
|
|
11955
12560
|
* @param {string} id
|
|
@@ -12187,6 +12792,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
12187
12792
|
return DefaultApiFp(this.configuration).integrationsFsMembersDelete(destroyFSMembers, options).then((request) => request(this.axios, this.basePath));
|
|
12188
12793
|
}
|
|
12189
12794
|
|
|
12795
|
+
/**
|
|
12796
|
+
*
|
|
12797
|
+
* @param {CreateResidenceFSMembersBody} createResidenceFSMembersBody
|
|
12798
|
+
* @param {*} [options] Override http request option.
|
|
12799
|
+
* @throws {RequiredError}
|
|
12800
|
+
* @memberof DefaultApi
|
|
12801
|
+
*/
|
|
12802
|
+
public integrationsFsMembersResidentCreate(createResidenceFSMembersBody: CreateResidenceFSMembersBody, options?: AxiosRequestConfig) {
|
|
12803
|
+
return DefaultApiFp(this.configuration).integrationsFsMembersResidentCreate(createResidenceFSMembersBody, options).then((request) => request(this.axios, this.basePath));
|
|
12804
|
+
}
|
|
12805
|
+
|
|
12190
12806
|
/**
|
|
12191
12807
|
*
|
|
12192
12808
|
* @param {IssueTypeRequest} issueTypeRequest
|
|
@@ -12406,14 +13022,12 @@ export class DefaultApi extends BaseAPI {
|
|
|
12406
13022
|
/**
|
|
12407
13023
|
*
|
|
12408
13024
|
* @param {string} id
|
|
12409
|
-
* @param {ParkingReservationStatus} [status]
|
|
12410
|
-
* @param {string} [xAccountId]
|
|
12411
13025
|
* @param {*} [options] Override http request option.
|
|
12412
13026
|
* @throws {RequiredError}
|
|
12413
13027
|
* @memberof DefaultApi
|
|
12414
13028
|
*/
|
|
12415
|
-
public parkingReservationsListDetail(id: string,
|
|
12416
|
-
return DefaultApiFp(this.configuration).parkingReservationsListDetail(id,
|
|
13029
|
+
public parkingReservationsListDetail(id: string, options?: AxiosRequestConfig) {
|
|
13030
|
+
return DefaultApiFp(this.configuration).parkingReservationsListDetail(id, options).then((request) => request(this.axios, this.basePath));
|
|
12417
13031
|
}
|
|
12418
13032
|
|
|
12419
13033
|
/**
|
|
@@ -12427,6 +13041,44 @@ export class DefaultApi extends BaseAPI {
|
|
|
12427
13041
|
return DefaultApiFp(this.configuration).parkingReservationsListShow(xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
12428
13042
|
}
|
|
12429
13043
|
|
|
13044
|
+
/**
|
|
13045
|
+
*
|
|
13046
|
+
* @param {string} tenantId
|
|
13047
|
+
* @param {number} memberTypeId
|
|
13048
|
+
* @param {number} departmentId
|
|
13049
|
+
* @param {number} vehicleTypeId
|
|
13050
|
+
* @param {*} [options] Override http request option.
|
|
13051
|
+
* @throws {RequiredError}
|
|
13052
|
+
* @memberof DefaultApi
|
|
13053
|
+
*/
|
|
13054
|
+
public parkingResidentialRedemptionRatesIndex(tenantId: string, memberTypeId: number, departmentId: number, vehicleTypeId: number, options?: AxiosRequestConfig) {
|
|
13055
|
+
return DefaultApiFp(this.configuration).parkingResidentialRedemptionRatesIndex(tenantId, memberTypeId, departmentId, vehicleTypeId, options).then((request) => request(this.axios, this.basePath));
|
|
13056
|
+
}
|
|
13057
|
+
|
|
13058
|
+
/**
|
|
13059
|
+
*
|
|
13060
|
+
* @param {ParkingResidentialTicketsIndexTypeEnum} type
|
|
13061
|
+
* @param {string} id
|
|
13062
|
+
* @param {*} [options] Override http request option.
|
|
13063
|
+
* @throws {RequiredError}
|
|
13064
|
+
* @memberof DefaultApi
|
|
13065
|
+
*/
|
|
13066
|
+
public parkingResidentialTicketsIndex(type: ParkingResidentialTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig) {
|
|
13067
|
+
return DefaultApiFp(this.configuration).parkingResidentialTicketsIndex(type, id, options).then((request) => request(this.axios, this.basePath));
|
|
13068
|
+
}
|
|
13069
|
+
|
|
13070
|
+
/**
|
|
13071
|
+
*
|
|
13072
|
+
* @param {string} logId
|
|
13073
|
+
* @param {ParkingTicketsRedeemBodyResident} parkingTicketsRedeemBodyResident
|
|
13074
|
+
* @param {*} [options] Override http request option.
|
|
13075
|
+
* @throws {RequiredError}
|
|
13076
|
+
* @memberof DefaultApi
|
|
13077
|
+
*/
|
|
13078
|
+
public parkingResidentialTicketsRedeem(logId: string, parkingTicketsRedeemBodyResident: ParkingTicketsRedeemBodyResident, options?: AxiosRequestConfig) {
|
|
13079
|
+
return DefaultApiFp(this.configuration).parkingResidentialTicketsRedeem(logId, parkingTicketsRedeemBodyResident, options).then((request) => request(this.axios, this.basePath));
|
|
13080
|
+
}
|
|
13081
|
+
|
|
12430
13082
|
/**
|
|
12431
13083
|
*
|
|
12432
13084
|
* @param {*} [options] Override http request option.
|
|
@@ -12623,6 +13275,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
12623
13275
|
return DefaultApiFp(this.configuration).towersIndex(options).then((request) => request(this.axios, this.basePath));
|
|
12624
13276
|
}
|
|
12625
13277
|
|
|
13278
|
+
/**
|
|
13279
|
+
*
|
|
13280
|
+
* @param {*} [options] Override http request option.
|
|
13281
|
+
* @throws {RequiredError}
|
|
13282
|
+
* @memberof DefaultApi
|
|
13283
|
+
*/
|
|
13284
|
+
public towersOutdoorindex(options?: AxiosRequestConfig) {
|
|
13285
|
+
return DefaultApiFp(this.configuration).towersOutdoorindex(options).then((request) => request(this.axios, this.basePath));
|
|
13286
|
+
}
|
|
13287
|
+
|
|
12626
13288
|
/**
|
|
12627
13289
|
*
|
|
12628
13290
|
* @param {*} [options] Override http request option.
|
|
@@ -12678,6 +13340,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
12678
13340
|
return DefaultApiFp(this.configuration).visitorsDestroy(id, options).then((request) => request(this.axios, this.basePath));
|
|
12679
13341
|
}
|
|
12680
13342
|
|
|
13343
|
+
/**
|
|
13344
|
+
*
|
|
13345
|
+
* @param {CreateVisitorResidentBody} createVisitorResidentBody
|
|
13346
|
+
* @param {*} [options] Override http request option.
|
|
13347
|
+
* @throws {RequiredError}
|
|
13348
|
+
* @memberof DefaultApi
|
|
13349
|
+
*/
|
|
13350
|
+
public visitorsResidentCreate(createVisitorResidentBody: CreateVisitorResidentBody, options?: AxiosRequestConfig) {
|
|
13351
|
+
return DefaultApiFp(this.configuration).visitorsResidentCreate(createVisitorResidentBody, options).then((request) => request(this.axios, this.basePath));
|
|
13352
|
+
}
|
|
13353
|
+
|
|
12681
13354
|
/**
|
|
12682
13355
|
*
|
|
12683
13356
|
* @param {string} id
|
|
@@ -12690,6 +13363,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
12690
13363
|
}
|
|
12691
13364
|
}
|
|
12692
13365
|
|
|
13366
|
+
/**
|
|
13367
|
+
* @export
|
|
13368
|
+
*/
|
|
13369
|
+
export const ParkingResidentialTicketsIndexTypeEnum = {
|
|
13370
|
+
LogId: 'log_id',
|
|
13371
|
+
TicketNumber: 'ticket_number',
|
|
13372
|
+
PlateNo: 'plate_no',
|
|
13373
|
+
InviteId: 'invite_id',
|
|
13374
|
+
MemberId: 'member_id'
|
|
13375
|
+
} as const;
|
|
13376
|
+
export type ParkingResidentialTicketsIndexTypeEnum = typeof ParkingResidentialTicketsIndexTypeEnum[keyof typeof ParkingResidentialTicketsIndexTypeEnum];
|
|
12693
13377
|
/**
|
|
12694
13378
|
* @export
|
|
12695
13379
|
*/
|