ob-bms-sdk 0.0.121 → 0.0.123
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 +708 -94
- 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 +547 -89
- package/dist/api/api.js +268 -5
- 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:
|
|
7
|
+
* The version of the OpenAPI document: 2.4.0
|
|
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
|
|
@@ -1602,6 +1678,31 @@ export interface ErrorUpsertHoliday {
|
|
|
1602
1678
|
*/
|
|
1603
1679
|
'error': string;
|
|
1604
1680
|
}
|
|
1681
|
+
/**
|
|
1682
|
+
*
|
|
1683
|
+
* @export
|
|
1684
|
+
* @interface FSLocationData
|
|
1685
|
+
*/
|
|
1686
|
+
export interface FSLocationData {
|
|
1687
|
+
/**
|
|
1688
|
+
*
|
|
1689
|
+
* @type {number}
|
|
1690
|
+
* @memberof FSLocationData
|
|
1691
|
+
*/
|
|
1692
|
+
'locationID': number;
|
|
1693
|
+
/**
|
|
1694
|
+
*
|
|
1695
|
+
* @type {string}
|
|
1696
|
+
* @memberof FSLocationData
|
|
1697
|
+
*/
|
|
1698
|
+
'locationName': string;
|
|
1699
|
+
/**
|
|
1700
|
+
*
|
|
1701
|
+
* @type {boolean}
|
|
1702
|
+
* @memberof FSLocationData
|
|
1703
|
+
*/
|
|
1704
|
+
'isDefault': boolean;
|
|
1705
|
+
}
|
|
1605
1706
|
/**
|
|
1606
1707
|
*
|
|
1607
1708
|
* @export
|
|
@@ -1691,98 +1792,11 @@ export interface FindVisitorsByEmailInput {
|
|
|
1691
1792
|
export interface FindVisitorsByEmailResponse {
|
|
1692
1793
|
/**
|
|
1693
1794
|
*
|
|
1694
|
-
* @type {Array<
|
|
1795
|
+
* @type {Array<Pass>}
|
|
1695
1796
|
* @memberof FindVisitorsByEmailResponse
|
|
1696
1797
|
*/
|
|
1697
|
-
'data': Array<
|
|
1698
|
-
}
|
|
1699
|
-
/**
|
|
1700
|
-
*
|
|
1701
|
-
* @export
|
|
1702
|
-
* @interface FindVisitorsByEmailResponseDataInner
|
|
1703
|
-
*/
|
|
1704
|
-
export interface FindVisitorsByEmailResponseDataInner {
|
|
1705
|
-
/**
|
|
1706
|
-
*
|
|
1707
|
-
* @type {PrismaJsonValue}
|
|
1708
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1709
|
-
*/
|
|
1710
|
-
'metadata_resident': PrismaJsonValue | null;
|
|
1711
|
-
/**
|
|
1712
|
-
*
|
|
1713
|
-
* @type {boolean}
|
|
1714
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1715
|
-
*/
|
|
1716
|
-
'consent': boolean | null;
|
|
1717
|
-
/**
|
|
1718
|
-
*
|
|
1719
|
-
* @type {string}
|
|
1720
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1721
|
-
*/
|
|
1722
|
-
'updated_at': string;
|
|
1723
|
-
/**
|
|
1724
|
-
*
|
|
1725
|
-
* @type {string}
|
|
1726
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1727
|
-
*/
|
|
1728
|
-
'created_at': string;
|
|
1729
|
-
/**
|
|
1730
|
-
*
|
|
1731
|
-
* @type {string}
|
|
1732
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1733
|
-
*/
|
|
1734
|
-
'status': FindVisitorsByEmailResponseDataInnerStatusEnum;
|
|
1735
|
-
/**
|
|
1736
|
-
*
|
|
1737
|
-
* @type {string}
|
|
1738
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1739
|
-
*/
|
|
1740
|
-
'issuer_id': string;
|
|
1741
|
-
/**
|
|
1742
|
-
*
|
|
1743
|
-
* @type {string}
|
|
1744
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1745
|
-
*/
|
|
1746
|
-
'visit_schedule_id': string;
|
|
1747
|
-
/**
|
|
1748
|
-
*
|
|
1749
|
-
* @type {string}
|
|
1750
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1751
|
-
*/
|
|
1752
|
-
'visitor_id': string;
|
|
1753
|
-
/**
|
|
1754
|
-
*
|
|
1755
|
-
* @type {string}
|
|
1756
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1757
|
-
*/
|
|
1758
|
-
'to': string;
|
|
1759
|
-
/**
|
|
1760
|
-
*
|
|
1761
|
-
* @type {string}
|
|
1762
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1763
|
-
*/
|
|
1764
|
-
'from': string;
|
|
1765
|
-
/**
|
|
1766
|
-
*
|
|
1767
|
-
* @type {string}
|
|
1768
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1769
|
-
*/
|
|
1770
|
-
'uid': string | null;
|
|
1771
|
-
/**
|
|
1772
|
-
*
|
|
1773
|
-
* @type {string}
|
|
1774
|
-
* @memberof FindVisitorsByEmailResponseDataInner
|
|
1775
|
-
*/
|
|
1776
|
-
'id': string;
|
|
1798
|
+
'data': Array<Pass>;
|
|
1777
1799
|
}
|
|
1778
|
-
|
|
1779
|
-
export const FindVisitorsByEmailResponseDataInnerStatusEnum = {
|
|
1780
|
-
Pending: 'pending',
|
|
1781
|
-
Confirmed: 'confirmed'
|
|
1782
|
-
} as const;
|
|
1783
|
-
|
|
1784
|
-
export type FindVisitorsByEmailResponseDataInnerStatusEnum = typeof FindVisitorsByEmailResponseDataInnerStatusEnum[keyof typeof FindVisitorsByEmailResponseDataInnerStatusEnum];
|
|
1785
|
-
|
|
1786
1800
|
/**
|
|
1787
1801
|
*
|
|
1788
1802
|
* @export
|
|
@@ -2479,6 +2493,37 @@ export interface MemberAccessLog {
|
|
|
2479
2493
|
*/
|
|
2480
2494
|
'terminalPosition': number;
|
|
2481
2495
|
}
|
|
2496
|
+
/**
|
|
2497
|
+
*
|
|
2498
|
+
* @export
|
|
2499
|
+
* @interface MemberAccountIdInterface
|
|
2500
|
+
*/
|
|
2501
|
+
export interface MemberAccountIdInterface {
|
|
2502
|
+
/**
|
|
2503
|
+
*
|
|
2504
|
+
* @type {string}
|
|
2505
|
+
* @memberof MemberAccountIdInterface
|
|
2506
|
+
*/
|
|
2507
|
+
'id': string;
|
|
2508
|
+
/**
|
|
2509
|
+
*
|
|
2510
|
+
* @type {string}
|
|
2511
|
+
* @memberof MemberAccountIdInterface
|
|
2512
|
+
*/
|
|
2513
|
+
'uid': string;
|
|
2514
|
+
/**
|
|
2515
|
+
*
|
|
2516
|
+
* @type {string}
|
|
2517
|
+
* @memberof MemberAccountIdInterface
|
|
2518
|
+
*/
|
|
2519
|
+
'account_id'?: string | null;
|
|
2520
|
+
/**
|
|
2521
|
+
*
|
|
2522
|
+
* @type {Array<string>}
|
|
2523
|
+
* @memberof MemberAccountIdInterface
|
|
2524
|
+
*/
|
|
2525
|
+
'tenant_name': Array<string> | null;
|
|
2526
|
+
}
|
|
2482
2527
|
/**
|
|
2483
2528
|
*
|
|
2484
2529
|
* @export
|
|
@@ -4241,6 +4286,87 @@ export interface ParkingVisitorAccessLog {
|
|
|
4241
4286
|
*/
|
|
4242
4287
|
'terminalPosition': number;
|
|
4243
4288
|
}
|
|
4289
|
+
/**
|
|
4290
|
+
*
|
|
4291
|
+
* @export
|
|
4292
|
+
* @interface Pass
|
|
4293
|
+
*/
|
|
4294
|
+
export interface Pass {
|
|
4295
|
+
/**
|
|
4296
|
+
*
|
|
4297
|
+
* @type {string}
|
|
4298
|
+
* @memberof Pass
|
|
4299
|
+
*/
|
|
4300
|
+
'id': string;
|
|
4301
|
+
/**
|
|
4302
|
+
*
|
|
4303
|
+
* @type {string}
|
|
4304
|
+
* @memberof Pass
|
|
4305
|
+
*/
|
|
4306
|
+
'uid': string | null;
|
|
4307
|
+
/**
|
|
4308
|
+
*
|
|
4309
|
+
* @type {string}
|
|
4310
|
+
* @memberof Pass
|
|
4311
|
+
*/
|
|
4312
|
+
'from': string;
|
|
4313
|
+
/**
|
|
4314
|
+
*
|
|
4315
|
+
* @type {string}
|
|
4316
|
+
* @memberof Pass
|
|
4317
|
+
*/
|
|
4318
|
+
'to': string;
|
|
4319
|
+
/**
|
|
4320
|
+
*
|
|
4321
|
+
* @type {string}
|
|
4322
|
+
* @memberof Pass
|
|
4323
|
+
*/
|
|
4324
|
+
'visitor_id': string;
|
|
4325
|
+
/**
|
|
4326
|
+
*
|
|
4327
|
+
* @type {string}
|
|
4328
|
+
* @memberof Pass
|
|
4329
|
+
*/
|
|
4330
|
+
'visit_schedule_id': string;
|
|
4331
|
+
/**
|
|
4332
|
+
*
|
|
4333
|
+
* @type {string}
|
|
4334
|
+
* @memberof Pass
|
|
4335
|
+
*/
|
|
4336
|
+
'issuer_id': string;
|
|
4337
|
+
/**
|
|
4338
|
+
*
|
|
4339
|
+
* @type {PassStatus}
|
|
4340
|
+
* @memberof Pass
|
|
4341
|
+
*/
|
|
4342
|
+
'status': PassStatus;
|
|
4343
|
+
/**
|
|
4344
|
+
*
|
|
4345
|
+
* @type {string}
|
|
4346
|
+
* @memberof Pass
|
|
4347
|
+
*/
|
|
4348
|
+
'created_at': string;
|
|
4349
|
+
/**
|
|
4350
|
+
*
|
|
4351
|
+
* @type {string}
|
|
4352
|
+
* @memberof Pass
|
|
4353
|
+
*/
|
|
4354
|
+
'updated_at': string;
|
|
4355
|
+
/**
|
|
4356
|
+
*
|
|
4357
|
+
* @type {boolean}
|
|
4358
|
+
* @memberof Pass
|
|
4359
|
+
*/
|
|
4360
|
+
'consent': boolean | null;
|
|
4361
|
+
/**
|
|
4362
|
+
*
|
|
4363
|
+
* @type {PrismaJsonValue}
|
|
4364
|
+
* @memberof Pass
|
|
4365
|
+
*/
|
|
4366
|
+
'metadata_resident': PrismaJsonValue | null;
|
|
4367
|
+
}
|
|
4368
|
+
|
|
4369
|
+
|
|
4244
4370
|
/**
|
|
4245
4371
|
*
|
|
4246
4372
|
* @export
|
|
@@ -4440,6 +4566,20 @@ export interface PassListResult {
|
|
|
4440
4566
|
*/
|
|
4441
4567
|
'pagination': Pagination;
|
|
4442
4568
|
}
|
|
4569
|
+
/**
|
|
4570
|
+
*
|
|
4571
|
+
* @export
|
|
4572
|
+
* @enum {string}
|
|
4573
|
+
*/
|
|
4574
|
+
|
|
4575
|
+
export const PassStatus = {
|
|
4576
|
+
Pending: 'pending',
|
|
4577
|
+
Confirmed: 'confirmed'
|
|
4578
|
+
} as const;
|
|
4579
|
+
|
|
4580
|
+
export type PassStatus = typeof PassStatus[keyof typeof PassStatus];
|
|
4581
|
+
|
|
4582
|
+
|
|
4443
4583
|
/**
|
|
4444
4584
|
*
|
|
4445
4585
|
* @export
|
|
@@ -4703,10 +4843,10 @@ export interface PersonData {
|
|
|
4703
4843
|
'emails': Array<string>;
|
|
4704
4844
|
/**
|
|
4705
4845
|
*
|
|
4706
|
-
* @type {Array<
|
|
4846
|
+
* @type {Array<FSLocationData>}
|
|
4707
4847
|
* @memberof PersonData
|
|
4708
4848
|
*/
|
|
4709
|
-
'locations': Array<
|
|
4849
|
+
'locations': Array<FSLocationData>;
|
|
4710
4850
|
/**
|
|
4711
4851
|
*
|
|
4712
4852
|
* @type {string}
|
|
@@ -4821,6 +4961,69 @@ export interface RateDetail {
|
|
|
4821
4961
|
*/
|
|
4822
4962
|
'en': string;
|
|
4823
4963
|
}
|
|
4964
|
+
/**
|
|
4965
|
+
*
|
|
4966
|
+
* @export
|
|
4967
|
+
* @interface RegisteredVehicleResponse
|
|
4968
|
+
*/
|
|
4969
|
+
export interface RegisteredVehicleResponse {
|
|
4970
|
+
/**
|
|
4971
|
+
*
|
|
4972
|
+
* @type {boolean}
|
|
4973
|
+
* @memberof RegisteredVehicleResponse
|
|
4974
|
+
*/
|
|
4975
|
+
'is_vip': boolean;
|
|
4976
|
+
/**
|
|
4977
|
+
*
|
|
4978
|
+
* @type {string}
|
|
4979
|
+
* @memberof RegisteredVehicleResponse
|
|
4980
|
+
*/
|
|
4981
|
+
'vehicle_model_id'?: string | null;
|
|
4982
|
+
/**
|
|
4983
|
+
*
|
|
4984
|
+
* @type {string}
|
|
4985
|
+
* @memberof RegisteredVehicleResponse
|
|
4986
|
+
*/
|
|
4987
|
+
'vehicle_brand_id'?: string | null;
|
|
4988
|
+
/**
|
|
4989
|
+
*
|
|
4990
|
+
* @type {EngineType}
|
|
4991
|
+
* @memberof RegisteredVehicleResponse
|
|
4992
|
+
*/
|
|
4993
|
+
'engine_type'?: EngineType | null;
|
|
4994
|
+
/**
|
|
4995
|
+
*
|
|
4996
|
+
* @type {string}
|
|
4997
|
+
* @memberof RegisteredVehicleResponse
|
|
4998
|
+
*/
|
|
4999
|
+
'plate_province'?: string | null;
|
|
5000
|
+
/**
|
|
5001
|
+
*
|
|
5002
|
+
* @type {string}
|
|
5003
|
+
* @memberof RegisteredVehicleResponse
|
|
5004
|
+
*/
|
|
5005
|
+
'plate_no': string;
|
|
5006
|
+
/**
|
|
5007
|
+
*
|
|
5008
|
+
* @type {string}
|
|
5009
|
+
* @memberof RegisteredVehicleResponse
|
|
5010
|
+
*/
|
|
5011
|
+
'account_id': string;
|
|
5012
|
+
/**
|
|
5013
|
+
*
|
|
5014
|
+
* @type {VehicleType}
|
|
5015
|
+
* @memberof RegisteredVehicleResponse
|
|
5016
|
+
*/
|
|
5017
|
+
'vehicle_type'?: VehicleType | null;
|
|
5018
|
+
/**
|
|
5019
|
+
*
|
|
5020
|
+
* @type {string}
|
|
5021
|
+
* @memberof RegisteredVehicleResponse
|
|
5022
|
+
*/
|
|
5023
|
+
'id': string;
|
|
5024
|
+
}
|
|
5025
|
+
|
|
5026
|
+
|
|
4824
5027
|
/**
|
|
4825
5028
|
*
|
|
4826
5029
|
* @export
|
|
@@ -7172,6 +7375,52 @@ export interface ValetStatusPayloadDetailStaffConfirmParked {
|
|
|
7172
7375
|
*/
|
|
7173
7376
|
'id': number;
|
|
7174
7377
|
}
|
|
7378
|
+
/**
|
|
7379
|
+
*
|
|
7380
|
+
* @export
|
|
7381
|
+
* @enum {string}
|
|
7382
|
+
*/
|
|
7383
|
+
|
|
7384
|
+
export const VehicleType = {
|
|
7385
|
+
Car: 'CAR',
|
|
7386
|
+
Motorcycle: 'MOTORCYCLE'
|
|
7387
|
+
} as const;
|
|
7388
|
+
|
|
7389
|
+
export type VehicleType = typeof VehicleType[keyof typeof VehicleType];
|
|
7390
|
+
|
|
7391
|
+
|
|
7392
|
+
/**
|
|
7393
|
+
*
|
|
7394
|
+
* @export
|
|
7395
|
+
* @interface VipLicensePlateQuery
|
|
7396
|
+
*/
|
|
7397
|
+
export interface VipLicensePlateQuery {
|
|
7398
|
+
/**
|
|
7399
|
+
*
|
|
7400
|
+
* @type {string}
|
|
7401
|
+
* @memberof VipLicensePlateQuery
|
|
7402
|
+
*/
|
|
7403
|
+
'licensePlate'?: string;
|
|
7404
|
+
}
|
|
7405
|
+
/**
|
|
7406
|
+
*
|
|
7407
|
+
* @export
|
|
7408
|
+
* @interface VipLicensePlateResult
|
|
7409
|
+
*/
|
|
7410
|
+
export interface VipLicensePlateResult {
|
|
7411
|
+
/**
|
|
7412
|
+
*
|
|
7413
|
+
* @type {RegisteredVehicleResponse}
|
|
7414
|
+
* @memberof VipLicensePlateResult
|
|
7415
|
+
*/
|
|
7416
|
+
'result': RegisteredVehicleResponse | null;
|
|
7417
|
+
/**
|
|
7418
|
+
*
|
|
7419
|
+
* @type {Array<string>}
|
|
7420
|
+
* @memberof VipLicensePlateResult
|
|
7421
|
+
*/
|
|
7422
|
+
'error': Array<string>;
|
|
7423
|
+
}
|
|
7175
7424
|
/**
|
|
7176
7425
|
*
|
|
7177
7426
|
* @export
|
|
@@ -7520,6 +7769,12 @@ export interface VisitorSchedulePasses {
|
|
|
7520
7769
|
* @memberof VisitorSchedulePasses
|
|
7521
7770
|
*/
|
|
7522
7771
|
'updated_at': string;
|
|
7772
|
+
/**
|
|
7773
|
+
*
|
|
7774
|
+
* @type {string}
|
|
7775
|
+
* @memberof VisitorSchedulePasses
|
|
7776
|
+
*/
|
|
7777
|
+
'deleted_at': string | null;
|
|
7523
7778
|
/**
|
|
7524
7779
|
*
|
|
7525
7780
|
* @type {Array<VisitorScheduleTokens>}
|
|
@@ -7782,13 +8037,37 @@ export interface WebhookCreateBodyPayload {
|
|
|
7782
8037
|
* @type {string}
|
|
7783
8038
|
* @memberof WebhookCreateBodyPayload
|
|
7784
8039
|
*/
|
|
7785
|
-
'deviceProfileId': string | null;
|
|
8040
|
+
'deviceProfileId': string | null;
|
|
8041
|
+
/**
|
|
8042
|
+
*
|
|
8043
|
+
* @type {string}
|
|
8044
|
+
* @memberof WebhookCreateBodyPayload
|
|
8045
|
+
*/
|
|
8046
|
+
'referenceNumber': string;
|
|
8047
|
+
/**
|
|
8048
|
+
*
|
|
8049
|
+
* @type {string}
|
|
8050
|
+
* @memberof WebhookCreateBodyPayload
|
|
8051
|
+
*/
|
|
8052
|
+
'logId': string;
|
|
8053
|
+
/**
|
|
8054
|
+
*
|
|
8055
|
+
* @type {string}
|
|
8056
|
+
* @memberof WebhookCreateBodyPayload
|
|
8057
|
+
*/
|
|
8058
|
+
'plateNo': string;
|
|
8059
|
+
/**
|
|
8060
|
+
*
|
|
8061
|
+
* @type {string}
|
|
8062
|
+
* @memberof WebhookCreateBodyPayload
|
|
8063
|
+
*/
|
|
8064
|
+
'provinceName'?: string;
|
|
7786
8065
|
/**
|
|
7787
8066
|
*
|
|
7788
8067
|
* @type {string}
|
|
7789
8068
|
* @memberof WebhookCreateBodyPayload
|
|
7790
8069
|
*/
|
|
7791
|
-
'
|
|
8070
|
+
'personId'?: string;
|
|
7792
8071
|
}
|
|
7793
8072
|
/**
|
|
7794
8073
|
*
|
|
@@ -8569,6 +8848,50 @@ export interface WrappedResponseLocationIndexResponse {
|
|
|
8569
8848
|
*/
|
|
8570
8849
|
export interface WrappedResponseLocationIndexResponseData {
|
|
8571
8850
|
}
|
|
8851
|
+
/**
|
|
8852
|
+
*
|
|
8853
|
+
* @export
|
|
8854
|
+
* @interface WrappedResponseMemberAccountIdInterface
|
|
8855
|
+
*/
|
|
8856
|
+
export interface WrappedResponseMemberAccountIdInterface {
|
|
8857
|
+
/**
|
|
8858
|
+
*
|
|
8859
|
+
* @type {WrappedResponseMemberAccountIdInterfaceData}
|
|
8860
|
+
* @memberof WrappedResponseMemberAccountIdInterface
|
|
8861
|
+
*/
|
|
8862
|
+
'data': WrappedResponseMemberAccountIdInterfaceData | null;
|
|
8863
|
+
}
|
|
8864
|
+
/**
|
|
8865
|
+
*
|
|
8866
|
+
* @export
|
|
8867
|
+
* @interface WrappedResponseMemberAccountIdInterfaceData
|
|
8868
|
+
*/
|
|
8869
|
+
export interface WrappedResponseMemberAccountIdInterfaceData {
|
|
8870
|
+
/**
|
|
8871
|
+
*
|
|
8872
|
+
* @type {string}
|
|
8873
|
+
* @memberof WrappedResponseMemberAccountIdInterfaceData
|
|
8874
|
+
*/
|
|
8875
|
+
'id': string;
|
|
8876
|
+
/**
|
|
8877
|
+
*
|
|
8878
|
+
* @type {string}
|
|
8879
|
+
* @memberof WrappedResponseMemberAccountIdInterfaceData
|
|
8880
|
+
*/
|
|
8881
|
+
'uid': string;
|
|
8882
|
+
/**
|
|
8883
|
+
*
|
|
8884
|
+
* @type {string}
|
|
8885
|
+
* @memberof WrappedResponseMemberAccountIdInterfaceData
|
|
8886
|
+
*/
|
|
8887
|
+
'account_id'?: string | null;
|
|
8888
|
+
/**
|
|
8889
|
+
*
|
|
8890
|
+
* @type {Array<string>}
|
|
8891
|
+
* @memberof WrappedResponseMemberAccountIdInterfaceData
|
|
8892
|
+
*/
|
|
8893
|
+
'tenant_name': Array<string> | null;
|
|
8894
|
+
}
|
|
8572
8895
|
/**
|
|
8573
8896
|
*
|
|
8574
8897
|
* @export
|
|
@@ -9675,6 +9998,38 @@ export interface WrappedResponseValetStationArray {
|
|
|
9675
9998
|
*/
|
|
9676
9999
|
export interface WrappedResponseValetStationArrayData {
|
|
9677
10000
|
}
|
|
10001
|
+
/**
|
|
10002
|
+
*
|
|
10003
|
+
* @export
|
|
10004
|
+
* @interface WrappedResponseVipLicensePlateResult
|
|
10005
|
+
*/
|
|
10006
|
+
export interface WrappedResponseVipLicensePlateResult {
|
|
10007
|
+
/**
|
|
10008
|
+
*
|
|
10009
|
+
* @type {WrappedResponseVipLicensePlateResultData}
|
|
10010
|
+
* @memberof WrappedResponseVipLicensePlateResult
|
|
10011
|
+
*/
|
|
10012
|
+
'data': WrappedResponseVipLicensePlateResultData | null;
|
|
10013
|
+
}
|
|
10014
|
+
/**
|
|
10015
|
+
*
|
|
10016
|
+
* @export
|
|
10017
|
+
* @interface WrappedResponseVipLicensePlateResultData
|
|
10018
|
+
*/
|
|
10019
|
+
export interface WrappedResponseVipLicensePlateResultData {
|
|
10020
|
+
/**
|
|
10021
|
+
*
|
|
10022
|
+
* @type {RegisteredVehicleResponse}
|
|
10023
|
+
* @memberof WrappedResponseVipLicensePlateResultData
|
|
10024
|
+
*/
|
|
10025
|
+
'result': RegisteredVehicleResponse | null;
|
|
10026
|
+
/**
|
|
10027
|
+
*
|
|
10028
|
+
* @type {Array<string>}
|
|
10029
|
+
* @memberof WrappedResponseVipLicensePlateResultData
|
|
10030
|
+
*/
|
|
10031
|
+
'error': Array<string>;
|
|
10032
|
+
}
|
|
9678
10033
|
/**
|
|
9679
10034
|
*
|
|
9680
10035
|
* @export
|
|
@@ -10678,6 +11033,75 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
10678
11033
|
|
|
10679
11034
|
|
|
10680
11035
|
|
|
11036
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11037
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11038
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
11039
|
+
|
|
11040
|
+
return {
|
|
11041
|
+
url: toPathString(localVarUrlObj),
|
|
11042
|
+
options: localVarRequestOptions,
|
|
11043
|
+
};
|
|
11044
|
+
},
|
|
11045
|
+
/**
|
|
11046
|
+
*
|
|
11047
|
+
* @param {string} accountId
|
|
11048
|
+
* @param {*} [options] Override http request option.
|
|
11049
|
+
* @throws {RequiredError}
|
|
11050
|
+
*/
|
|
11051
|
+
membersAccountId: async (accountId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
11052
|
+
// verify required parameter 'accountId' is not null or undefined
|
|
11053
|
+
assertParamExists('membersAccountId', 'accountId', accountId)
|
|
11054
|
+
const localVarPath = `/members/account-id/{account_id}`
|
|
11055
|
+
.replace(`{${"account_id"}}`, encodeURIComponent(String(accountId)));
|
|
11056
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11057
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11058
|
+
let baseOptions;
|
|
11059
|
+
if (configuration) {
|
|
11060
|
+
baseOptions = configuration.baseOptions;
|
|
11061
|
+
}
|
|
11062
|
+
|
|
11063
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
11064
|
+
const localVarHeaderParameter = {} as any;
|
|
11065
|
+
const localVarQueryParameter = {} as any;
|
|
11066
|
+
|
|
11067
|
+
|
|
11068
|
+
|
|
11069
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11070
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11071
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
11072
|
+
|
|
11073
|
+
return {
|
|
11074
|
+
url: toPathString(localVarUrlObj),
|
|
11075
|
+
options: localVarRequestOptions,
|
|
11076
|
+
};
|
|
11077
|
+
},
|
|
11078
|
+
/**
|
|
11079
|
+
*
|
|
11080
|
+
* @param {string} xAccountId
|
|
11081
|
+
* @param {*} [options] Override http request option.
|
|
11082
|
+
* @throws {RequiredError}
|
|
11083
|
+
*/
|
|
11084
|
+
membersByAccountId: async (xAccountId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
11085
|
+
// verify required parameter 'xAccountId' is not null or undefined
|
|
11086
|
+
assertParamExists('membersByAccountId', 'xAccountId', xAccountId)
|
|
11087
|
+
const localVarPath = `/members/by-account-id`;
|
|
11088
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11089
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11090
|
+
let baseOptions;
|
|
11091
|
+
if (configuration) {
|
|
11092
|
+
baseOptions = configuration.baseOptions;
|
|
11093
|
+
}
|
|
11094
|
+
|
|
11095
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
11096
|
+
const localVarHeaderParameter = {} as any;
|
|
11097
|
+
const localVarQueryParameter = {} as any;
|
|
11098
|
+
|
|
11099
|
+
if (xAccountId != null) {
|
|
11100
|
+
localVarHeaderParameter['x-account-id'] = String(xAccountId);
|
|
11101
|
+
}
|
|
11102
|
+
|
|
11103
|
+
|
|
11104
|
+
|
|
10681
11105
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10682
11106
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10683
11107
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -11766,6 +12190,42 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
11766
12190
|
|
|
11767
12191
|
|
|
11768
12192
|
|
|
12193
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12194
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12195
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
12196
|
+
|
|
12197
|
+
return {
|
|
12198
|
+
url: toPathString(localVarUrlObj),
|
|
12199
|
+
options: localVarRequestOptions,
|
|
12200
|
+
};
|
|
12201
|
+
},
|
|
12202
|
+
/**
|
|
12203
|
+
*
|
|
12204
|
+
* @param {string} accountId
|
|
12205
|
+
* @param {*} [options] Override http request option.
|
|
12206
|
+
* @throws {RequiredError}
|
|
12207
|
+
*/
|
|
12208
|
+
parkingTicketsV2CmsAllDetails: async (accountId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12209
|
+
// verify required parameter 'accountId' is not null or undefined
|
|
12210
|
+
assertParamExists('parkingTicketsV2CmsAllDetails', 'accountId', accountId)
|
|
12211
|
+
const localVarPath = `/v2/parking_tickets/cms/all_details`;
|
|
12212
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12213
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12214
|
+
let baseOptions;
|
|
12215
|
+
if (configuration) {
|
|
12216
|
+
baseOptions = configuration.baseOptions;
|
|
12217
|
+
}
|
|
12218
|
+
|
|
12219
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
12220
|
+
const localVarHeaderParameter = {} as any;
|
|
12221
|
+
const localVarQueryParameter = {} as any;
|
|
12222
|
+
|
|
12223
|
+
if (accountId !== undefined) {
|
|
12224
|
+
localVarQueryParameter['account_id'] = accountId;
|
|
12225
|
+
}
|
|
12226
|
+
|
|
12227
|
+
|
|
12228
|
+
|
|
11769
12229
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11770
12230
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11771
12231
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -12551,6 +13011,40 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
12551
13011
|
|
|
12552
13012
|
|
|
12553
13013
|
|
|
13014
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
13015
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
13016
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
13017
|
+
|
|
13018
|
+
return {
|
|
13019
|
+
url: toPathString(localVarUrlObj),
|
|
13020
|
+
options: localVarRequestOptions,
|
|
13021
|
+
};
|
|
13022
|
+
},
|
|
13023
|
+
/**
|
|
13024
|
+
*
|
|
13025
|
+
* @param {string} [licensePlate]
|
|
13026
|
+
* @param {*} [options] Override http request option.
|
|
13027
|
+
* @throws {RequiredError}
|
|
13028
|
+
*/
|
|
13029
|
+
vipLicensePlate: async (licensePlate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
13030
|
+
const localVarPath = `/integrations/fs/parking/vip-license-plate`;
|
|
13031
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
13032
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
13033
|
+
let baseOptions;
|
|
13034
|
+
if (configuration) {
|
|
13035
|
+
baseOptions = configuration.baseOptions;
|
|
13036
|
+
}
|
|
13037
|
+
|
|
13038
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
13039
|
+
const localVarHeaderParameter = {} as any;
|
|
13040
|
+
const localVarQueryParameter = {} as any;
|
|
13041
|
+
|
|
13042
|
+
if (licensePlate !== undefined) {
|
|
13043
|
+
localVarQueryParameter['licensePlate'] = licensePlate;
|
|
13044
|
+
}
|
|
13045
|
+
|
|
13046
|
+
|
|
13047
|
+
|
|
12554
13048
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12555
13049
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12556
13050
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -13133,6 +13627,26 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
13133
13627
|
const localVarAxiosArgs = await localVarAxiosParamCreator.locationsIndex(options);
|
|
13134
13628
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
13135
13629
|
},
|
|
13630
|
+
/**
|
|
13631
|
+
*
|
|
13632
|
+
* @param {string} accountId
|
|
13633
|
+
* @param {*} [options] Override http request option.
|
|
13634
|
+
* @throws {RequiredError}
|
|
13635
|
+
*/
|
|
13636
|
+
async membersAccountId(accountId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseMemberAccountIdInterface>> {
|
|
13637
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.membersAccountId(accountId, options);
|
|
13638
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
13639
|
+
},
|
|
13640
|
+
/**
|
|
13641
|
+
*
|
|
13642
|
+
* @param {string} xAccountId
|
|
13643
|
+
* @param {*} [options] Override http request option.
|
|
13644
|
+
* @throws {RequiredError}
|
|
13645
|
+
*/
|
|
13646
|
+
async membersByAccountId(xAccountId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseMemberIndexInterfaceArrayOrNull>> {
|
|
13647
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.membersByAccountId(xAccountId, options);
|
|
13648
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
13649
|
+
},
|
|
13136
13650
|
/**
|
|
13137
13651
|
*
|
|
13138
13652
|
* @param {string} memberId
|
|
@@ -13427,6 +13941,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
13427
13941
|
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsV2AllDetails(xAccountId, options);
|
|
13428
13942
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
13429
13943
|
},
|
|
13944
|
+
/**
|
|
13945
|
+
*
|
|
13946
|
+
* @param {string} accountId
|
|
13947
|
+
* @param {*} [options] Override http request option.
|
|
13948
|
+
* @throws {RequiredError}
|
|
13949
|
+
*/
|
|
13950
|
+
async parkingTicketsV2CmsAllDetails(accountId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData>> {
|
|
13951
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsV2CmsAllDetails(accountId, options);
|
|
13952
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
13953
|
+
},
|
|
13430
13954
|
/**
|
|
13431
13955
|
*
|
|
13432
13956
|
* @param {string} id
|
|
@@ -13648,6 +14172,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
13648
14172
|
const localVarAxiosArgs = await localVarAxiosParamCreator.trafficRecordsIndex(options);
|
|
13649
14173
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
13650
14174
|
},
|
|
14175
|
+
/**
|
|
14176
|
+
*
|
|
14177
|
+
* @param {string} [licensePlate]
|
|
14178
|
+
* @param {*} [options] Override http request option.
|
|
14179
|
+
* @throws {RequiredError}
|
|
14180
|
+
*/
|
|
14181
|
+
async vipLicensePlate(licensePlate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseVipLicensePlateResult>> {
|
|
14182
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.vipLicensePlate(licensePlate, options);
|
|
14183
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
14184
|
+
},
|
|
13651
14185
|
/**
|
|
13652
14186
|
*
|
|
13653
14187
|
* @param {string} id
|
|
@@ -13993,6 +14527,24 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
13993
14527
|
locationsIndex(options?: any): AxiosPromise<WrappedResponseLocationIndexResponse> {
|
|
13994
14528
|
return localVarFp.locationsIndex(options).then((request) => request(axios, basePath));
|
|
13995
14529
|
},
|
|
14530
|
+
/**
|
|
14531
|
+
*
|
|
14532
|
+
* @param {string} accountId
|
|
14533
|
+
* @param {*} [options] Override http request option.
|
|
14534
|
+
* @throws {RequiredError}
|
|
14535
|
+
*/
|
|
14536
|
+
membersAccountId(accountId: string, options?: any): AxiosPromise<WrappedResponseMemberAccountIdInterface> {
|
|
14537
|
+
return localVarFp.membersAccountId(accountId, options).then((request) => request(axios, basePath));
|
|
14538
|
+
},
|
|
14539
|
+
/**
|
|
14540
|
+
*
|
|
14541
|
+
* @param {string} xAccountId
|
|
14542
|
+
* @param {*} [options] Override http request option.
|
|
14543
|
+
* @throws {RequiredError}
|
|
14544
|
+
*/
|
|
14545
|
+
membersByAccountId(xAccountId: string, options?: any): AxiosPromise<WrappedResponseMemberIndexInterfaceArrayOrNull> {
|
|
14546
|
+
return localVarFp.membersByAccountId(xAccountId, options).then((request) => request(axios, basePath));
|
|
14547
|
+
},
|
|
13996
14548
|
/**
|
|
13997
14549
|
*
|
|
13998
14550
|
* @param {string} memberId
|
|
@@ -14262,6 +14814,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
14262
14814
|
parkingTicketsV2AllDetails(xAccountId?: string, options?: any): AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData> {
|
|
14263
14815
|
return localVarFp.parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(axios, basePath));
|
|
14264
14816
|
},
|
|
14817
|
+
/**
|
|
14818
|
+
*
|
|
14819
|
+
* @param {string} accountId
|
|
14820
|
+
* @param {*} [options] Override http request option.
|
|
14821
|
+
* @throws {RequiredError}
|
|
14822
|
+
*/
|
|
14823
|
+
parkingTicketsV2CmsAllDetails(accountId: string, options?: any): AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData> {
|
|
14824
|
+
return localVarFp.parkingTicketsV2CmsAllDetails(accountId, options).then((request) => request(axios, basePath));
|
|
14825
|
+
},
|
|
14265
14826
|
/**
|
|
14266
14827
|
*
|
|
14267
14828
|
* @param {string} id
|
|
@@ -14463,6 +15024,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
14463
15024
|
trafficRecordsIndex(options?: any): AxiosPromise<WrappedResponseTrafficRecordsIndexResponseData> {
|
|
14464
15025
|
return localVarFp.trafficRecordsIndex(options).then((request) => request(axios, basePath));
|
|
14465
15026
|
},
|
|
15027
|
+
/**
|
|
15028
|
+
*
|
|
15029
|
+
* @param {string} [licensePlate]
|
|
15030
|
+
* @param {*} [options] Override http request option.
|
|
15031
|
+
* @throws {RequiredError}
|
|
15032
|
+
*/
|
|
15033
|
+
vipLicensePlate(licensePlate?: string, options?: any): AxiosPromise<WrappedResponseVipLicensePlateResult> {
|
|
15034
|
+
return localVarFp.vipLicensePlate(licensePlate, options).then((request) => request(axios, basePath));
|
|
15035
|
+
},
|
|
14466
15036
|
/**
|
|
14467
15037
|
*
|
|
14468
15038
|
* @param {string} id
|
|
@@ -14852,6 +15422,28 @@ export class DefaultApi extends BaseAPI {
|
|
|
14852
15422
|
return DefaultApiFp(this.configuration).locationsIndex(options).then((request) => request(this.axios, this.basePath));
|
|
14853
15423
|
}
|
|
14854
15424
|
|
|
15425
|
+
/**
|
|
15426
|
+
*
|
|
15427
|
+
* @param {string} accountId
|
|
15428
|
+
* @param {*} [options] Override http request option.
|
|
15429
|
+
* @throws {RequiredError}
|
|
15430
|
+
* @memberof DefaultApi
|
|
15431
|
+
*/
|
|
15432
|
+
public membersAccountId(accountId: string, options?: AxiosRequestConfig) {
|
|
15433
|
+
return DefaultApiFp(this.configuration).membersAccountId(accountId, options).then((request) => request(this.axios, this.basePath));
|
|
15434
|
+
}
|
|
15435
|
+
|
|
15436
|
+
/**
|
|
15437
|
+
*
|
|
15438
|
+
* @param {string} xAccountId
|
|
15439
|
+
* @param {*} [options] Override http request option.
|
|
15440
|
+
* @throws {RequiredError}
|
|
15441
|
+
* @memberof DefaultApi
|
|
15442
|
+
*/
|
|
15443
|
+
public membersByAccountId(xAccountId: string, options?: AxiosRequestConfig) {
|
|
15444
|
+
return DefaultApiFp(this.configuration).membersByAccountId(xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
15445
|
+
}
|
|
15446
|
+
|
|
14855
15447
|
/**
|
|
14856
15448
|
*
|
|
14857
15449
|
* @param {string} memberId
|
|
@@ -15171,6 +15763,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
15171
15763
|
return DefaultApiFp(this.configuration).parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
15172
15764
|
}
|
|
15173
15765
|
|
|
15766
|
+
/**
|
|
15767
|
+
*
|
|
15768
|
+
* @param {string} accountId
|
|
15769
|
+
* @param {*} [options] Override http request option.
|
|
15770
|
+
* @throws {RequiredError}
|
|
15771
|
+
* @memberof DefaultApi
|
|
15772
|
+
*/
|
|
15773
|
+
public parkingTicketsV2CmsAllDetails(accountId: string, options?: AxiosRequestConfig) {
|
|
15774
|
+
return DefaultApiFp(this.configuration).parkingTicketsV2CmsAllDetails(accountId, options).then((request) => request(this.axios, this.basePath));
|
|
15775
|
+
}
|
|
15776
|
+
|
|
15174
15777
|
/**
|
|
15175
15778
|
*
|
|
15176
15779
|
* @param {string} id
|
|
@@ -15412,6 +16015,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
15412
16015
|
return DefaultApiFp(this.configuration).trafficRecordsIndex(options).then((request) => request(this.axios, this.basePath));
|
|
15413
16016
|
}
|
|
15414
16017
|
|
|
16018
|
+
/**
|
|
16019
|
+
*
|
|
16020
|
+
* @param {string} [licensePlate]
|
|
16021
|
+
* @param {*} [options] Override http request option.
|
|
16022
|
+
* @throws {RequiredError}
|
|
16023
|
+
* @memberof DefaultApi
|
|
16024
|
+
*/
|
|
16025
|
+
public vipLicensePlate(licensePlate?: string, options?: AxiosRequestConfig) {
|
|
16026
|
+
return DefaultApiFp(this.configuration).vipLicensePlate(licensePlate, options).then((request) => request(this.axios, this.basePath));
|
|
16027
|
+
}
|
|
16028
|
+
|
|
15415
16029
|
/**
|
|
15416
16030
|
*
|
|
15417
16031
|
* @param {string} id
|