ob-bms-sdk 0.0.68 → 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/api/api.ts +502 -87
- package/dist/api/api.d.ts +413 -83
- package/dist/api/api.js +154 -8
- package/package.json +1 -1
- package/test.ts +0 -19
package/dist/api/api.d.ts
CHANGED
|
@@ -59,100 +59,204 @@ export interface ACRequestBody {
|
|
|
59
59
|
/**
|
|
60
60
|
*
|
|
61
61
|
* @export
|
|
62
|
-
* @interface
|
|
62
|
+
* @interface ACRequestQuery
|
|
63
63
|
*/
|
|
64
|
-
export interface
|
|
64
|
+
export interface ACRequestQuery {
|
|
65
65
|
/**
|
|
66
66
|
*
|
|
67
67
|
* @type {string}
|
|
68
|
-
* @memberof
|
|
68
|
+
* @memberof ACRequestQuery
|
|
69
69
|
*/
|
|
70
|
-
'
|
|
70
|
+
'requester_id'?: string;
|
|
71
71
|
/**
|
|
72
72
|
*
|
|
73
73
|
* @type {string}
|
|
74
|
-
* @memberof
|
|
74
|
+
* @memberof ACRequestQuery
|
|
75
75
|
*/
|
|
76
|
-
'
|
|
76
|
+
'order_by'?: string;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ACRequestQuery
|
|
81
|
+
*/
|
|
82
|
+
'order_direction'?: string;
|
|
77
83
|
/**
|
|
78
84
|
*
|
|
79
85
|
* @type {number}
|
|
80
|
-
* @memberof
|
|
86
|
+
* @memberof ACRequestQuery
|
|
81
87
|
*/
|
|
82
|
-
'
|
|
88
|
+
'page_number'?: number;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {number}
|
|
92
|
+
* @memberof ACRequestQuery
|
|
93
|
+
*/
|
|
94
|
+
'page_size'?: number;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @export
|
|
99
|
+
* @interface ACRequestResponse
|
|
100
|
+
*/
|
|
101
|
+
export interface ACRequestResponse {
|
|
83
102
|
/**
|
|
84
103
|
*
|
|
85
104
|
* @type {string}
|
|
86
|
-
* @memberof
|
|
105
|
+
* @memberof ACRequestResponse
|
|
87
106
|
*/
|
|
88
|
-
'
|
|
107
|
+
'id': string;
|
|
89
108
|
/**
|
|
90
109
|
*
|
|
91
110
|
* @type {string}
|
|
92
|
-
* @memberof
|
|
111
|
+
* @memberof ACRequestResponse
|
|
112
|
+
*/
|
|
113
|
+
'tower_id': string;
|
|
114
|
+
/**
|
|
115
|
+
*
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof ACRequestResponse
|
|
93
118
|
*/
|
|
94
119
|
'floor_id': string;
|
|
95
120
|
/**
|
|
96
121
|
*
|
|
97
122
|
* @type {string}
|
|
98
|
-
* @memberof
|
|
123
|
+
* @memberof ACRequestResponse
|
|
99
124
|
*/
|
|
100
|
-
'
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
*
|
|
104
|
-
* @export
|
|
105
|
-
* @interface AuthorizedLocationData
|
|
106
|
-
*/
|
|
107
|
-
export interface AuthorizedLocationData {
|
|
125
|
+
'ac_zone_id': string;
|
|
108
126
|
/**
|
|
109
127
|
*
|
|
110
128
|
* @type {string}
|
|
111
|
-
* @memberof
|
|
129
|
+
* @memberof ACRequestResponse
|
|
112
130
|
*/
|
|
113
|
-
'
|
|
131
|
+
'estimated_cost': string;
|
|
114
132
|
/**
|
|
115
133
|
*
|
|
116
134
|
* @type {string}
|
|
117
|
-
* @memberof
|
|
135
|
+
* @memberof ACRequestResponse
|
|
118
136
|
*/
|
|
119
|
-
'
|
|
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;
|
|
120
162
|
/**
|
|
121
163
|
*
|
|
122
164
|
* @type {string}
|
|
123
|
-
* @memberof
|
|
165
|
+
* @memberof ACRequestResponse
|
|
124
166
|
*/
|
|
125
|
-
'
|
|
167
|
+
'status': string;
|
|
126
168
|
/**
|
|
127
169
|
*
|
|
128
|
-
* @type {
|
|
129
|
-
* @memberof
|
|
170
|
+
* @type {ACZoneDataCreatedAt}
|
|
171
|
+
* @memberof ACRequestResponse
|
|
130
172
|
*/
|
|
131
|
-
'
|
|
173
|
+
'created_at': ACZoneDataCreatedAt;
|
|
174
|
+
/**
|
|
175
|
+
*
|
|
176
|
+
* @type {ACZoneDataCreatedAt}
|
|
177
|
+
* @memberof ACRequestResponse
|
|
178
|
+
*/
|
|
179
|
+
'updated_at': ACZoneDataCreatedAt;
|
|
132
180
|
/**
|
|
133
181
|
*
|
|
134
182
|
* @type {string}
|
|
135
|
-
* @memberof
|
|
183
|
+
* @memberof ACRequestResponse
|
|
136
184
|
*/
|
|
137
|
-
'
|
|
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 {
|
|
138
217
|
/**
|
|
139
218
|
*
|
|
140
219
|
* @type {string}
|
|
141
|
-
* @memberof
|
|
220
|
+
* @memberof ACZoneData
|
|
142
221
|
*/
|
|
143
|
-
'
|
|
222
|
+
'id': string;
|
|
144
223
|
/**
|
|
145
224
|
*
|
|
146
225
|
* @type {string}
|
|
147
|
-
* @memberof
|
|
226
|
+
* @memberof ACZoneData
|
|
148
227
|
*/
|
|
149
|
-
'
|
|
228
|
+
'name': string;
|
|
229
|
+
/**
|
|
230
|
+
*
|
|
231
|
+
* @type {number}
|
|
232
|
+
* @memberof ACZoneData
|
|
233
|
+
*/
|
|
234
|
+
'area_size': number;
|
|
150
235
|
/**
|
|
151
236
|
*
|
|
152
237
|
* @type {string}
|
|
153
|
-
* @memberof
|
|
238
|
+
* @memberof ACZoneData
|
|
154
239
|
*/
|
|
155
|
-
'
|
|
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 {
|
|
156
260
|
}
|
|
157
261
|
/**
|
|
158
262
|
*
|
|
@@ -521,19 +625,19 @@ export interface FloorData {
|
|
|
521
625
|
* @type {string}
|
|
522
626
|
* @memberof FloorData
|
|
523
627
|
*/
|
|
524
|
-
'
|
|
628
|
+
'updated_at': string;
|
|
525
629
|
/**
|
|
526
630
|
*
|
|
527
631
|
* @type {string}
|
|
528
632
|
* @memberof FloorData
|
|
529
633
|
*/
|
|
530
|
-
'
|
|
634
|
+
'created_at': string;
|
|
531
635
|
/**
|
|
532
636
|
*
|
|
533
637
|
* @type {string}
|
|
534
638
|
* @memberof FloorData
|
|
535
639
|
*/
|
|
536
|
-
'
|
|
640
|
+
'tower_id': string;
|
|
537
641
|
/**
|
|
538
642
|
*
|
|
539
643
|
* @type {JsonValue}
|
|
@@ -545,19 +649,19 @@ export interface FloorData {
|
|
|
545
649
|
* @type {string}
|
|
546
650
|
* @memberof FloorData
|
|
547
651
|
*/
|
|
548
|
-
'
|
|
652
|
+
'name': string;
|
|
549
653
|
/**
|
|
550
654
|
*
|
|
551
655
|
* @type {string}
|
|
552
656
|
* @memberof FloorData
|
|
553
657
|
*/
|
|
554
|
-
'
|
|
658
|
+
'uid': string;
|
|
555
659
|
/**
|
|
556
660
|
*
|
|
557
661
|
* @type {string}
|
|
558
662
|
* @memberof FloorData
|
|
559
663
|
*/
|
|
560
|
-
'
|
|
664
|
+
'id': string;
|
|
561
665
|
}
|
|
562
666
|
/**
|
|
563
667
|
*
|
|
@@ -1473,6 +1577,49 @@ export interface RateDetail {
|
|
|
1473
1577
|
*/
|
|
1474
1578
|
'en': string;
|
|
1475
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
|
+
}
|
|
1476
1623
|
/**
|
|
1477
1624
|
*
|
|
1478
1625
|
* @export
|
|
@@ -2135,19 +2282,19 @@ export interface TowerData {
|
|
|
2135
2282
|
* @type {string}
|
|
2136
2283
|
* @memberof TowerData
|
|
2137
2284
|
*/
|
|
2138
|
-
'
|
|
2285
|
+
'updated_at': string;
|
|
2139
2286
|
/**
|
|
2140
2287
|
*
|
|
2141
2288
|
* @type {string}
|
|
2142
2289
|
* @memberof TowerData
|
|
2143
2290
|
*/
|
|
2144
|
-
'
|
|
2291
|
+
'created_at': string;
|
|
2145
2292
|
/**
|
|
2146
2293
|
*
|
|
2147
2294
|
* @type {string}
|
|
2148
2295
|
* @memberof TowerData
|
|
2149
2296
|
*/
|
|
2150
|
-
'
|
|
2297
|
+
'project_id': string;
|
|
2151
2298
|
/**
|
|
2152
2299
|
*
|
|
2153
2300
|
* @type {JsonValue}
|
|
@@ -2159,31 +2306,19 @@ export interface TowerData {
|
|
|
2159
2306
|
* @type {string}
|
|
2160
2307
|
* @memberof TowerData
|
|
2161
2308
|
*/
|
|
2162
|
-
'
|
|
2309
|
+
'name': string;
|
|
2163
2310
|
/**
|
|
2164
2311
|
*
|
|
2165
2312
|
* @type {string}
|
|
2166
2313
|
* @memberof TowerData
|
|
2167
2314
|
*/
|
|
2168
|
-
'
|
|
2315
|
+
'uid': string;
|
|
2169
2316
|
/**
|
|
2170
2317
|
*
|
|
2171
2318
|
* @type {string}
|
|
2172
2319
|
* @memberof TowerData
|
|
2173
2320
|
*/
|
|
2174
|
-
'
|
|
2175
|
-
/**
|
|
2176
|
-
*
|
|
2177
|
-
* @type {Array<FloorData>}
|
|
2178
|
-
* @memberof TowerData
|
|
2179
|
-
*/
|
|
2180
|
-
'floors': Array<FloorData>;
|
|
2181
|
-
/**
|
|
2182
|
-
*
|
|
2183
|
-
* @type {Array<AuthorizedLocationData>}
|
|
2184
|
-
* @memberof TowerData
|
|
2185
|
-
*/
|
|
2186
|
-
'locations': Array<AuthorizedLocationData>;
|
|
2321
|
+
'id': string;
|
|
2187
2322
|
}
|
|
2188
2323
|
/**
|
|
2189
2324
|
*
|
|
@@ -2427,16 +2562,16 @@ export interface VisitorSchedule {
|
|
|
2427
2562
|
'floor_id': string;
|
|
2428
2563
|
/**
|
|
2429
2564
|
*
|
|
2430
|
-
* @type {
|
|
2565
|
+
* @type {ACZoneDataCreatedAt}
|
|
2431
2566
|
* @memberof VisitorSchedule
|
|
2432
2567
|
*/
|
|
2433
|
-
'from':
|
|
2568
|
+
'from': ACZoneDataCreatedAt;
|
|
2434
2569
|
/**
|
|
2435
2570
|
*
|
|
2436
|
-
* @type {
|
|
2571
|
+
* @type {ACZoneDataCreatedAt}
|
|
2437
2572
|
* @memberof VisitorSchedule
|
|
2438
2573
|
*/
|
|
2439
|
-
'to':
|
|
2574
|
+
'to': ACZoneDataCreatedAt;
|
|
2440
2575
|
/**
|
|
2441
2576
|
*
|
|
2442
2577
|
* @type {object}
|
|
@@ -2444,13 +2579,6 @@ export interface VisitorSchedule {
|
|
|
2444
2579
|
*/
|
|
2445
2580
|
'repetition'?: object;
|
|
2446
2581
|
}
|
|
2447
|
-
/**
|
|
2448
|
-
*
|
|
2449
|
-
* @export
|
|
2450
|
-
* @interface VisitorScheduleFrom
|
|
2451
|
-
*/
|
|
2452
|
-
export interface VisitorScheduleFrom {
|
|
2453
|
-
}
|
|
2454
2582
|
/**
|
|
2455
2583
|
*
|
|
2456
2584
|
* @export
|
|
@@ -2719,6 +2847,134 @@ export interface WrappedOneResponseServiceRequestData {
|
|
|
2719
2847
|
*/
|
|
2720
2848
|
'data': ServiceRequestData;
|
|
2721
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
|
|
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
|
+
}
|
|
2722
2978
|
/**
|
|
2723
2979
|
*
|
|
2724
2980
|
* @export
|
|
@@ -2743,13 +2999,13 @@ export interface WrappedResponseACZoneDataData {
|
|
|
2743
2999
|
* @type {string}
|
|
2744
3000
|
* @memberof WrappedResponseACZoneDataData
|
|
2745
3001
|
*/
|
|
2746
|
-
'
|
|
3002
|
+
'id': string;
|
|
2747
3003
|
/**
|
|
2748
3004
|
*
|
|
2749
3005
|
* @type {string}
|
|
2750
3006
|
* @memberof WrappedResponseACZoneDataData
|
|
2751
3007
|
*/
|
|
2752
|
-
'
|
|
3008
|
+
'name': string;
|
|
2753
3009
|
/**
|
|
2754
3010
|
*
|
|
2755
3011
|
* @type {number}
|
|
@@ -2761,19 +3017,19 @@ export interface WrappedResponseACZoneDataData {
|
|
|
2761
3017
|
* @type {string}
|
|
2762
3018
|
* @memberof WrappedResponseACZoneDataData
|
|
2763
3019
|
*/
|
|
2764
|
-
'
|
|
3020
|
+
'floor_id': string;
|
|
2765
3021
|
/**
|
|
2766
3022
|
*
|
|
2767
|
-
* @type {
|
|
3023
|
+
* @type {ACZoneDataCreatedAt}
|
|
2768
3024
|
* @memberof WrappedResponseACZoneDataData
|
|
2769
3025
|
*/
|
|
2770
|
-
'
|
|
3026
|
+
'created_at': ACZoneDataCreatedAt;
|
|
2771
3027
|
/**
|
|
2772
3028
|
*
|
|
2773
|
-
* @type {
|
|
3029
|
+
* @type {ACZoneDataCreatedAt}
|
|
2774
3030
|
* @memberof WrappedResponseACZoneDataData
|
|
2775
3031
|
*/
|
|
2776
|
-
'
|
|
3032
|
+
'updated_at': ACZoneDataCreatedAt;
|
|
2777
3033
|
}
|
|
2778
3034
|
/**
|
|
2779
3035
|
*
|
|
@@ -3448,7 +3704,25 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3448
3704
|
* @param {*} [options] Override http request option.
|
|
3449
3705
|
* @throws {RequiredError}
|
|
3450
3706
|
*/
|
|
3451
|
-
|
|
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>;
|
|
3452
3726
|
/**
|
|
3453
3727
|
*
|
|
3454
3728
|
* @param {string} floorId
|
|
@@ -3675,7 +3949,25 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
3675
3949
|
* @param {*} [options] Override http request option.
|
|
3676
3950
|
* @throws {RequiredError}
|
|
3677
3951
|
*/
|
|
3678
|
-
|
|
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>>;
|
|
3679
3971
|
/**
|
|
3680
3972
|
*
|
|
3681
3973
|
* @param {string} floorId
|
|
@@ -3902,7 +4194,25 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3902
4194
|
* @param {*} [options] Override http request option.
|
|
3903
4195
|
* @throws {RequiredError}
|
|
3904
4196
|
*/
|
|
3905
|
-
|
|
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>;
|
|
3906
4216
|
/**
|
|
3907
4217
|
*
|
|
3908
4218
|
* @param {string} floorId
|
|
@@ -4132,7 +4442,27 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4132
4442
|
* @throws {RequiredError}
|
|
4133
4443
|
* @memberof DefaultApi
|
|
4134
4444
|
*/
|
|
4135
|
-
|
|
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>>;
|
|
4136
4466
|
/**
|
|
4137
4467
|
*
|
|
4138
4468
|
* @param {string} floorId
|