ob-bms-sdk 0.0.67 → 0.0.69

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/dist/api/api.d.ts CHANGED
@@ -16,100 +16,247 @@ import { BaseAPI } from './base';
16
16
  /**
17
17
  *
18
18
  * @export
19
- * @interface ACZoneData
19
+ * @interface ACRequestBody
20
20
  */
21
- export interface ACZoneData {
21
+ export interface ACRequestBody {
22
22
  /**
23
23
  *
24
24
  * @type {string}
25
- * @memberof ACZoneData
25
+ * @memberof ACRequestBody
26
26
  */
27
- 'updated_at': string;
27
+ 'floor_id': string;
28
28
  /**
29
29
  *
30
30
  * @type {string}
31
- * @memberof ACZoneData
31
+ * @memberof ACRequestBody
32
32
  */
33
- 'created_at': string;
33
+ 'ac_zone_id': string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof ACRequestBody
38
+ */
39
+ 'tower_id': string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof ACRequestBody
44
+ */
45
+ 'requester_id': string;
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof ACRequestBody
50
+ */
51
+ 'date': string;
34
52
  /**
35
53
  *
36
54
  * @type {number}
37
- * @memberof ACZoneData
55
+ * @memberof ACRequestBody
38
56
  */
39
- 'area_size': number;
57
+ 'duration': number;
58
+ }
59
+ /**
60
+ *
61
+ * @export
62
+ * @interface ACRequestQuery
63
+ */
64
+ export interface ACRequestQuery {
40
65
  /**
41
66
  *
42
67
  * @type {string}
43
- * @memberof ACZoneData
68
+ * @memberof ACRequestQuery
44
69
  */
45
- 'name': string;
70
+ 'requester_id'?: string;
46
71
  /**
47
72
  *
48
73
  * @type {string}
49
- * @memberof ACZoneData
74
+ * @memberof ACRequestQuery
50
75
  */
51
- 'floor_id': string;
76
+ 'order_by'?: string;
52
77
  /**
53
78
  *
54
79
  * @type {string}
55
- * @memberof ACZoneData
80
+ * @memberof ACRequestQuery
56
81
  */
57
- 'id': string;
82
+ 'order_direction'?: string;
83
+ /**
84
+ *
85
+ * @type {number}
86
+ * @memberof ACRequestQuery
87
+ */
88
+ 'page_number'?: number;
89
+ /**
90
+ *
91
+ * @type {number}
92
+ * @memberof ACRequestQuery
93
+ */
94
+ 'page_size'?: number;
58
95
  }
59
96
  /**
60
97
  *
61
98
  * @export
62
- * @interface AuthorizedLocationData
99
+ * @interface ACRequestResponse
63
100
  */
64
- export interface AuthorizedLocationData {
101
+ export interface ACRequestResponse {
65
102
  /**
66
103
  *
67
104
  * @type {string}
68
- * @memberof AuthorizedLocationData
105
+ * @memberof ACRequestResponse
69
106
  */
70
107
  'id': string;
71
108
  /**
72
109
  *
73
110
  * @type {string}
74
- * @memberof AuthorizedLocationData
111
+ * @memberof ACRequestResponse
75
112
  */
76
- 'uid': string;
113
+ 'tower_id': string;
77
114
  /**
78
115
  *
79
116
  * @type {string}
80
- * @memberof AuthorizedLocationData
117
+ * @memberof ACRequestResponse
81
118
  */
82
- 'name': string;
119
+ 'floor_id': string;
83
120
  /**
84
121
  *
85
- * @type {JsonValue}
86
- * @memberof AuthorizedLocationData
122
+ * @type {string}
123
+ * @memberof ACRequestResponse
87
124
  */
88
- 'display_name': JsonValue | null;
125
+ 'ac_zone_id': string;
89
126
  /**
90
127
  *
91
128
  * @type {string}
92
- * @memberof AuthorizedLocationData
129
+ * @memberof ACRequestResponse
93
130
  */
94
- 'tower_id': string;
131
+ 'estimated_cost': string;
95
132
  /**
96
133
  *
97
134
  * @type {string}
98
- * @memberof AuthorizedLocationData
135
+ * @memberof ACRequestResponse
99
136
  */
100
- 'floor_id': string;
137
+ 'rate': string;
138
+ /**
139
+ *
140
+ * @type {ACZoneDataCreatedAt}
141
+ * @memberof ACRequestResponse
142
+ */
143
+ 'from': ACZoneDataCreatedAt;
144
+ /**
145
+ *
146
+ * @type {ACZoneDataCreatedAt}
147
+ * @memberof ACRequestResponse
148
+ */
149
+ 'to': ACZoneDataCreatedAt;
150
+ /**
151
+ *
152
+ * @type {number}
153
+ * @memberof ACRequestResponse
154
+ */
155
+ 'duration_hour': number;
156
+ /**
157
+ *
158
+ * @type {number}
159
+ * @memberof ACRequestResponse
160
+ */
161
+ 'area_size': number;
101
162
  /**
102
163
  *
103
164
  * @type {string}
104
- * @memberof AuthorizedLocationData
165
+ * @memberof ACRequestResponse
105
166
  */
106
- 'created_at': string;
167
+ 'status': string;
168
+ /**
169
+ *
170
+ * @type {ACZoneDataCreatedAt}
171
+ * @memberof ACRequestResponse
172
+ */
173
+ 'created_at': ACZoneDataCreatedAt;
174
+ /**
175
+ *
176
+ * @type {ACZoneDataCreatedAt}
177
+ * @memberof ACRequestResponse
178
+ */
179
+ 'updated_at': ACZoneDataCreatedAt;
107
180
  /**
108
181
  *
109
182
  * @type {string}
110
- * @memberof AuthorizedLocationData
183
+ * @memberof ACRequestResponse
111
184
  */
112
- 'updated_at': string;
185
+ 'requester_id': string;
186
+ /**
187
+ *
188
+ * @type {ACZoneData}
189
+ * @memberof ACRequestResponse
190
+ */
191
+ 'ac_zone': ACZoneData;
192
+ /**
193
+ *
194
+ * @type {FloorData}
195
+ * @memberof ACRequestResponse
196
+ */
197
+ 'floor': FloorData;
198
+ /**
199
+ *
200
+ * @type {TowerData}
201
+ * @memberof ACRequestResponse
202
+ */
203
+ 'tower': TowerData;
204
+ /**
205
+ *
206
+ * @type {RequesterData}
207
+ * @memberof ACRequestResponse
208
+ */
209
+ 'requester': RequesterData;
210
+ }
211
+ /**
212
+ *
213
+ * @export
214
+ * @interface ACZoneData
215
+ */
216
+ export interface ACZoneData {
217
+ /**
218
+ *
219
+ * @type {string}
220
+ * @memberof ACZoneData
221
+ */
222
+ 'id': string;
223
+ /**
224
+ *
225
+ * @type {string}
226
+ * @memberof ACZoneData
227
+ */
228
+ 'name': string;
229
+ /**
230
+ *
231
+ * @type {number}
232
+ * @memberof ACZoneData
233
+ */
234
+ 'area_size': number;
235
+ /**
236
+ *
237
+ * @type {string}
238
+ * @memberof ACZoneData
239
+ */
240
+ 'floor_id': string;
241
+ /**
242
+ *
243
+ * @type {ACZoneDataCreatedAt}
244
+ * @memberof ACZoneData
245
+ */
246
+ 'created_at': ACZoneDataCreatedAt;
247
+ /**
248
+ *
249
+ * @type {ACZoneDataCreatedAt}
250
+ * @memberof ACZoneData
251
+ */
252
+ 'updated_at': ACZoneDataCreatedAt;
253
+ }
254
+ /**
255
+ *
256
+ * @export
257
+ * @interface ACZoneDataCreatedAt
258
+ */
259
+ export interface ACZoneDataCreatedAt {
113
260
  }
114
261
  /**
115
262
  *
@@ -478,19 +625,19 @@ export interface FloorData {
478
625
  * @type {string}
479
626
  * @memberof FloorData
480
627
  */
481
- 'id': string;
628
+ 'updated_at': string;
482
629
  /**
483
630
  *
484
631
  * @type {string}
485
632
  * @memberof FloorData
486
633
  */
487
- 'uid': string;
634
+ 'created_at': string;
488
635
  /**
489
636
  *
490
637
  * @type {string}
491
638
  * @memberof FloorData
492
639
  */
493
- 'name': string;
640
+ 'tower_id': string;
494
641
  /**
495
642
  *
496
643
  * @type {JsonValue}
@@ -502,19 +649,19 @@ export interface FloorData {
502
649
  * @type {string}
503
650
  * @memberof FloorData
504
651
  */
505
- 'tower_id': string;
652
+ 'name': string;
506
653
  /**
507
654
  *
508
655
  * @type {string}
509
656
  * @memberof FloorData
510
657
  */
511
- 'created_at': string;
658
+ 'uid': string;
512
659
  /**
513
660
  *
514
661
  * @type {string}
515
662
  * @memberof FloorData
516
663
  */
517
- 'updated_at': string;
664
+ 'id': string;
518
665
  }
519
666
  /**
520
667
  *
@@ -1430,6 +1577,49 @@ export interface RateDetail {
1430
1577
  */
1431
1578
  'en': string;
1432
1579
  }
1580
+ /**
1581
+ *
1582
+ * @export
1583
+ * @interface RequesterData
1584
+ */
1585
+ export interface RequesterData {
1586
+ /**
1587
+ *
1588
+ * @type {ACZoneDataCreatedAt}
1589
+ * @memberof RequesterData
1590
+ */
1591
+ 'updated_at': ACZoneDataCreatedAt;
1592
+ /**
1593
+ *
1594
+ * @type {ACZoneDataCreatedAt}
1595
+ * @memberof RequesterData
1596
+ */
1597
+ 'created_at': ACZoneDataCreatedAt;
1598
+ /**
1599
+ *
1600
+ * @type {JsonValue}
1601
+ * @memberof RequesterData
1602
+ */
1603
+ 'metadata'?: JsonValue | null;
1604
+ /**
1605
+ *
1606
+ * @type {string}
1607
+ * @memberof RequesterData
1608
+ */
1609
+ 'account_id'?: string | null;
1610
+ /**
1611
+ *
1612
+ * @type {string}
1613
+ * @memberof RequesterData
1614
+ */
1615
+ 'uid': string;
1616
+ /**
1617
+ *
1618
+ * @type {string}
1619
+ * @memberof RequesterData
1620
+ */
1621
+ 'id': string;
1622
+ }
1433
1623
  /**
1434
1624
  *
1435
1625
  * @export
@@ -1687,6 +1877,44 @@ export declare const ServiceRequestStatus: {
1687
1877
  readonly Done: "done";
1688
1878
  };
1689
1879
  export type ServiceRequestStatus = typeof ServiceRequestStatus[keyof typeof ServiceRequestStatus];
1880
+ /**
1881
+ *
1882
+ * @export
1883
+ * @enum {string}
1884
+ */
1885
+ export declare const ServiceRequestStatusDone: {
1886
+ readonly Done: "done";
1887
+ };
1888
+ export type ServiceRequestStatusDone = typeof ServiceRequestStatusDone[keyof typeof ServiceRequestStatusDone];
1889
+ /**
1890
+ *
1891
+ * @export
1892
+ * @enum {string}
1893
+ */
1894
+ export declare const ServiceRequestStatusInProgress: {
1895
+ readonly InProgress: "in_progress";
1896
+ };
1897
+ export type ServiceRequestStatusInProgress = typeof ServiceRequestStatusInProgress[keyof typeof ServiceRequestStatusInProgress];
1898
+ /**
1899
+ *
1900
+ * @export
1901
+ * @interface ServiceRequestsUpdateRequestBody
1902
+ */
1903
+ export interface ServiceRequestsUpdateRequestBody {
1904
+ /**
1905
+ *
1906
+ * @type {ServiceRequestsUpdateRequestBodyStatus}
1907
+ * @memberof ServiceRequestsUpdateRequestBody
1908
+ */
1909
+ 'status': ServiceRequestsUpdateRequestBodyStatus;
1910
+ }
1911
+ /**
1912
+ *
1913
+ * @export
1914
+ * @interface ServiceRequestsUpdateRequestBodyStatus
1915
+ */
1916
+ export interface ServiceRequestsUpdateRequestBodyStatus {
1917
+ }
1690
1918
  /**
1691
1919
  *
1692
1920
  * @export
@@ -2054,19 +2282,19 @@ export interface TowerData {
2054
2282
  * @type {string}
2055
2283
  * @memberof TowerData
2056
2284
  */
2057
- 'id': string;
2285
+ 'updated_at': string;
2058
2286
  /**
2059
2287
  *
2060
2288
  * @type {string}
2061
2289
  * @memberof TowerData
2062
2290
  */
2063
- 'uid': string;
2291
+ 'created_at': string;
2064
2292
  /**
2065
2293
  *
2066
2294
  * @type {string}
2067
2295
  * @memberof TowerData
2068
2296
  */
2069
- 'name': string;
2297
+ 'project_id': string;
2070
2298
  /**
2071
2299
  *
2072
2300
  * @type {JsonValue}
@@ -2078,31 +2306,19 @@ export interface TowerData {
2078
2306
  * @type {string}
2079
2307
  * @memberof TowerData
2080
2308
  */
2081
- 'project_id': string;
2309
+ 'name': string;
2082
2310
  /**
2083
2311
  *
2084
2312
  * @type {string}
2085
2313
  * @memberof TowerData
2086
2314
  */
2087
- 'created_at': string;
2315
+ 'uid': string;
2088
2316
  /**
2089
2317
  *
2090
2318
  * @type {string}
2091
2319
  * @memberof TowerData
2092
2320
  */
2093
- 'updated_at': string;
2094
- /**
2095
- *
2096
- * @type {Array<FloorData>}
2097
- * @memberof TowerData
2098
- */
2099
- 'floors': Array<FloorData>;
2100
- /**
2101
- *
2102
- * @type {Array<AuthorizedLocationData>}
2103
- * @memberof TowerData
2104
- */
2105
- 'locations': Array<AuthorizedLocationData>;
2321
+ 'id': string;
2106
2322
  }
2107
2323
  /**
2108
2324
  *
@@ -2346,16 +2562,16 @@ export interface VisitorSchedule {
2346
2562
  'floor_id': string;
2347
2563
  /**
2348
2564
  *
2349
- * @type {VisitorScheduleFrom}
2565
+ * @type {ACZoneDataCreatedAt}
2350
2566
  * @memberof VisitorSchedule
2351
2567
  */
2352
- 'from': VisitorScheduleFrom;
2568
+ 'from': ACZoneDataCreatedAt;
2353
2569
  /**
2354
2570
  *
2355
- * @type {VisitorScheduleFrom}
2571
+ * @type {ACZoneDataCreatedAt}
2356
2572
  * @memberof VisitorSchedule
2357
2573
  */
2358
- 'to': VisitorScheduleFrom;
2574
+ 'to': ACZoneDataCreatedAt;
2359
2575
  /**
2360
2576
  *
2361
2577
  * @type {object}
@@ -2363,13 +2579,6 @@ export interface VisitorSchedule {
2363
2579
  */
2364
2580
  'repetition'?: object;
2365
2581
  }
2366
- /**
2367
- *
2368
- * @export
2369
- * @interface VisitorScheduleFrom
2370
- */
2371
- export interface VisitorScheduleFrom {
2372
- }
2373
2582
  /**
2374
2583
  *
2375
2584
  * @export
@@ -2602,46 +2811,207 @@ export interface WrappedArrayResponseSensorsIndexResponseData {
2602
2811
  /**
2603
2812
  *
2604
2813
  * @export
2605
- * @interface WrappedResponseACZoneData
2814
+ * @interface WrappedArrayResponseServiceRequestData
2606
2815
  */
2607
- export interface WrappedResponseACZoneData {
2816
+ export interface WrappedArrayResponseServiceRequestData {
2608
2817
  /**
2609
2818
  *
2610
- * @type {WrappedResponseACZoneDataData}
2611
- * @memberof WrappedResponseACZoneData
2819
+ * @type {Array<ServiceRequestData>}
2820
+ * @memberof WrappedArrayResponseServiceRequestData
2612
2821
  */
2613
- 'data': WrappedResponseACZoneDataData | null;
2822
+ 'data': Array<ServiceRequestData>;
2614
2823
  }
2615
2824
  /**
2616
2825
  *
2617
2826
  * @export
2618
- * @interface WrappedResponseACZoneDataData
2827
+ * @interface WrappedOneResponseCreateServiceRequestResponse
2619
2828
  */
2620
- export interface WrappedResponseACZoneDataData {
2829
+ export interface WrappedOneResponseCreateServiceRequestResponse {
2621
2830
  /**
2622
2831
  *
2623
- * @type {string}
2624
- * @memberof WrappedResponseACZoneDataData
2832
+ * @type {CreateServiceRequestResponse}
2833
+ * @memberof WrappedOneResponseCreateServiceRequestResponse
2625
2834
  */
2626
- 'updated_at': string;
2835
+ 'data': CreateServiceRequestResponse;
2836
+ }
2837
+ /**
2838
+ *
2839
+ * @export
2840
+ * @interface WrappedOneResponseServiceRequestData
2841
+ */
2842
+ export interface WrappedOneResponseServiceRequestData {
2627
2843
  /**
2628
2844
  *
2629
- * @type {string}
2630
- * @memberof WrappedResponseACZoneDataData
2845
+ * @type {ServiceRequestData}
2846
+ * @memberof WrappedOneResponseServiceRequestData
2631
2847
  */
2632
- 'created_at': string;
2633
- /**
2634
- *
2635
- * @type {number}
2636
- * @memberof WrappedResponseACZoneDataData
2848
+ 'data': ServiceRequestData;
2849
+ }
2850
+ /**
2851
+ *
2852
+ * @export
2853
+ * @interface WrappedResponseACRequestResponse
2854
+ */
2855
+ export interface WrappedResponseACRequestResponse {
2856
+ /**
2857
+ *
2858
+ * @type {WrappedResponseACRequestResponseData}
2859
+ * @memberof WrappedResponseACRequestResponse
2860
+ */
2861
+ 'data': WrappedResponseACRequestResponseData | null;
2862
+ }
2863
+ /**
2864
+ *
2865
+ * @export
2866
+ * @interface WrappedResponseACRequestResponseData
2867
+ */
2868
+ export interface WrappedResponseACRequestResponseData {
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;
2905
+ /**
2906
+ *
2907
+ * @type {ACZoneDataCreatedAt}
2908
+ * @memberof WrappedResponseACRequestResponseData
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
2637
2927
  */
2638
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
2988
+ */
2989
+ 'data': WrappedResponseACZoneDataData | null;
2990
+ }
2991
+ /**
2992
+ *
2993
+ * @export
2994
+ * @interface WrappedResponseACZoneDataData
2995
+ */
2996
+ export interface WrappedResponseACZoneDataData {
2997
+ /**
2998
+ *
2999
+ * @type {string}
3000
+ * @memberof WrappedResponseACZoneDataData
3001
+ */
3002
+ 'id': string;
2639
3003
  /**
2640
3004
  *
2641
3005
  * @type {string}
2642
3006
  * @memberof WrappedResponseACZoneDataData
2643
3007
  */
2644
3008
  'name': string;
3009
+ /**
3010
+ *
3011
+ * @type {number}
3012
+ * @memberof WrappedResponseACZoneDataData
3013
+ */
3014
+ 'area_size': number;
2645
3015
  /**
2646
3016
  *
2647
3017
  * @type {string}
@@ -2650,10 +3020,36 @@ export interface WrappedResponseACZoneDataData {
2650
3020
  'floor_id': string;
2651
3021
  /**
2652
3022
  *
2653
- * @type {string}
3023
+ * @type {ACZoneDataCreatedAt}
2654
3024
  * @memberof WrappedResponseACZoneDataData
2655
3025
  */
2656
- 'id': string;
3026
+ 'created_at': ACZoneDataCreatedAt;
3027
+ /**
3028
+ *
3029
+ * @type {ACZoneDataCreatedAt}
3030
+ * @memberof WrappedResponseACZoneDataData
3031
+ */
3032
+ 'updated_at': ACZoneDataCreatedAt;
3033
+ }
3034
+ /**
3035
+ *
3036
+ * @export
3037
+ * @interface WrappedResponseBoolean
3038
+ */
3039
+ export interface WrappedResponseBoolean {
3040
+ /**
3041
+ *
3042
+ * @type {WrappedResponseBooleanData}
3043
+ * @memberof WrappedResponseBoolean
3044
+ */
3045
+ 'data': WrappedResponseBooleanData | null;
3046
+ }
3047
+ /**
3048
+ *
3049
+ * @export
3050
+ * @interface WrappedResponseBooleanData
3051
+ */
3052
+ export interface WrappedResponseBooleanData {
2657
3053
  }
2658
3054
  /**
2659
3055
  *
@@ -2743,32 +3139,6 @@ export interface WrappedResponseCommandsIndexResponse {
2743
3139
  */
2744
3140
  export interface WrappedResponseCommandsIndexResponseData {
2745
3141
  }
2746
- /**
2747
- *
2748
- * @export
2749
- * @interface WrappedResponseCreateServiceRequestResponse
2750
- */
2751
- export interface WrappedResponseCreateServiceRequestResponse {
2752
- /**
2753
- *
2754
- * @type {WrappedResponseCreateServiceRequestResponseData}
2755
- * @memberof WrappedResponseCreateServiceRequestResponse
2756
- */
2757
- 'data': WrappedResponseCreateServiceRequestResponseData | null;
2758
- }
2759
- /**
2760
- *
2761
- * @export
2762
- * @interface WrappedResponseCreateServiceRequestResponseData
2763
- */
2764
- export interface WrappedResponseCreateServiceRequestResponseData {
2765
- /**
2766
- *
2767
- * @type {string}
2768
- * @memberof WrappedResponseCreateServiceRequestResponseData
2769
- */
2770
- 'id': string;
2771
- }
2772
3142
  /**
2773
3143
  *
2774
3144
  * @export
@@ -3190,112 +3560,6 @@ export declare const WrappedResponsePassConsentResponseDataStatusEnum: {
3190
3560
  readonly Confirmed: "confirmed";
3191
3561
  };
3192
3562
  export type WrappedResponsePassConsentResponseDataStatusEnum = typeof WrappedResponsePassConsentResponseDataStatusEnum[keyof typeof WrappedResponsePassConsentResponseDataStatusEnum];
3193
- /**
3194
- *
3195
- * @export
3196
- * @interface WrappedResponseServiceRequestData
3197
- */
3198
- export interface WrappedResponseServiceRequestData {
3199
- /**
3200
- *
3201
- * @type {WrappedResponseServiceRequestDataData}
3202
- * @memberof WrappedResponseServiceRequestData
3203
- */
3204
- 'data': WrappedResponseServiceRequestDataData | null;
3205
- }
3206
- /**
3207
- *
3208
- * @export
3209
- * @interface WrappedResponseServiceRequestDataData
3210
- */
3211
- export interface WrappedResponseServiceRequestDataData {
3212
- /**
3213
- *
3214
- * @type {string}
3215
- * @memberof WrappedResponseServiceRequestDataData
3216
- */
3217
- 'updated_at': string;
3218
- /**
3219
- *
3220
- * @type {string}
3221
- * @memberof WrappedResponseServiceRequestDataData
3222
- */
3223
- 'created_at': string;
3224
- /**
3225
- *
3226
- * @type {string}
3227
- * @memberof WrappedResponseServiceRequestDataData
3228
- */
3229
- 'description': string;
3230
- /**
3231
- *
3232
- * @type {string}
3233
- * @memberof WrappedResponseServiceRequestDataData
3234
- */
3235
- 'status': string;
3236
- /**
3237
- *
3238
- * @type {string}
3239
- * @memberof WrappedResponseServiceRequestDataData
3240
- */
3241
- 'title': string;
3242
- /**
3243
- *
3244
- * @type {string}
3245
- * @memberof WrappedResponseServiceRequestDataData
3246
- */
3247
- 'requester_id': string;
3248
- /**
3249
- *
3250
- * @type {IssueTypeData}
3251
- * @memberof WrappedResponseServiceRequestDataData
3252
- */
3253
- 'issue_type': IssueTypeData;
3254
- /**
3255
- *
3256
- * @type {FloorData}
3257
- * @memberof WrappedResponseServiceRequestDataData
3258
- */
3259
- 'floor': FloorData;
3260
- /**
3261
- *
3262
- * @type {TowerData}
3263
- * @memberof WrappedResponseServiceRequestDataData
3264
- */
3265
- 'tower': TowerData;
3266
- /**
3267
- *
3268
- * @type {Array<string>}
3269
- * @memberof WrappedResponseServiceRequestDataData
3270
- */
3271
- 'image_url': Array<string>;
3272
- /**
3273
- *
3274
- * @type {string}
3275
- * @memberof WrappedResponseServiceRequestDataData
3276
- */
3277
- 'id': string;
3278
- }
3279
- /**
3280
- *
3281
- * @export
3282
- * @interface WrappedResponseServiceRequestResponse
3283
- */
3284
- export interface WrappedResponseServiceRequestResponse {
3285
- /**
3286
- *
3287
- * @type {WrappedResponseServiceRequestResponseData}
3288
- * @memberof WrappedResponseServiceRequestResponse
3289
- */
3290
- 'data': WrappedResponseServiceRequestResponseData | null;
3291
- }
3292
- /**
3293
- *
3294
- * @export
3295
- * @interface WrappedResponseServiceRequestResponseData
3296
- */
3297
- export interface WrappedResponseServiceRequestResponseData {
3298
- }
3299
3563
  /**
3300
3564
  *
3301
3565
  * @export
@@ -3434,6 +3698,31 @@ export interface WrappedResponseVisitorTokensIndexResponseDataData {
3434
3698
  * @export
3435
3699
  */
3436
3700
  export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
3701
+ /**
3702
+ *
3703
+ * @param {ACRequestBody} aCRequestBody
3704
+ * @param {*} [options] Override http request option.
3705
+ * @throws {RequiredError}
3706
+ */
3707
+ acRequestCreate: (aCRequestBody: ACRequestBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3708
+ /**
3709
+ *
3710
+ * @param {string} [requesterId]
3711
+ * @param {string} [orderBy]
3712
+ * @param {string} [orderDirection]
3713
+ * @param {number} [pageNumber]
3714
+ * @param {number} [pageSize]
3715
+ * @param {*} [options] Override http request option.
3716
+ * @throws {RequiredError}
3717
+ */
3718
+ acRequestIndex: (requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3719
+ /**
3720
+ *
3721
+ * @param {string} id
3722
+ * @param {*} [options] Override http request option.
3723
+ * @throws {RequiredError}
3724
+ */
3725
+ acRequestShow: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3437
3726
  /**
3438
3727
  *
3439
3728
  * @param {string} floorId
@@ -3605,6 +3894,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3605
3894
  * @throws {RequiredError}
3606
3895
  */
3607
3896
  serviceRequestsShow: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3897
+ /**
3898
+ *
3899
+ * @param {string} id
3900
+ * @param {ServiceRequestsUpdateRequestBody} serviceRequestsUpdateRequestBody
3901
+ * @param {*} [options] Override http request option.
3902
+ * @throws {RequiredError}
3903
+ */
3904
+ serviceRequestsUpdate: (id: string, serviceRequestsUpdateRequestBody: ServiceRequestsUpdateRequestBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3608
3905
  /**
3609
3906
  *
3610
3907
  * @param {SyncBody} syncBody
@@ -3646,6 +3943,31 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3646
3943
  * @export
3647
3944
  */
3648
3945
  export declare const DefaultApiFp: (configuration?: Configuration) => {
3946
+ /**
3947
+ *
3948
+ * @param {ACRequestBody} aCRequestBody
3949
+ * @param {*} [options] Override http request option.
3950
+ * @throws {RequiredError}
3951
+ */
3952
+ acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseBoolean>>;
3953
+ /**
3954
+ *
3955
+ * @param {string} [requesterId]
3956
+ * @param {string} [orderBy]
3957
+ * @param {string} [orderDirection]
3958
+ * @param {number} [pageNumber]
3959
+ * @param {number} [pageSize]
3960
+ * @param {*} [options] Override http request option.
3961
+ * @throws {RequiredError}
3962
+ */
3963
+ acRequestIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseACRequestResponse>>;
3964
+ /**
3965
+ *
3966
+ * @param {string} id
3967
+ * @param {*} [options] Override http request option.
3968
+ * @throws {RequiredError}
3969
+ */
3970
+ acRequestShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseACRequestResponse>>;
3649
3971
  /**
3650
3972
  *
3651
3973
  * @param {string} floorId
@@ -3797,7 +4119,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3797
4119
  * @param {*} [options] Override http request option.
3798
4120
  * @throws {RequiredError}
3799
4121
  */
3800
- serviceRequestsCreate(serviceRequestBody: ServiceRequestBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseCreateServiceRequestResponse>>;
4122
+ serviceRequestsCreate(serviceRequestBody: ServiceRequestBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseCreateServiceRequestResponse>>;
3801
4123
  /**
3802
4124
  *
3803
4125
  * @param {string} [requesterId]
@@ -3809,14 +4131,22 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3809
4131
  * @param {*} [options] Override http request option.
3810
4132
  * @throws {RequiredError}
3811
4133
  */
3812
- serviceRequestsIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, status?: ServiceRequestStatus, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseServiceRequestResponse>>;
4134
+ serviceRequestsIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, status?: ServiceRequestStatus, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseServiceRequestData>>;
3813
4135
  /**
3814
4136
  *
3815
4137
  * @param {string} id
3816
4138
  * @param {*} [options] Override http request option.
3817
4139
  * @throws {RequiredError}
3818
4140
  */
3819
- serviceRequestsShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseServiceRequestData>>;
4141
+ serviceRequestsShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseServiceRequestData>>;
4142
+ /**
4143
+ *
4144
+ * @param {string} id
4145
+ * @param {ServiceRequestsUpdateRequestBody} serviceRequestsUpdateRequestBody
4146
+ * @param {*} [options] Override http request option.
4147
+ * @throws {RequiredError}
4148
+ */
4149
+ serviceRequestsUpdate(id: string, serviceRequestsUpdateRequestBody: ServiceRequestsUpdateRequestBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedOneResponseServiceRequestData>>;
3820
4150
  /**
3821
4151
  *
3822
4152
  * @param {SyncBody} syncBody
@@ -3858,6 +4188,31 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3858
4188
  * @export
3859
4189
  */
3860
4190
  export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4191
+ /**
4192
+ *
4193
+ * @param {ACRequestBody} aCRequestBody
4194
+ * @param {*} [options] Override http request option.
4195
+ * @throws {RequiredError}
4196
+ */
4197
+ acRequestCreate(aCRequestBody: ACRequestBody, options?: any): AxiosPromise<WrappedResponseBoolean>;
4198
+ /**
4199
+ *
4200
+ * @param {string} [requesterId]
4201
+ * @param {string} [orderBy]
4202
+ * @param {string} [orderDirection]
4203
+ * @param {number} [pageNumber]
4204
+ * @param {number} [pageSize]
4205
+ * @param {*} [options] Override http request option.
4206
+ * @throws {RequiredError}
4207
+ */
4208
+ acRequestIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, options?: any): AxiosPromise<WrappedResponseACRequestResponse>;
4209
+ /**
4210
+ *
4211
+ * @param {string} id
4212
+ * @param {*} [options] Override http request option.
4213
+ * @throws {RequiredError}
4214
+ */
4215
+ acRequestShow(id: string, options?: any): AxiosPromise<WrappedResponseACRequestResponse>;
3861
4216
  /**
3862
4217
  *
3863
4218
  * @param {string} floorId
@@ -4009,7 +4364,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4009
4364
  * @param {*} [options] Override http request option.
4010
4365
  * @throws {RequiredError}
4011
4366
  */
4012
- serviceRequestsCreate(serviceRequestBody: ServiceRequestBody, options?: any): AxiosPromise<WrappedResponseCreateServiceRequestResponse>;
4367
+ serviceRequestsCreate(serviceRequestBody: ServiceRequestBody, options?: any): AxiosPromise<WrappedOneResponseCreateServiceRequestResponse>;
4013
4368
  /**
4014
4369
  *
4015
4370
  * @param {string} [requesterId]
@@ -4021,14 +4376,22 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4021
4376
  * @param {*} [options] Override http request option.
4022
4377
  * @throws {RequiredError}
4023
4378
  */
4024
- serviceRequestsIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, status?: ServiceRequestStatus, options?: any): AxiosPromise<WrappedResponseServiceRequestResponse>;
4379
+ serviceRequestsIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, status?: ServiceRequestStatus, options?: any): AxiosPromise<WrappedArrayResponseServiceRequestData>;
4380
+ /**
4381
+ *
4382
+ * @param {string} id
4383
+ * @param {*} [options] Override http request option.
4384
+ * @throws {RequiredError}
4385
+ */
4386
+ serviceRequestsShow(id: string, options?: any): AxiosPromise<WrappedOneResponseServiceRequestData>;
4025
4387
  /**
4026
4388
  *
4027
4389
  * @param {string} id
4390
+ * @param {ServiceRequestsUpdateRequestBody} serviceRequestsUpdateRequestBody
4028
4391
  * @param {*} [options] Override http request option.
4029
4392
  * @throws {RequiredError}
4030
4393
  */
4031
- serviceRequestsShow(id: string, options?: any): AxiosPromise<WrappedResponseServiceRequestData>;
4394
+ serviceRequestsUpdate(id: string, serviceRequestsUpdateRequestBody: ServiceRequestsUpdateRequestBody, options?: any): AxiosPromise<WrappedOneResponseServiceRequestData>;
4032
4395
  /**
4033
4396
  *
4034
4397
  * @param {SyncBody} syncBody
@@ -4072,6 +4435,34 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4072
4435
  * @extends {BaseAPI}
4073
4436
  */
4074
4437
  export declare class DefaultApi extends BaseAPI {
4438
+ /**
4439
+ *
4440
+ * @param {ACRequestBody} aCRequestBody
4441
+ * @param {*} [options] Override http request option.
4442
+ * @throws {RequiredError}
4443
+ * @memberof DefaultApi
4444
+ */
4445
+ acRequestCreate(aCRequestBody: ACRequestBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseBoolean, any>>;
4446
+ /**
4447
+ *
4448
+ * @param {string} [requesterId]
4449
+ * @param {string} [orderBy]
4450
+ * @param {string} [orderDirection]
4451
+ * @param {number} [pageNumber]
4452
+ * @param {number} [pageSize]
4453
+ * @param {*} [options] Override http request option.
4454
+ * @throws {RequiredError}
4455
+ * @memberof DefaultApi
4456
+ */
4457
+ acRequestIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseACRequestResponse, any>>;
4458
+ /**
4459
+ *
4460
+ * @param {string} id
4461
+ * @param {*} [options] Override http request option.
4462
+ * @throws {RequiredError}
4463
+ * @memberof DefaultApi
4464
+ */
4465
+ acRequestShow(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseACRequestResponse, any>>;
4075
4466
  /**
4076
4467
  *
4077
4468
  * @param {string} floorId
@@ -4243,7 +4634,7 @@ export declare class DefaultApi extends BaseAPI {
4243
4634
  * @throws {RequiredError}
4244
4635
  * @memberof DefaultApi
4245
4636
  */
4246
- serviceRequestsCreate(serviceRequestBody: ServiceRequestBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseCreateServiceRequestResponse, any>>;
4637
+ serviceRequestsCreate(serviceRequestBody: ServiceRequestBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedOneResponseCreateServiceRequestResponse, any>>;
4247
4638
  /**
4248
4639
  *
4249
4640
  * @param {string} [requesterId]
@@ -4256,15 +4647,24 @@ export declare class DefaultApi extends BaseAPI {
4256
4647
  * @throws {RequiredError}
4257
4648
  * @memberof DefaultApi
4258
4649
  */
4259
- serviceRequestsIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, status?: ServiceRequestStatus, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseServiceRequestResponse, any>>;
4650
+ serviceRequestsIndex(requesterId?: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, status?: ServiceRequestStatus, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseServiceRequestData, any>>;
4651
+ /**
4652
+ *
4653
+ * @param {string} id
4654
+ * @param {*} [options] Override http request option.
4655
+ * @throws {RequiredError}
4656
+ * @memberof DefaultApi
4657
+ */
4658
+ serviceRequestsShow(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedOneResponseServiceRequestData, any>>;
4260
4659
  /**
4261
4660
  *
4262
4661
  * @param {string} id
4662
+ * @param {ServiceRequestsUpdateRequestBody} serviceRequestsUpdateRequestBody
4263
4663
  * @param {*} [options] Override http request option.
4264
4664
  * @throws {RequiredError}
4265
4665
  * @memberof DefaultApi
4266
4666
  */
4267
- serviceRequestsShow(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseServiceRequestData, any>>;
4667
+ serviceRequestsUpdate(id: string, serviceRequestsUpdateRequestBody: ServiceRequestsUpdateRequestBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedOneResponseServiceRequestData, any>>;
4268
4668
  /**
4269
4669
  *
4270
4670
  * @param {SyncBody} syncBody