ob-bms-sdk 0.0.122 → 0.0.124
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 +469 -82
- package/api/base.ts +1 -1
- package/api/common.ts +1 -1
- package/api/configuration.ts +1 -1
- package/api/index.ts +1 -1
- package/dist/api/api.d.ts +381 -82
- package/dist/api/api.js +149 -2
- package/dist/api/base.d.ts +1 -1
- package/dist/api/base.js +1 -1
- package/dist/api/common.d.ts +1 -1
- package/dist/api/common.js +1 -1
- package/dist/api/configuration.d.ts +1 -1
- package/dist/api/configuration.js +1 -1
- package/dist/api/index.d.ts +1 -1
- package/dist/api/index.js +1 -1
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ob-bms
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.4.
|
|
7
|
+
* The version of the OpenAPI document: 2.4.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -951,6 +951,68 @@ export interface CallingBody {
|
|
|
951
951
|
*/
|
|
952
952
|
'valet_car_id': number;
|
|
953
953
|
}
|
|
954
|
+
/**
|
|
955
|
+
*
|
|
956
|
+
* @export
|
|
957
|
+
* @interface CarEnterPayload
|
|
958
|
+
*/
|
|
959
|
+
export interface CarEnterPayload {
|
|
960
|
+
/**
|
|
961
|
+
*
|
|
962
|
+
* @type {string}
|
|
963
|
+
* @memberof CarEnterPayload
|
|
964
|
+
*/
|
|
965
|
+
'logId': string;
|
|
966
|
+
/**
|
|
967
|
+
*
|
|
968
|
+
* @type {string}
|
|
969
|
+
* @memberof CarEnterPayload
|
|
970
|
+
*/
|
|
971
|
+
'plateNo': string;
|
|
972
|
+
/**
|
|
973
|
+
*
|
|
974
|
+
* @type {string}
|
|
975
|
+
* @memberof CarEnterPayload
|
|
976
|
+
*/
|
|
977
|
+
'provinceName'?: string;
|
|
978
|
+
/**
|
|
979
|
+
*
|
|
980
|
+
* @type {string}
|
|
981
|
+
* @memberof CarEnterPayload
|
|
982
|
+
*/
|
|
983
|
+
'personId'?: string;
|
|
984
|
+
}
|
|
985
|
+
/**
|
|
986
|
+
*
|
|
987
|
+
* @export
|
|
988
|
+
* @interface CarExitPayload
|
|
989
|
+
*/
|
|
990
|
+
export interface CarExitPayload {
|
|
991
|
+
/**
|
|
992
|
+
*
|
|
993
|
+
* @type {string}
|
|
994
|
+
* @memberof CarExitPayload
|
|
995
|
+
*/
|
|
996
|
+
'logId': string;
|
|
997
|
+
/**
|
|
998
|
+
*
|
|
999
|
+
* @type {string}
|
|
1000
|
+
* @memberof CarExitPayload
|
|
1001
|
+
*/
|
|
1002
|
+
'plateNo': string;
|
|
1003
|
+
/**
|
|
1004
|
+
*
|
|
1005
|
+
* @type {string}
|
|
1006
|
+
* @memberof CarExitPayload
|
|
1007
|
+
*/
|
|
1008
|
+
'provinceName'?: string;
|
|
1009
|
+
/**
|
|
1010
|
+
*
|
|
1011
|
+
* @type {string}
|
|
1012
|
+
* @memberof CarExitPayload
|
|
1013
|
+
*/
|
|
1014
|
+
'personId'?: string;
|
|
1015
|
+
}
|
|
954
1016
|
/**
|
|
955
1017
|
*
|
|
956
1018
|
* @export
|
|
@@ -1583,6 +1645,20 @@ export interface DropOffStation {
|
|
|
1583
1645
|
*/
|
|
1584
1646
|
'isUsed': boolean;
|
|
1585
1647
|
}
|
|
1648
|
+
/**
|
|
1649
|
+
*
|
|
1650
|
+
* @export
|
|
1651
|
+
* @enum {string}
|
|
1652
|
+
*/
|
|
1653
|
+
|
|
1654
|
+
export const EngineType = {
|
|
1655
|
+
Ev: 'EV',
|
|
1656
|
+
Ice: 'ICE'
|
|
1657
|
+
} as const;
|
|
1658
|
+
|
|
1659
|
+
export type EngineType = typeof EngineType[keyof typeof EngineType];
|
|
1660
|
+
|
|
1661
|
+
|
|
1586
1662
|
/**
|
|
1587
1663
|
*
|
|
1588
1664
|
* @export
|
|
@@ -1716,10 +1792,10 @@ export interface FindVisitorsByEmailInput {
|
|
|
1716
1792
|
export interface FindVisitorsByEmailResponse {
|
|
1717
1793
|
/**
|
|
1718
1794
|
*
|
|
1719
|
-
* @type {Array<
|
|
1795
|
+
* @type {Array<Pass>}
|
|
1720
1796
|
* @memberof FindVisitorsByEmailResponse
|
|
1721
1797
|
*/
|
|
1722
|
-
'data': Array<
|
|
1798
|
+
'data': Array<Pass>;
|
|
1723
1799
|
}
|
|
1724
1800
|
/**
|
|
1725
1801
|
*
|
|
@@ -2926,85 +3002,6 @@ export interface MetaDataPasses {
|
|
|
2926
3002
|
*/
|
|
2927
3003
|
'invite_name': string;
|
|
2928
3004
|
}
|
|
2929
|
-
/**
|
|
2930
|
-
*
|
|
2931
|
-
* @export
|
|
2932
|
-
* @interface Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2933
|
-
*/
|
|
2934
|
-
export interface Model24ResultDefaultSelectionPrisma24PassPayload {
|
|
2935
|
-
/**
|
|
2936
|
-
*
|
|
2937
|
-
* @type {JsonValue}
|
|
2938
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2939
|
-
*/
|
|
2940
|
-
'metadata_resident': JsonValue | null;
|
|
2941
|
-
/**
|
|
2942
|
-
*
|
|
2943
|
-
* @type {boolean}
|
|
2944
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2945
|
-
*/
|
|
2946
|
-
'consent': boolean;
|
|
2947
|
-
/**
|
|
2948
|
-
*
|
|
2949
|
-
* @type {string}
|
|
2950
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2951
|
-
*/
|
|
2952
|
-
'updated_at': string;
|
|
2953
|
-
/**
|
|
2954
|
-
*
|
|
2955
|
-
* @type {string}
|
|
2956
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2957
|
-
*/
|
|
2958
|
-
'created_at': string;
|
|
2959
|
-
/**
|
|
2960
|
-
*
|
|
2961
|
-
* @type {any}
|
|
2962
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2963
|
-
*/
|
|
2964
|
-
'status': any;
|
|
2965
|
-
/**
|
|
2966
|
-
*
|
|
2967
|
-
* @type {string}
|
|
2968
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2969
|
-
*/
|
|
2970
|
-
'issuer_id': string;
|
|
2971
|
-
/**
|
|
2972
|
-
*
|
|
2973
|
-
* @type {string}
|
|
2974
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2975
|
-
*/
|
|
2976
|
-
'visit_schedule_id': string;
|
|
2977
|
-
/**
|
|
2978
|
-
*
|
|
2979
|
-
* @type {string}
|
|
2980
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2981
|
-
*/
|
|
2982
|
-
'visitor_id': string;
|
|
2983
|
-
/**
|
|
2984
|
-
*
|
|
2985
|
-
* @type {string}
|
|
2986
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2987
|
-
*/
|
|
2988
|
-
'to': string;
|
|
2989
|
-
/**
|
|
2990
|
-
*
|
|
2991
|
-
* @type {string}
|
|
2992
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2993
|
-
*/
|
|
2994
|
-
'from': string;
|
|
2995
|
-
/**
|
|
2996
|
-
*
|
|
2997
|
-
* @type {string}
|
|
2998
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
2999
|
-
*/
|
|
3000
|
-
'uid': string;
|
|
3001
|
-
/**
|
|
3002
|
-
*
|
|
3003
|
-
* @type {string}
|
|
3004
|
-
* @memberof Model24ResultDefaultSelectionPrisma24PassPayload
|
|
3005
|
-
*/
|
|
3006
|
-
'id': string;
|
|
3007
|
-
}
|
|
3008
3005
|
/**
|
|
3009
3006
|
*
|
|
3010
3007
|
* @export
|
|
@@ -4319,6 +4316,87 @@ export interface ParkingVisitorAccessLog {
|
|
|
4319
4316
|
*/
|
|
4320
4317
|
'terminalPosition': number;
|
|
4321
4318
|
}
|
|
4319
|
+
/**
|
|
4320
|
+
*
|
|
4321
|
+
* @export
|
|
4322
|
+
* @interface Pass
|
|
4323
|
+
*/
|
|
4324
|
+
export interface Pass {
|
|
4325
|
+
/**
|
|
4326
|
+
*
|
|
4327
|
+
* @type {string}
|
|
4328
|
+
* @memberof Pass
|
|
4329
|
+
*/
|
|
4330
|
+
'id': string;
|
|
4331
|
+
/**
|
|
4332
|
+
*
|
|
4333
|
+
* @type {string}
|
|
4334
|
+
* @memberof Pass
|
|
4335
|
+
*/
|
|
4336
|
+
'uid': string | null;
|
|
4337
|
+
/**
|
|
4338
|
+
*
|
|
4339
|
+
* @type {string}
|
|
4340
|
+
* @memberof Pass
|
|
4341
|
+
*/
|
|
4342
|
+
'from': string;
|
|
4343
|
+
/**
|
|
4344
|
+
*
|
|
4345
|
+
* @type {string}
|
|
4346
|
+
* @memberof Pass
|
|
4347
|
+
*/
|
|
4348
|
+
'to': string;
|
|
4349
|
+
/**
|
|
4350
|
+
*
|
|
4351
|
+
* @type {string}
|
|
4352
|
+
* @memberof Pass
|
|
4353
|
+
*/
|
|
4354
|
+
'visitor_id': string;
|
|
4355
|
+
/**
|
|
4356
|
+
*
|
|
4357
|
+
* @type {string}
|
|
4358
|
+
* @memberof Pass
|
|
4359
|
+
*/
|
|
4360
|
+
'visit_schedule_id': string;
|
|
4361
|
+
/**
|
|
4362
|
+
*
|
|
4363
|
+
* @type {string}
|
|
4364
|
+
* @memberof Pass
|
|
4365
|
+
*/
|
|
4366
|
+
'issuer_id': string;
|
|
4367
|
+
/**
|
|
4368
|
+
*
|
|
4369
|
+
* @type {PassStatus}
|
|
4370
|
+
* @memberof Pass
|
|
4371
|
+
*/
|
|
4372
|
+
'status': PassStatus;
|
|
4373
|
+
/**
|
|
4374
|
+
*
|
|
4375
|
+
* @type {string}
|
|
4376
|
+
* @memberof Pass
|
|
4377
|
+
*/
|
|
4378
|
+
'created_at': string;
|
|
4379
|
+
/**
|
|
4380
|
+
*
|
|
4381
|
+
* @type {string}
|
|
4382
|
+
* @memberof Pass
|
|
4383
|
+
*/
|
|
4384
|
+
'updated_at': string;
|
|
4385
|
+
/**
|
|
4386
|
+
*
|
|
4387
|
+
* @type {boolean}
|
|
4388
|
+
* @memberof Pass
|
|
4389
|
+
*/
|
|
4390
|
+
'consent': boolean | null;
|
|
4391
|
+
/**
|
|
4392
|
+
*
|
|
4393
|
+
* @type {PrismaJsonValue}
|
|
4394
|
+
* @memberof Pass
|
|
4395
|
+
*/
|
|
4396
|
+
'metadata_resident': PrismaJsonValue | null;
|
|
4397
|
+
}
|
|
4398
|
+
|
|
4399
|
+
|
|
4322
4400
|
/**
|
|
4323
4401
|
*
|
|
4324
4402
|
* @export
|
|
@@ -4518,6 +4596,20 @@ export interface PassListResult {
|
|
|
4518
4596
|
*/
|
|
4519
4597
|
'pagination': Pagination;
|
|
4520
4598
|
}
|
|
4599
|
+
/**
|
|
4600
|
+
*
|
|
4601
|
+
* @export
|
|
4602
|
+
* @enum {string}
|
|
4603
|
+
*/
|
|
4604
|
+
|
|
4605
|
+
export const PassStatus = {
|
|
4606
|
+
Pending: 'pending',
|
|
4607
|
+
Confirmed: 'confirmed'
|
|
4608
|
+
} as const;
|
|
4609
|
+
|
|
4610
|
+
export type PassStatus = typeof PassStatus[keyof typeof PassStatus];
|
|
4611
|
+
|
|
4612
|
+
|
|
4521
4613
|
/**
|
|
4522
4614
|
*
|
|
4523
4615
|
* @export
|
|
@@ -4899,6 +4991,69 @@ export interface RateDetail {
|
|
|
4899
4991
|
*/
|
|
4900
4992
|
'en': string;
|
|
4901
4993
|
}
|
|
4994
|
+
/**
|
|
4995
|
+
*
|
|
4996
|
+
* @export
|
|
4997
|
+
* @interface RegisteredVehicleResponse
|
|
4998
|
+
*/
|
|
4999
|
+
export interface RegisteredVehicleResponse {
|
|
5000
|
+
/**
|
|
5001
|
+
*
|
|
5002
|
+
* @type {boolean}
|
|
5003
|
+
* @memberof RegisteredVehicleResponse
|
|
5004
|
+
*/
|
|
5005
|
+
'is_vip': boolean;
|
|
5006
|
+
/**
|
|
5007
|
+
*
|
|
5008
|
+
* @type {string}
|
|
5009
|
+
* @memberof RegisteredVehicleResponse
|
|
5010
|
+
*/
|
|
5011
|
+
'vehicle_model_id'?: string | null;
|
|
5012
|
+
/**
|
|
5013
|
+
*
|
|
5014
|
+
* @type {string}
|
|
5015
|
+
* @memberof RegisteredVehicleResponse
|
|
5016
|
+
*/
|
|
5017
|
+
'vehicle_brand_id'?: string | null;
|
|
5018
|
+
/**
|
|
5019
|
+
*
|
|
5020
|
+
* @type {EngineType}
|
|
5021
|
+
* @memberof RegisteredVehicleResponse
|
|
5022
|
+
*/
|
|
5023
|
+
'engine_type'?: EngineType | null;
|
|
5024
|
+
/**
|
|
5025
|
+
*
|
|
5026
|
+
* @type {string}
|
|
5027
|
+
* @memberof RegisteredVehicleResponse
|
|
5028
|
+
*/
|
|
5029
|
+
'plate_province'?: string | null;
|
|
5030
|
+
/**
|
|
5031
|
+
*
|
|
5032
|
+
* @type {string}
|
|
5033
|
+
* @memberof RegisteredVehicleResponse
|
|
5034
|
+
*/
|
|
5035
|
+
'plate_no': string;
|
|
5036
|
+
/**
|
|
5037
|
+
*
|
|
5038
|
+
* @type {string}
|
|
5039
|
+
* @memberof RegisteredVehicleResponse
|
|
5040
|
+
*/
|
|
5041
|
+
'account_id': string;
|
|
5042
|
+
/**
|
|
5043
|
+
*
|
|
5044
|
+
* @type {VehicleType}
|
|
5045
|
+
* @memberof RegisteredVehicleResponse
|
|
5046
|
+
*/
|
|
5047
|
+
'vehicle_type'?: VehicleType | null;
|
|
5048
|
+
/**
|
|
5049
|
+
*
|
|
5050
|
+
* @type {string}
|
|
5051
|
+
* @memberof RegisteredVehicleResponse
|
|
5052
|
+
*/
|
|
5053
|
+
'id': string;
|
|
5054
|
+
}
|
|
5055
|
+
|
|
5056
|
+
|
|
4902
5057
|
/**
|
|
4903
5058
|
*
|
|
4904
5059
|
* @export
|
|
@@ -7250,6 +7405,52 @@ export interface ValetStatusPayloadDetailStaffConfirmParked {
|
|
|
7250
7405
|
*/
|
|
7251
7406
|
'id': number;
|
|
7252
7407
|
}
|
|
7408
|
+
/**
|
|
7409
|
+
*
|
|
7410
|
+
* @export
|
|
7411
|
+
* @enum {string}
|
|
7412
|
+
*/
|
|
7413
|
+
|
|
7414
|
+
export const VehicleType = {
|
|
7415
|
+
Car: 'CAR',
|
|
7416
|
+
Motorcycle: 'MOTORCYCLE'
|
|
7417
|
+
} as const;
|
|
7418
|
+
|
|
7419
|
+
export type VehicleType = typeof VehicleType[keyof typeof VehicleType];
|
|
7420
|
+
|
|
7421
|
+
|
|
7422
|
+
/**
|
|
7423
|
+
*
|
|
7424
|
+
* @export
|
|
7425
|
+
* @interface VipLicensePlateQuery
|
|
7426
|
+
*/
|
|
7427
|
+
export interface VipLicensePlateQuery {
|
|
7428
|
+
/**
|
|
7429
|
+
*
|
|
7430
|
+
* @type {string}
|
|
7431
|
+
* @memberof VipLicensePlateQuery
|
|
7432
|
+
*/
|
|
7433
|
+
'licensePlate'?: string;
|
|
7434
|
+
}
|
|
7435
|
+
/**
|
|
7436
|
+
*
|
|
7437
|
+
* @export
|
|
7438
|
+
* @interface VipLicensePlateResult
|
|
7439
|
+
*/
|
|
7440
|
+
export interface VipLicensePlateResult {
|
|
7441
|
+
/**
|
|
7442
|
+
*
|
|
7443
|
+
* @type {RegisteredVehicleResponse}
|
|
7444
|
+
* @memberof VipLicensePlateResult
|
|
7445
|
+
*/
|
|
7446
|
+
'result': RegisteredVehicleResponse | null;
|
|
7447
|
+
/**
|
|
7448
|
+
*
|
|
7449
|
+
* @type {Array<string>}
|
|
7450
|
+
* @memberof VipLicensePlateResult
|
|
7451
|
+
*/
|
|
7452
|
+
'error': Array<string>;
|
|
7453
|
+
}
|
|
7253
7454
|
/**
|
|
7254
7455
|
*
|
|
7255
7456
|
* @export
|
|
@@ -7873,6 +8074,30 @@ export interface WebhookCreateBodyPayload {
|
|
|
7873
8074
|
* @memberof WebhookCreateBodyPayload
|
|
7874
8075
|
*/
|
|
7875
8076
|
'referenceNumber': string;
|
|
8077
|
+
/**
|
|
8078
|
+
*
|
|
8079
|
+
* @type {string}
|
|
8080
|
+
* @memberof WebhookCreateBodyPayload
|
|
8081
|
+
*/
|
|
8082
|
+
'logId': string;
|
|
8083
|
+
/**
|
|
8084
|
+
*
|
|
8085
|
+
* @type {string}
|
|
8086
|
+
* @memberof WebhookCreateBodyPayload
|
|
8087
|
+
*/
|
|
8088
|
+
'plateNo': string;
|
|
8089
|
+
/**
|
|
8090
|
+
*
|
|
8091
|
+
* @type {string}
|
|
8092
|
+
* @memberof WebhookCreateBodyPayload
|
|
8093
|
+
*/
|
|
8094
|
+
'provinceName'?: string;
|
|
8095
|
+
/**
|
|
8096
|
+
*
|
|
8097
|
+
* @type {string}
|
|
8098
|
+
* @memberof WebhookCreateBodyPayload
|
|
8099
|
+
*/
|
|
8100
|
+
'personId'?: string;
|
|
7876
8101
|
}
|
|
7877
8102
|
/**
|
|
7878
8103
|
*
|
|
@@ -9833,6 +10058,38 @@ export interface WrappedResponseValetStationArray {
|
|
|
9833
10058
|
*/
|
|
9834
10059
|
export interface WrappedResponseValetStationArrayData {
|
|
9835
10060
|
}
|
|
10061
|
+
/**
|
|
10062
|
+
*
|
|
10063
|
+
* @export
|
|
10064
|
+
* @interface WrappedResponseVipLicensePlateResult
|
|
10065
|
+
*/
|
|
10066
|
+
export interface WrappedResponseVipLicensePlateResult {
|
|
10067
|
+
/**
|
|
10068
|
+
*
|
|
10069
|
+
* @type {WrappedResponseVipLicensePlateResultData}
|
|
10070
|
+
* @memberof WrappedResponseVipLicensePlateResult
|
|
10071
|
+
*/
|
|
10072
|
+
'data': WrappedResponseVipLicensePlateResultData | null;
|
|
10073
|
+
}
|
|
10074
|
+
/**
|
|
10075
|
+
*
|
|
10076
|
+
* @export
|
|
10077
|
+
* @interface WrappedResponseVipLicensePlateResultData
|
|
10078
|
+
*/
|
|
10079
|
+
export interface WrappedResponseVipLicensePlateResultData {
|
|
10080
|
+
/**
|
|
10081
|
+
*
|
|
10082
|
+
* @type {RegisteredVehicleResponse}
|
|
10083
|
+
* @memberof WrappedResponseVipLicensePlateResultData
|
|
10084
|
+
*/
|
|
10085
|
+
'result': RegisteredVehicleResponse | null;
|
|
10086
|
+
/**
|
|
10087
|
+
*
|
|
10088
|
+
* @type {Array<string>}
|
|
10089
|
+
* @memberof WrappedResponseVipLicensePlateResultData
|
|
10090
|
+
*/
|
|
10091
|
+
'error': Array<string>;
|
|
10092
|
+
}
|
|
9836
10093
|
/**
|
|
9837
10094
|
*
|
|
9838
10095
|
* @export
|
|
@@ -11993,6 +12250,42 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
11993
12250
|
|
|
11994
12251
|
|
|
11995
12252
|
|
|
12253
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12254
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12255
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
12256
|
+
|
|
12257
|
+
return {
|
|
12258
|
+
url: toPathString(localVarUrlObj),
|
|
12259
|
+
options: localVarRequestOptions,
|
|
12260
|
+
};
|
|
12261
|
+
},
|
|
12262
|
+
/**
|
|
12263
|
+
*
|
|
12264
|
+
* @param {string} accountId
|
|
12265
|
+
* @param {*} [options] Override http request option.
|
|
12266
|
+
* @throws {RequiredError}
|
|
12267
|
+
*/
|
|
12268
|
+
parkingTicketsV2CmsAllDetails: async (accountId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12269
|
+
// verify required parameter 'accountId' is not null or undefined
|
|
12270
|
+
assertParamExists('parkingTicketsV2CmsAllDetails', 'accountId', accountId)
|
|
12271
|
+
const localVarPath = `/v2/parking_tickets/cms/all_details`;
|
|
12272
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12273
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12274
|
+
let baseOptions;
|
|
12275
|
+
if (configuration) {
|
|
12276
|
+
baseOptions = configuration.baseOptions;
|
|
12277
|
+
}
|
|
12278
|
+
|
|
12279
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
12280
|
+
const localVarHeaderParameter = {} as any;
|
|
12281
|
+
const localVarQueryParameter = {} as any;
|
|
12282
|
+
|
|
12283
|
+
if (accountId !== undefined) {
|
|
12284
|
+
localVarQueryParameter['account_id'] = accountId;
|
|
12285
|
+
}
|
|
12286
|
+
|
|
12287
|
+
|
|
12288
|
+
|
|
11996
12289
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11997
12290
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11998
12291
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -12778,6 +13071,40 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
12778
13071
|
|
|
12779
13072
|
|
|
12780
13073
|
|
|
13074
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
13075
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
13076
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
13077
|
+
|
|
13078
|
+
return {
|
|
13079
|
+
url: toPathString(localVarUrlObj),
|
|
13080
|
+
options: localVarRequestOptions,
|
|
13081
|
+
};
|
|
13082
|
+
},
|
|
13083
|
+
/**
|
|
13084
|
+
*
|
|
13085
|
+
* @param {string} [licensePlate]
|
|
13086
|
+
* @param {*} [options] Override http request option.
|
|
13087
|
+
* @throws {RequiredError}
|
|
13088
|
+
*/
|
|
13089
|
+
vipLicensePlate: async (licensePlate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
13090
|
+
const localVarPath = `/integrations/fs/parking/vip-license-plate`;
|
|
13091
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
13092
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
13093
|
+
let baseOptions;
|
|
13094
|
+
if (configuration) {
|
|
13095
|
+
baseOptions = configuration.baseOptions;
|
|
13096
|
+
}
|
|
13097
|
+
|
|
13098
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
13099
|
+
const localVarHeaderParameter = {} as any;
|
|
13100
|
+
const localVarQueryParameter = {} as any;
|
|
13101
|
+
|
|
13102
|
+
if (licensePlate !== undefined) {
|
|
13103
|
+
localVarQueryParameter['licensePlate'] = licensePlate;
|
|
13104
|
+
}
|
|
13105
|
+
|
|
13106
|
+
|
|
13107
|
+
|
|
12781
13108
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12782
13109
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12783
13110
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -13674,6 +14001,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
13674
14001
|
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsV2AllDetails(xAccountId, options);
|
|
13675
14002
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
13676
14003
|
},
|
|
14004
|
+
/**
|
|
14005
|
+
*
|
|
14006
|
+
* @param {string} accountId
|
|
14007
|
+
* @param {*} [options] Override http request option.
|
|
14008
|
+
* @throws {RequiredError}
|
|
14009
|
+
*/
|
|
14010
|
+
async parkingTicketsV2CmsAllDetails(accountId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData>> {
|
|
14011
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsV2CmsAllDetails(accountId, options);
|
|
14012
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
14013
|
+
},
|
|
13677
14014
|
/**
|
|
13678
14015
|
*
|
|
13679
14016
|
* @param {string} id
|
|
@@ -13895,6 +14232,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
13895
14232
|
const localVarAxiosArgs = await localVarAxiosParamCreator.trafficRecordsIndex(options);
|
|
13896
14233
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
13897
14234
|
},
|
|
14235
|
+
/**
|
|
14236
|
+
*
|
|
14237
|
+
* @param {string} [licensePlate]
|
|
14238
|
+
* @param {*} [options] Override http request option.
|
|
14239
|
+
* @throws {RequiredError}
|
|
14240
|
+
*/
|
|
14241
|
+
async vipLicensePlate(licensePlate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseVipLicensePlateResult>> {
|
|
14242
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.vipLicensePlate(licensePlate, options);
|
|
14243
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
14244
|
+
},
|
|
13898
14245
|
/**
|
|
13899
14246
|
*
|
|
13900
14247
|
* @param {string} id
|
|
@@ -14527,6 +14874,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
14527
14874
|
parkingTicketsV2AllDetails(xAccountId?: string, options?: any): AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData> {
|
|
14528
14875
|
return localVarFp.parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(axios, basePath));
|
|
14529
14876
|
},
|
|
14877
|
+
/**
|
|
14878
|
+
*
|
|
14879
|
+
* @param {string} accountId
|
|
14880
|
+
* @param {*} [options] Override http request option.
|
|
14881
|
+
* @throws {RequiredError}
|
|
14882
|
+
*/
|
|
14883
|
+
parkingTicketsV2CmsAllDetails(accountId: string, options?: any): AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData> {
|
|
14884
|
+
return localVarFp.parkingTicketsV2CmsAllDetails(accountId, options).then((request) => request(axios, basePath));
|
|
14885
|
+
},
|
|
14530
14886
|
/**
|
|
14531
14887
|
*
|
|
14532
14888
|
* @param {string} id
|
|
@@ -14728,6 +15084,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
14728
15084
|
trafficRecordsIndex(options?: any): AxiosPromise<WrappedResponseTrafficRecordsIndexResponseData> {
|
|
14729
15085
|
return localVarFp.trafficRecordsIndex(options).then((request) => request(axios, basePath));
|
|
14730
15086
|
},
|
|
15087
|
+
/**
|
|
15088
|
+
*
|
|
15089
|
+
* @param {string} [licensePlate]
|
|
15090
|
+
* @param {*} [options] Override http request option.
|
|
15091
|
+
* @throws {RequiredError}
|
|
15092
|
+
*/
|
|
15093
|
+
vipLicensePlate(licensePlate?: string, options?: any): AxiosPromise<WrappedResponseVipLicensePlateResult> {
|
|
15094
|
+
return localVarFp.vipLicensePlate(licensePlate, options).then((request) => request(axios, basePath));
|
|
15095
|
+
},
|
|
14731
15096
|
/**
|
|
14732
15097
|
*
|
|
14733
15098
|
* @param {string} id
|
|
@@ -15458,6 +15823,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
15458
15823
|
return DefaultApiFp(this.configuration).parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
15459
15824
|
}
|
|
15460
15825
|
|
|
15826
|
+
/**
|
|
15827
|
+
*
|
|
15828
|
+
* @param {string} accountId
|
|
15829
|
+
* @param {*} [options] Override http request option.
|
|
15830
|
+
* @throws {RequiredError}
|
|
15831
|
+
* @memberof DefaultApi
|
|
15832
|
+
*/
|
|
15833
|
+
public parkingTicketsV2CmsAllDetails(accountId: string, options?: AxiosRequestConfig) {
|
|
15834
|
+
return DefaultApiFp(this.configuration).parkingTicketsV2CmsAllDetails(accountId, options).then((request) => request(this.axios, this.basePath));
|
|
15835
|
+
}
|
|
15836
|
+
|
|
15461
15837
|
/**
|
|
15462
15838
|
*
|
|
15463
15839
|
* @param {string} id
|
|
@@ -15699,6 +16075,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
15699
16075
|
return DefaultApiFp(this.configuration).trafficRecordsIndex(options).then((request) => request(this.axios, this.basePath));
|
|
15700
16076
|
}
|
|
15701
16077
|
|
|
16078
|
+
/**
|
|
16079
|
+
*
|
|
16080
|
+
* @param {string} [licensePlate]
|
|
16081
|
+
* @param {*} [options] Override http request option.
|
|
16082
|
+
* @throws {RequiredError}
|
|
16083
|
+
* @memberof DefaultApi
|
|
16084
|
+
*/
|
|
16085
|
+
public vipLicensePlate(licensePlate?: string, options?: AxiosRequestConfig) {
|
|
16086
|
+
return DefaultApiFp(this.configuration).vipLicensePlate(licensePlate, options).then((request) => request(this.axios, this.basePath));
|
|
16087
|
+
}
|
|
16088
|
+
|
|
15702
16089
|
/**
|
|
15703
16090
|
*
|
|
15704
16091
|
* @param {string} id
|
package/api/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ob-bms
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.4.
|
|
7
|
+
* The version of the OpenAPI document: 2.4.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/api/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ob-bms
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.4.
|
|
7
|
+
* The version of the OpenAPI document: 2.4.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/api/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ob-bms
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.4.
|
|
7
|
+
* The version of the OpenAPI document: 2.4.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/api/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ob-bms
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.4.
|
|
7
|
+
* The version of the OpenAPI document: 2.4.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|