ob-bms-sdk 0.0.98 → 0.0.99
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 +754 -34
- 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 +590 -13
- package/dist/api/api.js +243 -1
- 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/dist/api/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ob-bms
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.15
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -603,6 +603,37 @@ export interface AirQualityIndexIndicatorRange {
|
|
|
603
603
|
*/
|
|
604
604
|
'id': string;
|
|
605
605
|
}
|
|
606
|
+
/**
|
|
607
|
+
*
|
|
608
|
+
* @export
|
|
609
|
+
* @interface BaseIndexQuery
|
|
610
|
+
*/
|
|
611
|
+
export interface BaseIndexQuery {
|
|
612
|
+
/**
|
|
613
|
+
*
|
|
614
|
+
* @type {string}
|
|
615
|
+
* @memberof BaseIndexQuery
|
|
616
|
+
*/
|
|
617
|
+
'order_by'?: string;
|
|
618
|
+
/**
|
|
619
|
+
*
|
|
620
|
+
* @type {string}
|
|
621
|
+
* @memberof BaseIndexQuery
|
|
622
|
+
*/
|
|
623
|
+
'order_direction'?: string;
|
|
624
|
+
/**
|
|
625
|
+
*
|
|
626
|
+
* @type {number}
|
|
627
|
+
* @memberof BaseIndexQuery
|
|
628
|
+
*/
|
|
629
|
+
'page_number'?: number;
|
|
630
|
+
/**
|
|
631
|
+
*
|
|
632
|
+
* @type {number}
|
|
633
|
+
* @memberof BaseIndexQuery
|
|
634
|
+
*/
|
|
635
|
+
'page_size'?: number;
|
|
636
|
+
}
|
|
606
637
|
/**
|
|
607
638
|
*
|
|
608
639
|
* @export
|
|
@@ -1044,7 +1075,7 @@ export interface CreateVisitorBody {
|
|
|
1044
1075
|
* @type {string}
|
|
1045
1076
|
* @memberof CreateVisitorBody
|
|
1046
1077
|
*/
|
|
1047
|
-
'reference'
|
|
1078
|
+
'reference'?: string;
|
|
1048
1079
|
/**
|
|
1049
1080
|
*
|
|
1050
1081
|
* @type {string}
|
|
@@ -1099,7 +1130,7 @@ export interface CreateVisitorResponse {
|
|
|
1099
1130
|
* @type {string}
|
|
1100
1131
|
* @memberof CreateVisitorResponse
|
|
1101
1132
|
*/
|
|
1102
|
-
'reference': string;
|
|
1133
|
+
'reference': string | null;
|
|
1103
1134
|
/**
|
|
1104
1135
|
*
|
|
1105
1136
|
* @type {string}
|
|
@@ -1716,7 +1747,7 @@ export interface MemberAccessLog {
|
|
|
1716
1747
|
* @type {string}
|
|
1717
1748
|
* @memberof MemberAccessLog
|
|
1718
1749
|
*/
|
|
1719
|
-
'
|
|
1750
|
+
'transacDatetime': string;
|
|
1720
1751
|
/**
|
|
1721
1752
|
*
|
|
1722
1753
|
* @type {number}
|
|
@@ -1864,6 +1895,111 @@ export interface MemberIndexInterface {
|
|
|
1864
1895
|
*/
|
|
1865
1896
|
'can_preregister'?: boolean;
|
|
1866
1897
|
}
|
|
1898
|
+
/**
|
|
1899
|
+
*
|
|
1900
|
+
* @export
|
|
1901
|
+
* @interface MemberIndexQuery
|
|
1902
|
+
*/
|
|
1903
|
+
export interface MemberIndexQuery {
|
|
1904
|
+
/**
|
|
1905
|
+
*
|
|
1906
|
+
* @type {string}
|
|
1907
|
+
* @memberof MemberIndexQuery
|
|
1908
|
+
*/
|
|
1909
|
+
'order_by'?: string;
|
|
1910
|
+
/**
|
|
1911
|
+
*
|
|
1912
|
+
* @type {string}
|
|
1913
|
+
* @memberof MemberIndexQuery
|
|
1914
|
+
*/
|
|
1915
|
+
'order_direction'?: string;
|
|
1916
|
+
/**
|
|
1917
|
+
*
|
|
1918
|
+
* @type {number}
|
|
1919
|
+
* @memberof MemberIndexQuery
|
|
1920
|
+
*/
|
|
1921
|
+
'page_number'?: number;
|
|
1922
|
+
/**
|
|
1923
|
+
*
|
|
1924
|
+
* @type {number}
|
|
1925
|
+
* @memberof MemberIndexQuery
|
|
1926
|
+
*/
|
|
1927
|
+
'page_size'?: number;
|
|
1928
|
+
/**
|
|
1929
|
+
*
|
|
1930
|
+
* @type {string}
|
|
1931
|
+
* @memberof MemberIndexQuery
|
|
1932
|
+
*/
|
|
1933
|
+
'floor_id'?: string;
|
|
1934
|
+
/**
|
|
1935
|
+
*
|
|
1936
|
+
* @type {string}
|
|
1937
|
+
* @memberof MemberIndexQuery
|
|
1938
|
+
*/
|
|
1939
|
+
'tenant_id'?: string;
|
|
1940
|
+
}
|
|
1941
|
+
/**
|
|
1942
|
+
*
|
|
1943
|
+
* @export
|
|
1944
|
+
* @interface MemberIndexResponse
|
|
1945
|
+
*/
|
|
1946
|
+
export interface MemberIndexResponse {
|
|
1947
|
+
/**
|
|
1948
|
+
*
|
|
1949
|
+
* @type {string}
|
|
1950
|
+
* @memberof MemberIndexResponse
|
|
1951
|
+
*/
|
|
1952
|
+
'id': string;
|
|
1953
|
+
/**
|
|
1954
|
+
*
|
|
1955
|
+
* @type {string}
|
|
1956
|
+
* @memberof MemberIndexResponse
|
|
1957
|
+
*/
|
|
1958
|
+
'uid': string;
|
|
1959
|
+
/**
|
|
1960
|
+
*
|
|
1961
|
+
* @type {string}
|
|
1962
|
+
* @memberof MemberIndexResponse
|
|
1963
|
+
*/
|
|
1964
|
+
'account_id'?: string | null;
|
|
1965
|
+
/**
|
|
1966
|
+
*
|
|
1967
|
+
* @type {JsonValue}
|
|
1968
|
+
* @memberof MemberIndexResponse
|
|
1969
|
+
*/
|
|
1970
|
+
'metadata'?: JsonValue | null;
|
|
1971
|
+
/**
|
|
1972
|
+
*
|
|
1973
|
+
* @type {TenantMemberResultCreatedAt}
|
|
1974
|
+
* @memberof MemberIndexResponse
|
|
1975
|
+
*/
|
|
1976
|
+
'created_at': TenantMemberResultCreatedAt;
|
|
1977
|
+
/**
|
|
1978
|
+
*
|
|
1979
|
+
* @type {TenantMemberResultCreatedAt}
|
|
1980
|
+
* @memberof MemberIndexResponse
|
|
1981
|
+
*/
|
|
1982
|
+
'updated_at': TenantMemberResultCreatedAt;
|
|
1983
|
+
}
|
|
1984
|
+
/**
|
|
1985
|
+
*
|
|
1986
|
+
* @export
|
|
1987
|
+
* @interface MemberListBody
|
|
1988
|
+
*/
|
|
1989
|
+
export interface MemberListBody {
|
|
1990
|
+
/**
|
|
1991
|
+
*
|
|
1992
|
+
* @type {Array<string>}
|
|
1993
|
+
* @memberof MemberListBody
|
|
1994
|
+
*/
|
|
1995
|
+
'floor_ids'?: Array<string>;
|
|
1996
|
+
/**
|
|
1997
|
+
*
|
|
1998
|
+
* @type {Array<string>}
|
|
1999
|
+
* @memberof MemberListBody
|
|
2000
|
+
*/
|
|
2001
|
+
'tenant_ids'?: Array<string>;
|
|
2002
|
+
}
|
|
1867
2003
|
/**
|
|
1868
2004
|
*
|
|
1869
2005
|
* @export
|
|
@@ -2339,6 +2475,12 @@ export interface ParkingLotData {
|
|
|
2339
2475
|
* @memberof ParkingLotData
|
|
2340
2476
|
*/
|
|
2341
2477
|
'parking_floor_id'?: string;
|
|
2478
|
+
/**
|
|
2479
|
+
*
|
|
2480
|
+
* @type {number}
|
|
2481
|
+
* @memberof ParkingLotData
|
|
2482
|
+
*/
|
|
2483
|
+
'total_spots'?: number;
|
|
2342
2484
|
/**
|
|
2343
2485
|
*
|
|
2344
2486
|
* @type {Array<SpotTypeData>}
|
|
@@ -2369,7 +2511,7 @@ export interface ParkingMemberAccessLog {
|
|
|
2369
2511
|
* @type {string}
|
|
2370
2512
|
* @memberof ParkingMemberAccessLog
|
|
2371
2513
|
*/
|
|
2372
|
-
'
|
|
2514
|
+
'transacDatetime': string;
|
|
2373
2515
|
/**
|
|
2374
2516
|
*
|
|
2375
2517
|
* @type {string}
|
|
@@ -2408,6 +2550,140 @@ export interface ParkingRedemptionRateResult {
|
|
|
2408
2550
|
*/
|
|
2409
2551
|
'code': number;
|
|
2410
2552
|
}
|
|
2553
|
+
/**
|
|
2554
|
+
*
|
|
2555
|
+
* @export
|
|
2556
|
+
* @interface ParkingSpaceDetailAndSpaceDetail
|
|
2557
|
+
*/
|
|
2558
|
+
export interface ParkingSpaceDetailAndSpaceDetail {
|
|
2559
|
+
/**
|
|
2560
|
+
*
|
|
2561
|
+
* @type {string}
|
|
2562
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2563
|
+
*/
|
|
2564
|
+
'recordSyscode': string;
|
|
2565
|
+
/**
|
|
2566
|
+
*
|
|
2567
|
+
* @type {string}
|
|
2568
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2569
|
+
*/
|
|
2570
|
+
'spaceSyscode': string;
|
|
2571
|
+
/**
|
|
2572
|
+
*
|
|
2573
|
+
* @type {string}
|
|
2574
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2575
|
+
*/
|
|
2576
|
+
'spaceNo': string;
|
|
2577
|
+
/**
|
|
2578
|
+
*
|
|
2579
|
+
* @type {string}
|
|
2580
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2581
|
+
*/
|
|
2582
|
+
'spacePicUri': string;
|
|
2583
|
+
/**
|
|
2584
|
+
*
|
|
2585
|
+
* @type {string}
|
|
2586
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2587
|
+
*/
|
|
2588
|
+
'parkingTime': string;
|
|
2589
|
+
/**
|
|
2590
|
+
*
|
|
2591
|
+
* @type {string}
|
|
2592
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2593
|
+
*/
|
|
2594
|
+
'parkSyscode': string;
|
|
2595
|
+
/**
|
|
2596
|
+
*
|
|
2597
|
+
* @type {string}
|
|
2598
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2599
|
+
*/
|
|
2600
|
+
'parkName': string;
|
|
2601
|
+
/**
|
|
2602
|
+
*
|
|
2603
|
+
* @type {string}
|
|
2604
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2605
|
+
*/
|
|
2606
|
+
'floorSyscode': string;
|
|
2607
|
+
/**
|
|
2608
|
+
*
|
|
2609
|
+
* @type {string}
|
|
2610
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2611
|
+
*/
|
|
2612
|
+
'floorName': string;
|
|
2613
|
+
/**
|
|
2614
|
+
*
|
|
2615
|
+
* @type {string}
|
|
2616
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2617
|
+
*/
|
|
2618
|
+
'plateNoPicUri': string;
|
|
2619
|
+
/**
|
|
2620
|
+
*
|
|
2621
|
+
* @type {string}
|
|
2622
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2623
|
+
*/
|
|
2624
|
+
'aswSyscode': string;
|
|
2625
|
+
/**
|
|
2626
|
+
*
|
|
2627
|
+
* @type {string}
|
|
2628
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2629
|
+
*/
|
|
2630
|
+
'plateNo': string;
|
|
2631
|
+
/**
|
|
2632
|
+
*
|
|
2633
|
+
* @type {string}
|
|
2634
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2635
|
+
*/
|
|
2636
|
+
'spacePicUrl': string;
|
|
2637
|
+
/**
|
|
2638
|
+
*
|
|
2639
|
+
* @type {string}
|
|
2640
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2641
|
+
*/
|
|
2642
|
+
'plateNoPicUrl': string;
|
|
2643
|
+
/**
|
|
2644
|
+
*
|
|
2645
|
+
* @type {string}
|
|
2646
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2647
|
+
*/
|
|
2648
|
+
'spacePicBinary': string;
|
|
2649
|
+
/**
|
|
2650
|
+
*
|
|
2651
|
+
* @type {string}
|
|
2652
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2653
|
+
*/
|
|
2654
|
+
'ibeaconIpcUuid': string;
|
|
2655
|
+
/**
|
|
2656
|
+
*
|
|
2657
|
+
* @type {string}
|
|
2658
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2659
|
+
*/
|
|
2660
|
+
'ibeaconIpcMajor': string;
|
|
2661
|
+
/**
|
|
2662
|
+
*
|
|
2663
|
+
* @type {string}
|
|
2664
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2665
|
+
*/
|
|
2666
|
+
'ibeaconIpcMinor': string;
|
|
2667
|
+
/**
|
|
2668
|
+
*
|
|
2669
|
+
* @type {string}
|
|
2670
|
+
* @memberof ParkingSpaceDetailAndSpaceDetail
|
|
2671
|
+
*/
|
|
2672
|
+
'zoneName': string;
|
|
2673
|
+
}
|
|
2674
|
+
/**
|
|
2675
|
+
*
|
|
2676
|
+
* @export
|
|
2677
|
+
* @interface ParkingSpaceDetailBody
|
|
2678
|
+
*/
|
|
2679
|
+
export interface ParkingSpaceDetailBody {
|
|
2680
|
+
/**
|
|
2681
|
+
*
|
|
2682
|
+
* @type {string}
|
|
2683
|
+
* @memberof ParkingSpaceDetailBody
|
|
2684
|
+
*/
|
|
2685
|
+
'plate_number': string;
|
|
2686
|
+
}
|
|
2411
2687
|
/**
|
|
2412
2688
|
*
|
|
2413
2689
|
* @export
|
|
@@ -2536,7 +2812,7 @@ export interface ParkingVisitorAccessLog {
|
|
|
2536
2812
|
* @type {string}
|
|
2537
2813
|
* @memberof ParkingVisitorAccessLog
|
|
2538
2814
|
*/
|
|
2539
|
-
'
|
|
2815
|
+
'transacDatetime': string;
|
|
2540
2816
|
/**
|
|
2541
2817
|
*
|
|
2542
2818
|
* @type {string}
|
|
@@ -3389,7 +3665,7 @@ export interface ShowVisitorResponse {
|
|
|
3389
3665
|
* @type {string}
|
|
3390
3666
|
* @memberof ShowVisitorResponse
|
|
3391
3667
|
*/
|
|
3392
|
-
'reference': string;
|
|
3668
|
+
'reference': string | null;
|
|
3393
3669
|
/**
|
|
3394
3670
|
*
|
|
3395
3671
|
* @type {string}
|
|
@@ -3457,6 +3733,12 @@ export interface SpotTypeData {
|
|
|
3457
3733
|
* @memberof SpotTypeData
|
|
3458
3734
|
*/
|
|
3459
3735
|
'parking_lot_id'?: string;
|
|
3736
|
+
/**
|
|
3737
|
+
*
|
|
3738
|
+
* @type {number}
|
|
3739
|
+
* @memberof SpotTypeData
|
|
3740
|
+
*/
|
|
3741
|
+
'total_spots'?: number;
|
|
3460
3742
|
}
|
|
3461
3743
|
/**
|
|
3462
3744
|
*
|
|
@@ -3909,7 +4191,7 @@ export interface VisitorAccessLog {
|
|
|
3909
4191
|
* @type {string}
|
|
3910
4192
|
* @memberof VisitorAccessLog
|
|
3911
4193
|
*/
|
|
3912
|
-
'
|
|
4194
|
+
'transacDatetime': string;
|
|
3913
4195
|
/**
|
|
3914
4196
|
*
|
|
3915
4197
|
* @type {number}
|
|
@@ -3970,7 +4252,7 @@ export interface VisitorData {
|
|
|
3970
4252
|
* @type {string}
|
|
3971
4253
|
* @memberof VisitorData
|
|
3972
4254
|
*/
|
|
3973
|
-
'reference'
|
|
4255
|
+
'reference'?: string | null;
|
|
3974
4256
|
/**
|
|
3975
4257
|
*
|
|
3976
4258
|
* @type {string}
|
|
@@ -4068,7 +4350,7 @@ export interface VisitorPasses {
|
|
|
4068
4350
|
* @type {string}
|
|
4069
4351
|
* @memberof VisitorPasses
|
|
4070
4352
|
*/
|
|
4071
|
-
'reference'
|
|
4353
|
+
'reference'?: string | null;
|
|
4072
4354
|
/**
|
|
4073
4355
|
*
|
|
4074
4356
|
* @type {string}
|
|
@@ -4117,7 +4399,7 @@ export interface VisitorResult {
|
|
|
4117
4399
|
* @type {string}
|
|
4118
4400
|
* @memberof VisitorResult
|
|
4119
4401
|
*/
|
|
4120
|
-
'reference'
|
|
4402
|
+
'reference'?: string | null;
|
|
4121
4403
|
/**
|
|
4122
4404
|
*
|
|
4123
4405
|
* @type {string}
|
|
@@ -4453,6 +4735,25 @@ export interface WrappedArrayResponseBuildingAccessLogResult {
|
|
|
4453
4735
|
*/
|
|
4454
4736
|
'pagination'?: Pagination;
|
|
4455
4737
|
}
|
|
4738
|
+
/**
|
|
4739
|
+
*
|
|
4740
|
+
* @export
|
|
4741
|
+
* @interface WrappedArrayResponseFindMemberResult
|
|
4742
|
+
*/
|
|
4743
|
+
export interface WrappedArrayResponseFindMemberResult {
|
|
4744
|
+
/**
|
|
4745
|
+
*
|
|
4746
|
+
* @type {Array<FindMemberResult>}
|
|
4747
|
+
* @memberof WrappedArrayResponseFindMemberResult
|
|
4748
|
+
*/
|
|
4749
|
+
'data': Array<FindMemberResult>;
|
|
4750
|
+
/**
|
|
4751
|
+
*
|
|
4752
|
+
* @type {Pagination}
|
|
4753
|
+
* @memberof WrappedArrayResponseFindMemberResult
|
|
4754
|
+
*/
|
|
4755
|
+
'pagination'?: Pagination;
|
|
4756
|
+
}
|
|
4456
4757
|
/**
|
|
4457
4758
|
*
|
|
4458
4759
|
* @export
|
|
@@ -4492,6 +4793,25 @@ export interface WrappedArrayResponseIssueTypeData {
|
|
|
4492
4793
|
*/
|
|
4493
4794
|
'data': Array<IssueTypeData>;
|
|
4494
4795
|
}
|
|
4796
|
+
/**
|
|
4797
|
+
*
|
|
4798
|
+
* @export
|
|
4799
|
+
* @interface WrappedArrayResponseMemberIndexResponse
|
|
4800
|
+
*/
|
|
4801
|
+
export interface WrappedArrayResponseMemberIndexResponse {
|
|
4802
|
+
/**
|
|
4803
|
+
*
|
|
4804
|
+
* @type {Array<MemberIndexResponse>}
|
|
4805
|
+
* @memberof WrappedArrayResponseMemberIndexResponse
|
|
4806
|
+
*/
|
|
4807
|
+
'data': Array<MemberIndexResponse>;
|
|
4808
|
+
/**
|
|
4809
|
+
*
|
|
4810
|
+
* @type {Pagination}
|
|
4811
|
+
* @memberof WrappedArrayResponseMemberIndexResponse
|
|
4812
|
+
*/
|
|
4813
|
+
'pagination'?: Pagination;
|
|
4814
|
+
}
|
|
4495
4815
|
/**
|
|
4496
4816
|
*
|
|
4497
4817
|
* @export
|
|
@@ -4757,7 +5077,7 @@ export interface WrappedResponseCreateVisitorResponseData {
|
|
|
4757
5077
|
* @type {string}
|
|
4758
5078
|
* @memberof WrappedResponseCreateVisitorResponseData
|
|
4759
5079
|
*/
|
|
4760
|
-
'reference': string;
|
|
5080
|
+
'reference': string | null;
|
|
4761
5081
|
/**
|
|
4762
5082
|
*
|
|
4763
5083
|
* @type {string}
|
|
@@ -4919,6 +5239,140 @@ export interface WrappedResponseParkingRedemptionRateResultArray {
|
|
|
4919
5239
|
*/
|
|
4920
5240
|
export interface WrappedResponseParkingRedemptionRateResultArrayData {
|
|
4921
5241
|
}
|
|
5242
|
+
/**
|
|
5243
|
+
*
|
|
5244
|
+
* @export
|
|
5245
|
+
* @interface WrappedResponseParkingSpaceDetailAndSpaceDetail
|
|
5246
|
+
*/
|
|
5247
|
+
export interface WrappedResponseParkingSpaceDetailAndSpaceDetail {
|
|
5248
|
+
/**
|
|
5249
|
+
*
|
|
5250
|
+
* @type {WrappedResponseParkingSpaceDetailAndSpaceDetailData}
|
|
5251
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetail
|
|
5252
|
+
*/
|
|
5253
|
+
'data': WrappedResponseParkingSpaceDetailAndSpaceDetailData | null;
|
|
5254
|
+
}
|
|
5255
|
+
/**
|
|
5256
|
+
*
|
|
5257
|
+
* @export
|
|
5258
|
+
* @interface WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5259
|
+
*/
|
|
5260
|
+
export interface WrappedResponseParkingSpaceDetailAndSpaceDetailData {
|
|
5261
|
+
/**
|
|
5262
|
+
*
|
|
5263
|
+
* @type {string}
|
|
5264
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5265
|
+
*/
|
|
5266
|
+
'recordSyscode': string;
|
|
5267
|
+
/**
|
|
5268
|
+
*
|
|
5269
|
+
* @type {string}
|
|
5270
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5271
|
+
*/
|
|
5272
|
+
'spaceSyscode': string;
|
|
5273
|
+
/**
|
|
5274
|
+
*
|
|
5275
|
+
* @type {string}
|
|
5276
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5277
|
+
*/
|
|
5278
|
+
'spaceNo': string;
|
|
5279
|
+
/**
|
|
5280
|
+
*
|
|
5281
|
+
* @type {string}
|
|
5282
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5283
|
+
*/
|
|
5284
|
+
'spacePicUri': string;
|
|
5285
|
+
/**
|
|
5286
|
+
*
|
|
5287
|
+
* @type {string}
|
|
5288
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5289
|
+
*/
|
|
5290
|
+
'parkingTime': string;
|
|
5291
|
+
/**
|
|
5292
|
+
*
|
|
5293
|
+
* @type {string}
|
|
5294
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5295
|
+
*/
|
|
5296
|
+
'parkSyscode': string;
|
|
5297
|
+
/**
|
|
5298
|
+
*
|
|
5299
|
+
* @type {string}
|
|
5300
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5301
|
+
*/
|
|
5302
|
+
'parkName': string;
|
|
5303
|
+
/**
|
|
5304
|
+
*
|
|
5305
|
+
* @type {string}
|
|
5306
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5307
|
+
*/
|
|
5308
|
+
'floorSyscode': string;
|
|
5309
|
+
/**
|
|
5310
|
+
*
|
|
5311
|
+
* @type {string}
|
|
5312
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5313
|
+
*/
|
|
5314
|
+
'floorName': string;
|
|
5315
|
+
/**
|
|
5316
|
+
*
|
|
5317
|
+
* @type {string}
|
|
5318
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5319
|
+
*/
|
|
5320
|
+
'plateNoPicUri': string;
|
|
5321
|
+
/**
|
|
5322
|
+
*
|
|
5323
|
+
* @type {string}
|
|
5324
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5325
|
+
*/
|
|
5326
|
+
'aswSyscode': string;
|
|
5327
|
+
/**
|
|
5328
|
+
*
|
|
5329
|
+
* @type {string}
|
|
5330
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5331
|
+
*/
|
|
5332
|
+
'plateNo': string;
|
|
5333
|
+
/**
|
|
5334
|
+
*
|
|
5335
|
+
* @type {string}
|
|
5336
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5337
|
+
*/
|
|
5338
|
+
'spacePicUrl': string;
|
|
5339
|
+
/**
|
|
5340
|
+
*
|
|
5341
|
+
* @type {string}
|
|
5342
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5343
|
+
*/
|
|
5344
|
+
'plateNoPicUrl': string;
|
|
5345
|
+
/**
|
|
5346
|
+
*
|
|
5347
|
+
* @type {string}
|
|
5348
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5349
|
+
*/
|
|
5350
|
+
'spacePicBinary': string;
|
|
5351
|
+
/**
|
|
5352
|
+
*
|
|
5353
|
+
* @type {string}
|
|
5354
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5355
|
+
*/
|
|
5356
|
+
'ibeaconIpcUuid': string;
|
|
5357
|
+
/**
|
|
5358
|
+
*
|
|
5359
|
+
* @type {string}
|
|
5360
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5361
|
+
*/
|
|
5362
|
+
'ibeaconIpcMajor': string;
|
|
5363
|
+
/**
|
|
5364
|
+
*
|
|
5365
|
+
* @type {string}
|
|
5366
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5367
|
+
*/
|
|
5368
|
+
'ibeaconIpcMinor': string;
|
|
5369
|
+
/**
|
|
5370
|
+
*
|
|
5371
|
+
* @type {string}
|
|
5372
|
+
* @memberof WrappedResponseParkingSpaceDetailAndSpaceDetailData
|
|
5373
|
+
*/
|
|
5374
|
+
'zoneName': string;
|
|
5375
|
+
}
|
|
4922
5376
|
/**
|
|
4923
5377
|
*
|
|
4924
5378
|
* @export
|
|
@@ -5197,7 +5651,7 @@ export interface WrappedResponseShowVisitorResponseData {
|
|
|
5197
5651
|
* @type {string}
|
|
5198
5652
|
* @memberof WrappedResponseShowVisitorResponseData
|
|
5199
5653
|
*/
|
|
5200
|
-
'reference': string;
|
|
5654
|
+
'reference': string | null;
|
|
5201
5655
|
/**
|
|
5202
5656
|
*
|
|
5203
5657
|
* @type {string}
|
|
@@ -5536,6 +5990,29 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5536
5990
|
* @throws {RequiredError}
|
|
5537
5991
|
*/
|
|
5538
5992
|
membersUpdate: (id: string, updateMemberRequestBody: UpdateMemberRequestBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5993
|
+
/**
|
|
5994
|
+
*
|
|
5995
|
+
* @param {string} [orderBy]
|
|
5996
|
+
* @param {string} [orderDirection]
|
|
5997
|
+
* @param {number} [pageNumber]
|
|
5998
|
+
* @param {number} [pageSize]
|
|
5999
|
+
* @param {string} [floorId]
|
|
6000
|
+
* @param {string} [tenantId]
|
|
6001
|
+
* @param {*} [options] Override http request option.
|
|
6002
|
+
* @throws {RequiredError}
|
|
6003
|
+
*/
|
|
6004
|
+
membersV2Index: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6005
|
+
/**
|
|
6006
|
+
*
|
|
6007
|
+
* @param {MemberListBody} memberListBody
|
|
6008
|
+
* @param {string} [orderBy]
|
|
6009
|
+
* @param {string} [orderDirection]
|
|
6010
|
+
* @param {number} [pageNumber]
|
|
6011
|
+
* @param {number} [pageSize]
|
|
6012
|
+
* @param {*} [options] Override http request option.
|
|
6013
|
+
* @throws {RequiredError}
|
|
6014
|
+
*/
|
|
6015
|
+
membersV2ListMembers: (memberListBody: MemberListBody, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5539
6016
|
/**
|
|
5540
6017
|
*
|
|
5541
6018
|
* @param {string} [orderBy]
|
|
@@ -5582,6 +6059,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5582
6059
|
* @throws {RequiredError}
|
|
5583
6060
|
*/
|
|
5584
6061
|
parkingTicketsIndex: (type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6062
|
+
/**
|
|
6063
|
+
*
|
|
6064
|
+
* @param {ParkingSpaceDetailBody} parkingSpaceDetailBody
|
|
6065
|
+
* @param {*} [options] Override http request option.
|
|
6066
|
+
* @throws {RequiredError}
|
|
6067
|
+
*/
|
|
6068
|
+
parkingTicketsLocation: (parkingSpaceDetailBody: ParkingSpaceDetailBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5585
6069
|
/**
|
|
5586
6070
|
*
|
|
5587
6071
|
* @param {string} logId
|
|
@@ -5911,6 +6395,29 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
5911
6395
|
* @throws {RequiredError}
|
|
5912
6396
|
*/
|
|
5913
6397
|
membersUpdate(id: string, updateMemberRequestBody: UpdateMemberRequestBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseUpdateMemberResponse>>;
|
|
6398
|
+
/**
|
|
6399
|
+
*
|
|
6400
|
+
* @param {string} [orderBy]
|
|
6401
|
+
* @param {string} [orderDirection]
|
|
6402
|
+
* @param {number} [pageNumber]
|
|
6403
|
+
* @param {number} [pageSize]
|
|
6404
|
+
* @param {string} [floorId]
|
|
6405
|
+
* @param {string} [tenantId]
|
|
6406
|
+
* @param {*} [options] Override http request option.
|
|
6407
|
+
* @throws {RequiredError}
|
|
6408
|
+
*/
|
|
6409
|
+
membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseMemberIndexResponse>>;
|
|
6410
|
+
/**
|
|
6411
|
+
*
|
|
6412
|
+
* @param {MemberListBody} memberListBody
|
|
6413
|
+
* @param {string} [orderBy]
|
|
6414
|
+
* @param {string} [orderDirection]
|
|
6415
|
+
* @param {number} [pageNumber]
|
|
6416
|
+
* @param {number} [pageSize]
|
|
6417
|
+
* @param {*} [options] Override http request option.
|
|
6418
|
+
* @throws {RequiredError}
|
|
6419
|
+
*/
|
|
6420
|
+
membersV2ListMembers(memberListBody: MemberListBody, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseFindMemberResult>>;
|
|
5914
6421
|
/**
|
|
5915
6422
|
*
|
|
5916
6423
|
* @param {string} [orderBy]
|
|
@@ -5957,6 +6464,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
5957
6464
|
* @throws {RequiredError}
|
|
5958
6465
|
*/
|
|
5959
6466
|
parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketDataArray>>;
|
|
6467
|
+
/**
|
|
6468
|
+
*
|
|
6469
|
+
* @param {ParkingSpaceDetailBody} parkingSpaceDetailBody
|
|
6470
|
+
* @param {*} [options] Override http request option.
|
|
6471
|
+
* @throws {RequiredError}
|
|
6472
|
+
*/
|
|
6473
|
+
parkingTicketsLocation(parkingSpaceDetailBody: ParkingSpaceDetailBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetail>>;
|
|
5960
6474
|
/**
|
|
5961
6475
|
*
|
|
5962
6476
|
* @param {string} logId
|
|
@@ -6286,6 +6800,29 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
6286
6800
|
* @throws {RequiredError}
|
|
6287
6801
|
*/
|
|
6288
6802
|
membersUpdate(id: string, updateMemberRequestBody: UpdateMemberRequestBody, options?: any): AxiosPromise<WrappedResponseUpdateMemberResponse>;
|
|
6803
|
+
/**
|
|
6804
|
+
*
|
|
6805
|
+
* @param {string} [orderBy]
|
|
6806
|
+
* @param {string} [orderDirection]
|
|
6807
|
+
* @param {number} [pageNumber]
|
|
6808
|
+
* @param {number} [pageSize]
|
|
6809
|
+
* @param {string} [floorId]
|
|
6810
|
+
* @param {string} [tenantId]
|
|
6811
|
+
* @param {*} [options] Override http request option.
|
|
6812
|
+
* @throws {RequiredError}
|
|
6813
|
+
*/
|
|
6814
|
+
membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options?: any): AxiosPromise<WrappedArrayResponseMemberIndexResponse>;
|
|
6815
|
+
/**
|
|
6816
|
+
*
|
|
6817
|
+
* @param {MemberListBody} memberListBody
|
|
6818
|
+
* @param {string} [orderBy]
|
|
6819
|
+
* @param {string} [orderDirection]
|
|
6820
|
+
* @param {number} [pageNumber]
|
|
6821
|
+
* @param {number} [pageSize]
|
|
6822
|
+
* @param {*} [options] Override http request option.
|
|
6823
|
+
* @throws {RequiredError}
|
|
6824
|
+
*/
|
|
6825
|
+
membersV2ListMembers(memberListBody: MemberListBody, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, options?: any): AxiosPromise<WrappedArrayResponseFindMemberResult>;
|
|
6289
6826
|
/**
|
|
6290
6827
|
*
|
|
6291
6828
|
* @param {string} [orderBy]
|
|
@@ -6332,6 +6869,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
6332
6869
|
* @throws {RequiredError}
|
|
6333
6870
|
*/
|
|
6334
6871
|
parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray>;
|
|
6872
|
+
/**
|
|
6873
|
+
*
|
|
6874
|
+
* @param {ParkingSpaceDetailBody} parkingSpaceDetailBody
|
|
6875
|
+
* @param {*} [options] Override http request option.
|
|
6876
|
+
* @throws {RequiredError}
|
|
6877
|
+
*/
|
|
6878
|
+
parkingTicketsLocation(parkingSpaceDetailBody: ParkingSpaceDetailBody, options?: any): AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetail>;
|
|
6335
6879
|
/**
|
|
6336
6880
|
*
|
|
6337
6881
|
* @param {string} logId
|
|
@@ -6688,6 +7232,31 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
6688
7232
|
* @memberof DefaultApi
|
|
6689
7233
|
*/
|
|
6690
7234
|
membersUpdate(id: string, updateMemberRequestBody: UpdateMemberRequestBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseUpdateMemberResponse, any>>;
|
|
7235
|
+
/**
|
|
7236
|
+
*
|
|
7237
|
+
* @param {string} [orderBy]
|
|
7238
|
+
* @param {string} [orderDirection]
|
|
7239
|
+
* @param {number} [pageNumber]
|
|
7240
|
+
* @param {number} [pageSize]
|
|
7241
|
+
* @param {string} [floorId]
|
|
7242
|
+
* @param {string} [tenantId]
|
|
7243
|
+
* @param {*} [options] Override http request option.
|
|
7244
|
+
* @throws {RequiredError}
|
|
7245
|
+
* @memberof DefaultApi
|
|
7246
|
+
*/
|
|
7247
|
+
membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseMemberIndexResponse, any>>;
|
|
7248
|
+
/**
|
|
7249
|
+
*
|
|
7250
|
+
* @param {MemberListBody} memberListBody
|
|
7251
|
+
* @param {string} [orderBy]
|
|
7252
|
+
* @param {string} [orderDirection]
|
|
7253
|
+
* @param {number} [pageNumber]
|
|
7254
|
+
* @param {number} [pageSize]
|
|
7255
|
+
* @param {*} [options] Override http request option.
|
|
7256
|
+
* @throws {RequiredError}
|
|
7257
|
+
* @memberof DefaultApi
|
|
7258
|
+
*/
|
|
7259
|
+
membersV2ListMembers(memberListBody: MemberListBody, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseFindMemberResult, any>>;
|
|
6691
7260
|
/**
|
|
6692
7261
|
*
|
|
6693
7262
|
* @param {string} [orderBy]
|
|
@@ -6739,6 +7308,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
6739
7308
|
* @memberof DefaultApi
|
|
6740
7309
|
*/
|
|
6741
7310
|
parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingTicketDataArray, any>>;
|
|
7311
|
+
/**
|
|
7312
|
+
*
|
|
7313
|
+
* @param {ParkingSpaceDetailBody} parkingSpaceDetailBody
|
|
7314
|
+
* @param {*} [options] Override http request option.
|
|
7315
|
+
* @throws {RequiredError}
|
|
7316
|
+
* @memberof DefaultApi
|
|
7317
|
+
*/
|
|
7318
|
+
parkingTicketsLocation(parkingSpaceDetailBody: ParkingSpaceDetailBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingSpaceDetailAndSpaceDetail, any>>;
|
|
6742
7319
|
/**
|
|
6743
7320
|
*
|
|
6744
7321
|
* @param {string} logId
|