ob-bms-sdk 0.0.78 → 0.0.80
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 +499 -35
- package/dist/api/api.d.ts +430 -36
- package/dist/api/api.js +119 -0
- package/package.json +1 -1
package/dist/api/api.d.ts
CHANGED
|
@@ -27,10 +27,10 @@ export interface ACRequestBody {
|
|
|
27
27
|
'floor_id': string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {string}
|
|
30
|
+
* @type {Array<string>}
|
|
31
31
|
* @memberof ACRequestBody
|
|
32
32
|
*/
|
|
33
|
-
'ac_zone_id': string
|
|
33
|
+
'ac_zone_id': Array<string>;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {string}
|
|
@@ -135,24 +135,12 @@ export interface ACRequestResponse {
|
|
|
135
135
|
* @memberof ACRequestResponse
|
|
136
136
|
*/
|
|
137
137
|
'floor_id': string;
|
|
138
|
-
/**
|
|
139
|
-
*
|
|
140
|
-
* @type {string}
|
|
141
|
-
* @memberof ACRequestResponse
|
|
142
|
-
*/
|
|
143
|
-
'ac_zone_id': string;
|
|
144
138
|
/**
|
|
145
139
|
*
|
|
146
140
|
* @type {string}
|
|
147
141
|
* @memberof ACRequestResponse
|
|
148
142
|
*/
|
|
149
143
|
'estimated_cost': string;
|
|
150
|
-
/**
|
|
151
|
-
*
|
|
152
|
-
* @type {string}
|
|
153
|
-
* @memberof ACRequestResponse
|
|
154
|
-
*/
|
|
155
|
-
'rate': string;
|
|
156
144
|
/**
|
|
157
145
|
*
|
|
158
146
|
* @type {string}
|
|
@@ -176,7 +164,7 @@ export interface ACRequestResponse {
|
|
|
176
164
|
* @type {number}
|
|
177
165
|
* @memberof ACRequestResponse
|
|
178
166
|
*/
|
|
179
|
-
'
|
|
167
|
+
'total_area_size': number;
|
|
180
168
|
/**
|
|
181
169
|
*
|
|
182
170
|
* @type {string}
|
|
@@ -203,10 +191,10 @@ export interface ACRequestResponse {
|
|
|
203
191
|
'requester_id': string;
|
|
204
192
|
/**
|
|
205
193
|
*
|
|
206
|
-
* @type {
|
|
194
|
+
* @type {Array<ACRequestZone>}
|
|
207
195
|
* @memberof ACRequestResponse
|
|
208
196
|
*/
|
|
209
|
-
'ac_zone':
|
|
197
|
+
'ac_zone': Array<ACRequestZone>;
|
|
210
198
|
/**
|
|
211
199
|
*
|
|
212
200
|
* @type {FloorData}
|
|
@@ -305,6 +293,55 @@ export interface ACRequestUpdateBody {
|
|
|
305
293
|
*/
|
|
306
294
|
export interface ACRequestUpdateBodyStatus {
|
|
307
295
|
}
|
|
296
|
+
/**
|
|
297
|
+
*
|
|
298
|
+
* @export
|
|
299
|
+
* @interface ACRequestZone
|
|
300
|
+
*/
|
|
301
|
+
export interface ACRequestZone {
|
|
302
|
+
/**
|
|
303
|
+
*
|
|
304
|
+
* @type {string}
|
|
305
|
+
* @memberof ACRequestZone
|
|
306
|
+
*/
|
|
307
|
+
'id': string;
|
|
308
|
+
/**
|
|
309
|
+
*
|
|
310
|
+
* @type {ACZoneData}
|
|
311
|
+
* @memberof ACRequestZone
|
|
312
|
+
*/
|
|
313
|
+
'ac_zone': ACZoneData;
|
|
314
|
+
/**
|
|
315
|
+
*
|
|
316
|
+
* @type {string}
|
|
317
|
+
* @memberof ACRequestZone
|
|
318
|
+
*/
|
|
319
|
+
'ac_request_id': string;
|
|
320
|
+
/**
|
|
321
|
+
*
|
|
322
|
+
* @type {string}
|
|
323
|
+
* @memberof ACRequestZone
|
|
324
|
+
*/
|
|
325
|
+
'rate': string;
|
|
326
|
+
/**
|
|
327
|
+
*
|
|
328
|
+
* @type {number}
|
|
329
|
+
* @memberof ACRequestZone
|
|
330
|
+
*/
|
|
331
|
+
'area_size': number;
|
|
332
|
+
/**
|
|
333
|
+
*
|
|
334
|
+
* @type {string}
|
|
335
|
+
* @memberof ACRequestZone
|
|
336
|
+
*/
|
|
337
|
+
'created_at': string;
|
|
338
|
+
/**
|
|
339
|
+
*
|
|
340
|
+
* @type {string}
|
|
341
|
+
* @memberof ACRequestZone
|
|
342
|
+
*/
|
|
343
|
+
'updated_at': string;
|
|
344
|
+
}
|
|
308
345
|
/**
|
|
309
346
|
*
|
|
310
347
|
* @export
|
|
@@ -472,6 +509,19 @@ export interface ConsentRequestBody {
|
|
|
472
509
|
*/
|
|
473
510
|
'consent': boolean;
|
|
474
511
|
}
|
|
512
|
+
/**
|
|
513
|
+
*
|
|
514
|
+
* @export
|
|
515
|
+
* @interface CreateACRequestResponse
|
|
516
|
+
*/
|
|
517
|
+
export interface CreateACRequestResponse {
|
|
518
|
+
/**
|
|
519
|
+
*
|
|
520
|
+
* @type {string}
|
|
521
|
+
* @memberof CreateACRequestResponse
|
|
522
|
+
*/
|
|
523
|
+
'references': string;
|
|
524
|
+
}
|
|
475
525
|
/**
|
|
476
526
|
*
|
|
477
527
|
* @export
|
|
@@ -821,6 +871,49 @@ export interface FloorSensorData {
|
|
|
821
871
|
*/
|
|
822
872
|
'floor_id': string;
|
|
823
873
|
}
|
|
874
|
+
/**
|
|
875
|
+
*
|
|
876
|
+
* @export
|
|
877
|
+
* @interface HolidayResponse
|
|
878
|
+
*/
|
|
879
|
+
export interface HolidayResponse {
|
|
880
|
+
/**
|
|
881
|
+
*
|
|
882
|
+
* @type {string}
|
|
883
|
+
* @memberof HolidayResponse
|
|
884
|
+
*/
|
|
885
|
+
'holiday_week_day': string;
|
|
886
|
+
/**
|
|
887
|
+
*
|
|
888
|
+
* @type {string}
|
|
889
|
+
* @memberof HolidayResponse
|
|
890
|
+
*/
|
|
891
|
+
'holiday_week_day_thai': string;
|
|
892
|
+
/**
|
|
893
|
+
*
|
|
894
|
+
* @type {string}
|
|
895
|
+
* @memberof HolidayResponse
|
|
896
|
+
*/
|
|
897
|
+
'date': string;
|
|
898
|
+
/**
|
|
899
|
+
*
|
|
900
|
+
* @type {string}
|
|
901
|
+
* @memberof HolidayResponse
|
|
902
|
+
*/
|
|
903
|
+
'date_thai': string;
|
|
904
|
+
/**
|
|
905
|
+
*
|
|
906
|
+
* @type {string}
|
|
907
|
+
* @memberof HolidayResponse
|
|
908
|
+
*/
|
|
909
|
+
'holiday_description': string;
|
|
910
|
+
/**
|
|
911
|
+
*
|
|
912
|
+
* @type {string}
|
|
913
|
+
* @memberof HolidayResponse
|
|
914
|
+
*/
|
|
915
|
+
'holiday_description_thai': string;
|
|
916
|
+
}
|
|
824
917
|
/**
|
|
825
918
|
*
|
|
826
919
|
* @export
|
|
@@ -839,6 +932,12 @@ export interface IssueTypeData {
|
|
|
839
932
|
* @memberof IssueTypeData
|
|
840
933
|
*/
|
|
841
934
|
'created_at': string;
|
|
935
|
+
/**
|
|
936
|
+
*
|
|
937
|
+
* @type {string}
|
|
938
|
+
* @memberof IssueTypeData
|
|
939
|
+
*/
|
|
940
|
+
'internal_remark': string | null;
|
|
842
941
|
/**
|
|
843
942
|
*
|
|
844
943
|
* @type {JsonValue}
|
|
@@ -1057,6 +1156,55 @@ export interface LocationPasses {
|
|
|
1057
1156
|
*/
|
|
1058
1157
|
'updated_at': string;
|
|
1059
1158
|
}
|
|
1159
|
+
/**
|
|
1160
|
+
*
|
|
1161
|
+
* @export
|
|
1162
|
+
* @interface MemberAccessLog
|
|
1163
|
+
*/
|
|
1164
|
+
export interface MemberAccessLog {
|
|
1165
|
+
/**
|
|
1166
|
+
*
|
|
1167
|
+
* @type {number}
|
|
1168
|
+
* @memberof MemberAccessLog
|
|
1169
|
+
*/
|
|
1170
|
+
'transacId': number;
|
|
1171
|
+
/**
|
|
1172
|
+
*
|
|
1173
|
+
* @type {string}
|
|
1174
|
+
* @memberof MemberAccessLog
|
|
1175
|
+
*/
|
|
1176
|
+
'transcDatetime': string;
|
|
1177
|
+
/**
|
|
1178
|
+
*
|
|
1179
|
+
* @type {number}
|
|
1180
|
+
* @memberof MemberAccessLog
|
|
1181
|
+
*/
|
|
1182
|
+
'projectID': number;
|
|
1183
|
+
/**
|
|
1184
|
+
*
|
|
1185
|
+
* @type {number}
|
|
1186
|
+
* @memberof MemberAccessLog
|
|
1187
|
+
*/
|
|
1188
|
+
'towerID': number;
|
|
1189
|
+
/**
|
|
1190
|
+
*
|
|
1191
|
+
* @type {string}
|
|
1192
|
+
* @memberof MemberAccessLog
|
|
1193
|
+
*/
|
|
1194
|
+
'personID': string;
|
|
1195
|
+
/**
|
|
1196
|
+
*
|
|
1197
|
+
* @type {string}
|
|
1198
|
+
* @memberof MemberAccessLog
|
|
1199
|
+
*/
|
|
1200
|
+
'turnstileID': string;
|
|
1201
|
+
/**
|
|
1202
|
+
*
|
|
1203
|
+
* @type {number}
|
|
1204
|
+
* @memberof MemberAccessLog
|
|
1205
|
+
*/
|
|
1206
|
+
'terminalPosition': number;
|
|
1207
|
+
}
|
|
1060
1208
|
/**
|
|
1061
1209
|
*
|
|
1062
1210
|
* @export
|
|
@@ -1344,6 +1492,43 @@ export interface ParkingLotData {
|
|
|
1344
1492
|
*/
|
|
1345
1493
|
'total_available_slots': number;
|
|
1346
1494
|
}
|
|
1495
|
+
/**
|
|
1496
|
+
*
|
|
1497
|
+
* @export
|
|
1498
|
+
* @interface ParkingMemberAccessLog
|
|
1499
|
+
*/
|
|
1500
|
+
export interface ParkingMemberAccessLog {
|
|
1501
|
+
/**
|
|
1502
|
+
*
|
|
1503
|
+
* @type {number}
|
|
1504
|
+
* @memberof ParkingMemberAccessLog
|
|
1505
|
+
*/
|
|
1506
|
+
'transacId': number;
|
|
1507
|
+
/**
|
|
1508
|
+
*
|
|
1509
|
+
* @type {string}
|
|
1510
|
+
* @memberof ParkingMemberAccessLog
|
|
1511
|
+
*/
|
|
1512
|
+
'transcDatetime': string;
|
|
1513
|
+
/**
|
|
1514
|
+
*
|
|
1515
|
+
* @type {string}
|
|
1516
|
+
* @memberof ParkingMemberAccessLog
|
|
1517
|
+
*/
|
|
1518
|
+
'personID': string;
|
|
1519
|
+
/**
|
|
1520
|
+
*
|
|
1521
|
+
* @type {string}
|
|
1522
|
+
* @memberof ParkingMemberAccessLog
|
|
1523
|
+
*/
|
|
1524
|
+
'terminalID': string;
|
|
1525
|
+
/**
|
|
1526
|
+
*
|
|
1527
|
+
* @type {number}
|
|
1528
|
+
* @memberof ParkingMemberAccessLog
|
|
1529
|
+
*/
|
|
1530
|
+
'terminalPosition': number;
|
|
1531
|
+
}
|
|
1347
1532
|
/**
|
|
1348
1533
|
*
|
|
1349
1534
|
* @export
|
|
@@ -1468,6 +1653,43 @@ export interface ParkingTicketsRedeemBody {
|
|
|
1468
1653
|
*/
|
|
1469
1654
|
'redeemer_id': string;
|
|
1470
1655
|
}
|
|
1656
|
+
/**
|
|
1657
|
+
*
|
|
1658
|
+
* @export
|
|
1659
|
+
* @interface ParkingVisitorAccessLog
|
|
1660
|
+
*/
|
|
1661
|
+
export interface ParkingVisitorAccessLog {
|
|
1662
|
+
/**
|
|
1663
|
+
*
|
|
1664
|
+
* @type {number}
|
|
1665
|
+
* @memberof ParkingVisitorAccessLog
|
|
1666
|
+
*/
|
|
1667
|
+
'transacId': number;
|
|
1668
|
+
/**
|
|
1669
|
+
*
|
|
1670
|
+
* @type {string}
|
|
1671
|
+
* @memberof ParkingVisitorAccessLog
|
|
1672
|
+
*/
|
|
1673
|
+
'transcDatetime': string;
|
|
1674
|
+
/**
|
|
1675
|
+
*
|
|
1676
|
+
* @type {string}
|
|
1677
|
+
* @memberof ParkingVisitorAccessLog
|
|
1678
|
+
*/
|
|
1679
|
+
'inviteID': string;
|
|
1680
|
+
/**
|
|
1681
|
+
*
|
|
1682
|
+
* @type {string}
|
|
1683
|
+
* @memberof ParkingVisitorAccessLog
|
|
1684
|
+
*/
|
|
1685
|
+
'terminalID': string;
|
|
1686
|
+
/**
|
|
1687
|
+
*
|
|
1688
|
+
* @type {number}
|
|
1689
|
+
* @memberof ParkingVisitorAccessLog
|
|
1690
|
+
*/
|
|
1691
|
+
'terminalPosition': number;
|
|
1692
|
+
}
|
|
1471
1693
|
/**
|
|
1472
1694
|
*
|
|
1473
1695
|
* @export
|
|
@@ -1760,6 +1982,19 @@ export interface RequesterData {
|
|
|
1760
1982
|
*/
|
|
1761
1983
|
'id': string;
|
|
1762
1984
|
}
|
|
1985
|
+
/**
|
|
1986
|
+
*
|
|
1987
|
+
* @export
|
|
1988
|
+
* @interface ResultResponseData
|
|
1989
|
+
*/
|
|
1990
|
+
export interface ResultResponseData {
|
|
1991
|
+
/**
|
|
1992
|
+
*
|
|
1993
|
+
* @type {boolean}
|
|
1994
|
+
* @memberof ResultResponseData
|
|
1995
|
+
*/
|
|
1996
|
+
'result': boolean;
|
|
1997
|
+
}
|
|
1763
1998
|
/**
|
|
1764
1999
|
*
|
|
1765
2000
|
* @export
|
|
@@ -2614,6 +2849,75 @@ export interface UpdateMemberResponse {
|
|
|
2614
2849
|
*/
|
|
2615
2850
|
'result': boolean | null;
|
|
2616
2851
|
}
|
|
2852
|
+
/**
|
|
2853
|
+
*
|
|
2854
|
+
* @export
|
|
2855
|
+
* @interface UpdateVisitorScheduleBody
|
|
2856
|
+
*/
|
|
2857
|
+
export interface UpdateVisitorScheduleBody {
|
|
2858
|
+
/**
|
|
2859
|
+
*
|
|
2860
|
+
* @type {UpdateVisitorScheduleBodyDeletedAt}
|
|
2861
|
+
* @memberof UpdateVisitorScheduleBody
|
|
2862
|
+
*/
|
|
2863
|
+
'deleted_at': UpdateVisitorScheduleBodyDeletedAt;
|
|
2864
|
+
}
|
|
2865
|
+
/**
|
|
2866
|
+
*
|
|
2867
|
+
* @export
|
|
2868
|
+
* @interface UpdateVisitorScheduleBodyDeletedAt
|
|
2869
|
+
*/
|
|
2870
|
+
export interface UpdateVisitorScheduleBodyDeletedAt {
|
|
2871
|
+
}
|
|
2872
|
+
/**
|
|
2873
|
+
*
|
|
2874
|
+
* @export
|
|
2875
|
+
* @interface VisitorAccessLog
|
|
2876
|
+
*/
|
|
2877
|
+
export interface VisitorAccessLog {
|
|
2878
|
+
/**
|
|
2879
|
+
*
|
|
2880
|
+
* @type {number}
|
|
2881
|
+
* @memberof VisitorAccessLog
|
|
2882
|
+
*/
|
|
2883
|
+
'transacId': number;
|
|
2884
|
+
/**
|
|
2885
|
+
*
|
|
2886
|
+
* @type {string}
|
|
2887
|
+
* @memberof VisitorAccessLog
|
|
2888
|
+
*/
|
|
2889
|
+
'transcDatetime': string;
|
|
2890
|
+
/**
|
|
2891
|
+
*
|
|
2892
|
+
* @type {number}
|
|
2893
|
+
* @memberof VisitorAccessLog
|
|
2894
|
+
*/
|
|
2895
|
+
'projectID': number;
|
|
2896
|
+
/**
|
|
2897
|
+
*
|
|
2898
|
+
* @type {number}
|
|
2899
|
+
* @memberof VisitorAccessLog
|
|
2900
|
+
*/
|
|
2901
|
+
'towerID': number;
|
|
2902
|
+
/**
|
|
2903
|
+
*
|
|
2904
|
+
* @type {string}
|
|
2905
|
+
* @memberof VisitorAccessLog
|
|
2906
|
+
*/
|
|
2907
|
+
'inviteID': string;
|
|
2908
|
+
/**
|
|
2909
|
+
*
|
|
2910
|
+
* @type {string}
|
|
2911
|
+
* @memberof VisitorAccessLog
|
|
2912
|
+
*/
|
|
2913
|
+
'turnstileID': string;
|
|
2914
|
+
/**
|
|
2915
|
+
*
|
|
2916
|
+
* @type {number}
|
|
2917
|
+
* @memberof VisitorAccessLog
|
|
2918
|
+
*/
|
|
2919
|
+
'terminalPosition': number;
|
|
2920
|
+
}
|
|
2617
2921
|
/**
|
|
2618
2922
|
*
|
|
2619
2923
|
* @export
|
|
@@ -2781,16 +3085,16 @@ export interface VisitorSchedule {
|
|
|
2781
3085
|
'floor_id': string;
|
|
2782
3086
|
/**
|
|
2783
3087
|
*
|
|
2784
|
-
* @type {
|
|
3088
|
+
* @type {UpdateVisitorScheduleBodyDeletedAt}
|
|
2785
3089
|
* @memberof VisitorSchedule
|
|
2786
3090
|
*/
|
|
2787
|
-
'from':
|
|
3091
|
+
'from': UpdateVisitorScheduleBodyDeletedAt;
|
|
2788
3092
|
/**
|
|
2789
3093
|
*
|
|
2790
|
-
* @type {
|
|
3094
|
+
* @type {UpdateVisitorScheduleBodyDeletedAt}
|
|
2791
3095
|
* @memberof VisitorSchedule
|
|
2792
3096
|
*/
|
|
2793
|
-
'to':
|
|
3097
|
+
'to': UpdateVisitorScheduleBodyDeletedAt;
|
|
2794
3098
|
/**
|
|
2795
3099
|
*
|
|
2796
3100
|
* @type {object}
|
|
@@ -2798,13 +3102,6 @@ export interface VisitorSchedule {
|
|
|
2798
3102
|
*/
|
|
2799
3103
|
'repetition'?: object;
|
|
2800
3104
|
}
|
|
2801
|
-
/**
|
|
2802
|
-
*
|
|
2803
|
-
* @export
|
|
2804
|
-
* @interface VisitorScheduleFrom
|
|
2805
|
-
*/
|
|
2806
|
-
export interface VisitorScheduleFrom {
|
|
2807
|
-
}
|
|
2808
3105
|
/**
|
|
2809
3106
|
*
|
|
2810
3107
|
* @export
|
|
@@ -3047,6 +3344,19 @@ export interface WrappedArrayResponseACZoneData {
|
|
|
3047
3344
|
*/
|
|
3048
3345
|
'data': Array<ACZoneData>;
|
|
3049
3346
|
}
|
|
3347
|
+
/**
|
|
3348
|
+
*
|
|
3349
|
+
* @export
|
|
3350
|
+
* @interface WrappedArrayResponseHolidayResponse
|
|
3351
|
+
*/
|
|
3352
|
+
export interface WrappedArrayResponseHolidayResponse {
|
|
3353
|
+
/**
|
|
3354
|
+
*
|
|
3355
|
+
* @type {Array<HolidayResponse>}
|
|
3356
|
+
* @memberof WrappedArrayResponseHolidayResponse
|
|
3357
|
+
*/
|
|
3358
|
+
'data': Array<HolidayResponse>;
|
|
3359
|
+
}
|
|
3050
3360
|
/**
|
|
3051
3361
|
*
|
|
3052
3362
|
* @export
|
|
@@ -3102,15 +3412,15 @@ export interface WrappedOneResponseACRequestResponse {
|
|
|
3102
3412
|
/**
|
|
3103
3413
|
*
|
|
3104
3414
|
* @export
|
|
3105
|
-
* @interface
|
|
3415
|
+
* @interface WrappedOneResponseCreateACRequestResponse
|
|
3106
3416
|
*/
|
|
3107
|
-
export interface
|
|
3417
|
+
export interface WrappedOneResponseCreateACRequestResponse {
|
|
3108
3418
|
/**
|
|
3109
3419
|
*
|
|
3110
|
-
* @type {
|
|
3111
|
-
* @memberof
|
|
3420
|
+
* @type {CreateACRequestResponse}
|
|
3421
|
+
* @memberof WrappedOneResponseCreateACRequestResponse
|
|
3112
3422
|
*/
|
|
3113
|
-
'data':
|
|
3423
|
+
'data': CreateACRequestResponse;
|
|
3114
3424
|
}
|
|
3115
3425
|
/**
|
|
3116
3426
|
*
|
|
@@ -3640,6 +3950,32 @@ export declare const WrappedResponsePassConsentResponseDataStatusEnum: {
|
|
|
3640
3950
|
readonly Confirmed: "confirmed";
|
|
3641
3951
|
};
|
|
3642
3952
|
export type WrappedResponsePassConsentResponseDataStatusEnum = typeof WrappedResponsePassConsentResponseDataStatusEnum[keyof typeof WrappedResponsePassConsentResponseDataStatusEnum];
|
|
3953
|
+
/**
|
|
3954
|
+
*
|
|
3955
|
+
* @export
|
|
3956
|
+
* @interface WrappedResponseResultResponseData
|
|
3957
|
+
*/
|
|
3958
|
+
export interface WrappedResponseResultResponseData {
|
|
3959
|
+
/**
|
|
3960
|
+
*
|
|
3961
|
+
* @type {WrappedResponseResultResponseDataData}
|
|
3962
|
+
* @memberof WrappedResponseResultResponseData
|
|
3963
|
+
*/
|
|
3964
|
+
'data': WrappedResponseResultResponseDataData | null;
|
|
3965
|
+
}
|
|
3966
|
+
/**
|
|
3967
|
+
*
|
|
3968
|
+
* @export
|
|
3969
|
+
* @interface WrappedResponseResultResponseDataData
|
|
3970
|
+
*/
|
|
3971
|
+
export interface WrappedResponseResultResponseDataData {
|
|
3972
|
+
/**
|
|
3973
|
+
*
|
|
3974
|
+
* @type {boolean}
|
|
3975
|
+
* @memberof WrappedResponseResultResponseDataData
|
|
3976
|
+
*/
|
|
3977
|
+
'result': boolean;
|
|
3978
|
+
}
|
|
3643
3979
|
/**
|
|
3644
3980
|
*
|
|
3645
3981
|
* @export
|
|
@@ -3874,6 +4210,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3874
4210
|
* @throws {RequiredError}
|
|
3875
4211
|
*/
|
|
3876
4212
|
fetch: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4213
|
+
/**
|
|
4214
|
+
*
|
|
4215
|
+
* @param {*} [options] Override http request option.
|
|
4216
|
+
* @throws {RequiredError}
|
|
4217
|
+
*/
|
|
4218
|
+
holidaysIndex: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3877
4219
|
/**
|
|
3878
4220
|
*
|
|
3879
4221
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -4074,6 +4416,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4074
4416
|
* @throws {RequiredError}
|
|
4075
4417
|
*/
|
|
4076
4418
|
towersIndex: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4419
|
+
/**
|
|
4420
|
+
*
|
|
4421
|
+
* @param {string} id
|
|
4422
|
+
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
4423
|
+
* @param {*} [options] Override http request option.
|
|
4424
|
+
* @throws {RequiredError}
|
|
4425
|
+
*/
|
|
4426
|
+
visitorSchedulesUpdate: (id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4077
4427
|
/**
|
|
4078
4428
|
*
|
|
4079
4429
|
* @param {string} [tokenId]
|
|
@@ -4114,7 +4464,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4114
4464
|
* @param {*} [options] Override http request option.
|
|
4115
4465
|
* @throws {RequiredError}
|
|
4116
4466
|
*/
|
|
4117
|
-
acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4467
|
+
acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseCreateACRequestResponse>>;
|
|
4118
4468
|
/**
|
|
4119
4469
|
*
|
|
4120
4470
|
* @param {string} [orderBy]
|
|
@@ -4164,6 +4514,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4164
4514
|
* @throws {RequiredError}
|
|
4165
4515
|
*/
|
|
4166
4516
|
fetch(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseFetchParkingResult>>;
|
|
4517
|
+
/**
|
|
4518
|
+
*
|
|
4519
|
+
* @param {*} [options] Override http request option.
|
|
4520
|
+
* @throws {RequiredError}
|
|
4521
|
+
*/
|
|
4522
|
+
holidaysIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseHolidayResponse>>;
|
|
4167
4523
|
/**
|
|
4168
4524
|
*
|
|
4169
4525
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -4364,6 +4720,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4364
4720
|
* @throws {RequiredError}
|
|
4365
4721
|
*/
|
|
4366
4722
|
towersIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseTowerIndexResponse>>;
|
|
4723
|
+
/**
|
|
4724
|
+
*
|
|
4725
|
+
* @param {string} id
|
|
4726
|
+
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
4727
|
+
* @param {*} [options] Override http request option.
|
|
4728
|
+
* @throws {RequiredError}
|
|
4729
|
+
*/
|
|
4730
|
+
visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseResultResponseData>>;
|
|
4367
4731
|
/**
|
|
4368
4732
|
*
|
|
4369
4733
|
* @param {string} [tokenId]
|
|
@@ -4404,7 +4768,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4404
4768
|
* @param {*} [options] Override http request option.
|
|
4405
4769
|
* @throws {RequiredError}
|
|
4406
4770
|
*/
|
|
4407
|
-
acRequestCreate(aCRequestBody: ACRequestBody, options?: any): AxiosPromise<
|
|
4771
|
+
acRequestCreate(aCRequestBody: ACRequestBody, options?: any): AxiosPromise<WrappedOneResponseCreateACRequestResponse>;
|
|
4408
4772
|
/**
|
|
4409
4773
|
*
|
|
4410
4774
|
* @param {string} [orderBy]
|
|
@@ -4454,6 +4818,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4454
4818
|
* @throws {RequiredError}
|
|
4455
4819
|
*/
|
|
4456
4820
|
fetch(options?: any): AxiosPromise<WrappedResponseFetchParkingResult>;
|
|
4821
|
+
/**
|
|
4822
|
+
*
|
|
4823
|
+
* @param {*} [options] Override http request option.
|
|
4824
|
+
* @throws {RequiredError}
|
|
4825
|
+
*/
|
|
4826
|
+
holidaysIndex(options?: any): AxiosPromise<WrappedArrayResponseHolidayResponse>;
|
|
4457
4827
|
/**
|
|
4458
4828
|
*
|
|
4459
4829
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -4654,6 +5024,14 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4654
5024
|
* @throws {RequiredError}
|
|
4655
5025
|
*/
|
|
4656
5026
|
towersIndex(options?: any): AxiosPromise<WrappedResponseTowerIndexResponse>;
|
|
5027
|
+
/**
|
|
5028
|
+
*
|
|
5029
|
+
* @param {string} id
|
|
5030
|
+
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
5031
|
+
* @param {*} [options] Override http request option.
|
|
5032
|
+
* @throws {RequiredError}
|
|
5033
|
+
*/
|
|
5034
|
+
visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: any): AxiosPromise<WrappedResponseResultResponseData>;
|
|
4657
5035
|
/**
|
|
4658
5036
|
*
|
|
4659
5037
|
* @param {string} [tokenId]
|
|
@@ -4697,7 +5075,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4697
5075
|
* @throws {RequiredError}
|
|
4698
5076
|
* @memberof DefaultApi
|
|
4699
5077
|
*/
|
|
4700
|
-
acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
5078
|
+
acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedOneResponseCreateACRequestResponse, any>>;
|
|
4701
5079
|
/**
|
|
4702
5080
|
*
|
|
4703
5081
|
* @param {string} [orderBy]
|
|
@@ -4753,6 +5131,13 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4753
5131
|
* @memberof DefaultApi
|
|
4754
5132
|
*/
|
|
4755
5133
|
fetch(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseFetchParkingResult, any>>;
|
|
5134
|
+
/**
|
|
5135
|
+
*
|
|
5136
|
+
* @param {*} [options] Override http request option.
|
|
5137
|
+
* @throws {RequiredError}
|
|
5138
|
+
* @memberof DefaultApi
|
|
5139
|
+
*/
|
|
5140
|
+
holidaysIndex(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseHolidayResponse, any>>;
|
|
4756
5141
|
/**
|
|
4757
5142
|
*
|
|
4758
5143
|
* @param {CreateFSMembersBody} createFSMembersBody
|
|
@@ -4979,6 +5364,15 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4979
5364
|
* @memberof DefaultApi
|
|
4980
5365
|
*/
|
|
4981
5366
|
towersIndex(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseTowerIndexResponse, any>>;
|
|
5367
|
+
/**
|
|
5368
|
+
*
|
|
5369
|
+
* @param {string} id
|
|
5370
|
+
* @param {UpdateVisitorScheduleBody} updateVisitorScheduleBody
|
|
5371
|
+
* @param {*} [options] Override http request option.
|
|
5372
|
+
* @throws {RequiredError}
|
|
5373
|
+
* @memberof DefaultApi
|
|
5374
|
+
*/
|
|
5375
|
+
visitorSchedulesUpdate(id: string, updateVisitorScheduleBody: UpdateVisitorScheduleBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseResultResponseData, any>>;
|
|
4982
5376
|
/**
|
|
4983
5377
|
*
|
|
4984
5378
|
* @param {string} [tokenId]
|