ob-bms-sdk 0.0.99 → 0.0.101

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 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
@@ -2698,6 +2803,42 @@ export interface ParkingSpaceDetailAndSpaceDetail {
2698
2803
  * @memberof ParkingSpaceDetailAndSpaceDetail
2699
2804
  */
2700
2805
  'zoneName': string;
2806
+ /**
2807
+ *
2808
+ * @type {string}
2809
+ * @memberof ParkingSpaceDetailAndSpaceDetail
2810
+ */
2811
+ 'poleId'?: string;
2812
+ /**
2813
+ *
2814
+ * @type {string}
2815
+ * @memberof ParkingSpaceDetailAndSpaceDetail
2816
+ */
2817
+ 'poleName'?: string;
2818
+ /**
2819
+ *
2820
+ * @type {string}
2821
+ * @memberof ParkingSpaceDetailAndSpaceDetail
2822
+ */
2823
+ 'poleRow'?: string;
2824
+ /**
2825
+ *
2826
+ * @type {string}
2827
+ * @memberof ParkingSpaceDetailAndSpaceDetail
2828
+ */
2829
+ 'poleColumn'?: string;
2830
+ /**
2831
+ *
2832
+ * @type {string}
2833
+ * @memberof ParkingSpaceDetailAndSpaceDetail
2834
+ */
2835
+ 'poleColorName'?: string;
2836
+ /**
2837
+ *
2838
+ * @type {string}
2839
+ * @memberof ParkingSpaceDetailAndSpaceDetail
2840
+ */
2841
+ 'poleColorCode'?: string;
2701
2842
  }
2702
2843
  /**
2703
2844
  *
@@ -3804,6 +3945,73 @@ export interface SpotTypeData {
3804
3945
  */
3805
3946
  'total_spots'?: number;
3806
3947
  }
3948
+ /**
3949
+ *
3950
+ * @export
3951
+ * @interface Staff
3952
+ */
3953
+ export interface Staff {
3954
+ /**
3955
+ *
3956
+ * @type {number}
3957
+ * @memberof Staff
3958
+ */
3959
+ 'id': number;
3960
+ /**
3961
+ *
3962
+ * @type {string}
3963
+ * @memberof Staff
3964
+ */
3965
+ 'createdAt': string;
3966
+ /**
3967
+ *
3968
+ * @type {string}
3969
+ * @memberof Staff
3970
+ */
3971
+ 'updatedAt': string;
3972
+ /**
3973
+ *
3974
+ * @type {string}
3975
+ * @memberof Staff
3976
+ */
3977
+ 'deletedAt': string;
3978
+ /**
3979
+ *
3980
+ * @type {string}
3981
+ * @memberof Staff
3982
+ */
3983
+ 'userName': string;
3984
+ /**
3985
+ *
3986
+ * @type {string}
3987
+ * @memberof Staff
3988
+ */
3989
+ 'pin': string;
3990
+ /**
3991
+ *
3992
+ * @type {string}
3993
+ * @memberof Staff
3994
+ */
3995
+ 'email': string;
3996
+ /**
3997
+ *
3998
+ * @type {string}
3999
+ * @memberof Staff
4000
+ */
4001
+ 'phoneNumber': string;
4002
+ /**
4003
+ *
4004
+ * @type {string}
4005
+ * @memberof Staff
4006
+ */
4007
+ 'displayName': string;
4008
+ /**
4009
+ *
4010
+ * @type {string}
4011
+ * @memberof Staff
4012
+ */
4013
+ 'role': string;
4014
+ }
3807
4015
  /**
3808
4016
  *
3809
4017
  * @export
@@ -4247,1597 +4455,2191 @@ export interface UpsertHolidayResponseResult {
4247
4455
  /**
4248
4456
  *
4249
4457
  * @export
4250
- * @interface VisitorAccessLog
4458
+ * @interface ValetParkingDetail
4251
4459
  */
4252
- export interface VisitorAccessLog {
4460
+ export interface ValetParkingDetail {
4253
4461
  /**
4254
4462
  *
4255
4463
  * @type {number}
4256
- * @memberof VisitorAccessLog
4464
+ * @memberof ValetParkingDetail
4257
4465
  */
4258
- 'transacId': number;
4466
+ 'id': number;
4259
4467
  /**
4260
4468
  *
4261
4469
  * @type {string}
4262
- * @memberof VisitorAccessLog
4470
+ * @memberof ValetParkingDetail
4263
4471
  */
4264
- 'transacDatetime': string;
4472
+ 'createdAt': string;
4265
4473
  /**
4266
4474
  *
4267
- * @type {number}
4268
- * @memberof VisitorAccessLog
4475
+ * @type {string}
4476
+ * @memberof ValetParkingDetail
4269
4477
  */
4270
- 'projectID': number;
4478
+ 'updatedAt': string;
4271
4479
  /**
4272
4480
  *
4273
- * @type {number}
4274
- * @memberof VisitorAccessLog
4481
+ * @type {string}
4482
+ * @memberof ValetParkingDetail
4275
4483
  */
4276
- 'towerID': number;
4484
+ 'deletedAt': string;
4277
4485
  /**
4278
4486
  *
4279
4487
  * @type {string}
4280
- * @memberof VisitorAccessLog
4488
+ * @memberof ValetParkingDetail
4281
4489
  */
4282
- 'inviteID': string;
4490
+ 'code': string;
4283
4491
  /**
4284
4492
  *
4285
4493
  * @type {string}
4286
- * @memberof VisitorAccessLog
4494
+ * @memberof ValetParkingDetail
4287
4495
  */
4288
- 'turnstileID': string;
4496
+ 'status': string;
4289
4497
  /**
4290
4498
  *
4291
- * @type {number}
4292
- * @memberof VisitorAccessLog
4499
+ * @type {string}
4500
+ * @memberof ValetParkingDetail
4293
4501
  */
4294
- 'terminalPosition': number;
4295
- }
4296
- /**
4297
- *
4298
- * @export
4299
- * @interface VisitorData
4300
- */
4301
- export interface VisitorData {
4502
+ 'name': string;
4302
4503
  /**
4303
4504
  *
4304
4505
  * @type {string}
4305
- * @memberof VisitorData
4506
+ * @memberof ValetParkingDetail
4306
4507
  */
4307
- 'updated_at': string;
4508
+ 'phoneNumber': string;
4308
4509
  /**
4309
4510
  *
4310
4511
  * @type {string}
4311
- * @memberof VisitorData
4512
+ * @memberof ValetParkingDetail
4312
4513
  */
4313
- 'created_at': string;
4514
+ 'incomingTime': string;
4314
4515
  /**
4315
4516
  *
4316
4517
  * @type {string}
4317
- * @memberof VisitorData
4518
+ * @memberof ValetParkingDetail
4318
4519
  */
4319
- 'inviter_id': string;
4520
+ 'outgoingTime': string;
4320
4521
  /**
4321
4522
  *
4322
4523
  * @type {string}
4323
- * @memberof VisitorData
4524
+ * @memberof ValetParkingDetail
4324
4525
  */
4325
- 'reference'?: string | null;
4526
+ 'licensePlate': string;
4326
4527
  /**
4327
4528
  *
4328
4529
  * @type {string}
4329
- * @memberof VisitorData
4530
+ * @memberof ValetParkingDetail
4330
4531
  */
4331
- 'company_name': string;
4532
+ 'licensePlateProvince': string;
4332
4533
  /**
4333
4534
  *
4334
4535
  * @type {string}
4335
- * @memberof VisitorData
4536
+ * @memberof ValetParkingDetail
4336
4537
  */
4337
- 'email': string;
4538
+ 'keyCabinetId': string;
4338
4539
  /**
4339
4540
  *
4340
4541
  * @type {string}
4341
- * @memberof VisitorData
4542
+ * @memberof ValetParkingDetail
4342
4543
  */
4343
- 'profile_image_url': string | null;
4544
+ 'staffParkedId': string;
4344
4545
  /**
4345
4546
  *
4346
4547
  * @type {string}
4347
- * @memberof VisitorData
4548
+ * @memberof ValetParkingDetail
4348
4549
  */
4349
- 'name': string;
4550
+ 'staffDeliverId': string;
4350
4551
  /**
4351
4552
  *
4352
4553
  * @type {string}
4353
- * @memberof VisitorData
4554
+ * @memberof ValetParkingDetail
4354
4555
  */
4355
- 'id': string;
4356
- }
4357
- /**
4358
- *
4359
- * @export
4360
- * @interface VisitorPassedPayload
4361
- */
4362
- export interface VisitorPassedPayload {
4556
+ 'userId': string;
4363
4557
  /**
4364
4558
  *
4365
4559
  * @type {string}
4366
- * @memberof VisitorPassedPayload
4560
+ * @memberof ValetParkingDetail
4367
4561
  */
4368
- 'inviteID': string;
4562
+ 'parkingSpotId': string;
4369
4563
  /**
4370
4564
  *
4371
4565
  * @type {string}
4372
- * @memberof VisitorPassedPayload
4566
+ * @memberof ValetParkingDetail
4373
4567
  */
4374
- 'liftName': string;
4568
+ 'pickUpStationId': string;
4375
4569
  /**
4376
4570
  *
4377
- * @type {string}
4378
- * @memberof VisitorPassedPayload
4571
+ * @type {number}
4572
+ * @memberof ValetParkingDetail
4379
4573
  */
4380
- 'floorName': string;
4574
+ 'dropOffStationId': number;
4381
4575
  /**
4382
4576
  *
4383
4577
  * @type {string}
4384
- * @memberof VisitorPassedPayload
4578
+ * @memberof ValetParkingDetail
4385
4579
  */
4386
- 'towerName': string;
4387
- }
4388
- /**
4389
- *
4390
- * @export
4391
- * @interface VisitorPasses
4392
- */
4393
- export interface VisitorPasses {
4580
+ 'verifiedAt': string;
4394
4581
  /**
4395
4582
  *
4396
4583
  * @type {string}
4397
- * @memberof VisitorPasses
4584
+ * @memberof ValetParkingDetail
4398
4585
  */
4399
- 'name': string;
4586
+ 'staffVerifyId': string;
4400
4587
  /**
4401
4588
  *
4402
4589
  * @type {string}
4403
- * @memberof VisitorPasses
4590
+ * @memberof ValetParkingDetail
4404
4591
  */
4405
- 'profile_image_url': string | null;
4592
+ 'confirmParkedAt': string;
4406
4593
  /**
4407
4594
  *
4408
- * @type {string}
4409
- * @memberof VisitorPasses
4595
+ * @type {number}
4596
+ * @memberof ValetParkingDetail
4410
4597
  */
4411
- 'email': string;
4598
+ 'staffConfirmParkedId': number;
4412
4599
  /**
4413
4600
  *
4414
4601
  * @type {string}
4415
- * @memberof VisitorPasses
4602
+ * @memberof ValetParkingDetail
4416
4603
  */
4417
- 'company_name': string;
4604
+ 'confirmDeliverAt': string;
4418
4605
  /**
4419
4606
  *
4420
4607
  * @type {string}
4421
- * @memberof VisitorPasses
4608
+ * @memberof ValetParkingDetail
4422
4609
  */
4423
- 'reference'?: string | null;
4610
+ 'staffConfirmDeliverId': string;
4424
4611
  /**
4425
4612
  *
4426
4613
  * @type {string}
4427
- * @memberof VisitorPasses
4614
+ * @memberof ValetParkingDetail
4428
4615
  */
4429
- 'inviter_id': string;
4616
+ 'signatureURL': string;
4430
4617
  /**
4431
4618
  *
4432
4619
  * @type {string}
4433
- * @memberof VisitorPasses
4620
+ * @memberof ValetParkingDetail
4434
4621
  */
4435
- 'created_at': string;
4622
+ 'referenceCode': string;
4436
4623
  /**
4437
4624
  *
4438
- * @type {string}
4439
- * @memberof VisitorPasses
4625
+ * @type {boolean}
4626
+ * @memberof ValetParkingDetail
4440
4627
  */
4441
- 'updated_at': string;
4442
- }
4443
- /**
4444
- *
4445
- * @export
4446
- * @interface VisitorResult
4447
- */
4448
- export interface VisitorResult {
4628
+ 'isMyQr': boolean;
4449
4629
  /**
4450
4630
  *
4451
4631
  * @type {string}
4452
- * @memberof VisitorResult
4632
+ * @memberof ValetParkingDetail
4453
4633
  */
4454
- 'updated_at': string;
4634
+ 'spot': string;
4455
4635
  /**
4456
4636
  *
4457
4637
  * @type {string}
4458
- * @memberof VisitorResult
4638
+ * @memberof ValetParkingDetail
4459
4639
  */
4460
- 'created_at': string;
4640
+ 'staffDeliver': string;
4461
4641
  /**
4462
4642
  *
4463
4643
  * @type {string}
4464
- * @memberof VisitorResult
4644
+ * @memberof ValetParkingDetail
4465
4645
  */
4466
- 'inviter_id': string;
4646
+ 'staffParked': string;
4467
4647
  /**
4468
4648
  *
4469
4649
  * @type {string}
4470
- * @memberof VisitorResult
4650
+ * @memberof ValetParkingDetail
4471
4651
  */
4472
- 'reference'?: string | null;
4652
+ 'staffConfirmDeliver': string;
4473
4653
  /**
4474
4654
  *
4475
- * @type {string}
4476
- * @memberof VisitorResult
4655
+ * @type {Staff}
4656
+ * @memberof ValetParkingDetail
4477
4657
  */
4478
- 'company_name': string;
4658
+ 'staffConfirmParked': Staff;
4479
4659
  /**
4480
4660
  *
4481
4661
  * @type {string}
4482
- * @memberof VisitorResult
4662
+ * @memberof ValetParkingDetail
4483
4663
  */
4484
- 'email': string;
4664
+ 'staffVerify': string;
4485
4665
  /**
4486
4666
  *
4487
4667
  * @type {string}
4488
- * @memberof VisitorResult
4668
+ * @memberof ValetParkingDetail
4489
4669
  */
4490
- 'profile_image_url': string | null;
4670
+ 'pickUpStation': string;
4491
4671
  /**
4492
4672
  *
4493
- * @type {string}
4494
- * @memberof VisitorResult
4673
+ * @type {DropOffStation}
4674
+ * @memberof ValetParkingDetail
4495
4675
  */
4496
- 'name': string;
4676
+ 'dropOffStation': DropOffStation;
4497
4677
  /**
4498
4678
  *
4499
- * @type {string}
4500
- * @memberof VisitorResult
4679
+ * @type {Array<Image>}
4680
+ * @memberof ValetParkingDetail
4501
4681
  */
4502
- 'id': string;
4682
+ 'images': Array<Image>;
4503
4683
  /**
4504
4684
  *
4505
- * @type {FindMemberResult}
4506
- * @memberof VisitorResult
4685
+ * @type {string}
4686
+ * @memberof ValetParkingDetail
4507
4687
  */
4508
- 'inviter': FindMemberResult;
4688
+ 'keyCabinet': string;
4509
4689
  }
4510
4690
  /**
4511
4691
  *
4512
4692
  * @export
4513
- * @interface VisitorSchedule
4693
+ * @interface ValetStation
4514
4694
  */
4515
- export interface VisitorSchedule {
4695
+ export interface ValetStation {
4696
+ /**
4697
+ *
4698
+ * @type {number}
4699
+ * @memberof ValetStation
4700
+ */
4701
+ 'id': number;
4516
4702
  /**
4517
4703
  *
4518
4704
  * @type {string}
4519
- * @memberof VisitorSchedule
4705
+ * @memberof ValetStation
4520
4706
  */
4521
- 'tower_id': string;
4707
+ 'createdAt': string;
4522
4708
  /**
4523
4709
  *
4524
4710
  * @type {string}
4525
- * @memberof VisitorSchedule
4711
+ * @memberof ValetStation
4526
4712
  */
4527
- 'floor_id': string;
4713
+ 'updatedAt': string;
4528
4714
  /**
4529
4715
  *
4530
- * @type {TenantMemberResultCreatedAt}
4531
- * @memberof VisitorSchedule
4716
+ * @type {string}
4717
+ * @memberof ValetStation
4532
4718
  */
4533
- 'from': TenantMemberResultCreatedAt;
4719
+ 'deletedAt': string | null;
4534
4720
  /**
4535
4721
  *
4536
- * @type {TenantMemberResultCreatedAt}
4537
- * @memberof VisitorSchedule
4722
+ * @type {string}
4723
+ * @memberof ValetStation
4538
4724
  */
4539
- 'to': TenantMemberResultCreatedAt;
4725
+ 'name': string;
4540
4726
  /**
4541
4727
  *
4542
- * @type {object}
4543
- * @memberof VisitorSchedule
4728
+ * @type {string}
4729
+ * @memberof ValetStation
4544
4730
  */
4545
- 'repetition'?: object;
4731
+ 'description': string;
4732
+ /**
4733
+ *
4734
+ * @type {string}
4735
+ * @memberof ValetStation
4736
+ */
4737
+ 'location': string;
4738
+ /**
4739
+ *
4740
+ * @type {boolean}
4741
+ * @memberof ValetStation
4742
+ */
4743
+ 'active': boolean;
4546
4744
  }
4547
4745
  /**
4548
4746
  *
4549
4747
  * @export
4550
- * @interface VisitorSchedulePasses
4748
+ * @interface VisitorAccessLog
4551
4749
  */
4552
- export interface VisitorSchedulePasses {
4553
- /**
4554
- *
4555
- * @type {string}
4556
- * @memberof VisitorSchedulePasses
4557
- */
4558
- 'tower_id': string;
4750
+ export interface VisitorAccessLog {
4559
4751
  /**
4560
4752
  *
4561
- * @type {string}
4562
- * @memberof VisitorSchedulePasses
4753
+ * @type {number}
4754
+ * @memberof VisitorAccessLog
4563
4755
  */
4564
- 'floor_id': string;
4756
+ 'transacId': number;
4565
4757
  /**
4566
4758
  *
4567
4759
  * @type {string}
4568
- * @memberof VisitorSchedulePasses
4760
+ * @memberof VisitorAccessLog
4569
4761
  */
4570
- 'from': string;
4762
+ 'transacDatetime': string;
4571
4763
  /**
4572
4764
  *
4573
- * @type {string}
4574
- * @memberof VisitorSchedulePasses
4765
+ * @type {number}
4766
+ * @memberof VisitorAccessLog
4575
4767
  */
4576
- 'to': string;
4768
+ 'projectID': number;
4577
4769
  /**
4578
4770
  *
4579
- * @type {object}
4580
- * @memberof VisitorSchedulePasses
4771
+ * @type {number}
4772
+ * @memberof VisitorAccessLog
4581
4773
  */
4582
- 'repetition'?: object;
4774
+ 'towerID': number;
4583
4775
  /**
4584
4776
  *
4585
4777
  * @type {string}
4586
- * @memberof VisitorSchedulePasses
4778
+ * @memberof VisitorAccessLog
4587
4779
  */
4588
- 'created_at': string;
4780
+ 'inviteID': string;
4589
4781
  /**
4590
4782
  *
4591
4783
  * @type {string}
4592
- * @memberof VisitorSchedulePasses
4784
+ * @memberof VisitorAccessLog
4593
4785
  */
4594
- 'updated_at': string;
4786
+ 'turnstileID': string;
4595
4787
  /**
4596
4788
  *
4597
- * @type {Array<VisitorScheduleTokens>}
4598
- * @memberof VisitorSchedulePasses
4789
+ * @type {number}
4790
+ * @memberof VisitorAccessLog
4599
4791
  */
4600
- 'tokens': Array<VisitorScheduleTokens>;
4792
+ 'terminalPosition': number;
4601
4793
  }
4602
4794
  /**
4603
4795
  *
4604
4796
  * @export
4605
- * @interface VisitorScheduleTokens
4797
+ * @interface VisitorData
4606
4798
  */
4607
- export interface VisitorScheduleTokens {
4799
+ export interface VisitorData {
4608
4800
  /**
4609
4801
  *
4610
4802
  * @type {string}
4611
- * @memberof VisitorScheduleTokens
4803
+ * @memberof VisitorData
4612
4804
  */
4613
- 'id'?: string;
4805
+ 'updated_at': string;
4614
4806
  /**
4615
4807
  *
4616
4808
  * @type {string}
4617
- * @memberof VisitorScheduleTokens
4809
+ * @memberof VisitorData
4618
4810
  */
4619
- 'token_id'?: string;
4811
+ 'created_at': string;
4620
4812
  /**
4621
4813
  *
4622
4814
  * @type {string}
4623
- * @memberof VisitorScheduleTokens
4815
+ * @memberof VisitorData
4624
4816
  */
4625
- 'expired_date'?: string | null;
4817
+ 'inviter_id': string;
4626
4818
  /**
4627
4819
  *
4628
4820
  * @type {string}
4629
- * @memberof VisitorScheduleTokens
4821
+ * @memberof VisitorData
4630
4822
  */
4631
- 'visitor_schedule_id'?: string;
4823
+ 'reference'?: string | null;
4632
4824
  /**
4633
4825
  *
4634
4826
  * @type {string}
4635
- * @memberof VisitorScheduleTokens
4827
+ * @memberof VisitorData
4636
4828
  */
4637
- 'created_at'?: string;
4829
+ 'company_name': string;
4638
4830
  /**
4639
4831
  *
4640
4832
  * @type {string}
4641
- * @memberof VisitorScheduleTokens
4833
+ * @memberof VisitorData
4642
4834
  */
4643
- 'updated_at'?: string;
4644
- }
4645
- /**
4646
- *
4647
- * @export
4648
- * @interface VisitorTokenData
4649
- */
4650
- export interface VisitorTokenData {
4835
+ 'email': string;
4651
4836
  /**
4652
4837
  *
4653
4838
  * @type {string}
4654
- * @memberof VisitorTokenData
4839
+ * @memberof VisitorData
4655
4840
  */
4656
- 'id': string;
4841
+ 'profile_image_url': string | null;
4657
4842
  /**
4658
4843
  *
4659
4844
  * @type {string}
4660
- * @memberof VisitorTokenData
4845
+ * @memberof VisitorData
4661
4846
  */
4662
- 'token_id': string;
4847
+ 'name': string;
4663
4848
  /**
4664
4849
  *
4665
4850
  * @type {string}
4666
- * @memberof VisitorTokenData
4851
+ * @memberof VisitorData
4667
4852
  */
4668
- 'expired_date': string | null;
4853
+ 'id': string;
4854
+ }
4855
+ /**
4856
+ *
4857
+ * @export
4858
+ * @interface VisitorPassedPayload
4859
+ */
4860
+ export interface VisitorPassedPayload {
4669
4861
  /**
4670
4862
  *
4671
4863
  * @type {string}
4672
- * @memberof VisitorTokenData
4864
+ * @memberof VisitorPassedPayload
4673
4865
  */
4674
- 'visitor_schedule_id': string;
4866
+ 'inviteID': string;
4675
4867
  /**
4676
4868
  *
4677
4869
  * @type {string}
4678
- * @memberof VisitorTokenData
4870
+ * @memberof VisitorPassedPayload
4679
4871
  */
4680
- 'uid': string;
4872
+ 'liftName': string;
4681
4873
  /**
4682
4874
  *
4683
4875
  * @type {string}
4684
- * @memberof VisitorTokenData
4876
+ * @memberof VisitorPassedPayload
4685
4877
  */
4686
- 'created_at': string;
4878
+ 'floorName': string;
4687
4879
  /**
4688
4880
  *
4689
4881
  * @type {string}
4690
- * @memberof VisitorTokenData
4882
+ * @memberof VisitorPassedPayload
4691
4883
  */
4692
- 'updated_at': string;
4884
+ 'towerName': string;
4693
4885
  }
4694
4886
  /**
4695
4887
  *
4696
4888
  * @export
4697
- * @interface VisitorTokensIndexQuery
4889
+ * @interface VisitorPasses
4698
4890
  */
4699
- export interface VisitorTokensIndexQuery {
4891
+ export interface VisitorPasses {
4700
4892
  /**
4701
4893
  *
4702
4894
  * @type {string}
4703
- * @memberof VisitorTokensIndexQuery
4895
+ * @memberof VisitorPasses
4704
4896
  */
4705
- 'token_id'?: string;
4706
- }
4707
- /**
4708
- *
4709
- * @export
4710
- * @interface WebhookCreateBody
4711
- */
4712
- export interface WebhookCreateBody {
4897
+ 'name': string;
4713
4898
  /**
4714
4899
  *
4715
4900
  * @type {string}
4716
- * @memberof WebhookCreateBody
4901
+ * @memberof VisitorPasses
4717
4902
  */
4718
- 'action': string;
4903
+ 'profile_image_url': string | null;
4719
4904
  /**
4720
4905
  *
4721
- * @type {WebhookCreateBodyPayload}
4722
- * @memberof WebhookCreateBody
4906
+ * @type {string}
4907
+ * @memberof VisitorPasses
4723
4908
  */
4724
- 'payload': WebhookCreateBodyPayload | null;
4725
- }
4726
- /**
4727
- *
4728
- * @export
4729
- * @interface WebhookCreateBodyPayload
4730
- */
4731
- export interface WebhookCreateBodyPayload {
4909
+ 'email': string;
4732
4910
  /**
4733
4911
  *
4734
4912
  * @type {string}
4735
- * @memberof WebhookCreateBodyPayload
4913
+ * @memberof VisitorPasses
4736
4914
  */
4737
- 'personID': string;
4915
+ 'company_name': string;
4738
4916
  /**
4739
4917
  *
4740
4918
  * @type {string}
4741
- * @memberof WebhookCreateBodyPayload
4919
+ * @memberof VisitorPasses
4742
4920
  */
4743
- 'liftName': string;
4921
+ 'reference'?: string | null;
4744
4922
  /**
4745
4923
  *
4746
4924
  * @type {string}
4747
- * @memberof WebhookCreateBodyPayload
4925
+ * @memberof VisitorPasses
4748
4926
  */
4749
- 'floorName': string;
4927
+ 'inviter_id': string;
4750
4928
  /**
4751
4929
  *
4752
4930
  * @type {string}
4753
- * @memberof WebhookCreateBodyPayload
4931
+ * @memberof VisitorPasses
4754
4932
  */
4755
- 'towerName': string;
4933
+ 'created_at': string;
4756
4934
  /**
4757
4935
  *
4758
4936
  * @type {string}
4759
- * @memberof WebhookCreateBodyPayload
4937
+ * @memberof VisitorPasses
4760
4938
  */
4761
- 'inviteID': string;
4939
+ 'updated_at': string;
4762
4940
  }
4763
4941
  /**
4764
4942
  *
4765
4943
  * @export
4766
- * @interface WrappedArrayResponseACRequestResponse
4944
+ * @interface VisitorResult
4767
4945
  */
4768
- export interface WrappedArrayResponseACRequestResponse {
4946
+ export interface VisitorResult {
4769
4947
  /**
4770
4948
  *
4771
- * @type {Array<ACRequestResponse>}
4772
- * @memberof WrappedArrayResponseACRequestResponse
4949
+ * @type {string}
4950
+ * @memberof VisitorResult
4773
4951
  */
4774
- 'data': Array<ACRequestResponse>;
4775
- }
4776
- /**
4777
- *
4778
- * @export
4779
- * @interface WrappedArrayResponseACZoneData
4780
- */
4781
- export interface WrappedArrayResponseACZoneData {
4952
+ 'updated_at': string;
4782
4953
  /**
4783
4954
  *
4784
- * @type {Array<ACZoneData>}
4785
- * @memberof WrappedArrayResponseACZoneData
4955
+ * @type {string}
4956
+ * @memberof VisitorResult
4786
4957
  */
4787
- 'data': Array<ACZoneData>;
4788
- }
4789
- /**
4790
- *
4791
- * @export
4792
- * @interface WrappedArrayResponseBuildingAccessLogResult
4793
- */
4794
- export interface WrappedArrayResponseBuildingAccessLogResult {
4958
+ 'created_at': string;
4795
4959
  /**
4796
4960
  *
4797
- * @type {Array<BuildingAccessLogResult>}
4798
- * @memberof WrappedArrayResponseBuildingAccessLogResult
4961
+ * @type {string}
4962
+ * @memberof VisitorResult
4799
4963
  */
4800
- 'data': Array<BuildingAccessLogResult>;
4964
+ 'inviter_id': string;
4801
4965
  /**
4802
4966
  *
4803
- * @type {Pagination}
4804
- * @memberof WrappedArrayResponseBuildingAccessLogResult
4967
+ * @type {string}
4968
+ * @memberof VisitorResult
4805
4969
  */
4806
- 'pagination'?: Pagination;
4807
- }
4808
- /**
4809
- *
4810
- * @export
4811
- * @interface WrappedArrayResponseFindMemberResult
4812
- */
4813
- export interface WrappedArrayResponseFindMemberResult {
4970
+ 'reference'?: string | null;
4814
4971
  /**
4815
4972
  *
4816
- * @type {Array<FindMemberResult>}
4817
- * @memberof WrappedArrayResponseFindMemberResult
4973
+ * @type {string}
4974
+ * @memberof VisitorResult
4818
4975
  */
4819
- 'data': Array<FindMemberResult>;
4976
+ 'company_name': string;
4820
4977
  /**
4821
4978
  *
4822
- * @type {Pagination}
4823
- * @memberof WrappedArrayResponseFindMemberResult
4979
+ * @type {string}
4980
+ * @memberof VisitorResult
4824
4981
  */
4825
- 'pagination'?: Pagination;
4826
- }
4827
- /**
4828
- *
4829
- * @export
4830
- * @interface WrappedArrayResponseFloorData
4831
- */
4832
- export interface WrappedArrayResponseFloorData {
4982
+ 'email': string;
4833
4983
  /**
4834
4984
  *
4835
- * @type {Array<FloorData>}
4836
- * @memberof WrappedArrayResponseFloorData
4985
+ * @type {string}
4986
+ * @memberof VisitorResult
4837
4987
  */
4838
- 'data': Array<FloorData>;
4839
- }
4840
- /**
4841
- *
4842
- * @export
4843
- * @interface WrappedArrayResponseHolidayResponse
4844
- */
4845
- export interface WrappedArrayResponseHolidayResponse {
4988
+ 'profile_image_url': string | null;
4846
4989
  /**
4847
4990
  *
4848
- * @type {Array<HolidayResponse>}
4849
- * @memberof WrappedArrayResponseHolidayResponse
4991
+ * @type {string}
4992
+ * @memberof VisitorResult
4850
4993
  */
4851
- 'data': Array<HolidayResponse>;
4852
- }
4853
- /**
4854
- *
4855
- * @export
4856
- * @interface WrappedArrayResponseIssueTypeData
4857
- */
4858
- export interface WrappedArrayResponseIssueTypeData {
4994
+ 'name': string;
4859
4995
  /**
4860
4996
  *
4861
- * @type {Array<IssueTypeData>}
4862
- * @memberof WrappedArrayResponseIssueTypeData
4997
+ * @type {string}
4998
+ * @memberof VisitorResult
4863
4999
  */
4864
- 'data': Array<IssueTypeData>;
5000
+ 'id': string;
5001
+ /**
5002
+ *
5003
+ * @type {FindMemberResult}
5004
+ * @memberof VisitorResult
5005
+ */
5006
+ 'inviter': FindMemberResult;
4865
5007
  }
4866
5008
  /**
4867
5009
  *
4868
5010
  * @export
4869
- * @interface WrappedArrayResponseMemberIndexResponse
5011
+ * @interface VisitorSchedule
4870
5012
  */
4871
- export interface WrappedArrayResponseMemberIndexResponse {
5013
+ export interface VisitorSchedule {
4872
5014
  /**
4873
5015
  *
4874
- * @type {Array<MemberIndexResponse>}
4875
- * @memberof WrappedArrayResponseMemberIndexResponse
5016
+ * @type {string}
5017
+ * @memberof VisitorSchedule
4876
5018
  */
4877
- 'data': Array<MemberIndexResponse>;
5019
+ 'tower_id': string;
4878
5020
  /**
4879
5021
  *
4880
- * @type {Pagination}
4881
- * @memberof WrappedArrayResponseMemberIndexResponse
5022
+ * @type {string}
5023
+ * @memberof VisitorSchedule
4882
5024
  */
4883
- 'pagination'?: Pagination;
4884
- }
4885
- /**
4886
- *
4887
- * @export
4888
- * @interface WrappedArrayResponseParkingLogResult
4889
- */
4890
- export interface WrappedArrayResponseParkingLogResult {
5025
+ 'floor_id': string;
4891
5026
  /**
4892
5027
  *
4893
- * @type {Array<ParkingLogResult>}
4894
- * @memberof WrappedArrayResponseParkingLogResult
5028
+ * @type {TenantMemberResultCreatedAt}
5029
+ * @memberof VisitorSchedule
4895
5030
  */
4896
- 'data': Array<ParkingLogResult>;
5031
+ 'from': TenantMemberResultCreatedAt;
4897
5032
  /**
4898
5033
  *
4899
- * @type {Pagination}
4900
- * @memberof WrappedArrayResponseParkingLogResult
5034
+ * @type {TenantMemberResultCreatedAt}
5035
+ * @memberof VisitorSchedule
4901
5036
  */
4902
- 'pagination'?: Pagination;
4903
- }
4904
- /**
4905
- *
4906
- * @export
4907
- * @interface WrappedArrayResponseSensorsIndexResponseData
4908
- */
4909
- export interface WrappedArrayResponseSensorsIndexResponseData {
5037
+ 'to': TenantMemberResultCreatedAt;
4910
5038
  /**
4911
5039
  *
4912
- * @type {Array<SensorIndicatorData>}
4913
- * @memberof WrappedArrayResponseSensorsIndexResponseData
5040
+ * @type {object}
5041
+ * @memberof VisitorSchedule
4914
5042
  */
4915
- 'data': Array<SensorIndicatorData>;
5043
+ 'repetition'?: object;
4916
5044
  }
4917
5045
  /**
4918
5046
  *
4919
5047
  * @export
4920
- * @interface WrappedArrayResponseServiceRequestData
5048
+ * @interface VisitorSchedulePasses
4921
5049
  */
4922
- export interface WrappedArrayResponseServiceRequestData {
5050
+ export interface VisitorSchedulePasses {
4923
5051
  /**
4924
5052
  *
4925
- * @type {Array<ServiceRequestData>}
4926
- * @memberof WrappedArrayResponseServiceRequestData
5053
+ * @type {string}
5054
+ * @memberof VisitorSchedulePasses
4927
5055
  */
4928
- 'data': Array<ServiceRequestData>;
4929
- }
4930
- /**
4931
- *
4932
- * @export
4933
- * @interface WrappedOneResponseACRequestResponse
4934
- */
4935
- export interface WrappedOneResponseACRequestResponse {
5056
+ 'tower_id': string;
4936
5057
  /**
4937
5058
  *
4938
- * @type {ACRequestResponse}
4939
- * @memberof WrappedOneResponseACRequestResponse
5059
+ * @type {string}
5060
+ * @memberof VisitorSchedulePasses
4940
5061
  */
4941
- 'data': ACRequestResponse;
4942
- }
4943
- /**
4944
- *
4945
- * @export
4946
- * @interface WrappedOneResponseCreateACRequestResponse
4947
- */
4948
- export interface WrappedOneResponseCreateACRequestResponse {
5062
+ 'floor_id': string;
4949
5063
  /**
4950
5064
  *
4951
- * @type {CreateACRequestResponse}
4952
- * @memberof WrappedOneResponseCreateACRequestResponse
5065
+ * @type {string}
5066
+ * @memberof VisitorSchedulePasses
4953
5067
  */
4954
- 'data': CreateACRequestResponse;
4955
- }
4956
- /**
4957
- *
4958
- * @export
4959
- * @interface WrappedOneResponseCreateServiceRequestResponse
4960
- */
4961
- export interface WrappedOneResponseCreateServiceRequestResponse {
5068
+ 'from': string;
4962
5069
  /**
4963
5070
  *
4964
- * @type {CreateServiceRequestResponse}
4965
- * @memberof WrappedOneResponseCreateServiceRequestResponse
5071
+ * @type {string}
5072
+ * @memberof VisitorSchedulePasses
4966
5073
  */
4967
- 'data': CreateServiceRequestResponse;
4968
- }
4969
- /**
4970
- *
4971
- * @export
4972
- * @interface WrappedOneResponseIssueTypeData
4973
- */
4974
- export interface WrappedOneResponseIssueTypeData {
5074
+ 'to': string;
4975
5075
  /**
4976
5076
  *
4977
- * @type {IssueTypeData}
4978
- * @memberof WrappedOneResponseIssueTypeData
5077
+ * @type {object}
5078
+ * @memberof VisitorSchedulePasses
4979
5079
  */
4980
- 'data': IssueTypeData;
4981
- }
4982
- /**
4983
- *
4984
- * @export
4985
- * @interface WrappedOneResponseParkingLogResult
4986
- */
4987
- export interface WrappedOneResponseParkingLogResult {
5080
+ 'repetition'?: object;
4988
5081
  /**
4989
5082
  *
4990
- * @type {ParkingLogResult}
4991
- * @memberof WrappedOneResponseParkingLogResult
5083
+ * @type {string}
5084
+ * @memberof VisitorSchedulePasses
4992
5085
  */
4993
- 'data': ParkingLogResult;
4994
- }
4995
- /**
4996
- *
4997
- * @export
4998
- * @interface WrappedOneResponseServiceRequestData
4999
- */
5000
- export interface WrappedOneResponseServiceRequestData {
5086
+ 'created_at': string;
5001
5087
  /**
5002
5088
  *
5003
- * @type {ServiceRequestData}
5004
- * @memberof WrappedOneResponseServiceRequestData
5089
+ * @type {string}
5090
+ * @memberof VisitorSchedulePasses
5005
5091
  */
5006
- 'data': ServiceRequestData;
5007
- }
5008
- /**
5009
- *
5010
- * @export
5011
- * @interface WrappedResponseCommandsCreateResponse
5012
- */
5013
- export interface WrappedResponseCommandsCreateResponse {
5092
+ 'updated_at': string;
5014
5093
  /**
5015
5094
  *
5016
- * @type {WrappedResponseCommandsCreateResponseData}
5017
- * @memberof WrappedResponseCommandsCreateResponse
5095
+ * @type {Array<VisitorScheduleTokens>}
5096
+ * @memberof VisitorSchedulePasses
5018
5097
  */
5019
- 'data': WrappedResponseCommandsCreateResponseData | null;
5098
+ 'tokens': Array<VisitorScheduleTokens>;
5020
5099
  }
5021
5100
  /**
5022
5101
  *
5023
5102
  * @export
5024
- * @interface WrappedResponseCommandsCreateResponseData
5103
+ * @interface VisitorScheduleTokens
5025
5104
  */
5026
- export interface WrappedResponseCommandsCreateResponseData {
5105
+ export interface VisitorScheduleTokens {
5027
5106
  /**
5028
5107
  *
5029
5108
  * @type {string}
5030
- * @memberof WrappedResponseCommandsCreateResponseData
5109
+ * @memberof VisitorScheduleTokens
5031
5110
  */
5032
5111
  'id'?: string;
5033
5112
  /**
5034
5113
  *
5035
5114
  * @type {string}
5036
- * @memberof WrappedResponseCommandsCreateResponseData
5037
- */
5038
- 'name'?: string;
5039
- /**
5040
- *
5041
- * @type {PrismaJsonValue}
5042
- * @memberof WrappedResponseCommandsCreateResponseData
5115
+ * @memberof VisitorScheduleTokens
5043
5116
  */
5044
- 'data'?: PrismaJsonValue | null;
5117
+ 'token_id'?: string;
5045
5118
  /**
5046
5119
  *
5047
5120
  * @type {string}
5048
- * @memberof WrappedResponseCommandsCreateResponseData
5121
+ * @memberof VisitorScheduleTokens
5049
5122
  */
5050
- 'status'?: string;
5123
+ 'expired_date'?: string | null;
5051
5124
  /**
5052
5125
  *
5053
- * @type {PrismaJsonValue}
5054
- * @memberof WrappedResponseCommandsCreateResponseData
5126
+ * @type {string}
5127
+ * @memberof VisitorScheduleTokens
5055
5128
  */
5056
- 'result'?: PrismaJsonValue | null;
5129
+ 'visitor_schedule_id'?: string;
5057
5130
  /**
5058
5131
  *
5059
5132
  * @type {string}
5060
- * @memberof WrappedResponseCommandsCreateResponseData
5133
+ * @memberof VisitorScheduleTokens
5061
5134
  */
5062
5135
  'created_at'?: string;
5063
5136
  /**
5064
5137
  *
5065
5138
  * @type {string}
5066
- * @memberof WrappedResponseCommandsCreateResponseData
5139
+ * @memberof VisitorScheduleTokens
5067
5140
  */
5068
5141
  'updated_at'?: string;
5069
- /**
5070
- *
5071
- * @type {string}
5072
- * @memberof WrappedResponseCommandsCreateResponseData
5073
- */
5074
- 'member_id'?: string;
5075
5142
  }
5076
5143
  /**
5077
5144
  *
5078
5145
  * @export
5079
- * @interface WrappedResponseCommandsIndexResponse
5080
- */
5081
- export interface WrappedResponseCommandsIndexResponse {
5082
- /**
5083
- *
5084
- * @type {WrappedResponseCommandsIndexResponseData}
5085
- * @memberof WrappedResponseCommandsIndexResponse
5086
- */
5087
- 'data': WrappedResponseCommandsIndexResponseData | null;
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 {
5102
- /**
5103
- *
5104
- * @type {WrappedResponseCreateVisitorResponseData}
5105
- * @memberof WrappedResponseCreateVisitorResponse
5106
- */
5107
- 'data': WrappedResponseCreateVisitorResponseData | null;
5108
- }
5109
- /**
5110
- *
5111
- * @export
5112
- * @interface WrappedResponseCreateVisitorResponseData
5146
+ * @interface VisitorTokenData
5113
5147
  */
5114
- export interface WrappedResponseCreateVisitorResponseData {
5148
+ export interface VisitorTokenData {
5115
5149
  /**
5116
5150
  *
5117
5151
  * @type {string}
5118
- * @memberof WrappedResponseCreateVisitorResponseData
5152
+ * @memberof VisitorTokenData
5119
5153
  */
5120
5154
  'id': string;
5121
5155
  /**
5122
5156
  *
5123
5157
  * @type {string}
5124
- * @memberof WrappedResponseCreateVisitorResponseData
5125
- */
5126
- 'name': string;
5127
- /**
5128
- *
5129
- * @type {string}
5130
- * @memberof WrappedResponseCreateVisitorResponseData
5131
- */
5132
- 'profile_image_url': string | null;
5133
- /**
5134
- *
5135
- * @type {string}
5136
- * @memberof WrappedResponseCreateVisitorResponseData
5158
+ * @memberof VisitorTokenData
5137
5159
  */
5138
- 'email': string;
5160
+ 'token_id': string;
5139
5161
  /**
5140
5162
  *
5141
5163
  * @type {string}
5142
- * @memberof WrappedResponseCreateVisitorResponseData
5164
+ * @memberof VisitorTokenData
5143
5165
  */
5144
- 'company_name': string;
5166
+ 'expired_date': string | null;
5145
5167
  /**
5146
5168
  *
5147
5169
  * @type {string}
5148
- * @memberof WrappedResponseCreateVisitorResponseData
5170
+ * @memberof VisitorTokenData
5149
5171
  */
5150
- 'reference': string | null;
5172
+ 'visitor_schedule_id': string;
5151
5173
  /**
5152
5174
  *
5153
5175
  * @type {string}
5154
- * @memberof WrappedResponseCreateVisitorResponseData
5176
+ * @memberof VisitorTokenData
5155
5177
  */
5156
- 'inviter_id': string;
5178
+ 'uid': string;
5157
5179
  /**
5158
5180
  *
5159
5181
  * @type {string}
5160
- * @memberof WrappedResponseCreateVisitorResponseData
5182
+ * @memberof VisitorTokenData
5161
5183
  */
5162
5184
  'created_at': string;
5163
5185
  /**
5164
5186
  *
5165
5187
  * @type {string}
5166
- * @memberof WrappedResponseCreateVisitorResponseData
5188
+ * @memberof VisitorTokenData
5167
5189
  */
5168
5190
  'updated_at': string;
5169
5191
  }
5170
5192
  /**
5171
5193
  *
5172
5194
  * @export
5173
- * @interface WrappedResponseFetchParkingResult
5195
+ * @interface VisitorTokensIndexQuery
5174
5196
  */
5175
- export interface WrappedResponseFetchParkingResult {
5197
+ export interface VisitorTokensIndexQuery {
5176
5198
  /**
5177
5199
  *
5178
- * @type {WrappedResponseFetchParkingResultData}
5179
- * @memberof WrappedResponseFetchParkingResult
5200
+ * @type {string}
5201
+ * @memberof VisitorTokensIndexQuery
5180
5202
  */
5181
- 'data': WrappedResponseFetchParkingResultData | null;
5203
+ 'token_id'?: string;
5182
5204
  }
5183
5205
  /**
5184
5206
  *
5185
5207
  * @export
5186
- * @interface WrappedResponseFetchParkingResultData
5208
+ * @interface WebhookCreateBody
5187
5209
  */
5188
- export interface WrappedResponseFetchParkingResultData {
5210
+ export interface WebhookCreateBody {
5189
5211
  /**
5190
5212
  *
5191
- * @type {boolean}
5192
- * @memberof WrappedResponseFetchParkingResultData
5213
+ * @type {string}
5214
+ * @memberof WebhookCreateBody
5193
5215
  */
5194
- 'result': boolean;
5216
+ 'action': string;
5195
5217
  /**
5196
5218
  *
5197
- * @type {Array<SyncResultSyncJobErrorInner>}
5198
- * @memberof WrappedResponseFetchParkingResultData
5219
+ * @type {WebhookCreateBodyPayload}
5220
+ * @memberof WebhookCreateBody
5199
5221
  */
5200
- 'error': Array<SyncResultSyncJobErrorInner>;
5222
+ 'payload': WebhookCreateBodyPayload | null;
5201
5223
  }
5202
5224
  /**
5203
5225
  *
5204
5226
  * @export
5205
- * @interface WrappedResponseLocationIndexResponse
5227
+ * @interface WebhookCreateBodyPayload
5206
5228
  */
5207
- export interface WrappedResponseLocationIndexResponse {
5229
+ export interface WebhookCreateBodyPayload {
5208
5230
  /**
5209
5231
  *
5210
- * @type {WrappedResponseLocationIndexResponseData}
5211
- * @memberof WrappedResponseLocationIndexResponse
5232
+ * @type {string}
5233
+ * @memberof WebhookCreateBodyPayload
5212
5234
  */
5213
- 'data': WrappedResponseLocationIndexResponseData | null;
5235
+ 'personID': string;
5236
+ /**
5237
+ *
5238
+ * @type {string}
5239
+ * @memberof WebhookCreateBodyPayload
5240
+ */
5241
+ 'liftName': string;
5242
+ /**
5243
+ *
5244
+ * @type {string}
5245
+ * @memberof WebhookCreateBodyPayload
5246
+ */
5247
+ 'floorName': string;
5248
+ /**
5249
+ *
5250
+ * @type {string}
5251
+ * @memberof WebhookCreateBodyPayload
5252
+ */
5253
+ 'towerName': string;
5254
+ /**
5255
+ *
5256
+ * @type {string}
5257
+ * @memberof WebhookCreateBodyPayload
5258
+ */
5259
+ 'inviteID': string;
5214
5260
  }
5215
5261
  /**
5216
5262
  *
5217
5263
  * @export
5218
- * @interface WrappedResponseLocationIndexResponseData
5264
+ * @interface WrappedArrayResponseACRequestResponse
5219
5265
  */
5220
- export interface WrappedResponseLocationIndexResponseData {
5266
+ export interface WrappedArrayResponseACRequestResponse {
5267
+ /**
5268
+ *
5269
+ * @type {Array<ACRequestResponse>}
5270
+ * @memberof WrappedArrayResponseACRequestResponse
5271
+ */
5272
+ 'data': Array<ACRequestResponse>;
5221
5273
  }
5222
5274
  /**
5223
5275
  *
5224
5276
  * @export
5225
- * @interface WrappedResponseMemberIndexInterfaceArrayOrNull
5277
+ * @interface WrappedArrayResponseACZoneData
5226
5278
  */
5227
- export interface WrappedResponseMemberIndexInterfaceArrayOrNull {
5279
+ export interface WrappedArrayResponseACZoneData {
5228
5280
  /**
5229
5281
  *
5230
- * @type {WrappedResponseMemberIndexInterfaceArrayOrNullData}
5231
- * @memberof WrappedResponseMemberIndexInterfaceArrayOrNull
5282
+ * @type {Array<ACZoneData>}
5283
+ * @memberof WrappedArrayResponseACZoneData
5232
5284
  */
5233
- 'data': WrappedResponseMemberIndexInterfaceArrayOrNullData | null;
5285
+ 'data': Array<ACZoneData>;
5234
5286
  }
5235
5287
  /**
5236
5288
  *
5237
5289
  * @export
5238
- * @interface WrappedResponseMemberIndexInterfaceArrayOrNullData
5290
+ * @interface WrappedArrayResponseBuildingAccessLogResult
5239
5291
  */
5240
- export interface WrappedResponseMemberIndexInterfaceArrayOrNullData {
5292
+ export interface WrappedArrayResponseBuildingAccessLogResult {
5293
+ /**
5294
+ *
5295
+ * @type {Array<BuildingAccessLogResult>}
5296
+ * @memberof WrappedArrayResponseBuildingAccessLogResult
5297
+ */
5298
+ 'data': Array<BuildingAccessLogResult>;
5299
+ /**
5300
+ *
5301
+ * @type {Pagination}
5302
+ * @memberof WrappedArrayResponseBuildingAccessLogResult
5303
+ */
5304
+ 'pagination'?: Pagination;
5241
5305
  }
5242
5306
  /**
5243
5307
  *
5244
5308
  * @export
5245
- * @interface WrappedResponseMembersShowResponseOrNull
5309
+ * @interface WrappedArrayResponseFindMemberResult
5246
5310
  */
5247
- export interface WrappedResponseMembersShowResponseOrNull {
5311
+ export interface WrappedArrayResponseFindMemberResult {
5248
5312
  /**
5249
5313
  *
5250
- * @type {Array<MembersShowResponse>}
5251
- * @memberof WrappedResponseMembersShowResponseOrNull
5314
+ * @type {Array<FindMemberResult>}
5315
+ * @memberof WrappedArrayResponseFindMemberResult
5252
5316
  */
5253
- 'data': Array<MembersShowResponse> | null;
5317
+ 'data': Array<FindMemberResult>;
5318
+ /**
5319
+ *
5320
+ * @type {Pagination}
5321
+ * @memberof WrappedArrayResponseFindMemberResult
5322
+ */
5323
+ 'pagination'?: Pagination;
5254
5324
  }
5255
5325
  /**
5256
5326
  *
5257
5327
  * @export
5258
- * @interface WrappedResponseNull
5328
+ * @interface WrappedArrayResponseFloorData
5259
5329
  */
5260
- export interface WrappedResponseNull {
5330
+ export interface WrappedArrayResponseFloorData {
5261
5331
  /**
5262
5332
  *
5263
- * @type {Array<number>}
5264
- * @memberof WrappedResponseNull
5333
+ * @type {Array<FloorData>}
5334
+ * @memberof WrappedArrayResponseFloorData
5265
5335
  */
5266
- 'data': Array<WrappedResponseNullDataEnum>;
5336
+ 'data': Array<FloorData>;
5267
5337
  }
5268
-
5269
- export const WrappedResponseNullDataEnum = {
5270
- NUMBER_null: null
5271
- } as const;
5272
-
5273
- export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
5274
-
5275
5338
  /**
5276
5339
  *
5277
5340
  * @export
5278
- * @interface WrappedResponseParkingLotsIndexResponse
5341
+ * @interface WrappedArrayResponseHolidayResponse
5279
5342
  */
5280
- export interface WrappedResponseParkingLotsIndexResponse {
5343
+ export interface WrappedArrayResponseHolidayResponse {
5281
5344
  /**
5282
5345
  *
5283
- * @type {WrappedResponseParkingLotsIndexResponseData}
5284
- * @memberof WrappedResponseParkingLotsIndexResponse
5346
+ * @type {Array<HolidayResponse>}
5347
+ * @memberof WrappedArrayResponseHolidayResponse
5285
5348
  */
5286
- 'data': WrappedResponseParkingLotsIndexResponseData | null;
5349
+ 'data': Array<HolidayResponse>;
5287
5350
  }
5288
5351
  /**
5289
5352
  *
5290
5353
  * @export
5291
- * @interface WrappedResponseParkingLotsIndexResponseData
5354
+ * @interface WrappedArrayResponseIssueTypeData
5292
5355
  */
5293
- export interface WrappedResponseParkingLotsIndexResponseData {
5356
+ export interface WrappedArrayResponseIssueTypeData {
5357
+ /**
5358
+ *
5359
+ * @type {Array<IssueTypeData>}
5360
+ * @memberof WrappedArrayResponseIssueTypeData
5361
+ */
5362
+ 'data': Array<IssueTypeData>;
5294
5363
  }
5295
5364
  /**
5296
5365
  *
5297
5366
  * @export
5298
- * @interface WrappedResponseParkingRedemptionRateResultArray
5367
+ * @interface WrappedArrayResponseMemberIndexResponse
5299
5368
  */
5300
- export interface WrappedResponseParkingRedemptionRateResultArray {
5369
+ export interface WrappedArrayResponseMemberIndexResponse {
5301
5370
  /**
5302
5371
  *
5303
- * @type {WrappedResponseParkingRedemptionRateResultArrayData}
5304
- * @memberof WrappedResponseParkingRedemptionRateResultArray
5372
+ * @type {Array<MemberIndexResponse>}
5373
+ * @memberof WrappedArrayResponseMemberIndexResponse
5305
5374
  */
5306
- 'data': WrappedResponseParkingRedemptionRateResultArrayData | null;
5375
+ 'data': Array<MemberIndexResponse>;
5376
+ /**
5377
+ *
5378
+ * @type {Pagination}
5379
+ * @memberof WrappedArrayResponseMemberIndexResponse
5380
+ */
5381
+ 'pagination'?: Pagination;
5307
5382
  }
5308
5383
  /**
5309
5384
  *
5310
5385
  * @export
5311
- * @interface WrappedResponseParkingRedemptionRateResultArrayData
5386
+ * @interface WrappedArrayResponseParkingLogResult
5312
5387
  */
5313
- export interface WrappedResponseParkingRedemptionRateResultArrayData {
5388
+ export interface WrappedArrayResponseParkingLogResult {
5389
+ /**
5390
+ *
5391
+ * @type {Array<ParkingLogResult>}
5392
+ * @memberof WrappedArrayResponseParkingLogResult
5393
+ */
5394
+ 'data': Array<ParkingLogResult>;
5395
+ /**
5396
+ *
5397
+ * @type {Pagination}
5398
+ * @memberof WrappedArrayResponseParkingLogResult
5399
+ */
5400
+ 'pagination'?: Pagination;
5314
5401
  }
5315
5402
  /**
5316
5403
  *
5317
5404
  * @export
5318
- * @interface WrappedResponseParkingSpaceDetailAndSpaceDetail
5405
+ * @interface WrappedArrayResponseSensorsIndexResponseData
5319
5406
  */
5320
- export interface WrappedResponseParkingSpaceDetailAndSpaceDetail {
5407
+ export interface WrappedArrayResponseSensorsIndexResponseData {
5321
5408
  /**
5322
5409
  *
5323
- * @type {WrappedResponseParkingSpaceDetailAndSpaceDetailData}
5410
+ * @type {Array<SensorIndicatorData>}
5411
+ * @memberof WrappedArrayResponseSensorsIndexResponseData
5412
+ */
5413
+ 'data': Array<SensorIndicatorData>;
5414
+ }
5415
+ /**
5416
+ *
5417
+ * @export
5418
+ * @interface WrappedArrayResponseServiceRequestData
5419
+ */
5420
+ export interface WrappedArrayResponseServiceRequestData {
5421
+ /**
5422
+ *
5423
+ * @type {Array<ServiceRequestData>}
5424
+ * @memberof WrappedArrayResponseServiceRequestData
5425
+ */
5426
+ 'data': Array<ServiceRequestData>;
5427
+ }
5428
+ /**
5429
+ *
5430
+ * @export
5431
+ * @interface WrappedOneResponseACRequestResponse
5432
+ */
5433
+ export interface WrappedOneResponseACRequestResponse {
5434
+ /**
5435
+ *
5436
+ * @type {ACRequestResponse}
5437
+ * @memberof WrappedOneResponseACRequestResponse
5438
+ */
5439
+ 'data': ACRequestResponse;
5440
+ }
5441
+ /**
5442
+ *
5443
+ * @export
5444
+ * @interface WrappedOneResponseCreateACRequestResponse
5445
+ */
5446
+ export interface WrappedOneResponseCreateACRequestResponse {
5447
+ /**
5448
+ *
5449
+ * @type {CreateACRequestResponse}
5450
+ * @memberof WrappedOneResponseCreateACRequestResponse
5451
+ */
5452
+ 'data': CreateACRequestResponse;
5453
+ }
5454
+ /**
5455
+ *
5456
+ * @export
5457
+ * @interface WrappedOneResponseCreateServiceRequestResponse
5458
+ */
5459
+ export interface WrappedOneResponseCreateServiceRequestResponse {
5460
+ /**
5461
+ *
5462
+ * @type {CreateServiceRequestResponse}
5463
+ * @memberof WrappedOneResponseCreateServiceRequestResponse
5464
+ */
5465
+ 'data': CreateServiceRequestResponse;
5466
+ }
5467
+ /**
5468
+ *
5469
+ * @export
5470
+ * @interface WrappedOneResponseIssueTypeData
5471
+ */
5472
+ export interface WrappedOneResponseIssueTypeData {
5473
+ /**
5474
+ *
5475
+ * @type {IssueTypeData}
5476
+ * @memberof WrappedOneResponseIssueTypeData
5477
+ */
5478
+ 'data': IssueTypeData;
5479
+ }
5480
+ /**
5481
+ *
5482
+ * @export
5483
+ * @interface WrappedOneResponseParkingLogResult
5484
+ */
5485
+ export interface WrappedOneResponseParkingLogResult {
5486
+ /**
5487
+ *
5488
+ * @type {ParkingLogResult}
5489
+ * @memberof WrappedOneResponseParkingLogResult
5490
+ */
5491
+ 'data': ParkingLogResult;
5492
+ }
5493
+ /**
5494
+ *
5495
+ * @export
5496
+ * @interface WrappedOneResponseServiceRequestData
5497
+ */
5498
+ export interface WrappedOneResponseServiceRequestData {
5499
+ /**
5500
+ *
5501
+ * @type {ServiceRequestData}
5502
+ * @memberof WrappedOneResponseServiceRequestData
5503
+ */
5504
+ 'data': ServiceRequestData;
5505
+ }
5506
+ /**
5507
+ *
5508
+ * @export
5509
+ * @interface WrappedResponseCommandsCreateResponse
5510
+ */
5511
+ export interface WrappedResponseCommandsCreateResponse {
5512
+ /**
5513
+ *
5514
+ * @type {WrappedResponseCommandsCreateResponseData}
5515
+ * @memberof WrappedResponseCommandsCreateResponse
5516
+ */
5517
+ 'data': WrappedResponseCommandsCreateResponseData | null;
5518
+ }
5519
+ /**
5520
+ *
5521
+ * @export
5522
+ * @interface WrappedResponseCommandsCreateResponseData
5523
+ */
5524
+ export interface WrappedResponseCommandsCreateResponseData {
5525
+ /**
5526
+ *
5527
+ * @type {string}
5528
+ * @memberof WrappedResponseCommandsCreateResponseData
5529
+ */
5530
+ 'id'?: string;
5531
+ /**
5532
+ *
5533
+ * @type {string}
5534
+ * @memberof WrappedResponseCommandsCreateResponseData
5535
+ */
5536
+ 'name'?: string;
5537
+ /**
5538
+ *
5539
+ * @type {PrismaJsonValue}
5540
+ * @memberof WrappedResponseCommandsCreateResponseData
5541
+ */
5542
+ 'data'?: PrismaJsonValue | null;
5543
+ /**
5544
+ *
5545
+ * @type {string}
5546
+ * @memberof WrappedResponseCommandsCreateResponseData
5547
+ */
5548
+ 'status'?: string;
5549
+ /**
5550
+ *
5551
+ * @type {PrismaJsonValue}
5552
+ * @memberof WrappedResponseCommandsCreateResponseData
5553
+ */
5554
+ 'result'?: PrismaJsonValue | null;
5555
+ /**
5556
+ *
5557
+ * @type {string}
5558
+ * @memberof WrappedResponseCommandsCreateResponseData
5559
+ */
5560
+ 'created_at'?: string;
5561
+ /**
5562
+ *
5563
+ * @type {string}
5564
+ * @memberof WrappedResponseCommandsCreateResponseData
5565
+ */
5566
+ 'updated_at'?: string;
5567
+ /**
5568
+ *
5569
+ * @type {string}
5570
+ * @memberof WrappedResponseCommandsCreateResponseData
5571
+ */
5572
+ 'member_id'?: string;
5573
+ }
5574
+ /**
5575
+ *
5576
+ * @export
5577
+ * @interface WrappedResponseCommandsIndexResponse
5578
+ */
5579
+ export interface WrappedResponseCommandsIndexResponse {
5580
+ /**
5581
+ *
5582
+ * @type {WrappedResponseCommandsIndexResponseData}
5583
+ * @memberof WrappedResponseCommandsIndexResponse
5584
+ */
5585
+ 'data': WrappedResponseCommandsIndexResponseData | null;
5586
+ }
5587
+ /**
5588
+ *
5589
+ * @export
5590
+ * @interface WrappedResponseCommandsIndexResponseData
5591
+ */
5592
+ export interface WrappedResponseCommandsIndexResponseData {
5593
+ }
5594
+ /**
5595
+ *
5596
+ * @export
5597
+ * @interface WrappedResponseCreateVisitorResponse
5598
+ */
5599
+ export interface WrappedResponseCreateVisitorResponse {
5600
+ /**
5601
+ *
5602
+ * @type {WrappedResponseCreateVisitorResponseData}
5603
+ * @memberof WrappedResponseCreateVisitorResponse
5604
+ */
5605
+ 'data': WrappedResponseCreateVisitorResponseData | null;
5606
+ }
5607
+ /**
5608
+ *
5609
+ * @export
5610
+ * @interface WrappedResponseCreateVisitorResponseData
5611
+ */
5612
+ export interface WrappedResponseCreateVisitorResponseData {
5613
+ /**
5614
+ *
5615
+ * @type {string}
5616
+ * @memberof WrappedResponseCreateVisitorResponseData
5617
+ */
5618
+ 'id': string;
5619
+ /**
5620
+ *
5621
+ * @type {string}
5622
+ * @memberof WrappedResponseCreateVisitorResponseData
5623
+ */
5624
+ 'name': string;
5625
+ /**
5626
+ *
5627
+ * @type {string}
5628
+ * @memberof WrappedResponseCreateVisitorResponseData
5629
+ */
5630
+ 'profile_image_url': string | null;
5631
+ /**
5632
+ *
5633
+ * @type {string}
5634
+ * @memberof WrappedResponseCreateVisitorResponseData
5635
+ */
5636
+ 'email': string;
5637
+ /**
5638
+ *
5639
+ * @type {string}
5640
+ * @memberof WrappedResponseCreateVisitorResponseData
5641
+ */
5642
+ 'company_name': string;
5643
+ /**
5644
+ *
5645
+ * @type {string}
5646
+ * @memberof WrappedResponseCreateVisitorResponseData
5647
+ */
5648
+ 'reference': string | null;
5649
+ /**
5650
+ *
5651
+ * @type {string}
5652
+ * @memberof WrappedResponseCreateVisitorResponseData
5653
+ */
5654
+ 'inviter_id': string;
5655
+ /**
5656
+ *
5657
+ * @type {string}
5658
+ * @memberof WrappedResponseCreateVisitorResponseData
5659
+ */
5660
+ 'created_at': string;
5661
+ /**
5662
+ *
5663
+ * @type {string}
5664
+ * @memberof WrappedResponseCreateVisitorResponseData
5665
+ */
5666
+ 'updated_at': string;
5667
+ }
5668
+ /**
5669
+ *
5670
+ * @export
5671
+ * @interface WrappedResponseFetchParkingResult
5672
+ */
5673
+ export interface WrappedResponseFetchParkingResult {
5674
+ /**
5675
+ *
5676
+ * @type {WrappedResponseFetchParkingResultData}
5677
+ * @memberof WrappedResponseFetchParkingResult
5678
+ */
5679
+ 'data': WrappedResponseFetchParkingResultData | null;
5680
+ }
5681
+ /**
5682
+ *
5683
+ * @export
5684
+ * @interface WrappedResponseFetchParkingResultData
5685
+ */
5686
+ export interface WrappedResponseFetchParkingResultData {
5687
+ /**
5688
+ *
5689
+ * @type {boolean}
5690
+ * @memberof WrappedResponseFetchParkingResultData
5691
+ */
5692
+ 'result': boolean;
5693
+ /**
5694
+ *
5695
+ * @type {Array<SyncResultSyncJobErrorInner>}
5696
+ * @memberof WrappedResponseFetchParkingResultData
5697
+ */
5698
+ 'error': Array<SyncResultSyncJobErrorInner>;
5699
+ }
5700
+ /**
5701
+ *
5702
+ * @export
5703
+ * @interface WrappedResponseLocationIndexResponse
5704
+ */
5705
+ export interface WrappedResponseLocationIndexResponse {
5706
+ /**
5707
+ *
5708
+ * @type {WrappedResponseLocationIndexResponseData}
5709
+ * @memberof WrappedResponseLocationIndexResponse
5710
+ */
5711
+ 'data': WrappedResponseLocationIndexResponseData | null;
5712
+ }
5713
+ /**
5714
+ *
5715
+ * @export
5716
+ * @interface WrappedResponseLocationIndexResponseData
5717
+ */
5718
+ export interface WrappedResponseLocationIndexResponseData {
5719
+ }
5720
+ /**
5721
+ *
5722
+ * @export
5723
+ * @interface WrappedResponseMemberIndexInterfaceArrayOrNull
5724
+ */
5725
+ export interface WrappedResponseMemberIndexInterfaceArrayOrNull {
5726
+ /**
5727
+ *
5728
+ * @type {WrappedResponseMemberIndexInterfaceArrayOrNullData}
5729
+ * @memberof WrappedResponseMemberIndexInterfaceArrayOrNull
5730
+ */
5731
+ 'data': WrappedResponseMemberIndexInterfaceArrayOrNullData | null;
5732
+ }
5733
+ /**
5734
+ *
5735
+ * @export
5736
+ * @interface WrappedResponseMemberIndexInterfaceArrayOrNullData
5737
+ */
5738
+ export interface WrappedResponseMemberIndexInterfaceArrayOrNullData {
5739
+ }
5740
+ /**
5741
+ *
5742
+ * @export
5743
+ * @interface WrappedResponseMembersShowResponseOrNull
5744
+ */
5745
+ export interface WrappedResponseMembersShowResponseOrNull {
5746
+ /**
5747
+ *
5748
+ * @type {Array<MembersShowResponse>}
5749
+ * @memberof WrappedResponseMembersShowResponseOrNull
5750
+ */
5751
+ 'data': Array<MembersShowResponse> | null;
5752
+ }
5753
+ /**
5754
+ *
5755
+ * @export
5756
+ * @interface WrappedResponseNull
5757
+ */
5758
+ export interface WrappedResponseNull {
5759
+ /**
5760
+ *
5761
+ * @type {Array<number>}
5762
+ * @memberof WrappedResponseNull
5763
+ */
5764
+ 'data': Array<WrappedResponseNullDataEnum>;
5765
+ }
5766
+
5767
+ export const WrappedResponseNullDataEnum = {
5768
+ NUMBER_null: null
5769
+ } as const;
5770
+
5771
+ export type WrappedResponseNullDataEnum = typeof WrappedResponseNullDataEnum[keyof typeof WrappedResponseNullDataEnum];
5772
+
5773
+ /**
5774
+ *
5775
+ * @export
5776
+ * @interface WrappedResponseParkingLotsIndexResponse
5777
+ */
5778
+ export interface WrappedResponseParkingLotsIndexResponse {
5779
+ /**
5780
+ *
5781
+ * @type {WrappedResponseParkingLotsIndexResponseData}
5782
+ * @memberof WrappedResponseParkingLotsIndexResponse
5783
+ */
5784
+ 'data': WrappedResponseParkingLotsIndexResponseData | null;
5785
+ }
5786
+ /**
5787
+ *
5788
+ * @export
5789
+ * @interface WrappedResponseParkingLotsIndexResponseData
5790
+ */
5791
+ export interface WrappedResponseParkingLotsIndexResponseData {
5792
+ }
5793
+ /**
5794
+ *
5795
+ * @export
5796
+ * @interface WrappedResponseParkingRedemptionRateResultArray
5797
+ */
5798
+ export interface WrappedResponseParkingRedemptionRateResultArray {
5799
+ /**
5800
+ *
5801
+ * @type {WrappedResponseParkingRedemptionRateResultArrayData}
5802
+ * @memberof WrappedResponseParkingRedemptionRateResultArray
5803
+ */
5804
+ 'data': WrappedResponseParkingRedemptionRateResultArrayData | null;
5805
+ }
5806
+ /**
5807
+ *
5808
+ * @export
5809
+ * @interface WrappedResponseParkingRedemptionRateResultArrayData
5810
+ */
5811
+ export interface WrappedResponseParkingRedemptionRateResultArrayData {
5812
+ }
5813
+ /**
5814
+ *
5815
+ * @export
5816
+ * @interface WrappedResponseParkingSpaceDetailAndSpaceDetail
5817
+ */
5818
+ export interface WrappedResponseParkingSpaceDetailAndSpaceDetail {
5819
+ /**
5820
+ *
5821
+ * @type {WrappedResponseParkingSpaceDetailAndSpaceDetailData}
5324
5822
  * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetail
5325
5823
  */
5326
- 'data': WrappedResponseParkingSpaceDetailAndSpaceDetailData | null;
5327
- }
5328
- /**
5329
- *
5330
- * @export
5331
- * @interface WrappedResponseParkingSpaceDetailAndSpaceDetailData
5332
- */
5333
- export interface WrappedResponseParkingSpaceDetailAndSpaceDetailData {
5824
+ 'data': WrappedResponseParkingSpaceDetailAndSpaceDetailData | null;
5825
+ }
5826
+ /**
5827
+ *
5828
+ * @export
5829
+ * @interface WrappedResponseParkingSpaceDetailAndSpaceDetailData
5830
+ */
5831
+ export interface WrappedResponseParkingSpaceDetailAndSpaceDetailData {
5832
+ /**
5833
+ *
5834
+ * @type {string}
5835
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5836
+ */
5837
+ 'recordSyscode': string;
5838
+ /**
5839
+ *
5840
+ * @type {string}
5841
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5842
+ */
5843
+ 'spaceSyscode': string;
5844
+ /**
5845
+ *
5846
+ * @type {string}
5847
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5848
+ */
5849
+ 'spaceNo': string;
5850
+ /**
5851
+ *
5852
+ * @type {string}
5853
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5854
+ */
5855
+ 'spacePicUri': string;
5856
+ /**
5857
+ *
5858
+ * @type {string}
5859
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5860
+ */
5861
+ 'parkingTime': string;
5862
+ /**
5863
+ *
5864
+ * @type {string}
5865
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5866
+ */
5867
+ 'parkSyscode': string;
5868
+ /**
5869
+ *
5870
+ * @type {string}
5871
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5872
+ */
5873
+ 'parkName': string;
5874
+ /**
5875
+ *
5876
+ * @type {string}
5877
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5878
+ */
5879
+ 'floorSyscode': string;
5880
+ /**
5881
+ *
5882
+ * @type {string}
5883
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5884
+ */
5885
+ 'floorName': string;
5886
+ /**
5887
+ *
5888
+ * @type {string}
5889
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5890
+ */
5891
+ 'plateNoPicUri': string;
5892
+ /**
5893
+ *
5894
+ * @type {string}
5895
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5896
+ */
5897
+ 'aswSyscode': string;
5898
+ /**
5899
+ *
5900
+ * @type {string}
5901
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5902
+ */
5903
+ 'plateNo': string;
5904
+ /**
5905
+ *
5906
+ * @type {string}
5907
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5908
+ */
5909
+ 'spacePicUrl': string;
5910
+ /**
5911
+ *
5912
+ * @type {string}
5913
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5914
+ */
5915
+ 'plateNoPicUrl': string;
5916
+ /**
5917
+ *
5918
+ * @type {string}
5919
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5920
+ */
5921
+ 'spacePicBinary': string;
5922
+ /**
5923
+ *
5924
+ * @type {string}
5925
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5926
+ */
5927
+ 'ibeaconIpcUuid': string;
5928
+ /**
5929
+ *
5930
+ * @type {string}
5931
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5932
+ */
5933
+ 'ibeaconIpcMajor': string;
5934
+ /**
5935
+ *
5936
+ * @type {string}
5937
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5938
+ */
5939
+ 'ibeaconIpcMinor': string;
5334
5940
  /**
5335
5941
  *
5336
5942
  * @type {string}
5337
5943
  * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5338
5944
  */
5339
- 'recordSyscode': string;
5945
+ 'zoneName': string;
5340
5946
  /**
5341
5947
  *
5342
5948
  * @type {string}
5343
5949
  * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5344
5950
  */
5345
- 'spaceSyscode': string;
5951
+ 'poleId'?: string;
5346
5952
  /**
5347
5953
  *
5348
5954
  * @type {string}
5349
5955
  * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5350
5956
  */
5351
- 'spaceNo': string;
5957
+ 'poleName'?: string;
5352
5958
  /**
5353
5959
  *
5354
5960
  * @type {string}
5355
5961
  * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5356
5962
  */
5357
- 'spacePicUri': string;
5963
+ 'poleRow'?: string;
5358
5964
  /**
5359
5965
  *
5360
5966
  * @type {string}
5361
5967
  * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5362
5968
  */
5363
- 'parkingTime': string;
5969
+ 'poleColumn'?: string;
5364
5970
  /**
5365
5971
  *
5366
5972
  * @type {string}
5367
5973
  * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5368
5974
  */
5369
- 'parkSyscode': string;
5975
+ 'poleColorName'?: string;
5976
+ /**
5977
+ *
5978
+ * @type {string}
5979
+ * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
5980
+ */
5981
+ 'poleColorCode'?: string;
5982
+ }
5983
+ /**
5984
+ *
5985
+ * @export
5986
+ * @interface WrappedResponseParkingTicketData
5987
+ */
5988
+ export interface WrappedResponseParkingTicketData {
5989
+ /**
5990
+ *
5991
+ * @type {WrappedResponseParkingTicketDataData}
5992
+ * @memberof WrappedResponseParkingTicketData
5993
+ */
5994
+ 'data': WrappedResponseParkingTicketDataData | null;
5995
+ }
5996
+ /**
5997
+ *
5998
+ * @export
5999
+ * @interface WrappedResponseParkingTicketDataArray
6000
+ */
6001
+ export interface WrappedResponseParkingTicketDataArray {
6002
+ /**
6003
+ *
6004
+ * @type {WrappedResponseParkingTicketDataArrayData}
6005
+ * @memberof WrappedResponseParkingTicketDataArray
6006
+ */
6007
+ 'data': WrappedResponseParkingTicketDataArrayData | null;
6008
+ }
6009
+ /**
6010
+ *
6011
+ * @export
6012
+ * @interface WrappedResponseParkingTicketDataArrayData
6013
+ */
6014
+ export interface WrappedResponseParkingTicketDataArrayData {
6015
+ }
6016
+ /**
6017
+ *
6018
+ * @export
6019
+ * @interface WrappedResponseParkingTicketDataData
6020
+ */
6021
+ export interface WrappedResponseParkingTicketDataData {
6022
+ /**
6023
+ *
6024
+ * @type {number}
6025
+ * @memberof WrappedResponseParkingTicketDataData
6026
+ */
6027
+ 'vehicle_type_id': number;
6028
+ /**
6029
+ *
6030
+ * @type {number}
6031
+ * @memberof WrappedResponseParkingTicketDataData
6032
+ */
6033
+ 'member_type_id': number;
6034
+ /**
6035
+ *
6036
+ * @type {RateDetail}
6037
+ * @memberof WrappedResponseParkingTicketDataData
6038
+ */
6039
+ 'rate_detail': RateDetail;
6040
+ /**
6041
+ *
6042
+ * @type {string}
6043
+ * @memberof WrappedResponseParkingTicketDataData
6044
+ */
6045
+ 'parked_at': string;
6046
+ /**
6047
+ *
6048
+ * @type {number}
6049
+ * @memberof WrappedResponseParkingTicketDataData
6050
+ */
6051
+ 'total_fee': number;
6052
+ /**
6053
+ *
6054
+ * @type {string}
6055
+ * @memberof WrappedResponseParkingTicketDataData
6056
+ */
6057
+ 'vehicle_type': string;
6058
+ /**
6059
+ *
6060
+ * @type {string}
6061
+ * @memberof WrappedResponseParkingTicketDataData
6062
+ */
6063
+ 'ticket_number': string;
6064
+ /**
6065
+ *
6066
+ * @type {string}
6067
+ * @memberof WrappedResponseParkingTicketDataData
6068
+ */
6069
+ 'plate_number': string;
6070
+ /**
6071
+ *
6072
+ * @type {string}
6073
+ * @memberof WrappedResponseParkingTicketDataData
6074
+ */
6075
+ 'id': string;
6076
+ }
6077
+ /**
6078
+ *
6079
+ * @export
6080
+ * @interface WrappedResponsePassConsentResponse
6081
+ */
6082
+ export interface WrappedResponsePassConsentResponse {
6083
+ /**
6084
+ *
6085
+ * @type {WrappedResponsePassConsentResponseData}
6086
+ * @memberof WrappedResponsePassConsentResponse
6087
+ */
6088
+ 'data': WrappedResponsePassConsentResponseData | null;
6089
+ }
6090
+ /**
6091
+ *
6092
+ * @export
6093
+ * @interface WrappedResponsePassConsentResponseData
6094
+ */
6095
+ export interface WrappedResponsePassConsentResponseData {
6096
+ /**
6097
+ *
6098
+ * @type {string}
6099
+ * @memberof WrappedResponsePassConsentResponseData
6100
+ */
6101
+ 'id': string;
6102
+ /**
6103
+ *
6104
+ * @type {string}
6105
+ * @memberof WrappedResponsePassConsentResponseData
6106
+ */
6107
+ 'uid': string | null;
6108
+ /**
6109
+ *
6110
+ * @type {string}
6111
+ * @memberof WrappedResponsePassConsentResponseData
6112
+ */
6113
+ 'created_at': string;
6114
+ /**
6115
+ *
6116
+ * @type {string}
6117
+ * @memberof WrappedResponsePassConsentResponseData
6118
+ */
6119
+ 'updated_at': string;
6120
+ /**
6121
+ *
6122
+ * @type {string}
6123
+ * @memberof WrappedResponsePassConsentResponseData
6124
+ */
6125
+ 'status': WrappedResponsePassConsentResponseDataStatusEnum;
6126
+ /**
6127
+ *
6128
+ * @type {string}
6129
+ * @memberof WrappedResponsePassConsentResponseData
6130
+ */
6131
+ 'from': string;
6132
+ /**
6133
+ *
6134
+ * @type {string}
6135
+ * @memberof WrappedResponsePassConsentResponseData
6136
+ */
6137
+ 'to': string;
6138
+ /**
6139
+ *
6140
+ * @type {string}
6141
+ * @memberof WrappedResponsePassConsentResponseData
6142
+ */
6143
+ 'visitor_id': string;
6144
+ /**
6145
+ *
6146
+ * @type {string}
6147
+ * @memberof WrappedResponsePassConsentResponseData
6148
+ */
6149
+ 'issuer_id': string;
6150
+ /**
6151
+ *
6152
+ * @type {string}
6153
+ * @memberof WrappedResponsePassConsentResponseData
6154
+ */
6155
+ 'visit_schedule_id': string;
6156
+ /**
6157
+ *
6158
+ * @type {boolean}
6159
+ * @memberof WrappedResponsePassConsentResponseData
6160
+ */
6161
+ 'consent'?: boolean | null;
6162
+ }
6163
+
6164
+ export const WrappedResponsePassConsentResponseDataStatusEnum = {
6165
+ Pending: 'pending',
6166
+ Confirmed: 'confirmed'
6167
+ } as const;
6168
+
6169
+ export type WrappedResponsePassConsentResponseDataStatusEnum = typeof WrappedResponsePassConsentResponseDataStatusEnum[keyof typeof WrappedResponsePassConsentResponseDataStatusEnum];
6170
+
6171
+ /**
6172
+ *
6173
+ * @export
6174
+ * @interface WrappedResponseResultResponseData
6175
+ */
6176
+ export interface WrappedResponseResultResponseData {
6177
+ /**
6178
+ *
6179
+ * @type {WrappedResponseResultResponseDataData}
6180
+ * @memberof WrappedResponseResultResponseData
6181
+ */
6182
+ 'data': WrappedResponseResultResponseDataData | null;
6183
+ }
6184
+ /**
6185
+ *
6186
+ * @export
6187
+ * @interface WrappedResponseResultResponseDataData
6188
+ */
6189
+ export interface WrappedResponseResultResponseDataData {
6190
+ /**
6191
+ *
6192
+ * @type {boolean}
6193
+ * @memberof WrappedResponseResultResponseDataData
6194
+ */
6195
+ 'result': boolean;
6196
+ }
6197
+ /**
6198
+ *
6199
+ * @export
6200
+ * @interface WrappedResponseShowPassResponseOrNull
6201
+ */
6202
+ export interface WrappedResponseShowPassResponseOrNull {
6203
+ /**
6204
+ *
6205
+ * @type {Array<ShowPassResponse>}
6206
+ * @memberof WrappedResponseShowPassResponseOrNull
6207
+ */
6208
+ 'data': Array<ShowPassResponse> | null;
6209
+ }
6210
+ /**
6211
+ *
6212
+ * @export
6213
+ * @interface WrappedResponseShowVisitorResponse
6214
+ */
6215
+ export interface WrappedResponseShowVisitorResponse {
5370
6216
  /**
5371
6217
  *
5372
- * @type {string}
5373
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6218
+ * @type {WrappedResponseShowVisitorResponseData}
6219
+ * @memberof WrappedResponseShowVisitorResponse
5374
6220
  */
5375
- 'parkName': string;
6221
+ 'data': WrappedResponseShowVisitorResponseData | null;
6222
+ }
6223
+ /**
6224
+ *
6225
+ * @export
6226
+ * @interface WrappedResponseShowVisitorResponseData
6227
+ */
6228
+ export interface WrappedResponseShowVisitorResponseData {
5376
6229
  /**
5377
6230
  *
5378
6231
  * @type {string}
5379
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6232
+ * @memberof WrappedResponseShowVisitorResponseData
5380
6233
  */
5381
- 'floorSyscode': string;
6234
+ 'id': string;
5382
6235
  /**
5383
6236
  *
5384
6237
  * @type {string}
5385
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6238
+ * @memberof WrappedResponseShowVisitorResponseData
5386
6239
  */
5387
- 'floorName': string;
6240
+ 'name': string;
5388
6241
  /**
5389
6242
  *
5390
6243
  * @type {string}
5391
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6244
+ * @memberof WrappedResponseShowVisitorResponseData
5392
6245
  */
5393
- 'plateNoPicUri': string;
6246
+ 'profile_image_url': string | null;
5394
6247
  /**
5395
6248
  *
5396
6249
  * @type {string}
5397
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6250
+ * @memberof WrappedResponseShowVisitorResponseData
5398
6251
  */
5399
- 'aswSyscode': string;
6252
+ 'email': string;
5400
6253
  /**
5401
6254
  *
5402
6255
  * @type {string}
5403
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6256
+ * @memberof WrappedResponseShowVisitorResponseData
5404
6257
  */
5405
- 'plateNo': string;
6258
+ 'company_name': string;
5406
6259
  /**
5407
6260
  *
5408
6261
  * @type {string}
5409
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6262
+ * @memberof WrappedResponseShowVisitorResponseData
5410
6263
  */
5411
- 'spacePicUrl': string;
6264
+ 'reference': string | null;
5412
6265
  /**
5413
6266
  *
5414
6267
  * @type {string}
5415
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6268
+ * @memberof WrappedResponseShowVisitorResponseData
5416
6269
  */
5417
- 'plateNoPicUrl': string;
6270
+ 'inviter_id': string;
5418
6271
  /**
5419
6272
  *
5420
6273
  * @type {string}
5421
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6274
+ * @memberof WrappedResponseShowVisitorResponseData
5422
6275
  */
5423
- 'spacePicBinary': string;
6276
+ 'created_at': string;
5424
6277
  /**
5425
6278
  *
5426
6279
  * @type {string}
5427
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6280
+ * @memberof WrappedResponseShowVisitorResponseData
5428
6281
  */
5429
- 'ibeaconIpcUuid': string;
6282
+ 'updated_at': string;
6283
+ }
6284
+ /**
6285
+ *
6286
+ * @export
6287
+ * @interface WrappedResponseTenantIndexResponse
6288
+ */
6289
+ export interface WrappedResponseTenantIndexResponse {
5430
6290
  /**
5431
6291
  *
5432
- * @type {string}
5433
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6292
+ * @type {WrappedResponseTenantIndexResponseData}
6293
+ * @memberof WrappedResponseTenantIndexResponse
5434
6294
  */
5435
- 'ibeaconIpcMajor': string;
6295
+ 'data': WrappedResponseTenantIndexResponseData | null;
6296
+ }
6297
+ /**
6298
+ *
6299
+ * @export
6300
+ * @interface WrappedResponseTenantIndexResponseData
6301
+ */
6302
+ export interface WrappedResponseTenantIndexResponseData {
6303
+ }
6304
+ /**
6305
+ *
6306
+ * @export
6307
+ * @interface WrappedResponseTowerIndexResponse
6308
+ */
6309
+ export interface WrappedResponseTowerIndexResponse {
5436
6310
  /**
5437
6311
  *
5438
- * @type {string}
5439
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6312
+ * @type {WrappedResponseTowerIndexResponseData}
6313
+ * @memberof WrappedResponseTowerIndexResponse
5440
6314
  */
5441
- 'ibeaconIpcMinor': string;
6315
+ 'data': WrappedResponseTowerIndexResponseData | null;
6316
+ }
6317
+ /**
6318
+ *
6319
+ * @export
6320
+ * @interface WrappedResponseTowerIndexResponseData
6321
+ */
6322
+ export interface WrappedResponseTowerIndexResponseData {
6323
+ }
6324
+ /**
6325
+ *
6326
+ * @export
6327
+ * @interface WrappedResponseUpdateMemberResponse
6328
+ */
6329
+ export interface WrappedResponseUpdateMemberResponse {
5442
6330
  /**
5443
6331
  *
5444
- * @type {string}
5445
- * @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
6332
+ * @type {WrappedResponseUpdateMemberResponseData}
6333
+ * @memberof WrappedResponseUpdateMemberResponse
5446
6334
  */
5447
- 'zoneName': string;
6335
+ 'data': WrappedResponseUpdateMemberResponseData | null;
5448
6336
  }
5449
6337
  /**
5450
6338
  *
5451
6339
  * @export
5452
- * @interface WrappedResponseParkingTicketData
6340
+ * @interface WrappedResponseUpdateMemberResponseData
5453
6341
  */
5454
- export interface WrappedResponseParkingTicketData {
6342
+ export interface WrappedResponseUpdateMemberResponseData {
5455
6343
  /**
5456
6344
  *
5457
- * @type {WrappedResponseParkingTicketDataData}
5458
- * @memberof WrappedResponseParkingTicketData
6345
+ * @type {boolean}
6346
+ * @memberof WrappedResponseUpdateMemberResponseData
5459
6347
  */
5460
- 'data': WrappedResponseParkingTicketDataData | null;
6348
+ 'result': boolean | null;
5461
6349
  }
5462
6350
  /**
5463
6351
  *
5464
6352
  * @export
5465
- * @interface WrappedResponseParkingTicketDataArray
6353
+ * @interface WrappedResponseUpsertHolidayResponse
5466
6354
  */
5467
- export interface WrappedResponseParkingTicketDataArray {
6355
+ export interface WrappedResponseUpsertHolidayResponse {
5468
6356
  /**
5469
6357
  *
5470
- * @type {WrappedResponseParkingTicketDataArrayData}
5471
- * @memberof WrappedResponseParkingTicketDataArray
6358
+ * @type {WrappedResponseUpsertHolidayResponseData}
6359
+ * @memberof WrappedResponseUpsertHolidayResponse
5472
6360
  */
5473
- 'data': WrappedResponseParkingTicketDataArrayData | null;
6361
+ 'data': WrappedResponseUpsertHolidayResponseData | null;
5474
6362
  }
5475
6363
  /**
5476
6364
  *
5477
6365
  * @export
5478
- * @interface WrappedResponseParkingTicketDataArrayData
6366
+ * @interface WrappedResponseUpsertHolidayResponseData
5479
6367
  */
5480
- export interface WrappedResponseParkingTicketDataArrayData {
6368
+ export interface WrappedResponseUpsertHolidayResponseData {
6369
+ /**
6370
+ *
6371
+ * @type {UpsertHolidayResponseResult}
6372
+ * @memberof WrappedResponseUpsertHolidayResponseData
6373
+ */
6374
+ 'result': UpsertHolidayResponseResult;
5481
6375
  }
5482
6376
  /**
5483
6377
  *
5484
6378
  * @export
5485
- * @interface WrappedResponseParkingTicketDataData
6379
+ * @interface WrappedResponseValetParkingDetail
5486
6380
  */
5487
- export interface WrappedResponseParkingTicketDataData {
6381
+ export interface WrappedResponseValetParkingDetail {
5488
6382
  /**
5489
6383
  *
5490
- * @type {number}
5491
- * @memberof WrappedResponseParkingTicketDataData
6384
+ * @type {WrappedResponseValetParkingDetailData}
6385
+ * @memberof WrappedResponseValetParkingDetail
5492
6386
  */
5493
- 'vehicle_type_id': number;
6387
+ 'data': WrappedResponseValetParkingDetailData | null;
6388
+ }
6389
+ /**
6390
+ *
6391
+ * @export
6392
+ * @interface WrappedResponseValetParkingDetailData
6393
+ */
6394
+ export interface WrappedResponseValetParkingDetailData {
5494
6395
  /**
5495
6396
  *
5496
6397
  * @type {number}
5497
- * @memberof WrappedResponseParkingTicketDataData
6398
+ * @memberof WrappedResponseValetParkingDetailData
5498
6399
  */
5499
- 'member_type_id': number;
6400
+ 'id': number;
5500
6401
  /**
5501
6402
  *
5502
- * @type {RateDetail}
5503
- * @memberof WrappedResponseParkingTicketDataData
6403
+ * @type {string}
6404
+ * @memberof WrappedResponseValetParkingDetailData
5504
6405
  */
5505
- 'rate_detail': RateDetail;
6406
+ 'createdAt': string;
5506
6407
  /**
5507
6408
  *
5508
6409
  * @type {string}
5509
- * @memberof WrappedResponseParkingTicketDataData
6410
+ * @memberof WrappedResponseValetParkingDetailData
5510
6411
  */
5511
- 'parked_at': string;
6412
+ 'updatedAt': string;
5512
6413
  /**
5513
6414
  *
5514
- * @type {number}
5515
- * @memberof WrappedResponseParkingTicketDataData
6415
+ * @type {string}
6416
+ * @memberof WrappedResponseValetParkingDetailData
5516
6417
  */
5517
- 'total_fee': number;
6418
+ 'deletedAt': string;
5518
6419
  /**
5519
6420
  *
5520
6421
  * @type {string}
5521
- * @memberof WrappedResponseParkingTicketDataData
6422
+ * @memberof WrappedResponseValetParkingDetailData
5522
6423
  */
5523
- 'vehicle_type': string;
6424
+ 'code': string;
5524
6425
  /**
5525
6426
  *
5526
6427
  * @type {string}
5527
- * @memberof WrappedResponseParkingTicketDataData
6428
+ * @memberof WrappedResponseValetParkingDetailData
5528
6429
  */
5529
- 'ticket_number': string;
6430
+ 'status': string;
5530
6431
  /**
5531
6432
  *
5532
6433
  * @type {string}
5533
- * @memberof WrappedResponseParkingTicketDataData
6434
+ * @memberof WrappedResponseValetParkingDetailData
5534
6435
  */
5535
- 'plate_number': string;
6436
+ 'name': string;
5536
6437
  /**
5537
6438
  *
5538
6439
  * @type {string}
5539
- * @memberof WrappedResponseParkingTicketDataData
6440
+ * @memberof WrappedResponseValetParkingDetailData
5540
6441
  */
5541
- 'id': string;
5542
- }
5543
- /**
5544
- *
5545
- * @export
5546
- * @interface WrappedResponsePassConsentResponse
5547
- */
5548
- export interface WrappedResponsePassConsentResponse {
6442
+ 'phoneNumber': string;
5549
6443
  /**
5550
6444
  *
5551
- * @type {WrappedResponsePassConsentResponseData}
5552
- * @memberof WrappedResponsePassConsentResponse
6445
+ * @type {string}
6446
+ * @memberof WrappedResponseValetParkingDetailData
5553
6447
  */
5554
- 'data': WrappedResponsePassConsentResponseData | null;
5555
- }
5556
- /**
5557
- *
5558
- * @export
5559
- * @interface WrappedResponsePassConsentResponseData
5560
- */
5561
- export interface WrappedResponsePassConsentResponseData {
6448
+ 'incomingTime': string;
5562
6449
  /**
5563
6450
  *
5564
6451
  * @type {string}
5565
- * @memberof WrappedResponsePassConsentResponseData
6452
+ * @memberof WrappedResponseValetParkingDetailData
5566
6453
  */
5567
- 'id': string;
6454
+ 'outgoingTime': string;
5568
6455
  /**
5569
6456
  *
5570
6457
  * @type {string}
5571
- * @memberof WrappedResponsePassConsentResponseData
6458
+ * @memberof WrappedResponseValetParkingDetailData
5572
6459
  */
5573
- 'uid': string | null;
6460
+ 'licensePlate': string;
5574
6461
  /**
5575
6462
  *
5576
6463
  * @type {string}
5577
- * @memberof WrappedResponsePassConsentResponseData
6464
+ * @memberof WrappedResponseValetParkingDetailData
5578
6465
  */
5579
- 'created_at': string;
6466
+ 'licensePlateProvince': string;
5580
6467
  /**
5581
6468
  *
5582
6469
  * @type {string}
5583
- * @memberof WrappedResponsePassConsentResponseData
6470
+ * @memberof WrappedResponseValetParkingDetailData
5584
6471
  */
5585
- 'updated_at': string;
6472
+ 'keyCabinetId': string;
5586
6473
  /**
5587
6474
  *
5588
6475
  * @type {string}
5589
- * @memberof WrappedResponsePassConsentResponseData
6476
+ * @memberof WrappedResponseValetParkingDetailData
5590
6477
  */
5591
- 'status': WrappedResponsePassConsentResponseDataStatusEnum;
6478
+ 'staffParkedId': string;
5592
6479
  /**
5593
6480
  *
5594
6481
  * @type {string}
5595
- * @memberof WrappedResponsePassConsentResponseData
6482
+ * @memberof WrappedResponseValetParkingDetailData
5596
6483
  */
5597
- 'from': string;
6484
+ 'staffDeliverId': string;
5598
6485
  /**
5599
6486
  *
5600
6487
  * @type {string}
5601
- * @memberof WrappedResponsePassConsentResponseData
6488
+ * @memberof WrappedResponseValetParkingDetailData
5602
6489
  */
5603
- 'to': string;
6490
+ 'userId': string;
5604
6491
  /**
5605
6492
  *
5606
6493
  * @type {string}
5607
- * @memberof WrappedResponsePassConsentResponseData
6494
+ * @memberof WrappedResponseValetParkingDetailData
5608
6495
  */
5609
- 'visitor_id': string;
6496
+ 'parkingSpotId': string;
5610
6497
  /**
5611
6498
  *
5612
6499
  * @type {string}
5613
- * @memberof WrappedResponsePassConsentResponseData
6500
+ * @memberof WrappedResponseValetParkingDetailData
5614
6501
  */
5615
- 'issuer_id': string;
6502
+ 'pickUpStationId': string;
5616
6503
  /**
5617
6504
  *
5618
- * @type {string}
5619
- * @memberof WrappedResponsePassConsentResponseData
6505
+ * @type {number}
6506
+ * @memberof WrappedResponseValetParkingDetailData
5620
6507
  */
5621
- 'visit_schedule_id': string;
6508
+ 'dropOffStationId': number;
5622
6509
  /**
5623
6510
  *
5624
- * @type {boolean}
5625
- * @memberof WrappedResponsePassConsentResponseData
6511
+ * @type {string}
6512
+ * @memberof WrappedResponseValetParkingDetailData
5626
6513
  */
5627
- 'consent'?: boolean | null;
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 {
6514
+ 'verifiedAt': string;
5643
6515
  /**
5644
6516
  *
5645
- * @type {WrappedResponseResultResponseDataData}
5646
- * @memberof WrappedResponseResultResponseData
6517
+ * @type {string}
6518
+ * @memberof WrappedResponseValetParkingDetailData
5647
6519
  */
5648
- 'data': WrappedResponseResultResponseDataData | null;
5649
- }
5650
- /**
5651
- *
5652
- * @export
5653
- * @interface WrappedResponseResultResponseDataData
5654
- */
5655
- export interface WrappedResponseResultResponseDataData {
6520
+ 'staffVerifyId': string;
5656
6521
  /**
5657
6522
  *
5658
- * @type {boolean}
5659
- * @memberof WrappedResponseResultResponseDataData
6523
+ * @type {string}
6524
+ * @memberof WrappedResponseValetParkingDetailData
5660
6525
  */
5661
- 'result': boolean;
5662
- }
5663
- /**
5664
- *
5665
- * @export
5666
- * @interface WrappedResponseShowPassResponseOrNull
5667
- */
5668
- export interface WrappedResponseShowPassResponseOrNull {
6526
+ 'confirmParkedAt': string;
5669
6527
  /**
5670
6528
  *
5671
- * @type {Array<ShowPassResponse>}
5672
- * @memberof WrappedResponseShowPassResponseOrNull
6529
+ * @type {number}
6530
+ * @memberof WrappedResponseValetParkingDetailData
5673
6531
  */
5674
- 'data': Array<ShowPassResponse> | null;
5675
- }
5676
- /**
5677
- *
5678
- * @export
5679
- * @interface WrappedResponseShowVisitorResponse
5680
- */
5681
- export interface WrappedResponseShowVisitorResponse {
6532
+ 'staffConfirmParkedId': number;
5682
6533
  /**
5683
6534
  *
5684
- * @type {WrappedResponseShowVisitorResponseData}
5685
- * @memberof WrappedResponseShowVisitorResponse
6535
+ * @type {string}
6536
+ * @memberof WrappedResponseValetParkingDetailData
5686
6537
  */
5687
- 'data': WrappedResponseShowVisitorResponseData | null;
5688
- }
5689
- /**
5690
- *
5691
- * @export
5692
- * @interface WrappedResponseShowVisitorResponseData
5693
- */
5694
- export interface WrappedResponseShowVisitorResponseData {
6538
+ 'confirmDeliverAt': string;
5695
6539
  /**
5696
6540
  *
5697
6541
  * @type {string}
5698
- * @memberof WrappedResponseShowVisitorResponseData
6542
+ * @memberof WrappedResponseValetParkingDetailData
5699
6543
  */
5700
- 'id': string;
6544
+ 'staffConfirmDeliverId': string;
5701
6545
  /**
5702
6546
  *
5703
6547
  * @type {string}
5704
- * @memberof WrappedResponseShowVisitorResponseData
6548
+ * @memberof WrappedResponseValetParkingDetailData
5705
6549
  */
5706
- 'name': string;
6550
+ 'signatureURL': string;
5707
6551
  /**
5708
6552
  *
5709
6553
  * @type {string}
5710
- * @memberof WrappedResponseShowVisitorResponseData
6554
+ * @memberof WrappedResponseValetParkingDetailData
5711
6555
  */
5712
- 'profile_image_url': string | null;
6556
+ 'referenceCode': string;
5713
6557
  /**
5714
6558
  *
5715
- * @type {string}
5716
- * @memberof WrappedResponseShowVisitorResponseData
6559
+ * @type {boolean}
6560
+ * @memberof WrappedResponseValetParkingDetailData
5717
6561
  */
5718
- 'email': string;
6562
+ 'isMyQr': boolean;
5719
6563
  /**
5720
6564
  *
5721
6565
  * @type {string}
5722
- * @memberof WrappedResponseShowVisitorResponseData
6566
+ * @memberof WrappedResponseValetParkingDetailData
5723
6567
  */
5724
- 'company_name': string;
6568
+ 'spot': string;
5725
6569
  /**
5726
6570
  *
5727
6571
  * @type {string}
5728
- * @memberof WrappedResponseShowVisitorResponseData
6572
+ * @memberof WrappedResponseValetParkingDetailData
5729
6573
  */
5730
- 'reference': string | null;
6574
+ 'staffDeliver': string;
5731
6575
  /**
5732
6576
  *
5733
6577
  * @type {string}
5734
- * @memberof WrappedResponseShowVisitorResponseData
6578
+ * @memberof WrappedResponseValetParkingDetailData
5735
6579
  */
5736
- 'inviter_id': string;
6580
+ 'staffParked': string;
5737
6581
  /**
5738
6582
  *
5739
6583
  * @type {string}
5740
- * @memberof WrappedResponseShowVisitorResponseData
6584
+ * @memberof WrappedResponseValetParkingDetailData
5741
6585
  */
5742
- 'created_at': string;
6586
+ 'staffConfirmDeliver': string;
6587
+ /**
6588
+ *
6589
+ * @type {Staff}
6590
+ * @memberof WrappedResponseValetParkingDetailData
6591
+ */
6592
+ 'staffConfirmParked': Staff;
5743
6593
  /**
5744
6594
  *
5745
6595
  * @type {string}
5746
- * @memberof WrappedResponseShowVisitorResponseData
6596
+ * @memberof WrappedResponseValetParkingDetailData
5747
6597
  */
5748
- 'updated_at': string;
5749
- }
5750
- /**
5751
- *
5752
- * @export
5753
- * @interface WrappedResponseTenantIndexResponse
5754
- */
5755
- export interface WrappedResponseTenantIndexResponse {
6598
+ 'staffVerify': string;
5756
6599
  /**
5757
6600
  *
5758
- * @type {WrappedResponseTenantIndexResponseData}
5759
- * @memberof WrappedResponseTenantIndexResponse
6601
+ * @type {string}
6602
+ * @memberof WrappedResponseValetParkingDetailData
5760
6603
  */
5761
- 'data': WrappedResponseTenantIndexResponseData | null;
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 {
6604
+ 'pickUpStation': string;
5776
6605
  /**
5777
6606
  *
5778
- * @type {WrappedResponseTowerIndexResponseData}
5779
- * @memberof WrappedResponseTowerIndexResponse
6607
+ * @type {DropOffStation}
6608
+ * @memberof WrappedResponseValetParkingDetailData
5780
6609
  */
5781
- 'data': WrappedResponseTowerIndexResponseData | null;
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 {
6610
+ 'dropOffStation': DropOffStation;
5796
6611
  /**
5797
6612
  *
5798
- * @type {WrappedResponseUpdateMemberResponseData}
5799
- * @memberof WrappedResponseUpdateMemberResponse
6613
+ * @type {Array<Image>}
6614
+ * @memberof WrappedResponseValetParkingDetailData
5800
6615
  */
5801
- 'data': WrappedResponseUpdateMemberResponseData | null;
5802
- }
5803
- /**
5804
- *
5805
- * @export
5806
- * @interface WrappedResponseUpdateMemberResponseData
5807
- */
5808
- export interface WrappedResponseUpdateMemberResponseData {
6616
+ 'images': Array<Image>;
5809
6617
  /**
5810
6618
  *
5811
- * @type {boolean}
5812
- * @memberof WrappedResponseUpdateMemberResponseData
6619
+ * @type {string}
6620
+ * @memberof WrappedResponseValetParkingDetailData
5813
6621
  */
5814
- 'result': boolean | null;
6622
+ 'keyCabinet': string;
5815
6623
  }
5816
6624
  /**
5817
6625
  *
5818
6626
  * @export
5819
- * @interface WrappedResponseUpsertHolidayResponse
6627
+ * @interface WrappedResponseValetStationArray
5820
6628
  */
5821
- export interface WrappedResponseUpsertHolidayResponse {
6629
+ export interface WrappedResponseValetStationArray {
5822
6630
  /**
5823
6631
  *
5824
- * @type {WrappedResponseUpsertHolidayResponseData}
5825
- * @memberof WrappedResponseUpsertHolidayResponse
6632
+ * @type {WrappedResponseValetStationArrayData}
6633
+ * @memberof WrappedResponseValetStationArray
5826
6634
  */
5827
- 'data': WrappedResponseUpsertHolidayResponseData | null;
6635
+ 'data': WrappedResponseValetStationArrayData | null;
5828
6636
  }
5829
6637
  /**
5830
6638
  *
5831
6639
  * @export
5832
- * @interface WrappedResponseUpsertHolidayResponseData
6640
+ * @interface WrappedResponseValetStationArrayData
5833
6641
  */
5834
- export interface WrappedResponseUpsertHolidayResponseData {
5835
- /**
5836
- *
5837
- * @type {UpsertHolidayResponseResult}
5838
- * @memberof WrappedResponseUpsertHolidayResponseData
5839
- */
5840
- 'result': UpsertHolidayResponseResult;
6642
+ export interface WrappedResponseValetStationArrayData {
5841
6643
  }
5842
6644
  /**
5843
6645
  *
@@ -6240,6 +7042,41 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
6240
7042
  options: localVarRequestOptions,
6241
7043
  };
6242
7044
  },
7045
+ /**
7046
+ *
7047
+ * @param {CallingBody} callingBody
7048
+ * @param {*} [options] Override http request option.
7049
+ * @throws {RequiredError}
7050
+ */
7051
+ calling: async (callingBody: CallingBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
7052
+ // verify required parameter 'callingBody' is not null or undefined
7053
+ assertParamExists('calling', 'callingBody', callingBody)
7054
+ const localVarPath = `/valet/calling`;
7055
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
7056
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7057
+ let baseOptions;
7058
+ if (configuration) {
7059
+ baseOptions = configuration.baseOptions;
7060
+ }
7061
+
7062
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
7063
+ const localVarHeaderParameter = {} as any;
7064
+ const localVarQueryParameter = {} as any;
7065
+
7066
+
7067
+
7068
+ localVarHeaderParameter['Content-Type'] = 'application/json';
7069
+
7070
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
7071
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7072
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
7073
+ localVarRequestOptions.data = serializeDataIfNeeded(callingBody, localVarRequestOptions, configuration)
7074
+
7075
+ return {
7076
+ url: toPathString(localVarUrlObj),
7077
+ options: localVarRequestOptions,
7078
+ };
7079
+ },
6243
7080
  /**
6244
7081
  *
6245
7082
  * @param {WebhookCreateBody} webhookCreateBody
@@ -6295,6 +7132,40 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
6295
7132
 
6296
7133
 
6297
7134
 
7135
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
7136
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7137
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
7138
+
7139
+ return {
7140
+ url: toPathString(localVarUrlObj),
7141
+ options: localVarRequestOptions,
7142
+ };
7143
+ },
7144
+ /**
7145
+ *
7146
+ * @param {string} [xAccountId]
7147
+ * @param {*} [options] Override http request option.
7148
+ * @throws {RequiredError}
7149
+ */
7150
+ find: async (xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
7151
+ const localVarPath = `/valet/find`;
7152
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
7153
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7154
+ let baseOptions;
7155
+ if (configuration) {
7156
+ baseOptions = configuration.baseOptions;
7157
+ }
7158
+
7159
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
7160
+ const localVarHeaderParameter = {} as any;
7161
+ const localVarQueryParameter = {} as any;
7162
+
7163
+ if (xAccountId != null) {
7164
+ localVarHeaderParameter['x-account-id'] = String(xAccountId);
7165
+ }
7166
+
7167
+
7168
+
6298
7169
  setSearchParams(localVarUrlObj, localVarQueryParameter);
6299
7170
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
6300
7171
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -7558,6 +8429,35 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
7558
8429
  options: localVarRequestOptions,
7559
8430
  };
7560
8431
  },
8432
+ /**
8433
+ *
8434
+ * @param {*} [options] Override http request option.
8435
+ * @throws {RequiredError}
8436
+ */
8437
+ stationRetrieve: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
8438
+ const localVarPath = `/valet/station/retrieve`;
8439
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
8440
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8441
+ let baseOptions;
8442
+ if (configuration) {
8443
+ baseOptions = configuration.baseOptions;
8444
+ }
8445
+
8446
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
8447
+ const localVarHeaderParameter = {} as any;
8448
+ const localVarQueryParameter = {} as any;
8449
+
8450
+
8451
+
8452
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
8453
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
8454
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
8455
+
8456
+ return {
8457
+ url: toPathString(localVarUrlObj),
8458
+ options: localVarRequestOptions,
8459
+ };
8460
+ },
7561
8461
  /**
7562
8462
  *
7563
8463
  * @param {SyncBody} syncBody
@@ -7935,6 +8835,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
7935
8835
  const localVarAxiosArgs = await localVarAxiosParamCreator.buildingAccessLogsShow(id, accessorType, options);
7936
8836
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
7937
8837
  },
8838
+ /**
8839
+ *
8840
+ * @param {CallingBody} callingBody
8841
+ * @param {*} [options] Override http request option.
8842
+ * @throws {RequiredError}
8843
+ */
8844
+ async calling(callingBody: CallingBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseValetStationArray>> {
8845
+ const localVarAxiosArgs = await localVarAxiosParamCreator.calling(callingBody, options);
8846
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
8847
+ },
7938
8848
  /**
7939
8849
  *
7940
8850
  * @param {WebhookCreateBody} webhookCreateBody
@@ -7954,6 +8864,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
7954
8864
  const localVarAxiosArgs = await localVarAxiosParamCreator.fetch(options);
7955
8865
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
7956
8866
  },
8867
+ /**
8868
+ *
8869
+ * @param {string} [xAccountId]
8870
+ * @param {*} [options] Override http request option.
8871
+ * @throws {RequiredError}
8872
+ */
8873
+ async find(xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseValetParkingDetail>> {
8874
+ const localVarAxiosArgs = await localVarAxiosParamCreator.find(xAccountId, options);
8875
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
8876
+ },
7957
8877
  /**
7958
8878
  *
7959
8879
  * @param {*} [options] Override http request option.
@@ -8302,6 +9222,15 @@ export const DefaultApiFp = function(configuration?: Configuration) {
8302
9222
  const localVarAxiosArgs = await localVarAxiosParamCreator.serviceRequestsUpdate(id, serviceRequestsUpdateRequestBody, options);
8303
9223
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
8304
9224
  },
9225
+ /**
9226
+ *
9227
+ * @param {*} [options] Override http request option.
9228
+ * @throws {RequiredError}
9229
+ */
9230
+ async stationRetrieve(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseValetStationArray>> {
9231
+ const localVarAxiosArgs = await localVarAxiosParamCreator.stationRetrieve(options);
9232
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
9233
+ },
8305
9234
  /**
8306
9235
  *
8307
9236
  * @param {SyncBody} syncBody
@@ -8483,6 +9412,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
8483
9412
  buildingAccessLogsShow(id: string, accessorType: AccessorType, options?: any): AxiosPromise<WrappedArrayResponseBuildingAccessLogResult> {
8484
9413
  return localVarFp.buildingAccessLogsShow(id, accessorType, options).then((request) => request(axios, basePath));
8485
9414
  },
9415
+ /**
9416
+ *
9417
+ * @param {CallingBody} callingBody
9418
+ * @param {*} [options] Override http request option.
9419
+ * @throws {RequiredError}
9420
+ */
9421
+ calling(callingBody: CallingBody, options?: any): AxiosPromise<WrappedResponseValetStationArray> {
9422
+ return localVarFp.calling(callingBody, options).then((request) => request(axios, basePath));
9423
+ },
8486
9424
  /**
8487
9425
  *
8488
9426
  * @param {WebhookCreateBody} webhookCreateBody
@@ -8500,6 +9438,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
8500
9438
  fetch(options?: any): AxiosPromise<WrappedResponseFetchParkingResult> {
8501
9439
  return localVarFp.fetch(options).then((request) => request(axios, basePath));
8502
9440
  },
9441
+ /**
9442
+ *
9443
+ * @param {string} [xAccountId]
9444
+ * @param {*} [options] Override http request option.
9445
+ * @throws {RequiredError}
9446
+ */
9447
+ find(xAccountId?: string, options?: any): AxiosPromise<WrappedResponseValetParkingDetail> {
9448
+ return localVarFp.find(xAccountId, options).then((request) => request(axios, basePath));
9449
+ },
8503
9450
  /**
8504
9451
  *
8505
9452
  * @param {*} [options] Override http request option.
@@ -8817,6 +9764,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
8817
9764
  serviceRequestsUpdate(id: string, serviceRequestsUpdateRequestBody: ServiceRequestsUpdateRequestBody, options?: any): AxiosPromise<WrappedOneResponseServiceRequestData> {
8818
9765
  return localVarFp.serviceRequestsUpdate(id, serviceRequestsUpdateRequestBody, options).then((request) => request(axios, basePath));
8819
9766
  },
9767
+ /**
9768
+ *
9769
+ * @param {*} [options] Override http request option.
9770
+ * @throws {RequiredError}
9771
+ */
9772
+ stationRetrieve(options?: any): AxiosPromise<WrappedResponseValetStationArray> {
9773
+ return localVarFp.stationRetrieve(options).then((request) => request(axios, basePath));
9774
+ },
8820
9775
  /**
8821
9776
  *
8822
9777
  * @param {SyncBody} syncBody
@@ -9006,6 +9961,17 @@ export class DefaultApi extends BaseAPI {
9006
9961
  return DefaultApiFp(this.configuration).buildingAccessLogsShow(id, accessorType, options).then((request) => request(this.axios, this.basePath));
9007
9962
  }
9008
9963
 
9964
+ /**
9965
+ *
9966
+ * @param {CallingBody} callingBody
9967
+ * @param {*} [options] Override http request option.
9968
+ * @throws {RequiredError}
9969
+ * @memberof DefaultApi
9970
+ */
9971
+ public calling(callingBody: CallingBody, options?: AxiosRequestConfig) {
9972
+ return DefaultApiFp(this.configuration).calling(callingBody, options).then((request) => request(this.axios, this.basePath));
9973
+ }
9974
+
9009
9975
  /**
9010
9976
  *
9011
9977
  * @param {WebhookCreateBody} webhookCreateBody
@@ -9027,6 +9993,17 @@ export class DefaultApi extends BaseAPI {
9027
9993
  return DefaultApiFp(this.configuration).fetch(options).then((request) => request(this.axios, this.basePath));
9028
9994
  }
9029
9995
 
9996
+ /**
9997
+ *
9998
+ * @param {string} [xAccountId]
9999
+ * @param {*} [options] Override http request option.
10000
+ * @throws {RequiredError}
10001
+ * @memberof DefaultApi
10002
+ */
10003
+ public find(xAccountId?: string, options?: AxiosRequestConfig) {
10004
+ return DefaultApiFp(this.configuration).find(xAccountId, options).then((request) => request(this.axios, this.basePath));
10005
+ }
10006
+
9030
10007
  /**
9031
10008
  *
9032
10009
  * @param {*} [options] Override http request option.
@@ -9406,6 +10383,16 @@ export class DefaultApi extends BaseAPI {
9406
10383
  return DefaultApiFp(this.configuration).serviceRequestsUpdate(id, serviceRequestsUpdateRequestBody, options).then((request) => request(this.axios, this.basePath));
9407
10384
  }
9408
10385
 
10386
+ /**
10387
+ *
10388
+ * @param {*} [options] Override http request option.
10389
+ * @throws {RequiredError}
10390
+ * @memberof DefaultApi
10391
+ */
10392
+ public stationRetrieve(options?: AxiosRequestConfig) {
10393
+ return DefaultApiFp(this.configuration).stationRetrieve(options).then((request) => request(this.axios, this.basePath));
10394
+ }
10395
+
9409
10396
  /**
9410
10397
  *
9411
10398
  * @param {SyncBody} syncBody