ob-bms-sdk 0.0.99 → 0.0.100
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 +1708 -793
- package/dist/api/api.d.ts +938 -125
- package/dist/api/api.js +171 -0
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -874,6 +874,25 @@ export interface BuildingAccessgLogQuery {
|
|
|
874
874
|
}
|
|
875
875
|
|
|
876
876
|
|
|
877
|
+
/**
|
|
878
|
+
*
|
|
879
|
+
* @export
|
|
880
|
+
* @interface CallingBody
|
|
881
|
+
*/
|
|
882
|
+
export interface CallingBody {
|
|
883
|
+
/**
|
|
884
|
+
*
|
|
885
|
+
* @type {number}
|
|
886
|
+
* @memberof CallingBody
|
|
887
|
+
*/
|
|
888
|
+
'drop_off_station_id': number;
|
|
889
|
+
/**
|
|
890
|
+
*
|
|
891
|
+
* @type {number}
|
|
892
|
+
* @memberof CallingBody
|
|
893
|
+
*/
|
|
894
|
+
'valet_car_id': number;
|
|
895
|
+
}
|
|
877
896
|
/**
|
|
878
897
|
*
|
|
879
898
|
* @export
|
|
@@ -1216,6 +1235,67 @@ export interface DestroyMembersResponse {
|
|
|
1216
1235
|
*/
|
|
1217
1236
|
'error': { [key: string]: any; } | null;
|
|
1218
1237
|
}
|
|
1238
|
+
/**
|
|
1239
|
+
*
|
|
1240
|
+
* @export
|
|
1241
|
+
* @interface DropOffStation
|
|
1242
|
+
*/
|
|
1243
|
+
export interface DropOffStation {
|
|
1244
|
+
/**
|
|
1245
|
+
*
|
|
1246
|
+
* @type {number}
|
|
1247
|
+
* @memberof DropOffStation
|
|
1248
|
+
*/
|
|
1249
|
+
'id': number;
|
|
1250
|
+
/**
|
|
1251
|
+
*
|
|
1252
|
+
* @type {string}
|
|
1253
|
+
* @memberof DropOffStation
|
|
1254
|
+
*/
|
|
1255
|
+
'createdAt': string;
|
|
1256
|
+
/**
|
|
1257
|
+
*
|
|
1258
|
+
* @type {string}
|
|
1259
|
+
* @memberof DropOffStation
|
|
1260
|
+
*/
|
|
1261
|
+
'updatedAt': string;
|
|
1262
|
+
/**
|
|
1263
|
+
*
|
|
1264
|
+
* @type {string}
|
|
1265
|
+
* @memberof DropOffStation
|
|
1266
|
+
*/
|
|
1267
|
+
'deletedAt': string;
|
|
1268
|
+
/**
|
|
1269
|
+
*
|
|
1270
|
+
* @type {string}
|
|
1271
|
+
* @memberof DropOffStation
|
|
1272
|
+
*/
|
|
1273
|
+
'name': string;
|
|
1274
|
+
/**
|
|
1275
|
+
*
|
|
1276
|
+
* @type {string}
|
|
1277
|
+
* @memberof DropOffStation
|
|
1278
|
+
*/
|
|
1279
|
+
'description': string;
|
|
1280
|
+
/**
|
|
1281
|
+
*
|
|
1282
|
+
* @type {string}
|
|
1283
|
+
* @memberof DropOffStation
|
|
1284
|
+
*/
|
|
1285
|
+
'location': string;
|
|
1286
|
+
/**
|
|
1287
|
+
*
|
|
1288
|
+
* @type {boolean}
|
|
1289
|
+
* @memberof DropOffStation
|
|
1290
|
+
*/
|
|
1291
|
+
'active': boolean;
|
|
1292
|
+
/**
|
|
1293
|
+
*
|
|
1294
|
+
* @type {boolean}
|
|
1295
|
+
* @memberof DropOffStation
|
|
1296
|
+
*/
|
|
1297
|
+
'isUsed': boolean;
|
|
1298
|
+
}
|
|
1219
1299
|
/**
|
|
1220
1300
|
*
|
|
1221
1301
|
* @export
|
|
@@ -1506,6 +1586,31 @@ export interface HolidayResponse {
|
|
|
1506
1586
|
*/
|
|
1507
1587
|
'holiday_description_thai': string;
|
|
1508
1588
|
}
|
|
1589
|
+
/**
|
|
1590
|
+
*
|
|
1591
|
+
* @export
|
|
1592
|
+
* @interface Image
|
|
1593
|
+
*/
|
|
1594
|
+
export interface Image {
|
|
1595
|
+
/**
|
|
1596
|
+
*
|
|
1597
|
+
* @type {string}
|
|
1598
|
+
* @memberof Image
|
|
1599
|
+
*/
|
|
1600
|
+
'createdAt': string;
|
|
1601
|
+
/**
|
|
1602
|
+
*
|
|
1603
|
+
* @type {string}
|
|
1604
|
+
* @memberof Image
|
|
1605
|
+
*/
|
|
1606
|
+
'url': string;
|
|
1607
|
+
/**
|
|
1608
|
+
*
|
|
1609
|
+
* @type {number}
|
|
1610
|
+
* @memberof Image
|
|
1611
|
+
*/
|
|
1612
|
+
'valetParkingId': number;
|
|
1613
|
+
}
|
|
1509
1614
|
/**
|
|
1510
1615
|
*
|
|
1511
1616
|
* @export
|
|
@@ -3804,6 +3909,73 @@ export interface SpotTypeData {
|
|
|
3804
3909
|
*/
|
|
3805
3910
|
'total_spots'?: number;
|
|
3806
3911
|
}
|
|
3912
|
+
/**
|
|
3913
|
+
*
|
|
3914
|
+
* @export
|
|
3915
|
+
* @interface Staff
|
|
3916
|
+
*/
|
|
3917
|
+
export interface Staff {
|
|
3918
|
+
/**
|
|
3919
|
+
*
|
|
3920
|
+
* @type {number}
|
|
3921
|
+
* @memberof Staff
|
|
3922
|
+
*/
|
|
3923
|
+
'id': number;
|
|
3924
|
+
/**
|
|
3925
|
+
*
|
|
3926
|
+
* @type {string}
|
|
3927
|
+
* @memberof Staff
|
|
3928
|
+
*/
|
|
3929
|
+
'createdAt': string;
|
|
3930
|
+
/**
|
|
3931
|
+
*
|
|
3932
|
+
* @type {string}
|
|
3933
|
+
* @memberof Staff
|
|
3934
|
+
*/
|
|
3935
|
+
'updatedAt': string;
|
|
3936
|
+
/**
|
|
3937
|
+
*
|
|
3938
|
+
* @type {string}
|
|
3939
|
+
* @memberof Staff
|
|
3940
|
+
*/
|
|
3941
|
+
'deletedAt': string;
|
|
3942
|
+
/**
|
|
3943
|
+
*
|
|
3944
|
+
* @type {string}
|
|
3945
|
+
* @memberof Staff
|
|
3946
|
+
*/
|
|
3947
|
+
'userName': string;
|
|
3948
|
+
/**
|
|
3949
|
+
*
|
|
3950
|
+
* @type {string}
|
|
3951
|
+
* @memberof Staff
|
|
3952
|
+
*/
|
|
3953
|
+
'pin': string;
|
|
3954
|
+
/**
|
|
3955
|
+
*
|
|
3956
|
+
* @type {string}
|
|
3957
|
+
* @memberof Staff
|
|
3958
|
+
*/
|
|
3959
|
+
'email': string;
|
|
3960
|
+
/**
|
|
3961
|
+
*
|
|
3962
|
+
* @type {string}
|
|
3963
|
+
* @memberof Staff
|
|
3964
|
+
*/
|
|
3965
|
+
'phoneNumber': string;
|
|
3966
|
+
/**
|
|
3967
|
+
*
|
|
3968
|
+
* @type {string}
|
|
3969
|
+
* @memberof Staff
|
|
3970
|
+
*/
|
|
3971
|
+
'displayName': string;
|
|
3972
|
+
/**
|
|
3973
|
+
*
|
|
3974
|
+
* @type {string}
|
|
3975
|
+
* @memberof Staff
|
|
3976
|
+
*/
|
|
3977
|
+
'role': string;
|
|
3978
|
+
}
|
|
3807
3979
|
/**
|
|
3808
3980
|
*
|
|
3809
3981
|
* @export
|
|
@@ -4247,1088 +4419,1378 @@ export interface UpsertHolidayResponseResult {
|
|
|
4247
4419
|
/**
|
|
4248
4420
|
*
|
|
4249
4421
|
* @export
|
|
4250
|
-
* @interface
|
|
4422
|
+
* @interface ValetParkingDetail
|
|
4251
4423
|
*/
|
|
4252
|
-
export interface
|
|
4424
|
+
export interface ValetParkingDetail {
|
|
4253
4425
|
/**
|
|
4254
4426
|
*
|
|
4255
4427
|
* @type {number}
|
|
4256
|
-
* @memberof
|
|
4428
|
+
* @memberof ValetParkingDetail
|
|
4257
4429
|
*/
|
|
4258
|
-
'
|
|
4430
|
+
'id': number;
|
|
4259
4431
|
/**
|
|
4260
4432
|
*
|
|
4261
4433
|
* @type {string}
|
|
4262
|
-
* @memberof
|
|
4434
|
+
* @memberof ValetParkingDetail
|
|
4263
4435
|
*/
|
|
4264
|
-
'
|
|
4436
|
+
'createdAt': string;
|
|
4265
4437
|
/**
|
|
4266
4438
|
*
|
|
4267
|
-
* @type {
|
|
4268
|
-
* @memberof
|
|
4439
|
+
* @type {string}
|
|
4440
|
+
* @memberof ValetParkingDetail
|
|
4269
4441
|
*/
|
|
4270
|
-
'
|
|
4442
|
+
'updatedAt': string;
|
|
4271
4443
|
/**
|
|
4272
4444
|
*
|
|
4273
|
-
* @type {
|
|
4274
|
-
* @memberof
|
|
4445
|
+
* @type {string}
|
|
4446
|
+
* @memberof ValetParkingDetail
|
|
4275
4447
|
*/
|
|
4276
|
-
'
|
|
4448
|
+
'deletedAt': string;
|
|
4277
4449
|
/**
|
|
4278
4450
|
*
|
|
4279
4451
|
* @type {string}
|
|
4280
|
-
* @memberof
|
|
4452
|
+
* @memberof ValetParkingDetail
|
|
4281
4453
|
*/
|
|
4282
|
-
'
|
|
4454
|
+
'code': string;
|
|
4283
4455
|
/**
|
|
4284
4456
|
*
|
|
4285
4457
|
* @type {string}
|
|
4286
|
-
* @memberof
|
|
4458
|
+
* @memberof ValetParkingDetail
|
|
4287
4459
|
*/
|
|
4288
|
-
'
|
|
4460
|
+
'status': string;
|
|
4289
4461
|
/**
|
|
4290
4462
|
*
|
|
4291
|
-
* @type {
|
|
4292
|
-
* @memberof
|
|
4463
|
+
* @type {string}
|
|
4464
|
+
* @memberof ValetParkingDetail
|
|
4293
4465
|
*/
|
|
4294
|
-
'
|
|
4295
|
-
}
|
|
4296
|
-
/**
|
|
4297
|
-
*
|
|
4298
|
-
* @export
|
|
4299
|
-
* @interface VisitorData
|
|
4300
|
-
*/
|
|
4301
|
-
export interface VisitorData {
|
|
4466
|
+
'name': string;
|
|
4302
4467
|
/**
|
|
4303
4468
|
*
|
|
4304
4469
|
* @type {string}
|
|
4305
|
-
* @memberof
|
|
4470
|
+
* @memberof ValetParkingDetail
|
|
4306
4471
|
*/
|
|
4307
|
-
'
|
|
4472
|
+
'phoneNumber': string;
|
|
4308
4473
|
/**
|
|
4309
4474
|
*
|
|
4310
4475
|
* @type {string}
|
|
4311
|
-
* @memberof
|
|
4476
|
+
* @memberof ValetParkingDetail
|
|
4312
4477
|
*/
|
|
4313
|
-
'
|
|
4478
|
+
'incomingTime': string;
|
|
4314
4479
|
/**
|
|
4315
4480
|
*
|
|
4316
4481
|
* @type {string}
|
|
4317
|
-
* @memberof
|
|
4482
|
+
* @memberof ValetParkingDetail
|
|
4318
4483
|
*/
|
|
4319
|
-
'
|
|
4484
|
+
'outgoingTime': string;
|
|
4320
4485
|
/**
|
|
4321
4486
|
*
|
|
4322
4487
|
* @type {string}
|
|
4323
|
-
* @memberof
|
|
4488
|
+
* @memberof ValetParkingDetail
|
|
4324
4489
|
*/
|
|
4325
|
-
'
|
|
4490
|
+
'licensePlate': string;
|
|
4326
4491
|
/**
|
|
4327
4492
|
*
|
|
4328
4493
|
* @type {string}
|
|
4329
|
-
* @memberof
|
|
4494
|
+
* @memberof ValetParkingDetail
|
|
4330
4495
|
*/
|
|
4331
|
-
'
|
|
4496
|
+
'licensePlateProvince': string;
|
|
4332
4497
|
/**
|
|
4333
4498
|
*
|
|
4334
4499
|
* @type {string}
|
|
4335
|
-
* @memberof
|
|
4500
|
+
* @memberof ValetParkingDetail
|
|
4336
4501
|
*/
|
|
4337
|
-
'
|
|
4502
|
+
'keyCabinetId': string;
|
|
4338
4503
|
/**
|
|
4339
4504
|
*
|
|
4340
4505
|
* @type {string}
|
|
4341
|
-
* @memberof
|
|
4506
|
+
* @memberof ValetParkingDetail
|
|
4342
4507
|
*/
|
|
4343
|
-
'
|
|
4508
|
+
'staffParkedId': string;
|
|
4344
4509
|
/**
|
|
4345
4510
|
*
|
|
4346
4511
|
* @type {string}
|
|
4347
|
-
* @memberof
|
|
4512
|
+
* @memberof ValetParkingDetail
|
|
4348
4513
|
*/
|
|
4349
|
-
'
|
|
4514
|
+
'staffDeliverId': string;
|
|
4350
4515
|
/**
|
|
4351
4516
|
*
|
|
4352
4517
|
* @type {string}
|
|
4353
|
-
* @memberof
|
|
4518
|
+
* @memberof ValetParkingDetail
|
|
4354
4519
|
*/
|
|
4355
|
-
'
|
|
4356
|
-
}
|
|
4357
|
-
/**
|
|
4358
|
-
*
|
|
4359
|
-
* @export
|
|
4360
|
-
* @interface VisitorPassedPayload
|
|
4361
|
-
*/
|
|
4362
|
-
export interface VisitorPassedPayload {
|
|
4520
|
+
'userId': string;
|
|
4363
4521
|
/**
|
|
4364
4522
|
*
|
|
4365
4523
|
* @type {string}
|
|
4366
|
-
* @memberof
|
|
4524
|
+
* @memberof ValetParkingDetail
|
|
4367
4525
|
*/
|
|
4368
|
-
'
|
|
4526
|
+
'parkingSpotId': string;
|
|
4369
4527
|
/**
|
|
4370
4528
|
*
|
|
4371
4529
|
* @type {string}
|
|
4372
|
-
* @memberof
|
|
4530
|
+
* @memberof ValetParkingDetail
|
|
4373
4531
|
*/
|
|
4374
|
-
'
|
|
4532
|
+
'pickUpStationId': string;
|
|
4375
4533
|
/**
|
|
4376
4534
|
*
|
|
4377
|
-
* @type {
|
|
4378
|
-
* @memberof
|
|
4535
|
+
* @type {number}
|
|
4536
|
+
* @memberof ValetParkingDetail
|
|
4379
4537
|
*/
|
|
4380
|
-
'
|
|
4538
|
+
'dropOffStationId': number;
|
|
4381
4539
|
/**
|
|
4382
4540
|
*
|
|
4383
4541
|
* @type {string}
|
|
4384
|
-
* @memberof
|
|
4542
|
+
* @memberof ValetParkingDetail
|
|
4385
4543
|
*/
|
|
4386
|
-
'
|
|
4387
|
-
}
|
|
4388
|
-
/**
|
|
4389
|
-
*
|
|
4390
|
-
* @export
|
|
4391
|
-
* @interface VisitorPasses
|
|
4392
|
-
*/
|
|
4393
|
-
export interface VisitorPasses {
|
|
4544
|
+
'verifiedAt': string;
|
|
4394
4545
|
/**
|
|
4395
4546
|
*
|
|
4396
4547
|
* @type {string}
|
|
4397
|
-
* @memberof
|
|
4548
|
+
* @memberof ValetParkingDetail
|
|
4398
4549
|
*/
|
|
4399
|
-
'
|
|
4550
|
+
'staffVerifyId': string;
|
|
4400
4551
|
/**
|
|
4401
4552
|
*
|
|
4402
4553
|
* @type {string}
|
|
4403
|
-
* @memberof
|
|
4554
|
+
* @memberof ValetParkingDetail
|
|
4404
4555
|
*/
|
|
4405
|
-
'
|
|
4556
|
+
'confirmParkedAt': string;
|
|
4406
4557
|
/**
|
|
4407
4558
|
*
|
|
4408
|
-
* @type {
|
|
4409
|
-
* @memberof
|
|
4559
|
+
* @type {number}
|
|
4560
|
+
* @memberof ValetParkingDetail
|
|
4410
4561
|
*/
|
|
4411
|
-
'
|
|
4562
|
+
'staffConfirmParkedId': number;
|
|
4412
4563
|
/**
|
|
4413
4564
|
*
|
|
4414
4565
|
* @type {string}
|
|
4415
|
-
* @memberof
|
|
4566
|
+
* @memberof ValetParkingDetail
|
|
4416
4567
|
*/
|
|
4417
|
-
'
|
|
4568
|
+
'confirmDeliverAt': string;
|
|
4418
4569
|
/**
|
|
4419
4570
|
*
|
|
4420
4571
|
* @type {string}
|
|
4421
|
-
* @memberof
|
|
4572
|
+
* @memberof ValetParkingDetail
|
|
4422
4573
|
*/
|
|
4423
|
-
'
|
|
4574
|
+
'staffConfirmDeliverId': string;
|
|
4424
4575
|
/**
|
|
4425
4576
|
*
|
|
4426
4577
|
* @type {string}
|
|
4427
|
-
* @memberof
|
|
4578
|
+
* @memberof ValetParkingDetail
|
|
4428
4579
|
*/
|
|
4429
|
-
'
|
|
4580
|
+
'signatureURL': string;
|
|
4430
4581
|
/**
|
|
4431
4582
|
*
|
|
4432
4583
|
* @type {string}
|
|
4433
|
-
* @memberof
|
|
4584
|
+
* @memberof ValetParkingDetail
|
|
4434
4585
|
*/
|
|
4435
|
-
'
|
|
4586
|
+
'referenceCode': string;
|
|
4436
4587
|
/**
|
|
4437
4588
|
*
|
|
4438
|
-
* @type {
|
|
4439
|
-
* @memberof
|
|
4589
|
+
* @type {boolean}
|
|
4590
|
+
* @memberof ValetParkingDetail
|
|
4440
4591
|
*/
|
|
4441
|
-
'
|
|
4442
|
-
}
|
|
4443
|
-
/**
|
|
4444
|
-
*
|
|
4445
|
-
* @export
|
|
4446
|
-
* @interface VisitorResult
|
|
4447
|
-
*/
|
|
4448
|
-
export interface VisitorResult {
|
|
4592
|
+
'isMyQr': boolean;
|
|
4449
4593
|
/**
|
|
4450
4594
|
*
|
|
4451
4595
|
* @type {string}
|
|
4452
|
-
* @memberof
|
|
4596
|
+
* @memberof ValetParkingDetail
|
|
4453
4597
|
*/
|
|
4454
|
-
'
|
|
4598
|
+
'spot': string;
|
|
4455
4599
|
/**
|
|
4456
4600
|
*
|
|
4457
4601
|
* @type {string}
|
|
4458
|
-
* @memberof
|
|
4602
|
+
* @memberof ValetParkingDetail
|
|
4459
4603
|
*/
|
|
4460
|
-
'
|
|
4604
|
+
'staffDeliver': string;
|
|
4461
4605
|
/**
|
|
4462
4606
|
*
|
|
4463
4607
|
* @type {string}
|
|
4464
|
-
* @memberof
|
|
4608
|
+
* @memberof ValetParkingDetail
|
|
4465
4609
|
*/
|
|
4466
|
-
'
|
|
4610
|
+
'staffParked': string;
|
|
4467
4611
|
/**
|
|
4468
4612
|
*
|
|
4469
4613
|
* @type {string}
|
|
4470
|
-
* @memberof
|
|
4614
|
+
* @memberof ValetParkingDetail
|
|
4471
4615
|
*/
|
|
4472
|
-
'
|
|
4616
|
+
'staffConfirmDeliver': string;
|
|
4473
4617
|
/**
|
|
4474
4618
|
*
|
|
4475
|
-
* @type {
|
|
4476
|
-
* @memberof
|
|
4619
|
+
* @type {Staff}
|
|
4620
|
+
* @memberof ValetParkingDetail
|
|
4477
4621
|
*/
|
|
4478
|
-
'
|
|
4622
|
+
'staffConfirmParked': Staff;
|
|
4479
4623
|
/**
|
|
4480
4624
|
*
|
|
4481
4625
|
* @type {string}
|
|
4482
|
-
* @memberof
|
|
4626
|
+
* @memberof ValetParkingDetail
|
|
4483
4627
|
*/
|
|
4484
|
-
'
|
|
4628
|
+
'staffVerify': string;
|
|
4485
4629
|
/**
|
|
4486
4630
|
*
|
|
4487
4631
|
* @type {string}
|
|
4488
|
-
* @memberof
|
|
4632
|
+
* @memberof ValetParkingDetail
|
|
4489
4633
|
*/
|
|
4490
|
-
'
|
|
4634
|
+
'pickUpStation': string;
|
|
4491
4635
|
/**
|
|
4492
4636
|
*
|
|
4493
|
-
* @type {
|
|
4494
|
-
* @memberof
|
|
4637
|
+
* @type {DropOffStation}
|
|
4638
|
+
* @memberof ValetParkingDetail
|
|
4495
4639
|
*/
|
|
4496
|
-
'
|
|
4640
|
+
'dropOffStation': DropOffStation;
|
|
4497
4641
|
/**
|
|
4498
4642
|
*
|
|
4499
|
-
* @type {
|
|
4500
|
-
* @memberof
|
|
4643
|
+
* @type {Array<Image>}
|
|
4644
|
+
* @memberof ValetParkingDetail
|
|
4501
4645
|
*/
|
|
4502
|
-
'
|
|
4646
|
+
'images': Array<Image>;
|
|
4503
4647
|
/**
|
|
4504
4648
|
*
|
|
4505
|
-
* @type {
|
|
4506
|
-
* @memberof
|
|
4649
|
+
* @type {string}
|
|
4650
|
+
* @memberof ValetParkingDetail
|
|
4507
4651
|
*/
|
|
4508
|
-
'
|
|
4652
|
+
'keyCabinet': string;
|
|
4509
4653
|
}
|
|
4510
4654
|
/**
|
|
4511
4655
|
*
|
|
4512
4656
|
* @export
|
|
4513
|
-
* @interface
|
|
4657
|
+
* @interface ValetStation
|
|
4514
4658
|
*/
|
|
4515
|
-
export interface
|
|
4659
|
+
export interface ValetStation {
|
|
4516
4660
|
/**
|
|
4517
4661
|
*
|
|
4518
|
-
* @type {
|
|
4519
|
-
* @memberof
|
|
4662
|
+
* @type {number}
|
|
4663
|
+
* @memberof ValetStation
|
|
4520
4664
|
*/
|
|
4521
|
-
'
|
|
4665
|
+
'id': number;
|
|
4522
4666
|
/**
|
|
4523
4667
|
*
|
|
4524
4668
|
* @type {string}
|
|
4525
|
-
* @memberof
|
|
4669
|
+
* @memberof ValetStation
|
|
4526
4670
|
*/
|
|
4527
|
-
'
|
|
4671
|
+
'createdAt': string;
|
|
4528
4672
|
/**
|
|
4529
4673
|
*
|
|
4530
|
-
* @type {
|
|
4531
|
-
* @memberof
|
|
4674
|
+
* @type {string}
|
|
4675
|
+
* @memberof ValetStation
|
|
4532
4676
|
*/
|
|
4533
|
-
'
|
|
4677
|
+
'updatedAt': string;
|
|
4534
4678
|
/**
|
|
4535
4679
|
*
|
|
4536
|
-
* @type {
|
|
4537
|
-
* @memberof
|
|
4680
|
+
* @type {string}
|
|
4681
|
+
* @memberof ValetStation
|
|
4538
4682
|
*/
|
|
4539
|
-
'
|
|
4683
|
+
'deletedAt': string | null;
|
|
4540
4684
|
/**
|
|
4541
4685
|
*
|
|
4542
|
-
* @type {
|
|
4543
|
-
* @memberof
|
|
4686
|
+
* @type {string}
|
|
4687
|
+
* @memberof ValetStation
|
|
4544
4688
|
*/
|
|
4545
|
-
'
|
|
4546
|
-
}
|
|
4547
|
-
/**
|
|
4548
|
-
*
|
|
4549
|
-
* @export
|
|
4550
|
-
* @interface VisitorSchedulePasses
|
|
4551
|
-
*/
|
|
4552
|
-
export interface VisitorSchedulePasses {
|
|
4689
|
+
'name': string;
|
|
4553
4690
|
/**
|
|
4554
4691
|
*
|
|
4555
4692
|
* @type {string}
|
|
4556
|
-
* @memberof
|
|
4693
|
+
* @memberof ValetStation
|
|
4557
4694
|
*/
|
|
4558
|
-
'
|
|
4695
|
+
'description': string;
|
|
4559
4696
|
/**
|
|
4560
4697
|
*
|
|
4561
4698
|
* @type {string}
|
|
4562
|
-
* @memberof
|
|
4699
|
+
* @memberof ValetStation
|
|
4563
4700
|
*/
|
|
4564
|
-
'
|
|
4701
|
+
'location': string;
|
|
4565
4702
|
/**
|
|
4566
4703
|
*
|
|
4567
|
-
* @type {
|
|
4568
|
-
* @memberof
|
|
4704
|
+
* @type {boolean}
|
|
4705
|
+
* @memberof ValetStation
|
|
4569
4706
|
*/
|
|
4570
|
-
'
|
|
4707
|
+
'active': boolean;
|
|
4708
|
+
}
|
|
4709
|
+
/**
|
|
4710
|
+
*
|
|
4711
|
+
* @export
|
|
4712
|
+
* @interface VisitorAccessLog
|
|
4713
|
+
*/
|
|
4714
|
+
export interface VisitorAccessLog {
|
|
4715
|
+
/**
|
|
4716
|
+
*
|
|
4717
|
+
* @type {number}
|
|
4718
|
+
* @memberof VisitorAccessLog
|
|
4719
|
+
*/
|
|
4720
|
+
'transacId': number;
|
|
4571
4721
|
/**
|
|
4572
4722
|
*
|
|
4573
4723
|
* @type {string}
|
|
4574
|
-
* @memberof
|
|
4724
|
+
* @memberof VisitorAccessLog
|
|
4575
4725
|
*/
|
|
4576
|
-
'
|
|
4726
|
+
'transacDatetime': string;
|
|
4577
4727
|
/**
|
|
4578
4728
|
*
|
|
4579
|
-
* @type {
|
|
4580
|
-
* @memberof
|
|
4729
|
+
* @type {number}
|
|
4730
|
+
* @memberof VisitorAccessLog
|
|
4581
4731
|
*/
|
|
4582
|
-
'
|
|
4732
|
+
'projectID': number;
|
|
4733
|
+
/**
|
|
4734
|
+
*
|
|
4735
|
+
* @type {number}
|
|
4736
|
+
* @memberof VisitorAccessLog
|
|
4737
|
+
*/
|
|
4738
|
+
'towerID': number;
|
|
4583
4739
|
/**
|
|
4584
4740
|
*
|
|
4585
4741
|
* @type {string}
|
|
4586
|
-
* @memberof
|
|
4742
|
+
* @memberof VisitorAccessLog
|
|
4587
4743
|
*/
|
|
4588
|
-
'
|
|
4744
|
+
'inviteID': string;
|
|
4589
4745
|
/**
|
|
4590
4746
|
*
|
|
4591
4747
|
* @type {string}
|
|
4592
|
-
* @memberof
|
|
4748
|
+
* @memberof VisitorAccessLog
|
|
4593
4749
|
*/
|
|
4594
|
-
'
|
|
4750
|
+
'turnstileID': string;
|
|
4595
4751
|
/**
|
|
4596
4752
|
*
|
|
4597
|
-
* @type {
|
|
4598
|
-
* @memberof
|
|
4753
|
+
* @type {number}
|
|
4754
|
+
* @memberof VisitorAccessLog
|
|
4599
4755
|
*/
|
|
4600
|
-
'
|
|
4756
|
+
'terminalPosition': number;
|
|
4601
4757
|
}
|
|
4602
4758
|
/**
|
|
4603
4759
|
*
|
|
4604
4760
|
* @export
|
|
4605
|
-
* @interface
|
|
4761
|
+
* @interface VisitorData
|
|
4606
4762
|
*/
|
|
4607
|
-
export interface
|
|
4763
|
+
export interface VisitorData {
|
|
4608
4764
|
/**
|
|
4609
4765
|
*
|
|
4610
4766
|
* @type {string}
|
|
4611
|
-
* @memberof
|
|
4767
|
+
* @memberof VisitorData
|
|
4612
4768
|
*/
|
|
4613
|
-
'
|
|
4769
|
+
'updated_at': string;
|
|
4614
4770
|
/**
|
|
4615
4771
|
*
|
|
4616
4772
|
* @type {string}
|
|
4617
|
-
* @memberof
|
|
4773
|
+
* @memberof VisitorData
|
|
4618
4774
|
*/
|
|
4619
|
-
'
|
|
4775
|
+
'created_at': string;
|
|
4620
4776
|
/**
|
|
4621
4777
|
*
|
|
4622
4778
|
* @type {string}
|
|
4623
|
-
* @memberof
|
|
4779
|
+
* @memberof VisitorData
|
|
4624
4780
|
*/
|
|
4625
|
-
'
|
|
4781
|
+
'inviter_id': string;
|
|
4626
4782
|
/**
|
|
4627
4783
|
*
|
|
4628
4784
|
* @type {string}
|
|
4629
|
-
* @memberof
|
|
4785
|
+
* @memberof VisitorData
|
|
4630
4786
|
*/
|
|
4631
|
-
'
|
|
4787
|
+
'reference'?: string | null;
|
|
4632
4788
|
/**
|
|
4633
4789
|
*
|
|
4634
4790
|
* @type {string}
|
|
4635
|
-
* @memberof
|
|
4791
|
+
* @memberof VisitorData
|
|
4636
4792
|
*/
|
|
4637
|
-
'
|
|
4793
|
+
'company_name': string;
|
|
4638
4794
|
/**
|
|
4639
4795
|
*
|
|
4640
4796
|
* @type {string}
|
|
4641
|
-
* @memberof
|
|
4797
|
+
* @memberof VisitorData
|
|
4642
4798
|
*/
|
|
4643
|
-
'
|
|
4644
|
-
}
|
|
4645
|
-
/**
|
|
4646
|
-
*
|
|
4647
|
-
* @export
|
|
4648
|
-
* @interface VisitorTokenData
|
|
4649
|
-
*/
|
|
4650
|
-
export interface VisitorTokenData {
|
|
4799
|
+
'email': string;
|
|
4651
4800
|
/**
|
|
4652
4801
|
*
|
|
4653
4802
|
* @type {string}
|
|
4654
|
-
* @memberof
|
|
4803
|
+
* @memberof VisitorData
|
|
4655
4804
|
*/
|
|
4656
|
-
'
|
|
4805
|
+
'profile_image_url': string | null;
|
|
4657
4806
|
/**
|
|
4658
4807
|
*
|
|
4659
4808
|
* @type {string}
|
|
4660
|
-
* @memberof
|
|
4809
|
+
* @memberof VisitorData
|
|
4661
4810
|
*/
|
|
4662
|
-
'
|
|
4811
|
+
'name': string;
|
|
4663
4812
|
/**
|
|
4664
4813
|
*
|
|
4665
4814
|
* @type {string}
|
|
4666
|
-
* @memberof
|
|
4815
|
+
* @memberof VisitorData
|
|
4667
4816
|
*/
|
|
4668
|
-
'
|
|
4817
|
+
'id': string;
|
|
4818
|
+
}
|
|
4819
|
+
/**
|
|
4820
|
+
*
|
|
4821
|
+
* @export
|
|
4822
|
+
* @interface VisitorPassedPayload
|
|
4823
|
+
*/
|
|
4824
|
+
export interface VisitorPassedPayload {
|
|
4669
4825
|
/**
|
|
4670
4826
|
*
|
|
4671
4827
|
* @type {string}
|
|
4672
|
-
* @memberof
|
|
4828
|
+
* @memberof VisitorPassedPayload
|
|
4673
4829
|
*/
|
|
4674
|
-
'
|
|
4830
|
+
'inviteID': string;
|
|
4675
4831
|
/**
|
|
4676
4832
|
*
|
|
4677
4833
|
* @type {string}
|
|
4678
|
-
* @memberof
|
|
4834
|
+
* @memberof VisitorPassedPayload
|
|
4679
4835
|
*/
|
|
4680
|
-
'
|
|
4836
|
+
'liftName': string;
|
|
4681
4837
|
/**
|
|
4682
4838
|
*
|
|
4683
4839
|
* @type {string}
|
|
4684
|
-
* @memberof
|
|
4840
|
+
* @memberof VisitorPassedPayload
|
|
4685
4841
|
*/
|
|
4686
|
-
'
|
|
4842
|
+
'floorName': string;
|
|
4687
4843
|
/**
|
|
4688
4844
|
*
|
|
4689
4845
|
* @type {string}
|
|
4690
|
-
* @memberof
|
|
4846
|
+
* @memberof VisitorPassedPayload
|
|
4691
4847
|
*/
|
|
4692
|
-
'
|
|
4848
|
+
'towerName': string;
|
|
4693
4849
|
}
|
|
4694
4850
|
/**
|
|
4695
4851
|
*
|
|
4696
4852
|
* @export
|
|
4697
|
-
* @interface
|
|
4853
|
+
* @interface VisitorPasses
|
|
4698
4854
|
*/
|
|
4699
|
-
export interface
|
|
4855
|
+
export interface VisitorPasses {
|
|
4700
4856
|
/**
|
|
4701
4857
|
*
|
|
4702
4858
|
* @type {string}
|
|
4703
|
-
* @memberof
|
|
4859
|
+
* @memberof VisitorPasses
|
|
4704
4860
|
*/
|
|
4705
|
-
'
|
|
4706
|
-
}
|
|
4707
|
-
/**
|
|
4708
|
-
*
|
|
4709
|
-
* @export
|
|
4710
|
-
* @interface WebhookCreateBody
|
|
4711
|
-
*/
|
|
4712
|
-
export interface WebhookCreateBody {
|
|
4861
|
+
'name': string;
|
|
4713
4862
|
/**
|
|
4714
4863
|
*
|
|
4715
4864
|
* @type {string}
|
|
4716
|
-
* @memberof
|
|
4865
|
+
* @memberof VisitorPasses
|
|
4717
4866
|
*/
|
|
4718
|
-
'
|
|
4867
|
+
'profile_image_url': string | null;
|
|
4719
4868
|
/**
|
|
4720
4869
|
*
|
|
4721
|
-
* @type {
|
|
4722
|
-
* @memberof
|
|
4870
|
+
* @type {string}
|
|
4871
|
+
* @memberof VisitorPasses
|
|
4723
4872
|
*/
|
|
4724
|
-
'
|
|
4725
|
-
}
|
|
4726
|
-
/**
|
|
4727
|
-
*
|
|
4728
|
-
* @export
|
|
4729
|
-
* @interface WebhookCreateBodyPayload
|
|
4730
|
-
*/
|
|
4731
|
-
export interface WebhookCreateBodyPayload {
|
|
4873
|
+
'email': string;
|
|
4732
4874
|
/**
|
|
4733
4875
|
*
|
|
4734
4876
|
* @type {string}
|
|
4735
|
-
* @memberof
|
|
4877
|
+
* @memberof VisitorPasses
|
|
4736
4878
|
*/
|
|
4737
|
-
'
|
|
4879
|
+
'company_name': string;
|
|
4738
4880
|
/**
|
|
4739
4881
|
*
|
|
4740
4882
|
* @type {string}
|
|
4741
|
-
* @memberof
|
|
4883
|
+
* @memberof VisitorPasses
|
|
4742
4884
|
*/
|
|
4743
|
-
'
|
|
4885
|
+
'reference'?: string | null;
|
|
4744
4886
|
/**
|
|
4745
4887
|
*
|
|
4746
4888
|
* @type {string}
|
|
4747
|
-
* @memberof
|
|
4889
|
+
* @memberof VisitorPasses
|
|
4748
4890
|
*/
|
|
4749
|
-
'
|
|
4891
|
+
'inviter_id': string;
|
|
4750
4892
|
/**
|
|
4751
4893
|
*
|
|
4752
4894
|
* @type {string}
|
|
4753
|
-
* @memberof
|
|
4895
|
+
* @memberof VisitorPasses
|
|
4754
4896
|
*/
|
|
4755
|
-
'
|
|
4897
|
+
'created_at': string;
|
|
4756
4898
|
/**
|
|
4757
4899
|
*
|
|
4758
4900
|
* @type {string}
|
|
4759
|
-
* @memberof
|
|
4901
|
+
* @memberof VisitorPasses
|
|
4760
4902
|
*/
|
|
4761
|
-
'
|
|
4903
|
+
'updated_at': string;
|
|
4762
4904
|
}
|
|
4763
4905
|
/**
|
|
4764
4906
|
*
|
|
4765
4907
|
* @export
|
|
4766
|
-
* @interface
|
|
4908
|
+
* @interface VisitorResult
|
|
4767
4909
|
*/
|
|
4768
|
-
export interface
|
|
4910
|
+
export interface VisitorResult {
|
|
4769
4911
|
/**
|
|
4770
4912
|
*
|
|
4771
|
-
* @type {
|
|
4772
|
-
* @memberof
|
|
4913
|
+
* @type {string}
|
|
4914
|
+
* @memberof VisitorResult
|
|
4773
4915
|
*/
|
|
4774
|
-
'
|
|
4775
|
-
}
|
|
4776
|
-
/**
|
|
4777
|
-
*
|
|
4778
|
-
* @export
|
|
4779
|
-
* @interface WrappedArrayResponseACZoneData
|
|
4780
|
-
*/
|
|
4781
|
-
export interface WrappedArrayResponseACZoneData {
|
|
4916
|
+
'updated_at': string;
|
|
4782
4917
|
/**
|
|
4783
4918
|
*
|
|
4784
|
-
* @type {
|
|
4785
|
-
* @memberof
|
|
4919
|
+
* @type {string}
|
|
4920
|
+
* @memberof VisitorResult
|
|
4786
4921
|
*/
|
|
4787
|
-
'
|
|
4788
|
-
}
|
|
4789
|
-
/**
|
|
4790
|
-
*
|
|
4791
|
-
* @export
|
|
4792
|
-
* @interface WrappedArrayResponseBuildingAccessLogResult
|
|
4793
|
-
*/
|
|
4794
|
-
export interface WrappedArrayResponseBuildingAccessLogResult {
|
|
4922
|
+
'created_at': string;
|
|
4795
4923
|
/**
|
|
4796
4924
|
*
|
|
4797
|
-
* @type {
|
|
4798
|
-
* @memberof
|
|
4925
|
+
* @type {string}
|
|
4926
|
+
* @memberof VisitorResult
|
|
4799
4927
|
*/
|
|
4800
|
-
'
|
|
4928
|
+
'inviter_id': string;
|
|
4801
4929
|
/**
|
|
4802
4930
|
*
|
|
4803
|
-
* @type {
|
|
4804
|
-
* @memberof
|
|
4931
|
+
* @type {string}
|
|
4932
|
+
* @memberof VisitorResult
|
|
4805
4933
|
*/
|
|
4806
|
-
'
|
|
4807
|
-
}
|
|
4808
|
-
/**
|
|
4809
|
-
*
|
|
4810
|
-
* @export
|
|
4811
|
-
* @interface WrappedArrayResponseFindMemberResult
|
|
4812
|
-
*/
|
|
4813
|
-
export interface WrappedArrayResponseFindMemberResult {
|
|
4934
|
+
'reference'?: string | null;
|
|
4814
4935
|
/**
|
|
4815
4936
|
*
|
|
4816
|
-
* @type {
|
|
4817
|
-
* @memberof
|
|
4937
|
+
* @type {string}
|
|
4938
|
+
* @memberof VisitorResult
|
|
4818
4939
|
*/
|
|
4819
|
-
'
|
|
4940
|
+
'company_name': string;
|
|
4820
4941
|
/**
|
|
4821
4942
|
*
|
|
4822
|
-
* @type {
|
|
4823
|
-
* @memberof
|
|
4943
|
+
* @type {string}
|
|
4944
|
+
* @memberof VisitorResult
|
|
4824
4945
|
*/
|
|
4825
|
-
'
|
|
4826
|
-
}
|
|
4827
|
-
/**
|
|
4828
|
-
*
|
|
4829
|
-
* @export
|
|
4830
|
-
* @interface WrappedArrayResponseFloorData
|
|
4831
|
-
*/
|
|
4832
|
-
export interface WrappedArrayResponseFloorData {
|
|
4946
|
+
'email': string;
|
|
4833
4947
|
/**
|
|
4834
4948
|
*
|
|
4835
|
-
* @type {
|
|
4836
|
-
* @memberof
|
|
4949
|
+
* @type {string}
|
|
4950
|
+
* @memberof VisitorResult
|
|
4837
4951
|
*/
|
|
4838
|
-
'
|
|
4839
|
-
}
|
|
4840
|
-
/**
|
|
4841
|
-
*
|
|
4842
|
-
* @export
|
|
4843
|
-
* @interface WrappedArrayResponseHolidayResponse
|
|
4844
|
-
*/
|
|
4845
|
-
export interface WrappedArrayResponseHolidayResponse {
|
|
4952
|
+
'profile_image_url': string | null;
|
|
4846
4953
|
/**
|
|
4847
4954
|
*
|
|
4848
|
-
* @type {
|
|
4849
|
-
* @memberof
|
|
4955
|
+
* @type {string}
|
|
4956
|
+
* @memberof VisitorResult
|
|
4850
4957
|
*/
|
|
4851
|
-
'
|
|
4852
|
-
}
|
|
4853
|
-
/**
|
|
4854
|
-
*
|
|
4855
|
-
* @export
|
|
4856
|
-
* @interface WrappedArrayResponseIssueTypeData
|
|
4857
|
-
*/
|
|
4858
|
-
export interface WrappedArrayResponseIssueTypeData {
|
|
4958
|
+
'name': string;
|
|
4859
4959
|
/**
|
|
4860
4960
|
*
|
|
4861
|
-
* @type {
|
|
4862
|
-
* @memberof
|
|
4961
|
+
* @type {string}
|
|
4962
|
+
* @memberof VisitorResult
|
|
4863
4963
|
*/
|
|
4864
|
-
'
|
|
4964
|
+
'id': string;
|
|
4965
|
+
/**
|
|
4966
|
+
*
|
|
4967
|
+
* @type {FindMemberResult}
|
|
4968
|
+
* @memberof VisitorResult
|
|
4969
|
+
*/
|
|
4970
|
+
'inviter': FindMemberResult;
|
|
4865
4971
|
}
|
|
4866
4972
|
/**
|
|
4867
4973
|
*
|
|
4868
4974
|
* @export
|
|
4869
|
-
* @interface
|
|
4975
|
+
* @interface VisitorSchedule
|
|
4870
4976
|
*/
|
|
4871
|
-
export interface
|
|
4977
|
+
export interface VisitorSchedule {
|
|
4872
4978
|
/**
|
|
4873
4979
|
*
|
|
4874
|
-
* @type {
|
|
4875
|
-
* @memberof
|
|
4980
|
+
* @type {string}
|
|
4981
|
+
* @memberof VisitorSchedule
|
|
4876
4982
|
*/
|
|
4877
|
-
'
|
|
4983
|
+
'tower_id': string;
|
|
4878
4984
|
/**
|
|
4879
4985
|
*
|
|
4880
|
-
* @type {
|
|
4881
|
-
* @memberof
|
|
4986
|
+
* @type {string}
|
|
4987
|
+
* @memberof VisitorSchedule
|
|
4882
4988
|
*/
|
|
4883
|
-
'
|
|
4884
|
-
}
|
|
4885
|
-
/**
|
|
4886
|
-
*
|
|
4887
|
-
* @export
|
|
4888
|
-
* @interface WrappedArrayResponseParkingLogResult
|
|
4889
|
-
*/
|
|
4890
|
-
export interface WrappedArrayResponseParkingLogResult {
|
|
4989
|
+
'floor_id': string;
|
|
4891
4990
|
/**
|
|
4892
4991
|
*
|
|
4893
|
-
* @type {
|
|
4894
|
-
* @memberof
|
|
4992
|
+
* @type {TenantMemberResultCreatedAt}
|
|
4993
|
+
* @memberof VisitorSchedule
|
|
4895
4994
|
*/
|
|
4896
|
-
'
|
|
4995
|
+
'from': TenantMemberResultCreatedAt;
|
|
4897
4996
|
/**
|
|
4898
4997
|
*
|
|
4899
|
-
* @type {
|
|
4900
|
-
* @memberof
|
|
4998
|
+
* @type {TenantMemberResultCreatedAt}
|
|
4999
|
+
* @memberof VisitorSchedule
|
|
4901
5000
|
*/
|
|
4902
|
-
'
|
|
4903
|
-
}
|
|
4904
|
-
/**
|
|
4905
|
-
*
|
|
4906
|
-
* @export
|
|
4907
|
-
* @interface WrappedArrayResponseSensorsIndexResponseData
|
|
4908
|
-
*/
|
|
4909
|
-
export interface WrappedArrayResponseSensorsIndexResponseData {
|
|
5001
|
+
'to': TenantMemberResultCreatedAt;
|
|
4910
5002
|
/**
|
|
4911
5003
|
*
|
|
4912
|
-
* @type {
|
|
4913
|
-
* @memberof
|
|
5004
|
+
* @type {object}
|
|
5005
|
+
* @memberof VisitorSchedule
|
|
4914
5006
|
*/
|
|
4915
|
-
'
|
|
5007
|
+
'repetition'?: object;
|
|
4916
5008
|
}
|
|
4917
5009
|
/**
|
|
4918
5010
|
*
|
|
4919
5011
|
* @export
|
|
4920
|
-
* @interface
|
|
5012
|
+
* @interface VisitorSchedulePasses
|
|
4921
5013
|
*/
|
|
4922
|
-
export interface
|
|
5014
|
+
export interface VisitorSchedulePasses {
|
|
4923
5015
|
/**
|
|
4924
5016
|
*
|
|
4925
|
-
* @type {
|
|
4926
|
-
* @memberof
|
|
5017
|
+
* @type {string}
|
|
5018
|
+
* @memberof VisitorSchedulePasses
|
|
4927
5019
|
*/
|
|
4928
|
-
'
|
|
4929
|
-
}
|
|
4930
|
-
/**
|
|
4931
|
-
*
|
|
4932
|
-
* @export
|
|
4933
|
-
* @interface WrappedOneResponseACRequestResponse
|
|
4934
|
-
*/
|
|
4935
|
-
export interface WrappedOneResponseACRequestResponse {
|
|
5020
|
+
'tower_id': string;
|
|
4936
5021
|
/**
|
|
4937
5022
|
*
|
|
4938
|
-
* @type {
|
|
4939
|
-
* @memberof
|
|
5023
|
+
* @type {string}
|
|
5024
|
+
* @memberof VisitorSchedulePasses
|
|
4940
5025
|
*/
|
|
4941
|
-
'
|
|
4942
|
-
}
|
|
4943
|
-
/**
|
|
4944
|
-
*
|
|
4945
|
-
* @export
|
|
4946
|
-
* @interface WrappedOneResponseCreateACRequestResponse
|
|
4947
|
-
*/
|
|
4948
|
-
export interface WrappedOneResponseCreateACRequestResponse {
|
|
5026
|
+
'floor_id': string;
|
|
4949
5027
|
/**
|
|
4950
5028
|
*
|
|
4951
|
-
* @type {
|
|
4952
|
-
* @memberof
|
|
5029
|
+
* @type {string}
|
|
5030
|
+
* @memberof VisitorSchedulePasses
|
|
4953
5031
|
*/
|
|
4954
|
-
'
|
|
4955
|
-
}
|
|
4956
|
-
/**
|
|
4957
|
-
*
|
|
4958
|
-
* @export
|
|
4959
|
-
* @interface WrappedOneResponseCreateServiceRequestResponse
|
|
4960
|
-
*/
|
|
4961
|
-
export interface WrappedOneResponseCreateServiceRequestResponse {
|
|
5032
|
+
'from': string;
|
|
4962
5033
|
/**
|
|
4963
5034
|
*
|
|
4964
|
-
* @type {
|
|
4965
|
-
* @memberof
|
|
5035
|
+
* @type {string}
|
|
5036
|
+
* @memberof VisitorSchedulePasses
|
|
4966
5037
|
*/
|
|
4967
|
-
'
|
|
4968
|
-
}
|
|
4969
|
-
/**
|
|
4970
|
-
*
|
|
4971
|
-
* @export
|
|
4972
|
-
* @interface WrappedOneResponseIssueTypeData
|
|
4973
|
-
*/
|
|
4974
|
-
export interface WrappedOneResponseIssueTypeData {
|
|
5038
|
+
'to': string;
|
|
4975
5039
|
/**
|
|
4976
5040
|
*
|
|
4977
|
-
* @type {
|
|
4978
|
-
* @memberof
|
|
5041
|
+
* @type {object}
|
|
5042
|
+
* @memberof VisitorSchedulePasses
|
|
4979
5043
|
*/
|
|
4980
|
-
'
|
|
4981
|
-
}
|
|
4982
|
-
/**
|
|
4983
|
-
*
|
|
4984
|
-
* @export
|
|
4985
|
-
* @interface WrappedOneResponseParkingLogResult
|
|
4986
|
-
*/
|
|
4987
|
-
export interface WrappedOneResponseParkingLogResult {
|
|
5044
|
+
'repetition'?: object;
|
|
4988
5045
|
/**
|
|
4989
5046
|
*
|
|
4990
|
-
* @type {
|
|
4991
|
-
* @memberof
|
|
5047
|
+
* @type {string}
|
|
5048
|
+
* @memberof VisitorSchedulePasses
|
|
4992
5049
|
*/
|
|
4993
|
-
'
|
|
4994
|
-
}
|
|
4995
|
-
/**
|
|
4996
|
-
*
|
|
4997
|
-
* @export
|
|
4998
|
-
* @interface WrappedOneResponseServiceRequestData
|
|
4999
|
-
*/
|
|
5000
|
-
export interface WrappedOneResponseServiceRequestData {
|
|
5050
|
+
'created_at': string;
|
|
5001
5051
|
/**
|
|
5002
5052
|
*
|
|
5003
|
-
* @type {
|
|
5004
|
-
* @memberof
|
|
5053
|
+
* @type {string}
|
|
5054
|
+
* @memberof VisitorSchedulePasses
|
|
5005
5055
|
*/
|
|
5006
|
-
'
|
|
5007
|
-
}
|
|
5008
|
-
/**
|
|
5009
|
-
*
|
|
5010
|
-
* @export
|
|
5011
|
-
* @interface WrappedResponseCommandsCreateResponse
|
|
5012
|
-
*/
|
|
5013
|
-
export interface WrappedResponseCommandsCreateResponse {
|
|
5056
|
+
'updated_at': string;
|
|
5014
5057
|
/**
|
|
5015
5058
|
*
|
|
5016
|
-
* @type {
|
|
5017
|
-
* @memberof
|
|
5059
|
+
* @type {Array<VisitorScheduleTokens>}
|
|
5060
|
+
* @memberof VisitorSchedulePasses
|
|
5018
5061
|
*/
|
|
5019
|
-
'
|
|
5062
|
+
'tokens': Array<VisitorScheduleTokens>;
|
|
5020
5063
|
}
|
|
5021
5064
|
/**
|
|
5022
5065
|
*
|
|
5023
5066
|
* @export
|
|
5024
|
-
* @interface
|
|
5067
|
+
* @interface VisitorScheduleTokens
|
|
5025
5068
|
*/
|
|
5026
|
-
export interface
|
|
5069
|
+
export interface VisitorScheduleTokens {
|
|
5027
5070
|
/**
|
|
5028
5071
|
*
|
|
5029
5072
|
* @type {string}
|
|
5030
|
-
* @memberof
|
|
5073
|
+
* @memberof VisitorScheduleTokens
|
|
5031
5074
|
*/
|
|
5032
5075
|
'id'?: string;
|
|
5033
5076
|
/**
|
|
5034
5077
|
*
|
|
5035
5078
|
* @type {string}
|
|
5036
|
-
* @memberof
|
|
5037
|
-
*/
|
|
5038
|
-
'name'?: string;
|
|
5039
|
-
/**
|
|
5040
|
-
*
|
|
5041
|
-
* @type {PrismaJsonValue}
|
|
5042
|
-
* @memberof WrappedResponseCommandsCreateResponseData
|
|
5079
|
+
* @memberof VisitorScheduleTokens
|
|
5043
5080
|
*/
|
|
5044
|
-
'
|
|
5081
|
+
'token_id'?: string;
|
|
5045
5082
|
/**
|
|
5046
5083
|
*
|
|
5047
5084
|
* @type {string}
|
|
5048
|
-
* @memberof
|
|
5085
|
+
* @memberof VisitorScheduleTokens
|
|
5049
5086
|
*/
|
|
5050
|
-
'
|
|
5087
|
+
'expired_date'?: string | null;
|
|
5051
5088
|
/**
|
|
5052
5089
|
*
|
|
5053
|
-
* @type {
|
|
5054
|
-
* @memberof
|
|
5090
|
+
* @type {string}
|
|
5091
|
+
* @memberof VisitorScheduleTokens
|
|
5055
5092
|
*/
|
|
5056
|
-
'
|
|
5093
|
+
'visitor_schedule_id'?: string;
|
|
5057
5094
|
/**
|
|
5058
5095
|
*
|
|
5059
5096
|
* @type {string}
|
|
5060
|
-
* @memberof
|
|
5097
|
+
* @memberof VisitorScheduleTokens
|
|
5061
5098
|
*/
|
|
5062
5099
|
'created_at'?: string;
|
|
5063
5100
|
/**
|
|
5064
5101
|
*
|
|
5065
5102
|
* @type {string}
|
|
5066
|
-
* @memberof
|
|
5103
|
+
* @memberof VisitorScheduleTokens
|
|
5067
5104
|
*/
|
|
5068
5105
|
'updated_at'?: string;
|
|
5069
|
-
/**
|
|
5070
|
-
*
|
|
5071
|
-
* @type {string}
|
|
5072
|
-
* @memberof WrappedResponseCommandsCreateResponseData
|
|
5073
|
-
*/
|
|
5074
|
-
'member_id'?: string;
|
|
5075
5106
|
}
|
|
5076
5107
|
/**
|
|
5077
5108
|
*
|
|
5078
5109
|
* @export
|
|
5079
|
-
* @interface
|
|
5110
|
+
* @interface VisitorTokenData
|
|
5080
5111
|
*/
|
|
5081
|
-
export interface
|
|
5112
|
+
export interface VisitorTokenData {
|
|
5082
5113
|
/**
|
|
5083
5114
|
*
|
|
5084
|
-
* @type {
|
|
5085
|
-
* @memberof
|
|
5115
|
+
* @type {string}
|
|
5116
|
+
* @memberof VisitorTokenData
|
|
5086
5117
|
*/
|
|
5087
|
-
'
|
|
5088
|
-
}
|
|
5089
|
-
/**
|
|
5090
|
-
*
|
|
5091
|
-
* @export
|
|
5092
|
-
* @interface WrappedResponseCommandsIndexResponseData
|
|
5093
|
-
*/
|
|
5094
|
-
export interface WrappedResponseCommandsIndexResponseData {
|
|
5095
|
-
}
|
|
5096
|
-
/**
|
|
5097
|
-
*
|
|
5098
|
-
* @export
|
|
5099
|
-
* @interface WrappedResponseCreateVisitorResponse
|
|
5100
|
-
*/
|
|
5101
|
-
export interface WrappedResponseCreateVisitorResponse {
|
|
5118
|
+
'id': string;
|
|
5102
5119
|
/**
|
|
5103
5120
|
*
|
|
5104
|
-
* @type {
|
|
5105
|
-
* @memberof
|
|
5121
|
+
* @type {string}
|
|
5122
|
+
* @memberof VisitorTokenData
|
|
5106
5123
|
*/
|
|
5107
|
-
'
|
|
5124
|
+
'token_id': string;
|
|
5125
|
+
/**
|
|
5126
|
+
*
|
|
5127
|
+
* @type {string}
|
|
5128
|
+
* @memberof VisitorTokenData
|
|
5129
|
+
*/
|
|
5130
|
+
'expired_date': string | null;
|
|
5131
|
+
/**
|
|
5132
|
+
*
|
|
5133
|
+
* @type {string}
|
|
5134
|
+
* @memberof VisitorTokenData
|
|
5135
|
+
*/
|
|
5136
|
+
'visitor_schedule_id': string;
|
|
5137
|
+
/**
|
|
5138
|
+
*
|
|
5139
|
+
* @type {string}
|
|
5140
|
+
* @memberof VisitorTokenData
|
|
5141
|
+
*/
|
|
5142
|
+
'uid': string;
|
|
5143
|
+
/**
|
|
5144
|
+
*
|
|
5145
|
+
* @type {string}
|
|
5146
|
+
* @memberof VisitorTokenData
|
|
5147
|
+
*/
|
|
5148
|
+
'created_at': string;
|
|
5149
|
+
/**
|
|
5150
|
+
*
|
|
5151
|
+
* @type {string}
|
|
5152
|
+
* @memberof VisitorTokenData
|
|
5153
|
+
*/
|
|
5154
|
+
'updated_at': string;
|
|
5108
5155
|
}
|
|
5109
5156
|
/**
|
|
5110
5157
|
*
|
|
5111
5158
|
* @export
|
|
5112
|
-
* @interface
|
|
5159
|
+
* @interface VisitorTokensIndexQuery
|
|
5113
5160
|
*/
|
|
5114
|
-
export interface
|
|
5161
|
+
export interface VisitorTokensIndexQuery {
|
|
5115
5162
|
/**
|
|
5116
5163
|
*
|
|
5117
5164
|
* @type {string}
|
|
5118
|
-
* @memberof
|
|
5165
|
+
* @memberof VisitorTokensIndexQuery
|
|
5119
5166
|
*/
|
|
5120
|
-
'
|
|
5167
|
+
'token_id'?: string;
|
|
5168
|
+
}
|
|
5169
|
+
/**
|
|
5170
|
+
*
|
|
5171
|
+
* @export
|
|
5172
|
+
* @interface WebhookCreateBody
|
|
5173
|
+
*/
|
|
5174
|
+
export interface WebhookCreateBody {
|
|
5121
5175
|
/**
|
|
5122
5176
|
*
|
|
5123
5177
|
* @type {string}
|
|
5124
|
-
* @memberof
|
|
5178
|
+
* @memberof WebhookCreateBody
|
|
5125
5179
|
*/
|
|
5126
|
-
'
|
|
5180
|
+
'action': string;
|
|
5127
5181
|
/**
|
|
5128
5182
|
*
|
|
5129
|
-
* @type {
|
|
5130
|
-
* @memberof
|
|
5183
|
+
* @type {WebhookCreateBodyPayload}
|
|
5184
|
+
* @memberof WebhookCreateBody
|
|
5131
5185
|
*/
|
|
5132
|
-
'
|
|
5186
|
+
'payload': WebhookCreateBodyPayload | null;
|
|
5187
|
+
}
|
|
5188
|
+
/**
|
|
5189
|
+
*
|
|
5190
|
+
* @export
|
|
5191
|
+
* @interface WebhookCreateBodyPayload
|
|
5192
|
+
*/
|
|
5193
|
+
export interface WebhookCreateBodyPayload {
|
|
5133
5194
|
/**
|
|
5134
5195
|
*
|
|
5135
5196
|
* @type {string}
|
|
5136
|
-
* @memberof
|
|
5197
|
+
* @memberof WebhookCreateBodyPayload
|
|
5137
5198
|
*/
|
|
5138
|
-
'
|
|
5199
|
+
'personID': string;
|
|
5139
5200
|
/**
|
|
5140
5201
|
*
|
|
5141
5202
|
* @type {string}
|
|
5142
|
-
* @memberof
|
|
5203
|
+
* @memberof WebhookCreateBodyPayload
|
|
5143
5204
|
*/
|
|
5144
|
-
'
|
|
5205
|
+
'liftName': string;
|
|
5145
5206
|
/**
|
|
5146
5207
|
*
|
|
5147
5208
|
* @type {string}
|
|
5148
|
-
* @memberof
|
|
5209
|
+
* @memberof WebhookCreateBodyPayload
|
|
5149
5210
|
*/
|
|
5150
|
-
'
|
|
5211
|
+
'floorName': string;
|
|
5151
5212
|
/**
|
|
5152
5213
|
*
|
|
5153
5214
|
* @type {string}
|
|
5154
|
-
* @memberof
|
|
5215
|
+
* @memberof WebhookCreateBodyPayload
|
|
5155
5216
|
*/
|
|
5156
|
-
'
|
|
5217
|
+
'towerName': string;
|
|
5157
5218
|
/**
|
|
5158
5219
|
*
|
|
5159
5220
|
* @type {string}
|
|
5160
|
-
* @memberof
|
|
5221
|
+
* @memberof WebhookCreateBodyPayload
|
|
5161
5222
|
*/
|
|
5162
|
-
'
|
|
5223
|
+
'inviteID': string;
|
|
5224
|
+
}
|
|
5225
|
+
/**
|
|
5226
|
+
*
|
|
5227
|
+
* @export
|
|
5228
|
+
* @interface WrappedArrayResponseACRequestResponse
|
|
5229
|
+
*/
|
|
5230
|
+
export interface WrappedArrayResponseACRequestResponse {
|
|
5163
5231
|
/**
|
|
5164
5232
|
*
|
|
5165
|
-
* @type {
|
|
5166
|
-
* @memberof
|
|
5233
|
+
* @type {Array<ACRequestResponse>}
|
|
5234
|
+
* @memberof WrappedArrayResponseACRequestResponse
|
|
5167
5235
|
*/
|
|
5168
|
-
'
|
|
5236
|
+
'data': Array<ACRequestResponse>;
|
|
5169
5237
|
}
|
|
5170
5238
|
/**
|
|
5171
5239
|
*
|
|
5172
5240
|
* @export
|
|
5173
|
-
* @interface
|
|
5241
|
+
* @interface WrappedArrayResponseACZoneData
|
|
5174
5242
|
*/
|
|
5175
|
-
export interface
|
|
5243
|
+
export interface WrappedArrayResponseACZoneData {
|
|
5176
5244
|
/**
|
|
5177
5245
|
*
|
|
5178
|
-
* @type {
|
|
5179
|
-
* @memberof
|
|
5246
|
+
* @type {Array<ACZoneData>}
|
|
5247
|
+
* @memberof WrappedArrayResponseACZoneData
|
|
5180
5248
|
*/
|
|
5181
|
-
'data':
|
|
5249
|
+
'data': Array<ACZoneData>;
|
|
5182
5250
|
}
|
|
5183
5251
|
/**
|
|
5184
5252
|
*
|
|
5185
5253
|
* @export
|
|
5186
|
-
* @interface
|
|
5254
|
+
* @interface WrappedArrayResponseBuildingAccessLogResult
|
|
5187
5255
|
*/
|
|
5188
|
-
export interface
|
|
5256
|
+
export interface WrappedArrayResponseBuildingAccessLogResult {
|
|
5189
5257
|
/**
|
|
5190
5258
|
*
|
|
5191
|
-
* @type {
|
|
5192
|
-
* @memberof
|
|
5259
|
+
* @type {Array<BuildingAccessLogResult>}
|
|
5260
|
+
* @memberof WrappedArrayResponseBuildingAccessLogResult
|
|
5193
5261
|
*/
|
|
5194
|
-
'
|
|
5262
|
+
'data': Array<BuildingAccessLogResult>;
|
|
5195
5263
|
/**
|
|
5196
5264
|
*
|
|
5197
|
-
* @type {
|
|
5198
|
-
* @memberof
|
|
5265
|
+
* @type {Pagination}
|
|
5266
|
+
* @memberof WrappedArrayResponseBuildingAccessLogResult
|
|
5199
5267
|
*/
|
|
5200
|
-
'
|
|
5268
|
+
'pagination'?: Pagination;
|
|
5201
5269
|
}
|
|
5202
5270
|
/**
|
|
5203
5271
|
*
|
|
5204
5272
|
* @export
|
|
5205
|
-
* @interface
|
|
5273
|
+
* @interface WrappedArrayResponseFindMemberResult
|
|
5206
5274
|
*/
|
|
5207
|
-
export interface
|
|
5275
|
+
export interface WrappedArrayResponseFindMemberResult {
|
|
5208
5276
|
/**
|
|
5209
5277
|
*
|
|
5210
|
-
* @type {
|
|
5211
|
-
* @memberof
|
|
5278
|
+
* @type {Array<FindMemberResult>}
|
|
5279
|
+
* @memberof WrappedArrayResponseFindMemberResult
|
|
5212
5280
|
*/
|
|
5213
|
-
'data':
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
export interface WrappedResponseLocationIndexResponseData {
|
|
5281
|
+
'data': Array<FindMemberResult>;
|
|
5282
|
+
/**
|
|
5283
|
+
*
|
|
5284
|
+
* @type {Pagination}
|
|
5285
|
+
* @memberof WrappedArrayResponseFindMemberResult
|
|
5286
|
+
*/
|
|
5287
|
+
'pagination'?: Pagination;
|
|
5221
5288
|
}
|
|
5222
5289
|
/**
|
|
5223
5290
|
*
|
|
5224
5291
|
* @export
|
|
5225
|
-
* @interface
|
|
5292
|
+
* @interface WrappedArrayResponseFloorData
|
|
5226
5293
|
*/
|
|
5227
|
-
export interface
|
|
5294
|
+
export interface WrappedArrayResponseFloorData {
|
|
5228
5295
|
/**
|
|
5229
5296
|
*
|
|
5230
|
-
* @type {
|
|
5231
|
-
* @memberof
|
|
5297
|
+
* @type {Array<FloorData>}
|
|
5298
|
+
* @memberof WrappedArrayResponseFloorData
|
|
5232
5299
|
*/
|
|
5233
|
-
'data':
|
|
5300
|
+
'data': Array<FloorData>;
|
|
5234
5301
|
}
|
|
5235
5302
|
/**
|
|
5236
5303
|
*
|
|
5237
5304
|
* @export
|
|
5238
|
-
* @interface
|
|
5305
|
+
* @interface WrappedArrayResponseHolidayResponse
|
|
5239
5306
|
*/
|
|
5240
|
-
export interface
|
|
5307
|
+
export interface WrappedArrayResponseHolidayResponse {
|
|
5308
|
+
/**
|
|
5309
|
+
*
|
|
5310
|
+
* @type {Array<HolidayResponse>}
|
|
5311
|
+
* @memberof WrappedArrayResponseHolidayResponse
|
|
5312
|
+
*/
|
|
5313
|
+
'data': Array<HolidayResponse>;
|
|
5241
5314
|
}
|
|
5242
5315
|
/**
|
|
5243
5316
|
*
|
|
5244
5317
|
* @export
|
|
5245
|
-
* @interface
|
|
5318
|
+
* @interface WrappedArrayResponseIssueTypeData
|
|
5246
5319
|
*/
|
|
5247
|
-
export interface
|
|
5320
|
+
export interface WrappedArrayResponseIssueTypeData {
|
|
5248
5321
|
/**
|
|
5249
5322
|
*
|
|
5250
|
-
* @type {Array<
|
|
5251
|
-
* @memberof
|
|
5323
|
+
* @type {Array<IssueTypeData>}
|
|
5324
|
+
* @memberof WrappedArrayResponseIssueTypeData
|
|
5252
5325
|
*/
|
|
5253
|
-
'data': Array<
|
|
5326
|
+
'data': Array<IssueTypeData>;
|
|
5254
5327
|
}
|
|
5255
5328
|
/**
|
|
5256
5329
|
*
|
|
5257
5330
|
* @export
|
|
5258
|
-
* @interface
|
|
5331
|
+
* @interface WrappedArrayResponseMemberIndexResponse
|
|
5259
5332
|
*/
|
|
5260
|
-
export interface
|
|
5333
|
+
export interface WrappedArrayResponseMemberIndexResponse {
|
|
5261
5334
|
/**
|
|
5262
5335
|
*
|
|
5263
|
-
* @type {Array<
|
|
5264
|
-
* @memberof
|
|
5336
|
+
* @type {Array<MemberIndexResponse>}
|
|
5337
|
+
* @memberof WrappedArrayResponseMemberIndexResponse
|
|
5265
5338
|
*/
|
|
5266
|
-
'data': Array<
|
|
5339
|
+
'data': Array<MemberIndexResponse>;
|
|
5340
|
+
/**
|
|
5341
|
+
*
|
|
5342
|
+
* @type {Pagination}
|
|
5343
|
+
* @memberof WrappedArrayResponseMemberIndexResponse
|
|
5344
|
+
*/
|
|
5345
|
+
'pagination'?: Pagination;
|
|
5267
5346
|
}
|
|
5268
|
-
|
|
5269
|
-
export const WrappedResponseNullDataEnum = {
|
|
5270
|
-
NUMBER_null: null
|
|
5271
|
-
} as const;
|
|
5272
|
-
|
|
5273
|
-
export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
|
|
5274
|
-
|
|
5275
5347
|
/**
|
|
5276
5348
|
*
|
|
5277
5349
|
* @export
|
|
5278
|
-
* @interface
|
|
5350
|
+
* @interface WrappedArrayResponseParkingLogResult
|
|
5279
5351
|
*/
|
|
5280
|
-
export interface
|
|
5352
|
+
export interface WrappedArrayResponseParkingLogResult {
|
|
5281
5353
|
/**
|
|
5282
5354
|
*
|
|
5283
|
-
* @type {
|
|
5284
|
-
* @memberof
|
|
5355
|
+
* @type {Array<ParkingLogResult>}
|
|
5356
|
+
* @memberof WrappedArrayResponseParkingLogResult
|
|
5285
5357
|
*/
|
|
5286
|
-
'data':
|
|
5358
|
+
'data': Array<ParkingLogResult>;
|
|
5359
|
+
/**
|
|
5360
|
+
*
|
|
5361
|
+
* @type {Pagination}
|
|
5362
|
+
* @memberof WrappedArrayResponseParkingLogResult
|
|
5363
|
+
*/
|
|
5364
|
+
'pagination'?: Pagination;
|
|
5287
5365
|
}
|
|
5288
5366
|
/**
|
|
5289
5367
|
*
|
|
5290
5368
|
* @export
|
|
5291
|
-
* @interface
|
|
5369
|
+
* @interface WrappedArrayResponseSensorsIndexResponseData
|
|
5292
5370
|
*/
|
|
5293
|
-
export interface
|
|
5371
|
+
export interface WrappedArrayResponseSensorsIndexResponseData {
|
|
5372
|
+
/**
|
|
5373
|
+
*
|
|
5374
|
+
* @type {Array<SensorIndicatorData>}
|
|
5375
|
+
* @memberof WrappedArrayResponseSensorsIndexResponseData
|
|
5376
|
+
*/
|
|
5377
|
+
'data': Array<SensorIndicatorData>;
|
|
5294
5378
|
}
|
|
5295
5379
|
/**
|
|
5296
5380
|
*
|
|
5297
5381
|
* @export
|
|
5298
|
-
* @interface
|
|
5382
|
+
* @interface WrappedArrayResponseServiceRequestData
|
|
5299
5383
|
*/
|
|
5300
|
-
export interface
|
|
5384
|
+
export interface WrappedArrayResponseServiceRequestData {
|
|
5301
5385
|
/**
|
|
5302
5386
|
*
|
|
5303
|
-
* @type {
|
|
5304
|
-
* @memberof
|
|
5387
|
+
* @type {Array<ServiceRequestData>}
|
|
5388
|
+
* @memberof WrappedArrayResponseServiceRequestData
|
|
5305
5389
|
*/
|
|
5306
|
-
'data':
|
|
5390
|
+
'data': Array<ServiceRequestData>;
|
|
5307
5391
|
}
|
|
5308
5392
|
/**
|
|
5309
5393
|
*
|
|
5310
5394
|
* @export
|
|
5311
|
-
* @interface
|
|
5395
|
+
* @interface WrappedOneResponseACRequestResponse
|
|
5312
5396
|
*/
|
|
5313
|
-
export interface
|
|
5397
|
+
export interface WrappedOneResponseACRequestResponse {
|
|
5398
|
+
/**
|
|
5399
|
+
*
|
|
5400
|
+
* @type {ACRequestResponse}
|
|
5401
|
+
* @memberof WrappedOneResponseACRequestResponse
|
|
5402
|
+
*/
|
|
5403
|
+
'data': ACRequestResponse;
|
|
5314
5404
|
}
|
|
5315
5405
|
/**
|
|
5316
5406
|
*
|
|
5317
5407
|
* @export
|
|
5318
|
-
* @interface
|
|
5408
|
+
* @interface WrappedOneResponseCreateACRequestResponse
|
|
5319
5409
|
*/
|
|
5320
|
-
export interface
|
|
5410
|
+
export interface WrappedOneResponseCreateACRequestResponse {
|
|
5321
5411
|
/**
|
|
5322
5412
|
*
|
|
5323
|
-
* @type {
|
|
5324
|
-
* @memberof
|
|
5413
|
+
* @type {CreateACRequestResponse}
|
|
5414
|
+
* @memberof WrappedOneResponseCreateACRequestResponse
|
|
5325
5415
|
*/
|
|
5326
|
-
'data':
|
|
5416
|
+
'data': CreateACRequestResponse;
|
|
5327
5417
|
}
|
|
5328
5418
|
/**
|
|
5329
5419
|
*
|
|
5330
5420
|
* @export
|
|
5331
|
-
* @interface
|
|
5421
|
+
* @interface WrappedOneResponseCreateServiceRequestResponse
|
|
5422
|
+
*/
|
|
5423
|
+
export interface WrappedOneResponseCreateServiceRequestResponse {
|
|
5424
|
+
/**
|
|
5425
|
+
*
|
|
5426
|
+
* @type {CreateServiceRequestResponse}
|
|
5427
|
+
* @memberof WrappedOneResponseCreateServiceRequestResponse
|
|
5428
|
+
*/
|
|
5429
|
+
'data': CreateServiceRequestResponse;
|
|
5430
|
+
}
|
|
5431
|
+
/**
|
|
5432
|
+
*
|
|
5433
|
+
* @export
|
|
5434
|
+
* @interface WrappedOneResponseIssueTypeData
|
|
5435
|
+
*/
|
|
5436
|
+
export interface WrappedOneResponseIssueTypeData {
|
|
5437
|
+
/**
|
|
5438
|
+
*
|
|
5439
|
+
* @type {IssueTypeData}
|
|
5440
|
+
* @memberof WrappedOneResponseIssueTypeData
|
|
5441
|
+
*/
|
|
5442
|
+
'data': IssueTypeData;
|
|
5443
|
+
}
|
|
5444
|
+
/**
|
|
5445
|
+
*
|
|
5446
|
+
* @export
|
|
5447
|
+
* @interface WrappedOneResponseParkingLogResult
|
|
5448
|
+
*/
|
|
5449
|
+
export interface WrappedOneResponseParkingLogResult {
|
|
5450
|
+
/**
|
|
5451
|
+
*
|
|
5452
|
+
* @type {ParkingLogResult}
|
|
5453
|
+
* @memberof WrappedOneResponseParkingLogResult
|
|
5454
|
+
*/
|
|
5455
|
+
'data': ParkingLogResult;
|
|
5456
|
+
}
|
|
5457
|
+
/**
|
|
5458
|
+
*
|
|
5459
|
+
* @export
|
|
5460
|
+
* @interface WrappedOneResponseServiceRequestData
|
|
5461
|
+
*/
|
|
5462
|
+
export interface WrappedOneResponseServiceRequestData {
|
|
5463
|
+
/**
|
|
5464
|
+
*
|
|
5465
|
+
* @type {ServiceRequestData}
|
|
5466
|
+
* @memberof WrappedOneResponseServiceRequestData
|
|
5467
|
+
*/
|
|
5468
|
+
'data': ServiceRequestData;
|
|
5469
|
+
}
|
|
5470
|
+
/**
|
|
5471
|
+
*
|
|
5472
|
+
* @export
|
|
5473
|
+
* @interface WrappedResponseCommandsCreateResponse
|
|
5474
|
+
*/
|
|
5475
|
+
export interface WrappedResponseCommandsCreateResponse {
|
|
5476
|
+
/**
|
|
5477
|
+
*
|
|
5478
|
+
* @type {WrappedResponseCommandsCreateResponseData}
|
|
5479
|
+
* @memberof WrappedResponseCommandsCreateResponse
|
|
5480
|
+
*/
|
|
5481
|
+
'data': WrappedResponseCommandsCreateResponseData | null;
|
|
5482
|
+
}
|
|
5483
|
+
/**
|
|
5484
|
+
*
|
|
5485
|
+
* @export
|
|
5486
|
+
* @interface WrappedResponseCommandsCreateResponseData
|
|
5487
|
+
*/
|
|
5488
|
+
export interface WrappedResponseCommandsCreateResponseData {
|
|
5489
|
+
/**
|
|
5490
|
+
*
|
|
5491
|
+
* @type {string}
|
|
5492
|
+
* @memberof WrappedResponseCommandsCreateResponseData
|
|
5493
|
+
*/
|
|
5494
|
+
'id'?: string;
|
|
5495
|
+
/**
|
|
5496
|
+
*
|
|
5497
|
+
* @type {string}
|
|
5498
|
+
* @memberof WrappedResponseCommandsCreateResponseData
|
|
5499
|
+
*/
|
|
5500
|
+
'name'?: string;
|
|
5501
|
+
/**
|
|
5502
|
+
*
|
|
5503
|
+
* @type {PrismaJsonValue}
|
|
5504
|
+
* @memberof WrappedResponseCommandsCreateResponseData
|
|
5505
|
+
*/
|
|
5506
|
+
'data'?: PrismaJsonValue | null;
|
|
5507
|
+
/**
|
|
5508
|
+
*
|
|
5509
|
+
* @type {string}
|
|
5510
|
+
* @memberof WrappedResponseCommandsCreateResponseData
|
|
5511
|
+
*/
|
|
5512
|
+
'status'?: string;
|
|
5513
|
+
/**
|
|
5514
|
+
*
|
|
5515
|
+
* @type {PrismaJsonValue}
|
|
5516
|
+
* @memberof WrappedResponseCommandsCreateResponseData
|
|
5517
|
+
*/
|
|
5518
|
+
'result'?: PrismaJsonValue | null;
|
|
5519
|
+
/**
|
|
5520
|
+
*
|
|
5521
|
+
* @type {string}
|
|
5522
|
+
* @memberof WrappedResponseCommandsCreateResponseData
|
|
5523
|
+
*/
|
|
5524
|
+
'created_at'?: string;
|
|
5525
|
+
/**
|
|
5526
|
+
*
|
|
5527
|
+
* @type {string}
|
|
5528
|
+
* @memberof WrappedResponseCommandsCreateResponseData
|
|
5529
|
+
*/
|
|
5530
|
+
'updated_at'?: string;
|
|
5531
|
+
/**
|
|
5532
|
+
*
|
|
5533
|
+
* @type {string}
|
|
5534
|
+
* @memberof WrappedResponseCommandsCreateResponseData
|
|
5535
|
+
*/
|
|
5536
|
+
'member_id'?: string;
|
|
5537
|
+
}
|
|
5538
|
+
/**
|
|
5539
|
+
*
|
|
5540
|
+
* @export
|
|
5541
|
+
* @interface WrappedResponseCommandsIndexResponse
|
|
5542
|
+
*/
|
|
5543
|
+
export interface WrappedResponseCommandsIndexResponse {
|
|
5544
|
+
/**
|
|
5545
|
+
*
|
|
5546
|
+
* @type {WrappedResponseCommandsIndexResponseData}
|
|
5547
|
+
* @memberof WrappedResponseCommandsIndexResponse
|
|
5548
|
+
*/
|
|
5549
|
+
'data': WrappedResponseCommandsIndexResponseData | null;
|
|
5550
|
+
}
|
|
5551
|
+
/**
|
|
5552
|
+
*
|
|
5553
|
+
* @export
|
|
5554
|
+
* @interface WrappedResponseCommandsIndexResponseData
|
|
5555
|
+
*/
|
|
5556
|
+
export interface WrappedResponseCommandsIndexResponseData {
|
|
5557
|
+
}
|
|
5558
|
+
/**
|
|
5559
|
+
*
|
|
5560
|
+
* @export
|
|
5561
|
+
* @interface WrappedResponseCreateVisitorResponse
|
|
5562
|
+
*/
|
|
5563
|
+
export interface WrappedResponseCreateVisitorResponse {
|
|
5564
|
+
/**
|
|
5565
|
+
*
|
|
5566
|
+
* @type {WrappedResponseCreateVisitorResponseData}
|
|
5567
|
+
* @memberof WrappedResponseCreateVisitorResponse
|
|
5568
|
+
*/
|
|
5569
|
+
'data': WrappedResponseCreateVisitorResponseData | null;
|
|
5570
|
+
}
|
|
5571
|
+
/**
|
|
5572
|
+
*
|
|
5573
|
+
* @export
|
|
5574
|
+
* @interface WrappedResponseCreateVisitorResponseData
|
|
5575
|
+
*/
|
|
5576
|
+
export interface WrappedResponseCreateVisitorResponseData {
|
|
5577
|
+
/**
|
|
5578
|
+
*
|
|
5579
|
+
* @type {string}
|
|
5580
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
5581
|
+
*/
|
|
5582
|
+
'id': string;
|
|
5583
|
+
/**
|
|
5584
|
+
*
|
|
5585
|
+
* @type {string}
|
|
5586
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
5587
|
+
*/
|
|
5588
|
+
'name': string;
|
|
5589
|
+
/**
|
|
5590
|
+
*
|
|
5591
|
+
* @type {string}
|
|
5592
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
5593
|
+
*/
|
|
5594
|
+
'profile_image_url': string | null;
|
|
5595
|
+
/**
|
|
5596
|
+
*
|
|
5597
|
+
* @type {string}
|
|
5598
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
5599
|
+
*/
|
|
5600
|
+
'email': string;
|
|
5601
|
+
/**
|
|
5602
|
+
*
|
|
5603
|
+
* @type {string}
|
|
5604
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
5605
|
+
*/
|
|
5606
|
+
'company_name': string;
|
|
5607
|
+
/**
|
|
5608
|
+
*
|
|
5609
|
+
* @type {string}
|
|
5610
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
5611
|
+
*/
|
|
5612
|
+
'reference': string | null;
|
|
5613
|
+
/**
|
|
5614
|
+
*
|
|
5615
|
+
* @type {string}
|
|
5616
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
5617
|
+
*/
|
|
5618
|
+
'inviter_id': string;
|
|
5619
|
+
/**
|
|
5620
|
+
*
|
|
5621
|
+
* @type {string}
|
|
5622
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
5623
|
+
*/
|
|
5624
|
+
'created_at': string;
|
|
5625
|
+
/**
|
|
5626
|
+
*
|
|
5627
|
+
* @type {string}
|
|
5628
|
+
* @memberof WrappedResponseCreateVisitorResponseData
|
|
5629
|
+
*/
|
|
5630
|
+
'updated_at': string;
|
|
5631
|
+
}
|
|
5632
|
+
/**
|
|
5633
|
+
*
|
|
5634
|
+
* @export
|
|
5635
|
+
* @interface WrappedResponseFetchParkingResult
|
|
5636
|
+
*/
|
|
5637
|
+
export interface WrappedResponseFetchParkingResult {
|
|
5638
|
+
/**
|
|
5639
|
+
*
|
|
5640
|
+
* @type {WrappedResponseFetchParkingResultData}
|
|
5641
|
+
* @memberof WrappedResponseFetchParkingResult
|
|
5642
|
+
*/
|
|
5643
|
+
'data': WrappedResponseFetchParkingResultData | null;
|
|
5644
|
+
}
|
|
5645
|
+
/**
|
|
5646
|
+
*
|
|
5647
|
+
* @export
|
|
5648
|
+
* @interface WrappedResponseFetchParkingResultData
|
|
5649
|
+
*/
|
|
5650
|
+
export interface WrappedResponseFetchParkingResultData {
|
|
5651
|
+
/**
|
|
5652
|
+
*
|
|
5653
|
+
* @type {boolean}
|
|
5654
|
+
* @memberof WrappedResponseFetchParkingResultData
|
|
5655
|
+
*/
|
|
5656
|
+
'result': boolean;
|
|
5657
|
+
/**
|
|
5658
|
+
*
|
|
5659
|
+
* @type {Array<SyncResultSyncJobErrorInner>}
|
|
5660
|
+
* @memberof WrappedResponseFetchParkingResultData
|
|
5661
|
+
*/
|
|
5662
|
+
'error': Array<SyncResultSyncJobErrorInner>;
|
|
5663
|
+
}
|
|
5664
|
+
/**
|
|
5665
|
+
*
|
|
5666
|
+
* @export
|
|
5667
|
+
* @interface WrappedResponseLocationIndexResponse
|
|
5668
|
+
*/
|
|
5669
|
+
export interface WrappedResponseLocationIndexResponse {
|
|
5670
|
+
/**
|
|
5671
|
+
*
|
|
5672
|
+
* @type {WrappedResponseLocationIndexResponseData}
|
|
5673
|
+
* @memberof WrappedResponseLocationIndexResponse
|
|
5674
|
+
*/
|
|
5675
|
+
'data': WrappedResponseLocationIndexResponseData | null;
|
|
5676
|
+
}
|
|
5677
|
+
/**
|
|
5678
|
+
*
|
|
5679
|
+
* @export
|
|
5680
|
+
* @interface WrappedResponseLocationIndexResponseData
|
|
5681
|
+
*/
|
|
5682
|
+
export interface WrappedResponseLocationIndexResponseData {
|
|
5683
|
+
}
|
|
5684
|
+
/**
|
|
5685
|
+
*
|
|
5686
|
+
* @export
|
|
5687
|
+
* @interface WrappedResponseMemberIndexInterfaceArrayOrNull
|
|
5688
|
+
*/
|
|
5689
|
+
export interface WrappedResponseMemberIndexInterfaceArrayOrNull {
|
|
5690
|
+
/**
|
|
5691
|
+
*
|
|
5692
|
+
* @type {WrappedResponseMemberIndexInterfaceArrayOrNullData}
|
|
5693
|
+
* @memberof WrappedResponseMemberIndexInterfaceArrayOrNull
|
|
5694
|
+
*/
|
|
5695
|
+
'data': WrappedResponseMemberIndexInterfaceArrayOrNullData | null;
|
|
5696
|
+
}
|
|
5697
|
+
/**
|
|
5698
|
+
*
|
|
5699
|
+
* @export
|
|
5700
|
+
* @interface WrappedResponseMemberIndexInterfaceArrayOrNullData
|
|
5701
|
+
*/
|
|
5702
|
+
export interface WrappedResponseMemberIndexInterfaceArrayOrNullData {
|
|
5703
|
+
}
|
|
5704
|
+
/**
|
|
5705
|
+
*
|
|
5706
|
+
* @export
|
|
5707
|
+
* @interface WrappedResponseMembersShowResponseOrNull
|
|
5708
|
+
*/
|
|
5709
|
+
export interface WrappedResponseMembersShowResponseOrNull {
|
|
5710
|
+
/**
|
|
5711
|
+
*
|
|
5712
|
+
* @type {Array<MembersShowResponse>}
|
|
5713
|
+
* @memberof WrappedResponseMembersShowResponseOrNull
|
|
5714
|
+
*/
|
|
5715
|
+
'data': Array<MembersShowResponse> | null;
|
|
5716
|
+
}
|
|
5717
|
+
/**
|
|
5718
|
+
*
|
|
5719
|
+
* @export
|
|
5720
|
+
* @interface WrappedResponseNull
|
|
5721
|
+
*/
|
|
5722
|
+
export interface WrappedResponseNull {
|
|
5723
|
+
/**
|
|
5724
|
+
*
|
|
5725
|
+
* @type {Array<number>}
|
|
5726
|
+
* @memberof WrappedResponseNull
|
|
5727
|
+
*/
|
|
5728
|
+
'data': Array<WrappedResponseNullDataEnum>;
|
|
5729
|
+
}
|
|
5730
|
+
|
|
5731
|
+
export const WrappedResponseNullDataEnum = {
|
|
5732
|
+
NUMBER_null: null
|
|
5733
|
+
} as const;
|
|
5734
|
+
|
|
5735
|
+
export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
|
|
5736
|
+
|
|
5737
|
+
/**
|
|
5738
|
+
*
|
|
5739
|
+
* @export
|
|
5740
|
+
* @interface WrappedResponseParkingLotsIndexResponse
|
|
5741
|
+
*/
|
|
5742
|
+
export interface WrappedResponseParkingLotsIndexResponse {
|
|
5743
|
+
/**
|
|
5744
|
+
*
|
|
5745
|
+
* @type {WrappedResponseParkingLotsIndexResponseData}
|
|
5746
|
+
* @memberof WrappedResponseParkingLotsIndexResponse
|
|
5747
|
+
*/
|
|
5748
|
+
'data': WrappedResponseParkingLotsIndexResponseData | null;
|
|
5749
|
+
}
|
|
5750
|
+
/**
|
|
5751
|
+
*
|
|
5752
|
+
* @export
|
|
5753
|
+
* @interface WrappedResponseParkingLotsIndexResponseData
|
|
5754
|
+
*/
|
|
5755
|
+
export interface WrappedResponseParkingLotsIndexResponseData {
|
|
5756
|
+
}
|
|
5757
|
+
/**
|
|
5758
|
+
*
|
|
5759
|
+
* @export
|
|
5760
|
+
* @interface WrappedResponseParkingRedemptionRateResultArray
|
|
5761
|
+
*/
|
|
5762
|
+
export interface WrappedResponseParkingRedemptionRateResultArray {
|
|
5763
|
+
/**
|
|
5764
|
+
*
|
|
5765
|
+
* @type {WrappedResponseParkingRedemptionRateResultArrayData}
|
|
5766
|
+
* @memberof WrappedResponseParkingRedemptionRateResultArray
|
|
5767
|
+
*/
|
|
5768
|
+
'data': WrappedResponseParkingRedemptionRateResultArrayData | null;
|
|
5769
|
+
}
|
|
5770
|
+
/**
|
|
5771
|
+
*
|
|
5772
|
+
* @export
|
|
5773
|
+
* @interface WrappedResponseParkingRedemptionRateResultArrayData
|
|
5774
|
+
*/
|
|
5775
|
+
export interface WrappedResponseParkingRedemptionRateResultArrayData {
|
|
5776
|
+
}
|
|
5777
|
+
/**
|
|
5778
|
+
*
|
|
5779
|
+
* @export
|
|
5780
|
+
* @interface WrappedResponseParkingSpaceDetailAndSpaceDetail
|
|
5781
|
+
*/
|
|
5782
|
+
export interface WrappedResponseParkingSpaceDetailAndSpaceDetail {
|
|
5783
|
+
/**
|
|
5784
|
+
*
|
|
5785
|
+
* @type {WrappedResponseParkingSpaceDetailAndSpaceDetailData}
|
|
5786
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetail
|
|
5787
|
+
*/
|
|
5788
|
+
'data': WrappedResponseParkingSpaceDetailAndSpaceDetailData | null;
|
|
5789
|
+
}
|
|
5790
|
+
/**
|
|
5791
|
+
*
|
|
5792
|
+
* @export
|
|
5793
|
+
* @interface WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5332
5794
|
*/
|
|
5333
5795
|
export interface WrappedResponseParkingSpaceDetailAndSpaceDetailData {
|
|
5334
5796
|
/**
|
|
@@ -5336,508 +5798,776 @@ export interface WrappedResponseParkingSpaceDetailAndSpaceDetailData {
|
|
|
5336
5798
|
* @type {string}
|
|
5337
5799
|
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5338
5800
|
*/
|
|
5339
|
-
'recordSyscode': string;
|
|
5801
|
+
'recordSyscode': string;
|
|
5802
|
+
/**
|
|
5803
|
+
*
|
|
5804
|
+
* @type {string}
|
|
5805
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5806
|
+
*/
|
|
5807
|
+
'spaceSyscode': string;
|
|
5808
|
+
/**
|
|
5809
|
+
*
|
|
5810
|
+
* @type {string}
|
|
5811
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5812
|
+
*/
|
|
5813
|
+
'spaceNo': string;
|
|
5814
|
+
/**
|
|
5815
|
+
*
|
|
5816
|
+
* @type {string}
|
|
5817
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5818
|
+
*/
|
|
5819
|
+
'spacePicUri': string;
|
|
5820
|
+
/**
|
|
5821
|
+
*
|
|
5822
|
+
* @type {string}
|
|
5823
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5824
|
+
*/
|
|
5825
|
+
'parkingTime': string;
|
|
5826
|
+
/**
|
|
5827
|
+
*
|
|
5828
|
+
* @type {string}
|
|
5829
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5830
|
+
*/
|
|
5831
|
+
'parkSyscode': string;
|
|
5832
|
+
/**
|
|
5833
|
+
*
|
|
5834
|
+
* @type {string}
|
|
5835
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5836
|
+
*/
|
|
5837
|
+
'parkName': string;
|
|
5838
|
+
/**
|
|
5839
|
+
*
|
|
5840
|
+
* @type {string}
|
|
5841
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5842
|
+
*/
|
|
5843
|
+
'floorSyscode': string;
|
|
5844
|
+
/**
|
|
5845
|
+
*
|
|
5846
|
+
* @type {string}
|
|
5847
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5848
|
+
*/
|
|
5849
|
+
'floorName': string;
|
|
5850
|
+
/**
|
|
5851
|
+
*
|
|
5852
|
+
* @type {string}
|
|
5853
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5854
|
+
*/
|
|
5855
|
+
'plateNoPicUri': string;
|
|
5856
|
+
/**
|
|
5857
|
+
*
|
|
5858
|
+
* @type {string}
|
|
5859
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5860
|
+
*/
|
|
5861
|
+
'aswSyscode': string;
|
|
5862
|
+
/**
|
|
5863
|
+
*
|
|
5864
|
+
* @type {string}
|
|
5865
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5866
|
+
*/
|
|
5867
|
+
'plateNo': string;
|
|
5868
|
+
/**
|
|
5869
|
+
*
|
|
5870
|
+
* @type {string}
|
|
5871
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5872
|
+
*/
|
|
5873
|
+
'spacePicUrl': string;
|
|
5340
5874
|
/**
|
|
5341
5875
|
*
|
|
5342
5876
|
* @type {string}
|
|
5343
5877
|
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5344
5878
|
*/
|
|
5345
|
-
'
|
|
5879
|
+
'plateNoPicUrl': string;
|
|
5346
5880
|
/**
|
|
5347
5881
|
*
|
|
5348
5882
|
* @type {string}
|
|
5349
5883
|
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5350
5884
|
*/
|
|
5351
|
-
'
|
|
5885
|
+
'spacePicBinary': string;
|
|
5352
5886
|
/**
|
|
5353
5887
|
*
|
|
5354
5888
|
* @type {string}
|
|
5355
5889
|
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5356
5890
|
*/
|
|
5357
|
-
'
|
|
5891
|
+
'ibeaconIpcUuid': string;
|
|
5358
5892
|
/**
|
|
5359
5893
|
*
|
|
5360
5894
|
* @type {string}
|
|
5361
5895
|
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5362
5896
|
*/
|
|
5363
|
-
'
|
|
5897
|
+
'ibeaconIpcMajor': string;
|
|
5364
5898
|
/**
|
|
5365
5899
|
*
|
|
5366
5900
|
* @type {string}
|
|
5367
5901
|
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5368
5902
|
*/
|
|
5369
|
-
'
|
|
5903
|
+
'ibeaconIpcMinor': string;
|
|
5904
|
+
/**
|
|
5905
|
+
*
|
|
5906
|
+
* @type {string}
|
|
5907
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5908
|
+
*/
|
|
5909
|
+
'zoneName': string;
|
|
5910
|
+
}
|
|
5911
|
+
/**
|
|
5912
|
+
*
|
|
5913
|
+
* @export
|
|
5914
|
+
* @interface WrappedResponseParkingTicketData
|
|
5915
|
+
*/
|
|
5916
|
+
export interface WrappedResponseParkingTicketData {
|
|
5917
|
+
/**
|
|
5918
|
+
*
|
|
5919
|
+
* @type {WrappedResponseParkingTicketDataData}
|
|
5920
|
+
* @memberof WrappedResponseParkingTicketData
|
|
5921
|
+
*/
|
|
5922
|
+
'data': WrappedResponseParkingTicketDataData | null;
|
|
5923
|
+
}
|
|
5924
|
+
/**
|
|
5925
|
+
*
|
|
5926
|
+
* @export
|
|
5927
|
+
* @interface WrappedResponseParkingTicketDataArray
|
|
5928
|
+
*/
|
|
5929
|
+
export interface WrappedResponseParkingTicketDataArray {
|
|
5930
|
+
/**
|
|
5931
|
+
*
|
|
5932
|
+
* @type {WrappedResponseParkingTicketDataArrayData}
|
|
5933
|
+
* @memberof WrappedResponseParkingTicketDataArray
|
|
5934
|
+
*/
|
|
5935
|
+
'data': WrappedResponseParkingTicketDataArrayData | null;
|
|
5936
|
+
}
|
|
5937
|
+
/**
|
|
5938
|
+
*
|
|
5939
|
+
* @export
|
|
5940
|
+
* @interface WrappedResponseParkingTicketDataArrayData
|
|
5941
|
+
*/
|
|
5942
|
+
export interface WrappedResponseParkingTicketDataArrayData {
|
|
5943
|
+
}
|
|
5944
|
+
/**
|
|
5945
|
+
*
|
|
5946
|
+
* @export
|
|
5947
|
+
* @interface WrappedResponseParkingTicketDataData
|
|
5948
|
+
*/
|
|
5949
|
+
export interface WrappedResponseParkingTicketDataData {
|
|
5950
|
+
/**
|
|
5951
|
+
*
|
|
5952
|
+
* @type {number}
|
|
5953
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
5954
|
+
*/
|
|
5955
|
+
'vehicle_type_id': number;
|
|
5956
|
+
/**
|
|
5957
|
+
*
|
|
5958
|
+
* @type {number}
|
|
5959
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
5960
|
+
*/
|
|
5961
|
+
'member_type_id': number;
|
|
5962
|
+
/**
|
|
5963
|
+
*
|
|
5964
|
+
* @type {RateDetail}
|
|
5965
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
5966
|
+
*/
|
|
5967
|
+
'rate_detail': RateDetail;
|
|
5968
|
+
/**
|
|
5969
|
+
*
|
|
5970
|
+
* @type {string}
|
|
5971
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
5972
|
+
*/
|
|
5973
|
+
'parked_at': string;
|
|
5974
|
+
/**
|
|
5975
|
+
*
|
|
5976
|
+
* @type {number}
|
|
5977
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
5978
|
+
*/
|
|
5979
|
+
'total_fee': number;
|
|
5980
|
+
/**
|
|
5981
|
+
*
|
|
5982
|
+
* @type {string}
|
|
5983
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
5984
|
+
*/
|
|
5985
|
+
'vehicle_type': string;
|
|
5986
|
+
/**
|
|
5987
|
+
*
|
|
5988
|
+
* @type {string}
|
|
5989
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
5990
|
+
*/
|
|
5991
|
+
'ticket_number': string;
|
|
5992
|
+
/**
|
|
5993
|
+
*
|
|
5994
|
+
* @type {string}
|
|
5995
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
5996
|
+
*/
|
|
5997
|
+
'plate_number': string;
|
|
5998
|
+
/**
|
|
5999
|
+
*
|
|
6000
|
+
* @type {string}
|
|
6001
|
+
* @memberof WrappedResponseParkingTicketDataData
|
|
6002
|
+
*/
|
|
6003
|
+
'id': string;
|
|
6004
|
+
}
|
|
6005
|
+
/**
|
|
6006
|
+
*
|
|
6007
|
+
* @export
|
|
6008
|
+
* @interface WrappedResponsePassConsentResponse
|
|
6009
|
+
*/
|
|
6010
|
+
export interface WrappedResponsePassConsentResponse {
|
|
6011
|
+
/**
|
|
6012
|
+
*
|
|
6013
|
+
* @type {WrappedResponsePassConsentResponseData}
|
|
6014
|
+
* @memberof WrappedResponsePassConsentResponse
|
|
6015
|
+
*/
|
|
6016
|
+
'data': WrappedResponsePassConsentResponseData | null;
|
|
6017
|
+
}
|
|
6018
|
+
/**
|
|
6019
|
+
*
|
|
6020
|
+
* @export
|
|
6021
|
+
* @interface WrappedResponsePassConsentResponseData
|
|
6022
|
+
*/
|
|
6023
|
+
export interface WrappedResponsePassConsentResponseData {
|
|
6024
|
+
/**
|
|
6025
|
+
*
|
|
6026
|
+
* @type {string}
|
|
6027
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
6028
|
+
*/
|
|
6029
|
+
'id': string;
|
|
6030
|
+
/**
|
|
6031
|
+
*
|
|
6032
|
+
* @type {string}
|
|
6033
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
6034
|
+
*/
|
|
6035
|
+
'uid': string | null;
|
|
6036
|
+
/**
|
|
6037
|
+
*
|
|
6038
|
+
* @type {string}
|
|
6039
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
6040
|
+
*/
|
|
6041
|
+
'created_at': string;
|
|
6042
|
+
/**
|
|
6043
|
+
*
|
|
6044
|
+
* @type {string}
|
|
6045
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
6046
|
+
*/
|
|
6047
|
+
'updated_at': string;
|
|
6048
|
+
/**
|
|
6049
|
+
*
|
|
6050
|
+
* @type {string}
|
|
6051
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
6052
|
+
*/
|
|
6053
|
+
'status': WrappedResponsePassConsentResponseDataStatusEnum;
|
|
6054
|
+
/**
|
|
6055
|
+
*
|
|
6056
|
+
* @type {string}
|
|
6057
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
6058
|
+
*/
|
|
6059
|
+
'from': string;
|
|
6060
|
+
/**
|
|
6061
|
+
*
|
|
6062
|
+
* @type {string}
|
|
6063
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
6064
|
+
*/
|
|
6065
|
+
'to': string;
|
|
6066
|
+
/**
|
|
6067
|
+
*
|
|
6068
|
+
* @type {string}
|
|
6069
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
6070
|
+
*/
|
|
6071
|
+
'visitor_id': string;
|
|
6072
|
+
/**
|
|
6073
|
+
*
|
|
6074
|
+
* @type {string}
|
|
6075
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
6076
|
+
*/
|
|
6077
|
+
'issuer_id': string;
|
|
6078
|
+
/**
|
|
6079
|
+
*
|
|
6080
|
+
* @type {string}
|
|
6081
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
6082
|
+
*/
|
|
6083
|
+
'visit_schedule_id': string;
|
|
6084
|
+
/**
|
|
6085
|
+
*
|
|
6086
|
+
* @type {boolean}
|
|
6087
|
+
* @memberof WrappedResponsePassConsentResponseData
|
|
6088
|
+
*/
|
|
6089
|
+
'consent'?: boolean | null;
|
|
6090
|
+
}
|
|
6091
|
+
|
|
6092
|
+
export const WrappedResponsePassConsentResponseDataStatusEnum = {
|
|
6093
|
+
Pending: 'pending',
|
|
6094
|
+
Confirmed: 'confirmed'
|
|
6095
|
+
} as const;
|
|
6096
|
+
|
|
6097
|
+
export type WrappedResponsePassConsentResponseDataStatusEnum = typeof WrappedResponsePassConsentResponseDataStatusEnum[keyof typeof WrappedResponsePassConsentResponseDataStatusEnum];
|
|
6098
|
+
|
|
6099
|
+
/**
|
|
6100
|
+
*
|
|
6101
|
+
* @export
|
|
6102
|
+
* @interface WrappedResponseResultResponseData
|
|
6103
|
+
*/
|
|
6104
|
+
export interface WrappedResponseResultResponseData {
|
|
6105
|
+
/**
|
|
6106
|
+
*
|
|
6107
|
+
* @type {WrappedResponseResultResponseDataData}
|
|
6108
|
+
* @memberof WrappedResponseResultResponseData
|
|
6109
|
+
*/
|
|
6110
|
+
'data': WrappedResponseResultResponseDataData | null;
|
|
6111
|
+
}
|
|
6112
|
+
/**
|
|
6113
|
+
*
|
|
6114
|
+
* @export
|
|
6115
|
+
* @interface WrappedResponseResultResponseDataData
|
|
6116
|
+
*/
|
|
6117
|
+
export interface WrappedResponseResultResponseDataData {
|
|
6118
|
+
/**
|
|
6119
|
+
*
|
|
6120
|
+
* @type {boolean}
|
|
6121
|
+
* @memberof WrappedResponseResultResponseDataData
|
|
6122
|
+
*/
|
|
6123
|
+
'result': boolean;
|
|
6124
|
+
}
|
|
6125
|
+
/**
|
|
6126
|
+
*
|
|
6127
|
+
* @export
|
|
6128
|
+
* @interface WrappedResponseShowPassResponseOrNull
|
|
6129
|
+
*/
|
|
6130
|
+
export interface WrappedResponseShowPassResponseOrNull {
|
|
6131
|
+
/**
|
|
6132
|
+
*
|
|
6133
|
+
* @type {Array<ShowPassResponse>}
|
|
6134
|
+
* @memberof WrappedResponseShowPassResponseOrNull
|
|
6135
|
+
*/
|
|
6136
|
+
'data': Array<ShowPassResponse> | null;
|
|
6137
|
+
}
|
|
6138
|
+
/**
|
|
6139
|
+
*
|
|
6140
|
+
* @export
|
|
6141
|
+
* @interface WrappedResponseShowVisitorResponse
|
|
6142
|
+
*/
|
|
6143
|
+
export interface WrappedResponseShowVisitorResponse {
|
|
5370
6144
|
/**
|
|
5371
6145
|
*
|
|
5372
|
-
* @type {
|
|
5373
|
-
* @memberof
|
|
6146
|
+
* @type {WrappedResponseShowVisitorResponseData}
|
|
6147
|
+
* @memberof WrappedResponseShowVisitorResponse
|
|
5374
6148
|
*/
|
|
5375
|
-
'
|
|
6149
|
+
'data': WrappedResponseShowVisitorResponseData | null;
|
|
6150
|
+
}
|
|
6151
|
+
/**
|
|
6152
|
+
*
|
|
6153
|
+
* @export
|
|
6154
|
+
* @interface WrappedResponseShowVisitorResponseData
|
|
6155
|
+
*/
|
|
6156
|
+
export interface WrappedResponseShowVisitorResponseData {
|
|
5376
6157
|
/**
|
|
5377
6158
|
*
|
|
5378
6159
|
* @type {string}
|
|
5379
|
-
* @memberof
|
|
6160
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
5380
6161
|
*/
|
|
5381
|
-
'
|
|
6162
|
+
'id': string;
|
|
5382
6163
|
/**
|
|
5383
6164
|
*
|
|
5384
6165
|
* @type {string}
|
|
5385
|
-
* @memberof
|
|
6166
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
5386
6167
|
*/
|
|
5387
|
-
'
|
|
6168
|
+
'name': string;
|
|
5388
6169
|
/**
|
|
5389
6170
|
*
|
|
5390
6171
|
* @type {string}
|
|
5391
|
-
* @memberof
|
|
6172
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
5392
6173
|
*/
|
|
5393
|
-
'
|
|
6174
|
+
'profile_image_url': string | null;
|
|
5394
6175
|
/**
|
|
5395
6176
|
*
|
|
5396
6177
|
* @type {string}
|
|
5397
|
-
* @memberof
|
|
6178
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
5398
6179
|
*/
|
|
5399
|
-
'
|
|
6180
|
+
'email': string;
|
|
5400
6181
|
/**
|
|
5401
6182
|
*
|
|
5402
6183
|
* @type {string}
|
|
5403
|
-
* @memberof
|
|
6184
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
5404
6185
|
*/
|
|
5405
|
-
'
|
|
6186
|
+
'company_name': string;
|
|
5406
6187
|
/**
|
|
5407
6188
|
*
|
|
5408
6189
|
* @type {string}
|
|
5409
|
-
* @memberof
|
|
6190
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
5410
6191
|
*/
|
|
5411
|
-
'
|
|
6192
|
+
'reference': string | null;
|
|
5412
6193
|
/**
|
|
5413
6194
|
*
|
|
5414
6195
|
* @type {string}
|
|
5415
|
-
* @memberof
|
|
6196
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
5416
6197
|
*/
|
|
5417
|
-
'
|
|
6198
|
+
'inviter_id': string;
|
|
5418
6199
|
/**
|
|
5419
6200
|
*
|
|
5420
6201
|
* @type {string}
|
|
5421
|
-
* @memberof
|
|
6202
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
5422
6203
|
*/
|
|
5423
|
-
'
|
|
6204
|
+
'created_at': string;
|
|
5424
6205
|
/**
|
|
5425
6206
|
*
|
|
5426
6207
|
* @type {string}
|
|
5427
|
-
* @memberof
|
|
6208
|
+
* @memberof WrappedResponseShowVisitorResponseData
|
|
5428
6209
|
*/
|
|
5429
|
-
'
|
|
6210
|
+
'updated_at': string;
|
|
6211
|
+
}
|
|
6212
|
+
/**
|
|
6213
|
+
*
|
|
6214
|
+
* @export
|
|
6215
|
+
* @interface WrappedResponseTenantIndexResponse
|
|
6216
|
+
*/
|
|
6217
|
+
export interface WrappedResponseTenantIndexResponse {
|
|
5430
6218
|
/**
|
|
5431
6219
|
*
|
|
5432
|
-
* @type {
|
|
5433
|
-
* @memberof
|
|
6220
|
+
* @type {WrappedResponseTenantIndexResponseData}
|
|
6221
|
+
* @memberof WrappedResponseTenantIndexResponse
|
|
5434
6222
|
*/
|
|
5435
|
-
'
|
|
6223
|
+
'data': WrappedResponseTenantIndexResponseData | null;
|
|
6224
|
+
}
|
|
6225
|
+
/**
|
|
6226
|
+
*
|
|
6227
|
+
* @export
|
|
6228
|
+
* @interface WrappedResponseTenantIndexResponseData
|
|
6229
|
+
*/
|
|
6230
|
+
export interface WrappedResponseTenantIndexResponseData {
|
|
6231
|
+
}
|
|
6232
|
+
/**
|
|
6233
|
+
*
|
|
6234
|
+
* @export
|
|
6235
|
+
* @interface WrappedResponseTowerIndexResponse
|
|
6236
|
+
*/
|
|
6237
|
+
export interface WrappedResponseTowerIndexResponse {
|
|
5436
6238
|
/**
|
|
5437
6239
|
*
|
|
5438
|
-
* @type {
|
|
5439
|
-
* @memberof
|
|
6240
|
+
* @type {WrappedResponseTowerIndexResponseData}
|
|
6241
|
+
* @memberof WrappedResponseTowerIndexResponse
|
|
5440
6242
|
*/
|
|
5441
|
-
'
|
|
6243
|
+
'data': WrappedResponseTowerIndexResponseData | null;
|
|
6244
|
+
}
|
|
6245
|
+
/**
|
|
6246
|
+
*
|
|
6247
|
+
* @export
|
|
6248
|
+
* @interface WrappedResponseTowerIndexResponseData
|
|
6249
|
+
*/
|
|
6250
|
+
export interface WrappedResponseTowerIndexResponseData {
|
|
6251
|
+
}
|
|
6252
|
+
/**
|
|
6253
|
+
*
|
|
6254
|
+
* @export
|
|
6255
|
+
* @interface WrappedResponseUpdateMemberResponse
|
|
6256
|
+
*/
|
|
6257
|
+
export interface WrappedResponseUpdateMemberResponse {
|
|
5442
6258
|
/**
|
|
5443
6259
|
*
|
|
5444
|
-
* @type {
|
|
5445
|
-
* @memberof
|
|
6260
|
+
* @type {WrappedResponseUpdateMemberResponseData}
|
|
6261
|
+
* @memberof WrappedResponseUpdateMemberResponse
|
|
5446
6262
|
*/
|
|
5447
|
-
'
|
|
6263
|
+
'data': WrappedResponseUpdateMemberResponseData | null;
|
|
5448
6264
|
}
|
|
5449
6265
|
/**
|
|
5450
6266
|
*
|
|
5451
6267
|
* @export
|
|
5452
|
-
* @interface
|
|
6268
|
+
* @interface WrappedResponseUpdateMemberResponseData
|
|
5453
6269
|
*/
|
|
5454
|
-
export interface
|
|
6270
|
+
export interface WrappedResponseUpdateMemberResponseData {
|
|
5455
6271
|
/**
|
|
5456
6272
|
*
|
|
5457
|
-
* @type {
|
|
5458
|
-
* @memberof
|
|
6273
|
+
* @type {boolean}
|
|
6274
|
+
* @memberof WrappedResponseUpdateMemberResponseData
|
|
5459
6275
|
*/
|
|
5460
|
-
'
|
|
6276
|
+
'result': boolean | null;
|
|
5461
6277
|
}
|
|
5462
6278
|
/**
|
|
5463
6279
|
*
|
|
5464
6280
|
* @export
|
|
5465
|
-
* @interface
|
|
6281
|
+
* @interface WrappedResponseUpsertHolidayResponse
|
|
5466
6282
|
*/
|
|
5467
|
-
export interface
|
|
6283
|
+
export interface WrappedResponseUpsertHolidayResponse {
|
|
5468
6284
|
/**
|
|
5469
6285
|
*
|
|
5470
|
-
* @type {
|
|
5471
|
-
* @memberof
|
|
6286
|
+
* @type {WrappedResponseUpsertHolidayResponseData}
|
|
6287
|
+
* @memberof WrappedResponseUpsertHolidayResponse
|
|
5472
6288
|
*/
|
|
5473
|
-
'data':
|
|
6289
|
+
'data': WrappedResponseUpsertHolidayResponseData | null;
|
|
5474
6290
|
}
|
|
5475
6291
|
/**
|
|
5476
6292
|
*
|
|
5477
6293
|
* @export
|
|
5478
|
-
* @interface
|
|
6294
|
+
* @interface WrappedResponseUpsertHolidayResponseData
|
|
5479
6295
|
*/
|
|
5480
|
-
export interface
|
|
6296
|
+
export interface WrappedResponseUpsertHolidayResponseData {
|
|
6297
|
+
/**
|
|
6298
|
+
*
|
|
6299
|
+
* @type {UpsertHolidayResponseResult}
|
|
6300
|
+
* @memberof WrappedResponseUpsertHolidayResponseData
|
|
6301
|
+
*/
|
|
6302
|
+
'result': UpsertHolidayResponseResult;
|
|
5481
6303
|
}
|
|
5482
6304
|
/**
|
|
5483
6305
|
*
|
|
5484
6306
|
* @export
|
|
5485
|
-
* @interface
|
|
6307
|
+
* @interface WrappedResponseValetParkingDetail
|
|
5486
6308
|
*/
|
|
5487
|
-
export interface
|
|
6309
|
+
export interface WrappedResponseValetParkingDetail {
|
|
5488
6310
|
/**
|
|
5489
6311
|
*
|
|
5490
|
-
* @type {
|
|
5491
|
-
* @memberof
|
|
6312
|
+
* @type {WrappedResponseValetParkingDetailData}
|
|
6313
|
+
* @memberof WrappedResponseValetParkingDetail
|
|
5492
6314
|
*/
|
|
5493
|
-
'
|
|
6315
|
+
'data': WrappedResponseValetParkingDetailData | null;
|
|
6316
|
+
}
|
|
6317
|
+
/**
|
|
6318
|
+
*
|
|
6319
|
+
* @export
|
|
6320
|
+
* @interface WrappedResponseValetParkingDetailData
|
|
6321
|
+
*/
|
|
6322
|
+
export interface WrappedResponseValetParkingDetailData {
|
|
5494
6323
|
/**
|
|
5495
6324
|
*
|
|
5496
6325
|
* @type {number}
|
|
5497
|
-
* @memberof
|
|
6326
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5498
6327
|
*/
|
|
5499
|
-
'
|
|
6328
|
+
'id': number;
|
|
5500
6329
|
/**
|
|
5501
6330
|
*
|
|
5502
|
-
* @type {
|
|
5503
|
-
* @memberof
|
|
6331
|
+
* @type {string}
|
|
6332
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5504
6333
|
*/
|
|
5505
|
-
'
|
|
6334
|
+
'createdAt': string;
|
|
5506
6335
|
/**
|
|
5507
6336
|
*
|
|
5508
6337
|
* @type {string}
|
|
5509
|
-
* @memberof
|
|
6338
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5510
6339
|
*/
|
|
5511
|
-
'
|
|
6340
|
+
'updatedAt': string;
|
|
5512
6341
|
/**
|
|
5513
6342
|
*
|
|
5514
|
-
* @type {
|
|
5515
|
-
* @memberof
|
|
6343
|
+
* @type {string}
|
|
6344
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5516
6345
|
*/
|
|
5517
|
-
'
|
|
6346
|
+
'deletedAt': string;
|
|
5518
6347
|
/**
|
|
5519
6348
|
*
|
|
5520
6349
|
* @type {string}
|
|
5521
|
-
* @memberof
|
|
6350
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5522
6351
|
*/
|
|
5523
|
-
'
|
|
6352
|
+
'code': string;
|
|
5524
6353
|
/**
|
|
5525
6354
|
*
|
|
5526
6355
|
* @type {string}
|
|
5527
|
-
* @memberof
|
|
6356
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5528
6357
|
*/
|
|
5529
|
-
'
|
|
6358
|
+
'status': string;
|
|
5530
6359
|
/**
|
|
5531
6360
|
*
|
|
5532
6361
|
* @type {string}
|
|
5533
|
-
* @memberof
|
|
6362
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5534
6363
|
*/
|
|
5535
|
-
'
|
|
6364
|
+
'name': string;
|
|
5536
6365
|
/**
|
|
5537
6366
|
*
|
|
5538
6367
|
* @type {string}
|
|
5539
|
-
* @memberof
|
|
6368
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5540
6369
|
*/
|
|
5541
|
-
'
|
|
5542
|
-
}
|
|
5543
|
-
/**
|
|
5544
|
-
*
|
|
5545
|
-
* @export
|
|
5546
|
-
* @interface WrappedResponsePassConsentResponse
|
|
5547
|
-
*/
|
|
5548
|
-
export interface WrappedResponsePassConsentResponse {
|
|
6370
|
+
'phoneNumber': string;
|
|
5549
6371
|
/**
|
|
5550
6372
|
*
|
|
5551
|
-
* @type {
|
|
5552
|
-
* @memberof
|
|
6373
|
+
* @type {string}
|
|
6374
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5553
6375
|
*/
|
|
5554
|
-
'
|
|
5555
|
-
}
|
|
5556
|
-
/**
|
|
5557
|
-
*
|
|
5558
|
-
* @export
|
|
5559
|
-
* @interface WrappedResponsePassConsentResponseData
|
|
5560
|
-
*/
|
|
5561
|
-
export interface WrappedResponsePassConsentResponseData {
|
|
6376
|
+
'incomingTime': string;
|
|
5562
6377
|
/**
|
|
5563
6378
|
*
|
|
5564
6379
|
* @type {string}
|
|
5565
|
-
* @memberof
|
|
6380
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5566
6381
|
*/
|
|
5567
|
-
'
|
|
6382
|
+
'outgoingTime': string;
|
|
5568
6383
|
/**
|
|
5569
6384
|
*
|
|
5570
6385
|
* @type {string}
|
|
5571
|
-
* @memberof
|
|
6386
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5572
6387
|
*/
|
|
5573
|
-
'
|
|
6388
|
+
'licensePlate': string;
|
|
5574
6389
|
/**
|
|
5575
6390
|
*
|
|
5576
6391
|
* @type {string}
|
|
5577
|
-
* @memberof
|
|
6392
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5578
6393
|
*/
|
|
5579
|
-
'
|
|
6394
|
+
'licensePlateProvince': string;
|
|
5580
6395
|
/**
|
|
5581
6396
|
*
|
|
5582
6397
|
* @type {string}
|
|
5583
|
-
* @memberof
|
|
6398
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5584
6399
|
*/
|
|
5585
|
-
'
|
|
6400
|
+
'keyCabinetId': string;
|
|
5586
6401
|
/**
|
|
5587
6402
|
*
|
|
5588
6403
|
* @type {string}
|
|
5589
|
-
* @memberof
|
|
6404
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5590
6405
|
*/
|
|
5591
|
-
'
|
|
6406
|
+
'staffParkedId': string;
|
|
5592
6407
|
/**
|
|
5593
6408
|
*
|
|
5594
6409
|
* @type {string}
|
|
5595
|
-
* @memberof
|
|
6410
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5596
6411
|
*/
|
|
5597
|
-
'
|
|
6412
|
+
'staffDeliverId': string;
|
|
5598
6413
|
/**
|
|
5599
6414
|
*
|
|
5600
6415
|
* @type {string}
|
|
5601
|
-
* @memberof
|
|
6416
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5602
6417
|
*/
|
|
5603
|
-
'
|
|
6418
|
+
'userId': string;
|
|
5604
6419
|
/**
|
|
5605
6420
|
*
|
|
5606
6421
|
* @type {string}
|
|
5607
|
-
* @memberof
|
|
6422
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5608
6423
|
*/
|
|
5609
|
-
'
|
|
6424
|
+
'parkingSpotId': string;
|
|
5610
6425
|
/**
|
|
5611
6426
|
*
|
|
5612
6427
|
* @type {string}
|
|
5613
|
-
* @memberof
|
|
6428
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5614
6429
|
*/
|
|
5615
|
-
'
|
|
6430
|
+
'pickUpStationId': string;
|
|
5616
6431
|
/**
|
|
5617
6432
|
*
|
|
5618
|
-
* @type {
|
|
5619
|
-
* @memberof
|
|
6433
|
+
* @type {number}
|
|
6434
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5620
6435
|
*/
|
|
5621
|
-
'
|
|
6436
|
+
'dropOffStationId': number;
|
|
5622
6437
|
/**
|
|
5623
6438
|
*
|
|
5624
|
-
* @type {
|
|
5625
|
-
* @memberof
|
|
6439
|
+
* @type {string}
|
|
6440
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5626
6441
|
*/
|
|
5627
|
-
'
|
|
5628
|
-
}
|
|
5629
|
-
|
|
5630
|
-
export const WrappedResponsePassConsentResponseDataStatusEnum = {
|
|
5631
|
-
Pending: 'pending',
|
|
5632
|
-
Confirmed: 'confirmed'
|
|
5633
|
-
} as const;
|
|
5634
|
-
|
|
5635
|
-
export type WrappedResponsePassConsentResponseDataStatusEnum = typeof WrappedResponsePassConsentResponseDataStatusEnum[keyof typeof WrappedResponsePassConsentResponseDataStatusEnum];
|
|
5636
|
-
|
|
5637
|
-
/**
|
|
5638
|
-
*
|
|
5639
|
-
* @export
|
|
5640
|
-
* @interface WrappedResponseResultResponseData
|
|
5641
|
-
*/
|
|
5642
|
-
export interface WrappedResponseResultResponseData {
|
|
6442
|
+
'verifiedAt': string;
|
|
5643
6443
|
/**
|
|
5644
6444
|
*
|
|
5645
|
-
* @type {
|
|
5646
|
-
* @memberof
|
|
6445
|
+
* @type {string}
|
|
6446
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5647
6447
|
*/
|
|
5648
|
-
'
|
|
5649
|
-
}
|
|
5650
|
-
/**
|
|
5651
|
-
*
|
|
5652
|
-
* @export
|
|
5653
|
-
* @interface WrappedResponseResultResponseDataData
|
|
5654
|
-
*/
|
|
5655
|
-
export interface WrappedResponseResultResponseDataData {
|
|
6448
|
+
'staffVerifyId': string;
|
|
5656
6449
|
/**
|
|
5657
6450
|
*
|
|
5658
|
-
* @type {
|
|
5659
|
-
* @memberof
|
|
6451
|
+
* @type {string}
|
|
6452
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5660
6453
|
*/
|
|
5661
|
-
'
|
|
5662
|
-
}
|
|
5663
|
-
/**
|
|
5664
|
-
*
|
|
5665
|
-
* @export
|
|
5666
|
-
* @interface WrappedResponseShowPassResponseOrNull
|
|
5667
|
-
*/
|
|
5668
|
-
export interface WrappedResponseShowPassResponseOrNull {
|
|
6454
|
+
'confirmParkedAt': string;
|
|
5669
6455
|
/**
|
|
5670
6456
|
*
|
|
5671
|
-
* @type {
|
|
5672
|
-
* @memberof
|
|
6457
|
+
* @type {number}
|
|
6458
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5673
6459
|
*/
|
|
5674
|
-
'
|
|
5675
|
-
}
|
|
5676
|
-
/**
|
|
5677
|
-
*
|
|
5678
|
-
* @export
|
|
5679
|
-
* @interface WrappedResponseShowVisitorResponse
|
|
5680
|
-
*/
|
|
5681
|
-
export interface WrappedResponseShowVisitorResponse {
|
|
6460
|
+
'staffConfirmParkedId': number;
|
|
5682
6461
|
/**
|
|
5683
6462
|
*
|
|
5684
|
-
* @type {
|
|
5685
|
-
* @memberof
|
|
6463
|
+
* @type {string}
|
|
6464
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5686
6465
|
*/
|
|
5687
|
-
'
|
|
5688
|
-
}
|
|
5689
|
-
/**
|
|
5690
|
-
*
|
|
5691
|
-
* @export
|
|
5692
|
-
* @interface WrappedResponseShowVisitorResponseData
|
|
5693
|
-
*/
|
|
5694
|
-
export interface WrappedResponseShowVisitorResponseData {
|
|
6466
|
+
'confirmDeliverAt': string;
|
|
5695
6467
|
/**
|
|
5696
6468
|
*
|
|
5697
6469
|
* @type {string}
|
|
5698
|
-
* @memberof
|
|
6470
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5699
6471
|
*/
|
|
5700
|
-
'
|
|
6472
|
+
'staffConfirmDeliverId': string;
|
|
5701
6473
|
/**
|
|
5702
6474
|
*
|
|
5703
6475
|
* @type {string}
|
|
5704
|
-
* @memberof
|
|
6476
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5705
6477
|
*/
|
|
5706
|
-
'
|
|
6478
|
+
'signatureURL': string;
|
|
5707
6479
|
/**
|
|
5708
6480
|
*
|
|
5709
6481
|
* @type {string}
|
|
5710
|
-
* @memberof
|
|
6482
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5711
6483
|
*/
|
|
5712
|
-
'
|
|
6484
|
+
'referenceCode': string;
|
|
5713
6485
|
/**
|
|
5714
6486
|
*
|
|
5715
|
-
* @type {
|
|
5716
|
-
* @memberof
|
|
6487
|
+
* @type {boolean}
|
|
6488
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5717
6489
|
*/
|
|
5718
|
-
'
|
|
6490
|
+
'isMyQr': boolean;
|
|
5719
6491
|
/**
|
|
5720
6492
|
*
|
|
5721
6493
|
* @type {string}
|
|
5722
|
-
* @memberof
|
|
6494
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5723
6495
|
*/
|
|
5724
|
-
'
|
|
6496
|
+
'spot': string;
|
|
5725
6497
|
/**
|
|
5726
6498
|
*
|
|
5727
6499
|
* @type {string}
|
|
5728
|
-
* @memberof
|
|
6500
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5729
6501
|
*/
|
|
5730
|
-
'
|
|
6502
|
+
'staffDeliver': string;
|
|
5731
6503
|
/**
|
|
5732
6504
|
*
|
|
5733
6505
|
* @type {string}
|
|
5734
|
-
* @memberof
|
|
6506
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5735
6507
|
*/
|
|
5736
|
-
'
|
|
6508
|
+
'staffParked': string;
|
|
5737
6509
|
/**
|
|
5738
6510
|
*
|
|
5739
6511
|
* @type {string}
|
|
5740
|
-
* @memberof
|
|
6512
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5741
6513
|
*/
|
|
5742
|
-
'
|
|
6514
|
+
'staffConfirmDeliver': string;
|
|
6515
|
+
/**
|
|
6516
|
+
*
|
|
6517
|
+
* @type {Staff}
|
|
6518
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
6519
|
+
*/
|
|
6520
|
+
'staffConfirmParked': Staff;
|
|
5743
6521
|
/**
|
|
5744
6522
|
*
|
|
5745
6523
|
* @type {string}
|
|
5746
|
-
* @memberof
|
|
6524
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5747
6525
|
*/
|
|
5748
|
-
'
|
|
5749
|
-
}
|
|
5750
|
-
/**
|
|
5751
|
-
*
|
|
5752
|
-
* @export
|
|
5753
|
-
* @interface WrappedResponseTenantIndexResponse
|
|
5754
|
-
*/
|
|
5755
|
-
export interface WrappedResponseTenantIndexResponse {
|
|
6526
|
+
'staffVerify': string;
|
|
5756
6527
|
/**
|
|
5757
6528
|
*
|
|
5758
|
-
* @type {
|
|
5759
|
-
* @memberof
|
|
6529
|
+
* @type {string}
|
|
6530
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5760
6531
|
*/
|
|
5761
|
-
'
|
|
5762
|
-
}
|
|
5763
|
-
/**
|
|
5764
|
-
*
|
|
5765
|
-
* @export
|
|
5766
|
-
* @interface WrappedResponseTenantIndexResponseData
|
|
5767
|
-
*/
|
|
5768
|
-
export interface WrappedResponseTenantIndexResponseData {
|
|
5769
|
-
}
|
|
5770
|
-
/**
|
|
5771
|
-
*
|
|
5772
|
-
* @export
|
|
5773
|
-
* @interface WrappedResponseTowerIndexResponse
|
|
5774
|
-
*/
|
|
5775
|
-
export interface WrappedResponseTowerIndexResponse {
|
|
6532
|
+
'pickUpStation': string;
|
|
5776
6533
|
/**
|
|
5777
6534
|
*
|
|
5778
|
-
* @type {
|
|
5779
|
-
* @memberof
|
|
6535
|
+
* @type {DropOffStation}
|
|
6536
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5780
6537
|
*/
|
|
5781
|
-
'
|
|
5782
|
-
}
|
|
5783
|
-
/**
|
|
5784
|
-
*
|
|
5785
|
-
* @export
|
|
5786
|
-
* @interface WrappedResponseTowerIndexResponseData
|
|
5787
|
-
*/
|
|
5788
|
-
export interface WrappedResponseTowerIndexResponseData {
|
|
5789
|
-
}
|
|
5790
|
-
/**
|
|
5791
|
-
*
|
|
5792
|
-
* @export
|
|
5793
|
-
* @interface WrappedResponseUpdateMemberResponse
|
|
5794
|
-
*/
|
|
5795
|
-
export interface WrappedResponseUpdateMemberResponse {
|
|
6538
|
+
'dropOffStation': DropOffStation;
|
|
5796
6539
|
/**
|
|
5797
6540
|
*
|
|
5798
|
-
* @type {
|
|
5799
|
-
* @memberof
|
|
6541
|
+
* @type {Array<Image>}
|
|
6542
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5800
6543
|
*/
|
|
5801
|
-
'
|
|
5802
|
-
}
|
|
5803
|
-
/**
|
|
5804
|
-
*
|
|
5805
|
-
* @export
|
|
5806
|
-
* @interface WrappedResponseUpdateMemberResponseData
|
|
5807
|
-
*/
|
|
5808
|
-
export interface WrappedResponseUpdateMemberResponseData {
|
|
6544
|
+
'images': Array<Image>;
|
|
5809
6545
|
/**
|
|
5810
6546
|
*
|
|
5811
|
-
* @type {
|
|
5812
|
-
* @memberof
|
|
6547
|
+
* @type {string}
|
|
6548
|
+
* @memberof WrappedResponseValetParkingDetailData
|
|
5813
6549
|
*/
|
|
5814
|
-
'
|
|
6550
|
+
'keyCabinet': string;
|
|
5815
6551
|
}
|
|
5816
6552
|
/**
|
|
5817
6553
|
*
|
|
5818
6554
|
* @export
|
|
5819
|
-
* @interface
|
|
6555
|
+
* @interface WrappedResponseValetStationArray
|
|
5820
6556
|
*/
|
|
5821
|
-
export interface
|
|
6557
|
+
export interface WrappedResponseValetStationArray {
|
|
5822
6558
|
/**
|
|
5823
6559
|
*
|
|
5824
|
-
* @type {
|
|
5825
|
-
* @memberof
|
|
6560
|
+
* @type {WrappedResponseValetStationArrayData}
|
|
6561
|
+
* @memberof WrappedResponseValetStationArray
|
|
5826
6562
|
*/
|
|
5827
|
-
'data':
|
|
6563
|
+
'data': WrappedResponseValetStationArrayData | null;
|
|
5828
6564
|
}
|
|
5829
6565
|
/**
|
|
5830
6566
|
*
|
|
5831
6567
|
* @export
|
|
5832
|
-
* @interface
|
|
6568
|
+
* @interface WrappedResponseValetStationArrayData
|
|
5833
6569
|
*/
|
|
5834
|
-
export interface
|
|
5835
|
-
/**
|
|
5836
|
-
*
|
|
5837
|
-
* @type {UpsertHolidayResponseResult}
|
|
5838
|
-
* @memberof WrappedResponseUpsertHolidayResponseData
|
|
5839
|
-
*/
|
|
5840
|
-
'result': UpsertHolidayResponseResult;
|
|
6570
|
+
export interface WrappedResponseValetStationArrayData {
|
|
5841
6571
|
}
|
|
5842
6572
|
/**
|
|
5843
6573
|
*
|
|
@@ -6240,6 +6970,41 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6240
6970
|
options: localVarRequestOptions,
|
|
6241
6971
|
};
|
|
6242
6972
|
},
|
|
6973
|
+
/**
|
|
6974
|
+
*
|
|
6975
|
+
* @param {CallingBody} callingBody
|
|
6976
|
+
* @param {*} [options] Override http request option.
|
|
6977
|
+
* @throws {RequiredError}
|
|
6978
|
+
*/
|
|
6979
|
+
calling: async (callingBody: CallingBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6980
|
+
// verify required parameter 'callingBody' is not null or undefined
|
|
6981
|
+
assertParamExists('calling', 'callingBody', callingBody)
|
|
6982
|
+
const localVarPath = `/valet/calling`;
|
|
6983
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6984
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6985
|
+
let baseOptions;
|
|
6986
|
+
if (configuration) {
|
|
6987
|
+
baseOptions = configuration.baseOptions;
|
|
6988
|
+
}
|
|
6989
|
+
|
|
6990
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
6991
|
+
const localVarHeaderParameter = {} as any;
|
|
6992
|
+
const localVarQueryParameter = {} as any;
|
|
6993
|
+
|
|
6994
|
+
|
|
6995
|
+
|
|
6996
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6997
|
+
|
|
6998
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6999
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7000
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
7001
|
+
localVarRequestOptions.data = serializeDataIfNeeded(callingBody, localVarRequestOptions, configuration)
|
|
7002
|
+
|
|
7003
|
+
return {
|
|
7004
|
+
url: toPathString(localVarUrlObj),
|
|
7005
|
+
options: localVarRequestOptions,
|
|
7006
|
+
};
|
|
7007
|
+
},
|
|
6243
7008
|
/**
|
|
6244
7009
|
*
|
|
6245
7010
|
* @param {WebhookCreateBody} webhookCreateBody
|
|
@@ -6295,6 +7060,40 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6295
7060
|
|
|
6296
7061
|
|
|
6297
7062
|
|
|
7063
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7064
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7065
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
7066
|
+
|
|
7067
|
+
return {
|
|
7068
|
+
url: toPathString(localVarUrlObj),
|
|
7069
|
+
options: localVarRequestOptions,
|
|
7070
|
+
};
|
|
7071
|
+
},
|
|
7072
|
+
/**
|
|
7073
|
+
*
|
|
7074
|
+
* @param {string} [xAccountId]
|
|
7075
|
+
* @param {*} [options] Override http request option.
|
|
7076
|
+
* @throws {RequiredError}
|
|
7077
|
+
*/
|
|
7078
|
+
find: async (xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7079
|
+
const localVarPath = `/valet/find`;
|
|
7080
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7081
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7082
|
+
let baseOptions;
|
|
7083
|
+
if (configuration) {
|
|
7084
|
+
baseOptions = configuration.baseOptions;
|
|
7085
|
+
}
|
|
7086
|
+
|
|
7087
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
7088
|
+
const localVarHeaderParameter = {} as any;
|
|
7089
|
+
const localVarQueryParameter = {} as any;
|
|
7090
|
+
|
|
7091
|
+
if (xAccountId != null) {
|
|
7092
|
+
localVarHeaderParameter['x-account-id'] = String(xAccountId);
|
|
7093
|
+
}
|
|
7094
|
+
|
|
7095
|
+
|
|
7096
|
+
|
|
6298
7097
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6299
7098
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6300
7099
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -7558,6 +8357,35 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
7558
8357
|
options: localVarRequestOptions,
|
|
7559
8358
|
};
|
|
7560
8359
|
},
|
|
8360
|
+
/**
|
|
8361
|
+
*
|
|
8362
|
+
* @param {*} [options] Override http request option.
|
|
8363
|
+
* @throws {RequiredError}
|
|
8364
|
+
*/
|
|
8365
|
+
stationRetrieve: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
8366
|
+
const localVarPath = `/valet/station/retrieve`;
|
|
8367
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8368
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8369
|
+
let baseOptions;
|
|
8370
|
+
if (configuration) {
|
|
8371
|
+
baseOptions = configuration.baseOptions;
|
|
8372
|
+
}
|
|
8373
|
+
|
|
8374
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
8375
|
+
const localVarHeaderParameter = {} as any;
|
|
8376
|
+
const localVarQueryParameter = {} as any;
|
|
8377
|
+
|
|
8378
|
+
|
|
8379
|
+
|
|
8380
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8381
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8382
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
8383
|
+
|
|
8384
|
+
return {
|
|
8385
|
+
url: toPathString(localVarUrlObj),
|
|
8386
|
+
options: localVarRequestOptions,
|
|
8387
|
+
};
|
|
8388
|
+
},
|
|
7561
8389
|
/**
|
|
7562
8390
|
*
|
|
7563
8391
|
* @param {SyncBody} syncBody
|
|
@@ -7935,6 +8763,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
7935
8763
|
const localVarAxiosArgs = await localVarAxiosParamCreator.buildingAccessLogsShow(id, accessorType, options);
|
|
7936
8764
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7937
8765
|
},
|
|
8766
|
+
/**
|
|
8767
|
+
*
|
|
8768
|
+
* @param {CallingBody} callingBody
|
|
8769
|
+
* @param {*} [options] Override http request option.
|
|
8770
|
+
* @throws {RequiredError}
|
|
8771
|
+
*/
|
|
8772
|
+
async calling(callingBody: CallingBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseValetStationArray>> {
|
|
8773
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.calling(callingBody, options);
|
|
8774
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8775
|
+
},
|
|
7938
8776
|
/**
|
|
7939
8777
|
*
|
|
7940
8778
|
* @param {WebhookCreateBody} webhookCreateBody
|
|
@@ -7954,6 +8792,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
7954
8792
|
const localVarAxiosArgs = await localVarAxiosParamCreator.fetch(options);
|
|
7955
8793
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7956
8794
|
},
|
|
8795
|
+
/**
|
|
8796
|
+
*
|
|
8797
|
+
* @param {string} [xAccountId]
|
|
8798
|
+
* @param {*} [options] Override http request option.
|
|
8799
|
+
* @throws {RequiredError}
|
|
8800
|
+
*/
|
|
8801
|
+
async find(xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseValetParkingDetail>> {
|
|
8802
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.find(xAccountId, options);
|
|
8803
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8804
|
+
},
|
|
7957
8805
|
/**
|
|
7958
8806
|
*
|
|
7959
8807
|
* @param {*} [options] Override http request option.
|
|
@@ -8302,6 +9150,15 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
8302
9150
|
const localVarAxiosArgs = await localVarAxiosParamCreator.serviceRequestsUpdate(id, serviceRequestsUpdateRequestBody, options);
|
|
8303
9151
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8304
9152
|
},
|
|
9153
|
+
/**
|
|
9154
|
+
*
|
|
9155
|
+
* @param {*} [options] Override http request option.
|
|
9156
|
+
* @throws {RequiredError}
|
|
9157
|
+
*/
|
|
9158
|
+
async stationRetrieve(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseValetStationArray>> {
|
|
9159
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.stationRetrieve(options);
|
|
9160
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9161
|
+
},
|
|
8305
9162
|
/**
|
|
8306
9163
|
*
|
|
8307
9164
|
* @param {SyncBody} syncBody
|
|
@@ -8483,6 +9340,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
8483
9340
|
buildingAccessLogsShow(id: string, accessorType: AccessorType, options?: any): AxiosPromise<WrappedArrayResponseBuildingAccessLogResult> {
|
|
8484
9341
|
return localVarFp.buildingAccessLogsShow(id, accessorType, options).then((request) => request(axios, basePath));
|
|
8485
9342
|
},
|
|
9343
|
+
/**
|
|
9344
|
+
*
|
|
9345
|
+
* @param {CallingBody} callingBody
|
|
9346
|
+
* @param {*} [options] Override http request option.
|
|
9347
|
+
* @throws {RequiredError}
|
|
9348
|
+
*/
|
|
9349
|
+
calling(callingBody: CallingBody, options?: any): AxiosPromise<WrappedResponseValetStationArray> {
|
|
9350
|
+
return localVarFp.calling(callingBody, options).then((request) => request(axios, basePath));
|
|
9351
|
+
},
|
|
8486
9352
|
/**
|
|
8487
9353
|
*
|
|
8488
9354
|
* @param {WebhookCreateBody} webhookCreateBody
|
|
@@ -8500,6 +9366,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
8500
9366
|
fetch(options?: any): AxiosPromise<WrappedResponseFetchParkingResult> {
|
|
8501
9367
|
return localVarFp.fetch(options).then((request) => request(axios, basePath));
|
|
8502
9368
|
},
|
|
9369
|
+
/**
|
|
9370
|
+
*
|
|
9371
|
+
* @param {string} [xAccountId]
|
|
9372
|
+
* @param {*} [options] Override http request option.
|
|
9373
|
+
* @throws {RequiredError}
|
|
9374
|
+
*/
|
|
9375
|
+
find(xAccountId?: string, options?: any): AxiosPromise<WrappedResponseValetParkingDetail> {
|
|
9376
|
+
return localVarFp.find(xAccountId, options).then((request) => request(axios, basePath));
|
|
9377
|
+
},
|
|
8503
9378
|
/**
|
|
8504
9379
|
*
|
|
8505
9380
|
* @param {*} [options] Override http request option.
|
|
@@ -8817,6 +9692,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
8817
9692
|
serviceRequestsUpdate(id: string, serviceRequestsUpdateRequestBody: ServiceRequestsUpdateRequestBody, options?: any): AxiosPromise<WrappedOneResponseServiceRequestData> {
|
|
8818
9693
|
return localVarFp.serviceRequestsUpdate(id, serviceRequestsUpdateRequestBody, options).then((request) => request(axios, basePath));
|
|
8819
9694
|
},
|
|
9695
|
+
/**
|
|
9696
|
+
*
|
|
9697
|
+
* @param {*} [options] Override http request option.
|
|
9698
|
+
* @throws {RequiredError}
|
|
9699
|
+
*/
|
|
9700
|
+
stationRetrieve(options?: any): AxiosPromise<WrappedResponseValetStationArray> {
|
|
9701
|
+
return localVarFp.stationRetrieve(options).then((request) => request(axios, basePath));
|
|
9702
|
+
},
|
|
8820
9703
|
/**
|
|
8821
9704
|
*
|
|
8822
9705
|
* @param {SyncBody} syncBody
|
|
@@ -9006,6 +9889,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
9006
9889
|
return DefaultApiFp(this.configuration).buildingAccessLogsShow(id, accessorType, options).then((request) => request(this.axios, this.basePath));
|
|
9007
9890
|
}
|
|
9008
9891
|
|
|
9892
|
+
/**
|
|
9893
|
+
*
|
|
9894
|
+
* @param {CallingBody} callingBody
|
|
9895
|
+
* @param {*} [options] Override http request option.
|
|
9896
|
+
* @throws {RequiredError}
|
|
9897
|
+
* @memberof DefaultApi
|
|
9898
|
+
*/
|
|
9899
|
+
public calling(callingBody: CallingBody, options?: AxiosRequestConfig) {
|
|
9900
|
+
return DefaultApiFp(this.configuration).calling(callingBody, options).then((request) => request(this.axios, this.basePath));
|
|
9901
|
+
}
|
|
9902
|
+
|
|
9009
9903
|
/**
|
|
9010
9904
|
*
|
|
9011
9905
|
* @param {WebhookCreateBody} webhookCreateBody
|
|
@@ -9027,6 +9921,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
9027
9921
|
return DefaultApiFp(this.configuration).fetch(options).then((request) => request(this.axios, this.basePath));
|
|
9028
9922
|
}
|
|
9029
9923
|
|
|
9924
|
+
/**
|
|
9925
|
+
*
|
|
9926
|
+
* @param {string} [xAccountId]
|
|
9927
|
+
* @param {*} [options] Override http request option.
|
|
9928
|
+
* @throws {RequiredError}
|
|
9929
|
+
* @memberof DefaultApi
|
|
9930
|
+
*/
|
|
9931
|
+
public find(xAccountId?: string, options?: AxiosRequestConfig) {
|
|
9932
|
+
return DefaultApiFp(this.configuration).find(xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
9933
|
+
}
|
|
9934
|
+
|
|
9030
9935
|
/**
|
|
9031
9936
|
*
|
|
9032
9937
|
* @param {*} [options] Override http request option.
|
|
@@ -9406,6 +10311,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
9406
10311
|
return DefaultApiFp(this.configuration).serviceRequestsUpdate(id, serviceRequestsUpdateRequestBody, options).then((request) => request(this.axios, this.basePath));
|
|
9407
10312
|
}
|
|
9408
10313
|
|
|
10314
|
+
/**
|
|
10315
|
+
*
|
|
10316
|
+
* @param {*} [options] Override http request option.
|
|
10317
|
+
* @throws {RequiredError}
|
|
10318
|
+
* @memberof DefaultApi
|
|
10319
|
+
*/
|
|
10320
|
+
public stationRetrieve(options?: AxiosRequestConfig) {
|
|
10321
|
+
return DefaultApiFp(this.configuration).stationRetrieve(options).then((request) => request(this.axios, this.basePath));
|
|
10322
|
+
}
|
|
10323
|
+
|
|
9409
10324
|
/**
|
|
9410
10325
|
*
|
|
9411
10326
|
* @param {SyncBody} syncBody
|