ob-bms-sdk 0.0.111 → 0.0.112

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
@@ -662,6 +662,49 @@ export interface BaseIndexQuery {
662
662
  */
663
663
  'page_size'?: number;
664
664
  }
665
+ /**
666
+ *
667
+ * @export
668
+ * @interface BlockerData
669
+ */
670
+ export interface BlockerData {
671
+ /**
672
+ *
673
+ * @type {string}
674
+ * @memberof BlockerData
675
+ */
676
+ 'id'?: string;
677
+ /**
678
+ *
679
+ * @type {string}
680
+ * @memberof BlockerData
681
+ */
682
+ 'uid'?: string;
683
+ /**
684
+ *
685
+ * @type {PrismaJsonValue}
686
+ * @memberof BlockerData
687
+ */
688
+ 'meta'?: PrismaJsonValue | null;
689
+ /**
690
+ *
691
+ * @type {string}
692
+ * @memberof BlockerData
693
+ */
694
+ 'parking_space_id'?: string;
695
+ /**
696
+ *
697
+ * @type {string}
698
+ * @memberof BlockerData
699
+ */
700
+ 'created_at'?: string;
701
+ /**
702
+ *
703
+ * @type {string}
704
+ * @memberof BlockerData
705
+ */
706
+ 'updated_at'?: string;
707
+ }
665
708
  /**
666
709
  *
667
710
  * @export
@@ -2888,10 +2931,10 @@ export interface ParkingReservationDetailResponse {
2888
2931
  'status': string;
2889
2932
  /**
2890
2933
  *
2891
- * @type {object}
2934
+ * @type {ParkingSpacesData}
2892
2935
  * @memberof ParkingReservationDetailResponse
2893
2936
  */
2894
- 'parking_space': object;
2937
+ 'parking_space': ParkingSpacesData;
2895
2938
  /**
2896
2939
  *
2897
2940
  * @type {ParkingLotData}
@@ -2912,10 +2955,16 @@ export interface ParkingReservationDetailResponse {
2912
2955
  'reservation_number': string;
2913
2956
  /**
2914
2957
  *
2915
- * @type {object}
2958
+ * @type {BlockerData}
2959
+ * @memberof ParkingReservationDetailResponse
2960
+ */
2961
+ 'blocker': BlockerData;
2962
+ /**
2963
+ *
2964
+ * @type {PaymentResponse}
2916
2965
  * @memberof ParkingReservationDetailResponse
2917
2966
  */
2918
- 'blocker': object;
2967
+ 'payment': PaymentResponse;
2919
2968
  }
2920
2969
  /**
2921
2970
  *
@@ -2979,10 +3028,10 @@ export interface ParkingReservationReservedListResponse {
2979
3028
  'status': string;
2980
3029
  /**
2981
3030
  *
2982
- * @type {object}
3031
+ * @type {ParkingSpacesData}
2983
3032
  * @memberof ParkingReservationReservedListResponse
2984
3033
  */
2985
- 'parking_space': object;
3034
+ 'parking_space': ParkingSpacesData;
2986
3035
  }
2987
3036
  /**
2988
3037
  *
@@ -3040,10 +3089,10 @@ export interface ParkingReservationResponse {
3040
3089
  'status': string;
3041
3090
  /**
3042
3091
  *
3043
- * @type {object}
3092
+ * @type {ParkingSpacesData}
3044
3093
  * @memberof ParkingReservationResponse
3045
3094
  */
3046
- 'parking_space': object;
3095
+ 'parking_space': ParkingSpacesData;
3047
3096
  /**
3048
3097
  *
3049
3098
  * @type {ParkingLotData}
@@ -3064,11 +3113,26 @@ export interface ParkingReservationResponse {
3064
3113
  'reservation_number': string;
3065
3114
  /**
3066
3115
  *
3067
- * @type {object}
3116
+ * @type {BlockerData}
3068
3117
  * @memberof ParkingReservationResponse
3069
3118
  */
3070
- 'blocker': object;
3119
+ 'blocker': BlockerData;
3071
3120
  }
3121
+ /**
3122
+ *
3123
+ * @export
3124
+ * @enum {string}
3125
+ */
3126
+
3127
+ export const ParkingReservationStatus = {
3128
+ Pending: 'pending',
3129
+ Confirmed: 'confirmed',
3130
+ Cancelled: 'cancelled'
3131
+ } as const;
3132
+
3133
+ export type ParkingReservationStatus = typeof ParkingReservationStatus[keyof typeof ParkingReservationStatus];
3134
+
3135
+
3072
3136
  /**
3073
3137
  *
3074
3138
  * @export
@@ -3280,6 +3344,49 @@ export interface ParkingSpaceDetailAndSpaceDetailData {
3280
3344
  */
3281
3345
  'ibeacon_ipc_minor'?: string;
3282
3346
  }
3347
+ /**
3348
+ *
3349
+ * @export
3350
+ * @interface ParkingSpacesData
3351
+ */
3352
+ export interface ParkingSpacesData {
3353
+ /**
3354
+ *
3355
+ * @type {string}
3356
+ * @memberof ParkingSpacesData
3357
+ */
3358
+ 'id'?: string;
3359
+ /**
3360
+ *
3361
+ * @type {string}
3362
+ * @memberof ParkingSpacesData
3363
+ */
3364
+ 'name'?: string;
3365
+ /**
3366
+ *
3367
+ * @type {string}
3368
+ * @memberof ParkingSpacesData
3369
+ */
3370
+ 'parking_lot_id'?: string;
3371
+ /**
3372
+ *
3373
+ * @type {boolean}
3374
+ * @memberof ParkingSpacesData
3375
+ */
3376
+ 'available'?: boolean;
3377
+ /**
3378
+ *
3379
+ * @type {string}
3380
+ * @memberof ParkingSpacesData
3381
+ */
3382
+ 'created_at'?: string;
3383
+ /**
3384
+ *
3385
+ * @type {string}
3386
+ * @memberof ParkingSpacesData
3387
+ */
3388
+ 'updated_at'?: string;
3389
+ }
3283
3390
  /**
3284
3391
  *
3285
3392
  * @export
@@ -3635,6 +3742,12 @@ export interface PaymentData {
3635
3742
  * @memberof PaymentData
3636
3743
  */
3637
3744
  'parking_reservation': ParkingReservationData;
3745
+ /**
3746
+ *
3747
+ * @type {string}
3748
+ * @memberof PaymentData
3749
+ */
3750
+ 'user_id': string;
3638
3751
  /**
3639
3752
  *
3640
3753
  * @type {JsonValue}
@@ -3710,6 +3823,105 @@ export interface PaymentData {
3710
3823
  }
3711
3824
 
3712
3825
 
3826
+ /**
3827
+ *
3828
+ * @export
3829
+ * @interface PaymentResponse
3830
+ */
3831
+ export interface PaymentResponse {
3832
+ /**
3833
+ *
3834
+ * @type {string}
3835
+ * @memberof PaymentResponse
3836
+ */
3837
+ 'updated_at'?: string;
3838
+ /**
3839
+ *
3840
+ * @type {string}
3841
+ * @memberof PaymentResponse
3842
+ */
3843
+ 'created_at'?: string;
3844
+ /**
3845
+ *
3846
+ * @type {string}
3847
+ * @memberof PaymentResponse
3848
+ */
3849
+ 'parking_reservation_id'?: string;
3850
+ /**
3851
+ *
3852
+ * @type {JsonValue}
3853
+ * @memberof PaymentResponse
3854
+ */
3855
+ 'meta'?: JsonValue | null;
3856
+ /**
3857
+ *
3858
+ * @type {string}
3859
+ * @memberof PaymentResponse
3860
+ */
3861
+ 'expired_at'?: string;
3862
+ /**
3863
+ *
3864
+ * @type {string}
3865
+ * @memberof PaymentResponse
3866
+ */
3867
+ 'paid_at'?: string | null;
3868
+ /**
3869
+ *
3870
+ * @type {PaymentStatus}
3871
+ * @memberof PaymentResponse
3872
+ */
3873
+ 'status'?: PaymentStatus;
3874
+ /**
3875
+ *
3876
+ * @type {number}
3877
+ * @memberof PaymentResponse
3878
+ */
3879
+ 'total_amount'?: number;
3880
+ /**
3881
+ *
3882
+ * @type {number}
3883
+ * @memberof PaymentResponse
3884
+ */
3885
+ 'vat_amount'?: number;
3886
+ /**
3887
+ *
3888
+ * @type {number}
3889
+ * @memberof PaymentResponse
3890
+ */
3891
+ 'amount'?: number;
3892
+ /**
3893
+ *
3894
+ * @type {string}
3895
+ * @memberof PaymentResponse
3896
+ */
3897
+ 'invoice_number'?: string | null;
3898
+ /**
3899
+ *
3900
+ * @type {string}
3901
+ * @memberof PaymentResponse
3902
+ */
3903
+ 'reference_number'?: string;
3904
+ /**
3905
+ *
3906
+ * @type {string}
3907
+ * @memberof PaymentResponse
3908
+ */
3909
+ 'description'?: string;
3910
+ /**
3911
+ *
3912
+ * @type {string}
3913
+ * @memberof PaymentResponse
3914
+ */
3915
+ 'payment_url'?: string | null;
3916
+ /**
3917
+ *
3918
+ * @type {string}
3919
+ * @memberof PaymentResponse
3920
+ */
3921
+ 'id'?: string;
3922
+ }
3923
+
3924
+
3713
3925
  /**
3714
3926
  *
3715
3927
  * @export
@@ -5443,6 +5655,413 @@ export interface ValetStation {
5443
5655
  */
5444
5656
  'active': boolean;
5445
5657
  }
5658
+ /**
5659
+ *
5660
+ * @export
5661
+ * @interface ValetStatusPayload
5662
+ */
5663
+ export interface ValetStatusPayload {
5664
+ /**
5665
+ *
5666
+ * @type {string}
5667
+ * @memberof ValetStatusPayload
5668
+ */
5669
+ 'uid': string;
5670
+ /**
5671
+ *
5672
+ * @type {ValetStatusPayloadDetail}
5673
+ * @memberof ValetStatusPayload
5674
+ */
5675
+ 'detail': ValetStatusPayloadDetail;
5676
+ }
5677
+ /**
5678
+ *
5679
+ * @export
5680
+ * @interface ValetStatusPayloadDetail
5681
+ */
5682
+ export interface ValetStatusPayloadDetail {
5683
+ /**
5684
+ *
5685
+ * @type {string}
5686
+ * @memberof ValetStatusPayloadDetail
5687
+ */
5688
+ 'keyCabinet': string;
5689
+ /**
5690
+ *
5691
+ * @type {Array<ValetStatusPayloadDetailImagesInner>}
5692
+ * @memberof ValetStatusPayloadDetail
5693
+ */
5694
+ 'images': Array<ValetStatusPayloadDetailImagesInner>;
5695
+ /**
5696
+ *
5697
+ * @type {ValetStatusPayloadDetailDropOffStation}
5698
+ * @memberof ValetStatusPayloadDetail
5699
+ */
5700
+ 'dropOffStation': ValetStatusPayloadDetailDropOffStation;
5701
+ /**
5702
+ *
5703
+ * @type {string}
5704
+ * @memberof ValetStatusPayloadDetail
5705
+ */
5706
+ 'pickUpStation': string;
5707
+ /**
5708
+ *
5709
+ * @type {string}
5710
+ * @memberof ValetStatusPayloadDetail
5711
+ */
5712
+ 'staffVerify': string;
5713
+ /**
5714
+ *
5715
+ * @type {ValetStatusPayloadDetailStaffConfirmParked}
5716
+ * @memberof ValetStatusPayloadDetail
5717
+ */
5718
+ 'staffConfirmParked': ValetStatusPayloadDetailStaffConfirmParked;
5719
+ /**
5720
+ *
5721
+ * @type {string}
5722
+ * @memberof ValetStatusPayloadDetail
5723
+ */
5724
+ 'staffConfirmDeliver': string;
5725
+ /**
5726
+ *
5727
+ * @type {string}
5728
+ * @memberof ValetStatusPayloadDetail
5729
+ */
5730
+ 'staffParked': string;
5731
+ /**
5732
+ *
5733
+ * @type {string}
5734
+ * @memberof ValetStatusPayloadDetail
5735
+ */
5736
+ 'staffDeliver': string;
5737
+ /**
5738
+ *
5739
+ * @type {string}
5740
+ * @memberof ValetStatusPayloadDetail
5741
+ */
5742
+ 'spot': string;
5743
+ /**
5744
+ *
5745
+ * @type {boolean}
5746
+ * @memberof ValetStatusPayloadDetail
5747
+ */
5748
+ 'isMyQr': boolean;
5749
+ /**
5750
+ *
5751
+ * @type {string}
5752
+ * @memberof ValetStatusPayloadDetail
5753
+ */
5754
+ 'referenceCode': string;
5755
+ /**
5756
+ *
5757
+ * @type {string}
5758
+ * @memberof ValetStatusPayloadDetail
5759
+ */
5760
+ 'signatureURL': string;
5761
+ /**
5762
+ *
5763
+ * @type {string}
5764
+ * @memberof ValetStatusPayloadDetail
5765
+ */
5766
+ 'staffConfirmDeliverId': string;
5767
+ /**
5768
+ *
5769
+ * @type {string}
5770
+ * @memberof ValetStatusPayloadDetail
5771
+ */
5772
+ 'confirmDeliverAt': string;
5773
+ /**
5774
+ *
5775
+ * @type {number}
5776
+ * @memberof ValetStatusPayloadDetail
5777
+ */
5778
+ 'staffConfirmParkedId': number;
5779
+ /**
5780
+ *
5781
+ * @type {string}
5782
+ * @memberof ValetStatusPayloadDetail
5783
+ */
5784
+ 'confirmParkedAt': string;
5785
+ /**
5786
+ *
5787
+ * @type {string}
5788
+ * @memberof ValetStatusPayloadDetail
5789
+ */
5790
+ 'staffVerifyId': string;
5791
+ /**
5792
+ *
5793
+ * @type {string}
5794
+ * @memberof ValetStatusPayloadDetail
5795
+ */
5796
+ 'verifiedAt': string;
5797
+ /**
5798
+ *
5799
+ * @type {number}
5800
+ * @memberof ValetStatusPayloadDetail
5801
+ */
5802
+ 'dropOffStationId': number;
5803
+ /**
5804
+ *
5805
+ * @type {string}
5806
+ * @memberof ValetStatusPayloadDetail
5807
+ */
5808
+ 'pickUpStationId': string;
5809
+ /**
5810
+ *
5811
+ * @type {string}
5812
+ * @memberof ValetStatusPayloadDetail
5813
+ */
5814
+ 'parkingSpotId': string;
5815
+ /**
5816
+ *
5817
+ * @type {string}
5818
+ * @memberof ValetStatusPayloadDetail
5819
+ */
5820
+ 'userId': string;
5821
+ /**
5822
+ *
5823
+ * @type {string}
5824
+ * @memberof ValetStatusPayloadDetail
5825
+ */
5826
+ 'staffDeliverId': string;
5827
+ /**
5828
+ *
5829
+ * @type {string}
5830
+ * @memberof ValetStatusPayloadDetail
5831
+ */
5832
+ 'staffParkedId': string;
5833
+ /**
5834
+ *
5835
+ * @type {string}
5836
+ * @memberof ValetStatusPayloadDetail
5837
+ */
5838
+ 'keyCabinetId': string;
5839
+ /**
5840
+ *
5841
+ * @type {string}
5842
+ * @memberof ValetStatusPayloadDetail
5843
+ */
5844
+ 'licensePlateProvince': string;
5845
+ /**
5846
+ *
5847
+ * @type {string}
5848
+ * @memberof ValetStatusPayloadDetail
5849
+ */
5850
+ 'licensePlate': string;
5851
+ /**
5852
+ *
5853
+ * @type {string}
5854
+ * @memberof ValetStatusPayloadDetail
5855
+ */
5856
+ 'outgoingTime': string;
5857
+ /**
5858
+ *
5859
+ * @type {string}
5860
+ * @memberof ValetStatusPayloadDetail
5861
+ */
5862
+ 'incomingTime': string;
5863
+ /**
5864
+ *
5865
+ * @type {string}
5866
+ * @memberof ValetStatusPayloadDetail
5867
+ */
5868
+ 'phoneNumber': string;
5869
+ /**
5870
+ *
5871
+ * @type {string}
5872
+ * @memberof ValetStatusPayloadDetail
5873
+ */
5874
+ 'name': string;
5875
+ /**
5876
+ *
5877
+ * @type {string}
5878
+ * @memberof ValetStatusPayloadDetail
5879
+ */
5880
+ 'status': string;
5881
+ /**
5882
+ *
5883
+ * @type {string}
5884
+ * @memberof ValetStatusPayloadDetail
5885
+ */
5886
+ 'code': string;
5887
+ /**
5888
+ *
5889
+ * @type {string}
5890
+ * @memberof ValetStatusPayloadDetail
5891
+ */
5892
+ 'deletedAt': string;
5893
+ /**
5894
+ *
5895
+ * @type {string}
5896
+ * @memberof ValetStatusPayloadDetail
5897
+ */
5898
+ 'updatedAt': string;
5899
+ /**
5900
+ *
5901
+ * @type {string}
5902
+ * @memberof ValetStatusPayloadDetail
5903
+ */
5904
+ 'createdAt': string;
5905
+ /**
5906
+ *
5907
+ * @type {number}
5908
+ * @memberof ValetStatusPayloadDetail
5909
+ */
5910
+ 'id': number;
5911
+ }
5912
+ /**
5913
+ *
5914
+ * @export
5915
+ * @interface ValetStatusPayloadDetailDropOffStation
5916
+ */
5917
+ export interface ValetStatusPayloadDetailDropOffStation {
5918
+ /**
5919
+ *
5920
+ * @type {boolean}
5921
+ * @memberof ValetStatusPayloadDetailDropOffStation
5922
+ */
5923
+ 'isUsed': boolean;
5924
+ /**
5925
+ *
5926
+ * @type {boolean}
5927
+ * @memberof ValetStatusPayloadDetailDropOffStation
5928
+ */
5929
+ 'active': boolean;
5930
+ /**
5931
+ *
5932
+ * @type {string}
5933
+ * @memberof ValetStatusPayloadDetailDropOffStation
5934
+ */
5935
+ 'location': string;
5936
+ /**
5937
+ *
5938
+ * @type {string}
5939
+ * @memberof ValetStatusPayloadDetailDropOffStation
5940
+ */
5941
+ 'description': string;
5942
+ /**
5943
+ *
5944
+ * @type {string}
5945
+ * @memberof ValetStatusPayloadDetailDropOffStation
5946
+ */
5947
+ 'name': string;
5948
+ /**
5949
+ *
5950
+ * @type {string}
5951
+ * @memberof ValetStatusPayloadDetailDropOffStation
5952
+ */
5953
+ 'deletedAt': string;
5954
+ /**
5955
+ *
5956
+ * @type {string}
5957
+ * @memberof ValetStatusPayloadDetailDropOffStation
5958
+ */
5959
+ 'updatedAt': string;
5960
+ /**
5961
+ *
5962
+ * @type {string}
5963
+ * @memberof ValetStatusPayloadDetailDropOffStation
5964
+ */
5965
+ 'createdAt': string;
5966
+ /**
5967
+ *
5968
+ * @type {number}
5969
+ * @memberof ValetStatusPayloadDetailDropOffStation
5970
+ */
5971
+ 'id': number;
5972
+ }
5973
+ /**
5974
+ *
5975
+ * @export
5976
+ * @interface ValetStatusPayloadDetailImagesInner
5977
+ */
5978
+ export interface ValetStatusPayloadDetailImagesInner {
5979
+ /**
5980
+ *
5981
+ * @type {number}
5982
+ * @memberof ValetStatusPayloadDetailImagesInner
5983
+ */
5984
+ 'valetParkingId': number;
5985
+ /**
5986
+ *
5987
+ * @type {string}
5988
+ * @memberof ValetStatusPayloadDetailImagesInner
5989
+ */
5990
+ 'url': string;
5991
+ /**
5992
+ *
5993
+ * @type {string}
5994
+ * @memberof ValetStatusPayloadDetailImagesInner
5995
+ */
5996
+ 'createdAt': string;
5997
+ }
5998
+ /**
5999
+ *
6000
+ * @export
6001
+ * @interface ValetStatusPayloadDetailStaffConfirmParked
6002
+ */
6003
+ export interface ValetStatusPayloadDetailStaffConfirmParked {
6004
+ /**
6005
+ *
6006
+ * @type {string}
6007
+ * @memberof ValetStatusPayloadDetailStaffConfirmParked
6008
+ */
6009
+ 'role': string;
6010
+ /**
6011
+ *
6012
+ * @type {string}
6013
+ * @memberof ValetStatusPayloadDetailStaffConfirmParked
6014
+ */
6015
+ 'displayName': string;
6016
+ /**
6017
+ *
6018
+ * @type {string}
6019
+ * @memberof ValetStatusPayloadDetailStaffConfirmParked
6020
+ */
6021
+ 'phoneNumber': string;
6022
+ /**
6023
+ *
6024
+ * @type {string}
6025
+ * @memberof ValetStatusPayloadDetailStaffConfirmParked
6026
+ */
6027
+ 'email': string;
6028
+ /**
6029
+ *
6030
+ * @type {string}
6031
+ * @memberof ValetStatusPayloadDetailStaffConfirmParked
6032
+ */
6033
+ 'pin': string;
6034
+ /**
6035
+ *
6036
+ * @type {string}
6037
+ * @memberof ValetStatusPayloadDetailStaffConfirmParked
6038
+ */
6039
+ 'userName': string;
6040
+ /**
6041
+ *
6042
+ * @type {string}
6043
+ * @memberof ValetStatusPayloadDetailStaffConfirmParked
6044
+ */
6045
+ 'deletedAt': string;
6046
+ /**
6047
+ *
6048
+ * @type {string}
6049
+ * @memberof ValetStatusPayloadDetailStaffConfirmParked
6050
+ */
6051
+ 'updatedAt': string;
6052
+ /**
6053
+ *
6054
+ * @type {string}
6055
+ * @memberof ValetStatusPayloadDetailStaffConfirmParked
6056
+ */
6057
+ 'createdAt': string;
6058
+ /**
6059
+ *
6060
+ * @type {number}
6061
+ * @memberof ValetStatusPayloadDetailStaffConfirmParked
6062
+ */
6063
+ 'id': number;
6064
+ }
5446
6065
  /**
5447
6066
  *
5448
6067
  * @export
@@ -5958,6 +6577,18 @@ export interface WebhookCreateBodyPayload {
5958
6577
  * @memberof WebhookCreateBodyPayload
5959
6578
  */
5960
6579
  'inviteID': string;
6580
+ /**
6581
+ *
6582
+ * @type {string}
6583
+ * @memberof WebhookCreateBodyPayload
6584
+ */
6585
+ 'uid': string;
6586
+ /**
6587
+ *
6588
+ * @type {ValetStatusPayloadDetail}
6589
+ * @memberof WebhookCreateBodyPayload
6590
+ */
6591
+ 'detail': ValetStatusPayloadDetail;
5961
6592
  /**
5962
6593
  *
5963
6594
  * @type {string}
@@ -9142,11 +9773,12 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9142
9773
  /**
9143
9774
  *
9144
9775
  * @param {string} id
9776
+ * @param {ParkingReservationStatus} [status]
9145
9777
  * @param {string} [xAccountId]
9146
9778
  * @param {*} [options] Override http request option.
9147
9779
  * @throws {RequiredError}
9148
9780
  */
9149
- parkingReservationsListDetail: async (id: string, xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
9781
+ parkingReservationsListDetail: async (id: string, status?: ParkingReservationStatus, xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
9150
9782
  // verify required parameter 'id' is not null or undefined
9151
9783
  assertParamExists('parkingReservationsListDetail', 'id', id)
9152
9784
  const localVarPath = `/parking_reservations/{id}`
@@ -9162,6 +9794,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9162
9794
  const localVarHeaderParameter = {} as any;
9163
9795
  const localVarQueryParameter = {} as any;
9164
9796
 
9797
+ if (status !== undefined) {
9798
+ localVarQueryParameter['status'] = status;
9799
+ }
9800
+
9165
9801
  if (xAccountId != null) {
9166
9802
  localVarHeaderParameter['x-account-id'] = String(xAccountId);
9167
9803
  }
@@ -10455,12 +11091,13 @@ export const DefaultApiFp = function(configuration?: Configuration) {
10455
11091
  /**
10456
11092
  *
10457
11093
  * @param {string} id
11094
+ * @param {ParkingReservationStatus} [status]
10458
11095
  * @param {string} [xAccountId]
10459
11096
  * @param {*} [options] Override http request option.
10460
11097
  * @throws {RequiredError}
10461
11098
  */
10462
- async parkingReservationsListDetail(id: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseParkingReservationDetailResponse>> {
10463
- const localVarAxiosArgs = await localVarAxiosParamCreator.parkingReservationsListDetail(id, xAccountId, options);
11099
+ async parkingReservationsListDetail(id: string, status?: ParkingReservationStatus, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseParkingReservationDetailResponse>> {
11100
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingReservationsListDetail(id, status, xAccountId, options);
10464
11101
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
10465
11102
  },
10466
11103
  /**
@@ -11089,12 +11726,13 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
11089
11726
  /**
11090
11727
  *
11091
11728
  * @param {string} id
11729
+ * @param {ParkingReservationStatus} [status]
11092
11730
  * @param {string} [xAccountId]
11093
11731
  * @param {*} [options] Override http request option.
11094
11732
  * @throws {RequiredError}
11095
11733
  */
11096
- parkingReservationsListDetail(id: string, xAccountId?: string, options?: any): AxiosPromise<WrappedOneResponseParkingReservationDetailResponse> {
11097
- return localVarFp.parkingReservationsListDetail(id, xAccountId, options).then((request) => request(axios, basePath));
11734
+ parkingReservationsListDetail(id: string, status?: ParkingReservationStatus, xAccountId?: string, options?: any): AxiosPromise<WrappedOneResponseParkingReservationDetailResponse> {
11735
+ return localVarFp.parkingReservationsListDetail(id, status, xAccountId, options).then((request) => request(axios, basePath));
11098
11736
  },
11099
11737
  /**
11100
11738
  *
@@ -11768,13 +12406,14 @@ export class DefaultApi extends BaseAPI {
11768
12406
  /**
11769
12407
  *
11770
12408
  * @param {string} id
12409
+ * @param {ParkingReservationStatus} [status]
11771
12410
  * @param {string} [xAccountId]
11772
12411
  * @param {*} [options] Override http request option.
11773
12412
  * @throws {RequiredError}
11774
12413
  * @memberof DefaultApi
11775
12414
  */
11776
- public parkingReservationsListDetail(id: string, xAccountId?: string, options?: AxiosRequestConfig) {
11777
- return DefaultApiFp(this.configuration).parkingReservationsListDetail(id, xAccountId, options).then((request) => request(this.axios, this.basePath));
12415
+ public parkingReservationsListDetail(id: string, status?: ParkingReservationStatus, xAccountId?: string, options?: AxiosRequestConfig) {
12416
+ return DefaultApiFp(this.configuration).parkingReservationsListDetail(id, status, xAccountId, options).then((request) => request(this.axios, this.basePath));
11778
12417
  }
11779
12418
 
11780
12419
  /**