ob-bms-sdk 0.0.69 → 0.0.71
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 +229 -232
- package/dist/api/api.d.ts +172 -232
- package/dist/api/api.js +108 -8
- package/package.json +1 -1
- package/test.ts +19 -0
package/dist/api/api.d.ts
CHANGED
|
@@ -92,6 +92,12 @@ export interface ACRequestQuery {
|
|
|
92
92
|
* @memberof ACRequestQuery
|
|
93
93
|
*/
|
|
94
94
|
'page_size'?: number;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {ACRequestStatus}
|
|
98
|
+
* @memberof ACRequestQuery
|
|
99
|
+
*/
|
|
100
|
+
'status'?: ACRequestStatus;
|
|
95
101
|
}
|
|
96
102
|
/**
|
|
97
103
|
*
|
|
@@ -137,16 +143,16 @@ export interface ACRequestResponse {
|
|
|
137
143
|
'rate': string;
|
|
138
144
|
/**
|
|
139
145
|
*
|
|
140
|
-
* @type {
|
|
146
|
+
* @type {string}
|
|
141
147
|
* @memberof ACRequestResponse
|
|
142
148
|
*/
|
|
143
|
-
'from':
|
|
149
|
+
'from': string;
|
|
144
150
|
/**
|
|
145
151
|
*
|
|
146
|
-
* @type {
|
|
152
|
+
* @type {string}
|
|
147
153
|
* @memberof ACRequestResponse
|
|
148
154
|
*/
|
|
149
|
-
'to':
|
|
155
|
+
'to': string;
|
|
150
156
|
/**
|
|
151
157
|
*
|
|
152
158
|
* @type {number}
|
|
@@ -167,16 +173,16 @@ export interface ACRequestResponse {
|
|
|
167
173
|
'status': string;
|
|
168
174
|
/**
|
|
169
175
|
*
|
|
170
|
-
* @type {
|
|
176
|
+
* @type {string}
|
|
171
177
|
* @memberof ACRequestResponse
|
|
172
178
|
*/
|
|
173
|
-
'created_at':
|
|
179
|
+
'created_at': string;
|
|
174
180
|
/**
|
|
175
181
|
*
|
|
176
|
-
* @type {
|
|
182
|
+
* @type {string}
|
|
177
183
|
* @memberof ACRequestResponse
|
|
178
184
|
*/
|
|
179
|
-
'updated_at':
|
|
185
|
+
'updated_at': string;
|
|
180
186
|
/**
|
|
181
187
|
*
|
|
182
188
|
* @type {string}
|
|
@@ -208,6 +214,55 @@ export interface ACRequestResponse {
|
|
|
208
214
|
*/
|
|
209
215
|
'requester': RequesterData;
|
|
210
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
*
|
|
219
|
+
* @export
|
|
220
|
+
* @enum {string}
|
|
221
|
+
*/
|
|
222
|
+
export declare const ACRequestStatus: {
|
|
223
|
+
readonly Submitted: "submitted";
|
|
224
|
+
readonly Rejected: "rejected";
|
|
225
|
+
readonly Approved: "approved";
|
|
226
|
+
};
|
|
227
|
+
export type ACRequestStatus = typeof ACRequestStatus[keyof typeof ACRequestStatus];
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* @export
|
|
231
|
+
* @enum {string}
|
|
232
|
+
*/
|
|
233
|
+
export declare const ACRequestStatusApproved: {
|
|
234
|
+
readonly Approved: "approved";
|
|
235
|
+
};
|
|
236
|
+
export type ACRequestStatusApproved = typeof ACRequestStatusApproved[keyof typeof ACRequestStatusApproved];
|
|
237
|
+
/**
|
|
238
|
+
*
|
|
239
|
+
* @export
|
|
240
|
+
* @enum {string}
|
|
241
|
+
*/
|
|
242
|
+
export declare const ACRequestStatusRejected: {
|
|
243
|
+
readonly Rejected: "rejected";
|
|
244
|
+
};
|
|
245
|
+
export type ACRequestStatusRejected = typeof ACRequestStatusRejected[keyof typeof ACRequestStatusRejected];
|
|
246
|
+
/**
|
|
247
|
+
*
|
|
248
|
+
* @export
|
|
249
|
+
* @interface ACRequestUpdateBody
|
|
250
|
+
*/
|
|
251
|
+
export interface ACRequestUpdateBody {
|
|
252
|
+
/**
|
|
253
|
+
*
|
|
254
|
+
* @type {ACRequestUpdateBodyStatus}
|
|
255
|
+
* @memberof ACRequestUpdateBody
|
|
256
|
+
*/
|
|
257
|
+
'status': ACRequestUpdateBodyStatus;
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
*
|
|
261
|
+
* @export
|
|
262
|
+
* @interface ACRequestUpdateBodyStatus
|
|
263
|
+
*/
|
|
264
|
+
export interface ACRequestUpdateBodyStatus {
|
|
265
|
+
}
|
|
211
266
|
/**
|
|
212
267
|
*
|
|
213
268
|
* @export
|
|
@@ -240,23 +295,16 @@ export interface ACZoneData {
|
|
|
240
295
|
'floor_id': string;
|
|
241
296
|
/**
|
|
242
297
|
*
|
|
243
|
-
* @type {
|
|
298
|
+
* @type {string}
|
|
244
299
|
* @memberof ACZoneData
|
|
245
300
|
*/
|
|
246
|
-
'created_at':
|
|
301
|
+
'created_at': string;
|
|
247
302
|
/**
|
|
248
303
|
*
|
|
249
|
-
* @type {
|
|
304
|
+
* @type {string}
|
|
250
305
|
* @memberof ACZoneData
|
|
251
306
|
*/
|
|
252
|
-
'updated_at':
|
|
253
|
-
}
|
|
254
|
-
/**
|
|
255
|
-
*
|
|
256
|
-
* @export
|
|
257
|
-
* @interface ACZoneDataCreatedAt
|
|
258
|
-
*/
|
|
259
|
-
export interface ACZoneDataCreatedAt {
|
|
307
|
+
'updated_at': string;
|
|
260
308
|
}
|
|
261
309
|
/**
|
|
262
310
|
*
|
|
@@ -1585,16 +1633,16 @@ export interface RateDetail {
|
|
|
1585
1633
|
export interface RequesterData {
|
|
1586
1634
|
/**
|
|
1587
1635
|
*
|
|
1588
|
-
* @type {
|
|
1636
|
+
* @type {string}
|
|
1589
1637
|
* @memberof RequesterData
|
|
1590
1638
|
*/
|
|
1591
|
-
'updated_at':
|
|
1639
|
+
'updated_at': string;
|
|
1592
1640
|
/**
|
|
1593
1641
|
*
|
|
1594
|
-
* @type {
|
|
1642
|
+
* @type {string}
|
|
1595
1643
|
* @memberof RequesterData
|
|
1596
1644
|
*/
|
|
1597
|
-
'created_at':
|
|
1645
|
+
'created_at': string;
|
|
1598
1646
|
/**
|
|
1599
1647
|
*
|
|
1600
1648
|
* @type {JsonValue}
|
|
@@ -2562,16 +2610,16 @@ export interface VisitorSchedule {
|
|
|
2562
2610
|
'floor_id': string;
|
|
2563
2611
|
/**
|
|
2564
2612
|
*
|
|
2565
|
-
* @type {
|
|
2613
|
+
* @type {VisitorScheduleFrom}
|
|
2566
2614
|
* @memberof VisitorSchedule
|
|
2567
2615
|
*/
|
|
2568
|
-
'from':
|
|
2616
|
+
'from': VisitorScheduleFrom;
|
|
2569
2617
|
/**
|
|
2570
2618
|
*
|
|
2571
|
-
* @type {
|
|
2619
|
+
* @type {VisitorScheduleFrom}
|
|
2572
2620
|
* @memberof VisitorSchedule
|
|
2573
2621
|
*/
|
|
2574
|
-
'to':
|
|
2622
|
+
'to': VisitorScheduleFrom;
|
|
2575
2623
|
/**
|
|
2576
2624
|
*
|
|
2577
2625
|
* @type {object}
|
|
@@ -2579,6 +2627,13 @@ export interface VisitorSchedule {
|
|
|
2579
2627
|
*/
|
|
2580
2628
|
'repetition'?: object;
|
|
2581
2629
|
}
|
|
2630
|
+
/**
|
|
2631
|
+
*
|
|
2632
|
+
* @export
|
|
2633
|
+
* @interface VisitorScheduleFrom
|
|
2634
|
+
*/
|
|
2635
|
+
export interface VisitorScheduleFrom {
|
|
2636
|
+
}
|
|
2582
2637
|
/**
|
|
2583
2638
|
*
|
|
2584
2639
|
* @export
|
|
@@ -2798,258 +2853,106 @@ export interface WebhookCreateBodyPayload {
|
|
|
2798
2853
|
/**
|
|
2799
2854
|
*
|
|
2800
2855
|
* @export
|
|
2801
|
-
* @interface
|
|
2856
|
+
* @interface WrappedArrayResponseACRequestResponse
|
|
2802
2857
|
*/
|
|
2803
|
-
export interface
|
|
2858
|
+
export interface WrappedArrayResponseACRequestResponse {
|
|
2804
2859
|
/**
|
|
2805
2860
|
*
|
|
2806
|
-
* @type {Array<
|
|
2807
|
-
* @memberof
|
|
2861
|
+
* @type {Array<ACRequestResponse>}
|
|
2862
|
+
* @memberof WrappedArrayResponseACRequestResponse
|
|
2808
2863
|
*/
|
|
2809
|
-
'data': Array<
|
|
2864
|
+
'data': Array<ACRequestResponse>;
|
|
2810
2865
|
}
|
|
2811
2866
|
/**
|
|
2812
2867
|
*
|
|
2813
2868
|
* @export
|
|
2814
|
-
* @interface
|
|
2869
|
+
* @interface WrappedArrayResponseACZoneData
|
|
2815
2870
|
*/
|
|
2816
|
-
export interface
|
|
2871
|
+
export interface WrappedArrayResponseACZoneData {
|
|
2817
2872
|
/**
|
|
2818
2873
|
*
|
|
2819
|
-
* @type {Array<
|
|
2820
|
-
* @memberof
|
|
2874
|
+
* @type {Array<ACZoneData>}
|
|
2875
|
+
* @memberof WrappedArrayResponseACZoneData
|
|
2821
2876
|
*/
|
|
2822
|
-
'data': Array<
|
|
2877
|
+
'data': Array<ACZoneData>;
|
|
2823
2878
|
}
|
|
2824
2879
|
/**
|
|
2825
2880
|
*
|
|
2826
2881
|
* @export
|
|
2827
|
-
* @interface
|
|
2882
|
+
* @interface WrappedArrayResponseSensorsIndexResponseData
|
|
2828
2883
|
*/
|
|
2829
|
-
export interface
|
|
2884
|
+
export interface WrappedArrayResponseSensorsIndexResponseData {
|
|
2830
2885
|
/**
|
|
2831
2886
|
*
|
|
2832
|
-
* @type {
|
|
2833
|
-
* @memberof
|
|
2887
|
+
* @type {Array<FloorSensorData>}
|
|
2888
|
+
* @memberof WrappedArrayResponseSensorsIndexResponseData
|
|
2834
2889
|
*/
|
|
2835
|
-
'data':
|
|
2890
|
+
'data': Array<FloorSensorData>;
|
|
2836
2891
|
}
|
|
2837
2892
|
/**
|
|
2838
2893
|
*
|
|
2839
2894
|
* @export
|
|
2840
|
-
* @interface
|
|
2895
|
+
* @interface WrappedArrayResponseServiceRequestData
|
|
2841
2896
|
*/
|
|
2842
|
-
export interface
|
|
2897
|
+
export interface WrappedArrayResponseServiceRequestData {
|
|
2843
2898
|
/**
|
|
2844
2899
|
*
|
|
2845
|
-
* @type {ServiceRequestData}
|
|
2846
|
-
* @memberof
|
|
2900
|
+
* @type {Array<ServiceRequestData>}
|
|
2901
|
+
* @memberof WrappedArrayResponseServiceRequestData
|
|
2847
2902
|
*/
|
|
2848
|
-
'data': ServiceRequestData
|
|
2903
|
+
'data': Array<ServiceRequestData>;
|
|
2849
2904
|
}
|
|
2850
2905
|
/**
|
|
2851
2906
|
*
|
|
2852
2907
|
* @export
|
|
2853
|
-
* @interface
|
|
2908
|
+
* @interface WrappedOneResponseACRequestResponse
|
|
2854
2909
|
*/
|
|
2855
|
-
export interface
|
|
2910
|
+
export interface WrappedOneResponseACRequestResponse {
|
|
2856
2911
|
/**
|
|
2857
2912
|
*
|
|
2858
|
-
* @type {
|
|
2859
|
-
* @memberof
|
|
2913
|
+
* @type {ACRequestResponse}
|
|
2914
|
+
* @memberof WrappedOneResponseACRequestResponse
|
|
2860
2915
|
*/
|
|
2861
|
-
'data':
|
|
2916
|
+
'data': ACRequestResponse;
|
|
2862
2917
|
}
|
|
2863
2918
|
/**
|
|
2864
2919
|
*
|
|
2865
2920
|
* @export
|
|
2866
|
-
* @interface
|
|
2921
|
+
* @interface WrappedOneResponseBoolean
|
|
2867
2922
|
*/
|
|
2868
|
-
export interface
|
|
2869
|
-
/**
|
|
2870
|
-
*
|
|
2871
|
-
* @type {string}
|
|
2872
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2873
|
-
*/
|
|
2874
|
-
'id': string;
|
|
2875
|
-
/**
|
|
2876
|
-
*
|
|
2877
|
-
* @type {string}
|
|
2878
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2879
|
-
*/
|
|
2880
|
-
'tower_id': string;
|
|
2881
|
-
/**
|
|
2882
|
-
*
|
|
2883
|
-
* @type {string}
|
|
2884
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2885
|
-
*/
|
|
2886
|
-
'floor_id': string;
|
|
2887
|
-
/**
|
|
2888
|
-
*
|
|
2889
|
-
* @type {string}
|
|
2890
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2891
|
-
*/
|
|
2892
|
-
'ac_zone_id': string;
|
|
2893
|
-
/**
|
|
2894
|
-
*
|
|
2895
|
-
* @type {string}
|
|
2896
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2897
|
-
*/
|
|
2898
|
-
'estimated_cost': string;
|
|
2899
|
-
/**
|
|
2900
|
-
*
|
|
2901
|
-
* @type {string}
|
|
2902
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2903
|
-
*/
|
|
2904
|
-
'rate': string;
|
|
2923
|
+
export interface WrappedOneResponseBoolean {
|
|
2905
2924
|
/**
|
|
2906
2925
|
*
|
|
2907
|
-
* @type {
|
|
2908
|
-
* @memberof
|
|
2909
|
-
*/
|
|
2910
|
-
'from': ACZoneDataCreatedAt;
|
|
2911
|
-
/**
|
|
2912
|
-
*
|
|
2913
|
-
* @type {ACZoneDataCreatedAt}
|
|
2914
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2915
|
-
*/
|
|
2916
|
-
'to': ACZoneDataCreatedAt;
|
|
2917
|
-
/**
|
|
2918
|
-
*
|
|
2919
|
-
* @type {number}
|
|
2920
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2921
|
-
*/
|
|
2922
|
-
'duration_hour': number;
|
|
2923
|
-
/**
|
|
2924
|
-
*
|
|
2925
|
-
* @type {number}
|
|
2926
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2927
|
-
*/
|
|
2928
|
-
'area_size': number;
|
|
2929
|
-
/**
|
|
2930
|
-
*
|
|
2931
|
-
* @type {string}
|
|
2932
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2933
|
-
*/
|
|
2934
|
-
'status': string;
|
|
2935
|
-
/**
|
|
2936
|
-
*
|
|
2937
|
-
* @type {ACZoneDataCreatedAt}
|
|
2938
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2939
|
-
*/
|
|
2940
|
-
'created_at': ACZoneDataCreatedAt;
|
|
2941
|
-
/**
|
|
2942
|
-
*
|
|
2943
|
-
* @type {ACZoneDataCreatedAt}
|
|
2944
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2945
|
-
*/
|
|
2946
|
-
'updated_at': ACZoneDataCreatedAt;
|
|
2947
|
-
/**
|
|
2948
|
-
*
|
|
2949
|
-
* @type {string}
|
|
2950
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2951
|
-
*/
|
|
2952
|
-
'requester_id': string;
|
|
2953
|
-
/**
|
|
2954
|
-
*
|
|
2955
|
-
* @type {ACZoneData}
|
|
2956
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2957
|
-
*/
|
|
2958
|
-
'ac_zone': ACZoneData;
|
|
2959
|
-
/**
|
|
2960
|
-
*
|
|
2961
|
-
* @type {FloorData}
|
|
2962
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2963
|
-
*/
|
|
2964
|
-
'floor': FloorData;
|
|
2965
|
-
/**
|
|
2966
|
-
*
|
|
2967
|
-
* @type {TowerData}
|
|
2968
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2969
|
-
*/
|
|
2970
|
-
'tower': TowerData;
|
|
2971
|
-
/**
|
|
2972
|
-
*
|
|
2973
|
-
* @type {RequesterData}
|
|
2974
|
-
* @memberof WrappedResponseACRequestResponseData
|
|
2975
|
-
*/
|
|
2976
|
-
'requester': RequesterData;
|
|
2977
|
-
}
|
|
2978
|
-
/**
|
|
2979
|
-
*
|
|
2980
|
-
* @export
|
|
2981
|
-
* @interface WrappedResponseACZoneData
|
|
2982
|
-
*/
|
|
2983
|
-
export interface WrappedResponseACZoneData {
|
|
2984
|
-
/**
|
|
2985
|
-
*
|
|
2986
|
-
* @type {WrappedResponseACZoneDataData}
|
|
2987
|
-
* @memberof WrappedResponseACZoneData
|
|
2926
|
+
* @type {boolean}
|
|
2927
|
+
* @memberof WrappedOneResponseBoolean
|
|
2988
2928
|
*/
|
|
2989
|
-
'data':
|
|
2929
|
+
'data': boolean;
|
|
2990
2930
|
}
|
|
2991
2931
|
/**
|
|
2992
2932
|
*
|
|
2993
2933
|
* @export
|
|
2994
|
-
* @interface
|
|
2934
|
+
* @interface WrappedOneResponseCreateServiceRequestResponse
|
|
2995
2935
|
*/
|
|
2996
|
-
export interface
|
|
2997
|
-
/**
|
|
2998
|
-
*
|
|
2999
|
-
* @type {string}
|
|
3000
|
-
* @memberof WrappedResponseACZoneDataData
|
|
3001
|
-
*/
|
|
3002
|
-
'id': string;
|
|
3003
|
-
/**
|
|
3004
|
-
*
|
|
3005
|
-
* @type {string}
|
|
3006
|
-
* @memberof WrappedResponseACZoneDataData
|
|
3007
|
-
*/
|
|
3008
|
-
'name': string;
|
|
3009
|
-
/**
|
|
3010
|
-
*
|
|
3011
|
-
* @type {number}
|
|
3012
|
-
* @memberof WrappedResponseACZoneDataData
|
|
3013
|
-
*/
|
|
3014
|
-
'area_size': number;
|
|
3015
|
-
/**
|
|
3016
|
-
*
|
|
3017
|
-
* @type {string}
|
|
3018
|
-
* @memberof WrappedResponseACZoneDataData
|
|
3019
|
-
*/
|
|
3020
|
-
'floor_id': string;
|
|
3021
|
-
/**
|
|
3022
|
-
*
|
|
3023
|
-
* @type {ACZoneDataCreatedAt}
|
|
3024
|
-
* @memberof WrappedResponseACZoneDataData
|
|
3025
|
-
*/
|
|
3026
|
-
'created_at': ACZoneDataCreatedAt;
|
|
2936
|
+
export interface WrappedOneResponseCreateServiceRequestResponse {
|
|
3027
2937
|
/**
|
|
3028
2938
|
*
|
|
3029
|
-
* @type {
|
|
3030
|
-
* @memberof
|
|
2939
|
+
* @type {CreateServiceRequestResponse}
|
|
2940
|
+
* @memberof WrappedOneResponseCreateServiceRequestResponse
|
|
3031
2941
|
*/
|
|
3032
|
-
'
|
|
2942
|
+
'data': CreateServiceRequestResponse;
|
|
3033
2943
|
}
|
|
3034
2944
|
/**
|
|
3035
2945
|
*
|
|
3036
2946
|
* @export
|
|
3037
|
-
* @interface
|
|
2947
|
+
* @interface WrappedOneResponseServiceRequestData
|
|
3038
2948
|
*/
|
|
3039
|
-
export interface
|
|
2949
|
+
export interface WrappedOneResponseServiceRequestData {
|
|
3040
2950
|
/**
|
|
3041
2951
|
*
|
|
3042
|
-
* @type {
|
|
3043
|
-
* @memberof
|
|
2952
|
+
* @type {ServiceRequestData}
|
|
2953
|
+
* @memberof WrappedOneResponseServiceRequestData
|
|
3044
2954
|
*/
|
|
3045
|
-
'data':
|
|
3046
|
-
}
|
|
3047
|
-
/**
|
|
3048
|
-
*
|
|
3049
|
-
* @export
|
|
3050
|
-
* @interface WrappedResponseBooleanData
|
|
3051
|
-
*/
|
|
3052
|
-
export interface WrappedResponseBooleanData {
|
|
2955
|
+
'data': ServiceRequestData;
|
|
3053
2956
|
}
|
|
3054
2957
|
/**
|
|
3055
2958
|
*
|
|
@@ -3712,10 +3615,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3712
3615
|
* @param {string} [orderDirection]
|
|
3713
3616
|
* @param {number} [pageNumber]
|
|
3714
3617
|
* @param {number} [pageSize]
|
|
3618
|
+
* @param {ACRequestStatus} [status]
|
|
3715
3619
|
* @param {*} [options] Override http request option.
|
|
3716
3620
|
* @throws {RequiredError}
|
|
3717
3621
|
*/
|
|
3718
|
-
acRequestIndex: (requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3622
|
+
acRequestIndex: (requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, status?: ACRequestStatus, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3719
3623
|
/**
|
|
3720
3624
|
*
|
|
3721
3625
|
* @param {string} id
|
|
@@ -3723,6 +3627,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3723
3627
|
* @throws {RequiredError}
|
|
3724
3628
|
*/
|
|
3725
3629
|
acRequestShow: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3630
|
+
/**
|
|
3631
|
+
*
|
|
3632
|
+
* @param {string} id
|
|
3633
|
+
* @param {ACRequestUpdateBody} aCRequestUpdateBody
|
|
3634
|
+
* @param {*} [options] Override http request option.
|
|
3635
|
+
* @throws {RequiredError}
|
|
3636
|
+
*/
|
|
3637
|
+
acRequestUpdate: (id: string, aCRequestUpdateBody: ACRequestUpdateBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3726
3638
|
/**
|
|
3727
3639
|
*
|
|
3728
3640
|
* @param {string} floorId
|
|
@@ -3949,7 +3861,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3949
3861
|
* @param {*} [options] Override http request option.
|
|
3950
3862
|
* @throws {RequiredError}
|
|
3951
3863
|
*/
|
|
3952
|
-
acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3864
|
+
acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseBoolean>>;
|
|
3953
3865
|
/**
|
|
3954
3866
|
*
|
|
3955
3867
|
* @param {string} [requesterId]
|
|
@@ -3957,24 +3869,33 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3957
3869
|
* @param {string} [orderDirection]
|
|
3958
3870
|
* @param {number} [pageNumber]
|
|
3959
3871
|
* @param {number} [pageSize]
|
|
3872
|
+
* @param {ACRequestStatus} [status]
|
|
3873
|
+
* @param {*} [options] Override http request option.
|
|
3874
|
+
* @throws {RequiredError}
|
|
3875
|
+
*/
|
|
3876
|
+
acRequestIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, status?: ACRequestStatus, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseACRequestResponse>>;
|
|
3877
|
+
/**
|
|
3878
|
+
*
|
|
3879
|
+
* @param {string} id
|
|
3960
3880
|
* @param {*} [options] Override http request option.
|
|
3961
3881
|
* @throws {RequiredError}
|
|
3962
3882
|
*/
|
|
3963
|
-
|
|
3883
|
+
acRequestShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseACRequestResponse>>;
|
|
3964
3884
|
/**
|
|
3965
3885
|
*
|
|
3966
3886
|
* @param {string} id
|
|
3887
|
+
* @param {ACRequestUpdateBody} aCRequestUpdateBody
|
|
3967
3888
|
* @param {*} [options] Override http request option.
|
|
3968
3889
|
* @throws {RequiredError}
|
|
3969
3890
|
*/
|
|
3970
|
-
|
|
3891
|
+
acRequestUpdate(id: string, aCRequestUpdateBody: ACRequestUpdateBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseACRequestResponse>>;
|
|
3971
3892
|
/**
|
|
3972
3893
|
*
|
|
3973
3894
|
* @param {string} floorId
|
|
3974
3895
|
* @param {*} [options] Override http request option.
|
|
3975
3896
|
* @throws {RequiredError}
|
|
3976
3897
|
*/
|
|
3977
|
-
acZonesShow(floorId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3898
|
+
acZonesShow(floorId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseACZoneData>>;
|
|
3978
3899
|
/**
|
|
3979
3900
|
*
|
|
3980
3901
|
* @param {WebhookCreateBody} webhookCreateBody
|
|
@@ -4194,7 +4115,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4194
4115
|
* @param {*} [options] Override http request option.
|
|
4195
4116
|
* @throws {RequiredError}
|
|
4196
4117
|
*/
|
|
4197
|
-
acRequestCreate(aCRequestBody: ACRequestBody, options?: any): AxiosPromise<
|
|
4118
|
+
acRequestCreate(aCRequestBody: ACRequestBody, options?: any): AxiosPromise<WrappedOneResponseBoolean>;
|
|
4198
4119
|
/**
|
|
4199
4120
|
*
|
|
4200
4121
|
* @param {string} [requesterId]
|
|
@@ -4202,24 +4123,33 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4202
4123
|
* @param {string} [orderDirection]
|
|
4203
4124
|
* @param {number} [pageNumber]
|
|
4204
4125
|
* @param {number} [pageSize]
|
|
4126
|
+
* @param {ACRequestStatus} [status]
|
|
4127
|
+
* @param {*} [options] Override http request option.
|
|
4128
|
+
* @throws {RequiredError}
|
|
4129
|
+
*/
|
|
4130
|
+
acRequestIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, status?: ACRequestStatus, options?: any): AxiosPromise<WrappedArrayResponseACRequestResponse>;
|
|
4131
|
+
/**
|
|
4132
|
+
*
|
|
4133
|
+
* @param {string} id
|
|
4205
4134
|
* @param {*} [options] Override http request option.
|
|
4206
4135
|
* @throws {RequiredError}
|
|
4207
4136
|
*/
|
|
4208
|
-
|
|
4137
|
+
acRequestShow(id: string, options?: any): AxiosPromise<WrappedOneResponseACRequestResponse>;
|
|
4209
4138
|
/**
|
|
4210
4139
|
*
|
|
4211
4140
|
* @param {string} id
|
|
4141
|
+
* @param {ACRequestUpdateBody} aCRequestUpdateBody
|
|
4212
4142
|
* @param {*} [options] Override http request option.
|
|
4213
4143
|
* @throws {RequiredError}
|
|
4214
4144
|
*/
|
|
4215
|
-
|
|
4145
|
+
acRequestUpdate(id: string, aCRequestUpdateBody: ACRequestUpdateBody, options?: any): AxiosPromise<WrappedOneResponseACRequestResponse>;
|
|
4216
4146
|
/**
|
|
4217
4147
|
*
|
|
4218
4148
|
* @param {string} floorId
|
|
4219
4149
|
* @param {*} [options] Override http request option.
|
|
4220
4150
|
* @throws {RequiredError}
|
|
4221
4151
|
*/
|
|
4222
|
-
acZonesShow(floorId: string, options?: any): AxiosPromise<
|
|
4152
|
+
acZonesShow(floorId: string, options?: any): AxiosPromise<WrappedArrayResponseACZoneData>;
|
|
4223
4153
|
/**
|
|
4224
4154
|
*
|
|
4225
4155
|
* @param {WebhookCreateBody} webhookCreateBody
|
|
@@ -4442,7 +4372,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4442
4372
|
* @throws {RequiredError}
|
|
4443
4373
|
* @memberof DefaultApi
|
|
4444
4374
|
*/
|
|
4445
|
-
acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
4375
|
+
acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedOneResponseBoolean, any>>;
|
|
4446
4376
|
/**
|
|
4447
4377
|
*
|
|
4448
4378
|
* @param {string} [requesterId]
|
|
@@ -4450,19 +4380,29 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4450
4380
|
* @param {string} [orderDirection]
|
|
4451
4381
|
* @param {number} [pageNumber]
|
|
4452
4382
|
* @param {number} [pageSize]
|
|
4383
|
+
* @param {ACRequestStatus} [status]
|
|
4384
|
+
* @param {*} [options] Override http request option.
|
|
4385
|
+
* @throws {RequiredError}
|
|
4386
|
+
* @memberof DefaultApi
|
|
4387
|
+
*/
|
|
4388
|
+
acRequestIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, status?: ACRequestStatus, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseACRequestResponse, any>>;
|
|
4389
|
+
/**
|
|
4390
|
+
*
|
|
4391
|
+
* @param {string} id
|
|
4453
4392
|
* @param {*} [options] Override http request option.
|
|
4454
4393
|
* @throws {RequiredError}
|
|
4455
4394
|
* @memberof DefaultApi
|
|
4456
4395
|
*/
|
|
4457
|
-
|
|
4396
|
+
acRequestShow(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedOneResponseACRequestResponse, any>>;
|
|
4458
4397
|
/**
|
|
4459
4398
|
*
|
|
4460
4399
|
* @param {string} id
|
|
4400
|
+
* @param {ACRequestUpdateBody} aCRequestUpdateBody
|
|
4461
4401
|
* @param {*} [options] Override http request option.
|
|
4462
4402
|
* @throws {RequiredError}
|
|
4463
4403
|
* @memberof DefaultApi
|
|
4464
4404
|
*/
|
|
4465
|
-
|
|
4405
|
+
acRequestUpdate(id: string, aCRequestUpdateBody: ACRequestUpdateBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedOneResponseACRequestResponse, any>>;
|
|
4466
4406
|
/**
|
|
4467
4407
|
*
|
|
4468
4408
|
* @param {string} floorId
|
|
@@ -4470,7 +4410,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4470
4410
|
* @throws {RequiredError}
|
|
4471
4411
|
* @memberof DefaultApi
|
|
4472
4412
|
*/
|
|
4473
|
-
acZonesShow(floorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
4413
|
+
acZonesShow(floorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseACZoneData, any>>;
|
|
4474
4414
|
/**
|
|
4475
4415
|
*
|
|
4476
4416
|
* @param {WebhookCreateBody} webhookCreateBody
|