@kohost/api-client 1.0.0-beta.5 → 3.0.0-beta.11

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.
Files changed (154) hide show
  1. package/dist/cjs/Client.js +666 -383
  2. package/dist/cjs/Commands.js +110 -27
  3. package/dist/cjs/Errors.js +24 -22
  4. package/dist/cjs/Events.js +26 -14
  5. package/dist/cjs/Models.js +68 -40
  6. package/dist/cjs/defs.js +4 -1
  7. package/dist/cjs/utils.js +8 -4
  8. package/dist/esm/Client.js +954 -587
  9. package/dist/esm/Client.js.map +3 -3
  10. package/dist/esm/Commands.js +110 -27
  11. package/dist/esm/Commands.js.map +3 -3
  12. package/dist/esm/Errors.js +24 -22
  13. package/dist/esm/Errors.js.map +1 -1
  14. package/dist/esm/Events.js +26 -14
  15. package/dist/esm/Events.js.map +2 -2
  16. package/dist/esm/Models.js +742 -110
  17. package/dist/esm/Models.js.map +2 -2
  18. package/dist/esm/defs.js +292 -205
  19. package/dist/esm/defs.js.map +2 -2
  20. package/dist/esm/index.js +10 -10
  21. package/dist/esm/utils.js +390 -51
  22. package/dist/esm/utils.js.map +2 -2
  23. package/dist/useCases/AddDefaultScenesToRooms.js +2 -2
  24. package/dist/useCases/AddScenesToRoom.js +2 -2
  25. package/dist/useCases/AdminCreateAdminUser.js +32 -0
  26. package/dist/useCases/AdminCreateCustomer.js +32 -0
  27. package/dist/useCases/AdminCreateProperty.js +2 -2
  28. package/dist/useCases/AdminDescribeCustomer.js +32 -0
  29. package/dist/useCases/AdminDescribeProperty.js +2 -2
  30. package/dist/useCases/AdminListAdminUsers.js +32 -0
  31. package/dist/useCases/AdminListCustomers.js +2 -2
  32. package/dist/useCases/AdminListProperties.js +2 -2
  33. package/dist/useCases/{LoginGateway.js → AdminLoginUser.js} +3 -3
  34. package/dist/useCases/AdminRefreshToken.js +32 -0
  35. package/dist/useCases/AdminRequestLoginLink.js +32 -0
  36. package/dist/useCases/AdminUpdateCustomer.js +32 -0
  37. package/dist/useCases/AdminUpdateProperty.js +2 -2
  38. package/dist/useCases/BatchNotifyPreArrival.js +2 -2
  39. package/dist/useCases/CheckInReservation.js +2 -2
  40. package/dist/useCases/CheckVerificationCode.js +2 -2
  41. package/dist/useCases/CreateAlarm.js +2 -2
  42. package/dist/useCases/CreateCamera.js +2 -2
  43. package/dist/useCases/CreateCourtesy.js +2 -2
  44. package/dist/useCases/CreateDefaultScenes.js +2 -2
  45. package/dist/useCases/CreateDimmer.js +2 -2
  46. package/dist/useCases/CreateDiscoveredDevice.js +2 -2
  47. package/dist/useCases/CreateDiscoveredDeviceAssociation.js +2 -2
  48. package/dist/useCases/CreateIntegration.js +2 -2
  49. package/dist/useCases/CreateIntegrationDeviceMapEntry.js +2 -2
  50. package/dist/useCases/CreateLock.js +2 -2
  51. package/dist/useCases/CreateReservation.js +2 -2
  52. package/dist/useCases/CreateRoom.js +2 -2
  53. package/dist/useCases/CreateRoomInSpace.js +2 -2
  54. package/dist/useCases/CreateSource.js +2 -2
  55. package/dist/useCases/CreateSpace.js +2 -2
  56. package/dist/useCases/CreateSwitch.js +2 -2
  57. package/dist/useCases/CreateThermostat.js +2 -2
  58. package/dist/useCases/CreateTicket.js +2 -2
  59. package/dist/useCases/CreateTicketMessage.js +2 -2
  60. package/dist/useCases/CreateUser.js +2 -2
  61. package/dist/useCases/CreateWindowCovering.js +2 -2
  62. package/dist/useCases/DeleteAlarm.js +2 -2
  63. package/dist/useCases/DeleteCamera.js +2 -2
  64. package/dist/useCases/DeleteCourtesy.js +2 -2
  65. package/dist/useCases/DeleteDimmer.js +2 -2
  66. package/dist/useCases/DeleteDiscoveredDevice.js +2 -2
  67. package/dist/useCases/DeleteIntegration.js +2 -2
  68. package/dist/useCases/DeleteLock.js +2 -2
  69. package/dist/useCases/DeleteReservation.js +2 -2
  70. package/dist/useCases/DeleteRoom.js +2 -2
  71. package/dist/useCases/DeleteSource.js +2 -2
  72. package/dist/useCases/DeleteSpace.js +2 -2
  73. package/dist/useCases/DeleteSwitch.js +2 -2
  74. package/dist/useCases/DeleteThermostat.js +2 -2
  75. package/dist/useCases/DeleteTicket.js +2 -2
  76. package/dist/useCases/DeleteUser.js +2 -2
  77. package/dist/useCases/DeleteWindowCovering.js +2 -2
  78. package/dist/useCases/DescribeAlarm.js +2 -2
  79. package/dist/useCases/DescribeCamera.js +2 -2
  80. package/dist/useCases/DescribeCourtesy.js +2 -2
  81. package/dist/useCases/DescribeDimmer.js +2 -2
  82. package/dist/useCases/DescribeDiscoveredDevice.js +2 -2
  83. package/dist/useCases/DescribeIntegration.js +2 -2
  84. package/dist/useCases/DescribeLock.js +2 -2
  85. package/dist/useCases/DescribeMyProperty.js +2 -2
  86. package/dist/useCases/DescribeReservation.js +2 -2
  87. package/dist/useCases/DescribeReservationCheckinStatus.js +2 -2
  88. package/dist/useCases/DescribeRoom.js +2 -2
  89. package/dist/useCases/DescribeSelf.js +2 -2
  90. package/dist/useCases/DescribeSource.js +2 -2
  91. package/dist/useCases/DescribeSpace.js +2 -2
  92. package/dist/useCases/DescribeSwitch.js +2 -2
  93. package/dist/useCases/DescribeThermostat.js +2 -2
  94. package/dist/useCases/DescribeTicket.js +2 -2
  95. package/dist/useCases/DescribeUser.js +2 -2
  96. package/dist/useCases/DescribeWindowCovering.js +2 -2
  97. package/dist/useCases/DiscoverReservations.js +2 -2
  98. package/dist/useCases/EmailUserAccountSetup.js +2 -2
  99. package/dist/useCases/ListAlarms.js +2 -2
  100. package/dist/useCases/ListCameras.js +2 -2
  101. package/dist/useCases/ListCourtesy.js +2 -2
  102. package/dist/useCases/ListDimmers.js +2 -2
  103. package/dist/useCases/ListDiscoveredDevices.js +2 -2
  104. package/dist/useCases/ListIntegrations.js +2 -2
  105. package/dist/useCases/ListLocks.js +2 -2
  106. package/dist/useCases/ListMyReservations.js +2 -2
  107. package/dist/useCases/ListMySpaces.js +2 -2
  108. package/dist/useCases/ListReservations.js +2 -2
  109. package/dist/useCases/ListRooms.js +2 -2
  110. package/dist/useCases/ListRoomsInSpace.js +2 -2
  111. package/dist/useCases/ListSources.js +2 -2
  112. package/dist/useCases/ListSpaces.js +2 -2
  113. package/dist/useCases/ListSwitches.js +2 -2
  114. package/dist/useCases/ListThermostats.js +2 -2
  115. package/dist/useCases/ListTickets.js +2 -2
  116. package/dist/useCases/ListUserReservations.js +2 -2
  117. package/dist/useCases/ListUsers.js +2 -2
  118. package/dist/useCases/ListWindowCoverings.js +2 -2
  119. package/dist/useCases/LoginUser.js +2 -2
  120. package/dist/useCases/MatchUserIdentification.js +2 -2
  121. package/dist/useCases/OCRDocument.js +2 -2
  122. package/dist/useCases/RefreshToken.js +2 -2
  123. package/dist/useCases/RequestLoginLink.js +2 -2
  124. package/dist/useCases/SendPreArrivalEmail.js +2 -2
  125. package/dist/useCases/SendPreArrivalSMS.js +2 -2
  126. package/dist/useCases/SendVerificationCode.js +2 -2
  127. package/dist/useCases/SetCamera.js +2 -2
  128. package/dist/useCases/SetCourtesy.js +2 -2
  129. package/dist/useCases/SetLock.js +2 -2
  130. package/dist/useCases/SetSource.js +2 -2
  131. package/dist/useCases/SetSwitch.js +2 -2
  132. package/dist/useCases/SetThermostat.js +2 -2
  133. package/dist/useCases/SetWindowCovering.js +2 -2
  134. package/dist/useCases/UpdateAlarm.js +2 -2
  135. package/dist/useCases/UpdateCamera.js +2 -2
  136. package/dist/useCases/UpdateCourtesy.js +2 -2
  137. package/dist/useCases/UpdateDimmer.js +2 -2
  138. package/dist/useCases/UpdateDiscoveredDevice.js +2 -2
  139. package/dist/useCases/UpdateIntegration.js +2 -2
  140. package/dist/useCases/UpdateLock.js +2 -2
  141. package/dist/useCases/UpdateMessageReadStatus.js +2 -2
  142. package/dist/useCases/UpdateReservation.js +2 -2
  143. package/dist/useCases/UpdateRoom.js +2 -2
  144. package/dist/useCases/UpdateSelf.js +2 -2
  145. package/dist/useCases/UpdateSource.js +2 -2
  146. package/dist/useCases/UpdateSpace.js +2 -2
  147. package/dist/useCases/UpdateSwitch.js +2 -2
  148. package/dist/useCases/UpdateThermostat.js +2 -2
  149. package/dist/useCases/UpdateTicket.js +2 -2
  150. package/dist/useCases/UpdateTicketStatus.js +2 -2
  151. package/dist/useCases/UpdateUser.js +2 -2
  152. package/dist/useCases/UpdateWindowCovering.js +2 -2
  153. package/dist/useCases/UpsertDiscoveredDevice.js +2 -2
  154. package/package.json +2 -1
@@ -1,12 +1,128 @@
1
+ var __defProp = Object.defineProperty;
1
2
  var __getOwnPropNames = Object.getOwnPropertyNames;
3
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
2
4
  var __commonJS = (cb, mod) => function __require() {
3
5
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
4
6
  };
5
7
 
8
+ // dist/useCases/AdminCreateCustomer.js
9
+ var require_AdminCreateCustomer = __commonJS({
10
+ "dist/useCases/AdminCreateCustomer.js"(exports, module) {
11
+ module.exports = /* @__PURE__ */ __name(function AdminCreateCustomer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
12
+ if (!requestData)
13
+ requestData = {};
14
+ const pathParams = null;
15
+ const { data, query, headers } = requestData;
16
+ let url = "/admin/customers";
17
+ if (pathParams && data) {
18
+ for (const param of pathParams) {
19
+ const paramName = param.replace(":", "");
20
+ url = url.replace(param, data[paramName]);
21
+ }
22
+ }
23
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
24
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
25
+ const missing = missingParams.map((param) => param.replace(":", ""));
26
+ return Promise.reject(
27
+ new Error("Missing parameters: " + missing.join(", "))
28
+ );
29
+ }
30
+ const config = {
31
+ method: "post",
32
+ url,
33
+ ...httpConfigOptions
34
+ };
35
+ if (data)
36
+ config.data = data;
37
+ if (query)
38
+ config.params = query;
39
+ if (headers)
40
+ config.headers = headers;
41
+ return this._http.request(config);
42
+ }, "AdminCreateCustomer");
43
+ }
44
+ });
45
+
46
+ // dist/useCases/AdminUpdateCustomer.js
47
+ var require_AdminUpdateCustomer = __commonJS({
48
+ "dist/useCases/AdminUpdateCustomer.js"(exports, module) {
49
+ module.exports = /* @__PURE__ */ __name(function AdminUpdateCustomer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
50
+ if (!requestData)
51
+ requestData = {};
52
+ const pathParams = [":id"];
53
+ const { data, query, headers } = requestData;
54
+ let url = "/admin/customers/:id";
55
+ if (pathParams && data) {
56
+ for (const param of pathParams) {
57
+ const paramName = param.replace(":", "");
58
+ url = url.replace(param, data[paramName]);
59
+ }
60
+ }
61
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
62
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
63
+ const missing = missingParams.map((param) => param.replace(":", ""));
64
+ return Promise.reject(
65
+ new Error("Missing parameters: " + missing.join(", "))
66
+ );
67
+ }
68
+ const config = {
69
+ method: "put",
70
+ url,
71
+ ...httpConfigOptions
72
+ };
73
+ if (data)
74
+ config.data = data;
75
+ if (query)
76
+ config.params = query;
77
+ if (headers)
78
+ config.headers = headers;
79
+ return this._http.request(config);
80
+ }, "AdminUpdateCustomer");
81
+ }
82
+ });
83
+
84
+ // dist/useCases/AdminDescribeCustomer.js
85
+ var require_AdminDescribeCustomer = __commonJS({
86
+ "dist/useCases/AdminDescribeCustomer.js"(exports, module) {
87
+ module.exports = /* @__PURE__ */ __name(function AdminDescribeCustomer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
88
+ if (!requestData)
89
+ requestData = {};
90
+ const pathParams = [":id"];
91
+ const { data, query, headers } = requestData;
92
+ let url = "/admin/customers/:id";
93
+ if (pathParams && data) {
94
+ for (const param of pathParams) {
95
+ const paramName = param.replace(":", "");
96
+ url = url.replace(param, data[paramName]);
97
+ }
98
+ }
99
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
100
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
101
+ const missing = missingParams.map((param) => param.replace(":", ""));
102
+ return Promise.reject(
103
+ new Error("Missing parameters: " + missing.join(", "))
104
+ );
105
+ }
106
+ const config = {
107
+ method: "get",
108
+ url,
109
+ ...httpConfigOptions
110
+ };
111
+ if (data)
112
+ config.data = data;
113
+ if (query)
114
+ config.params = query;
115
+ if (headers)
116
+ config.headers = headers;
117
+ return this._http.request(config);
118
+ }, "AdminDescribeCustomer");
119
+ }
120
+ });
121
+
6
122
  // dist/useCases/AdminListCustomers.js
7
123
  var require_AdminListCustomers = __commonJS({
8
124
  "dist/useCases/AdminListCustomers.js"(exports, module) {
9
- module.exports = function AdminListCustomers(requestData, options = {}) {
125
+ module.exports = /* @__PURE__ */ __name(function AdminListCustomers(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
10
126
  if (!requestData)
11
127
  requestData = {};
12
128
  const pathParams = null;
@@ -28,7 +144,7 @@ var require_AdminListCustomers = __commonJS({
28
144
  const config = {
29
145
  method: "get",
30
146
  url,
31
- ...options
147
+ ...httpConfigOptions
32
148
  };
33
149
  if (data)
34
150
  config.data = data;
@@ -37,14 +153,14 @@ var require_AdminListCustomers = __commonJS({
37
153
  if (headers)
38
154
  config.headers = headers;
39
155
  return this._http.request(config);
40
- };
156
+ }, "AdminListCustomers");
41
157
  }
42
158
  });
43
159
 
44
160
  // dist/useCases/AdminListProperties.js
45
161
  var require_AdminListProperties = __commonJS({
46
162
  "dist/useCases/AdminListProperties.js"(exports, module) {
47
- module.exports = function AdminListProperties(requestData, options = {}) {
163
+ module.exports = /* @__PURE__ */ __name(function AdminListProperties(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
48
164
  if (!requestData)
49
165
  requestData = {};
50
166
  const pathParams = null;
@@ -66,7 +182,7 @@ var require_AdminListProperties = __commonJS({
66
182
  const config = {
67
183
  method: "get",
68
184
  url,
69
- ...options
185
+ ...httpConfigOptions
70
186
  };
71
187
  if (data)
72
188
  config.data = data;
@@ -75,14 +191,14 @@ var require_AdminListProperties = __commonJS({
75
191
  if (headers)
76
192
  config.headers = headers;
77
193
  return this._http.request(config);
78
- };
194
+ }, "AdminListProperties");
79
195
  }
80
196
  });
81
197
 
82
198
  // dist/useCases/AdminUpdateProperty.js
83
199
  var require_AdminUpdateProperty = __commonJS({
84
200
  "dist/useCases/AdminUpdateProperty.js"(exports, module) {
85
- module.exports = function AdminUpdateProperty(requestData, options = {}) {
201
+ module.exports = /* @__PURE__ */ __name(function AdminUpdateProperty(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
86
202
  if (!requestData)
87
203
  requestData = {};
88
204
  const pathParams = [":id"];
@@ -104,7 +220,7 @@ var require_AdminUpdateProperty = __commonJS({
104
220
  const config = {
105
221
  method: "put",
106
222
  url,
107
- ...options
223
+ ...httpConfigOptions
108
224
  };
109
225
  if (data)
110
226
  config.data = data;
@@ -113,14 +229,14 @@ var require_AdminUpdateProperty = __commonJS({
113
229
  if (headers)
114
230
  config.headers = headers;
115
231
  return this._http.request(config);
116
- };
232
+ }, "AdminUpdateProperty");
117
233
  }
118
234
  });
119
235
 
120
236
  // dist/useCases/AdminDescribeProperty.js
121
237
  var require_AdminDescribeProperty = __commonJS({
122
238
  "dist/useCases/AdminDescribeProperty.js"(exports, module) {
123
- module.exports = function AdminDescribeProperty(requestData, options = {}) {
239
+ module.exports = /* @__PURE__ */ __name(function AdminDescribeProperty(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
124
240
  if (!requestData)
125
241
  requestData = {};
126
242
  const pathParams = [":id"];
@@ -142,7 +258,7 @@ var require_AdminDescribeProperty = __commonJS({
142
258
  const config = {
143
259
  method: "get",
144
260
  url,
145
- ...options
261
+ ...httpConfigOptions
146
262
  };
147
263
  if (data)
148
264
  config.data = data;
@@ -151,14 +267,14 @@ var require_AdminDescribeProperty = __commonJS({
151
267
  if (headers)
152
268
  config.headers = headers;
153
269
  return this._http.request(config);
154
- };
270
+ }, "AdminDescribeProperty");
155
271
  }
156
272
  });
157
273
 
158
274
  // dist/useCases/AdminCreateProperty.js
159
275
  var require_AdminCreateProperty = __commonJS({
160
276
  "dist/useCases/AdminCreateProperty.js"(exports, module) {
161
- module.exports = function AdminCreateProperty(requestData, options = {}) {
277
+ module.exports = /* @__PURE__ */ __name(function AdminCreateProperty(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
162
278
  if (!requestData)
163
279
  requestData = {};
164
280
  const pathParams = null;
@@ -180,7 +296,7 @@ var require_AdminCreateProperty = __commonJS({
180
296
  const config = {
181
297
  method: "post",
182
298
  url,
183
- ...options
299
+ ...httpConfigOptions
184
300
  };
185
301
  if (data)
186
302
  config.data = data;
@@ -189,19 +305,19 @@ var require_AdminCreateProperty = __commonJS({
189
305
  if (headers)
190
306
  config.headers = headers;
191
307
  return this._http.request(config);
192
- };
308
+ }, "AdminCreateProperty");
193
309
  }
194
310
  });
195
311
 
196
- // dist/useCases/LoginUser.js
197
- var require_LoginUser = __commonJS({
198
- "dist/useCases/LoginUser.js"(exports, module) {
199
- module.exports = function LoginUser(requestData, options = {}) {
312
+ // dist/useCases/AdminCreateAdminUser.js
313
+ var require_AdminCreateAdminUser = __commonJS({
314
+ "dist/useCases/AdminCreateAdminUser.js"(exports, module) {
315
+ module.exports = /* @__PURE__ */ __name(function AdminCreateAdminUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
200
316
  if (!requestData)
201
317
  requestData = {};
202
318
  const pathParams = null;
203
319
  const { data, query, headers } = requestData;
204
- let url = "/auth/user";
320
+ let url = "/admin/users";
205
321
  if (pathParams && data) {
206
322
  for (const param of pathParams) {
207
323
  const paramName = param.replace(":", "");
@@ -218,7 +334,7 @@ var require_LoginUser = __commonJS({
218
334
  const config = {
219
335
  method: "post",
220
336
  url,
221
- ...options
337
+ ...httpConfigOptions
222
338
  };
223
339
  if (data)
224
340
  config.data = data;
@@ -227,19 +343,57 @@ var require_LoginUser = __commonJS({
227
343
  if (headers)
228
344
  config.headers = headers;
229
345
  return this._http.request(config);
230
- };
346
+ }, "AdminCreateAdminUser");
347
+ }
348
+ });
349
+
350
+ // dist/useCases/AdminListAdminUsers.js
351
+ var require_AdminListAdminUsers = __commonJS({
352
+ "dist/useCases/AdminListAdminUsers.js"(exports, module) {
353
+ module.exports = /* @__PURE__ */ __name(function AdminListAdminUsers(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
354
+ if (!requestData)
355
+ requestData = {};
356
+ const pathParams = null;
357
+ const { data, query, headers } = requestData;
358
+ let url = "/admin/users";
359
+ if (pathParams && data) {
360
+ for (const param of pathParams) {
361
+ const paramName = param.replace(":", "");
362
+ url = url.replace(param, data[paramName]);
363
+ }
364
+ }
365
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
366
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
367
+ const missing = missingParams.map((param) => param.replace(":", ""));
368
+ return Promise.reject(
369
+ new Error("Missing parameters: " + missing.join(", "))
370
+ );
371
+ }
372
+ const config = {
373
+ method: "get",
374
+ url,
375
+ ...httpConfigOptions
376
+ };
377
+ if (data)
378
+ config.data = data;
379
+ if (query)
380
+ config.params = query;
381
+ if (headers)
382
+ config.headers = headers;
383
+ return this._http.request(config);
384
+ }, "AdminListAdminUsers");
231
385
  }
232
386
  });
233
387
 
234
- // dist/useCases/LoginGateway.js
235
- var require_LoginGateway = __commonJS({
236
- "dist/useCases/LoginGateway.js"(exports, module) {
237
- module.exports = function LoginGateway(requestData, options = {}) {
388
+ // dist/useCases/AdminRequestLoginLink.js
389
+ var require_AdminRequestLoginLink = __commonJS({
390
+ "dist/useCases/AdminRequestLoginLink.js"(exports, module) {
391
+ module.exports = /* @__PURE__ */ __name(function AdminRequestLoginLink(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
238
392
  if (!requestData)
239
393
  requestData = {};
240
394
  const pathParams = null;
241
395
  const { data, query, headers } = requestData;
242
- let url = "/auth/gateway";
396
+ let url = "/admin/auth/loginToken";
243
397
  if (pathParams && data) {
244
398
  for (const param of pathParams) {
245
399
  const paramName = param.replace(":", "");
@@ -256,7 +410,7 @@ var require_LoginGateway = __commonJS({
256
410
  const config = {
257
411
  method: "post",
258
412
  url,
259
- ...options
413
+ ...httpConfigOptions
260
414
  };
261
415
  if (data)
262
416
  config.data = data;
@@ -265,14 +419,128 @@ var require_LoginGateway = __commonJS({
265
419
  if (headers)
266
420
  config.headers = headers;
267
421
  return this._http.request(config);
268
- };
422
+ }, "AdminRequestLoginLink");
423
+ }
424
+ });
425
+
426
+ // dist/useCases/AdminLoginUser.js
427
+ var require_AdminLoginUser = __commonJS({
428
+ "dist/useCases/AdminLoginUser.js"(exports, module) {
429
+ module.exports = /* @__PURE__ */ __name(function AdminLoginUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
430
+ if (!requestData)
431
+ requestData = {};
432
+ const pathParams = null;
433
+ const { data, query, headers } = requestData;
434
+ let url = "/admin/auth/user";
435
+ if (pathParams && data) {
436
+ for (const param of pathParams) {
437
+ const paramName = param.replace(":", "");
438
+ url = url.replace(param, data[paramName]);
439
+ }
440
+ }
441
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
442
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
443
+ const missing = missingParams.map((param) => param.replace(":", ""));
444
+ return Promise.reject(
445
+ new Error("Missing parameters: " + missing.join(", "))
446
+ );
447
+ }
448
+ const config = {
449
+ method: "post",
450
+ url,
451
+ ...httpConfigOptions
452
+ };
453
+ if (data)
454
+ config.data = data;
455
+ if (query)
456
+ config.params = query;
457
+ if (headers)
458
+ config.headers = headers;
459
+ return this._http.request(config);
460
+ }, "AdminLoginUser");
461
+ }
462
+ });
463
+
464
+ // dist/useCases/AdminRefreshToken.js
465
+ var require_AdminRefreshToken = __commonJS({
466
+ "dist/useCases/AdminRefreshToken.js"(exports, module) {
467
+ module.exports = /* @__PURE__ */ __name(function AdminRefreshToken(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
468
+ if (!requestData)
469
+ requestData = {};
470
+ const pathParams = null;
471
+ const { data, query, headers } = requestData;
472
+ let url = "/admin/auth/refresh";
473
+ if (pathParams && data) {
474
+ for (const param of pathParams) {
475
+ const paramName = param.replace(":", "");
476
+ url = url.replace(param, data[paramName]);
477
+ }
478
+ }
479
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
480
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
481
+ const missing = missingParams.map((param) => param.replace(":", ""));
482
+ return Promise.reject(
483
+ new Error("Missing parameters: " + missing.join(", "))
484
+ );
485
+ }
486
+ const config = {
487
+ method: "post",
488
+ url,
489
+ ...httpConfigOptions
490
+ };
491
+ if (data)
492
+ config.data = data;
493
+ if (query)
494
+ config.params = query;
495
+ if (headers)
496
+ config.headers = headers;
497
+ return this._http.request(config);
498
+ }, "AdminRefreshToken");
499
+ }
500
+ });
501
+
502
+ // dist/useCases/LoginUser.js
503
+ var require_LoginUser = __commonJS({
504
+ "dist/useCases/LoginUser.js"(exports, module) {
505
+ module.exports = /* @__PURE__ */ __name(function LoginUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
506
+ if (!requestData)
507
+ requestData = {};
508
+ const pathParams = null;
509
+ const { data, query, headers } = requestData;
510
+ let url = "/auth/user";
511
+ if (pathParams && data) {
512
+ for (const param of pathParams) {
513
+ const paramName = param.replace(":", "");
514
+ url = url.replace(param, data[paramName]);
515
+ }
516
+ }
517
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
518
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
519
+ const missing = missingParams.map((param) => param.replace(":", ""));
520
+ return Promise.reject(
521
+ new Error("Missing parameters: " + missing.join(", "))
522
+ );
523
+ }
524
+ const config = {
525
+ method: "post",
526
+ url,
527
+ ...httpConfigOptions
528
+ };
529
+ if (data)
530
+ config.data = data;
531
+ if (query)
532
+ config.params = query;
533
+ if (headers)
534
+ config.headers = headers;
535
+ return this._http.request(config);
536
+ }, "LoginUser");
269
537
  }
270
538
  });
271
539
 
272
540
  // dist/useCases/RefreshToken.js
273
541
  var require_RefreshToken = __commonJS({
274
542
  "dist/useCases/RefreshToken.js"(exports, module) {
275
- module.exports = function RefreshToken(requestData, options = {}) {
543
+ module.exports = /* @__PURE__ */ __name(function RefreshToken(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
276
544
  if (!requestData)
277
545
  requestData = {};
278
546
  const pathParams = null;
@@ -294,7 +562,7 @@ var require_RefreshToken = __commonJS({
294
562
  const config = {
295
563
  method: "post",
296
564
  url,
297
- ...options
565
+ ...httpConfigOptions
298
566
  };
299
567
  if (data)
300
568
  config.data = data;
@@ -303,14 +571,14 @@ var require_RefreshToken = __commonJS({
303
571
  if (headers)
304
572
  config.headers = headers;
305
573
  return this._http.request(config);
306
- };
574
+ }, "RefreshToken");
307
575
  }
308
576
  });
309
577
 
310
578
  // dist/useCases/RequestLoginLink.js
311
579
  var require_RequestLoginLink = __commonJS({
312
580
  "dist/useCases/RequestLoginLink.js"(exports, module) {
313
- module.exports = function RequestLoginLink(requestData, options = {}) {
581
+ module.exports = /* @__PURE__ */ __name(function RequestLoginLink(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
314
582
  if (!requestData)
315
583
  requestData = {};
316
584
  const pathParams = null;
@@ -332,7 +600,7 @@ var require_RequestLoginLink = __commonJS({
332
600
  const config = {
333
601
  method: "post",
334
602
  url,
335
- ...options
603
+ ...httpConfigOptions
336
604
  };
337
605
  if (data)
338
606
  config.data = data;
@@ -341,14 +609,14 @@ var require_RequestLoginLink = __commonJS({
341
609
  if (headers)
342
610
  config.headers = headers;
343
611
  return this._http.request(config);
344
- };
612
+ }, "RequestLoginLink");
345
613
  }
346
614
  });
347
615
 
348
616
  // dist/useCases/DescribeSelf.js
349
617
  var require_DescribeSelf = __commonJS({
350
618
  "dist/useCases/DescribeSelf.js"(exports, module) {
351
- module.exports = function DescribeSelf(requestData, options = {}) {
619
+ module.exports = /* @__PURE__ */ __name(function DescribeSelf(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
352
620
  if (!requestData)
353
621
  requestData = {};
354
622
  const pathParams = null;
@@ -370,7 +638,7 @@ var require_DescribeSelf = __commonJS({
370
638
  const config = {
371
639
  method: "get",
372
640
  url,
373
- ...options
641
+ ...httpConfigOptions
374
642
  };
375
643
  if (data)
376
644
  config.data = data;
@@ -379,14 +647,14 @@ var require_DescribeSelf = __commonJS({
379
647
  if (headers)
380
648
  config.headers = headers;
381
649
  return this._http.request(config);
382
- };
650
+ }, "DescribeSelf");
383
651
  }
384
652
  });
385
653
 
386
654
  // dist/useCases/DescribeUser.js
387
655
  var require_DescribeUser = __commonJS({
388
656
  "dist/useCases/DescribeUser.js"(exports, module) {
389
- module.exports = function DescribeUser(requestData, options = {}) {
657
+ module.exports = /* @__PURE__ */ __name(function DescribeUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
390
658
  if (!requestData)
391
659
  requestData = {};
392
660
  const pathParams = [":id"];
@@ -408,7 +676,7 @@ var require_DescribeUser = __commonJS({
408
676
  const config = {
409
677
  method: "get",
410
678
  url,
411
- ...options
679
+ ...httpConfigOptions
412
680
  };
413
681
  if (data)
414
682
  config.data = data;
@@ -417,14 +685,14 @@ var require_DescribeUser = __commonJS({
417
685
  if (headers)
418
686
  config.headers = headers;
419
687
  return this._http.request(config);
420
- };
688
+ }, "DescribeUser");
421
689
  }
422
690
  });
423
691
 
424
692
  // dist/useCases/CreateUser.js
425
693
  var require_CreateUser = __commonJS({
426
694
  "dist/useCases/CreateUser.js"(exports, module) {
427
- module.exports = function CreateUser(requestData, options = {}) {
695
+ module.exports = /* @__PURE__ */ __name(function CreateUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
428
696
  if (!requestData)
429
697
  requestData = {};
430
698
  const pathParams = null;
@@ -446,7 +714,7 @@ var require_CreateUser = __commonJS({
446
714
  const config = {
447
715
  method: "post",
448
716
  url,
449
- ...options
717
+ ...httpConfigOptions
450
718
  };
451
719
  if (data)
452
720
  config.data = data;
@@ -455,14 +723,14 @@ var require_CreateUser = __commonJS({
455
723
  if (headers)
456
724
  config.headers = headers;
457
725
  return this._http.request(config);
458
- };
726
+ }, "CreateUser");
459
727
  }
460
728
  });
461
729
 
462
730
  // dist/useCases/ListUsers.js
463
731
  var require_ListUsers = __commonJS({
464
732
  "dist/useCases/ListUsers.js"(exports, module) {
465
- module.exports = function ListUsers(requestData, options = {}) {
733
+ module.exports = /* @__PURE__ */ __name(function ListUsers(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
466
734
  if (!requestData)
467
735
  requestData = {};
468
736
  const pathParams = null;
@@ -484,7 +752,7 @@ var require_ListUsers = __commonJS({
484
752
  const config = {
485
753
  method: "get",
486
754
  url,
487
- ...options
755
+ ...httpConfigOptions
488
756
  };
489
757
  if (data)
490
758
  config.data = data;
@@ -493,14 +761,14 @@ var require_ListUsers = __commonJS({
493
761
  if (headers)
494
762
  config.headers = headers;
495
763
  return this._http.request(config);
496
- };
764
+ }, "ListUsers");
497
765
  }
498
766
  });
499
767
 
500
768
  // dist/useCases/UpdateSelf.js
501
769
  var require_UpdateSelf = __commonJS({
502
770
  "dist/useCases/UpdateSelf.js"(exports, module) {
503
- module.exports = function UpdateSelf(requestData, options = {}) {
771
+ module.exports = /* @__PURE__ */ __name(function UpdateSelf(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
504
772
  if (!requestData)
505
773
  requestData = {};
506
774
  const pathParams = null;
@@ -522,7 +790,7 @@ var require_UpdateSelf = __commonJS({
522
790
  const config = {
523
791
  method: "put",
524
792
  url,
525
- ...options
793
+ ...httpConfigOptions
526
794
  };
527
795
  if (data)
528
796
  config.data = data;
@@ -531,14 +799,14 @@ var require_UpdateSelf = __commonJS({
531
799
  if (headers)
532
800
  config.headers = headers;
533
801
  return this._http.request(config);
534
- };
802
+ }, "UpdateSelf");
535
803
  }
536
804
  });
537
805
 
538
806
  // dist/useCases/UpdateUser.js
539
807
  var require_UpdateUser = __commonJS({
540
808
  "dist/useCases/UpdateUser.js"(exports, module) {
541
- module.exports = function UpdateUser(requestData, options = {}) {
809
+ module.exports = /* @__PURE__ */ __name(function UpdateUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
542
810
  if (!requestData)
543
811
  requestData = {};
544
812
  const pathParams = [":id"];
@@ -560,7 +828,7 @@ var require_UpdateUser = __commonJS({
560
828
  const config = {
561
829
  method: "put",
562
830
  url,
563
- ...options
831
+ ...httpConfigOptions
564
832
  };
565
833
  if (data)
566
834
  config.data = data;
@@ -569,14 +837,14 @@ var require_UpdateUser = __commonJS({
569
837
  if (headers)
570
838
  config.headers = headers;
571
839
  return this._http.request(config);
572
- };
840
+ }, "UpdateUser");
573
841
  }
574
842
  });
575
843
 
576
844
  // dist/useCases/DeleteUser.js
577
845
  var require_DeleteUser = __commonJS({
578
846
  "dist/useCases/DeleteUser.js"(exports, module) {
579
- module.exports = function DeleteUser(requestData, options = {}) {
847
+ module.exports = /* @__PURE__ */ __name(function DeleteUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
580
848
  if (!requestData)
581
849
  requestData = {};
582
850
  const pathParams = [":id"];
@@ -598,7 +866,7 @@ var require_DeleteUser = __commonJS({
598
866
  const config = {
599
867
  method: "delete",
600
868
  url,
601
- ...options
869
+ ...httpConfigOptions
602
870
  };
603
871
  if (data)
604
872
  config.data = data;
@@ -607,14 +875,14 @@ var require_DeleteUser = __commonJS({
607
875
  if (headers)
608
876
  config.headers = headers;
609
877
  return this._http.request(config);
610
- };
878
+ }, "DeleteUser");
611
879
  }
612
880
  });
613
881
 
614
882
  // dist/useCases/SendVerificationCode.js
615
883
  var require_SendVerificationCode = __commonJS({
616
884
  "dist/useCases/SendVerificationCode.js"(exports, module) {
617
- module.exports = function SendVerificationCode(requestData, options = {}) {
885
+ module.exports = /* @__PURE__ */ __name(function SendVerificationCode(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
618
886
  if (!requestData)
619
887
  requestData = {};
620
888
  const pathParams = [":id"];
@@ -636,7 +904,7 @@ var require_SendVerificationCode = __commonJS({
636
904
  const config = {
637
905
  method: "post",
638
906
  url,
639
- ...options
907
+ ...httpConfigOptions
640
908
  };
641
909
  if (data)
642
910
  config.data = data;
@@ -645,14 +913,14 @@ var require_SendVerificationCode = __commonJS({
645
913
  if (headers)
646
914
  config.headers = headers;
647
915
  return this._http.request(config);
648
- };
916
+ }, "SendVerificationCode");
649
917
  }
650
918
  });
651
919
 
652
920
  // dist/useCases/CheckVerificationCode.js
653
921
  var require_CheckVerificationCode = __commonJS({
654
922
  "dist/useCases/CheckVerificationCode.js"(exports, module) {
655
- module.exports = function CheckVerificationCode(requestData, options = {}) {
923
+ module.exports = /* @__PURE__ */ __name(function CheckVerificationCode(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
656
924
  if (!requestData)
657
925
  requestData = {};
658
926
  const pathParams = [":id"];
@@ -674,7 +942,7 @@ var require_CheckVerificationCode = __commonJS({
674
942
  const config = {
675
943
  method: "post",
676
944
  url,
677
- ...options
945
+ ...httpConfigOptions
678
946
  };
679
947
  if (data)
680
948
  config.data = data;
@@ -683,14 +951,14 @@ var require_CheckVerificationCode = __commonJS({
683
951
  if (headers)
684
952
  config.headers = headers;
685
953
  return this._http.request(config);
686
- };
954
+ }, "CheckVerificationCode");
687
955
  }
688
956
  });
689
957
 
690
958
  // dist/useCases/MatchUserIdentification.js
691
959
  var require_MatchUserIdentification = __commonJS({
692
960
  "dist/useCases/MatchUserIdentification.js"(exports, module) {
693
- module.exports = function MatchUserIdentification(requestData, options = {}) {
961
+ module.exports = /* @__PURE__ */ __name(function MatchUserIdentification(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
694
962
  if (!requestData)
695
963
  requestData = {};
696
964
  const pathParams = [":id"];
@@ -712,7 +980,7 @@ var require_MatchUserIdentification = __commonJS({
712
980
  const config = {
713
981
  method: "post",
714
982
  url,
715
- ...options
983
+ ...httpConfigOptions
716
984
  };
717
985
  if (data)
718
986
  config.data = data;
@@ -721,14 +989,14 @@ var require_MatchUserIdentification = __commonJS({
721
989
  if (headers)
722
990
  config.headers = headers;
723
991
  return this._http.request(config);
724
- };
992
+ }, "MatchUserIdentification");
725
993
  }
726
994
  });
727
995
 
728
996
  // dist/useCases/ListUserReservations.js
729
997
  var require_ListUserReservations = __commonJS({
730
998
  "dist/useCases/ListUserReservations.js"(exports, module) {
731
- module.exports = function ListUserReservations(requestData, options = {}) {
999
+ module.exports = /* @__PURE__ */ __name(function ListUserReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
732
1000
  if (!requestData)
733
1001
  requestData = {};
734
1002
  const pathParams = [":id"];
@@ -750,7 +1018,7 @@ var require_ListUserReservations = __commonJS({
750
1018
  const config = {
751
1019
  method: "get",
752
1020
  url,
753
- ...options
1021
+ ...httpConfigOptions
754
1022
  };
755
1023
  if (data)
756
1024
  config.data = data;
@@ -759,14 +1027,14 @@ var require_ListUserReservations = __commonJS({
759
1027
  if (headers)
760
1028
  config.headers = headers;
761
1029
  return this._http.request(config);
762
- };
1030
+ }, "ListUserReservations");
763
1031
  }
764
1032
  });
765
1033
 
766
1034
  // dist/useCases/ListSpaces.js
767
1035
  var require_ListSpaces = __commonJS({
768
1036
  "dist/useCases/ListSpaces.js"(exports, module) {
769
- module.exports = function ListSpaces(requestData, options = {}) {
1037
+ module.exports = /* @__PURE__ */ __name(function ListSpaces(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
770
1038
  if (!requestData)
771
1039
  requestData = {};
772
1040
  const pathParams = null;
@@ -788,7 +1056,7 @@ var require_ListSpaces = __commonJS({
788
1056
  const config = {
789
1057
  method: "get",
790
1058
  url,
791
- ...options
1059
+ ...httpConfigOptions
792
1060
  };
793
1061
  if (data)
794
1062
  config.data = data;
@@ -797,14 +1065,14 @@ var require_ListSpaces = __commonJS({
797
1065
  if (headers)
798
1066
  config.headers = headers;
799
1067
  return this._http.request(config);
800
- };
1068
+ }, "ListSpaces");
801
1069
  }
802
1070
  });
803
1071
 
804
1072
  // dist/useCases/ListMySpaces.js
805
1073
  var require_ListMySpaces = __commonJS({
806
1074
  "dist/useCases/ListMySpaces.js"(exports, module) {
807
- module.exports = function ListMySpaces(requestData, options = {}) {
1075
+ module.exports = /* @__PURE__ */ __name(function ListMySpaces(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
808
1076
  if (!requestData)
809
1077
  requestData = {};
810
1078
  const pathParams = null;
@@ -826,7 +1094,7 @@ var require_ListMySpaces = __commonJS({
826
1094
  const config = {
827
1095
  method: "get",
828
1096
  url,
829
- ...options
1097
+ ...httpConfigOptions
830
1098
  };
831
1099
  if (data)
832
1100
  config.data = data;
@@ -835,14 +1103,14 @@ var require_ListMySpaces = __commonJS({
835
1103
  if (headers)
836
1104
  config.headers = headers;
837
1105
  return this._http.request(config);
838
- };
1106
+ }, "ListMySpaces");
839
1107
  }
840
1108
  });
841
1109
 
842
1110
  // dist/useCases/ListRoomsInSpace.js
843
1111
  var require_ListRoomsInSpace = __commonJS({
844
1112
  "dist/useCases/ListRoomsInSpace.js"(exports, module) {
845
- module.exports = function ListRoomsInSpace(requestData, options = {}) {
1113
+ module.exports = /* @__PURE__ */ __name(function ListRoomsInSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
846
1114
  if (!requestData)
847
1115
  requestData = {};
848
1116
  const pathParams = [":id"];
@@ -864,7 +1132,7 @@ var require_ListRoomsInSpace = __commonJS({
864
1132
  const config = {
865
1133
  method: "get",
866
1134
  url,
867
- ...options
1135
+ ...httpConfigOptions
868
1136
  };
869
1137
  if (data)
870
1138
  config.data = data;
@@ -873,14 +1141,14 @@ var require_ListRoomsInSpace = __commonJS({
873
1141
  if (headers)
874
1142
  config.headers = headers;
875
1143
  return this._http.request(config);
876
- };
1144
+ }, "ListRoomsInSpace");
877
1145
  }
878
1146
  });
879
1147
 
880
1148
  // dist/useCases/CreateSpace.js
881
1149
  var require_CreateSpace = __commonJS({
882
1150
  "dist/useCases/CreateSpace.js"(exports, module) {
883
- module.exports = function CreateSpace(requestData, options = {}) {
1151
+ module.exports = /* @__PURE__ */ __name(function CreateSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
884
1152
  if (!requestData)
885
1153
  requestData = {};
886
1154
  const pathParams = null;
@@ -902,7 +1170,7 @@ var require_CreateSpace = __commonJS({
902
1170
  const config = {
903
1171
  method: "post",
904
1172
  url,
905
- ...options
1173
+ ...httpConfigOptions
906
1174
  };
907
1175
  if (data)
908
1176
  config.data = data;
@@ -911,14 +1179,14 @@ var require_CreateSpace = __commonJS({
911
1179
  if (headers)
912
1180
  config.headers = headers;
913
1181
  return this._http.request(config);
914
- };
1182
+ }, "CreateSpace");
915
1183
  }
916
1184
  });
917
1185
 
918
1186
  // dist/useCases/DescribeSpace.js
919
1187
  var require_DescribeSpace = __commonJS({
920
1188
  "dist/useCases/DescribeSpace.js"(exports, module) {
921
- module.exports = function DescribeSpace(requestData, options = {}) {
1189
+ module.exports = /* @__PURE__ */ __name(function DescribeSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
922
1190
  if (!requestData)
923
1191
  requestData = {};
924
1192
  const pathParams = [":id"];
@@ -940,7 +1208,7 @@ var require_DescribeSpace = __commonJS({
940
1208
  const config = {
941
1209
  method: "get",
942
1210
  url,
943
- ...options
1211
+ ...httpConfigOptions
944
1212
  };
945
1213
  if (data)
946
1214
  config.data = data;
@@ -949,14 +1217,14 @@ var require_DescribeSpace = __commonJS({
949
1217
  if (headers)
950
1218
  config.headers = headers;
951
1219
  return this._http.request(config);
952
- };
1220
+ }, "DescribeSpace");
953
1221
  }
954
1222
  });
955
1223
 
956
1224
  // dist/useCases/DeleteSpace.js
957
1225
  var require_DeleteSpace = __commonJS({
958
1226
  "dist/useCases/DeleteSpace.js"(exports, module) {
959
- module.exports = function DeleteSpace(requestData, options = {}) {
1227
+ module.exports = /* @__PURE__ */ __name(function DeleteSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
960
1228
  if (!requestData)
961
1229
  requestData = {};
962
1230
  const pathParams = [":id"];
@@ -978,7 +1246,7 @@ var require_DeleteSpace = __commonJS({
978
1246
  const config = {
979
1247
  method: "delete",
980
1248
  url,
981
- ...options
1249
+ ...httpConfigOptions
982
1250
  };
983
1251
  if (data)
984
1252
  config.data = data;
@@ -987,14 +1255,14 @@ var require_DeleteSpace = __commonJS({
987
1255
  if (headers)
988
1256
  config.headers = headers;
989
1257
  return this._http.request(config);
990
- };
1258
+ }, "DeleteSpace");
991
1259
  }
992
1260
  });
993
1261
 
994
1262
  // dist/useCases/UpdateSpace.js
995
1263
  var require_UpdateSpace = __commonJS({
996
1264
  "dist/useCases/UpdateSpace.js"(exports, module) {
997
- module.exports = function UpdateSpace(requestData, options = {}) {
1265
+ module.exports = /* @__PURE__ */ __name(function UpdateSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
998
1266
  if (!requestData)
999
1267
  requestData = {};
1000
1268
  const pathParams = [":id"];
@@ -1016,7 +1284,7 @@ var require_UpdateSpace = __commonJS({
1016
1284
  const config = {
1017
1285
  method: "put",
1018
1286
  url,
1019
- ...options
1287
+ ...httpConfigOptions
1020
1288
  };
1021
1289
  if (data)
1022
1290
  config.data = data;
@@ -1025,14 +1293,14 @@ var require_UpdateSpace = __commonJS({
1025
1293
  if (headers)
1026
1294
  config.headers = headers;
1027
1295
  return this._http.request(config);
1028
- };
1296
+ }, "UpdateSpace");
1029
1297
  }
1030
1298
  });
1031
1299
 
1032
1300
  // dist/useCases/CreateRoomInSpace.js
1033
1301
  var require_CreateRoomInSpace = __commonJS({
1034
1302
  "dist/useCases/CreateRoomInSpace.js"(exports, module) {
1035
- module.exports = function CreateRoomInSpace(requestData, options = {}) {
1303
+ module.exports = /* @__PURE__ */ __name(function CreateRoomInSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1036
1304
  if (!requestData)
1037
1305
  requestData = {};
1038
1306
  const pathParams = [":id"];
@@ -1054,7 +1322,7 @@ var require_CreateRoomInSpace = __commonJS({
1054
1322
  const config = {
1055
1323
  method: "post",
1056
1324
  url,
1057
- ...options
1325
+ ...httpConfigOptions
1058
1326
  };
1059
1327
  if (data)
1060
1328
  config.data = data;
@@ -1063,14 +1331,14 @@ var require_CreateRoomInSpace = __commonJS({
1063
1331
  if (headers)
1064
1332
  config.headers = headers;
1065
1333
  return this._http.request(config);
1066
- };
1334
+ }, "CreateRoomInSpace");
1067
1335
  }
1068
1336
  });
1069
1337
 
1070
1338
  // dist/useCases/ListRooms.js
1071
1339
  var require_ListRooms = __commonJS({
1072
1340
  "dist/useCases/ListRooms.js"(exports, module) {
1073
- module.exports = function ListRooms(requestData, options = {}) {
1341
+ module.exports = /* @__PURE__ */ __name(function ListRooms(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1074
1342
  if (!requestData)
1075
1343
  requestData = {};
1076
1344
  const pathParams = null;
@@ -1092,7 +1360,7 @@ var require_ListRooms = __commonJS({
1092
1360
  const config = {
1093
1361
  method: "get",
1094
1362
  url,
1095
- ...options
1363
+ ...httpConfigOptions
1096
1364
  };
1097
1365
  if (data)
1098
1366
  config.data = data;
@@ -1101,14 +1369,14 @@ var require_ListRooms = __commonJS({
1101
1369
  if (headers)
1102
1370
  config.headers = headers;
1103
1371
  return this._http.request(config);
1104
- };
1372
+ }, "ListRooms");
1105
1373
  }
1106
1374
  });
1107
1375
 
1108
1376
  // dist/useCases/DescribeRoom.js
1109
1377
  var require_DescribeRoom = __commonJS({
1110
1378
  "dist/useCases/DescribeRoom.js"(exports, module) {
1111
- module.exports = function DescribeRoom(requestData, options = {}) {
1379
+ module.exports = /* @__PURE__ */ __name(function DescribeRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1112
1380
  if (!requestData)
1113
1381
  requestData = {};
1114
1382
  const pathParams = [":id"];
@@ -1130,7 +1398,7 @@ var require_DescribeRoom = __commonJS({
1130
1398
  const config = {
1131
1399
  method: "get",
1132
1400
  url,
1133
- ...options
1401
+ ...httpConfigOptions
1134
1402
  };
1135
1403
  if (data)
1136
1404
  config.data = data;
@@ -1139,14 +1407,14 @@ var require_DescribeRoom = __commonJS({
1139
1407
  if (headers)
1140
1408
  config.headers = headers;
1141
1409
  return this._http.request(config);
1142
- };
1410
+ }, "DescribeRoom");
1143
1411
  }
1144
1412
  });
1145
1413
 
1146
1414
  // dist/useCases/CreateRoom.js
1147
1415
  var require_CreateRoom = __commonJS({
1148
1416
  "dist/useCases/CreateRoom.js"(exports, module) {
1149
- module.exports = function CreateRoom(requestData, options = {}) {
1417
+ module.exports = /* @__PURE__ */ __name(function CreateRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1150
1418
  if (!requestData)
1151
1419
  requestData = {};
1152
1420
  const pathParams = null;
@@ -1168,7 +1436,7 @@ var require_CreateRoom = __commonJS({
1168
1436
  const config = {
1169
1437
  method: "post",
1170
1438
  url,
1171
- ...options
1439
+ ...httpConfigOptions
1172
1440
  };
1173
1441
  if (data)
1174
1442
  config.data = data;
@@ -1177,14 +1445,14 @@ var require_CreateRoom = __commonJS({
1177
1445
  if (headers)
1178
1446
  config.headers = headers;
1179
1447
  return this._http.request(config);
1180
- };
1448
+ }, "CreateRoom");
1181
1449
  }
1182
1450
  });
1183
1451
 
1184
1452
  // dist/useCases/UpdateRoom.js
1185
1453
  var require_UpdateRoom = __commonJS({
1186
1454
  "dist/useCases/UpdateRoom.js"(exports, module) {
1187
- module.exports = function UpdateRoom(requestData, options = {}) {
1455
+ module.exports = /* @__PURE__ */ __name(function UpdateRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1188
1456
  if (!requestData)
1189
1457
  requestData = {};
1190
1458
  const pathParams = [":id"];
@@ -1206,7 +1474,7 @@ var require_UpdateRoom = __commonJS({
1206
1474
  const config = {
1207
1475
  method: "put",
1208
1476
  url,
1209
- ...options
1477
+ ...httpConfigOptions
1210
1478
  };
1211
1479
  if (data)
1212
1480
  config.data = data;
@@ -1215,14 +1483,14 @@ var require_UpdateRoom = __commonJS({
1215
1483
  if (headers)
1216
1484
  config.headers = headers;
1217
1485
  return this._http.request(config);
1218
- };
1486
+ }, "UpdateRoom");
1219
1487
  }
1220
1488
  });
1221
1489
 
1222
1490
  // dist/useCases/DeleteRoom.js
1223
1491
  var require_DeleteRoom = __commonJS({
1224
1492
  "dist/useCases/DeleteRoom.js"(exports, module) {
1225
- module.exports = function DeleteRoom(requestData, options = {}) {
1493
+ module.exports = /* @__PURE__ */ __name(function DeleteRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1226
1494
  if (!requestData)
1227
1495
  requestData = {};
1228
1496
  const pathParams = [":id"];
@@ -1244,7 +1512,7 @@ var require_DeleteRoom = __commonJS({
1244
1512
  const config = {
1245
1513
  method: "delete",
1246
1514
  url,
1247
- ...options
1515
+ ...httpConfigOptions
1248
1516
  };
1249
1517
  if (data)
1250
1518
  config.data = data;
@@ -1253,14 +1521,14 @@ var require_DeleteRoom = __commonJS({
1253
1521
  if (headers)
1254
1522
  config.headers = headers;
1255
1523
  return this._http.request(config);
1256
- };
1524
+ }, "DeleteRoom");
1257
1525
  }
1258
1526
  });
1259
1527
 
1260
1528
  // dist/useCases/CreateAlarm.js
1261
1529
  var require_CreateAlarm = __commonJS({
1262
1530
  "dist/useCases/CreateAlarm.js"(exports, module) {
1263
- module.exports = function CreateAlarm(requestData, options = {}) {
1531
+ module.exports = /* @__PURE__ */ __name(function CreateAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1264
1532
  if (!requestData)
1265
1533
  requestData = {};
1266
1534
  const pathParams = [":roomId"];
@@ -1282,7 +1550,7 @@ var require_CreateAlarm = __commonJS({
1282
1550
  const config = {
1283
1551
  method: "post",
1284
1552
  url,
1285
- ...options
1553
+ ...httpConfigOptions
1286
1554
  };
1287
1555
  if (data)
1288
1556
  config.data = data;
@@ -1291,14 +1559,14 @@ var require_CreateAlarm = __commonJS({
1291
1559
  if (headers)
1292
1560
  config.headers = headers;
1293
1561
  return this._http.request(config);
1294
- };
1562
+ }, "CreateAlarm");
1295
1563
  }
1296
1564
  });
1297
1565
 
1298
1566
  // dist/useCases/ListAlarms.js
1299
1567
  var require_ListAlarms = __commonJS({
1300
1568
  "dist/useCases/ListAlarms.js"(exports, module) {
1301
- module.exports = function ListAlarms(requestData, options = {}) {
1569
+ module.exports = /* @__PURE__ */ __name(function ListAlarms(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1302
1570
  if (!requestData)
1303
1571
  requestData = {};
1304
1572
  const pathParams = [":roomId"];
@@ -1320,7 +1588,7 @@ var require_ListAlarms = __commonJS({
1320
1588
  const config = {
1321
1589
  method: "get",
1322
1590
  url,
1323
- ...options
1591
+ ...httpConfigOptions
1324
1592
  };
1325
1593
  if (data)
1326
1594
  config.data = data;
@@ -1329,14 +1597,14 @@ var require_ListAlarms = __commonJS({
1329
1597
  if (headers)
1330
1598
  config.headers = headers;
1331
1599
  return this._http.request(config);
1332
- };
1600
+ }, "ListAlarms");
1333
1601
  }
1334
1602
  });
1335
1603
 
1336
1604
  // dist/useCases/UpdateAlarm.js
1337
1605
  var require_UpdateAlarm = __commonJS({
1338
1606
  "dist/useCases/UpdateAlarm.js"(exports, module) {
1339
- module.exports = function UpdateAlarm(requestData, options = {}) {
1607
+ module.exports = /* @__PURE__ */ __name(function UpdateAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1340
1608
  if (!requestData)
1341
1609
  requestData = {};
1342
1610
  const pathParams = [":roomId", ":id"];
@@ -1358,7 +1626,7 @@ var require_UpdateAlarm = __commonJS({
1358
1626
  const config = {
1359
1627
  method: "put",
1360
1628
  url,
1361
- ...options
1629
+ ...httpConfigOptions
1362
1630
  };
1363
1631
  if (data)
1364
1632
  config.data = data;
@@ -1367,14 +1635,14 @@ var require_UpdateAlarm = __commonJS({
1367
1635
  if (headers)
1368
1636
  config.headers = headers;
1369
1637
  return this._http.request(config);
1370
- };
1638
+ }, "UpdateAlarm");
1371
1639
  }
1372
1640
  });
1373
1641
 
1374
1642
  // dist/useCases/DeleteAlarm.js
1375
1643
  var require_DeleteAlarm = __commonJS({
1376
1644
  "dist/useCases/DeleteAlarm.js"(exports, module) {
1377
- module.exports = function DeleteAlarm(requestData, options = {}) {
1645
+ module.exports = /* @__PURE__ */ __name(function DeleteAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1378
1646
  if (!requestData)
1379
1647
  requestData = {};
1380
1648
  const pathParams = [":roomId", ":id"];
@@ -1396,7 +1664,7 @@ var require_DeleteAlarm = __commonJS({
1396
1664
  const config = {
1397
1665
  method: "delete",
1398
1666
  url,
1399
- ...options
1667
+ ...httpConfigOptions
1400
1668
  };
1401
1669
  if (data)
1402
1670
  config.data = data;
@@ -1405,14 +1673,14 @@ var require_DeleteAlarm = __commonJS({
1405
1673
  if (headers)
1406
1674
  config.headers = headers;
1407
1675
  return this._http.request(config);
1408
- };
1676
+ }, "DeleteAlarm");
1409
1677
  }
1410
1678
  });
1411
1679
 
1412
1680
  // dist/useCases/DescribeAlarm.js
1413
1681
  var require_DescribeAlarm = __commonJS({
1414
1682
  "dist/useCases/DescribeAlarm.js"(exports, module) {
1415
- module.exports = function DescribeAlarm(requestData, options = {}) {
1683
+ module.exports = /* @__PURE__ */ __name(function DescribeAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1416
1684
  if (!requestData)
1417
1685
  requestData = {};
1418
1686
  const pathParams = [":roomId", ":id"];
@@ -1434,7 +1702,7 @@ var require_DescribeAlarm = __commonJS({
1434
1702
  const config = {
1435
1703
  method: "get",
1436
1704
  url,
1437
- ...options
1705
+ ...httpConfigOptions
1438
1706
  };
1439
1707
  if (data)
1440
1708
  config.data = data;
@@ -1443,14 +1711,14 @@ var require_DescribeAlarm = __commonJS({
1443
1711
  if (headers)
1444
1712
  config.headers = headers;
1445
1713
  return this._http.request(config);
1446
- };
1714
+ }, "DescribeAlarm");
1447
1715
  }
1448
1716
  });
1449
1717
 
1450
1718
  // dist/useCases/SetLock.js
1451
1719
  var require_SetLock = __commonJS({
1452
1720
  "dist/useCases/SetLock.js"(exports, module) {
1453
- module.exports = function SetLock(requestData, options = {}) {
1721
+ module.exports = /* @__PURE__ */ __name(function SetLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1454
1722
  if (!requestData)
1455
1723
  requestData = {};
1456
1724
  const pathParams = [":roomId", ":id"];
@@ -1472,7 +1740,7 @@ var require_SetLock = __commonJS({
1472
1740
  const config = {
1473
1741
  method: "post",
1474
1742
  url,
1475
- ...options
1743
+ ...httpConfigOptions
1476
1744
  };
1477
1745
  if (data)
1478
1746
  config.data = data;
@@ -1481,14 +1749,14 @@ var require_SetLock = __commonJS({
1481
1749
  if (headers)
1482
1750
  config.headers = headers;
1483
1751
  return this._http.request(config);
1484
- };
1752
+ }, "SetLock");
1485
1753
  }
1486
1754
  });
1487
1755
 
1488
1756
  // dist/useCases/CreateCamera.js
1489
1757
  var require_CreateCamera = __commonJS({
1490
1758
  "dist/useCases/CreateCamera.js"(exports, module) {
1491
- module.exports = function CreateCamera(requestData, options = {}) {
1759
+ module.exports = /* @__PURE__ */ __name(function CreateCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1492
1760
  if (!requestData)
1493
1761
  requestData = {};
1494
1762
  const pathParams = [":roomId"];
@@ -1510,7 +1778,7 @@ var require_CreateCamera = __commonJS({
1510
1778
  const config = {
1511
1779
  method: "post",
1512
1780
  url,
1513
- ...options
1781
+ ...httpConfigOptions
1514
1782
  };
1515
1783
  if (data)
1516
1784
  config.data = data;
@@ -1519,14 +1787,14 @@ var require_CreateCamera = __commonJS({
1519
1787
  if (headers)
1520
1788
  config.headers = headers;
1521
1789
  return this._http.request(config);
1522
- };
1790
+ }, "CreateCamera");
1523
1791
  }
1524
1792
  });
1525
1793
 
1526
1794
  // dist/useCases/ListCameras.js
1527
1795
  var require_ListCameras = __commonJS({
1528
1796
  "dist/useCases/ListCameras.js"(exports, module) {
1529
- module.exports = function ListCameras(requestData, options = {}) {
1797
+ module.exports = /* @__PURE__ */ __name(function ListCameras(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1530
1798
  if (!requestData)
1531
1799
  requestData = {};
1532
1800
  const pathParams = [":roomId"];
@@ -1548,7 +1816,7 @@ var require_ListCameras = __commonJS({
1548
1816
  const config = {
1549
1817
  method: "get",
1550
1818
  url,
1551
- ...options
1819
+ ...httpConfigOptions
1552
1820
  };
1553
1821
  if (data)
1554
1822
  config.data = data;
@@ -1557,14 +1825,14 @@ var require_ListCameras = __commonJS({
1557
1825
  if (headers)
1558
1826
  config.headers = headers;
1559
1827
  return this._http.request(config);
1560
- };
1828
+ }, "ListCameras");
1561
1829
  }
1562
1830
  });
1563
1831
 
1564
1832
  // dist/useCases/UpdateCamera.js
1565
1833
  var require_UpdateCamera = __commonJS({
1566
1834
  "dist/useCases/UpdateCamera.js"(exports, module) {
1567
- module.exports = function UpdateCamera(requestData, options = {}) {
1835
+ module.exports = /* @__PURE__ */ __name(function UpdateCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1568
1836
  if (!requestData)
1569
1837
  requestData = {};
1570
1838
  const pathParams = [":roomId", ":id"];
@@ -1586,7 +1854,7 @@ var require_UpdateCamera = __commonJS({
1586
1854
  const config = {
1587
1855
  method: "put",
1588
1856
  url,
1589
- ...options
1857
+ ...httpConfigOptions
1590
1858
  };
1591
1859
  if (data)
1592
1860
  config.data = data;
@@ -1595,14 +1863,14 @@ var require_UpdateCamera = __commonJS({
1595
1863
  if (headers)
1596
1864
  config.headers = headers;
1597
1865
  return this._http.request(config);
1598
- };
1866
+ }, "UpdateCamera");
1599
1867
  }
1600
1868
  });
1601
1869
 
1602
1870
  // dist/useCases/DeleteCamera.js
1603
1871
  var require_DeleteCamera = __commonJS({
1604
1872
  "dist/useCases/DeleteCamera.js"(exports, module) {
1605
- module.exports = function DeleteCamera(requestData, options = {}) {
1873
+ module.exports = /* @__PURE__ */ __name(function DeleteCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1606
1874
  if (!requestData)
1607
1875
  requestData = {};
1608
1876
  const pathParams = [":roomId", ":id"];
@@ -1624,7 +1892,7 @@ var require_DeleteCamera = __commonJS({
1624
1892
  const config = {
1625
1893
  method: "delete",
1626
1894
  url,
1627
- ...options
1895
+ ...httpConfigOptions
1628
1896
  };
1629
1897
  if (data)
1630
1898
  config.data = data;
@@ -1633,14 +1901,14 @@ var require_DeleteCamera = __commonJS({
1633
1901
  if (headers)
1634
1902
  config.headers = headers;
1635
1903
  return this._http.request(config);
1636
- };
1904
+ }, "DeleteCamera");
1637
1905
  }
1638
1906
  });
1639
1907
 
1640
1908
  // dist/useCases/DescribeCamera.js
1641
1909
  var require_DescribeCamera = __commonJS({
1642
1910
  "dist/useCases/DescribeCamera.js"(exports, module) {
1643
- module.exports = function DescribeCamera(requestData, options = {}) {
1911
+ module.exports = /* @__PURE__ */ __name(function DescribeCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1644
1912
  if (!requestData)
1645
1913
  requestData = {};
1646
1914
  const pathParams = [":roomId", ":id"];
@@ -1662,7 +1930,7 @@ var require_DescribeCamera = __commonJS({
1662
1930
  const config = {
1663
1931
  method: "get",
1664
1932
  url,
1665
- ...options
1933
+ ...httpConfigOptions
1666
1934
  };
1667
1935
  if (data)
1668
1936
  config.data = data;
@@ -1671,14 +1939,14 @@ var require_DescribeCamera = __commonJS({
1671
1939
  if (headers)
1672
1940
  config.headers = headers;
1673
1941
  return this._http.request(config);
1674
- };
1942
+ }, "DescribeCamera");
1675
1943
  }
1676
1944
  });
1677
1945
 
1678
1946
  // dist/useCases/SetCamera.js
1679
1947
  var require_SetCamera = __commonJS({
1680
1948
  "dist/useCases/SetCamera.js"(exports, module) {
1681
- module.exports = function SetCamera(requestData, options = {}) {
1949
+ module.exports = /* @__PURE__ */ __name(function SetCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1682
1950
  if (!requestData)
1683
1951
  requestData = {};
1684
1952
  const pathParams = [":roomId", ":id"];
@@ -1700,7 +1968,7 @@ var require_SetCamera = __commonJS({
1700
1968
  const config = {
1701
1969
  method: "post",
1702
1970
  url,
1703
- ...options
1971
+ ...httpConfigOptions
1704
1972
  };
1705
1973
  if (data)
1706
1974
  config.data = data;
@@ -1709,14 +1977,14 @@ var require_SetCamera = __commonJS({
1709
1977
  if (headers)
1710
1978
  config.headers = headers;
1711
1979
  return this._http.request(config);
1712
- };
1980
+ }, "SetCamera");
1713
1981
  }
1714
1982
  });
1715
1983
 
1716
1984
  // dist/useCases/CreateCourtesy.js
1717
1985
  var require_CreateCourtesy = __commonJS({
1718
1986
  "dist/useCases/CreateCourtesy.js"(exports, module) {
1719
- module.exports = function CreateCourtesy(requestData, options = {}) {
1987
+ module.exports = /* @__PURE__ */ __name(function CreateCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1720
1988
  if (!requestData)
1721
1989
  requestData = {};
1722
1990
  const pathParams = [":roomId"];
@@ -1738,7 +2006,7 @@ var require_CreateCourtesy = __commonJS({
1738
2006
  const config = {
1739
2007
  method: "post",
1740
2008
  url,
1741
- ...options
2009
+ ...httpConfigOptions
1742
2010
  };
1743
2011
  if (data)
1744
2012
  config.data = data;
@@ -1747,14 +2015,14 @@ var require_CreateCourtesy = __commonJS({
1747
2015
  if (headers)
1748
2016
  config.headers = headers;
1749
2017
  return this._http.request(config);
1750
- };
2018
+ }, "CreateCourtesy");
1751
2019
  }
1752
2020
  });
1753
2021
 
1754
2022
  // dist/useCases/ListCourtesy.js
1755
2023
  var require_ListCourtesy = __commonJS({
1756
2024
  "dist/useCases/ListCourtesy.js"(exports, module) {
1757
- module.exports = function ListCourtesy(requestData, options = {}) {
2025
+ module.exports = /* @__PURE__ */ __name(function ListCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1758
2026
  if (!requestData)
1759
2027
  requestData = {};
1760
2028
  const pathParams = [":roomId"];
@@ -1776,7 +2044,7 @@ var require_ListCourtesy = __commonJS({
1776
2044
  const config = {
1777
2045
  method: "get",
1778
2046
  url,
1779
- ...options
2047
+ ...httpConfigOptions
1780
2048
  };
1781
2049
  if (data)
1782
2050
  config.data = data;
@@ -1785,14 +2053,14 @@ var require_ListCourtesy = __commonJS({
1785
2053
  if (headers)
1786
2054
  config.headers = headers;
1787
2055
  return this._http.request(config);
1788
- };
2056
+ }, "ListCourtesy");
1789
2057
  }
1790
2058
  });
1791
2059
 
1792
2060
  // dist/useCases/UpdateCourtesy.js
1793
2061
  var require_UpdateCourtesy = __commonJS({
1794
2062
  "dist/useCases/UpdateCourtesy.js"(exports, module) {
1795
- module.exports = function UpdateCourtesy(requestData, options = {}) {
2063
+ module.exports = /* @__PURE__ */ __name(function UpdateCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1796
2064
  if (!requestData)
1797
2065
  requestData = {};
1798
2066
  const pathParams = [":roomId", ":id"];
@@ -1814,7 +2082,7 @@ var require_UpdateCourtesy = __commonJS({
1814
2082
  const config = {
1815
2083
  method: "put",
1816
2084
  url,
1817
- ...options
2085
+ ...httpConfigOptions
1818
2086
  };
1819
2087
  if (data)
1820
2088
  config.data = data;
@@ -1823,14 +2091,14 @@ var require_UpdateCourtesy = __commonJS({
1823
2091
  if (headers)
1824
2092
  config.headers = headers;
1825
2093
  return this._http.request(config);
1826
- };
2094
+ }, "UpdateCourtesy");
1827
2095
  }
1828
2096
  });
1829
2097
 
1830
2098
  // dist/useCases/DeleteCourtesy.js
1831
2099
  var require_DeleteCourtesy = __commonJS({
1832
2100
  "dist/useCases/DeleteCourtesy.js"(exports, module) {
1833
- module.exports = function DeleteCourtesy(requestData, options = {}) {
2101
+ module.exports = /* @__PURE__ */ __name(function DeleteCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1834
2102
  if (!requestData)
1835
2103
  requestData = {};
1836
2104
  const pathParams = [":roomId", ":id"];
@@ -1852,7 +2120,7 @@ var require_DeleteCourtesy = __commonJS({
1852
2120
  const config = {
1853
2121
  method: "delete",
1854
2122
  url,
1855
- ...options
2123
+ ...httpConfigOptions
1856
2124
  };
1857
2125
  if (data)
1858
2126
  config.data = data;
@@ -1861,14 +2129,14 @@ var require_DeleteCourtesy = __commonJS({
1861
2129
  if (headers)
1862
2130
  config.headers = headers;
1863
2131
  return this._http.request(config);
1864
- };
2132
+ }, "DeleteCourtesy");
1865
2133
  }
1866
2134
  });
1867
2135
 
1868
2136
  // dist/useCases/DescribeCourtesy.js
1869
2137
  var require_DescribeCourtesy = __commonJS({
1870
2138
  "dist/useCases/DescribeCourtesy.js"(exports, module) {
1871
- module.exports = function DescribeCourtesy(requestData, options = {}) {
2139
+ module.exports = /* @__PURE__ */ __name(function DescribeCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1872
2140
  if (!requestData)
1873
2141
  requestData = {};
1874
2142
  const pathParams = [":roomId", ":id"];
@@ -1890,7 +2158,7 @@ var require_DescribeCourtesy = __commonJS({
1890
2158
  const config = {
1891
2159
  method: "get",
1892
2160
  url,
1893
- ...options
2161
+ ...httpConfigOptions
1894
2162
  };
1895
2163
  if (data)
1896
2164
  config.data = data;
@@ -1899,14 +2167,14 @@ var require_DescribeCourtesy = __commonJS({
1899
2167
  if (headers)
1900
2168
  config.headers = headers;
1901
2169
  return this._http.request(config);
1902
- };
2170
+ }, "DescribeCourtesy");
1903
2171
  }
1904
2172
  });
1905
2173
 
1906
2174
  // dist/useCases/SetCourtesy.js
1907
2175
  var require_SetCourtesy = __commonJS({
1908
2176
  "dist/useCases/SetCourtesy.js"(exports, module) {
1909
- module.exports = function SetCourtesy(requestData, options = {}) {
2177
+ module.exports = /* @__PURE__ */ __name(function SetCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1910
2178
  if (!requestData)
1911
2179
  requestData = {};
1912
2180
  const pathParams = [":roomId", ":id"];
@@ -1928,7 +2196,7 @@ var require_SetCourtesy = __commonJS({
1928
2196
  const config = {
1929
2197
  method: "post",
1930
2198
  url,
1931
- ...options
2199
+ ...httpConfigOptions
1932
2200
  };
1933
2201
  if (data)
1934
2202
  config.data = data;
@@ -1937,14 +2205,14 @@ var require_SetCourtesy = __commonJS({
1937
2205
  if (headers)
1938
2206
  config.headers = headers;
1939
2207
  return this._http.request(config);
1940
- };
2208
+ }, "SetCourtesy");
1941
2209
  }
1942
2210
  });
1943
2211
 
1944
2212
  // dist/useCases/CreateDimmer.js
1945
2213
  var require_CreateDimmer = __commonJS({
1946
2214
  "dist/useCases/CreateDimmer.js"(exports, module) {
1947
- module.exports = function CreateDimmer(requestData, options = {}) {
2215
+ module.exports = /* @__PURE__ */ __name(function CreateDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1948
2216
  if (!requestData)
1949
2217
  requestData = {};
1950
2218
  const pathParams = [":roomId"];
@@ -1966,7 +2234,7 @@ var require_CreateDimmer = __commonJS({
1966
2234
  const config = {
1967
2235
  method: "post",
1968
2236
  url,
1969
- ...options
2237
+ ...httpConfigOptions
1970
2238
  };
1971
2239
  if (data)
1972
2240
  config.data = data;
@@ -1975,14 +2243,14 @@ var require_CreateDimmer = __commonJS({
1975
2243
  if (headers)
1976
2244
  config.headers = headers;
1977
2245
  return this._http.request(config);
1978
- };
2246
+ }, "CreateDimmer");
1979
2247
  }
1980
2248
  });
1981
2249
 
1982
2250
  // dist/useCases/ListDimmers.js
1983
2251
  var require_ListDimmers = __commonJS({
1984
2252
  "dist/useCases/ListDimmers.js"(exports, module) {
1985
- module.exports = function ListDimmers(requestData, options = {}) {
2253
+ module.exports = /* @__PURE__ */ __name(function ListDimmers(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1986
2254
  if (!requestData)
1987
2255
  requestData = {};
1988
2256
  const pathParams = [":roomId"];
@@ -2004,7 +2272,7 @@ var require_ListDimmers = __commonJS({
2004
2272
  const config = {
2005
2273
  method: "get",
2006
2274
  url,
2007
- ...options
2275
+ ...httpConfigOptions
2008
2276
  };
2009
2277
  if (data)
2010
2278
  config.data = data;
@@ -2013,14 +2281,14 @@ var require_ListDimmers = __commonJS({
2013
2281
  if (headers)
2014
2282
  config.headers = headers;
2015
2283
  return this._http.request(config);
2016
- };
2284
+ }, "ListDimmers");
2017
2285
  }
2018
2286
  });
2019
2287
 
2020
2288
  // dist/useCases/UpdateDimmer.js
2021
2289
  var require_UpdateDimmer = __commonJS({
2022
2290
  "dist/useCases/UpdateDimmer.js"(exports, module) {
2023
- module.exports = function UpdateDimmer(requestData, options = {}) {
2291
+ module.exports = /* @__PURE__ */ __name(function UpdateDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2024
2292
  if (!requestData)
2025
2293
  requestData = {};
2026
2294
  const pathParams = [":roomId", ":id"];
@@ -2042,7 +2310,7 @@ var require_UpdateDimmer = __commonJS({
2042
2310
  const config = {
2043
2311
  method: "put",
2044
2312
  url,
2045
- ...options
2313
+ ...httpConfigOptions
2046
2314
  };
2047
2315
  if (data)
2048
2316
  config.data = data;
@@ -2051,14 +2319,14 @@ var require_UpdateDimmer = __commonJS({
2051
2319
  if (headers)
2052
2320
  config.headers = headers;
2053
2321
  return this._http.request(config);
2054
- };
2322
+ }, "UpdateDimmer");
2055
2323
  }
2056
2324
  });
2057
2325
 
2058
2326
  // dist/useCases/DeleteDimmer.js
2059
2327
  var require_DeleteDimmer = __commonJS({
2060
2328
  "dist/useCases/DeleteDimmer.js"(exports, module) {
2061
- module.exports = function DeleteDimmer(requestData, options = {}) {
2329
+ module.exports = /* @__PURE__ */ __name(function DeleteDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2062
2330
  if (!requestData)
2063
2331
  requestData = {};
2064
2332
  const pathParams = [":roomId", ":id"];
@@ -2080,7 +2348,7 @@ var require_DeleteDimmer = __commonJS({
2080
2348
  const config = {
2081
2349
  method: "delete",
2082
2350
  url,
2083
- ...options
2351
+ ...httpConfigOptions
2084
2352
  };
2085
2353
  if (data)
2086
2354
  config.data = data;
@@ -2089,14 +2357,14 @@ var require_DeleteDimmer = __commonJS({
2089
2357
  if (headers)
2090
2358
  config.headers = headers;
2091
2359
  return this._http.request(config);
2092
- };
2360
+ }, "DeleteDimmer");
2093
2361
  }
2094
2362
  });
2095
2363
 
2096
2364
  // dist/useCases/DescribeDimmer.js
2097
2365
  var require_DescribeDimmer = __commonJS({
2098
2366
  "dist/useCases/DescribeDimmer.js"(exports, module) {
2099
- module.exports = function DescribeDimmer(requestData, options = {}) {
2367
+ module.exports = /* @__PURE__ */ __name(function DescribeDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2100
2368
  if (!requestData)
2101
2369
  requestData = {};
2102
2370
  const pathParams = [":roomId", ":id"];
@@ -2118,7 +2386,7 @@ var require_DescribeDimmer = __commonJS({
2118
2386
  const config = {
2119
2387
  method: "get",
2120
2388
  url,
2121
- ...options
2389
+ ...httpConfigOptions
2122
2390
  };
2123
2391
  if (data)
2124
2392
  config.data = data;
@@ -2127,14 +2395,14 @@ var require_DescribeDimmer = __commonJS({
2127
2395
  if (headers)
2128
2396
  config.headers = headers;
2129
2397
  return this._http.request(config);
2130
- };
2398
+ }, "DescribeDimmer");
2131
2399
  }
2132
2400
  });
2133
2401
 
2134
2402
  // dist/useCases/CreateLock.js
2135
2403
  var require_CreateLock = __commonJS({
2136
2404
  "dist/useCases/CreateLock.js"(exports, module) {
2137
- module.exports = function CreateLock(requestData, options = {}) {
2405
+ module.exports = /* @__PURE__ */ __name(function CreateLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2138
2406
  if (!requestData)
2139
2407
  requestData = {};
2140
2408
  const pathParams = [":roomId"];
@@ -2156,7 +2424,7 @@ var require_CreateLock = __commonJS({
2156
2424
  const config = {
2157
2425
  method: "post",
2158
2426
  url,
2159
- ...options
2427
+ ...httpConfigOptions
2160
2428
  };
2161
2429
  if (data)
2162
2430
  config.data = data;
@@ -2165,14 +2433,14 @@ var require_CreateLock = __commonJS({
2165
2433
  if (headers)
2166
2434
  config.headers = headers;
2167
2435
  return this._http.request(config);
2168
- };
2436
+ }, "CreateLock");
2169
2437
  }
2170
2438
  });
2171
2439
 
2172
2440
  // dist/useCases/ListLocks.js
2173
2441
  var require_ListLocks = __commonJS({
2174
2442
  "dist/useCases/ListLocks.js"(exports, module) {
2175
- module.exports = function ListLocks(requestData, options = {}) {
2443
+ module.exports = /* @__PURE__ */ __name(function ListLocks(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2176
2444
  if (!requestData)
2177
2445
  requestData = {};
2178
2446
  const pathParams = [":roomId"];
@@ -2194,7 +2462,7 @@ var require_ListLocks = __commonJS({
2194
2462
  const config = {
2195
2463
  method: "get",
2196
2464
  url,
2197
- ...options
2465
+ ...httpConfigOptions
2198
2466
  };
2199
2467
  if (data)
2200
2468
  config.data = data;
@@ -2203,14 +2471,14 @@ var require_ListLocks = __commonJS({
2203
2471
  if (headers)
2204
2472
  config.headers = headers;
2205
2473
  return this._http.request(config);
2206
- };
2474
+ }, "ListLocks");
2207
2475
  }
2208
2476
  });
2209
2477
 
2210
2478
  // dist/useCases/UpdateLock.js
2211
2479
  var require_UpdateLock = __commonJS({
2212
2480
  "dist/useCases/UpdateLock.js"(exports, module) {
2213
- module.exports = function UpdateLock(requestData, options = {}) {
2481
+ module.exports = /* @__PURE__ */ __name(function UpdateLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2214
2482
  if (!requestData)
2215
2483
  requestData = {};
2216
2484
  const pathParams = [":roomId", ":id"];
@@ -2232,7 +2500,7 @@ var require_UpdateLock = __commonJS({
2232
2500
  const config = {
2233
2501
  method: "put",
2234
2502
  url,
2235
- ...options
2503
+ ...httpConfigOptions
2236
2504
  };
2237
2505
  if (data)
2238
2506
  config.data = data;
@@ -2241,14 +2509,14 @@ var require_UpdateLock = __commonJS({
2241
2509
  if (headers)
2242
2510
  config.headers = headers;
2243
2511
  return this._http.request(config);
2244
- };
2512
+ }, "UpdateLock");
2245
2513
  }
2246
2514
  });
2247
2515
 
2248
2516
  // dist/useCases/DeleteLock.js
2249
2517
  var require_DeleteLock = __commonJS({
2250
2518
  "dist/useCases/DeleteLock.js"(exports, module) {
2251
- module.exports = function DeleteLock(requestData, options = {}) {
2519
+ module.exports = /* @__PURE__ */ __name(function DeleteLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2252
2520
  if (!requestData)
2253
2521
  requestData = {};
2254
2522
  const pathParams = [":roomId", ":id"];
@@ -2270,7 +2538,7 @@ var require_DeleteLock = __commonJS({
2270
2538
  const config = {
2271
2539
  method: "delete",
2272
2540
  url,
2273
- ...options
2541
+ ...httpConfigOptions
2274
2542
  };
2275
2543
  if (data)
2276
2544
  config.data = data;
@@ -2279,14 +2547,14 @@ var require_DeleteLock = __commonJS({
2279
2547
  if (headers)
2280
2548
  config.headers = headers;
2281
2549
  return this._http.request(config);
2282
- };
2550
+ }, "DeleteLock");
2283
2551
  }
2284
2552
  });
2285
2553
 
2286
2554
  // dist/useCases/DescribeLock.js
2287
2555
  var require_DescribeLock = __commonJS({
2288
2556
  "dist/useCases/DescribeLock.js"(exports, module) {
2289
- module.exports = function DescribeLock(requestData, options = {}) {
2557
+ module.exports = /* @__PURE__ */ __name(function DescribeLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2290
2558
  if (!requestData)
2291
2559
  requestData = {};
2292
2560
  const pathParams = [":roomId", ":id"];
@@ -2308,7 +2576,7 @@ var require_DescribeLock = __commonJS({
2308
2576
  const config = {
2309
2577
  method: "get",
2310
2578
  url,
2311
- ...options
2579
+ ...httpConfigOptions
2312
2580
  };
2313
2581
  if (data)
2314
2582
  config.data = data;
@@ -2317,14 +2585,14 @@ var require_DescribeLock = __commonJS({
2317
2585
  if (headers)
2318
2586
  config.headers = headers;
2319
2587
  return this._http.request(config);
2320
- };
2588
+ }, "DescribeLock");
2321
2589
  }
2322
2590
  });
2323
2591
 
2324
2592
  // dist/useCases/CreateSwitch.js
2325
2593
  var require_CreateSwitch = __commonJS({
2326
2594
  "dist/useCases/CreateSwitch.js"(exports, module) {
2327
- module.exports = function CreateSwitch(requestData, options = {}) {
2595
+ module.exports = /* @__PURE__ */ __name(function CreateSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2328
2596
  if (!requestData)
2329
2597
  requestData = {};
2330
2598
  const pathParams = [":roomId"];
@@ -2346,7 +2614,7 @@ var require_CreateSwitch = __commonJS({
2346
2614
  const config = {
2347
2615
  method: "post",
2348
2616
  url,
2349
- ...options
2617
+ ...httpConfigOptions
2350
2618
  };
2351
2619
  if (data)
2352
2620
  config.data = data;
@@ -2355,14 +2623,14 @@ var require_CreateSwitch = __commonJS({
2355
2623
  if (headers)
2356
2624
  config.headers = headers;
2357
2625
  return this._http.request(config);
2358
- };
2626
+ }, "CreateSwitch");
2359
2627
  }
2360
2628
  });
2361
2629
 
2362
2630
  // dist/useCases/ListSwitches.js
2363
2631
  var require_ListSwitches = __commonJS({
2364
2632
  "dist/useCases/ListSwitches.js"(exports, module) {
2365
- module.exports = function ListSwitches(requestData, options = {}) {
2633
+ module.exports = /* @__PURE__ */ __name(function ListSwitches(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2366
2634
  if (!requestData)
2367
2635
  requestData = {};
2368
2636
  const pathParams = [":roomId"];
@@ -2384,7 +2652,7 @@ var require_ListSwitches = __commonJS({
2384
2652
  const config = {
2385
2653
  method: "get",
2386
2654
  url,
2387
- ...options
2655
+ ...httpConfigOptions
2388
2656
  };
2389
2657
  if (data)
2390
2658
  config.data = data;
@@ -2393,14 +2661,14 @@ var require_ListSwitches = __commonJS({
2393
2661
  if (headers)
2394
2662
  config.headers = headers;
2395
2663
  return this._http.request(config);
2396
- };
2664
+ }, "ListSwitches");
2397
2665
  }
2398
2666
  });
2399
2667
 
2400
2668
  // dist/useCases/UpdateSwitch.js
2401
2669
  var require_UpdateSwitch = __commonJS({
2402
2670
  "dist/useCases/UpdateSwitch.js"(exports, module) {
2403
- module.exports = function UpdateSwitch(requestData, options = {}) {
2671
+ module.exports = /* @__PURE__ */ __name(function UpdateSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2404
2672
  if (!requestData)
2405
2673
  requestData = {};
2406
2674
  const pathParams = [":roomId", ":id"];
@@ -2422,7 +2690,7 @@ var require_UpdateSwitch = __commonJS({
2422
2690
  const config = {
2423
2691
  method: "put",
2424
2692
  url,
2425
- ...options
2693
+ ...httpConfigOptions
2426
2694
  };
2427
2695
  if (data)
2428
2696
  config.data = data;
@@ -2431,14 +2699,14 @@ var require_UpdateSwitch = __commonJS({
2431
2699
  if (headers)
2432
2700
  config.headers = headers;
2433
2701
  return this._http.request(config);
2434
- };
2702
+ }, "UpdateSwitch");
2435
2703
  }
2436
2704
  });
2437
2705
 
2438
2706
  // dist/useCases/DeleteSwitch.js
2439
2707
  var require_DeleteSwitch = __commonJS({
2440
2708
  "dist/useCases/DeleteSwitch.js"(exports, module) {
2441
- module.exports = function DeleteSwitch(requestData, options = {}) {
2709
+ module.exports = /* @__PURE__ */ __name(function DeleteSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2442
2710
  if (!requestData)
2443
2711
  requestData = {};
2444
2712
  const pathParams = [":roomId", ":id"];
@@ -2460,7 +2728,7 @@ var require_DeleteSwitch = __commonJS({
2460
2728
  const config = {
2461
2729
  method: "delete",
2462
2730
  url,
2463
- ...options
2731
+ ...httpConfigOptions
2464
2732
  };
2465
2733
  if (data)
2466
2734
  config.data = data;
@@ -2469,14 +2737,14 @@ var require_DeleteSwitch = __commonJS({
2469
2737
  if (headers)
2470
2738
  config.headers = headers;
2471
2739
  return this._http.request(config);
2472
- };
2740
+ }, "DeleteSwitch");
2473
2741
  }
2474
2742
  });
2475
2743
 
2476
2744
  // dist/useCases/DescribeSwitch.js
2477
2745
  var require_DescribeSwitch = __commonJS({
2478
2746
  "dist/useCases/DescribeSwitch.js"(exports, module) {
2479
- module.exports = function DescribeSwitch(requestData, options = {}) {
2747
+ module.exports = /* @__PURE__ */ __name(function DescribeSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2480
2748
  if (!requestData)
2481
2749
  requestData = {};
2482
2750
  const pathParams = [":roomId", ":id"];
@@ -2498,7 +2766,7 @@ var require_DescribeSwitch = __commonJS({
2498
2766
  const config = {
2499
2767
  method: "get",
2500
2768
  url,
2501
- ...options
2769
+ ...httpConfigOptions
2502
2770
  };
2503
2771
  if (data)
2504
2772
  config.data = data;
@@ -2507,14 +2775,14 @@ var require_DescribeSwitch = __commonJS({
2507
2775
  if (headers)
2508
2776
  config.headers = headers;
2509
2777
  return this._http.request(config);
2510
- };
2778
+ }, "DescribeSwitch");
2511
2779
  }
2512
2780
  });
2513
2781
 
2514
2782
  // dist/useCases/SetSwitch.js
2515
2783
  var require_SetSwitch = __commonJS({
2516
2784
  "dist/useCases/SetSwitch.js"(exports, module) {
2517
- module.exports = function SetSwitch(requestData, options = {}) {
2785
+ module.exports = /* @__PURE__ */ __name(function SetSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2518
2786
  if (!requestData)
2519
2787
  requestData = {};
2520
2788
  const pathParams = [":roomId", ":id"];
@@ -2536,7 +2804,7 @@ var require_SetSwitch = __commonJS({
2536
2804
  const config = {
2537
2805
  method: "post",
2538
2806
  url,
2539
- ...options
2807
+ ...httpConfigOptions
2540
2808
  };
2541
2809
  if (data)
2542
2810
  config.data = data;
@@ -2545,14 +2813,14 @@ var require_SetSwitch = __commonJS({
2545
2813
  if (headers)
2546
2814
  config.headers = headers;
2547
2815
  return this._http.request(config);
2548
- };
2816
+ }, "SetSwitch");
2549
2817
  }
2550
2818
  });
2551
2819
 
2552
2820
  // dist/useCases/CreateSource.js
2553
2821
  var require_CreateSource = __commonJS({
2554
2822
  "dist/useCases/CreateSource.js"(exports, module) {
2555
- module.exports = function CreateSource(requestData, options = {}) {
2823
+ module.exports = /* @__PURE__ */ __name(function CreateSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2556
2824
  if (!requestData)
2557
2825
  requestData = {};
2558
2826
  const pathParams = [":roomId"];
@@ -2574,7 +2842,7 @@ var require_CreateSource = __commonJS({
2574
2842
  const config = {
2575
2843
  method: "post",
2576
2844
  url,
2577
- ...options
2845
+ ...httpConfigOptions
2578
2846
  };
2579
2847
  if (data)
2580
2848
  config.data = data;
@@ -2583,14 +2851,14 @@ var require_CreateSource = __commonJS({
2583
2851
  if (headers)
2584
2852
  config.headers = headers;
2585
2853
  return this._http.request(config);
2586
- };
2854
+ }, "CreateSource");
2587
2855
  }
2588
2856
  });
2589
2857
 
2590
2858
  // dist/useCases/ListSources.js
2591
2859
  var require_ListSources = __commonJS({
2592
2860
  "dist/useCases/ListSources.js"(exports, module) {
2593
- module.exports = function ListSources(requestData, options = {}) {
2861
+ module.exports = /* @__PURE__ */ __name(function ListSources(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2594
2862
  if (!requestData)
2595
2863
  requestData = {};
2596
2864
  const pathParams = [":roomId"];
@@ -2612,7 +2880,7 @@ var require_ListSources = __commonJS({
2612
2880
  const config = {
2613
2881
  method: "get",
2614
2882
  url,
2615
- ...options
2883
+ ...httpConfigOptions
2616
2884
  };
2617
2885
  if (data)
2618
2886
  config.data = data;
@@ -2621,14 +2889,14 @@ var require_ListSources = __commonJS({
2621
2889
  if (headers)
2622
2890
  config.headers = headers;
2623
2891
  return this._http.request(config);
2624
- };
2892
+ }, "ListSources");
2625
2893
  }
2626
2894
  });
2627
2895
 
2628
2896
  // dist/useCases/UpdateSource.js
2629
2897
  var require_UpdateSource = __commonJS({
2630
2898
  "dist/useCases/UpdateSource.js"(exports, module) {
2631
- module.exports = function UpdateSource(requestData, options = {}) {
2899
+ module.exports = /* @__PURE__ */ __name(function UpdateSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2632
2900
  if (!requestData)
2633
2901
  requestData = {};
2634
2902
  const pathParams = [":roomId", ":id"];
@@ -2650,7 +2918,7 @@ var require_UpdateSource = __commonJS({
2650
2918
  const config = {
2651
2919
  method: "put",
2652
2920
  url,
2653
- ...options
2921
+ ...httpConfigOptions
2654
2922
  };
2655
2923
  if (data)
2656
2924
  config.data = data;
@@ -2659,14 +2927,14 @@ var require_UpdateSource = __commonJS({
2659
2927
  if (headers)
2660
2928
  config.headers = headers;
2661
2929
  return this._http.request(config);
2662
- };
2930
+ }, "UpdateSource");
2663
2931
  }
2664
2932
  });
2665
2933
 
2666
2934
  // dist/useCases/DeleteSource.js
2667
2935
  var require_DeleteSource = __commonJS({
2668
2936
  "dist/useCases/DeleteSource.js"(exports, module) {
2669
- module.exports = function DeleteSource(requestData, options = {}) {
2937
+ module.exports = /* @__PURE__ */ __name(function DeleteSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2670
2938
  if (!requestData)
2671
2939
  requestData = {};
2672
2940
  const pathParams = [":roomId", ":id"];
@@ -2688,7 +2956,7 @@ var require_DeleteSource = __commonJS({
2688
2956
  const config = {
2689
2957
  method: "delete",
2690
2958
  url,
2691
- ...options
2959
+ ...httpConfigOptions
2692
2960
  };
2693
2961
  if (data)
2694
2962
  config.data = data;
@@ -2697,14 +2965,14 @@ var require_DeleteSource = __commonJS({
2697
2965
  if (headers)
2698
2966
  config.headers = headers;
2699
2967
  return this._http.request(config);
2700
- };
2968
+ }, "DeleteSource");
2701
2969
  }
2702
2970
  });
2703
2971
 
2704
2972
  // dist/useCases/DescribeSource.js
2705
2973
  var require_DescribeSource = __commonJS({
2706
2974
  "dist/useCases/DescribeSource.js"(exports, module) {
2707
- module.exports = function DescribeSource(requestData, options = {}) {
2975
+ module.exports = /* @__PURE__ */ __name(function DescribeSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2708
2976
  if (!requestData)
2709
2977
  requestData = {};
2710
2978
  const pathParams = [":roomId", ":id"];
@@ -2726,7 +2994,7 @@ var require_DescribeSource = __commonJS({
2726
2994
  const config = {
2727
2995
  method: "get",
2728
2996
  url,
2729
- ...options
2997
+ ...httpConfigOptions
2730
2998
  };
2731
2999
  if (data)
2732
3000
  config.data = data;
@@ -2735,14 +3003,14 @@ var require_DescribeSource = __commonJS({
2735
3003
  if (headers)
2736
3004
  config.headers = headers;
2737
3005
  return this._http.request(config);
2738
- };
3006
+ }, "DescribeSource");
2739
3007
  }
2740
3008
  });
2741
3009
 
2742
3010
  // dist/useCases/SetSource.js
2743
3011
  var require_SetSource = __commonJS({
2744
3012
  "dist/useCases/SetSource.js"(exports, module) {
2745
- module.exports = function SetSource(requestData, options = {}) {
3013
+ module.exports = /* @__PURE__ */ __name(function SetSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2746
3014
  if (!requestData)
2747
3015
  requestData = {};
2748
3016
  const pathParams = [":roomId", ":id"];
@@ -2764,7 +3032,7 @@ var require_SetSource = __commonJS({
2764
3032
  const config = {
2765
3033
  method: "post",
2766
3034
  url,
2767
- ...options
3035
+ ...httpConfigOptions
2768
3036
  };
2769
3037
  if (data)
2770
3038
  config.data = data;
@@ -2773,14 +3041,14 @@ var require_SetSource = __commonJS({
2773
3041
  if (headers)
2774
3042
  config.headers = headers;
2775
3043
  return this._http.request(config);
2776
- };
3044
+ }, "SetSource");
2777
3045
  }
2778
3046
  });
2779
3047
 
2780
3048
  // dist/useCases/CreateThermostat.js
2781
3049
  var require_CreateThermostat = __commonJS({
2782
3050
  "dist/useCases/CreateThermostat.js"(exports, module) {
2783
- module.exports = function CreateThermostat(requestData, options = {}) {
3051
+ module.exports = /* @__PURE__ */ __name(function CreateThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2784
3052
  if (!requestData)
2785
3053
  requestData = {};
2786
3054
  const pathParams = [":roomId"];
@@ -2802,7 +3070,7 @@ var require_CreateThermostat = __commonJS({
2802
3070
  const config = {
2803
3071
  method: "post",
2804
3072
  url,
2805
- ...options
3073
+ ...httpConfigOptions
2806
3074
  };
2807
3075
  if (data)
2808
3076
  config.data = data;
@@ -2811,14 +3079,14 @@ var require_CreateThermostat = __commonJS({
2811
3079
  if (headers)
2812
3080
  config.headers = headers;
2813
3081
  return this._http.request(config);
2814
- };
3082
+ }, "CreateThermostat");
2815
3083
  }
2816
3084
  });
2817
3085
 
2818
3086
  // dist/useCases/ListThermostats.js
2819
3087
  var require_ListThermostats = __commonJS({
2820
3088
  "dist/useCases/ListThermostats.js"(exports, module) {
2821
- module.exports = function ListThermostats(requestData, options = {}) {
3089
+ module.exports = /* @__PURE__ */ __name(function ListThermostats(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2822
3090
  if (!requestData)
2823
3091
  requestData = {};
2824
3092
  const pathParams = [":roomId"];
@@ -2840,7 +3108,7 @@ var require_ListThermostats = __commonJS({
2840
3108
  const config = {
2841
3109
  method: "get",
2842
3110
  url,
2843
- ...options
3111
+ ...httpConfigOptions
2844
3112
  };
2845
3113
  if (data)
2846
3114
  config.data = data;
@@ -2849,14 +3117,14 @@ var require_ListThermostats = __commonJS({
2849
3117
  if (headers)
2850
3118
  config.headers = headers;
2851
3119
  return this._http.request(config);
2852
- };
3120
+ }, "ListThermostats");
2853
3121
  }
2854
3122
  });
2855
3123
 
2856
3124
  // dist/useCases/UpdateThermostat.js
2857
3125
  var require_UpdateThermostat = __commonJS({
2858
3126
  "dist/useCases/UpdateThermostat.js"(exports, module) {
2859
- module.exports = function UpdateThermostat(requestData, options = {}) {
3127
+ module.exports = /* @__PURE__ */ __name(function UpdateThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2860
3128
  if (!requestData)
2861
3129
  requestData = {};
2862
3130
  const pathParams = [":roomId", ":id"];
@@ -2878,7 +3146,7 @@ var require_UpdateThermostat = __commonJS({
2878
3146
  const config = {
2879
3147
  method: "put",
2880
3148
  url,
2881
- ...options
3149
+ ...httpConfigOptions
2882
3150
  };
2883
3151
  if (data)
2884
3152
  config.data = data;
@@ -2887,14 +3155,14 @@ var require_UpdateThermostat = __commonJS({
2887
3155
  if (headers)
2888
3156
  config.headers = headers;
2889
3157
  return this._http.request(config);
2890
- };
3158
+ }, "UpdateThermostat");
2891
3159
  }
2892
3160
  });
2893
3161
 
2894
3162
  // dist/useCases/DeleteThermostat.js
2895
3163
  var require_DeleteThermostat = __commonJS({
2896
3164
  "dist/useCases/DeleteThermostat.js"(exports, module) {
2897
- module.exports = function DeleteThermostat(requestData, options = {}) {
3165
+ module.exports = /* @__PURE__ */ __name(function DeleteThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2898
3166
  if (!requestData)
2899
3167
  requestData = {};
2900
3168
  const pathParams = [":roomId", ":id"];
@@ -2916,7 +3184,7 @@ var require_DeleteThermostat = __commonJS({
2916
3184
  const config = {
2917
3185
  method: "delete",
2918
3186
  url,
2919
- ...options
3187
+ ...httpConfigOptions
2920
3188
  };
2921
3189
  if (data)
2922
3190
  config.data = data;
@@ -2925,14 +3193,14 @@ var require_DeleteThermostat = __commonJS({
2925
3193
  if (headers)
2926
3194
  config.headers = headers;
2927
3195
  return this._http.request(config);
2928
- };
3196
+ }, "DeleteThermostat");
2929
3197
  }
2930
3198
  });
2931
3199
 
2932
3200
  // dist/useCases/DescribeThermostat.js
2933
3201
  var require_DescribeThermostat = __commonJS({
2934
3202
  "dist/useCases/DescribeThermostat.js"(exports, module) {
2935
- module.exports = function DescribeThermostat(requestData, options = {}) {
3203
+ module.exports = /* @__PURE__ */ __name(function DescribeThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2936
3204
  if (!requestData)
2937
3205
  requestData = {};
2938
3206
  const pathParams = [":roomId", ":id"];
@@ -2954,7 +3222,7 @@ var require_DescribeThermostat = __commonJS({
2954
3222
  const config = {
2955
3223
  method: "get",
2956
3224
  url,
2957
- ...options
3225
+ ...httpConfigOptions
2958
3226
  };
2959
3227
  if (data)
2960
3228
  config.data = data;
@@ -2963,14 +3231,14 @@ var require_DescribeThermostat = __commonJS({
2963
3231
  if (headers)
2964
3232
  config.headers = headers;
2965
3233
  return this._http.request(config);
2966
- };
3234
+ }, "DescribeThermostat");
2967
3235
  }
2968
3236
  });
2969
3237
 
2970
3238
  // dist/useCases/SetThermostat.js
2971
3239
  var require_SetThermostat = __commonJS({
2972
3240
  "dist/useCases/SetThermostat.js"(exports, module) {
2973
- module.exports = function SetThermostat(requestData, options = {}) {
3241
+ module.exports = /* @__PURE__ */ __name(function SetThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2974
3242
  if (!requestData)
2975
3243
  requestData = {};
2976
3244
  const pathParams = [":roomId", ":id"];
@@ -2992,7 +3260,7 @@ var require_SetThermostat = __commonJS({
2992
3260
  const config = {
2993
3261
  method: "post",
2994
3262
  url,
2995
- ...options
3263
+ ...httpConfigOptions
2996
3264
  };
2997
3265
  if (data)
2998
3266
  config.data = data;
@@ -3001,14 +3269,14 @@ var require_SetThermostat = __commonJS({
3001
3269
  if (headers)
3002
3270
  config.headers = headers;
3003
3271
  return this._http.request(config);
3004
- };
3272
+ }, "SetThermostat");
3005
3273
  }
3006
3274
  });
3007
3275
 
3008
3276
  // dist/useCases/CreateWindowCovering.js
3009
3277
  var require_CreateWindowCovering = __commonJS({
3010
3278
  "dist/useCases/CreateWindowCovering.js"(exports, module) {
3011
- module.exports = function CreateWindowCovering(requestData, options = {}) {
3279
+ module.exports = /* @__PURE__ */ __name(function CreateWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3012
3280
  if (!requestData)
3013
3281
  requestData = {};
3014
3282
  const pathParams = [":roomId"];
@@ -3030,7 +3298,7 @@ var require_CreateWindowCovering = __commonJS({
3030
3298
  const config = {
3031
3299
  method: "post",
3032
3300
  url,
3033
- ...options
3301
+ ...httpConfigOptions
3034
3302
  };
3035
3303
  if (data)
3036
3304
  config.data = data;
@@ -3039,14 +3307,14 @@ var require_CreateWindowCovering = __commonJS({
3039
3307
  if (headers)
3040
3308
  config.headers = headers;
3041
3309
  return this._http.request(config);
3042
- };
3310
+ }, "CreateWindowCovering");
3043
3311
  }
3044
3312
  });
3045
3313
 
3046
3314
  // dist/useCases/ListWindowCoverings.js
3047
3315
  var require_ListWindowCoverings = __commonJS({
3048
3316
  "dist/useCases/ListWindowCoverings.js"(exports, module) {
3049
- module.exports = function ListWindowCoverings(requestData, options = {}) {
3317
+ module.exports = /* @__PURE__ */ __name(function ListWindowCoverings(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3050
3318
  if (!requestData)
3051
3319
  requestData = {};
3052
3320
  const pathParams = [":roomId"];
@@ -3068,7 +3336,7 @@ var require_ListWindowCoverings = __commonJS({
3068
3336
  const config = {
3069
3337
  method: "get",
3070
3338
  url,
3071
- ...options
3339
+ ...httpConfigOptions
3072
3340
  };
3073
3341
  if (data)
3074
3342
  config.data = data;
@@ -3077,14 +3345,14 @@ var require_ListWindowCoverings = __commonJS({
3077
3345
  if (headers)
3078
3346
  config.headers = headers;
3079
3347
  return this._http.request(config);
3080
- };
3348
+ }, "ListWindowCoverings");
3081
3349
  }
3082
3350
  });
3083
3351
 
3084
3352
  // dist/useCases/UpdateWindowCovering.js
3085
3353
  var require_UpdateWindowCovering = __commonJS({
3086
3354
  "dist/useCases/UpdateWindowCovering.js"(exports, module) {
3087
- module.exports = function UpdateWindowCovering(requestData, options = {}) {
3355
+ module.exports = /* @__PURE__ */ __name(function UpdateWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3088
3356
  if (!requestData)
3089
3357
  requestData = {};
3090
3358
  const pathParams = [":roomId", ":id"];
@@ -3106,7 +3374,7 @@ var require_UpdateWindowCovering = __commonJS({
3106
3374
  const config = {
3107
3375
  method: "put",
3108
3376
  url,
3109
- ...options
3377
+ ...httpConfigOptions
3110
3378
  };
3111
3379
  if (data)
3112
3380
  config.data = data;
@@ -3115,14 +3383,14 @@ var require_UpdateWindowCovering = __commonJS({
3115
3383
  if (headers)
3116
3384
  config.headers = headers;
3117
3385
  return this._http.request(config);
3118
- };
3386
+ }, "UpdateWindowCovering");
3119
3387
  }
3120
3388
  });
3121
3389
 
3122
3390
  // dist/useCases/DeleteWindowCovering.js
3123
3391
  var require_DeleteWindowCovering = __commonJS({
3124
3392
  "dist/useCases/DeleteWindowCovering.js"(exports, module) {
3125
- module.exports = function DeleteWindowCovering(requestData, options = {}) {
3393
+ module.exports = /* @__PURE__ */ __name(function DeleteWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3126
3394
  if (!requestData)
3127
3395
  requestData = {};
3128
3396
  const pathParams = [":roomId", ":id"];
@@ -3144,7 +3412,7 @@ var require_DeleteWindowCovering = __commonJS({
3144
3412
  const config = {
3145
3413
  method: "delete",
3146
3414
  url,
3147
- ...options
3415
+ ...httpConfigOptions
3148
3416
  };
3149
3417
  if (data)
3150
3418
  config.data = data;
@@ -3153,14 +3421,14 @@ var require_DeleteWindowCovering = __commonJS({
3153
3421
  if (headers)
3154
3422
  config.headers = headers;
3155
3423
  return this._http.request(config);
3156
- };
3424
+ }, "DeleteWindowCovering");
3157
3425
  }
3158
3426
  });
3159
3427
 
3160
3428
  // dist/useCases/DescribeWindowCovering.js
3161
3429
  var require_DescribeWindowCovering = __commonJS({
3162
3430
  "dist/useCases/DescribeWindowCovering.js"(exports, module) {
3163
- module.exports = function DescribeWindowCovering(requestData, options = {}) {
3431
+ module.exports = /* @__PURE__ */ __name(function DescribeWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3164
3432
  if (!requestData)
3165
3433
  requestData = {};
3166
3434
  const pathParams = [":roomId", ":id"];
@@ -3182,7 +3450,7 @@ var require_DescribeWindowCovering = __commonJS({
3182
3450
  const config = {
3183
3451
  method: "get",
3184
3452
  url,
3185
- ...options
3453
+ ...httpConfigOptions
3186
3454
  };
3187
3455
  if (data)
3188
3456
  config.data = data;
@@ -3191,14 +3459,14 @@ var require_DescribeWindowCovering = __commonJS({
3191
3459
  if (headers)
3192
3460
  config.headers = headers;
3193
3461
  return this._http.request(config);
3194
- };
3462
+ }, "DescribeWindowCovering");
3195
3463
  }
3196
3464
  });
3197
3465
 
3198
3466
  // dist/useCases/SetWindowCovering.js
3199
3467
  var require_SetWindowCovering = __commonJS({
3200
3468
  "dist/useCases/SetWindowCovering.js"(exports, module) {
3201
- module.exports = function SetWindowCovering(requestData, options = {}) {
3469
+ module.exports = /* @__PURE__ */ __name(function SetWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3202
3470
  if (!requestData)
3203
3471
  requestData = {};
3204
3472
  const pathParams = [":roomId", ":id"];
@@ -3220,7 +3488,7 @@ var require_SetWindowCovering = __commonJS({
3220
3488
  const config = {
3221
3489
  method: "post",
3222
3490
  url,
3223
- ...options
3491
+ ...httpConfigOptions
3224
3492
  };
3225
3493
  if (data)
3226
3494
  config.data = data;
@@ -3229,14 +3497,14 @@ var require_SetWindowCovering = __commonJS({
3229
3497
  if (headers)
3230
3498
  config.headers = headers;
3231
3499
  return this._http.request(config);
3232
- };
3500
+ }, "SetWindowCovering");
3233
3501
  }
3234
3502
  });
3235
3503
 
3236
3504
  // dist/useCases/AddScenesToRoom.js
3237
3505
  var require_AddScenesToRoom = __commonJS({
3238
3506
  "dist/useCases/AddScenesToRoom.js"(exports, module) {
3239
- module.exports = function AddScenesToRoom(requestData, options = {}) {
3507
+ module.exports = /* @__PURE__ */ __name(function AddScenesToRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3240
3508
  if (!requestData)
3241
3509
  requestData = {};
3242
3510
  const pathParams = [":id"];
@@ -3258,7 +3526,7 @@ var require_AddScenesToRoom = __commonJS({
3258
3526
  const config = {
3259
3527
  method: "post",
3260
3528
  url,
3261
- ...options
3529
+ ...httpConfigOptions
3262
3530
  };
3263
3531
  if (data)
3264
3532
  config.data = data;
@@ -3267,14 +3535,14 @@ var require_AddScenesToRoom = __commonJS({
3267
3535
  if (headers)
3268
3536
  config.headers = headers;
3269
3537
  return this._http.request(config);
3270
- };
3538
+ }, "AddScenesToRoom");
3271
3539
  }
3272
3540
  });
3273
3541
 
3274
3542
  // dist/useCases/AddDefaultScenesToRooms.js
3275
3543
  var require_AddDefaultScenesToRooms = __commonJS({
3276
3544
  "dist/useCases/AddDefaultScenesToRooms.js"(exports, module) {
3277
- module.exports = function AddDefaultScenesToRooms(requestData, options = {}) {
3545
+ module.exports = /* @__PURE__ */ __name(function AddDefaultScenesToRooms(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3278
3546
  if (!requestData)
3279
3547
  requestData = {};
3280
3548
  const pathParams = null;
@@ -3296,7 +3564,7 @@ var require_AddDefaultScenesToRooms = __commonJS({
3296
3564
  const config = {
3297
3565
  method: "post",
3298
3566
  url,
3299
- ...options
3567
+ ...httpConfigOptions
3300
3568
  };
3301
3569
  if (data)
3302
3570
  config.data = data;
@@ -3305,14 +3573,14 @@ var require_AddDefaultScenesToRooms = __commonJS({
3305
3573
  if (headers)
3306
3574
  config.headers = headers;
3307
3575
  return this._http.request(config);
3308
- };
3576
+ }, "AddDefaultScenesToRooms");
3309
3577
  }
3310
3578
  });
3311
3579
 
3312
3580
  // dist/useCases/CreateTicket.js
3313
3581
  var require_CreateTicket = __commonJS({
3314
3582
  "dist/useCases/CreateTicket.js"(exports, module) {
3315
- module.exports = function CreateTicket(requestData, options = {}) {
3583
+ module.exports = /* @__PURE__ */ __name(function CreateTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3316
3584
  if (!requestData)
3317
3585
  requestData = {};
3318
3586
  const pathParams = null;
@@ -3334,7 +3602,7 @@ var require_CreateTicket = __commonJS({
3334
3602
  const config = {
3335
3603
  method: "post",
3336
3604
  url,
3337
- ...options
3605
+ ...httpConfigOptions
3338
3606
  };
3339
3607
  if (data)
3340
3608
  config.data = data;
@@ -3343,14 +3611,14 @@ var require_CreateTicket = __commonJS({
3343
3611
  if (headers)
3344
3612
  config.headers = headers;
3345
3613
  return this._http.request(config);
3346
- };
3614
+ }, "CreateTicket");
3347
3615
  }
3348
3616
  });
3349
3617
 
3350
3618
  // dist/useCases/CreateTicketMessage.js
3351
3619
  var require_CreateTicketMessage = __commonJS({
3352
3620
  "dist/useCases/CreateTicketMessage.js"(exports, module) {
3353
- module.exports = function CreateTicketMessage(requestData, options = {}) {
3621
+ module.exports = /* @__PURE__ */ __name(function CreateTicketMessage(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3354
3622
  if (!requestData)
3355
3623
  requestData = {};
3356
3624
  const pathParams = [":id"];
@@ -3372,7 +3640,7 @@ var require_CreateTicketMessage = __commonJS({
3372
3640
  const config = {
3373
3641
  method: "post",
3374
3642
  url,
3375
- ...options
3643
+ ...httpConfigOptions
3376
3644
  };
3377
3645
  if (data)
3378
3646
  config.data = data;
@@ -3381,14 +3649,14 @@ var require_CreateTicketMessage = __commonJS({
3381
3649
  if (headers)
3382
3650
  config.headers = headers;
3383
3651
  return this._http.request(config);
3384
- };
3652
+ }, "CreateTicketMessage");
3385
3653
  }
3386
3654
  });
3387
3655
 
3388
3656
  // dist/useCases/DeleteTicket.js
3389
3657
  var require_DeleteTicket = __commonJS({
3390
3658
  "dist/useCases/DeleteTicket.js"(exports, module) {
3391
- module.exports = function DeleteTicket(requestData, options = {}) {
3659
+ module.exports = /* @__PURE__ */ __name(function DeleteTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3392
3660
  if (!requestData)
3393
3661
  requestData = {};
3394
3662
  const pathParams = [":id"];
@@ -3410,7 +3678,7 @@ var require_DeleteTicket = __commonJS({
3410
3678
  const config = {
3411
3679
  method: "delete",
3412
3680
  url,
3413
- ...options
3681
+ ...httpConfigOptions
3414
3682
  };
3415
3683
  if (data)
3416
3684
  config.data = data;
@@ -3419,14 +3687,14 @@ var require_DeleteTicket = __commonJS({
3419
3687
  if (headers)
3420
3688
  config.headers = headers;
3421
3689
  return this._http.request(config);
3422
- };
3690
+ }, "DeleteTicket");
3423
3691
  }
3424
3692
  });
3425
3693
 
3426
3694
  // dist/useCases/DescribeTicket.js
3427
3695
  var require_DescribeTicket = __commonJS({
3428
3696
  "dist/useCases/DescribeTicket.js"(exports, module) {
3429
- module.exports = function DescribeTicket(requestData, options = {}) {
3697
+ module.exports = /* @__PURE__ */ __name(function DescribeTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3430
3698
  if (!requestData)
3431
3699
  requestData = {};
3432
3700
  const pathParams = [":id"];
@@ -3448,7 +3716,7 @@ var require_DescribeTicket = __commonJS({
3448
3716
  const config = {
3449
3717
  method: "get",
3450
3718
  url,
3451
- ...options
3719
+ ...httpConfigOptions
3452
3720
  };
3453
3721
  if (data)
3454
3722
  config.data = data;
@@ -3457,14 +3725,14 @@ var require_DescribeTicket = __commonJS({
3457
3725
  if (headers)
3458
3726
  config.headers = headers;
3459
3727
  return this._http.request(config);
3460
- };
3728
+ }, "DescribeTicket");
3461
3729
  }
3462
3730
  });
3463
3731
 
3464
3732
  // dist/useCases/ListTickets.js
3465
3733
  var require_ListTickets = __commonJS({
3466
3734
  "dist/useCases/ListTickets.js"(exports, module) {
3467
- module.exports = function ListTickets(requestData, options = {}) {
3735
+ module.exports = /* @__PURE__ */ __name(function ListTickets(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3468
3736
  if (!requestData)
3469
3737
  requestData = {};
3470
3738
  const pathParams = null;
@@ -3486,7 +3754,7 @@ var require_ListTickets = __commonJS({
3486
3754
  const config = {
3487
3755
  method: "get",
3488
3756
  url,
3489
- ...options
3757
+ ...httpConfigOptions
3490
3758
  };
3491
3759
  if (data)
3492
3760
  config.data = data;
@@ -3495,14 +3763,14 @@ var require_ListTickets = __commonJS({
3495
3763
  if (headers)
3496
3764
  config.headers = headers;
3497
3765
  return this._http.request(config);
3498
- };
3766
+ }, "ListTickets");
3499
3767
  }
3500
3768
  });
3501
3769
 
3502
3770
  // dist/useCases/UpdateMessageReadStatus.js
3503
3771
  var require_UpdateMessageReadStatus = __commonJS({
3504
3772
  "dist/useCases/UpdateMessageReadStatus.js"(exports, module) {
3505
- module.exports = function UpdateMessageReadStatus(requestData, options = {}) {
3773
+ module.exports = /* @__PURE__ */ __name(function UpdateMessageReadStatus(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3506
3774
  if (!requestData)
3507
3775
  requestData = {};
3508
3776
  const pathParams = [":id"];
@@ -3524,7 +3792,7 @@ var require_UpdateMessageReadStatus = __commonJS({
3524
3792
  const config = {
3525
3793
  method: "post",
3526
3794
  url,
3527
- ...options
3795
+ ...httpConfigOptions
3528
3796
  };
3529
3797
  if (data)
3530
3798
  config.data = data;
@@ -3533,14 +3801,14 @@ var require_UpdateMessageReadStatus = __commonJS({
3533
3801
  if (headers)
3534
3802
  config.headers = headers;
3535
3803
  return this._http.request(config);
3536
- };
3804
+ }, "UpdateMessageReadStatus");
3537
3805
  }
3538
3806
  });
3539
3807
 
3540
3808
  // dist/useCases/UpdateTicket.js
3541
3809
  var require_UpdateTicket = __commonJS({
3542
3810
  "dist/useCases/UpdateTicket.js"(exports, module) {
3543
- module.exports = function UpdateTicket(requestData, options = {}) {
3811
+ module.exports = /* @__PURE__ */ __name(function UpdateTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3544
3812
  if (!requestData)
3545
3813
  requestData = {};
3546
3814
  const pathParams = [":id"];
@@ -3562,7 +3830,7 @@ var require_UpdateTicket = __commonJS({
3562
3830
  const config = {
3563
3831
  method: "put",
3564
3832
  url,
3565
- ...options
3833
+ ...httpConfigOptions
3566
3834
  };
3567
3835
  if (data)
3568
3836
  config.data = data;
@@ -3571,14 +3839,14 @@ var require_UpdateTicket = __commonJS({
3571
3839
  if (headers)
3572
3840
  config.headers = headers;
3573
3841
  return this._http.request(config);
3574
- };
3842
+ }, "UpdateTicket");
3575
3843
  }
3576
3844
  });
3577
3845
 
3578
3846
  // dist/useCases/UpdateTicketStatus.js
3579
3847
  var require_UpdateTicketStatus = __commonJS({
3580
3848
  "dist/useCases/UpdateTicketStatus.js"(exports, module) {
3581
- module.exports = function UpdateTicketStatus(requestData, options = {}) {
3849
+ module.exports = /* @__PURE__ */ __name(function UpdateTicketStatus(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3582
3850
  if (!requestData)
3583
3851
  requestData = {};
3584
3852
  const pathParams = [":id"];
@@ -3600,7 +3868,7 @@ var require_UpdateTicketStatus = __commonJS({
3600
3868
  const config = {
3601
3869
  method: "put",
3602
3870
  url,
3603
- ...options
3871
+ ...httpConfigOptions
3604
3872
  };
3605
3873
  if (data)
3606
3874
  config.data = data;
@@ -3609,14 +3877,14 @@ var require_UpdateTicketStatus = __commonJS({
3609
3877
  if (headers)
3610
3878
  config.headers = headers;
3611
3879
  return this._http.request(config);
3612
- };
3880
+ }, "UpdateTicketStatus");
3613
3881
  }
3614
3882
  });
3615
3883
 
3616
3884
  // dist/useCases/CreateDefaultScenes.js
3617
3885
  var require_CreateDefaultScenes = __commonJS({
3618
3886
  "dist/useCases/CreateDefaultScenes.js"(exports, module) {
3619
- module.exports = function CreateDefaultScenes(requestData, options = {}) {
3887
+ module.exports = /* @__PURE__ */ __name(function CreateDefaultScenes(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3620
3888
  if (!requestData)
3621
3889
  requestData = {};
3622
3890
  const pathParams = null;
@@ -3638,7 +3906,7 @@ var require_CreateDefaultScenes = __commonJS({
3638
3906
  const config = {
3639
3907
  method: "post",
3640
3908
  url,
3641
- ...options
3909
+ ...httpConfigOptions
3642
3910
  };
3643
3911
  if (data)
3644
3912
  config.data = data;
@@ -3647,14 +3915,14 @@ var require_CreateDefaultScenes = __commonJS({
3647
3915
  if (headers)
3648
3916
  config.headers = headers;
3649
3917
  return this._http.request(config);
3650
- };
3918
+ }, "CreateDefaultScenes");
3651
3919
  }
3652
3920
  });
3653
3921
 
3654
3922
  // dist/useCases/CreateDiscoveredDevice.js
3655
3923
  var require_CreateDiscoveredDevice = __commonJS({
3656
3924
  "dist/useCases/CreateDiscoveredDevice.js"(exports, module) {
3657
- module.exports = function CreateDiscoveredDevice(requestData, options = {}) {
3925
+ module.exports = /* @__PURE__ */ __name(function CreateDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3658
3926
  if (!requestData)
3659
3927
  requestData = {};
3660
3928
  const pathParams = null;
@@ -3676,7 +3944,7 @@ var require_CreateDiscoveredDevice = __commonJS({
3676
3944
  const config = {
3677
3945
  method: "post",
3678
3946
  url,
3679
- ...options
3947
+ ...httpConfigOptions
3680
3948
  };
3681
3949
  if (data)
3682
3950
  config.data = data;
@@ -3685,14 +3953,14 @@ var require_CreateDiscoveredDevice = __commonJS({
3685
3953
  if (headers)
3686
3954
  config.headers = headers;
3687
3955
  return this._http.request(config);
3688
- };
3956
+ }, "CreateDiscoveredDevice");
3689
3957
  }
3690
3958
  });
3691
3959
 
3692
3960
  // dist/useCases/ListDiscoveredDevices.js
3693
3961
  var require_ListDiscoveredDevices = __commonJS({
3694
3962
  "dist/useCases/ListDiscoveredDevices.js"(exports, module) {
3695
- module.exports = function ListDiscoveredDevices(requestData, options = {}) {
3963
+ module.exports = /* @__PURE__ */ __name(function ListDiscoveredDevices(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3696
3964
  if (!requestData)
3697
3965
  requestData = {};
3698
3966
  const pathParams = null;
@@ -3714,7 +3982,7 @@ var require_ListDiscoveredDevices = __commonJS({
3714
3982
  const config = {
3715
3983
  method: "get",
3716
3984
  url,
3717
- ...options
3985
+ ...httpConfigOptions
3718
3986
  };
3719
3987
  if (data)
3720
3988
  config.data = data;
@@ -3723,14 +3991,14 @@ var require_ListDiscoveredDevices = __commonJS({
3723
3991
  if (headers)
3724
3992
  config.headers = headers;
3725
3993
  return this._http.request(config);
3726
- };
3994
+ }, "ListDiscoveredDevices");
3727
3995
  }
3728
3996
  });
3729
3997
 
3730
3998
  // dist/useCases/UpdateDiscoveredDevice.js
3731
3999
  var require_UpdateDiscoveredDevice = __commonJS({
3732
4000
  "dist/useCases/UpdateDiscoveredDevice.js"(exports, module) {
3733
- module.exports = function UpdateDiscoveredDevice(requestData, options = {}) {
4001
+ module.exports = /* @__PURE__ */ __name(function UpdateDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3734
4002
  if (!requestData)
3735
4003
  requestData = {};
3736
4004
  const pathParams = [":id"];
@@ -3752,7 +4020,7 @@ var require_UpdateDiscoveredDevice = __commonJS({
3752
4020
  const config = {
3753
4021
  method: "put",
3754
4022
  url,
3755
- ...options
4023
+ ...httpConfigOptions
3756
4024
  };
3757
4025
  if (data)
3758
4026
  config.data = data;
@@ -3761,14 +4029,14 @@ var require_UpdateDiscoveredDevice = __commonJS({
3761
4029
  if (headers)
3762
4030
  config.headers = headers;
3763
4031
  return this._http.request(config);
3764
- };
4032
+ }, "UpdateDiscoveredDevice");
3765
4033
  }
3766
4034
  });
3767
4035
 
3768
4036
  // dist/useCases/DeleteDiscoveredDevice.js
3769
4037
  var require_DeleteDiscoveredDevice = __commonJS({
3770
4038
  "dist/useCases/DeleteDiscoveredDevice.js"(exports, module) {
3771
- module.exports = function DeleteDiscoveredDevice(requestData, options = {}) {
4039
+ module.exports = /* @__PURE__ */ __name(function DeleteDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3772
4040
  if (!requestData)
3773
4041
  requestData = {};
3774
4042
  const pathParams = [":id"];
@@ -3790,7 +4058,7 @@ var require_DeleteDiscoveredDevice = __commonJS({
3790
4058
  const config = {
3791
4059
  method: "delete",
3792
4060
  url,
3793
- ...options
4061
+ ...httpConfigOptions
3794
4062
  };
3795
4063
  if (data)
3796
4064
  config.data = data;
@@ -3799,14 +4067,14 @@ var require_DeleteDiscoveredDevice = __commonJS({
3799
4067
  if (headers)
3800
4068
  config.headers = headers;
3801
4069
  return this._http.request(config);
3802
- };
4070
+ }, "DeleteDiscoveredDevice");
3803
4071
  }
3804
4072
  });
3805
4073
 
3806
4074
  // dist/useCases/DescribeDiscoveredDevice.js
3807
4075
  var require_DescribeDiscoveredDevice = __commonJS({
3808
4076
  "dist/useCases/DescribeDiscoveredDevice.js"(exports, module) {
3809
- module.exports = function DescribeDiscoveredDevice(requestData, options = {}) {
4077
+ module.exports = /* @__PURE__ */ __name(function DescribeDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3810
4078
  if (!requestData)
3811
4079
  requestData = {};
3812
4080
  const pathParams = [":id"];
@@ -3828,7 +4096,7 @@ var require_DescribeDiscoveredDevice = __commonJS({
3828
4096
  const config = {
3829
4097
  method: "get",
3830
4098
  url,
3831
- ...options
4099
+ ...httpConfigOptions
3832
4100
  };
3833
4101
  if (data)
3834
4102
  config.data = data;
@@ -3837,14 +4105,14 @@ var require_DescribeDiscoveredDevice = __commonJS({
3837
4105
  if (headers)
3838
4106
  config.headers = headers;
3839
4107
  return this._http.request(config);
3840
- };
4108
+ }, "DescribeDiscoveredDevice");
3841
4109
  }
3842
4110
  });
3843
4111
 
3844
4112
  // dist/useCases/UpsertDiscoveredDevice.js
3845
4113
  var require_UpsertDiscoveredDevice = __commonJS({
3846
4114
  "dist/useCases/UpsertDiscoveredDevice.js"(exports, module) {
3847
- module.exports = function UpsertDiscoveredDevice(requestData, options = {}) {
4115
+ module.exports = /* @__PURE__ */ __name(function UpsertDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3848
4116
  if (!requestData)
3849
4117
  requestData = {};
3850
4118
  const pathParams = null;
@@ -3866,7 +4134,7 @@ var require_UpsertDiscoveredDevice = __commonJS({
3866
4134
  const config = {
3867
4135
  method: "post",
3868
4136
  url,
3869
- ...options
4137
+ ...httpConfigOptions
3870
4138
  };
3871
4139
  if (data)
3872
4140
  config.data = data;
@@ -3875,14 +4143,14 @@ var require_UpsertDiscoveredDevice = __commonJS({
3875
4143
  if (headers)
3876
4144
  config.headers = headers;
3877
4145
  return this._http.request(config);
3878
- };
4146
+ }, "UpsertDiscoveredDevice");
3879
4147
  }
3880
4148
  });
3881
4149
 
3882
4150
  // dist/useCases/CreateDiscoveredDeviceAssociation.js
3883
4151
  var require_CreateDiscoveredDeviceAssociation = __commonJS({
3884
4152
  "dist/useCases/CreateDiscoveredDeviceAssociation.js"(exports, module) {
3885
- module.exports = function CreateDiscoveredDeviceAssociation(requestData, options = {}) {
4153
+ module.exports = /* @__PURE__ */ __name(function CreateDiscoveredDeviceAssociation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3886
4154
  if (!requestData)
3887
4155
  requestData = {};
3888
4156
  const pathParams = [":id"];
@@ -3904,7 +4172,7 @@ var require_CreateDiscoveredDeviceAssociation = __commonJS({
3904
4172
  const config = {
3905
4173
  method: "post",
3906
4174
  url,
3907
- ...options
4175
+ ...httpConfigOptions
3908
4176
  };
3909
4177
  if (data)
3910
4178
  config.data = data;
@@ -3913,14 +4181,14 @@ var require_CreateDiscoveredDeviceAssociation = __commonJS({
3913
4181
  if (headers)
3914
4182
  config.headers = headers;
3915
4183
  return this._http.request(config);
3916
- };
4184
+ }, "CreateDiscoveredDeviceAssociation");
3917
4185
  }
3918
4186
  });
3919
4187
 
3920
4188
  // dist/useCases/CreateIntegration.js
3921
4189
  var require_CreateIntegration = __commonJS({
3922
4190
  "dist/useCases/CreateIntegration.js"(exports, module) {
3923
- module.exports = function CreateIntegration(requestData, options = {}) {
4191
+ module.exports = /* @__PURE__ */ __name(function CreateIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3924
4192
  if (!requestData)
3925
4193
  requestData = {};
3926
4194
  const pathParams = null;
@@ -3942,7 +4210,7 @@ var require_CreateIntegration = __commonJS({
3942
4210
  const config = {
3943
4211
  method: "post",
3944
4212
  url,
3945
- ...options
4213
+ ...httpConfigOptions
3946
4214
  };
3947
4215
  if (data)
3948
4216
  config.data = data;
@@ -3951,14 +4219,14 @@ var require_CreateIntegration = __commonJS({
3951
4219
  if (headers)
3952
4220
  config.headers = headers;
3953
4221
  return this._http.request(config);
3954
- };
4222
+ }, "CreateIntegration");
3955
4223
  }
3956
4224
  });
3957
4225
 
3958
4226
  // dist/useCases/UpdateIntegration.js
3959
4227
  var require_UpdateIntegration = __commonJS({
3960
4228
  "dist/useCases/UpdateIntegration.js"(exports, module) {
3961
- module.exports = function UpdateIntegration(requestData, options = {}) {
4229
+ module.exports = /* @__PURE__ */ __name(function UpdateIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3962
4230
  if (!requestData)
3963
4231
  requestData = {};
3964
4232
  const pathParams = [":id"];
@@ -3980,7 +4248,7 @@ var require_UpdateIntegration = __commonJS({
3980
4248
  const config = {
3981
4249
  method: "put",
3982
4250
  url,
3983
- ...options
4251
+ ...httpConfigOptions
3984
4252
  };
3985
4253
  if (data)
3986
4254
  config.data = data;
@@ -3989,14 +4257,14 @@ var require_UpdateIntegration = __commonJS({
3989
4257
  if (headers)
3990
4258
  config.headers = headers;
3991
4259
  return this._http.request(config);
3992
- };
4260
+ }, "UpdateIntegration");
3993
4261
  }
3994
4262
  });
3995
4263
 
3996
4264
  // dist/useCases/CreateIntegrationDeviceMapEntry.js
3997
4265
  var require_CreateIntegrationDeviceMapEntry = __commonJS({
3998
4266
  "dist/useCases/CreateIntegrationDeviceMapEntry.js"(exports, module) {
3999
- module.exports = function CreateIntegrationDeviceMapEntry(requestData, options = {}) {
4267
+ module.exports = /* @__PURE__ */ __name(function CreateIntegrationDeviceMapEntry(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4000
4268
  if (!requestData)
4001
4269
  requestData = {};
4002
4270
  const pathParams = [":id"];
@@ -4018,7 +4286,7 @@ var require_CreateIntegrationDeviceMapEntry = __commonJS({
4018
4286
  const config = {
4019
4287
  method: "post",
4020
4288
  url,
4021
- ...options
4289
+ ...httpConfigOptions
4022
4290
  };
4023
4291
  if (data)
4024
4292
  config.data = data;
@@ -4027,14 +4295,14 @@ var require_CreateIntegrationDeviceMapEntry = __commonJS({
4027
4295
  if (headers)
4028
4296
  config.headers = headers;
4029
4297
  return this._http.request(config);
4030
- };
4298
+ }, "CreateIntegrationDeviceMapEntry");
4031
4299
  }
4032
4300
  });
4033
4301
 
4034
4302
  // dist/useCases/DescribeIntegration.js
4035
4303
  var require_DescribeIntegration = __commonJS({
4036
4304
  "dist/useCases/DescribeIntegration.js"(exports, module) {
4037
- module.exports = function DescribeIntegration(requestData, options = {}) {
4305
+ module.exports = /* @__PURE__ */ __name(function DescribeIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4038
4306
  if (!requestData)
4039
4307
  requestData = {};
4040
4308
  const pathParams = [":id"];
@@ -4056,7 +4324,7 @@ var require_DescribeIntegration = __commonJS({
4056
4324
  const config = {
4057
4325
  method: "get",
4058
4326
  url,
4059
- ...options
4327
+ ...httpConfigOptions
4060
4328
  };
4061
4329
  if (data)
4062
4330
  config.data = data;
@@ -4065,14 +4333,14 @@ var require_DescribeIntegration = __commonJS({
4065
4333
  if (headers)
4066
4334
  config.headers = headers;
4067
4335
  return this._http.request(config);
4068
- };
4336
+ }, "DescribeIntegration");
4069
4337
  }
4070
4338
  });
4071
4339
 
4072
4340
  // dist/useCases/DeleteIntegration.js
4073
4341
  var require_DeleteIntegration = __commonJS({
4074
4342
  "dist/useCases/DeleteIntegration.js"(exports, module) {
4075
- module.exports = function DeleteIntegration(requestData, options = {}) {
4343
+ module.exports = /* @__PURE__ */ __name(function DeleteIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4076
4344
  if (!requestData)
4077
4345
  requestData = {};
4078
4346
  const pathParams = [":id"];
@@ -4094,7 +4362,7 @@ var require_DeleteIntegration = __commonJS({
4094
4362
  const config = {
4095
4363
  method: "get",
4096
4364
  url,
4097
- ...options
4365
+ ...httpConfigOptions
4098
4366
  };
4099
4367
  if (data)
4100
4368
  config.data = data;
@@ -4103,14 +4371,14 @@ var require_DeleteIntegration = __commonJS({
4103
4371
  if (headers)
4104
4372
  config.headers = headers;
4105
4373
  return this._http.request(config);
4106
- };
4374
+ }, "DeleteIntegration");
4107
4375
  }
4108
4376
  });
4109
4377
 
4110
4378
  // dist/useCases/ListIntegrations.js
4111
4379
  var require_ListIntegrations = __commonJS({
4112
4380
  "dist/useCases/ListIntegrations.js"(exports, module) {
4113
- module.exports = function ListIntegrations(requestData, options = {}) {
4381
+ module.exports = /* @__PURE__ */ __name(function ListIntegrations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4114
4382
  if (!requestData)
4115
4383
  requestData = {};
4116
4384
  const pathParams = null;
@@ -4132,7 +4400,7 @@ var require_ListIntegrations = __commonJS({
4132
4400
  const config = {
4133
4401
  method: "get",
4134
4402
  url,
4135
- ...options
4403
+ ...httpConfigOptions
4136
4404
  };
4137
4405
  if (data)
4138
4406
  config.data = data;
@@ -4141,14 +4409,14 @@ var require_ListIntegrations = __commonJS({
4141
4409
  if (headers)
4142
4410
  config.headers = headers;
4143
4411
  return this._http.request(config);
4144
- };
4412
+ }, "ListIntegrations");
4145
4413
  }
4146
4414
  });
4147
4415
 
4148
4416
  // dist/useCases/DiscoverReservations.js
4149
4417
  var require_DiscoverReservations = __commonJS({
4150
4418
  "dist/useCases/DiscoverReservations.js"(exports, module) {
4151
- module.exports = function DiscoverReservations(requestData, options = {}) {
4419
+ module.exports = /* @__PURE__ */ __name(function DiscoverReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4152
4420
  if (!requestData)
4153
4421
  requestData = {};
4154
4422
  const pathParams = null;
@@ -4170,7 +4438,7 @@ var require_DiscoverReservations = __commonJS({
4170
4438
  const config = {
4171
4439
  method: "get",
4172
4440
  url,
4173
- ...options
4441
+ ...httpConfigOptions
4174
4442
  };
4175
4443
  if (data)
4176
4444
  config.data = data;
@@ -4179,14 +4447,14 @@ var require_DiscoverReservations = __commonJS({
4179
4447
  if (headers)
4180
4448
  config.headers = headers;
4181
4449
  return this._http.request(config);
4182
- };
4450
+ }, "DiscoverReservations");
4183
4451
  }
4184
4452
  });
4185
4453
 
4186
4454
  // dist/useCases/CreateReservation.js
4187
4455
  var require_CreateReservation = __commonJS({
4188
4456
  "dist/useCases/CreateReservation.js"(exports, module) {
4189
- module.exports = function CreateReservation(requestData, options = {}) {
4457
+ module.exports = /* @__PURE__ */ __name(function CreateReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4190
4458
  if (!requestData)
4191
4459
  requestData = {};
4192
4460
  const pathParams = null;
@@ -4208,7 +4476,7 @@ var require_CreateReservation = __commonJS({
4208
4476
  const config = {
4209
4477
  method: "post",
4210
4478
  url,
4211
- ...options
4479
+ ...httpConfigOptions
4212
4480
  };
4213
4481
  if (data)
4214
4482
  config.data = data;
@@ -4217,14 +4485,14 @@ var require_CreateReservation = __commonJS({
4217
4485
  if (headers)
4218
4486
  config.headers = headers;
4219
4487
  return this._http.request(config);
4220
- };
4488
+ }, "CreateReservation");
4221
4489
  }
4222
4490
  });
4223
4491
 
4224
4492
  // dist/useCases/DeleteReservation.js
4225
4493
  var require_DeleteReservation = __commonJS({
4226
4494
  "dist/useCases/DeleteReservation.js"(exports, module) {
4227
- module.exports = function DeleteReservation(requestData, options = {}) {
4495
+ module.exports = /* @__PURE__ */ __name(function DeleteReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4228
4496
  if (!requestData)
4229
4497
  requestData = {};
4230
4498
  const pathParams = [":id"];
@@ -4246,7 +4514,7 @@ var require_DeleteReservation = __commonJS({
4246
4514
  const config = {
4247
4515
  method: "delete",
4248
4516
  url,
4249
- ...options
4517
+ ...httpConfigOptions
4250
4518
  };
4251
4519
  if (data)
4252
4520
  config.data = data;
@@ -4255,14 +4523,14 @@ var require_DeleteReservation = __commonJS({
4255
4523
  if (headers)
4256
4524
  config.headers = headers;
4257
4525
  return this._http.request(config);
4258
- };
4526
+ }, "DeleteReservation");
4259
4527
  }
4260
4528
  });
4261
4529
 
4262
4530
  // dist/useCases/ListReservations.js
4263
4531
  var require_ListReservations = __commonJS({
4264
4532
  "dist/useCases/ListReservations.js"(exports, module) {
4265
- module.exports = function ListReservations(requestData, options = {}) {
4533
+ module.exports = /* @__PURE__ */ __name(function ListReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4266
4534
  if (!requestData)
4267
4535
  requestData = {};
4268
4536
  const pathParams = null;
@@ -4284,7 +4552,7 @@ var require_ListReservations = __commonJS({
4284
4552
  const config = {
4285
4553
  method: "get",
4286
4554
  url,
4287
- ...options
4555
+ ...httpConfigOptions
4288
4556
  };
4289
4557
  if (data)
4290
4558
  config.data = data;
@@ -4293,14 +4561,14 @@ var require_ListReservations = __commonJS({
4293
4561
  if (headers)
4294
4562
  config.headers = headers;
4295
4563
  return this._http.request(config);
4296
- };
4564
+ }, "ListReservations");
4297
4565
  }
4298
4566
  });
4299
4567
 
4300
4568
  // dist/useCases/ListMyReservations.js
4301
4569
  var require_ListMyReservations = __commonJS({
4302
4570
  "dist/useCases/ListMyReservations.js"(exports, module) {
4303
- module.exports = function ListMyReservations(requestData, options = {}) {
4571
+ module.exports = /* @__PURE__ */ __name(function ListMyReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4304
4572
  if (!requestData)
4305
4573
  requestData = {};
4306
4574
  const pathParams = null;
@@ -4322,7 +4590,7 @@ var require_ListMyReservations = __commonJS({
4322
4590
  const config = {
4323
4591
  method: "get",
4324
4592
  url,
4325
- ...options
4593
+ ...httpConfigOptions
4326
4594
  };
4327
4595
  if (data)
4328
4596
  config.data = data;
@@ -4331,14 +4599,14 @@ var require_ListMyReservations = __commonJS({
4331
4599
  if (headers)
4332
4600
  config.headers = headers;
4333
4601
  return this._http.request(config);
4334
- };
4602
+ }, "ListMyReservations");
4335
4603
  }
4336
4604
  });
4337
4605
 
4338
4606
  // dist/useCases/UpdateReservation.js
4339
4607
  var require_UpdateReservation = __commonJS({
4340
4608
  "dist/useCases/UpdateReservation.js"(exports, module) {
4341
- module.exports = function UpdateReservation(requestData, options = {}) {
4609
+ module.exports = /* @__PURE__ */ __name(function UpdateReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4342
4610
  if (!requestData)
4343
4611
  requestData = {};
4344
4612
  const pathParams = [":id"];
@@ -4360,7 +4628,7 @@ var require_UpdateReservation = __commonJS({
4360
4628
  const config = {
4361
4629
  method: "put",
4362
4630
  url,
4363
- ...options
4631
+ ...httpConfigOptions
4364
4632
  };
4365
4633
  if (data)
4366
4634
  config.data = data;
@@ -4369,14 +4637,14 @@ var require_UpdateReservation = __commonJS({
4369
4637
  if (headers)
4370
4638
  config.headers = headers;
4371
4639
  return this._http.request(config);
4372
- };
4640
+ }, "UpdateReservation");
4373
4641
  }
4374
4642
  });
4375
4643
 
4376
4644
  // dist/useCases/DescribeReservation.js
4377
4645
  var require_DescribeReservation = __commonJS({
4378
4646
  "dist/useCases/DescribeReservation.js"(exports, module) {
4379
- module.exports = function DescribeReservation(requestData, options = {}) {
4647
+ module.exports = /* @__PURE__ */ __name(function DescribeReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4380
4648
  if (!requestData)
4381
4649
  requestData = {};
4382
4650
  const pathParams = [":id"];
@@ -4398,7 +4666,7 @@ var require_DescribeReservation = __commonJS({
4398
4666
  const config = {
4399
4667
  method: "get",
4400
4668
  url,
4401
- ...options
4669
+ ...httpConfigOptions
4402
4670
  };
4403
4671
  if (data)
4404
4672
  config.data = data;
@@ -4407,14 +4675,14 @@ var require_DescribeReservation = __commonJS({
4407
4675
  if (headers)
4408
4676
  config.headers = headers;
4409
4677
  return this._http.request(config);
4410
- };
4678
+ }, "DescribeReservation");
4411
4679
  }
4412
4680
  });
4413
4681
 
4414
4682
  // dist/useCases/DescribeReservationCheckinStatus.js
4415
4683
  var require_DescribeReservationCheckinStatus = __commonJS({
4416
4684
  "dist/useCases/DescribeReservationCheckinStatus.js"(exports, module) {
4417
- module.exports = function DescribeReservationCheckinStatus(requestData, options = {}) {
4685
+ module.exports = /* @__PURE__ */ __name(function DescribeReservationCheckinStatus(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4418
4686
  if (!requestData)
4419
4687
  requestData = {};
4420
4688
  const pathParams = [":id"];
@@ -4436,7 +4704,7 @@ var require_DescribeReservationCheckinStatus = __commonJS({
4436
4704
  const config = {
4437
4705
  method: "get",
4438
4706
  url,
4439
- ...options
4707
+ ...httpConfigOptions
4440
4708
  };
4441
4709
  if (data)
4442
4710
  config.data = data;
@@ -4445,14 +4713,14 @@ var require_DescribeReservationCheckinStatus = __commonJS({
4445
4713
  if (headers)
4446
4714
  config.headers = headers;
4447
4715
  return this._http.request(config);
4448
- };
4716
+ }, "DescribeReservationCheckinStatus");
4449
4717
  }
4450
4718
  });
4451
4719
 
4452
4720
  // dist/useCases/CheckInReservation.js
4453
4721
  var require_CheckInReservation = __commonJS({
4454
4722
  "dist/useCases/CheckInReservation.js"(exports, module) {
4455
- module.exports = function CheckInReservation(requestData, options = {}) {
4723
+ module.exports = /* @__PURE__ */ __name(function CheckInReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4456
4724
  if (!requestData)
4457
4725
  requestData = {};
4458
4726
  const pathParams = [":id"];
@@ -4474,7 +4742,7 @@ var require_CheckInReservation = __commonJS({
4474
4742
  const config = {
4475
4743
  method: "post",
4476
4744
  url,
4477
- ...options
4745
+ ...httpConfigOptions
4478
4746
  };
4479
4747
  if (data)
4480
4748
  config.data = data;
@@ -4483,14 +4751,14 @@ var require_CheckInReservation = __commonJS({
4483
4751
  if (headers)
4484
4752
  config.headers = headers;
4485
4753
  return this._http.request(config);
4486
- };
4754
+ }, "CheckInReservation");
4487
4755
  }
4488
4756
  });
4489
4757
 
4490
4758
  // dist/useCases/SendPreArrivalSMS.js
4491
4759
  var require_SendPreArrivalSMS = __commonJS({
4492
4760
  "dist/useCases/SendPreArrivalSMS.js"(exports, module) {
4493
- module.exports = function SendPreArrivalSMS(requestData, options = {}) {
4761
+ module.exports = /* @__PURE__ */ __name(function SendPreArrivalSMS(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4494
4762
  if (!requestData)
4495
4763
  requestData = {};
4496
4764
  const pathParams = [":id"];
@@ -4512,7 +4780,7 @@ var require_SendPreArrivalSMS = __commonJS({
4512
4780
  const config = {
4513
4781
  method: "post",
4514
4782
  url,
4515
- ...options
4783
+ ...httpConfigOptions
4516
4784
  };
4517
4785
  if (data)
4518
4786
  config.data = data;
@@ -4521,14 +4789,14 @@ var require_SendPreArrivalSMS = __commonJS({
4521
4789
  if (headers)
4522
4790
  config.headers = headers;
4523
4791
  return this._http.request(config);
4524
- };
4792
+ }, "SendPreArrivalSMS");
4525
4793
  }
4526
4794
  });
4527
4795
 
4528
4796
  // dist/useCases/SendPreArrivalEmail.js
4529
4797
  var require_SendPreArrivalEmail = __commonJS({
4530
4798
  "dist/useCases/SendPreArrivalEmail.js"(exports, module) {
4531
- module.exports = function SendPreArrivalEmail(requestData, options = {}) {
4799
+ module.exports = /* @__PURE__ */ __name(function SendPreArrivalEmail(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4532
4800
  if (!requestData)
4533
4801
  requestData = {};
4534
4802
  const pathParams = [":id"];
@@ -4550,7 +4818,7 @@ var require_SendPreArrivalEmail = __commonJS({
4550
4818
  const config = {
4551
4819
  method: "post",
4552
4820
  url,
4553
- ...options
4821
+ ...httpConfigOptions
4554
4822
  };
4555
4823
  if (data)
4556
4824
  config.data = data;
@@ -4559,14 +4827,14 @@ var require_SendPreArrivalEmail = __commonJS({
4559
4827
  if (headers)
4560
4828
  config.headers = headers;
4561
4829
  return this._http.request(config);
4562
- };
4830
+ }, "SendPreArrivalEmail");
4563
4831
  }
4564
4832
  });
4565
4833
 
4566
4834
  // dist/useCases/BatchNotifyPreArrival.js
4567
4835
  var require_BatchNotifyPreArrival = __commonJS({
4568
4836
  "dist/useCases/BatchNotifyPreArrival.js"(exports, module) {
4569
- module.exports = function BatchNotifyPreArrival(requestData, options = {}) {
4837
+ module.exports = /* @__PURE__ */ __name(function BatchNotifyPreArrival(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4570
4838
  if (!requestData)
4571
4839
  requestData = {};
4572
4840
  const pathParams = null;
@@ -4588,7 +4856,7 @@ var require_BatchNotifyPreArrival = __commonJS({
4588
4856
  const config = {
4589
4857
  method: "post",
4590
4858
  url,
4591
- ...options
4859
+ ...httpConfigOptions
4592
4860
  };
4593
4861
  if (data)
4594
4862
  config.data = data;
@@ -4597,14 +4865,14 @@ var require_BatchNotifyPreArrival = __commonJS({
4597
4865
  if (headers)
4598
4866
  config.headers = headers;
4599
4867
  return this._http.request(config);
4600
- };
4868
+ }, "BatchNotifyPreArrival");
4601
4869
  }
4602
4870
  });
4603
4871
 
4604
4872
  // dist/useCases/OCRDocument.js
4605
4873
  var require_OCRDocument = __commonJS({
4606
4874
  "dist/useCases/OCRDocument.js"(exports, module) {
4607
- module.exports = function OCRDocument(requestData, options = {}) {
4875
+ module.exports = /* @__PURE__ */ __name(function OCRDocument(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4608
4876
  if (!requestData)
4609
4877
  requestData = {};
4610
4878
  const pathParams = null;
@@ -4626,7 +4894,7 @@ var require_OCRDocument = __commonJS({
4626
4894
  const config = {
4627
4895
  method: "post",
4628
4896
  url,
4629
- ...options
4897
+ ...httpConfigOptions
4630
4898
  };
4631
4899
  if (data)
4632
4900
  config.data = data;
@@ -4635,14 +4903,14 @@ var require_OCRDocument = __commonJS({
4635
4903
  if (headers)
4636
4904
  config.headers = headers;
4637
4905
  return this._http.request(config);
4638
- };
4906
+ }, "OCRDocument");
4639
4907
  }
4640
4908
  });
4641
4909
 
4642
4910
  // dist/useCases/DescribeMyProperty.js
4643
4911
  var require_DescribeMyProperty = __commonJS({
4644
4912
  "dist/useCases/DescribeMyProperty.js"(exports, module) {
4645
- module.exports = function DescribeMyProperty(requestData, options = {}) {
4913
+ module.exports = /* @__PURE__ */ __name(function DescribeMyProperty(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4646
4914
  if (!requestData)
4647
4915
  requestData = {};
4648
4916
  const pathParams = null;
@@ -4664,7 +4932,7 @@ var require_DescribeMyProperty = __commonJS({
4664
4932
  const config = {
4665
4933
  method: "get",
4666
4934
  url,
4667
- ...options
4935
+ ...httpConfigOptions
4668
4936
  };
4669
4937
  if (data)
4670
4938
  config.data = data;
@@ -4673,14 +4941,14 @@ var require_DescribeMyProperty = __commonJS({
4673
4941
  if (headers)
4674
4942
  config.headers = headers;
4675
4943
  return this._http.request(config);
4676
- };
4944
+ }, "DescribeMyProperty");
4677
4945
  }
4678
4946
  });
4679
4947
 
4680
4948
  // dist/useCases/EmailUserAccountSetup.js
4681
4949
  var require_EmailUserAccountSetup = __commonJS({
4682
4950
  "dist/useCases/EmailUserAccountSetup.js"(exports, module) {
4683
- module.exports = function EmailUserAccountSetup(requestData, options = {}) {
4951
+ module.exports = /* @__PURE__ */ __name(function EmailUserAccountSetup(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4684
4952
  if (!requestData)
4685
4953
  requestData = {};
4686
4954
  const pathParams = [":id"];
@@ -4702,7 +4970,7 @@ var require_EmailUserAccountSetup = __commonJS({
4702
4970
  const config = {
4703
4971
  method: "post",
4704
4972
  url,
4705
- ...options
4973
+ ...httpConfigOptions
4706
4974
  };
4707
4975
  if (data)
4708
4976
  config.data = data;
@@ -4711,7 +4979,7 @@ var require_EmailUserAccountSetup = __commonJS({
4711
4979
  if (headers)
4712
4980
  config.headers = headers;
4713
4981
  return this._http.request(config);
4714
- };
4982
+ }, "EmailUserAccountSetup");
4715
4983
  }
4716
4984
  });
4717
4985
 
@@ -4720,31 +4988,33 @@ var require_events = __commonJS({
4720
4988
  "node_modules/events/events.js"(exports, module) {
4721
4989
  "use strict";
4722
4990
  var R = typeof Reflect === "object" ? Reflect : null;
4723
- var ReflectApply = R && typeof R.apply === "function" ? R.apply : function ReflectApply2(target, receiver, args) {
4991
+ var ReflectApply = R && typeof R.apply === "function" ? R.apply : /* @__PURE__ */ __name(function ReflectApply2(target, receiver, args) {
4724
4992
  return Function.prototype.apply.call(target, receiver, args);
4725
- };
4993
+ }, "ReflectApply");
4726
4994
  var ReflectOwnKeys;
4727
4995
  if (R && typeof R.ownKeys === "function") {
4728
4996
  ReflectOwnKeys = R.ownKeys;
4729
4997
  } else if (Object.getOwnPropertySymbols) {
4730
- ReflectOwnKeys = function ReflectOwnKeys2(target) {
4998
+ ReflectOwnKeys = /* @__PURE__ */ __name(function ReflectOwnKeys2(target) {
4731
4999
  return Object.getOwnPropertyNames(target).concat(Object.getOwnPropertySymbols(target));
4732
- };
5000
+ }, "ReflectOwnKeys");
4733
5001
  } else {
4734
- ReflectOwnKeys = function ReflectOwnKeys2(target) {
5002
+ ReflectOwnKeys = /* @__PURE__ */ __name(function ReflectOwnKeys2(target) {
4735
5003
  return Object.getOwnPropertyNames(target);
4736
- };
5004
+ }, "ReflectOwnKeys");
4737
5005
  }
4738
5006
  function ProcessEmitWarning(warning) {
4739
5007
  if (console && console.warn)
4740
5008
  console.warn(warning);
4741
5009
  }
4742
- var NumberIsNaN = Number.isNaN || function NumberIsNaN2(value) {
5010
+ __name(ProcessEmitWarning, "ProcessEmitWarning");
5011
+ var NumberIsNaN = Number.isNaN || /* @__PURE__ */ __name(function NumberIsNaN2(value) {
4743
5012
  return value !== value;
4744
- };
5013
+ }, "NumberIsNaN");
4745
5014
  function EventEmitter() {
4746
5015
  EventEmitter.init.call(this);
4747
5016
  }
5017
+ __name(EventEmitter, "EventEmitter");
4748
5018
  module.exports = EventEmitter;
4749
5019
  module.exports.once = once;
4750
5020
  EventEmitter.EventEmitter = EventEmitter;
@@ -4757,6 +5027,7 @@ var require_events = __commonJS({
4757
5027
  throw new TypeError('The "listener" argument must be of type Function. Received type ' + typeof listener);
4758
5028
  }
4759
5029
  }
5030
+ __name(checkListener, "checkListener");
4760
5031
  Object.defineProperty(EventEmitter, "defaultMaxListeners", {
4761
5032
  enumerable: true,
4762
5033
  get: function() {
@@ -4776,22 +5047,23 @@ var require_events = __commonJS({
4776
5047
  }
4777
5048
  this._maxListeners = this._maxListeners || void 0;
4778
5049
  };
4779
- EventEmitter.prototype.setMaxListeners = function setMaxListeners(n) {
5050
+ EventEmitter.prototype.setMaxListeners = /* @__PURE__ */ __name(function setMaxListeners(n) {
4780
5051
  if (typeof n !== "number" || n < 0 || NumberIsNaN(n)) {
4781
5052
  throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received ' + n + ".");
4782
5053
  }
4783
5054
  this._maxListeners = n;
4784
5055
  return this;
4785
- };
5056
+ }, "setMaxListeners");
4786
5057
  function _getMaxListeners(that) {
4787
5058
  if (that._maxListeners === void 0)
4788
5059
  return EventEmitter.defaultMaxListeners;
4789
5060
  return that._maxListeners;
4790
5061
  }
4791
- EventEmitter.prototype.getMaxListeners = function getMaxListeners() {
5062
+ __name(_getMaxListeners, "_getMaxListeners");
5063
+ EventEmitter.prototype.getMaxListeners = /* @__PURE__ */ __name(function getMaxListeners() {
4792
5064
  return _getMaxListeners(this);
4793
- };
4794
- EventEmitter.prototype.emit = function emit(type) {
5065
+ }, "getMaxListeners");
5066
+ EventEmitter.prototype.emit = /* @__PURE__ */ __name(function emit(type) {
4795
5067
  var args = [];
4796
5068
  for (var i = 1; i < arguments.length; i++)
4797
5069
  args.push(arguments[i]);
@@ -4824,7 +5096,7 @@ var require_events = __commonJS({
4824
5096
  ReflectApply(listeners[i], this, args);
4825
5097
  }
4826
5098
  return true;
4827
- };
5099
+ }, "emit");
4828
5100
  function _addListener(target, type, listener, prepend) {
4829
5101
  var m;
4830
5102
  var events;
@@ -4869,13 +5141,14 @@ var require_events = __commonJS({
4869
5141
  }
4870
5142
  return target;
4871
5143
  }
4872
- EventEmitter.prototype.addListener = function addListener(type, listener) {
5144
+ __name(_addListener, "_addListener");
5145
+ EventEmitter.prototype.addListener = /* @__PURE__ */ __name(function addListener(type, listener) {
4873
5146
  return _addListener(this, type, listener, false);
4874
- };
5147
+ }, "addListener");
4875
5148
  EventEmitter.prototype.on = EventEmitter.prototype.addListener;
4876
- EventEmitter.prototype.prependListener = function prependListener(type, listener) {
5149
+ EventEmitter.prototype.prependListener = /* @__PURE__ */ __name(function prependListener(type, listener) {
4877
5150
  return _addListener(this, type, listener, true);
4878
- };
5151
+ }, "prependListener");
4879
5152
  function onceWrapper() {
4880
5153
  if (!this.fired) {
4881
5154
  this.target.removeListener(this.type, this.wrapFn);
@@ -4885,6 +5158,7 @@ var require_events = __commonJS({
4885
5158
  return this.listener.apply(this.target, arguments);
4886
5159
  }
4887
5160
  }
5161
+ __name(onceWrapper, "onceWrapper");
4888
5162
  function _onceWrap(target, type, listener) {
4889
5163
  var state = { fired: false, wrapFn: void 0, target, type, listener };
4890
5164
  var wrapped = onceWrapper.bind(state);
@@ -4892,17 +5166,18 @@ var require_events = __commonJS({
4892
5166
  state.wrapFn = wrapped;
4893
5167
  return wrapped;
4894
5168
  }
4895
- EventEmitter.prototype.once = function once2(type, listener) {
5169
+ __name(_onceWrap, "_onceWrap");
5170
+ EventEmitter.prototype.once = /* @__PURE__ */ __name(function once2(type, listener) {
4896
5171
  checkListener(listener);
4897
5172
  this.on(type, _onceWrap(this, type, listener));
4898
5173
  return this;
4899
- };
4900
- EventEmitter.prototype.prependOnceListener = function prependOnceListener(type, listener) {
5174
+ }, "once");
5175
+ EventEmitter.prototype.prependOnceListener = /* @__PURE__ */ __name(function prependOnceListener(type, listener) {
4901
5176
  checkListener(listener);
4902
5177
  this.prependListener(type, _onceWrap(this, type, listener));
4903
5178
  return this;
4904
- };
4905
- EventEmitter.prototype.removeListener = function removeListener(type, listener) {
5179
+ }, "prependOnceListener");
5180
+ EventEmitter.prototype.removeListener = /* @__PURE__ */ __name(function removeListener(type, listener) {
4906
5181
  var list, events, position, i, originalListener;
4907
5182
  checkListener(listener);
4908
5183
  events = this._events;
@@ -4941,9 +5216,9 @@ var require_events = __commonJS({
4941
5216
  this.emit("removeListener", type, originalListener || listener);
4942
5217
  }
4943
5218
  return this;
4944
- };
5219
+ }, "removeListener");
4945
5220
  EventEmitter.prototype.off = EventEmitter.prototype.removeListener;
4946
- EventEmitter.prototype.removeAllListeners = function removeAllListeners(type) {
5221
+ EventEmitter.prototype.removeAllListeners = /* @__PURE__ */ __name(function removeAllListeners(type) {
4947
5222
  var listeners, events, i;
4948
5223
  events = this._events;
4949
5224
  if (events === void 0)
@@ -4983,7 +5258,7 @@ var require_events = __commonJS({
4983
5258
  }
4984
5259
  }
4985
5260
  return this;
4986
- };
5261
+ }, "removeAllListeners");
4987
5262
  function _listeners(target, type, unwrap) {
4988
5263
  var events = target._events;
4989
5264
  if (events === void 0)
@@ -4995,12 +5270,13 @@ var require_events = __commonJS({
4995
5270
  return unwrap ? [evlistener.listener || evlistener] : [evlistener];
4996
5271
  return unwrap ? unwrapListeners(evlistener) : arrayClone(evlistener, evlistener.length);
4997
5272
  }
4998
- EventEmitter.prototype.listeners = function listeners(type) {
5273
+ __name(_listeners, "_listeners");
5274
+ EventEmitter.prototype.listeners = /* @__PURE__ */ __name(function listeners(type) {
4999
5275
  return _listeners(this, type, true);
5000
- };
5001
- EventEmitter.prototype.rawListeners = function rawListeners(type) {
5276
+ }, "listeners");
5277
+ EventEmitter.prototype.rawListeners = /* @__PURE__ */ __name(function rawListeners(type) {
5002
5278
  return _listeners(this, type, false);
5003
- };
5279
+ }, "rawListeners");
5004
5280
  EventEmitter.listenerCount = function(emitter, type) {
5005
5281
  if (typeof emitter.listenerCount === "function") {
5006
5282
  return emitter.listenerCount(type);
@@ -5021,20 +5297,23 @@ var require_events = __commonJS({
5021
5297
  }
5022
5298
  return 0;
5023
5299
  }
5024
- EventEmitter.prototype.eventNames = function eventNames() {
5300
+ __name(listenerCount, "listenerCount");
5301
+ EventEmitter.prototype.eventNames = /* @__PURE__ */ __name(function eventNames() {
5025
5302
  return this._eventsCount > 0 ? ReflectOwnKeys(this._events) : [];
5026
- };
5303
+ }, "eventNames");
5027
5304
  function arrayClone(arr, n) {
5028
5305
  var copy = new Array(n);
5029
5306
  for (var i = 0; i < n; ++i)
5030
5307
  copy[i] = arr[i];
5031
5308
  return copy;
5032
5309
  }
5310
+ __name(arrayClone, "arrayClone");
5033
5311
  function spliceOne(list, index) {
5034
5312
  for (; index + 1 < list.length; index++)
5035
5313
  list[index] = list[index + 1];
5036
5314
  list.pop();
5037
5315
  }
5316
+ __name(spliceOne, "spliceOne");
5038
5317
  function unwrapListeners(arr) {
5039
5318
  var ret = new Array(arr.length);
5040
5319
  for (var i = 0; i < ret.length; ++i) {
@@ -5042,18 +5321,21 @@ var require_events = __commonJS({
5042
5321
  }
5043
5322
  return ret;
5044
5323
  }
5324
+ __name(unwrapListeners, "unwrapListeners");
5045
5325
  function once(emitter, name) {
5046
5326
  return new Promise(function(resolve, reject) {
5047
5327
  function errorListener(err) {
5048
5328
  emitter.removeListener(name, resolver);
5049
5329
  reject(err);
5050
5330
  }
5331
+ __name(errorListener, "errorListener");
5051
5332
  function resolver() {
5052
5333
  if (typeof emitter.removeListener === "function") {
5053
5334
  emitter.removeListener("error", errorListener);
5054
5335
  }
5055
5336
  resolve([].slice.call(arguments));
5056
5337
  }
5338
+ __name(resolver, "resolver");
5057
5339
  ;
5058
5340
  eventTargetAgnosticAddListener(emitter, name, resolver, { once: true });
5059
5341
  if (name !== "error") {
@@ -5061,11 +5343,13 @@ var require_events = __commonJS({
5061
5343
  }
5062
5344
  });
5063
5345
  }
5346
+ __name(once, "once");
5064
5347
  function addErrorHandlerIfEventEmitter(emitter, handler, flags) {
5065
5348
  if (typeof emitter.on === "function") {
5066
5349
  eventTargetAgnosticAddListener(emitter, "error", handler, flags);
5067
5350
  }
5068
5351
  }
5352
+ __name(addErrorHandlerIfEventEmitter, "addErrorHandlerIfEventEmitter");
5069
5353
  function eventTargetAgnosticAddListener(emitter, name, listener, flags) {
5070
5354
  if (typeof emitter.on === "function") {
5071
5355
  if (flags.once) {
@@ -5074,16 +5358,17 @@ var require_events = __commonJS({
5074
5358
  emitter.on(name, listener);
5075
5359
  }
5076
5360
  } else if (typeof emitter.addEventListener === "function") {
5077
- emitter.addEventListener(name, function wrapListener(arg) {
5361
+ emitter.addEventListener(name, /* @__PURE__ */ __name(function wrapListener(arg) {
5078
5362
  if (flags.once) {
5079
5363
  emitter.removeEventListener(name, wrapListener);
5080
5364
  }
5081
5365
  listener(arg);
5082
- });
5366
+ }, "wrapListener"));
5083
5367
  } else {
5084
5368
  throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type ' + typeof emitter);
5085
5369
  }
5086
5370
  }
5371
+ __name(eventTargetAgnosticAddListener, "eventTargetAgnosticAddListener");
5087
5372
  }
5088
5373
  });
5089
5374
 
@@ -5092,26 +5377,28 @@ var require_axios = __commonJS({
5092
5377
  "node_modules/axios/dist/browser/axios.cjs"(exports, module) {
5093
5378
  "use strict";
5094
5379
  function bind(fn, thisArg) {
5095
- return function wrap() {
5380
+ return /* @__PURE__ */ __name(function wrap() {
5096
5381
  return fn.apply(thisArg, arguments);
5097
- };
5382
+ }, "wrap");
5098
5383
  }
5384
+ __name(bind, "bind");
5099
5385
  var { toString } = Object.prototype;
5100
5386
  var { getPrototypeOf } = Object;
5101
5387
  var kindOf = ((cache) => (thing) => {
5102
5388
  const str = toString.call(thing);
5103
5389
  return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
5104
5390
  })(/* @__PURE__ */ Object.create(null));
5105
- var kindOfTest = (type) => {
5391
+ var kindOfTest = /* @__PURE__ */ __name((type) => {
5106
5392
  type = type.toLowerCase();
5107
5393
  return (thing) => kindOf(thing) === type;
5108
- };
5109
- var typeOfTest = (type) => (thing) => typeof thing === type;
5394
+ }, "kindOfTest");
5395
+ var typeOfTest = /* @__PURE__ */ __name((type) => (thing) => typeof thing === type, "typeOfTest");
5110
5396
  var { isArray } = Array;
5111
5397
  var isUndefined = typeOfTest("undefined");
5112
5398
  function isBuffer(val) {
5113
5399
  return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);
5114
5400
  }
5401
+ __name(isBuffer, "isBuffer");
5115
5402
  var isArrayBuffer = kindOfTest("ArrayBuffer");
5116
5403
  function isArrayBufferView(val) {
5117
5404
  let result;
@@ -5122,29 +5409,30 @@ var require_axios = __commonJS({
5122
5409
  }
5123
5410
  return result;
5124
5411
  }
5412
+ __name(isArrayBufferView, "isArrayBufferView");
5125
5413
  var isString = typeOfTest("string");
5126
5414
  var isFunction = typeOfTest("function");
5127
5415
  var isNumber = typeOfTest("number");
5128
- var isObject = (thing) => thing !== null && typeof thing === "object";
5129
- var isBoolean = (thing) => thing === true || thing === false;
5130
- var isPlainObject = (val) => {
5416
+ var isObject = /* @__PURE__ */ __name((thing) => thing !== null && typeof thing === "object", "isObject");
5417
+ var isBoolean = /* @__PURE__ */ __name((thing) => thing === true || thing === false, "isBoolean");
5418
+ var isPlainObject = /* @__PURE__ */ __name((val) => {
5131
5419
  if (kindOf(val) !== "object") {
5132
5420
  return false;
5133
5421
  }
5134
5422
  const prototype2 = getPrototypeOf(val);
5135
5423
  return (prototype2 === null || prototype2 === Object.prototype || Object.getPrototypeOf(prototype2) === null) && !(Symbol.toStringTag in val) && !(Symbol.iterator in val);
5136
- };
5424
+ }, "isPlainObject");
5137
5425
  var isDate = kindOfTest("Date");
5138
5426
  var isFile = kindOfTest("File");
5139
5427
  var isBlob = kindOfTest("Blob");
5140
5428
  var isFileList = kindOfTest("FileList");
5141
- var isStream = (val) => isObject(val) && isFunction(val.pipe);
5142
- var isFormData = (thing) => {
5429
+ var isStream = /* @__PURE__ */ __name((val) => isObject(val) && isFunction(val.pipe), "isStream");
5430
+ var isFormData = /* @__PURE__ */ __name((thing) => {
5143
5431
  const pattern = "[object FormData]";
5144
5432
  return thing && (typeof FormData === "function" && thing instanceof FormData || toString.call(thing) === pattern || isFunction(thing.toString) && thing.toString() === pattern);
5145
- };
5433
+ }, "isFormData");
5146
5434
  var isURLSearchParams = kindOfTest("URLSearchParams");
5147
- var trim = (str) => str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
5435
+ var trim = /* @__PURE__ */ __name((str) => str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ""), "trim");
5148
5436
  function forEach(obj, fn, { allOwnKeys = false } = {}) {
5149
5437
  if (obj === null || typeof obj === "undefined") {
5150
5438
  return;
@@ -5168,6 +5456,7 @@ var require_axios = __commonJS({
5168
5456
  }
5169
5457
  }
5170
5458
  }
5459
+ __name(forEach, "forEach");
5171
5460
  function findKey(obj, key) {
5172
5461
  key = key.toLowerCase();
5173
5462
  const keys = Object.keys(obj);
@@ -5181,16 +5470,17 @@ var require_axios = __commonJS({
5181
5470
  }
5182
5471
  return null;
5183
5472
  }
5473
+ __name(findKey, "findKey");
5184
5474
  var _global = (() => {
5185
5475
  if (typeof globalThis !== "undefined")
5186
5476
  return globalThis;
5187
5477
  return typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : window;
5188
5478
  })();
5189
- var isContextDefined = (context) => !isUndefined(context) && context !== _global;
5479
+ var isContextDefined = /* @__PURE__ */ __name((context) => !isUndefined(context) && context !== _global, "isContextDefined");
5190
5480
  function merge() {
5191
5481
  const { caseless } = isContextDefined(this) && this || {};
5192
5482
  const result = {};
5193
- const assignValue = (val, key) => {
5483
+ const assignValue = /* @__PURE__ */ __name((val, key) => {
5194
5484
  const targetKey = caseless && findKey(result, key) || key;
5195
5485
  if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
5196
5486
  result[targetKey] = merge(result[targetKey], val);
@@ -5201,13 +5491,14 @@ var require_axios = __commonJS({
5201
5491
  } else {
5202
5492
  result[targetKey] = val;
5203
5493
  }
5204
- };
5494
+ }, "assignValue");
5205
5495
  for (let i = 0, l = arguments.length; i < l; i++) {
5206
5496
  arguments[i] && forEach(arguments[i], assignValue);
5207
5497
  }
5208
5498
  return result;
5209
5499
  }
5210
- var extend = (a, b, thisArg, { allOwnKeys } = {}) => {
5500
+ __name(merge, "merge");
5501
+ var extend = /* @__PURE__ */ __name((a, b, thisArg, { allOwnKeys } = {}) => {
5211
5502
  forEach(b, (val, key) => {
5212
5503
  if (thisArg && isFunction(val)) {
5213
5504
  a[key] = bind(val, thisArg);
@@ -5216,22 +5507,22 @@ var require_axios = __commonJS({
5216
5507
  }
5217
5508
  }, { allOwnKeys });
5218
5509
  return a;
5219
- };
5220
- var stripBOM = (content) => {
5510
+ }, "extend");
5511
+ var stripBOM = /* @__PURE__ */ __name((content) => {
5221
5512
  if (content.charCodeAt(0) === 65279) {
5222
5513
  content = content.slice(1);
5223
5514
  }
5224
5515
  return content;
5225
- };
5226
- var inherits = (constructor, superConstructor, props, descriptors2) => {
5516
+ }, "stripBOM");
5517
+ var inherits = /* @__PURE__ */ __name((constructor, superConstructor, props, descriptors2) => {
5227
5518
  constructor.prototype = Object.create(superConstructor.prototype, descriptors2);
5228
5519
  constructor.prototype.constructor = constructor;
5229
5520
  Object.defineProperty(constructor, "super", {
5230
5521
  value: superConstructor.prototype
5231
5522
  });
5232
5523
  props && Object.assign(constructor.prototype, props);
5233
- };
5234
- var toFlatObject = (sourceObj, destObj, filter, propFilter) => {
5524
+ }, "inherits");
5525
+ var toFlatObject = /* @__PURE__ */ __name((sourceObj, destObj, filter, propFilter) => {
5235
5526
  let props;
5236
5527
  let i;
5237
5528
  let prop;
@@ -5252,8 +5543,8 @@ var require_axios = __commonJS({
5252
5543
  sourceObj = filter !== false && getPrototypeOf(sourceObj);
5253
5544
  } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);
5254
5545
  return destObj;
5255
- };
5256
- var endsWith = (str, searchString, position) => {
5546
+ }, "toFlatObject");
5547
+ var endsWith = /* @__PURE__ */ __name((str, searchString, position) => {
5257
5548
  str = String(str);
5258
5549
  if (position === void 0 || position > str.length) {
5259
5550
  position = str.length;
@@ -5261,8 +5552,8 @@ var require_axios = __commonJS({
5261
5552
  position -= searchString.length;
5262
5553
  const lastIndex = str.indexOf(searchString, position);
5263
5554
  return lastIndex !== -1 && lastIndex === position;
5264
- };
5265
- var toArray = (thing) => {
5555
+ }, "endsWith");
5556
+ var toArray = /* @__PURE__ */ __name((thing) => {
5266
5557
  if (!thing)
5267
5558
  return null;
5268
5559
  if (isArray(thing))
@@ -5275,13 +5566,13 @@ var require_axios = __commonJS({
5275
5566
  arr[i] = thing[i];
5276
5567
  }
5277
5568
  return arr;
5278
- };
5569
+ }, "toArray");
5279
5570
  var isTypedArray = ((TypedArray) => {
5280
5571
  return (thing) => {
5281
5572
  return TypedArray && thing instanceof TypedArray;
5282
5573
  };
5283
5574
  })(typeof Uint8Array !== "undefined" && getPrototypeOf(Uint8Array));
5284
- var forEachEntry = (obj, fn) => {
5575
+ var forEachEntry = /* @__PURE__ */ __name((obj, fn) => {
5285
5576
  const generator = obj && obj[Symbol.iterator];
5286
5577
  const iterator = generator.call(obj);
5287
5578
  let result;
@@ -5289,27 +5580,27 @@ var require_axios = __commonJS({
5289
5580
  const pair = result.value;
5290
5581
  fn.call(obj, pair[0], pair[1]);
5291
5582
  }
5292
- };
5293
- var matchAll = (regExp, str) => {
5583
+ }, "forEachEntry");
5584
+ var matchAll = /* @__PURE__ */ __name((regExp, str) => {
5294
5585
  let matches;
5295
5586
  const arr = [];
5296
5587
  while ((matches = regExp.exec(str)) !== null) {
5297
5588
  arr.push(matches);
5298
5589
  }
5299
5590
  return arr;
5300
- };
5591
+ }, "matchAll");
5301
5592
  var isHTMLForm = kindOfTest("HTMLFormElement");
5302
- var toCamelCase = (str) => {
5593
+ var toCamelCase = /* @__PURE__ */ __name((str) => {
5303
5594
  return str.toLowerCase().replace(
5304
5595
  /[_-\s]([a-z\d])(\w*)/g,
5305
- function replacer(m, p1, p2) {
5596
+ /* @__PURE__ */ __name(function replacer(m, p1, p2) {
5306
5597
  return p1.toUpperCase() + p2;
5307
- }
5598
+ }, "replacer")
5308
5599
  );
5309
- };
5600
+ }, "toCamelCase");
5310
5601
  var hasOwnProperty = (({ hasOwnProperty: hasOwnProperty2 }) => (obj, prop) => hasOwnProperty2.call(obj, prop))(Object.prototype);
5311
5602
  var isRegExp = kindOfTest("RegExp");
5312
- var reduceDescriptors = (obj, reducer) => {
5603
+ var reduceDescriptors = /* @__PURE__ */ __name((obj, reducer) => {
5313
5604
  const descriptors2 = Object.getOwnPropertyDescriptors(obj);
5314
5605
  const reducedDescriptors = {};
5315
5606
  forEach(descriptors2, (descriptor, name) => {
@@ -5318,8 +5609,8 @@ var require_axios = __commonJS({
5318
5609
  }
5319
5610
  });
5320
5611
  Object.defineProperties(obj, reducedDescriptors);
5321
- };
5322
- var freezeMethods = (obj) => {
5612
+ }, "reduceDescriptors");
5613
+ var freezeMethods = /* @__PURE__ */ __name((obj) => {
5323
5614
  reduceDescriptors(obj, (descriptor, name) => {
5324
5615
  if (isFunction(obj) && ["arguments", "caller", "callee"].indexOf(name) !== -1) {
5325
5616
  return false;
@@ -5338,26 +5629,26 @@ var require_axios = __commonJS({
5338
5629
  };
5339
5630
  }
5340
5631
  });
5341
- };
5342
- var toObjectSet = (arrayOrString, delimiter) => {
5632
+ }, "freezeMethods");
5633
+ var toObjectSet = /* @__PURE__ */ __name((arrayOrString, delimiter) => {
5343
5634
  const obj = {};
5344
- const define = (arr) => {
5635
+ const define = /* @__PURE__ */ __name((arr) => {
5345
5636
  arr.forEach((value) => {
5346
5637
  obj[value] = true;
5347
5638
  });
5348
- };
5639
+ }, "define");
5349
5640
  isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));
5350
5641
  return obj;
5351
- };
5352
- var noop = () => {
5353
- };
5354
- var toFiniteNumber = (value, defaultValue) => {
5642
+ }, "toObjectSet");
5643
+ var noop = /* @__PURE__ */ __name(() => {
5644
+ }, "noop");
5645
+ var toFiniteNumber = /* @__PURE__ */ __name((value, defaultValue) => {
5355
5646
  value = +value;
5356
5647
  return Number.isFinite(value) ? value : defaultValue;
5357
- };
5358
- var toJSONObject = (obj) => {
5648
+ }, "toFiniteNumber");
5649
+ var toJSONObject = /* @__PURE__ */ __name((obj) => {
5359
5650
  const stack = new Array(10);
5360
- const visit = (source, i) => {
5651
+ const visit = /* @__PURE__ */ __name((source, i) => {
5361
5652
  if (isObject(source)) {
5362
5653
  if (stack.indexOf(source) >= 0) {
5363
5654
  return;
@@ -5374,9 +5665,9 @@ var require_axios = __commonJS({
5374
5665
  }
5375
5666
  }
5376
5667
  return source;
5377
- };
5668
+ }, "visit");
5378
5669
  return visit(obj, 0);
5379
- };
5670
+ }, "toJSONObject");
5380
5671
  var utils = {
5381
5672
  isArray,
5382
5673
  isArrayBuffer,
@@ -5440,8 +5731,9 @@ var require_axios = __commonJS({
5440
5731
  request && (this.request = request);
5441
5732
  response && (this.response = response);
5442
5733
  }
5734
+ __name(AxiosError, "AxiosError");
5443
5735
  utils.inherits(AxiosError, Error, {
5444
- toJSON: function toJSON() {
5736
+ toJSON: /* @__PURE__ */ __name(function toJSON() {
5445
5737
  return {
5446
5738
  // Standard
5447
5739
  message: this.message,
@@ -5459,7 +5751,7 @@ var require_axios = __commonJS({
5459
5751
  code: this.code,
5460
5752
  status: this.response && this.response.status ? this.response.status : null
5461
5753
  };
5462
- }
5754
+ }, "toJSON")
5463
5755
  });
5464
5756
  var prototype$1 = AxiosError.prototype;
5465
5757
  var descriptors = {};
@@ -5484,9 +5776,9 @@ var require_axios = __commonJS({
5484
5776
  Object.defineProperty(prototype$1, "isAxiosError", { value: true });
5485
5777
  AxiosError.from = (error, code, config, request, response, customProps) => {
5486
5778
  const axiosError = Object.create(prototype$1);
5487
- utils.toFlatObject(error, axiosError, function filter(obj) {
5779
+ utils.toFlatObject(error, axiosError, /* @__PURE__ */ __name(function filter(obj) {
5488
5780
  return obj !== Error.prototype;
5489
- }, (prop) => {
5781
+ }, "filter"), (prop) => {
5490
5782
  return prop !== "isAxiosError";
5491
5783
  });
5492
5784
  AxiosError.call(axiosError, error.message, code, config, request, response);
@@ -5500,26 +5792,31 @@ var require_axios = __commonJS({
5500
5792
  function isVisitable(thing) {
5501
5793
  return utils.isPlainObject(thing) || utils.isArray(thing);
5502
5794
  }
5795
+ __name(isVisitable, "isVisitable");
5503
5796
  function removeBrackets(key) {
5504
5797
  return utils.endsWith(key, "[]") ? key.slice(0, -2) : key;
5505
5798
  }
5799
+ __name(removeBrackets, "removeBrackets");
5506
5800
  function renderKey(path, key, dots) {
5507
5801
  if (!path)
5508
5802
  return key;
5509
- return path.concat(key).map(function each(token, i) {
5803
+ return path.concat(key).map(/* @__PURE__ */ __name(function each(token, i) {
5510
5804
  token = removeBrackets(token);
5511
5805
  return !dots && i ? "[" + token + "]" : token;
5512
- }).join(dots ? "." : "");
5806
+ }, "each")).join(dots ? "." : "");
5513
5807
  }
5808
+ __name(renderKey, "renderKey");
5514
5809
  function isFlatArray(arr) {
5515
5810
  return utils.isArray(arr) && !arr.some(isVisitable);
5516
5811
  }
5517
- var predicates = utils.toFlatObject(utils, {}, null, function filter(prop) {
5812
+ __name(isFlatArray, "isFlatArray");
5813
+ var predicates = utils.toFlatObject(utils, {}, null, /* @__PURE__ */ __name(function filter(prop) {
5518
5814
  return /^is[A-Z]/.test(prop);
5519
- });
5815
+ }, "filter"));
5520
5816
  function isSpecCompliant(thing) {
5521
5817
  return thing && utils.isFunction(thing.append) && thing[Symbol.toStringTag] === "FormData" && thing[Symbol.iterator];
5522
5818
  }
5819
+ __name(isSpecCompliant, "isSpecCompliant");
5523
5820
  function toFormData(obj, formData, options) {
5524
5821
  if (!utils.isObject(obj)) {
5525
5822
  throw new TypeError("target must be an object");
@@ -5529,9 +5826,9 @@ var require_axios = __commonJS({
5529
5826
  metaTokens: true,
5530
5827
  dots: false,
5531
5828
  indexes: false
5532
- }, false, function defined(option, source) {
5829
+ }, false, /* @__PURE__ */ __name(function defined(option, source) {
5533
5830
  return !utils.isUndefined(source[option]);
5534
- });
5831
+ }, "defined"));
5535
5832
  const metaTokens = options.metaTokens;
5536
5833
  const visitor = options.visitor || defaultVisitor;
5537
5834
  const dots = options.dots;
@@ -5555,6 +5852,7 @@ var require_axios = __commonJS({
5555
5852
  }
5556
5853
  return value;
5557
5854
  }
5855
+ __name(convertValue, "convertValue");
5558
5856
  function defaultVisitor(value, key, path) {
5559
5857
  let arr = value;
5560
5858
  if (value && !path && typeof value === "object") {
@@ -5563,13 +5861,13 @@ var require_axios = __commonJS({
5563
5861
  value = JSON.stringify(value);
5564
5862
  } else if (utils.isArray(value) && isFlatArray(value) || (utils.isFileList(value) || utils.endsWith(key, "[]") && (arr = utils.toArray(value)))) {
5565
5863
  key = removeBrackets(key);
5566
- arr.forEach(function each(el, index) {
5864
+ arr.forEach(/* @__PURE__ */ __name(function each(el, index) {
5567
5865
  !(utils.isUndefined(el) || el === null) && formData.append(
5568
5866
  // eslint-disable-next-line no-nested-ternary
5569
5867
  indexes === true ? renderKey([key], index, dots) : indexes === null ? key : key + "[]",
5570
5868
  convertValue(el)
5571
5869
  );
5572
- });
5870
+ }, "each"));
5573
5871
  return false;
5574
5872
  }
5575
5873
  }
@@ -5579,6 +5877,7 @@ var require_axios = __commonJS({
5579
5877
  formData.append(renderKey(path, key, dots), convertValue(value));
5580
5878
  return false;
5581
5879
  }
5880
+ __name(defaultVisitor, "defaultVisitor");
5582
5881
  const stack = [];
5583
5882
  const exposedHelpers = Object.assign(predicates, {
5584
5883
  defaultVisitor,
@@ -5592,7 +5891,7 @@ var require_axios = __commonJS({
5592
5891
  throw Error("Circular reference detected in " + path.join("."));
5593
5892
  }
5594
5893
  stack.push(value);
5595
- utils.forEach(value, function each(el, key) {
5894
+ utils.forEach(value, /* @__PURE__ */ __name(function each(el, key) {
5596
5895
  const result = !(utils.isUndefined(el) || el === null) && visitor.call(
5597
5896
  formData,
5598
5897
  el,
@@ -5603,15 +5902,17 @@ var require_axios = __commonJS({
5603
5902
  if (result === true) {
5604
5903
  build(el, path ? path.concat(key) : [key]);
5605
5904
  }
5606
- });
5905
+ }, "each"));
5607
5906
  stack.pop();
5608
5907
  }
5908
+ __name(build, "build");
5609
5909
  if (!utils.isObject(obj)) {
5610
5910
  throw new TypeError("data must be an object");
5611
5911
  }
5612
5912
  build(obj);
5613
5913
  return formData;
5614
5914
  }
5915
+ __name(toFormData, "toFormData");
5615
5916
  function encode$1(str) {
5616
5917
  const charMap = {
5617
5918
  "!": "%21",
@@ -5622,29 +5923,32 @@ var require_axios = __commonJS({
5622
5923
  "%20": "+",
5623
5924
  "%00": "\0"
5624
5925
  };
5625
- return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) {
5926
+ return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, /* @__PURE__ */ __name(function replacer(match) {
5626
5927
  return charMap[match];
5627
- });
5928
+ }, "replacer"));
5628
5929
  }
5930
+ __name(encode$1, "encode$1");
5629
5931
  function AxiosURLSearchParams(params, options) {
5630
5932
  this._pairs = [];
5631
5933
  params && toFormData(params, this, options);
5632
5934
  }
5935
+ __name(AxiosURLSearchParams, "AxiosURLSearchParams");
5633
5936
  var prototype = AxiosURLSearchParams.prototype;
5634
- prototype.append = function append(name, value) {
5937
+ prototype.append = /* @__PURE__ */ __name(function append(name, value) {
5635
5938
  this._pairs.push([name, value]);
5636
- };
5637
- prototype.toString = function toString2(encoder) {
5939
+ }, "append");
5940
+ prototype.toString = /* @__PURE__ */ __name(function toString2(encoder) {
5638
5941
  const _encode = encoder ? function(value) {
5639
5942
  return encoder.call(this, value, encode$1);
5640
5943
  } : encode$1;
5641
- return this._pairs.map(function each(pair) {
5944
+ return this._pairs.map(/* @__PURE__ */ __name(function each(pair) {
5642
5945
  return _encode(pair[0]) + "=" + _encode(pair[1]);
5643
- }, "").join("&");
5644
- };
5946
+ }, "each"), "").join("&");
5947
+ }, "toString");
5645
5948
  function encode(val) {
5646
5949
  return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
5647
5950
  }
5951
+ __name(encode, "encode");
5648
5952
  function buildURL(url, params, options) {
5649
5953
  if (!params) {
5650
5954
  return url;
@@ -5666,6 +5970,7 @@ var require_axios = __commonJS({
5666
5970
  }
5667
5971
  return url;
5668
5972
  }
5973
+ __name(buildURL, "buildURL");
5669
5974
  var InterceptorManager = class {
5670
5975
  constructor() {
5671
5976
  this.handlers = [];
@@ -5720,13 +6025,14 @@ var require_axios = __commonJS({
5720
6025
  * @returns {void}
5721
6026
  */
5722
6027
  forEach(fn) {
5723
- utils.forEach(this.handlers, function forEachHandler(h) {
6028
+ utils.forEach(this.handlers, /* @__PURE__ */ __name(function forEachHandler(h) {
5724
6029
  if (h !== null) {
5725
6030
  fn(h);
5726
6031
  }
5727
- });
6032
+ }, "forEachHandler"));
5728
6033
  }
5729
6034
  };
6035
+ __name(InterceptorManager, "InterceptorManager");
5730
6036
  var InterceptorManager$1 = InterceptorManager;
5731
6037
  var transitionalDefaults = {
5732
6038
  silentJSONParsing: true,
@@ -5768,11 +6074,13 @@ var require_axios = __commonJS({
5768
6074
  }
5769
6075
  }, options));
5770
6076
  }
6077
+ __name(toURLEncodedForm, "toURLEncodedForm");
5771
6078
  function parsePropPath(name) {
5772
6079
  return utils.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
5773
6080
  return match[0] === "[]" ? "" : match[1] || match[0];
5774
6081
  });
5775
6082
  }
6083
+ __name(parsePropPath, "parsePropPath");
5776
6084
  function arrayToObject(arr) {
5777
6085
  const obj = {};
5778
6086
  const keys = Object.keys(arr);
@@ -5785,6 +6093,7 @@ var require_axios = __commonJS({
5785
6093
  }
5786
6094
  return obj;
5787
6095
  }
6096
+ __name(arrayToObject, "arrayToObject");
5788
6097
  function formDataToJSON(formData) {
5789
6098
  function buildPath(path, value, target, index) {
5790
6099
  let name = path[index++];
@@ -5808,6 +6117,7 @@ var require_axios = __commonJS({
5808
6117
  }
5809
6118
  return !isNumericKey;
5810
6119
  }
6120
+ __name(buildPath, "buildPath");
5811
6121
  if (utils.isFormData(formData) && utils.isFunction(formData.entries)) {
5812
6122
  const obj = {};
5813
6123
  utils.forEachEntry(formData, (name, value) => {
@@ -5817,6 +6127,7 @@ var require_axios = __commonJS({
5817
6127
  }
5818
6128
  return null;
5819
6129
  }
6130
+ __name(formDataToJSON, "formDataToJSON");
5820
6131
  var DEFAULT_CONTENT_TYPE = {
5821
6132
  "Content-Type": void 0
5822
6133
  };
@@ -5833,10 +6144,11 @@ var require_axios = __commonJS({
5833
6144
  }
5834
6145
  return (encoder || JSON.stringify)(rawValue);
5835
6146
  }
6147
+ __name(stringifySafely, "stringifySafely");
5836
6148
  var defaults = {
5837
6149
  transitional: transitionalDefaults,
5838
6150
  adapter: ["xhr", "http"],
5839
- transformRequest: [function transformRequest(data, headers) {
6151
+ transformRequest: [/* @__PURE__ */ __name(function transformRequest(data, headers) {
5840
6152
  const contentType = headers.getContentType() || "";
5841
6153
  const hasJSONContentType = contentType.indexOf("application/json") > -1;
5842
6154
  const isObjectPayload = utils.isObject(data);
@@ -5879,8 +6191,8 @@ var require_axios = __commonJS({
5879
6191
  return stringifySafely(data);
5880
6192
  }
5881
6193
  return data;
5882
- }],
5883
- transformResponse: [function transformResponse(data) {
6194
+ }, "transformRequest")],
6195
+ transformResponse: [/* @__PURE__ */ __name(function transformResponse(data) {
5884
6196
  const transitional = this.transitional || defaults.transitional;
5885
6197
  const forcedJSONParsing = transitional && transitional.forcedJSONParsing;
5886
6198
  const JSONRequested = this.responseType === "json";
@@ -5899,7 +6211,7 @@ var require_axios = __commonJS({
5899
6211
  }
5900
6212
  }
5901
6213
  return data;
5902
- }],
6214
+ }, "transformResponse")],
5903
6215
  /**
5904
6216
  * A timeout in milliseconds to abort a request. If set to 0 (default) a
5905
6217
  * timeout is not created.
@@ -5913,21 +6225,21 @@ var require_axios = __commonJS({
5913
6225
  FormData: platform.classes.FormData,
5914
6226
  Blob: platform.classes.Blob
5915
6227
  },
5916
- validateStatus: function validateStatus(status) {
6228
+ validateStatus: /* @__PURE__ */ __name(function validateStatus(status) {
5917
6229
  return status >= 200 && status < 300;
5918
- },
6230
+ }, "validateStatus"),
5919
6231
  headers: {
5920
6232
  common: {
5921
6233
  "Accept": "application/json, text/plain, */*"
5922
6234
  }
5923
6235
  }
5924
6236
  };
5925
- utils.forEach(["delete", "get", "head"], function forEachMethodNoData(method) {
6237
+ utils.forEach(["delete", "get", "head"], /* @__PURE__ */ __name(function forEachMethodNoData(method) {
5926
6238
  defaults.headers[method] = {};
5927
- });
5928
- utils.forEach(["post", "put", "patch"], function forEachMethodWithData(method) {
6239
+ }, "forEachMethodNoData"));
6240
+ utils.forEach(["post", "put", "patch"], /* @__PURE__ */ __name(function forEachMethodWithData(method) {
5929
6241
  defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);
5930
- });
6242
+ }, "forEachMethodWithData"));
5931
6243
  var defaults$1 = defaults;
5932
6244
  var ignoreDuplicateOf = utils.toObjectSet([
5933
6245
  "age",
@@ -5948,12 +6260,12 @@ var require_axios = __commonJS({
5948
6260
  "retry-after",
5949
6261
  "user-agent"
5950
6262
  ]);
5951
- var parseHeaders = (rawHeaders) => {
6263
+ var parseHeaders = /* @__PURE__ */ __name((rawHeaders) => {
5952
6264
  const parsed = {};
5953
6265
  let key;
5954
6266
  let val;
5955
6267
  let i;
5956
- rawHeaders && rawHeaders.split("\n").forEach(function parser(line) {
6268
+ rawHeaders && rawHeaders.split("\n").forEach(/* @__PURE__ */ __name(function parser(line) {
5957
6269
  i = line.indexOf(":");
5958
6270
  key = line.substring(0, i).trim().toLowerCase();
5959
6271
  val = line.substring(i + 1).trim();
@@ -5969,19 +6281,21 @@ var require_axios = __commonJS({
5969
6281
  } else {
5970
6282
  parsed[key] = parsed[key] ? parsed[key] + ", " + val : val;
5971
6283
  }
5972
- });
6284
+ }, "parser"));
5973
6285
  return parsed;
5974
- };
6286
+ }, "parseHeaders");
5975
6287
  var $internals = Symbol("internals");
5976
6288
  function normalizeHeader(header) {
5977
6289
  return header && String(header).trim().toLowerCase();
5978
6290
  }
6291
+ __name(normalizeHeader, "normalizeHeader");
5979
6292
  function normalizeValue(value) {
5980
6293
  if (value === false || value == null) {
5981
6294
  return value;
5982
6295
  }
5983
6296
  return utils.isArray(value) ? value.map(normalizeValue) : String(value);
5984
6297
  }
6298
+ __name(normalizeValue, "normalizeValue");
5985
6299
  function parseTokens(str) {
5986
6300
  const tokens = /* @__PURE__ */ Object.create(null);
5987
6301
  const tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
@@ -5991,9 +6305,11 @@ var require_axios = __commonJS({
5991
6305
  }
5992
6306
  return tokens;
5993
6307
  }
6308
+ __name(parseTokens, "parseTokens");
5994
6309
  function isValidHeaderName(str) {
5995
6310
  return /^[-_a-zA-Z]+$/.test(str.trim());
5996
6311
  }
6312
+ __name(isValidHeaderName, "isValidHeaderName");
5997
6313
  function matchHeaderValue(context, value, header, filter) {
5998
6314
  if (utils.isFunction(filter)) {
5999
6315
  return filter.call(this, value, header);
@@ -6007,11 +6323,13 @@ var require_axios = __commonJS({
6007
6323
  return filter.test(value);
6008
6324
  }
6009
6325
  }
6326
+ __name(matchHeaderValue, "matchHeaderValue");
6010
6327
  function formatHeader(header) {
6011
6328
  return header.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (w, char, str) => {
6012
6329
  return char.toUpperCase() + str;
6013
6330
  });
6014
6331
  }
6332
+ __name(formatHeader, "formatHeader");
6015
6333
  function buildAccessors(obj, header) {
6016
6334
  const accessorName = utils.toCamelCase(" " + header);
6017
6335
  ["get", "set", "has"].forEach((methodName) => {
@@ -6023,6 +6341,7 @@ var require_axios = __commonJS({
6023
6341
  });
6024
6342
  });
6025
6343
  }
6344
+ __name(buildAccessors, "buildAccessors");
6026
6345
  var AxiosHeaders = class {
6027
6346
  constructor(headers) {
6028
6347
  headers && this.set(headers);
@@ -6039,7 +6358,8 @@ var require_axios = __commonJS({
6039
6358
  self2[key || _header] = normalizeValue(_value);
6040
6359
  }
6041
6360
  }
6042
- const setHeaders = (headers, _rewrite) => utils.forEach(headers, (_value, _header) => setHeader(_value, _header, _rewrite));
6361
+ __name(setHeader, "setHeader");
6362
+ const setHeaders = /* @__PURE__ */ __name((headers, _rewrite) => utils.forEach(headers, (_value, _header) => setHeader(_value, _header, _rewrite)), "setHeaders");
6043
6363
  if (utils.isPlainObject(header) || header instanceof this.constructor) {
6044
6364
  setHeaders(header, valueOrRewrite);
6045
6365
  } else if (utils.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
@@ -6092,6 +6412,7 @@ var require_axios = __commonJS({
6092
6412
  }
6093
6413
  }
6094
6414
  }
6415
+ __name(deleteHeader, "deleteHeader");
6095
6416
  if (utils.isArray(header)) {
6096
6417
  header.forEach(deleteHeader);
6097
6418
  } else {
@@ -6161,10 +6482,12 @@ var require_axios = __commonJS({
6161
6482
  accessors[lHeader] = true;
6162
6483
  }
6163
6484
  }
6485
+ __name(defineAccessor, "defineAccessor");
6164
6486
  utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);
6165
6487
  return this;
6166
6488
  }
6167
6489
  };
6490
+ __name(AxiosHeaders, "AxiosHeaders");
6168
6491
  AxiosHeaders.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent"]);
6169
6492
  utils.freezeMethods(AxiosHeaders.prototype);
6170
6493
  utils.freezeMethods(AxiosHeaders);
@@ -6174,19 +6497,22 @@ var require_axios = __commonJS({
6174
6497
  const context = response || config;
6175
6498
  const headers = AxiosHeaders$1.from(context.headers);
6176
6499
  let data = context.data;
6177
- utils.forEach(fns, function transform(fn) {
6500
+ utils.forEach(fns, /* @__PURE__ */ __name(function transform(fn) {
6178
6501
  data = fn.call(config, data, headers.normalize(), response ? response.status : void 0);
6179
- });
6502
+ }, "transform"));
6180
6503
  headers.normalize();
6181
6504
  return data;
6182
6505
  }
6506
+ __name(transformData, "transformData");
6183
6507
  function isCancel(value) {
6184
6508
  return !!(value && value.__CANCEL__);
6185
6509
  }
6510
+ __name(isCancel, "isCancel");
6186
6511
  function CanceledError(message, config, request) {
6187
6512
  AxiosError.call(this, message == null ? "canceled" : message, AxiosError.ERR_CANCELED, config, request);
6188
6513
  this.name = "CanceledError";
6189
6514
  }
6515
+ __name(CanceledError, "CanceledError");
6190
6516
  utils.inherits(CanceledError, AxiosError, {
6191
6517
  __CANCEL__: true
6192
6518
  });
@@ -6205,11 +6531,12 @@ var require_axios = __commonJS({
6205
6531
  ));
6206
6532
  }
6207
6533
  }
6534
+ __name(settle, "settle");
6208
6535
  var cookies = platform.isStandardBrowserEnv ? (
6209
6536
  // Standard browser envs support document.cookie
6210
- function standardBrowserEnv() {
6537
+ (/* @__PURE__ */ __name(function standardBrowserEnv() {
6211
6538
  return {
6212
- write: function write(name, value, expires, path, domain, secure) {
6539
+ write: /* @__PURE__ */ __name(function write(name, value, expires, path, domain, secure) {
6213
6540
  const cookie = [];
6214
6541
  cookie.push(name + "=" + encodeURIComponent(value));
6215
6542
  if (utils.isNumber(expires)) {
@@ -6225,46 +6552,49 @@ var require_axios = __commonJS({
6225
6552
  cookie.push("secure");
6226
6553
  }
6227
6554
  document.cookie = cookie.join("; ");
6228
- },
6229
- read: function read(name) {
6555
+ }, "write"),
6556
+ read: /* @__PURE__ */ __name(function read(name) {
6230
6557
  const match = document.cookie.match(new RegExp("(^|;\\s*)(" + name + ")=([^;]*)"));
6231
6558
  return match ? decodeURIComponent(match[3]) : null;
6232
- },
6233
- remove: function remove(name) {
6559
+ }, "read"),
6560
+ remove: /* @__PURE__ */ __name(function remove(name) {
6234
6561
  this.write(name, "", Date.now() - 864e5);
6235
- }
6562
+ }, "remove")
6236
6563
  };
6237
- }()
6564
+ }, "standardBrowserEnv"))()
6238
6565
  ) : (
6239
6566
  // Non standard browser env (web workers, react-native) lack needed support.
6240
- function nonStandardBrowserEnv() {
6567
+ (/* @__PURE__ */ __name(function nonStandardBrowserEnv() {
6241
6568
  return {
6242
- write: function write() {
6243
- },
6244
- read: function read() {
6569
+ write: /* @__PURE__ */ __name(function write() {
6570
+ }, "write"),
6571
+ read: /* @__PURE__ */ __name(function read() {
6245
6572
  return null;
6246
- },
6247
- remove: function remove() {
6248
- }
6573
+ }, "read"),
6574
+ remove: /* @__PURE__ */ __name(function remove() {
6575
+ }, "remove")
6249
6576
  };
6250
- }()
6577
+ }, "nonStandardBrowserEnv"))()
6251
6578
  );
6252
6579
  function isAbsoluteURL(url) {
6253
6580
  return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url);
6254
6581
  }
6582
+ __name(isAbsoluteURL, "isAbsoluteURL");
6255
6583
  function combineURLs(baseURL, relativeURL) {
6256
6584
  return relativeURL ? baseURL.replace(/\/+$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
6257
6585
  }
6586
+ __name(combineURLs, "combineURLs");
6258
6587
  function buildFullPath(baseURL, requestedURL) {
6259
6588
  if (baseURL && !isAbsoluteURL(requestedURL)) {
6260
6589
  return combineURLs(baseURL, requestedURL);
6261
6590
  }
6262
6591
  return requestedURL;
6263
6592
  }
6593
+ __name(buildFullPath, "buildFullPath");
6264
6594
  var isURLSameOrigin = platform.isStandardBrowserEnv ? (
6265
6595
  // Standard browser envs have full support of the APIs needed to test
6266
6596
  // whether the request URL is of the same origin as current location.
6267
- function standardBrowserEnv() {
6597
+ (/* @__PURE__ */ __name(function standardBrowserEnv() {
6268
6598
  const msie = /(msie|trident)/i.test(navigator.userAgent);
6269
6599
  const urlParsingNode = document.createElement("a");
6270
6600
  let originURL;
@@ -6286,24 +6616,26 @@ var require_axios = __commonJS({
6286
6616
  pathname: urlParsingNode.pathname.charAt(0) === "/" ? urlParsingNode.pathname : "/" + urlParsingNode.pathname
6287
6617
  };
6288
6618
  }
6619
+ __name(resolveURL, "resolveURL");
6289
6620
  originURL = resolveURL(window.location.href);
6290
- return function isURLSameOrigin2(requestURL) {
6621
+ return /* @__PURE__ */ __name(function isURLSameOrigin2(requestURL) {
6291
6622
  const parsed = utils.isString(requestURL) ? resolveURL(requestURL) : requestURL;
6292
6623
  return parsed.protocol === originURL.protocol && parsed.host === originURL.host;
6293
- };
6294
- }()
6624
+ }, "isURLSameOrigin");
6625
+ }, "standardBrowserEnv"))()
6295
6626
  ) : (
6296
6627
  // Non standard browser envs (web workers, react-native) lack needed support.
6297
- function nonStandardBrowserEnv() {
6298
- return function isURLSameOrigin2() {
6628
+ (/* @__PURE__ */ __name(function nonStandardBrowserEnv() {
6629
+ return /* @__PURE__ */ __name(function isURLSameOrigin2() {
6299
6630
  return true;
6300
- };
6301
- }()
6631
+ }, "isURLSameOrigin");
6632
+ }, "nonStandardBrowserEnv"))()
6302
6633
  );
6303
6634
  function parseProtocol(url) {
6304
6635
  const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
6305
6636
  return match && match[1] || "";
6306
6637
  }
6638
+ __name(parseProtocol, "parseProtocol");
6307
6639
  function speedometer(samplesCount, min) {
6308
6640
  samplesCount = samplesCount || 10;
6309
6641
  const bytes = new Array(samplesCount);
@@ -6312,7 +6644,7 @@ var require_axios = __commonJS({
6312
6644
  let tail = 0;
6313
6645
  let firstSampleTS;
6314
6646
  min = min !== void 0 ? min : 1e3;
6315
- return function push(chunkLength) {
6647
+ return /* @__PURE__ */ __name(function push(chunkLength) {
6316
6648
  const now = Date.now();
6317
6649
  const startedAt = timestamps[tail];
6318
6650
  if (!firstSampleTS) {
@@ -6335,8 +6667,9 @@ var require_axios = __commonJS({
6335
6667
  }
6336
6668
  const passed = startedAt && now - startedAt;
6337
6669
  return passed ? Math.round(bytesCount * 1e3 / passed) : void 0;
6338
- };
6670
+ }, "push");
6339
6671
  }
6672
+ __name(speedometer, "speedometer");
6340
6673
  function progressEventReducer(listener, isDownloadStream) {
6341
6674
  let bytesNotified = 0;
6342
6675
  const _speedometer = speedometer(50, 250);
@@ -6360,9 +6693,10 @@ var require_axios = __commonJS({
6360
6693
  listener(data);
6361
6694
  };
6362
6695
  }
6696
+ __name(progressEventReducer, "progressEventReducer");
6363
6697
  var isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
6364
6698
  var xhrAdapter = isXHRAdapterSupported && function(config) {
6365
- return new Promise(function dispatchXhrRequest(resolve, reject) {
6699
+ return new Promise(/* @__PURE__ */ __name(function dispatchXhrRequest(resolve, reject) {
6366
6700
  let requestData = config.data;
6367
6701
  const requestHeaders = AxiosHeaders$1.from(config.headers).normalize();
6368
6702
  const responseType = config.responseType;
@@ -6375,6 +6709,7 @@ var require_axios = __commonJS({
6375
6709
  config.signal.removeEventListener("abort", onCanceled);
6376
6710
  }
6377
6711
  }
6712
+ __name(done, "done");
6378
6713
  if (utils.isFormData(requestData) && (platform.isStandardBrowserEnv || platform.isStandardBrowserWebWorkerEnv)) {
6379
6714
  requestHeaders.setContentType(false);
6380
6715
  }
@@ -6403,19 +6738,20 @@ var require_axios = __commonJS({
6403
6738
  config,
6404
6739
  request
6405
6740
  };
6406
- settle(function _resolve(value) {
6741
+ settle(/* @__PURE__ */ __name(function _resolve(value) {
6407
6742
  resolve(value);
6408
6743
  done();
6409
- }, function _reject(err) {
6744
+ }, "_resolve"), /* @__PURE__ */ __name(function _reject(err) {
6410
6745
  reject(err);
6411
6746
  done();
6412
- }, response);
6747
+ }, "_reject"), response);
6413
6748
  request = null;
6414
6749
  }
6750
+ __name(onloadend, "onloadend");
6415
6751
  if ("onloadend" in request) {
6416
6752
  request.onloadend = onloadend;
6417
6753
  } else {
6418
- request.onreadystatechange = function handleLoad() {
6754
+ request.onreadystatechange = /* @__PURE__ */ __name(function handleLoad() {
6419
6755
  if (!request || request.readyState !== 4) {
6420
6756
  return;
6421
6757
  }
@@ -6423,20 +6759,20 @@ var require_axios = __commonJS({
6423
6759
  return;
6424
6760
  }
6425
6761
  setTimeout(onloadend);
6426
- };
6762
+ }, "handleLoad");
6427
6763
  }
6428
- request.onabort = function handleAbort() {
6764
+ request.onabort = /* @__PURE__ */ __name(function handleAbort() {
6429
6765
  if (!request) {
6430
6766
  return;
6431
6767
  }
6432
6768
  reject(new AxiosError("Request aborted", AxiosError.ECONNABORTED, config, request));
6433
6769
  request = null;
6434
- };
6435
- request.onerror = function handleError() {
6770
+ }, "handleAbort");
6771
+ request.onerror = /* @__PURE__ */ __name(function handleError() {
6436
6772
  reject(new AxiosError("Network Error", AxiosError.ERR_NETWORK, config, request));
6437
6773
  request = null;
6438
- };
6439
- request.ontimeout = function handleTimeout() {
6774
+ }, "handleError");
6775
+ request.ontimeout = /* @__PURE__ */ __name(function handleTimeout() {
6440
6776
  let timeoutErrorMessage = config.timeout ? "timeout of " + config.timeout + "ms exceeded" : "timeout exceeded";
6441
6777
  const transitional = config.transitional || transitionalDefaults;
6442
6778
  if (config.timeoutErrorMessage) {
@@ -6449,7 +6785,7 @@ var require_axios = __commonJS({
6449
6785
  request
6450
6786
  ));
6451
6787
  request = null;
6452
- };
6788
+ }, "handleTimeout");
6453
6789
  if (platform.isStandardBrowserEnv) {
6454
6790
  const xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName && cookies.read(config.xsrfCookieName);
6455
6791
  if (xsrfValue) {
@@ -6458,9 +6794,9 @@ var require_axios = __commonJS({
6458
6794
  }
6459
6795
  requestData === void 0 && requestHeaders.setContentType(null);
6460
6796
  if ("setRequestHeader" in request) {
6461
- utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {
6797
+ utils.forEach(requestHeaders.toJSON(), /* @__PURE__ */ __name(function setRequestHeader(val, key) {
6462
6798
  request.setRequestHeader(key, val);
6463
- });
6799
+ }, "setRequestHeader"));
6464
6800
  }
6465
6801
  if (!utils.isUndefined(config.withCredentials)) {
6466
6802
  request.withCredentials = !!config.withCredentials;
@@ -6475,14 +6811,14 @@ var require_axios = __commonJS({
6475
6811
  request.upload.addEventListener("progress", progressEventReducer(config.onUploadProgress));
6476
6812
  }
6477
6813
  if (config.cancelToken || config.signal) {
6478
- onCanceled = (cancel) => {
6814
+ onCanceled = /* @__PURE__ */ __name((cancel) => {
6479
6815
  if (!request) {
6480
6816
  return;
6481
6817
  }
6482
6818
  reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);
6483
6819
  request.abort();
6484
6820
  request = null;
6485
- };
6821
+ }, "onCanceled");
6486
6822
  config.cancelToken && config.cancelToken.subscribe(onCanceled);
6487
6823
  if (config.signal) {
6488
6824
  config.signal.aborted ? onCanceled() : config.signal.addEventListener("abort", onCanceled);
@@ -6494,7 +6830,7 @@ var require_axios = __commonJS({
6494
6830
  return;
6495
6831
  }
6496
6832
  request.send(requestData || null);
6497
- });
6833
+ }, "dispatchXhrRequest"));
6498
6834
  };
6499
6835
  var knownAdapters = {
6500
6836
  http: httpAdapter,
@@ -6547,6 +6883,7 @@ var require_axios = __commonJS({
6547
6883
  throw new CanceledError(null, config);
6548
6884
  }
6549
6885
  }
6886
+ __name(throwIfCancellationRequested, "throwIfCancellationRequested");
6550
6887
  function dispatchRequest(config) {
6551
6888
  throwIfCancellationRequested(config);
6552
6889
  config.headers = AxiosHeaders$1.from(config.headers);
@@ -6558,7 +6895,7 @@ var require_axios = __commonJS({
6558
6895
  config.headers.setContentType("application/x-www-form-urlencoded", false);
6559
6896
  }
6560
6897
  const adapter = adapters.getAdapter(config.adapter || defaults$1.adapter);
6561
- return adapter(config).then(function onAdapterResolution(response) {
6898
+ return adapter(config).then(/* @__PURE__ */ __name(function onAdapterResolution(response) {
6562
6899
  throwIfCancellationRequested(config);
6563
6900
  response.data = transformData.call(
6564
6901
  config,
@@ -6567,7 +6904,7 @@ var require_axios = __commonJS({
6567
6904
  );
6568
6905
  response.headers = AxiosHeaders$1.from(response.headers);
6569
6906
  return response;
6570
- }, function onAdapterRejection(reason) {
6907
+ }, "onAdapterResolution"), /* @__PURE__ */ __name(function onAdapterRejection(reason) {
6571
6908
  if (!isCancel(reason)) {
6572
6909
  throwIfCancellationRequested(config);
6573
6910
  if (reason && reason.response) {
@@ -6580,9 +6917,10 @@ var require_axios = __commonJS({
6580
6917
  }
6581
6918
  }
6582
6919
  return Promise.reject(reason);
6583
- });
6920
+ }, "onAdapterRejection"));
6584
6921
  }
6585
- var headersToObject = (thing) => thing instanceof AxiosHeaders$1 ? thing.toJSON() : thing;
6922
+ __name(dispatchRequest, "dispatchRequest");
6923
+ var headersToObject = /* @__PURE__ */ __name((thing) => thing instanceof AxiosHeaders$1 ? thing.toJSON() : thing, "headersToObject");
6586
6924
  function mergeConfig(config1, config2) {
6587
6925
  config2 = config2 || {};
6588
6926
  const config = {};
@@ -6596,6 +6934,7 @@ var require_axios = __commonJS({
6596
6934
  }
6597
6935
  return source;
6598
6936
  }
6937
+ __name(getMergedValue, "getMergedValue");
6599
6938
  function mergeDeepProperties(a, b, caseless) {
6600
6939
  if (!utils.isUndefined(b)) {
6601
6940
  return getMergedValue(a, b, caseless);
@@ -6603,11 +6942,13 @@ var require_axios = __commonJS({
6603
6942
  return getMergedValue(void 0, a, caseless);
6604
6943
  }
6605
6944
  }
6945
+ __name(mergeDeepProperties, "mergeDeepProperties");
6606
6946
  function valueFromConfig2(a, b) {
6607
6947
  if (!utils.isUndefined(b)) {
6608
6948
  return getMergedValue(void 0, b);
6609
6949
  }
6610
6950
  }
6951
+ __name(valueFromConfig2, "valueFromConfig2");
6611
6952
  function defaultToConfig2(a, b) {
6612
6953
  if (!utils.isUndefined(b)) {
6613
6954
  return getMergedValue(void 0, b);
@@ -6615,6 +6956,7 @@ var require_axios = __commonJS({
6615
6956
  return getMergedValue(void 0, a);
6616
6957
  }
6617
6958
  }
6959
+ __name(defaultToConfig2, "defaultToConfig2");
6618
6960
  function mergeDirectKeys(a, b, prop) {
6619
6961
  if (prop in config2) {
6620
6962
  return getMergedValue(a, b);
@@ -6622,6 +6964,7 @@ var require_axios = __commonJS({
6622
6964
  return getMergedValue(void 0, a);
6623
6965
  }
6624
6966
  }
6967
+ __name(mergeDirectKeys, "mergeDirectKeys");
6625
6968
  const mergeMap = {
6626
6969
  url: valueFromConfig2,
6627
6970
  method: valueFromConfig2,
@@ -6652,25 +6995,27 @@ var require_axios = __commonJS({
6652
6995
  validateStatus: mergeDirectKeys,
6653
6996
  headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
6654
6997
  };
6655
- utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) {
6998
+ utils.forEach(Object.keys(config1).concat(Object.keys(config2)), /* @__PURE__ */ __name(function computeConfigValue(prop) {
6656
6999
  const merge2 = mergeMap[prop] || mergeDeepProperties;
6657
7000
  const configValue = merge2(config1[prop], config2[prop], prop);
6658
7001
  utils.isUndefined(configValue) && merge2 !== mergeDirectKeys || (config[prop] = configValue);
6659
- });
7002
+ }, "computeConfigValue"));
6660
7003
  return config;
6661
7004
  }
7005
+ __name(mergeConfig, "mergeConfig");
6662
7006
  var VERSION = "1.2.3";
6663
7007
  var validators$1 = {};
6664
7008
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
6665
- validators$1[type] = function validator2(thing) {
7009
+ validators$1[type] = /* @__PURE__ */ __name(function validator2(thing) {
6666
7010
  return typeof thing === type || "a" + (i < 1 ? "n " : " ") + type;
6667
- };
7011
+ }, "validator");
6668
7012
  });
6669
7013
  var deprecatedWarnings = {};
6670
- validators$1.transitional = function transitional(validator2, version, message) {
7014
+ validators$1.transitional = /* @__PURE__ */ __name(function transitional(validator2, version, message) {
6671
7015
  function formatMessage(opt, desc) {
6672
7016
  return "[Axios v" + VERSION + "] Transitional option '" + opt + "'" + desc + (message ? ". " + message : "");
6673
7017
  }
7018
+ __name(formatMessage, "formatMessage");
6674
7019
  return (value, opt, opts) => {
6675
7020
  if (validator2 === false) {
6676
7021
  throw new AxiosError(
@@ -6689,7 +7034,7 @@ var require_axios = __commonJS({
6689
7034
  }
6690
7035
  return validator2 ? validator2(value, opt, opts) : true;
6691
7036
  };
6692
- };
7037
+ }, "transitional");
6693
7038
  function assertOptions(options, schema, allowUnknown) {
6694
7039
  if (typeof options !== "object") {
6695
7040
  throw new AxiosError("options must be an object", AxiosError.ERR_BAD_OPTION_VALUE);
@@ -6712,6 +7057,7 @@ var require_axios = __commonJS({
6712
7057
  }
6713
7058
  }
6714
7059
  }
7060
+ __name(assertOptions, "assertOptions");
6715
7061
  var validator = {
6716
7062
  assertOptions,
6717
7063
  validators: validators$1
@@ -6770,17 +7116,17 @@ var require_axios = __commonJS({
6770
7116
  config.headers = AxiosHeaders$1.concat(contextHeaders, headers);
6771
7117
  const requestInterceptorChain = [];
6772
7118
  let synchronousRequestInterceptors = true;
6773
- this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {
7119
+ this.interceptors.request.forEach(/* @__PURE__ */ __name(function unshiftRequestInterceptors(interceptor) {
6774
7120
  if (typeof interceptor.runWhen === "function" && interceptor.runWhen(config) === false) {
6775
7121
  return;
6776
7122
  }
6777
7123
  synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
6778
7124
  requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
6779
- });
7125
+ }, "unshiftRequestInterceptors"));
6780
7126
  const responseInterceptorChain = [];
6781
- this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
7127
+ this.interceptors.response.forEach(/* @__PURE__ */ __name(function pushResponseInterceptors(interceptor) {
6782
7128
  responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
6783
- });
7129
+ }, "pushResponseInterceptors"));
6784
7130
  let promise;
6785
7131
  let i = 0;
6786
7132
  let len;
@@ -6826,7 +7172,8 @@ var require_axios = __commonJS({
6826
7172
  return buildURL(fullPath, config.params, config.paramsSerializer);
6827
7173
  }
6828
7174
  };
6829
- utils.forEach(["delete", "get", "head", "options"], function forEachMethodNoData(method) {
7175
+ __name(Axios, "Axios");
7176
+ utils.forEach(["delete", "get", "head", "options"], /* @__PURE__ */ __name(function forEachMethodNoData(method) {
6830
7177
  Axios.prototype[method] = function(url, config) {
6831
7178
  return this.request(mergeConfig(config || {}, {
6832
7179
  method,
@@ -6834,10 +7181,10 @@ var require_axios = __commonJS({
6834
7181
  data: (config || {}).data
6835
7182
  }));
6836
7183
  };
6837
- });
6838
- utils.forEach(["post", "put", "patch"], function forEachMethodWithData(method) {
7184
+ }, "forEachMethodNoData"));
7185
+ utils.forEach(["post", "put", "patch"], /* @__PURE__ */ __name(function forEachMethodWithData(method) {
6839
7186
  function generateHTTPMethod(isForm) {
6840
- return function httpMethod(url, data, config) {
7187
+ return /* @__PURE__ */ __name(function httpMethod(url, data, config) {
6841
7188
  return this.request(mergeConfig(config || {}, {
6842
7189
  method,
6843
7190
  headers: isForm ? {
@@ -6846,11 +7193,12 @@ var require_axios = __commonJS({
6846
7193
  url,
6847
7194
  data
6848
7195
  }));
6849
- };
7196
+ }, "httpMethod");
6850
7197
  }
7198
+ __name(generateHTTPMethod, "generateHTTPMethod");
6851
7199
  Axios.prototype[method] = generateHTTPMethod();
6852
7200
  Axios.prototype[method + "Form"] = generateHTTPMethod(true);
6853
- });
7201
+ }, "forEachMethodWithData"));
6854
7202
  var Axios$1 = Axios;
6855
7203
  var CancelToken = class {
6856
7204
  constructor(executor) {
@@ -6858,9 +7206,9 @@ var require_axios = __commonJS({
6858
7206
  throw new TypeError("executor must be a function.");
6859
7207
  }
6860
7208
  let resolvePromise;
6861
- this.promise = new Promise(function promiseExecutor(resolve) {
7209
+ this.promise = new Promise(/* @__PURE__ */ __name(function promiseExecutor(resolve) {
6862
7210
  resolvePromise = resolve;
6863
- });
7211
+ }, "promiseExecutor"));
6864
7212
  const token = this;
6865
7213
  this.promise.then((cancel) => {
6866
7214
  if (!token._listeners)
@@ -6877,18 +7225,18 @@ var require_axios = __commonJS({
6877
7225
  token.subscribe(resolve);
6878
7226
  _resolve = resolve;
6879
7227
  }).then(onfulfilled);
6880
- promise.cancel = function reject() {
7228
+ promise.cancel = /* @__PURE__ */ __name(function reject() {
6881
7229
  token.unsubscribe(_resolve);
6882
- };
7230
+ }, "reject");
6883
7231
  return promise;
6884
7232
  };
6885
- executor(function cancel(message, config, request) {
7233
+ executor(/* @__PURE__ */ __name(function cancel(message, config, request) {
6886
7234
  if (token.reason) {
6887
7235
  return;
6888
7236
  }
6889
7237
  token.reason = new CanceledError(message, config, request);
6890
7238
  resolvePromise(token.reason);
6891
- });
7239
+ }, "cancel"));
6892
7240
  }
6893
7241
  /**
6894
7242
  * Throws a `CanceledError` if cancellation has been requested.
@@ -6930,24 +7278,27 @@ var require_axios = __commonJS({
6930
7278
  */
6931
7279
  static source() {
6932
7280
  let cancel;
6933
- const token = new CancelToken(function executor(c) {
7281
+ const token = new CancelToken(/* @__PURE__ */ __name(function executor(c) {
6934
7282
  cancel = c;
6935
- });
7283
+ }, "executor"));
6936
7284
  return {
6937
7285
  token,
6938
7286
  cancel
6939
7287
  };
6940
7288
  }
6941
7289
  };
7290
+ __name(CancelToken, "CancelToken");
6942
7291
  var CancelToken$1 = CancelToken;
6943
7292
  function spread(callback) {
6944
- return function wrap(arr) {
7293
+ return /* @__PURE__ */ __name(function wrap(arr) {
6945
7294
  return callback.apply(null, arr);
6946
- };
7295
+ }, "wrap");
6947
7296
  }
7297
+ __name(spread, "spread");
6948
7298
  function isAxiosError(payload) {
6949
7299
  return utils.isObject(payload) && payload.isAxiosError === true;
6950
7300
  }
7301
+ __name(isAxiosError, "isAxiosError");
6951
7302
  var HttpStatusCode = {
6952
7303
  Continue: 100,
6953
7304
  SwitchingProtocols: 101,
@@ -7022,11 +7373,12 @@ var require_axios = __commonJS({
7022
7373
  const instance = bind(Axios$1.prototype.request, context);
7023
7374
  utils.extend(instance, Axios$1.prototype, context, { allOwnKeys: true });
7024
7375
  utils.extend(instance, context, null, { allOwnKeys: true });
7025
- instance.create = function create(instanceConfig) {
7376
+ instance.create = /* @__PURE__ */ __name(function create(instanceConfig) {
7026
7377
  return createInstance(mergeConfig(defaultConfig, instanceConfig));
7027
- };
7378
+ }, "create");
7028
7379
  return instance;
7029
7380
  }
7381
+ __name(createInstance, "createInstance");
7030
7382
  var axios = createInstance(defaults$1);
7031
7383
  axios.Axios = Axios$1;
7032
7384
  axios.CanceledError = CanceledError;
@@ -7036,9 +7388,9 @@ var require_axios = __commonJS({
7036
7388
  axios.toFormData = toFormData;
7037
7389
  axios.AxiosError = AxiosError;
7038
7390
  axios.Cancel = axios.CanceledError;
7039
- axios.all = function all(promises) {
7391
+ axios.all = /* @__PURE__ */ __name(function all(promises) {
7040
7392
  return Promise.all(promises);
7041
- };
7393
+ }, "all");
7042
7394
  axios.spread = spread;
7043
7395
  axios.isAxiosError = isAxiosError;
7044
7396
  axios.mergeConfig = mergeConfig;
@@ -7053,13 +7405,20 @@ var require_axios = __commonJS({
7053
7405
  // src/Client/index.js
7054
7406
  var require_Client = __commonJS({
7055
7407
  "src/Client/index.js"(exports, module) {
7408
+ var AdminCreateCustomer = require_AdminCreateCustomer();
7409
+ var AdminUpdateCustomer = require_AdminUpdateCustomer();
7410
+ var AdminDescribeCustomer = require_AdminDescribeCustomer();
7056
7411
  var AdminListCustomers = require_AdminListCustomers();
7057
7412
  var AdminListProperties = require_AdminListProperties();
7058
7413
  var AdminUpdateProperty = require_AdminUpdateProperty();
7059
7414
  var AdminDescribeProperty = require_AdminDescribeProperty();
7060
7415
  var AdminCreateProperty = require_AdminCreateProperty();
7416
+ var AdminCreateAdminUser = require_AdminCreateAdminUser();
7417
+ var AdminListAdminUsers = require_AdminListAdminUsers();
7418
+ var AdminRequestLoginLink = require_AdminRequestLoginLink();
7419
+ var AdminLoginUser = require_AdminLoginUser();
7420
+ var AdminRefreshToken = require_AdminRefreshToken();
7061
7421
  var LoginUser = require_LoginUser();
7062
- var LoginGateway = require_LoginGateway();
7063
7422
  var RefreshToken = require_RefreshToken();
7064
7423
  var RequestLoginLink = require_RequestLoginLink();
7065
7424
  var DescribeSelf = require_DescribeSelf();
@@ -7266,7 +7625,7 @@ var require_Client = __commonJS({
7266
7625
  }
7267
7626
  if (expectedError && newTokensNeeded) {
7268
7627
  return this.RefreshToken().then(() => {
7269
- return this.http(originalReq);
7628
+ return this._http(originalReq);
7270
7629
  });
7271
7630
  }
7272
7631
  } catch (error2) {
@@ -7297,13 +7656,21 @@ var require_Client = __commonJS({
7297
7656
  this.emit("LoginRequired");
7298
7657
  }
7299
7658
  };
7659
+ __name(KohostApiClient, "KohostApiClient");
7660
+ KohostApiClient.prototype.AdminCreateCustomer = AdminCreateCustomer;
7661
+ KohostApiClient.prototype.AdminUpdateCustomer = AdminUpdateCustomer;
7662
+ KohostApiClient.prototype.AdminDescribeCustomer = AdminDescribeCustomer;
7300
7663
  KohostApiClient.prototype.AdminListCustomers = AdminListCustomers;
7301
7664
  KohostApiClient.prototype.AdminListProperties = AdminListProperties;
7302
7665
  KohostApiClient.prototype.AdminUpdateProperty = AdminUpdateProperty;
7303
7666
  KohostApiClient.prototype.AdminDescribeProperty = AdminDescribeProperty;
7304
7667
  KohostApiClient.prototype.AdminCreateProperty = AdminCreateProperty;
7668
+ KohostApiClient.prototype.AdminCreateAdminUser = AdminCreateAdminUser;
7669
+ KohostApiClient.prototype.AdminListAdminUsers = AdminListAdminUsers;
7670
+ KohostApiClient.prototype.AdminRequestLoginLink = AdminRequestLoginLink;
7671
+ KohostApiClient.prototype.AdminLoginUser = AdminLoginUser;
7672
+ KohostApiClient.prototype.AdminRefreshToken = AdminRefreshToken;
7305
7673
  KohostApiClient.prototype.LoginUser = LoginUser;
7306
- KohostApiClient.prototype.LoginGateway = LoginGateway;
7307
7674
  KohostApiClient.prototype.RefreshToken = RefreshToken;
7308
7675
  KohostApiClient.prototype.RequestLoginLink = RequestLoginLink;
7309
7676
  KohostApiClient.prototype.DescribeSelf = DescribeSelf;