@kohost/api-client 3.0.0-beta.6 → 3.0.0-beta.8

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.
@@ -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 = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
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;
@@ -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 = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
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;
@@ -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 = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
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"];
@@ -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 = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
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"];
@@ -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 = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
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;
@@ -189,14 +305,204 @@ var require_AdminCreateProperty = __commonJS({
189
305
  if (headers)
190
306
  config.headers = headers;
191
307
  return this._http.request(config);
192
- };
308
+ }, "AdminCreateProperty");
309
+ }
310
+ });
311
+
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 = {}) {
316
+ if (!requestData)
317
+ requestData = {};
318
+ const pathParams = null;
319
+ const { data, query, headers } = requestData;
320
+ let url = "/admin/users";
321
+ if (pathParams && data) {
322
+ for (const param of pathParams) {
323
+ const paramName = param.replace(":", "");
324
+ url = url.replace(param, data[paramName]);
325
+ }
326
+ }
327
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
328
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
329
+ const missing = missingParams.map((param) => param.replace(":", ""));
330
+ return Promise.reject(
331
+ new Error("Missing parameters: " + missing.join(", "))
332
+ );
333
+ }
334
+ const config = {
335
+ method: "post",
336
+ url,
337
+ ...httpConfigOptions
338
+ };
339
+ if (data)
340
+ config.data = data;
341
+ if (query)
342
+ config.params = query;
343
+ if (headers)
344
+ config.headers = headers;
345
+ return this._http.request(config);
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");
385
+ }
386
+ });
387
+
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 = {}) {
392
+ if (!requestData)
393
+ requestData = {};
394
+ const pathParams = null;
395
+ const { data, query, headers } = requestData;
396
+ let url = "/admin/auth/loginToken";
397
+ if (pathParams && data) {
398
+ for (const param of pathParams) {
399
+ const paramName = param.replace(":", "");
400
+ url = url.replace(param, data[paramName]);
401
+ }
402
+ }
403
+ if (url.match(/:[a-zA-Z0-9]+/g)) {
404
+ const missingParams = url.match(/:[a-zA-Z0-9]+/g);
405
+ const missing = missingParams.map((param) => param.replace(":", ""));
406
+ return Promise.reject(
407
+ new Error("Missing parameters: " + missing.join(", "))
408
+ );
409
+ }
410
+ const config = {
411
+ method: "post",
412
+ url,
413
+ ...httpConfigOptions
414
+ };
415
+ if (data)
416
+ config.data = data;
417
+ if (query)
418
+ config.params = query;
419
+ if (headers)
420
+ config.headers = headers;
421
+ return this._http.request(config);
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");
193
499
  }
194
500
  });
195
501
 
196
502
  // dist/useCases/LoginUser.js
197
503
  var require_LoginUser = __commonJS({
198
504
  "dist/useCases/LoginUser.js"(exports, module) {
199
- module.exports = function LoginUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
505
+ module.exports = /* @__PURE__ */ __name(function LoginUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
200
506
  if (!requestData)
201
507
  requestData = {};
202
508
  const pathParams = null;
@@ -227,14 +533,14 @@ var require_LoginUser = __commonJS({
227
533
  if (headers)
228
534
  config.headers = headers;
229
535
  return this._http.request(config);
230
- };
536
+ }, "LoginUser");
231
537
  }
232
538
  });
233
539
 
234
540
  // dist/useCases/RefreshToken.js
235
541
  var require_RefreshToken = __commonJS({
236
542
  "dist/useCases/RefreshToken.js"(exports, module) {
237
- module.exports = function RefreshToken(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
543
+ module.exports = /* @__PURE__ */ __name(function RefreshToken(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
238
544
  if (!requestData)
239
545
  requestData = {};
240
546
  const pathParams = null;
@@ -265,14 +571,14 @@ var require_RefreshToken = __commonJS({
265
571
  if (headers)
266
572
  config.headers = headers;
267
573
  return this._http.request(config);
268
- };
574
+ }, "RefreshToken");
269
575
  }
270
576
  });
271
577
 
272
578
  // dist/useCases/RequestLoginLink.js
273
579
  var require_RequestLoginLink = __commonJS({
274
580
  "dist/useCases/RequestLoginLink.js"(exports, module) {
275
- module.exports = function RequestLoginLink(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
581
+ module.exports = /* @__PURE__ */ __name(function RequestLoginLink(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
276
582
  if (!requestData)
277
583
  requestData = {};
278
584
  const pathParams = null;
@@ -303,14 +609,14 @@ var require_RequestLoginLink = __commonJS({
303
609
  if (headers)
304
610
  config.headers = headers;
305
611
  return this._http.request(config);
306
- };
612
+ }, "RequestLoginLink");
307
613
  }
308
614
  });
309
615
 
310
616
  // dist/useCases/DescribeSelf.js
311
617
  var require_DescribeSelf = __commonJS({
312
618
  "dist/useCases/DescribeSelf.js"(exports, module) {
313
- module.exports = function DescribeSelf(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
619
+ module.exports = /* @__PURE__ */ __name(function DescribeSelf(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
314
620
  if (!requestData)
315
621
  requestData = {};
316
622
  const pathParams = null;
@@ -341,14 +647,14 @@ var require_DescribeSelf = __commonJS({
341
647
  if (headers)
342
648
  config.headers = headers;
343
649
  return this._http.request(config);
344
- };
650
+ }, "DescribeSelf");
345
651
  }
346
652
  });
347
653
 
348
654
  // dist/useCases/DescribeUser.js
349
655
  var require_DescribeUser = __commonJS({
350
656
  "dist/useCases/DescribeUser.js"(exports, module) {
351
- module.exports = function DescribeUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
657
+ module.exports = /* @__PURE__ */ __name(function DescribeUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
352
658
  if (!requestData)
353
659
  requestData = {};
354
660
  const pathParams = [":id"];
@@ -379,14 +685,14 @@ var require_DescribeUser = __commonJS({
379
685
  if (headers)
380
686
  config.headers = headers;
381
687
  return this._http.request(config);
382
- };
688
+ }, "DescribeUser");
383
689
  }
384
690
  });
385
691
 
386
692
  // dist/useCases/CreateUser.js
387
693
  var require_CreateUser = __commonJS({
388
694
  "dist/useCases/CreateUser.js"(exports, module) {
389
- module.exports = function CreateUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
695
+ module.exports = /* @__PURE__ */ __name(function CreateUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
390
696
  if (!requestData)
391
697
  requestData = {};
392
698
  const pathParams = null;
@@ -417,14 +723,14 @@ var require_CreateUser = __commonJS({
417
723
  if (headers)
418
724
  config.headers = headers;
419
725
  return this._http.request(config);
420
- };
726
+ }, "CreateUser");
421
727
  }
422
728
  });
423
729
 
424
730
  // dist/useCases/ListUsers.js
425
731
  var require_ListUsers = __commonJS({
426
732
  "dist/useCases/ListUsers.js"(exports, module) {
427
- module.exports = function ListUsers(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
733
+ module.exports = /* @__PURE__ */ __name(function ListUsers(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
428
734
  if (!requestData)
429
735
  requestData = {};
430
736
  const pathParams = null;
@@ -455,14 +761,14 @@ var require_ListUsers = __commonJS({
455
761
  if (headers)
456
762
  config.headers = headers;
457
763
  return this._http.request(config);
458
- };
764
+ }, "ListUsers");
459
765
  }
460
766
  });
461
767
 
462
768
  // dist/useCases/UpdateSelf.js
463
769
  var require_UpdateSelf = __commonJS({
464
770
  "dist/useCases/UpdateSelf.js"(exports, module) {
465
- module.exports = function UpdateSelf(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
771
+ module.exports = /* @__PURE__ */ __name(function UpdateSelf(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
466
772
  if (!requestData)
467
773
  requestData = {};
468
774
  const pathParams = null;
@@ -493,14 +799,14 @@ var require_UpdateSelf = __commonJS({
493
799
  if (headers)
494
800
  config.headers = headers;
495
801
  return this._http.request(config);
496
- };
802
+ }, "UpdateSelf");
497
803
  }
498
804
  });
499
805
 
500
806
  // dist/useCases/UpdateUser.js
501
807
  var require_UpdateUser = __commonJS({
502
808
  "dist/useCases/UpdateUser.js"(exports, module) {
503
- module.exports = function UpdateUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
809
+ module.exports = /* @__PURE__ */ __name(function UpdateUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
504
810
  if (!requestData)
505
811
  requestData = {};
506
812
  const pathParams = [":id"];
@@ -531,14 +837,14 @@ var require_UpdateUser = __commonJS({
531
837
  if (headers)
532
838
  config.headers = headers;
533
839
  return this._http.request(config);
534
- };
840
+ }, "UpdateUser");
535
841
  }
536
842
  });
537
843
 
538
844
  // dist/useCases/DeleteUser.js
539
845
  var require_DeleteUser = __commonJS({
540
846
  "dist/useCases/DeleteUser.js"(exports, module) {
541
- module.exports = function DeleteUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
847
+ module.exports = /* @__PURE__ */ __name(function DeleteUser(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
542
848
  if (!requestData)
543
849
  requestData = {};
544
850
  const pathParams = [":id"];
@@ -569,14 +875,14 @@ var require_DeleteUser = __commonJS({
569
875
  if (headers)
570
876
  config.headers = headers;
571
877
  return this._http.request(config);
572
- };
878
+ }, "DeleteUser");
573
879
  }
574
880
  });
575
881
 
576
882
  // dist/useCases/SendVerificationCode.js
577
883
  var require_SendVerificationCode = __commonJS({
578
884
  "dist/useCases/SendVerificationCode.js"(exports, module) {
579
- module.exports = function SendVerificationCode(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
885
+ module.exports = /* @__PURE__ */ __name(function SendVerificationCode(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
580
886
  if (!requestData)
581
887
  requestData = {};
582
888
  const pathParams = [":id"];
@@ -607,14 +913,14 @@ var require_SendVerificationCode = __commonJS({
607
913
  if (headers)
608
914
  config.headers = headers;
609
915
  return this._http.request(config);
610
- };
916
+ }, "SendVerificationCode");
611
917
  }
612
918
  });
613
919
 
614
920
  // dist/useCases/CheckVerificationCode.js
615
921
  var require_CheckVerificationCode = __commonJS({
616
922
  "dist/useCases/CheckVerificationCode.js"(exports, module) {
617
- module.exports = function CheckVerificationCode(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
923
+ module.exports = /* @__PURE__ */ __name(function CheckVerificationCode(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
618
924
  if (!requestData)
619
925
  requestData = {};
620
926
  const pathParams = [":id"];
@@ -645,14 +951,14 @@ var require_CheckVerificationCode = __commonJS({
645
951
  if (headers)
646
952
  config.headers = headers;
647
953
  return this._http.request(config);
648
- };
954
+ }, "CheckVerificationCode");
649
955
  }
650
956
  });
651
957
 
652
958
  // dist/useCases/MatchUserIdentification.js
653
959
  var require_MatchUserIdentification = __commonJS({
654
960
  "dist/useCases/MatchUserIdentification.js"(exports, module) {
655
- module.exports = function MatchUserIdentification(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
961
+ module.exports = /* @__PURE__ */ __name(function MatchUserIdentification(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
656
962
  if (!requestData)
657
963
  requestData = {};
658
964
  const pathParams = [":id"];
@@ -683,14 +989,14 @@ var require_MatchUserIdentification = __commonJS({
683
989
  if (headers)
684
990
  config.headers = headers;
685
991
  return this._http.request(config);
686
- };
992
+ }, "MatchUserIdentification");
687
993
  }
688
994
  });
689
995
 
690
996
  // dist/useCases/ListUserReservations.js
691
997
  var require_ListUserReservations = __commonJS({
692
998
  "dist/useCases/ListUserReservations.js"(exports, module) {
693
- module.exports = function ListUserReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
999
+ module.exports = /* @__PURE__ */ __name(function ListUserReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
694
1000
  if (!requestData)
695
1001
  requestData = {};
696
1002
  const pathParams = [":id"];
@@ -721,14 +1027,14 @@ var require_ListUserReservations = __commonJS({
721
1027
  if (headers)
722
1028
  config.headers = headers;
723
1029
  return this._http.request(config);
724
- };
1030
+ }, "ListUserReservations");
725
1031
  }
726
1032
  });
727
1033
 
728
1034
  // dist/useCases/ListSpaces.js
729
1035
  var require_ListSpaces = __commonJS({
730
1036
  "dist/useCases/ListSpaces.js"(exports, module) {
731
- module.exports = function ListSpaces(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1037
+ module.exports = /* @__PURE__ */ __name(function ListSpaces(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
732
1038
  if (!requestData)
733
1039
  requestData = {};
734
1040
  const pathParams = null;
@@ -759,14 +1065,14 @@ var require_ListSpaces = __commonJS({
759
1065
  if (headers)
760
1066
  config.headers = headers;
761
1067
  return this._http.request(config);
762
- };
1068
+ }, "ListSpaces");
763
1069
  }
764
1070
  });
765
1071
 
766
1072
  // dist/useCases/ListMySpaces.js
767
1073
  var require_ListMySpaces = __commonJS({
768
1074
  "dist/useCases/ListMySpaces.js"(exports, module) {
769
- module.exports = function ListMySpaces(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1075
+ module.exports = /* @__PURE__ */ __name(function ListMySpaces(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
770
1076
  if (!requestData)
771
1077
  requestData = {};
772
1078
  const pathParams = null;
@@ -797,14 +1103,14 @@ var require_ListMySpaces = __commonJS({
797
1103
  if (headers)
798
1104
  config.headers = headers;
799
1105
  return this._http.request(config);
800
- };
1106
+ }, "ListMySpaces");
801
1107
  }
802
1108
  });
803
1109
 
804
1110
  // dist/useCases/ListRoomsInSpace.js
805
1111
  var require_ListRoomsInSpace = __commonJS({
806
1112
  "dist/useCases/ListRoomsInSpace.js"(exports, module) {
807
- module.exports = function ListRoomsInSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1113
+ module.exports = /* @__PURE__ */ __name(function ListRoomsInSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
808
1114
  if (!requestData)
809
1115
  requestData = {};
810
1116
  const pathParams = [":id"];
@@ -835,14 +1141,14 @@ var require_ListRoomsInSpace = __commonJS({
835
1141
  if (headers)
836
1142
  config.headers = headers;
837
1143
  return this._http.request(config);
838
- };
1144
+ }, "ListRoomsInSpace");
839
1145
  }
840
1146
  });
841
1147
 
842
1148
  // dist/useCases/CreateSpace.js
843
1149
  var require_CreateSpace = __commonJS({
844
1150
  "dist/useCases/CreateSpace.js"(exports, module) {
845
- module.exports = function CreateSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1151
+ module.exports = /* @__PURE__ */ __name(function CreateSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
846
1152
  if (!requestData)
847
1153
  requestData = {};
848
1154
  const pathParams = null;
@@ -873,14 +1179,14 @@ var require_CreateSpace = __commonJS({
873
1179
  if (headers)
874
1180
  config.headers = headers;
875
1181
  return this._http.request(config);
876
- };
1182
+ }, "CreateSpace");
877
1183
  }
878
1184
  });
879
1185
 
880
1186
  // dist/useCases/DescribeSpace.js
881
1187
  var require_DescribeSpace = __commonJS({
882
1188
  "dist/useCases/DescribeSpace.js"(exports, module) {
883
- module.exports = function DescribeSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1189
+ module.exports = /* @__PURE__ */ __name(function DescribeSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
884
1190
  if (!requestData)
885
1191
  requestData = {};
886
1192
  const pathParams = [":id"];
@@ -911,14 +1217,14 @@ var require_DescribeSpace = __commonJS({
911
1217
  if (headers)
912
1218
  config.headers = headers;
913
1219
  return this._http.request(config);
914
- };
1220
+ }, "DescribeSpace");
915
1221
  }
916
1222
  });
917
1223
 
918
1224
  // dist/useCases/DeleteSpace.js
919
1225
  var require_DeleteSpace = __commonJS({
920
1226
  "dist/useCases/DeleteSpace.js"(exports, module) {
921
- module.exports = function DeleteSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1227
+ module.exports = /* @__PURE__ */ __name(function DeleteSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
922
1228
  if (!requestData)
923
1229
  requestData = {};
924
1230
  const pathParams = [":id"];
@@ -949,14 +1255,14 @@ var require_DeleteSpace = __commonJS({
949
1255
  if (headers)
950
1256
  config.headers = headers;
951
1257
  return this._http.request(config);
952
- };
1258
+ }, "DeleteSpace");
953
1259
  }
954
1260
  });
955
1261
 
956
1262
  // dist/useCases/UpdateSpace.js
957
1263
  var require_UpdateSpace = __commonJS({
958
1264
  "dist/useCases/UpdateSpace.js"(exports, module) {
959
- module.exports = function UpdateSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1265
+ module.exports = /* @__PURE__ */ __name(function UpdateSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
960
1266
  if (!requestData)
961
1267
  requestData = {};
962
1268
  const pathParams = [":id"];
@@ -987,14 +1293,14 @@ var require_UpdateSpace = __commonJS({
987
1293
  if (headers)
988
1294
  config.headers = headers;
989
1295
  return this._http.request(config);
990
- };
1296
+ }, "UpdateSpace");
991
1297
  }
992
1298
  });
993
1299
 
994
1300
  // dist/useCases/CreateRoomInSpace.js
995
1301
  var require_CreateRoomInSpace = __commonJS({
996
1302
  "dist/useCases/CreateRoomInSpace.js"(exports, module) {
997
- module.exports = function CreateRoomInSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1303
+ module.exports = /* @__PURE__ */ __name(function CreateRoomInSpace(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
998
1304
  if (!requestData)
999
1305
  requestData = {};
1000
1306
  const pathParams = [":id"];
@@ -1025,14 +1331,14 @@ var require_CreateRoomInSpace = __commonJS({
1025
1331
  if (headers)
1026
1332
  config.headers = headers;
1027
1333
  return this._http.request(config);
1028
- };
1334
+ }, "CreateRoomInSpace");
1029
1335
  }
1030
1336
  });
1031
1337
 
1032
1338
  // dist/useCases/ListRooms.js
1033
1339
  var require_ListRooms = __commonJS({
1034
1340
  "dist/useCases/ListRooms.js"(exports, module) {
1035
- module.exports = function ListRooms(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1341
+ module.exports = /* @__PURE__ */ __name(function ListRooms(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1036
1342
  if (!requestData)
1037
1343
  requestData = {};
1038
1344
  const pathParams = null;
@@ -1063,14 +1369,14 @@ var require_ListRooms = __commonJS({
1063
1369
  if (headers)
1064
1370
  config.headers = headers;
1065
1371
  return this._http.request(config);
1066
- };
1372
+ }, "ListRooms");
1067
1373
  }
1068
1374
  });
1069
1375
 
1070
1376
  // dist/useCases/DescribeRoom.js
1071
1377
  var require_DescribeRoom = __commonJS({
1072
1378
  "dist/useCases/DescribeRoom.js"(exports, module) {
1073
- module.exports = function DescribeRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1379
+ module.exports = /* @__PURE__ */ __name(function DescribeRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1074
1380
  if (!requestData)
1075
1381
  requestData = {};
1076
1382
  const pathParams = [":id"];
@@ -1101,14 +1407,14 @@ var require_DescribeRoom = __commonJS({
1101
1407
  if (headers)
1102
1408
  config.headers = headers;
1103
1409
  return this._http.request(config);
1104
- };
1410
+ }, "DescribeRoom");
1105
1411
  }
1106
1412
  });
1107
1413
 
1108
1414
  // dist/useCases/CreateRoom.js
1109
1415
  var require_CreateRoom = __commonJS({
1110
1416
  "dist/useCases/CreateRoom.js"(exports, module) {
1111
- module.exports = function CreateRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1417
+ module.exports = /* @__PURE__ */ __name(function CreateRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1112
1418
  if (!requestData)
1113
1419
  requestData = {};
1114
1420
  const pathParams = null;
@@ -1139,14 +1445,14 @@ var require_CreateRoom = __commonJS({
1139
1445
  if (headers)
1140
1446
  config.headers = headers;
1141
1447
  return this._http.request(config);
1142
- };
1448
+ }, "CreateRoom");
1143
1449
  }
1144
1450
  });
1145
1451
 
1146
1452
  // dist/useCases/UpdateRoom.js
1147
1453
  var require_UpdateRoom = __commonJS({
1148
1454
  "dist/useCases/UpdateRoom.js"(exports, module) {
1149
- module.exports = function UpdateRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1455
+ module.exports = /* @__PURE__ */ __name(function UpdateRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1150
1456
  if (!requestData)
1151
1457
  requestData = {};
1152
1458
  const pathParams = [":id"];
@@ -1177,14 +1483,14 @@ var require_UpdateRoom = __commonJS({
1177
1483
  if (headers)
1178
1484
  config.headers = headers;
1179
1485
  return this._http.request(config);
1180
- };
1486
+ }, "UpdateRoom");
1181
1487
  }
1182
1488
  });
1183
1489
 
1184
1490
  // dist/useCases/DeleteRoom.js
1185
1491
  var require_DeleteRoom = __commonJS({
1186
1492
  "dist/useCases/DeleteRoom.js"(exports, module) {
1187
- module.exports = function DeleteRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1493
+ module.exports = /* @__PURE__ */ __name(function DeleteRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1188
1494
  if (!requestData)
1189
1495
  requestData = {};
1190
1496
  const pathParams = [":id"];
@@ -1215,14 +1521,14 @@ var require_DeleteRoom = __commonJS({
1215
1521
  if (headers)
1216
1522
  config.headers = headers;
1217
1523
  return this._http.request(config);
1218
- };
1524
+ }, "DeleteRoom");
1219
1525
  }
1220
1526
  });
1221
1527
 
1222
1528
  // dist/useCases/CreateAlarm.js
1223
1529
  var require_CreateAlarm = __commonJS({
1224
1530
  "dist/useCases/CreateAlarm.js"(exports, module) {
1225
- module.exports = function CreateAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1531
+ module.exports = /* @__PURE__ */ __name(function CreateAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1226
1532
  if (!requestData)
1227
1533
  requestData = {};
1228
1534
  const pathParams = [":roomId"];
@@ -1253,14 +1559,14 @@ var require_CreateAlarm = __commonJS({
1253
1559
  if (headers)
1254
1560
  config.headers = headers;
1255
1561
  return this._http.request(config);
1256
- };
1562
+ }, "CreateAlarm");
1257
1563
  }
1258
1564
  });
1259
1565
 
1260
1566
  // dist/useCases/ListAlarms.js
1261
1567
  var require_ListAlarms = __commonJS({
1262
1568
  "dist/useCases/ListAlarms.js"(exports, module) {
1263
- module.exports = function ListAlarms(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1569
+ module.exports = /* @__PURE__ */ __name(function ListAlarms(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1264
1570
  if (!requestData)
1265
1571
  requestData = {};
1266
1572
  const pathParams = [":roomId"];
@@ -1291,14 +1597,14 @@ var require_ListAlarms = __commonJS({
1291
1597
  if (headers)
1292
1598
  config.headers = headers;
1293
1599
  return this._http.request(config);
1294
- };
1600
+ }, "ListAlarms");
1295
1601
  }
1296
1602
  });
1297
1603
 
1298
1604
  // dist/useCases/UpdateAlarm.js
1299
1605
  var require_UpdateAlarm = __commonJS({
1300
1606
  "dist/useCases/UpdateAlarm.js"(exports, module) {
1301
- module.exports = function UpdateAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1607
+ module.exports = /* @__PURE__ */ __name(function UpdateAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1302
1608
  if (!requestData)
1303
1609
  requestData = {};
1304
1610
  const pathParams = [":roomId", ":id"];
@@ -1329,14 +1635,14 @@ var require_UpdateAlarm = __commonJS({
1329
1635
  if (headers)
1330
1636
  config.headers = headers;
1331
1637
  return this._http.request(config);
1332
- };
1638
+ }, "UpdateAlarm");
1333
1639
  }
1334
1640
  });
1335
1641
 
1336
1642
  // dist/useCases/DeleteAlarm.js
1337
1643
  var require_DeleteAlarm = __commonJS({
1338
1644
  "dist/useCases/DeleteAlarm.js"(exports, module) {
1339
- module.exports = function DeleteAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1645
+ module.exports = /* @__PURE__ */ __name(function DeleteAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1340
1646
  if (!requestData)
1341
1647
  requestData = {};
1342
1648
  const pathParams = [":roomId", ":id"];
@@ -1367,14 +1673,14 @@ var require_DeleteAlarm = __commonJS({
1367
1673
  if (headers)
1368
1674
  config.headers = headers;
1369
1675
  return this._http.request(config);
1370
- };
1676
+ }, "DeleteAlarm");
1371
1677
  }
1372
1678
  });
1373
1679
 
1374
1680
  // dist/useCases/DescribeAlarm.js
1375
1681
  var require_DescribeAlarm = __commonJS({
1376
1682
  "dist/useCases/DescribeAlarm.js"(exports, module) {
1377
- module.exports = function DescribeAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1683
+ module.exports = /* @__PURE__ */ __name(function DescribeAlarm(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1378
1684
  if (!requestData)
1379
1685
  requestData = {};
1380
1686
  const pathParams = [":roomId", ":id"];
@@ -1405,14 +1711,14 @@ var require_DescribeAlarm = __commonJS({
1405
1711
  if (headers)
1406
1712
  config.headers = headers;
1407
1713
  return this._http.request(config);
1408
- };
1714
+ }, "DescribeAlarm");
1409
1715
  }
1410
1716
  });
1411
1717
 
1412
1718
  // dist/useCases/SetLock.js
1413
1719
  var require_SetLock = __commonJS({
1414
1720
  "dist/useCases/SetLock.js"(exports, module) {
1415
- module.exports = function SetLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1721
+ module.exports = /* @__PURE__ */ __name(function SetLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1416
1722
  if (!requestData)
1417
1723
  requestData = {};
1418
1724
  const pathParams = [":roomId", ":id"];
@@ -1443,14 +1749,14 @@ var require_SetLock = __commonJS({
1443
1749
  if (headers)
1444
1750
  config.headers = headers;
1445
1751
  return this._http.request(config);
1446
- };
1752
+ }, "SetLock");
1447
1753
  }
1448
1754
  });
1449
1755
 
1450
1756
  // dist/useCases/CreateCamera.js
1451
1757
  var require_CreateCamera = __commonJS({
1452
1758
  "dist/useCases/CreateCamera.js"(exports, module) {
1453
- module.exports = function CreateCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1759
+ module.exports = /* @__PURE__ */ __name(function CreateCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1454
1760
  if (!requestData)
1455
1761
  requestData = {};
1456
1762
  const pathParams = [":roomId"];
@@ -1481,14 +1787,14 @@ var require_CreateCamera = __commonJS({
1481
1787
  if (headers)
1482
1788
  config.headers = headers;
1483
1789
  return this._http.request(config);
1484
- };
1790
+ }, "CreateCamera");
1485
1791
  }
1486
1792
  });
1487
1793
 
1488
1794
  // dist/useCases/ListCameras.js
1489
1795
  var require_ListCameras = __commonJS({
1490
1796
  "dist/useCases/ListCameras.js"(exports, module) {
1491
- module.exports = function ListCameras(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1797
+ module.exports = /* @__PURE__ */ __name(function ListCameras(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1492
1798
  if (!requestData)
1493
1799
  requestData = {};
1494
1800
  const pathParams = [":roomId"];
@@ -1519,14 +1825,14 @@ var require_ListCameras = __commonJS({
1519
1825
  if (headers)
1520
1826
  config.headers = headers;
1521
1827
  return this._http.request(config);
1522
- };
1828
+ }, "ListCameras");
1523
1829
  }
1524
1830
  });
1525
1831
 
1526
1832
  // dist/useCases/UpdateCamera.js
1527
1833
  var require_UpdateCamera = __commonJS({
1528
1834
  "dist/useCases/UpdateCamera.js"(exports, module) {
1529
- module.exports = function UpdateCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1835
+ module.exports = /* @__PURE__ */ __name(function UpdateCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1530
1836
  if (!requestData)
1531
1837
  requestData = {};
1532
1838
  const pathParams = [":roomId", ":id"];
@@ -1557,14 +1863,14 @@ var require_UpdateCamera = __commonJS({
1557
1863
  if (headers)
1558
1864
  config.headers = headers;
1559
1865
  return this._http.request(config);
1560
- };
1866
+ }, "UpdateCamera");
1561
1867
  }
1562
1868
  });
1563
1869
 
1564
1870
  // dist/useCases/DeleteCamera.js
1565
1871
  var require_DeleteCamera = __commonJS({
1566
1872
  "dist/useCases/DeleteCamera.js"(exports, module) {
1567
- module.exports = function DeleteCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1873
+ module.exports = /* @__PURE__ */ __name(function DeleteCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1568
1874
  if (!requestData)
1569
1875
  requestData = {};
1570
1876
  const pathParams = [":roomId", ":id"];
@@ -1595,14 +1901,14 @@ var require_DeleteCamera = __commonJS({
1595
1901
  if (headers)
1596
1902
  config.headers = headers;
1597
1903
  return this._http.request(config);
1598
- };
1904
+ }, "DeleteCamera");
1599
1905
  }
1600
1906
  });
1601
1907
 
1602
1908
  // dist/useCases/DescribeCamera.js
1603
1909
  var require_DescribeCamera = __commonJS({
1604
1910
  "dist/useCases/DescribeCamera.js"(exports, module) {
1605
- module.exports = function DescribeCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1911
+ module.exports = /* @__PURE__ */ __name(function DescribeCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1606
1912
  if (!requestData)
1607
1913
  requestData = {};
1608
1914
  const pathParams = [":roomId", ":id"];
@@ -1633,14 +1939,14 @@ var require_DescribeCamera = __commonJS({
1633
1939
  if (headers)
1634
1940
  config.headers = headers;
1635
1941
  return this._http.request(config);
1636
- };
1942
+ }, "DescribeCamera");
1637
1943
  }
1638
1944
  });
1639
1945
 
1640
1946
  // dist/useCases/SetCamera.js
1641
1947
  var require_SetCamera = __commonJS({
1642
1948
  "dist/useCases/SetCamera.js"(exports, module) {
1643
- module.exports = function SetCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1949
+ module.exports = /* @__PURE__ */ __name(function SetCamera(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1644
1950
  if (!requestData)
1645
1951
  requestData = {};
1646
1952
  const pathParams = [":roomId", ":id"];
@@ -1671,14 +1977,14 @@ var require_SetCamera = __commonJS({
1671
1977
  if (headers)
1672
1978
  config.headers = headers;
1673
1979
  return this._http.request(config);
1674
- };
1980
+ }, "SetCamera");
1675
1981
  }
1676
1982
  });
1677
1983
 
1678
1984
  // dist/useCases/CreateCourtesy.js
1679
1985
  var require_CreateCourtesy = __commonJS({
1680
1986
  "dist/useCases/CreateCourtesy.js"(exports, module) {
1681
- module.exports = function CreateCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1987
+ module.exports = /* @__PURE__ */ __name(function CreateCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1682
1988
  if (!requestData)
1683
1989
  requestData = {};
1684
1990
  const pathParams = [":roomId"];
@@ -1709,14 +2015,14 @@ var require_CreateCourtesy = __commonJS({
1709
2015
  if (headers)
1710
2016
  config.headers = headers;
1711
2017
  return this._http.request(config);
1712
- };
2018
+ }, "CreateCourtesy");
1713
2019
  }
1714
2020
  });
1715
2021
 
1716
2022
  // dist/useCases/ListCourtesy.js
1717
2023
  var require_ListCourtesy = __commonJS({
1718
2024
  "dist/useCases/ListCourtesy.js"(exports, module) {
1719
- module.exports = function ListCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2025
+ module.exports = /* @__PURE__ */ __name(function ListCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1720
2026
  if (!requestData)
1721
2027
  requestData = {};
1722
2028
  const pathParams = [":roomId"];
@@ -1747,14 +2053,14 @@ var require_ListCourtesy = __commonJS({
1747
2053
  if (headers)
1748
2054
  config.headers = headers;
1749
2055
  return this._http.request(config);
1750
- };
2056
+ }, "ListCourtesy");
1751
2057
  }
1752
2058
  });
1753
2059
 
1754
2060
  // dist/useCases/UpdateCourtesy.js
1755
2061
  var require_UpdateCourtesy = __commonJS({
1756
2062
  "dist/useCases/UpdateCourtesy.js"(exports, module) {
1757
- module.exports = function UpdateCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2063
+ module.exports = /* @__PURE__ */ __name(function UpdateCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1758
2064
  if (!requestData)
1759
2065
  requestData = {};
1760
2066
  const pathParams = [":roomId", ":id"];
@@ -1785,14 +2091,14 @@ var require_UpdateCourtesy = __commonJS({
1785
2091
  if (headers)
1786
2092
  config.headers = headers;
1787
2093
  return this._http.request(config);
1788
- };
2094
+ }, "UpdateCourtesy");
1789
2095
  }
1790
2096
  });
1791
2097
 
1792
2098
  // dist/useCases/DeleteCourtesy.js
1793
2099
  var require_DeleteCourtesy = __commonJS({
1794
2100
  "dist/useCases/DeleteCourtesy.js"(exports, module) {
1795
- module.exports = function DeleteCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2101
+ module.exports = /* @__PURE__ */ __name(function DeleteCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1796
2102
  if (!requestData)
1797
2103
  requestData = {};
1798
2104
  const pathParams = [":roomId", ":id"];
@@ -1823,14 +2129,14 @@ var require_DeleteCourtesy = __commonJS({
1823
2129
  if (headers)
1824
2130
  config.headers = headers;
1825
2131
  return this._http.request(config);
1826
- };
2132
+ }, "DeleteCourtesy");
1827
2133
  }
1828
2134
  });
1829
2135
 
1830
2136
  // dist/useCases/DescribeCourtesy.js
1831
2137
  var require_DescribeCourtesy = __commonJS({
1832
2138
  "dist/useCases/DescribeCourtesy.js"(exports, module) {
1833
- module.exports = function DescribeCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2139
+ module.exports = /* @__PURE__ */ __name(function DescribeCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1834
2140
  if (!requestData)
1835
2141
  requestData = {};
1836
2142
  const pathParams = [":roomId", ":id"];
@@ -1861,14 +2167,14 @@ var require_DescribeCourtesy = __commonJS({
1861
2167
  if (headers)
1862
2168
  config.headers = headers;
1863
2169
  return this._http.request(config);
1864
- };
2170
+ }, "DescribeCourtesy");
1865
2171
  }
1866
2172
  });
1867
2173
 
1868
2174
  // dist/useCases/SetCourtesy.js
1869
2175
  var require_SetCourtesy = __commonJS({
1870
2176
  "dist/useCases/SetCourtesy.js"(exports, module) {
1871
- module.exports = function SetCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2177
+ module.exports = /* @__PURE__ */ __name(function SetCourtesy(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1872
2178
  if (!requestData)
1873
2179
  requestData = {};
1874
2180
  const pathParams = [":roomId", ":id"];
@@ -1899,14 +2205,14 @@ var require_SetCourtesy = __commonJS({
1899
2205
  if (headers)
1900
2206
  config.headers = headers;
1901
2207
  return this._http.request(config);
1902
- };
2208
+ }, "SetCourtesy");
1903
2209
  }
1904
2210
  });
1905
2211
 
1906
2212
  // dist/useCases/CreateDimmer.js
1907
2213
  var require_CreateDimmer = __commonJS({
1908
2214
  "dist/useCases/CreateDimmer.js"(exports, module) {
1909
- module.exports = function CreateDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2215
+ module.exports = /* @__PURE__ */ __name(function CreateDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1910
2216
  if (!requestData)
1911
2217
  requestData = {};
1912
2218
  const pathParams = [":roomId"];
@@ -1937,14 +2243,14 @@ var require_CreateDimmer = __commonJS({
1937
2243
  if (headers)
1938
2244
  config.headers = headers;
1939
2245
  return this._http.request(config);
1940
- };
2246
+ }, "CreateDimmer");
1941
2247
  }
1942
2248
  });
1943
2249
 
1944
2250
  // dist/useCases/ListDimmers.js
1945
2251
  var require_ListDimmers = __commonJS({
1946
2252
  "dist/useCases/ListDimmers.js"(exports, module) {
1947
- module.exports = function ListDimmers(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2253
+ module.exports = /* @__PURE__ */ __name(function ListDimmers(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1948
2254
  if (!requestData)
1949
2255
  requestData = {};
1950
2256
  const pathParams = [":roomId"];
@@ -1975,14 +2281,14 @@ var require_ListDimmers = __commonJS({
1975
2281
  if (headers)
1976
2282
  config.headers = headers;
1977
2283
  return this._http.request(config);
1978
- };
2284
+ }, "ListDimmers");
1979
2285
  }
1980
2286
  });
1981
2287
 
1982
2288
  // dist/useCases/UpdateDimmer.js
1983
2289
  var require_UpdateDimmer = __commonJS({
1984
2290
  "dist/useCases/UpdateDimmer.js"(exports, module) {
1985
- module.exports = function UpdateDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2291
+ module.exports = /* @__PURE__ */ __name(function UpdateDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
1986
2292
  if (!requestData)
1987
2293
  requestData = {};
1988
2294
  const pathParams = [":roomId", ":id"];
@@ -2013,14 +2319,14 @@ var require_UpdateDimmer = __commonJS({
2013
2319
  if (headers)
2014
2320
  config.headers = headers;
2015
2321
  return this._http.request(config);
2016
- };
2322
+ }, "UpdateDimmer");
2017
2323
  }
2018
2324
  });
2019
2325
 
2020
2326
  // dist/useCases/DeleteDimmer.js
2021
2327
  var require_DeleteDimmer = __commonJS({
2022
2328
  "dist/useCases/DeleteDimmer.js"(exports, module) {
2023
- module.exports = function DeleteDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2329
+ module.exports = /* @__PURE__ */ __name(function DeleteDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2024
2330
  if (!requestData)
2025
2331
  requestData = {};
2026
2332
  const pathParams = [":roomId", ":id"];
@@ -2051,14 +2357,14 @@ var require_DeleteDimmer = __commonJS({
2051
2357
  if (headers)
2052
2358
  config.headers = headers;
2053
2359
  return this._http.request(config);
2054
- };
2360
+ }, "DeleteDimmer");
2055
2361
  }
2056
2362
  });
2057
2363
 
2058
2364
  // dist/useCases/DescribeDimmer.js
2059
2365
  var require_DescribeDimmer = __commonJS({
2060
2366
  "dist/useCases/DescribeDimmer.js"(exports, module) {
2061
- module.exports = function DescribeDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2367
+ module.exports = /* @__PURE__ */ __name(function DescribeDimmer(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2062
2368
  if (!requestData)
2063
2369
  requestData = {};
2064
2370
  const pathParams = [":roomId", ":id"];
@@ -2089,14 +2395,14 @@ var require_DescribeDimmer = __commonJS({
2089
2395
  if (headers)
2090
2396
  config.headers = headers;
2091
2397
  return this._http.request(config);
2092
- };
2398
+ }, "DescribeDimmer");
2093
2399
  }
2094
2400
  });
2095
2401
 
2096
2402
  // dist/useCases/CreateLock.js
2097
2403
  var require_CreateLock = __commonJS({
2098
2404
  "dist/useCases/CreateLock.js"(exports, module) {
2099
- module.exports = function CreateLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2405
+ module.exports = /* @__PURE__ */ __name(function CreateLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2100
2406
  if (!requestData)
2101
2407
  requestData = {};
2102
2408
  const pathParams = [":roomId"];
@@ -2127,14 +2433,14 @@ var require_CreateLock = __commonJS({
2127
2433
  if (headers)
2128
2434
  config.headers = headers;
2129
2435
  return this._http.request(config);
2130
- };
2436
+ }, "CreateLock");
2131
2437
  }
2132
2438
  });
2133
2439
 
2134
2440
  // dist/useCases/ListLocks.js
2135
2441
  var require_ListLocks = __commonJS({
2136
2442
  "dist/useCases/ListLocks.js"(exports, module) {
2137
- module.exports = function ListLocks(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2443
+ module.exports = /* @__PURE__ */ __name(function ListLocks(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2138
2444
  if (!requestData)
2139
2445
  requestData = {};
2140
2446
  const pathParams = [":roomId"];
@@ -2165,14 +2471,14 @@ var require_ListLocks = __commonJS({
2165
2471
  if (headers)
2166
2472
  config.headers = headers;
2167
2473
  return this._http.request(config);
2168
- };
2474
+ }, "ListLocks");
2169
2475
  }
2170
2476
  });
2171
2477
 
2172
2478
  // dist/useCases/UpdateLock.js
2173
2479
  var require_UpdateLock = __commonJS({
2174
2480
  "dist/useCases/UpdateLock.js"(exports, module) {
2175
- module.exports = function UpdateLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2481
+ module.exports = /* @__PURE__ */ __name(function UpdateLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2176
2482
  if (!requestData)
2177
2483
  requestData = {};
2178
2484
  const pathParams = [":roomId", ":id"];
@@ -2203,14 +2509,14 @@ var require_UpdateLock = __commonJS({
2203
2509
  if (headers)
2204
2510
  config.headers = headers;
2205
2511
  return this._http.request(config);
2206
- };
2512
+ }, "UpdateLock");
2207
2513
  }
2208
2514
  });
2209
2515
 
2210
2516
  // dist/useCases/DeleteLock.js
2211
2517
  var require_DeleteLock = __commonJS({
2212
2518
  "dist/useCases/DeleteLock.js"(exports, module) {
2213
- module.exports = function DeleteLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2519
+ module.exports = /* @__PURE__ */ __name(function DeleteLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2214
2520
  if (!requestData)
2215
2521
  requestData = {};
2216
2522
  const pathParams = [":roomId", ":id"];
@@ -2241,14 +2547,14 @@ var require_DeleteLock = __commonJS({
2241
2547
  if (headers)
2242
2548
  config.headers = headers;
2243
2549
  return this._http.request(config);
2244
- };
2550
+ }, "DeleteLock");
2245
2551
  }
2246
2552
  });
2247
2553
 
2248
2554
  // dist/useCases/DescribeLock.js
2249
2555
  var require_DescribeLock = __commonJS({
2250
2556
  "dist/useCases/DescribeLock.js"(exports, module) {
2251
- module.exports = function DescribeLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2557
+ module.exports = /* @__PURE__ */ __name(function DescribeLock(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2252
2558
  if (!requestData)
2253
2559
  requestData = {};
2254
2560
  const pathParams = [":roomId", ":id"];
@@ -2279,14 +2585,14 @@ var require_DescribeLock = __commonJS({
2279
2585
  if (headers)
2280
2586
  config.headers = headers;
2281
2587
  return this._http.request(config);
2282
- };
2588
+ }, "DescribeLock");
2283
2589
  }
2284
2590
  });
2285
2591
 
2286
2592
  // dist/useCases/CreateSwitch.js
2287
2593
  var require_CreateSwitch = __commonJS({
2288
2594
  "dist/useCases/CreateSwitch.js"(exports, module) {
2289
- module.exports = function CreateSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2595
+ module.exports = /* @__PURE__ */ __name(function CreateSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2290
2596
  if (!requestData)
2291
2597
  requestData = {};
2292
2598
  const pathParams = [":roomId"];
@@ -2317,14 +2623,14 @@ var require_CreateSwitch = __commonJS({
2317
2623
  if (headers)
2318
2624
  config.headers = headers;
2319
2625
  return this._http.request(config);
2320
- };
2626
+ }, "CreateSwitch");
2321
2627
  }
2322
2628
  });
2323
2629
 
2324
2630
  // dist/useCases/ListSwitches.js
2325
2631
  var require_ListSwitches = __commonJS({
2326
2632
  "dist/useCases/ListSwitches.js"(exports, module) {
2327
- module.exports = function ListSwitches(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2633
+ module.exports = /* @__PURE__ */ __name(function ListSwitches(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2328
2634
  if (!requestData)
2329
2635
  requestData = {};
2330
2636
  const pathParams = [":roomId"];
@@ -2355,14 +2661,14 @@ var require_ListSwitches = __commonJS({
2355
2661
  if (headers)
2356
2662
  config.headers = headers;
2357
2663
  return this._http.request(config);
2358
- };
2664
+ }, "ListSwitches");
2359
2665
  }
2360
2666
  });
2361
2667
 
2362
2668
  // dist/useCases/UpdateSwitch.js
2363
2669
  var require_UpdateSwitch = __commonJS({
2364
2670
  "dist/useCases/UpdateSwitch.js"(exports, module) {
2365
- module.exports = function UpdateSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2671
+ module.exports = /* @__PURE__ */ __name(function UpdateSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2366
2672
  if (!requestData)
2367
2673
  requestData = {};
2368
2674
  const pathParams = [":roomId", ":id"];
@@ -2393,14 +2699,14 @@ var require_UpdateSwitch = __commonJS({
2393
2699
  if (headers)
2394
2700
  config.headers = headers;
2395
2701
  return this._http.request(config);
2396
- };
2702
+ }, "UpdateSwitch");
2397
2703
  }
2398
2704
  });
2399
2705
 
2400
2706
  // dist/useCases/DeleteSwitch.js
2401
2707
  var require_DeleteSwitch = __commonJS({
2402
2708
  "dist/useCases/DeleteSwitch.js"(exports, module) {
2403
- module.exports = function DeleteSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2709
+ module.exports = /* @__PURE__ */ __name(function DeleteSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2404
2710
  if (!requestData)
2405
2711
  requestData = {};
2406
2712
  const pathParams = [":roomId", ":id"];
@@ -2431,14 +2737,14 @@ var require_DeleteSwitch = __commonJS({
2431
2737
  if (headers)
2432
2738
  config.headers = headers;
2433
2739
  return this._http.request(config);
2434
- };
2740
+ }, "DeleteSwitch");
2435
2741
  }
2436
2742
  });
2437
2743
 
2438
2744
  // dist/useCases/DescribeSwitch.js
2439
2745
  var require_DescribeSwitch = __commonJS({
2440
2746
  "dist/useCases/DescribeSwitch.js"(exports, module) {
2441
- module.exports = function DescribeSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2747
+ module.exports = /* @__PURE__ */ __name(function DescribeSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2442
2748
  if (!requestData)
2443
2749
  requestData = {};
2444
2750
  const pathParams = [":roomId", ":id"];
@@ -2469,14 +2775,14 @@ var require_DescribeSwitch = __commonJS({
2469
2775
  if (headers)
2470
2776
  config.headers = headers;
2471
2777
  return this._http.request(config);
2472
- };
2778
+ }, "DescribeSwitch");
2473
2779
  }
2474
2780
  });
2475
2781
 
2476
2782
  // dist/useCases/SetSwitch.js
2477
2783
  var require_SetSwitch = __commonJS({
2478
2784
  "dist/useCases/SetSwitch.js"(exports, module) {
2479
- module.exports = function SetSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2785
+ module.exports = /* @__PURE__ */ __name(function SetSwitch(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2480
2786
  if (!requestData)
2481
2787
  requestData = {};
2482
2788
  const pathParams = [":roomId", ":id"];
@@ -2507,14 +2813,14 @@ var require_SetSwitch = __commonJS({
2507
2813
  if (headers)
2508
2814
  config.headers = headers;
2509
2815
  return this._http.request(config);
2510
- };
2816
+ }, "SetSwitch");
2511
2817
  }
2512
2818
  });
2513
2819
 
2514
2820
  // dist/useCases/CreateSource.js
2515
2821
  var require_CreateSource = __commonJS({
2516
2822
  "dist/useCases/CreateSource.js"(exports, module) {
2517
- module.exports = function CreateSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2823
+ module.exports = /* @__PURE__ */ __name(function CreateSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2518
2824
  if (!requestData)
2519
2825
  requestData = {};
2520
2826
  const pathParams = [":roomId"];
@@ -2545,14 +2851,14 @@ var require_CreateSource = __commonJS({
2545
2851
  if (headers)
2546
2852
  config.headers = headers;
2547
2853
  return this._http.request(config);
2548
- };
2854
+ }, "CreateSource");
2549
2855
  }
2550
2856
  });
2551
2857
 
2552
2858
  // dist/useCases/ListSources.js
2553
2859
  var require_ListSources = __commonJS({
2554
2860
  "dist/useCases/ListSources.js"(exports, module) {
2555
- module.exports = function ListSources(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2861
+ module.exports = /* @__PURE__ */ __name(function ListSources(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2556
2862
  if (!requestData)
2557
2863
  requestData = {};
2558
2864
  const pathParams = [":roomId"];
@@ -2583,14 +2889,14 @@ var require_ListSources = __commonJS({
2583
2889
  if (headers)
2584
2890
  config.headers = headers;
2585
2891
  return this._http.request(config);
2586
- };
2892
+ }, "ListSources");
2587
2893
  }
2588
2894
  });
2589
2895
 
2590
2896
  // dist/useCases/UpdateSource.js
2591
2897
  var require_UpdateSource = __commonJS({
2592
2898
  "dist/useCases/UpdateSource.js"(exports, module) {
2593
- module.exports = function UpdateSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2899
+ module.exports = /* @__PURE__ */ __name(function UpdateSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2594
2900
  if (!requestData)
2595
2901
  requestData = {};
2596
2902
  const pathParams = [":roomId", ":id"];
@@ -2621,14 +2927,14 @@ var require_UpdateSource = __commonJS({
2621
2927
  if (headers)
2622
2928
  config.headers = headers;
2623
2929
  return this._http.request(config);
2624
- };
2930
+ }, "UpdateSource");
2625
2931
  }
2626
2932
  });
2627
2933
 
2628
2934
  // dist/useCases/DeleteSource.js
2629
2935
  var require_DeleteSource = __commonJS({
2630
2936
  "dist/useCases/DeleteSource.js"(exports, module) {
2631
- module.exports = function DeleteSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2937
+ module.exports = /* @__PURE__ */ __name(function DeleteSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2632
2938
  if (!requestData)
2633
2939
  requestData = {};
2634
2940
  const pathParams = [":roomId", ":id"];
@@ -2659,14 +2965,14 @@ var require_DeleteSource = __commonJS({
2659
2965
  if (headers)
2660
2966
  config.headers = headers;
2661
2967
  return this._http.request(config);
2662
- };
2968
+ }, "DeleteSource");
2663
2969
  }
2664
2970
  });
2665
2971
 
2666
2972
  // dist/useCases/DescribeSource.js
2667
2973
  var require_DescribeSource = __commonJS({
2668
2974
  "dist/useCases/DescribeSource.js"(exports, module) {
2669
- module.exports = function DescribeSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2975
+ module.exports = /* @__PURE__ */ __name(function DescribeSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2670
2976
  if (!requestData)
2671
2977
  requestData = {};
2672
2978
  const pathParams = [":roomId", ":id"];
@@ -2697,14 +3003,14 @@ var require_DescribeSource = __commonJS({
2697
3003
  if (headers)
2698
3004
  config.headers = headers;
2699
3005
  return this._http.request(config);
2700
- };
3006
+ }, "DescribeSource");
2701
3007
  }
2702
3008
  });
2703
3009
 
2704
3010
  // dist/useCases/SetSource.js
2705
3011
  var require_SetSource = __commonJS({
2706
3012
  "dist/useCases/SetSource.js"(exports, module) {
2707
- module.exports = function SetSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3013
+ module.exports = /* @__PURE__ */ __name(function SetSource(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2708
3014
  if (!requestData)
2709
3015
  requestData = {};
2710
3016
  const pathParams = [":roomId", ":id"];
@@ -2735,14 +3041,14 @@ var require_SetSource = __commonJS({
2735
3041
  if (headers)
2736
3042
  config.headers = headers;
2737
3043
  return this._http.request(config);
2738
- };
3044
+ }, "SetSource");
2739
3045
  }
2740
3046
  });
2741
3047
 
2742
3048
  // dist/useCases/CreateThermostat.js
2743
3049
  var require_CreateThermostat = __commonJS({
2744
3050
  "dist/useCases/CreateThermostat.js"(exports, module) {
2745
- module.exports = function CreateThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3051
+ module.exports = /* @__PURE__ */ __name(function CreateThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2746
3052
  if (!requestData)
2747
3053
  requestData = {};
2748
3054
  const pathParams = [":roomId"];
@@ -2773,14 +3079,14 @@ var require_CreateThermostat = __commonJS({
2773
3079
  if (headers)
2774
3080
  config.headers = headers;
2775
3081
  return this._http.request(config);
2776
- };
3082
+ }, "CreateThermostat");
2777
3083
  }
2778
3084
  });
2779
3085
 
2780
3086
  // dist/useCases/ListThermostats.js
2781
3087
  var require_ListThermostats = __commonJS({
2782
3088
  "dist/useCases/ListThermostats.js"(exports, module) {
2783
- module.exports = function ListThermostats(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3089
+ module.exports = /* @__PURE__ */ __name(function ListThermostats(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2784
3090
  if (!requestData)
2785
3091
  requestData = {};
2786
3092
  const pathParams = [":roomId"];
@@ -2811,14 +3117,14 @@ var require_ListThermostats = __commonJS({
2811
3117
  if (headers)
2812
3118
  config.headers = headers;
2813
3119
  return this._http.request(config);
2814
- };
3120
+ }, "ListThermostats");
2815
3121
  }
2816
3122
  });
2817
3123
 
2818
3124
  // dist/useCases/UpdateThermostat.js
2819
3125
  var require_UpdateThermostat = __commonJS({
2820
3126
  "dist/useCases/UpdateThermostat.js"(exports, module) {
2821
- module.exports = function UpdateThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3127
+ module.exports = /* @__PURE__ */ __name(function UpdateThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2822
3128
  if (!requestData)
2823
3129
  requestData = {};
2824
3130
  const pathParams = [":roomId", ":id"];
@@ -2849,14 +3155,14 @@ var require_UpdateThermostat = __commonJS({
2849
3155
  if (headers)
2850
3156
  config.headers = headers;
2851
3157
  return this._http.request(config);
2852
- };
3158
+ }, "UpdateThermostat");
2853
3159
  }
2854
3160
  });
2855
3161
 
2856
3162
  // dist/useCases/DeleteThermostat.js
2857
3163
  var require_DeleteThermostat = __commonJS({
2858
3164
  "dist/useCases/DeleteThermostat.js"(exports, module) {
2859
- module.exports = function DeleteThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3165
+ module.exports = /* @__PURE__ */ __name(function DeleteThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2860
3166
  if (!requestData)
2861
3167
  requestData = {};
2862
3168
  const pathParams = [":roomId", ":id"];
@@ -2887,14 +3193,14 @@ var require_DeleteThermostat = __commonJS({
2887
3193
  if (headers)
2888
3194
  config.headers = headers;
2889
3195
  return this._http.request(config);
2890
- };
3196
+ }, "DeleteThermostat");
2891
3197
  }
2892
3198
  });
2893
3199
 
2894
3200
  // dist/useCases/DescribeThermostat.js
2895
3201
  var require_DescribeThermostat = __commonJS({
2896
3202
  "dist/useCases/DescribeThermostat.js"(exports, module) {
2897
- module.exports = function DescribeThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3203
+ module.exports = /* @__PURE__ */ __name(function DescribeThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2898
3204
  if (!requestData)
2899
3205
  requestData = {};
2900
3206
  const pathParams = [":roomId", ":id"];
@@ -2925,14 +3231,14 @@ var require_DescribeThermostat = __commonJS({
2925
3231
  if (headers)
2926
3232
  config.headers = headers;
2927
3233
  return this._http.request(config);
2928
- };
3234
+ }, "DescribeThermostat");
2929
3235
  }
2930
3236
  });
2931
3237
 
2932
3238
  // dist/useCases/SetThermostat.js
2933
3239
  var require_SetThermostat = __commonJS({
2934
3240
  "dist/useCases/SetThermostat.js"(exports, module) {
2935
- module.exports = function SetThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3241
+ module.exports = /* @__PURE__ */ __name(function SetThermostat(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2936
3242
  if (!requestData)
2937
3243
  requestData = {};
2938
3244
  const pathParams = [":roomId", ":id"];
@@ -2963,14 +3269,14 @@ var require_SetThermostat = __commonJS({
2963
3269
  if (headers)
2964
3270
  config.headers = headers;
2965
3271
  return this._http.request(config);
2966
- };
3272
+ }, "SetThermostat");
2967
3273
  }
2968
3274
  });
2969
3275
 
2970
3276
  // dist/useCases/CreateWindowCovering.js
2971
3277
  var require_CreateWindowCovering = __commonJS({
2972
3278
  "dist/useCases/CreateWindowCovering.js"(exports, module) {
2973
- module.exports = function CreateWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3279
+ module.exports = /* @__PURE__ */ __name(function CreateWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
2974
3280
  if (!requestData)
2975
3281
  requestData = {};
2976
3282
  const pathParams = [":roomId"];
@@ -3001,14 +3307,14 @@ var require_CreateWindowCovering = __commonJS({
3001
3307
  if (headers)
3002
3308
  config.headers = headers;
3003
3309
  return this._http.request(config);
3004
- };
3310
+ }, "CreateWindowCovering");
3005
3311
  }
3006
3312
  });
3007
3313
 
3008
3314
  // dist/useCases/ListWindowCoverings.js
3009
3315
  var require_ListWindowCoverings = __commonJS({
3010
3316
  "dist/useCases/ListWindowCoverings.js"(exports, module) {
3011
- module.exports = function ListWindowCoverings(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3317
+ module.exports = /* @__PURE__ */ __name(function ListWindowCoverings(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3012
3318
  if (!requestData)
3013
3319
  requestData = {};
3014
3320
  const pathParams = [":roomId"];
@@ -3039,14 +3345,14 @@ var require_ListWindowCoverings = __commonJS({
3039
3345
  if (headers)
3040
3346
  config.headers = headers;
3041
3347
  return this._http.request(config);
3042
- };
3348
+ }, "ListWindowCoverings");
3043
3349
  }
3044
3350
  });
3045
3351
 
3046
3352
  // dist/useCases/UpdateWindowCovering.js
3047
3353
  var require_UpdateWindowCovering = __commonJS({
3048
3354
  "dist/useCases/UpdateWindowCovering.js"(exports, module) {
3049
- module.exports = function UpdateWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3355
+ module.exports = /* @__PURE__ */ __name(function UpdateWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3050
3356
  if (!requestData)
3051
3357
  requestData = {};
3052
3358
  const pathParams = [":roomId", ":id"];
@@ -3077,14 +3383,14 @@ var require_UpdateWindowCovering = __commonJS({
3077
3383
  if (headers)
3078
3384
  config.headers = headers;
3079
3385
  return this._http.request(config);
3080
- };
3386
+ }, "UpdateWindowCovering");
3081
3387
  }
3082
3388
  });
3083
3389
 
3084
3390
  // dist/useCases/DeleteWindowCovering.js
3085
3391
  var require_DeleteWindowCovering = __commonJS({
3086
3392
  "dist/useCases/DeleteWindowCovering.js"(exports, module) {
3087
- module.exports = function DeleteWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3393
+ module.exports = /* @__PURE__ */ __name(function DeleteWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3088
3394
  if (!requestData)
3089
3395
  requestData = {};
3090
3396
  const pathParams = [":roomId", ":id"];
@@ -3115,14 +3421,14 @@ var require_DeleteWindowCovering = __commonJS({
3115
3421
  if (headers)
3116
3422
  config.headers = headers;
3117
3423
  return this._http.request(config);
3118
- };
3424
+ }, "DeleteWindowCovering");
3119
3425
  }
3120
3426
  });
3121
3427
 
3122
3428
  // dist/useCases/DescribeWindowCovering.js
3123
3429
  var require_DescribeWindowCovering = __commonJS({
3124
3430
  "dist/useCases/DescribeWindowCovering.js"(exports, module) {
3125
- module.exports = function DescribeWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3431
+ module.exports = /* @__PURE__ */ __name(function DescribeWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3126
3432
  if (!requestData)
3127
3433
  requestData = {};
3128
3434
  const pathParams = [":roomId", ":id"];
@@ -3153,14 +3459,14 @@ var require_DescribeWindowCovering = __commonJS({
3153
3459
  if (headers)
3154
3460
  config.headers = headers;
3155
3461
  return this._http.request(config);
3156
- };
3462
+ }, "DescribeWindowCovering");
3157
3463
  }
3158
3464
  });
3159
3465
 
3160
3466
  // dist/useCases/SetWindowCovering.js
3161
3467
  var require_SetWindowCovering = __commonJS({
3162
3468
  "dist/useCases/SetWindowCovering.js"(exports, module) {
3163
- module.exports = function SetWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3469
+ module.exports = /* @__PURE__ */ __name(function SetWindowCovering(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3164
3470
  if (!requestData)
3165
3471
  requestData = {};
3166
3472
  const pathParams = [":roomId", ":id"];
@@ -3191,14 +3497,14 @@ var require_SetWindowCovering = __commonJS({
3191
3497
  if (headers)
3192
3498
  config.headers = headers;
3193
3499
  return this._http.request(config);
3194
- };
3500
+ }, "SetWindowCovering");
3195
3501
  }
3196
3502
  });
3197
3503
 
3198
3504
  // dist/useCases/AddScenesToRoom.js
3199
3505
  var require_AddScenesToRoom = __commonJS({
3200
3506
  "dist/useCases/AddScenesToRoom.js"(exports, module) {
3201
- module.exports = function AddScenesToRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3507
+ module.exports = /* @__PURE__ */ __name(function AddScenesToRoom(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3202
3508
  if (!requestData)
3203
3509
  requestData = {};
3204
3510
  const pathParams = [":id"];
@@ -3229,14 +3535,14 @@ var require_AddScenesToRoom = __commonJS({
3229
3535
  if (headers)
3230
3536
  config.headers = headers;
3231
3537
  return this._http.request(config);
3232
- };
3538
+ }, "AddScenesToRoom");
3233
3539
  }
3234
3540
  });
3235
3541
 
3236
3542
  // dist/useCases/AddDefaultScenesToRooms.js
3237
3543
  var require_AddDefaultScenesToRooms = __commonJS({
3238
3544
  "dist/useCases/AddDefaultScenesToRooms.js"(exports, module) {
3239
- module.exports = function AddDefaultScenesToRooms(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3545
+ module.exports = /* @__PURE__ */ __name(function AddDefaultScenesToRooms(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3240
3546
  if (!requestData)
3241
3547
  requestData = {};
3242
3548
  const pathParams = null;
@@ -3267,14 +3573,14 @@ var require_AddDefaultScenesToRooms = __commonJS({
3267
3573
  if (headers)
3268
3574
  config.headers = headers;
3269
3575
  return this._http.request(config);
3270
- };
3576
+ }, "AddDefaultScenesToRooms");
3271
3577
  }
3272
3578
  });
3273
3579
 
3274
3580
  // dist/useCases/CreateTicket.js
3275
3581
  var require_CreateTicket = __commonJS({
3276
3582
  "dist/useCases/CreateTicket.js"(exports, module) {
3277
- module.exports = function CreateTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3583
+ module.exports = /* @__PURE__ */ __name(function CreateTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3278
3584
  if (!requestData)
3279
3585
  requestData = {};
3280
3586
  const pathParams = null;
@@ -3305,14 +3611,14 @@ var require_CreateTicket = __commonJS({
3305
3611
  if (headers)
3306
3612
  config.headers = headers;
3307
3613
  return this._http.request(config);
3308
- };
3614
+ }, "CreateTicket");
3309
3615
  }
3310
3616
  });
3311
3617
 
3312
3618
  // dist/useCases/CreateTicketMessage.js
3313
3619
  var require_CreateTicketMessage = __commonJS({
3314
3620
  "dist/useCases/CreateTicketMessage.js"(exports, module) {
3315
- module.exports = function CreateTicketMessage(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3621
+ module.exports = /* @__PURE__ */ __name(function CreateTicketMessage(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3316
3622
  if (!requestData)
3317
3623
  requestData = {};
3318
3624
  const pathParams = [":id"];
@@ -3343,14 +3649,14 @@ var require_CreateTicketMessage = __commonJS({
3343
3649
  if (headers)
3344
3650
  config.headers = headers;
3345
3651
  return this._http.request(config);
3346
- };
3652
+ }, "CreateTicketMessage");
3347
3653
  }
3348
3654
  });
3349
3655
 
3350
3656
  // dist/useCases/DeleteTicket.js
3351
3657
  var require_DeleteTicket = __commonJS({
3352
3658
  "dist/useCases/DeleteTicket.js"(exports, module) {
3353
- module.exports = function DeleteTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3659
+ module.exports = /* @__PURE__ */ __name(function DeleteTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3354
3660
  if (!requestData)
3355
3661
  requestData = {};
3356
3662
  const pathParams = [":id"];
@@ -3381,14 +3687,14 @@ var require_DeleteTicket = __commonJS({
3381
3687
  if (headers)
3382
3688
  config.headers = headers;
3383
3689
  return this._http.request(config);
3384
- };
3690
+ }, "DeleteTicket");
3385
3691
  }
3386
3692
  });
3387
3693
 
3388
3694
  // dist/useCases/DescribeTicket.js
3389
3695
  var require_DescribeTicket = __commonJS({
3390
3696
  "dist/useCases/DescribeTicket.js"(exports, module) {
3391
- module.exports = function DescribeTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3697
+ module.exports = /* @__PURE__ */ __name(function DescribeTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3392
3698
  if (!requestData)
3393
3699
  requestData = {};
3394
3700
  const pathParams = [":id"];
@@ -3419,14 +3725,14 @@ var require_DescribeTicket = __commonJS({
3419
3725
  if (headers)
3420
3726
  config.headers = headers;
3421
3727
  return this._http.request(config);
3422
- };
3728
+ }, "DescribeTicket");
3423
3729
  }
3424
3730
  });
3425
3731
 
3426
3732
  // dist/useCases/ListTickets.js
3427
3733
  var require_ListTickets = __commonJS({
3428
3734
  "dist/useCases/ListTickets.js"(exports, module) {
3429
- module.exports = function ListTickets(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3735
+ module.exports = /* @__PURE__ */ __name(function ListTickets(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3430
3736
  if (!requestData)
3431
3737
  requestData = {};
3432
3738
  const pathParams = null;
@@ -3457,14 +3763,14 @@ var require_ListTickets = __commonJS({
3457
3763
  if (headers)
3458
3764
  config.headers = headers;
3459
3765
  return this._http.request(config);
3460
- };
3766
+ }, "ListTickets");
3461
3767
  }
3462
3768
  });
3463
3769
 
3464
3770
  // dist/useCases/UpdateMessageReadStatus.js
3465
3771
  var require_UpdateMessageReadStatus = __commonJS({
3466
3772
  "dist/useCases/UpdateMessageReadStatus.js"(exports, module) {
3467
- module.exports = function UpdateMessageReadStatus(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3773
+ module.exports = /* @__PURE__ */ __name(function UpdateMessageReadStatus(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3468
3774
  if (!requestData)
3469
3775
  requestData = {};
3470
3776
  const pathParams = [":id"];
@@ -3495,14 +3801,14 @@ var require_UpdateMessageReadStatus = __commonJS({
3495
3801
  if (headers)
3496
3802
  config.headers = headers;
3497
3803
  return this._http.request(config);
3498
- };
3804
+ }, "UpdateMessageReadStatus");
3499
3805
  }
3500
3806
  });
3501
3807
 
3502
3808
  // dist/useCases/UpdateTicket.js
3503
3809
  var require_UpdateTicket = __commonJS({
3504
3810
  "dist/useCases/UpdateTicket.js"(exports, module) {
3505
- module.exports = function UpdateTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3811
+ module.exports = /* @__PURE__ */ __name(function UpdateTicket(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3506
3812
  if (!requestData)
3507
3813
  requestData = {};
3508
3814
  const pathParams = [":id"];
@@ -3533,14 +3839,14 @@ var require_UpdateTicket = __commonJS({
3533
3839
  if (headers)
3534
3840
  config.headers = headers;
3535
3841
  return this._http.request(config);
3536
- };
3842
+ }, "UpdateTicket");
3537
3843
  }
3538
3844
  });
3539
3845
 
3540
3846
  // dist/useCases/UpdateTicketStatus.js
3541
3847
  var require_UpdateTicketStatus = __commonJS({
3542
3848
  "dist/useCases/UpdateTicketStatus.js"(exports, module) {
3543
- module.exports = function UpdateTicketStatus(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3849
+ module.exports = /* @__PURE__ */ __name(function UpdateTicketStatus(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3544
3850
  if (!requestData)
3545
3851
  requestData = {};
3546
3852
  const pathParams = [":id"];
@@ -3571,14 +3877,14 @@ var require_UpdateTicketStatus = __commonJS({
3571
3877
  if (headers)
3572
3878
  config.headers = headers;
3573
3879
  return this._http.request(config);
3574
- };
3880
+ }, "UpdateTicketStatus");
3575
3881
  }
3576
3882
  });
3577
3883
 
3578
3884
  // dist/useCases/CreateDefaultScenes.js
3579
3885
  var require_CreateDefaultScenes = __commonJS({
3580
3886
  "dist/useCases/CreateDefaultScenes.js"(exports, module) {
3581
- module.exports = function CreateDefaultScenes(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3887
+ module.exports = /* @__PURE__ */ __name(function CreateDefaultScenes(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3582
3888
  if (!requestData)
3583
3889
  requestData = {};
3584
3890
  const pathParams = null;
@@ -3609,14 +3915,14 @@ var require_CreateDefaultScenes = __commonJS({
3609
3915
  if (headers)
3610
3916
  config.headers = headers;
3611
3917
  return this._http.request(config);
3612
- };
3918
+ }, "CreateDefaultScenes");
3613
3919
  }
3614
3920
  });
3615
3921
 
3616
3922
  // dist/useCases/CreateDiscoveredDevice.js
3617
3923
  var require_CreateDiscoveredDevice = __commonJS({
3618
3924
  "dist/useCases/CreateDiscoveredDevice.js"(exports, module) {
3619
- module.exports = function CreateDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3925
+ module.exports = /* @__PURE__ */ __name(function CreateDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3620
3926
  if (!requestData)
3621
3927
  requestData = {};
3622
3928
  const pathParams = null;
@@ -3647,14 +3953,14 @@ var require_CreateDiscoveredDevice = __commonJS({
3647
3953
  if (headers)
3648
3954
  config.headers = headers;
3649
3955
  return this._http.request(config);
3650
- };
3956
+ }, "CreateDiscoveredDevice");
3651
3957
  }
3652
3958
  });
3653
3959
 
3654
3960
  // dist/useCases/ListDiscoveredDevices.js
3655
3961
  var require_ListDiscoveredDevices = __commonJS({
3656
3962
  "dist/useCases/ListDiscoveredDevices.js"(exports, module) {
3657
- module.exports = function ListDiscoveredDevices(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3963
+ module.exports = /* @__PURE__ */ __name(function ListDiscoveredDevices(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3658
3964
  if (!requestData)
3659
3965
  requestData = {};
3660
3966
  const pathParams = null;
@@ -3685,14 +3991,14 @@ var require_ListDiscoveredDevices = __commonJS({
3685
3991
  if (headers)
3686
3992
  config.headers = headers;
3687
3993
  return this._http.request(config);
3688
- };
3994
+ }, "ListDiscoveredDevices");
3689
3995
  }
3690
3996
  });
3691
3997
 
3692
3998
  // dist/useCases/UpdateDiscoveredDevice.js
3693
3999
  var require_UpdateDiscoveredDevice = __commonJS({
3694
4000
  "dist/useCases/UpdateDiscoveredDevice.js"(exports, module) {
3695
- module.exports = function UpdateDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4001
+ module.exports = /* @__PURE__ */ __name(function UpdateDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3696
4002
  if (!requestData)
3697
4003
  requestData = {};
3698
4004
  const pathParams = [":id"];
@@ -3723,14 +4029,14 @@ var require_UpdateDiscoveredDevice = __commonJS({
3723
4029
  if (headers)
3724
4030
  config.headers = headers;
3725
4031
  return this._http.request(config);
3726
- };
4032
+ }, "UpdateDiscoveredDevice");
3727
4033
  }
3728
4034
  });
3729
4035
 
3730
4036
  // dist/useCases/DeleteDiscoveredDevice.js
3731
4037
  var require_DeleteDiscoveredDevice = __commonJS({
3732
4038
  "dist/useCases/DeleteDiscoveredDevice.js"(exports, module) {
3733
- module.exports = function DeleteDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4039
+ module.exports = /* @__PURE__ */ __name(function DeleteDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3734
4040
  if (!requestData)
3735
4041
  requestData = {};
3736
4042
  const pathParams = [":id"];
@@ -3761,14 +4067,14 @@ var require_DeleteDiscoveredDevice = __commonJS({
3761
4067
  if (headers)
3762
4068
  config.headers = headers;
3763
4069
  return this._http.request(config);
3764
- };
4070
+ }, "DeleteDiscoveredDevice");
3765
4071
  }
3766
4072
  });
3767
4073
 
3768
4074
  // dist/useCases/DescribeDiscoveredDevice.js
3769
4075
  var require_DescribeDiscoveredDevice = __commonJS({
3770
4076
  "dist/useCases/DescribeDiscoveredDevice.js"(exports, module) {
3771
- module.exports = function DescribeDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4077
+ module.exports = /* @__PURE__ */ __name(function DescribeDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3772
4078
  if (!requestData)
3773
4079
  requestData = {};
3774
4080
  const pathParams = [":id"];
@@ -3799,14 +4105,14 @@ var require_DescribeDiscoveredDevice = __commonJS({
3799
4105
  if (headers)
3800
4106
  config.headers = headers;
3801
4107
  return this._http.request(config);
3802
- };
4108
+ }, "DescribeDiscoveredDevice");
3803
4109
  }
3804
4110
  });
3805
4111
 
3806
4112
  // dist/useCases/UpsertDiscoveredDevice.js
3807
4113
  var require_UpsertDiscoveredDevice = __commonJS({
3808
4114
  "dist/useCases/UpsertDiscoveredDevice.js"(exports, module) {
3809
- module.exports = function UpsertDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4115
+ module.exports = /* @__PURE__ */ __name(function UpsertDiscoveredDevice(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3810
4116
  if (!requestData)
3811
4117
  requestData = {};
3812
4118
  const pathParams = null;
@@ -3837,14 +4143,14 @@ var require_UpsertDiscoveredDevice = __commonJS({
3837
4143
  if (headers)
3838
4144
  config.headers = headers;
3839
4145
  return this._http.request(config);
3840
- };
4146
+ }, "UpsertDiscoveredDevice");
3841
4147
  }
3842
4148
  });
3843
4149
 
3844
4150
  // dist/useCases/CreateDiscoveredDeviceAssociation.js
3845
4151
  var require_CreateDiscoveredDeviceAssociation = __commonJS({
3846
4152
  "dist/useCases/CreateDiscoveredDeviceAssociation.js"(exports, module) {
3847
- module.exports = function CreateDiscoveredDeviceAssociation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4153
+ module.exports = /* @__PURE__ */ __name(function CreateDiscoveredDeviceAssociation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3848
4154
  if (!requestData)
3849
4155
  requestData = {};
3850
4156
  const pathParams = [":id"];
@@ -3875,14 +4181,14 @@ var require_CreateDiscoveredDeviceAssociation = __commonJS({
3875
4181
  if (headers)
3876
4182
  config.headers = headers;
3877
4183
  return this._http.request(config);
3878
- };
4184
+ }, "CreateDiscoveredDeviceAssociation");
3879
4185
  }
3880
4186
  });
3881
4187
 
3882
4188
  // dist/useCases/CreateIntegration.js
3883
4189
  var require_CreateIntegration = __commonJS({
3884
4190
  "dist/useCases/CreateIntegration.js"(exports, module) {
3885
- module.exports = function CreateIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4191
+ module.exports = /* @__PURE__ */ __name(function CreateIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3886
4192
  if (!requestData)
3887
4193
  requestData = {};
3888
4194
  const pathParams = null;
@@ -3913,14 +4219,14 @@ var require_CreateIntegration = __commonJS({
3913
4219
  if (headers)
3914
4220
  config.headers = headers;
3915
4221
  return this._http.request(config);
3916
- };
4222
+ }, "CreateIntegration");
3917
4223
  }
3918
4224
  });
3919
4225
 
3920
4226
  // dist/useCases/UpdateIntegration.js
3921
4227
  var require_UpdateIntegration = __commonJS({
3922
4228
  "dist/useCases/UpdateIntegration.js"(exports, module) {
3923
- module.exports = function UpdateIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4229
+ module.exports = /* @__PURE__ */ __name(function UpdateIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3924
4230
  if (!requestData)
3925
4231
  requestData = {};
3926
4232
  const pathParams = [":id"];
@@ -3951,14 +4257,14 @@ var require_UpdateIntegration = __commonJS({
3951
4257
  if (headers)
3952
4258
  config.headers = headers;
3953
4259
  return this._http.request(config);
3954
- };
4260
+ }, "UpdateIntegration");
3955
4261
  }
3956
4262
  });
3957
4263
 
3958
4264
  // dist/useCases/CreateIntegrationDeviceMapEntry.js
3959
4265
  var require_CreateIntegrationDeviceMapEntry = __commonJS({
3960
4266
  "dist/useCases/CreateIntegrationDeviceMapEntry.js"(exports, module) {
3961
- module.exports = function CreateIntegrationDeviceMapEntry(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4267
+ module.exports = /* @__PURE__ */ __name(function CreateIntegrationDeviceMapEntry(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
3962
4268
  if (!requestData)
3963
4269
  requestData = {};
3964
4270
  const pathParams = [":id"];
@@ -3989,14 +4295,14 @@ var require_CreateIntegrationDeviceMapEntry = __commonJS({
3989
4295
  if (headers)
3990
4296
  config.headers = headers;
3991
4297
  return this._http.request(config);
3992
- };
4298
+ }, "CreateIntegrationDeviceMapEntry");
3993
4299
  }
3994
4300
  });
3995
4301
 
3996
4302
  // dist/useCases/DescribeIntegration.js
3997
4303
  var require_DescribeIntegration = __commonJS({
3998
4304
  "dist/useCases/DescribeIntegration.js"(exports, module) {
3999
- module.exports = function DescribeIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4305
+ module.exports = /* @__PURE__ */ __name(function DescribeIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4000
4306
  if (!requestData)
4001
4307
  requestData = {};
4002
4308
  const pathParams = [":id"];
@@ -4027,14 +4333,14 @@ var require_DescribeIntegration = __commonJS({
4027
4333
  if (headers)
4028
4334
  config.headers = headers;
4029
4335
  return this._http.request(config);
4030
- };
4336
+ }, "DescribeIntegration");
4031
4337
  }
4032
4338
  });
4033
4339
 
4034
4340
  // dist/useCases/DeleteIntegration.js
4035
4341
  var require_DeleteIntegration = __commonJS({
4036
4342
  "dist/useCases/DeleteIntegration.js"(exports, module) {
4037
- module.exports = function DeleteIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4343
+ module.exports = /* @__PURE__ */ __name(function DeleteIntegration(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4038
4344
  if (!requestData)
4039
4345
  requestData = {};
4040
4346
  const pathParams = [":id"];
@@ -4065,14 +4371,14 @@ var require_DeleteIntegration = __commonJS({
4065
4371
  if (headers)
4066
4372
  config.headers = headers;
4067
4373
  return this._http.request(config);
4068
- };
4374
+ }, "DeleteIntegration");
4069
4375
  }
4070
4376
  });
4071
4377
 
4072
4378
  // dist/useCases/ListIntegrations.js
4073
4379
  var require_ListIntegrations = __commonJS({
4074
4380
  "dist/useCases/ListIntegrations.js"(exports, module) {
4075
- module.exports = function ListIntegrations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4381
+ module.exports = /* @__PURE__ */ __name(function ListIntegrations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4076
4382
  if (!requestData)
4077
4383
  requestData = {};
4078
4384
  const pathParams = null;
@@ -4103,14 +4409,14 @@ var require_ListIntegrations = __commonJS({
4103
4409
  if (headers)
4104
4410
  config.headers = headers;
4105
4411
  return this._http.request(config);
4106
- };
4412
+ }, "ListIntegrations");
4107
4413
  }
4108
4414
  });
4109
4415
 
4110
4416
  // dist/useCases/DiscoverReservations.js
4111
4417
  var require_DiscoverReservations = __commonJS({
4112
4418
  "dist/useCases/DiscoverReservations.js"(exports, module) {
4113
- module.exports = function DiscoverReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4419
+ module.exports = /* @__PURE__ */ __name(function DiscoverReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4114
4420
  if (!requestData)
4115
4421
  requestData = {};
4116
4422
  const pathParams = null;
@@ -4141,14 +4447,14 @@ var require_DiscoverReservations = __commonJS({
4141
4447
  if (headers)
4142
4448
  config.headers = headers;
4143
4449
  return this._http.request(config);
4144
- };
4450
+ }, "DiscoverReservations");
4145
4451
  }
4146
4452
  });
4147
4453
 
4148
4454
  // dist/useCases/CreateReservation.js
4149
4455
  var require_CreateReservation = __commonJS({
4150
4456
  "dist/useCases/CreateReservation.js"(exports, module) {
4151
- module.exports = function CreateReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4457
+ module.exports = /* @__PURE__ */ __name(function CreateReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4152
4458
  if (!requestData)
4153
4459
  requestData = {};
4154
4460
  const pathParams = null;
@@ -4179,14 +4485,14 @@ var require_CreateReservation = __commonJS({
4179
4485
  if (headers)
4180
4486
  config.headers = headers;
4181
4487
  return this._http.request(config);
4182
- };
4488
+ }, "CreateReservation");
4183
4489
  }
4184
4490
  });
4185
4491
 
4186
4492
  // dist/useCases/DeleteReservation.js
4187
4493
  var require_DeleteReservation = __commonJS({
4188
4494
  "dist/useCases/DeleteReservation.js"(exports, module) {
4189
- module.exports = function DeleteReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4495
+ module.exports = /* @__PURE__ */ __name(function DeleteReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4190
4496
  if (!requestData)
4191
4497
  requestData = {};
4192
4498
  const pathParams = [":id"];
@@ -4217,14 +4523,14 @@ var require_DeleteReservation = __commonJS({
4217
4523
  if (headers)
4218
4524
  config.headers = headers;
4219
4525
  return this._http.request(config);
4220
- };
4526
+ }, "DeleteReservation");
4221
4527
  }
4222
4528
  });
4223
4529
 
4224
4530
  // dist/useCases/ListReservations.js
4225
4531
  var require_ListReservations = __commonJS({
4226
4532
  "dist/useCases/ListReservations.js"(exports, module) {
4227
- module.exports = function ListReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4533
+ module.exports = /* @__PURE__ */ __name(function ListReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4228
4534
  if (!requestData)
4229
4535
  requestData = {};
4230
4536
  const pathParams = null;
@@ -4255,14 +4561,14 @@ var require_ListReservations = __commonJS({
4255
4561
  if (headers)
4256
4562
  config.headers = headers;
4257
4563
  return this._http.request(config);
4258
- };
4564
+ }, "ListReservations");
4259
4565
  }
4260
4566
  });
4261
4567
 
4262
4568
  // dist/useCases/ListMyReservations.js
4263
4569
  var require_ListMyReservations = __commonJS({
4264
4570
  "dist/useCases/ListMyReservations.js"(exports, module) {
4265
- module.exports = function ListMyReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4571
+ module.exports = /* @__PURE__ */ __name(function ListMyReservations(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4266
4572
  if (!requestData)
4267
4573
  requestData = {};
4268
4574
  const pathParams = null;
@@ -4293,14 +4599,14 @@ var require_ListMyReservations = __commonJS({
4293
4599
  if (headers)
4294
4600
  config.headers = headers;
4295
4601
  return this._http.request(config);
4296
- };
4602
+ }, "ListMyReservations");
4297
4603
  }
4298
4604
  });
4299
4605
 
4300
4606
  // dist/useCases/UpdateReservation.js
4301
4607
  var require_UpdateReservation = __commonJS({
4302
4608
  "dist/useCases/UpdateReservation.js"(exports, module) {
4303
- module.exports = function UpdateReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4609
+ module.exports = /* @__PURE__ */ __name(function UpdateReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4304
4610
  if (!requestData)
4305
4611
  requestData = {};
4306
4612
  const pathParams = [":id"];
@@ -4331,14 +4637,14 @@ var require_UpdateReservation = __commonJS({
4331
4637
  if (headers)
4332
4638
  config.headers = headers;
4333
4639
  return this._http.request(config);
4334
- };
4640
+ }, "UpdateReservation");
4335
4641
  }
4336
4642
  });
4337
4643
 
4338
4644
  // dist/useCases/DescribeReservation.js
4339
4645
  var require_DescribeReservation = __commonJS({
4340
4646
  "dist/useCases/DescribeReservation.js"(exports, module) {
4341
- module.exports = function DescribeReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4647
+ module.exports = /* @__PURE__ */ __name(function DescribeReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4342
4648
  if (!requestData)
4343
4649
  requestData = {};
4344
4650
  const pathParams = [":id"];
@@ -4369,14 +4675,14 @@ var require_DescribeReservation = __commonJS({
4369
4675
  if (headers)
4370
4676
  config.headers = headers;
4371
4677
  return this._http.request(config);
4372
- };
4678
+ }, "DescribeReservation");
4373
4679
  }
4374
4680
  });
4375
4681
 
4376
4682
  // dist/useCases/DescribeReservationCheckinStatus.js
4377
4683
  var require_DescribeReservationCheckinStatus = __commonJS({
4378
4684
  "dist/useCases/DescribeReservationCheckinStatus.js"(exports, module) {
4379
- module.exports = function DescribeReservationCheckinStatus(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4685
+ module.exports = /* @__PURE__ */ __name(function DescribeReservationCheckinStatus(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4380
4686
  if (!requestData)
4381
4687
  requestData = {};
4382
4688
  const pathParams = [":id"];
@@ -4407,14 +4713,14 @@ var require_DescribeReservationCheckinStatus = __commonJS({
4407
4713
  if (headers)
4408
4714
  config.headers = headers;
4409
4715
  return this._http.request(config);
4410
- };
4716
+ }, "DescribeReservationCheckinStatus");
4411
4717
  }
4412
4718
  });
4413
4719
 
4414
4720
  // dist/useCases/CheckInReservation.js
4415
4721
  var require_CheckInReservation = __commonJS({
4416
4722
  "dist/useCases/CheckInReservation.js"(exports, module) {
4417
- module.exports = function CheckInReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4723
+ module.exports = /* @__PURE__ */ __name(function CheckInReservation(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4418
4724
  if (!requestData)
4419
4725
  requestData = {};
4420
4726
  const pathParams = [":id"];
@@ -4445,14 +4751,14 @@ var require_CheckInReservation = __commonJS({
4445
4751
  if (headers)
4446
4752
  config.headers = headers;
4447
4753
  return this._http.request(config);
4448
- };
4754
+ }, "CheckInReservation");
4449
4755
  }
4450
4756
  });
4451
4757
 
4452
4758
  // dist/useCases/SendPreArrivalSMS.js
4453
4759
  var require_SendPreArrivalSMS = __commonJS({
4454
4760
  "dist/useCases/SendPreArrivalSMS.js"(exports, module) {
4455
- module.exports = function SendPreArrivalSMS(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4761
+ module.exports = /* @__PURE__ */ __name(function SendPreArrivalSMS(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4456
4762
  if (!requestData)
4457
4763
  requestData = {};
4458
4764
  const pathParams = [":id"];
@@ -4483,14 +4789,14 @@ var require_SendPreArrivalSMS = __commonJS({
4483
4789
  if (headers)
4484
4790
  config.headers = headers;
4485
4791
  return this._http.request(config);
4486
- };
4792
+ }, "SendPreArrivalSMS");
4487
4793
  }
4488
4794
  });
4489
4795
 
4490
4796
  // dist/useCases/SendPreArrivalEmail.js
4491
4797
  var require_SendPreArrivalEmail = __commonJS({
4492
4798
  "dist/useCases/SendPreArrivalEmail.js"(exports, module) {
4493
- module.exports = function SendPreArrivalEmail(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4799
+ module.exports = /* @__PURE__ */ __name(function SendPreArrivalEmail(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4494
4800
  if (!requestData)
4495
4801
  requestData = {};
4496
4802
  const pathParams = [":id"];
@@ -4521,14 +4827,14 @@ var require_SendPreArrivalEmail = __commonJS({
4521
4827
  if (headers)
4522
4828
  config.headers = headers;
4523
4829
  return this._http.request(config);
4524
- };
4830
+ }, "SendPreArrivalEmail");
4525
4831
  }
4526
4832
  });
4527
4833
 
4528
4834
  // dist/useCases/BatchNotifyPreArrival.js
4529
4835
  var require_BatchNotifyPreArrival = __commonJS({
4530
4836
  "dist/useCases/BatchNotifyPreArrival.js"(exports, module) {
4531
- module.exports = function BatchNotifyPreArrival(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4837
+ module.exports = /* @__PURE__ */ __name(function BatchNotifyPreArrival(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4532
4838
  if (!requestData)
4533
4839
  requestData = {};
4534
4840
  const pathParams = null;
@@ -4559,14 +4865,14 @@ var require_BatchNotifyPreArrival = __commonJS({
4559
4865
  if (headers)
4560
4866
  config.headers = headers;
4561
4867
  return this._http.request(config);
4562
- };
4868
+ }, "BatchNotifyPreArrival");
4563
4869
  }
4564
4870
  });
4565
4871
 
4566
4872
  // dist/useCases/OCRDocument.js
4567
4873
  var require_OCRDocument = __commonJS({
4568
4874
  "dist/useCases/OCRDocument.js"(exports, module) {
4569
- module.exports = function OCRDocument(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4875
+ module.exports = /* @__PURE__ */ __name(function OCRDocument(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4570
4876
  if (!requestData)
4571
4877
  requestData = {};
4572
4878
  const pathParams = null;
@@ -4597,14 +4903,14 @@ var require_OCRDocument = __commonJS({
4597
4903
  if (headers)
4598
4904
  config.headers = headers;
4599
4905
  return this._http.request(config);
4600
- };
4906
+ }, "OCRDocument");
4601
4907
  }
4602
4908
  });
4603
4909
 
4604
4910
  // dist/useCases/DescribeMyProperty.js
4605
4911
  var require_DescribeMyProperty = __commonJS({
4606
4912
  "dist/useCases/DescribeMyProperty.js"(exports, module) {
4607
- module.exports = function DescribeMyProperty(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4913
+ module.exports = /* @__PURE__ */ __name(function DescribeMyProperty(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4608
4914
  if (!requestData)
4609
4915
  requestData = {};
4610
4916
  const pathParams = null;
@@ -4635,14 +4941,14 @@ var require_DescribeMyProperty = __commonJS({
4635
4941
  if (headers)
4636
4942
  config.headers = headers;
4637
4943
  return this._http.request(config);
4638
- };
4944
+ }, "DescribeMyProperty");
4639
4945
  }
4640
4946
  });
4641
4947
 
4642
4948
  // dist/useCases/EmailUserAccountSetup.js
4643
4949
  var require_EmailUserAccountSetup = __commonJS({
4644
4950
  "dist/useCases/EmailUserAccountSetup.js"(exports, module) {
4645
- module.exports = function EmailUserAccountSetup(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4951
+ module.exports = /* @__PURE__ */ __name(function EmailUserAccountSetup(requestData = { data: null, query: null, headers: null }, httpConfigOptions = {}) {
4646
4952
  if (!requestData)
4647
4953
  requestData = {};
4648
4954
  const pathParams = [":id"];
@@ -4673,7 +4979,7 @@ var require_EmailUserAccountSetup = __commonJS({
4673
4979
  if (headers)
4674
4980
  config.headers = headers;
4675
4981
  return this._http.request(config);
4676
- };
4982
+ }, "EmailUserAccountSetup");
4677
4983
  }
4678
4984
  });
4679
4985
 
@@ -4682,31 +4988,33 @@ var require_events = __commonJS({
4682
4988
  "node_modules/events/events.js"(exports, module) {
4683
4989
  "use strict";
4684
4990
  var R = typeof Reflect === "object" ? Reflect : null;
4685
- 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) {
4686
4992
  return Function.prototype.apply.call(target, receiver, args);
4687
- };
4993
+ }, "ReflectApply");
4688
4994
  var ReflectOwnKeys;
4689
4995
  if (R && typeof R.ownKeys === "function") {
4690
4996
  ReflectOwnKeys = R.ownKeys;
4691
4997
  } else if (Object.getOwnPropertySymbols) {
4692
- ReflectOwnKeys = function ReflectOwnKeys2(target) {
4998
+ ReflectOwnKeys = /* @__PURE__ */ __name(function ReflectOwnKeys2(target) {
4693
4999
  return Object.getOwnPropertyNames(target).concat(Object.getOwnPropertySymbols(target));
4694
- };
5000
+ }, "ReflectOwnKeys");
4695
5001
  } else {
4696
- ReflectOwnKeys = function ReflectOwnKeys2(target) {
5002
+ ReflectOwnKeys = /* @__PURE__ */ __name(function ReflectOwnKeys2(target) {
4697
5003
  return Object.getOwnPropertyNames(target);
4698
- };
5004
+ }, "ReflectOwnKeys");
4699
5005
  }
4700
5006
  function ProcessEmitWarning(warning) {
4701
5007
  if (console && console.warn)
4702
5008
  console.warn(warning);
4703
5009
  }
4704
- var NumberIsNaN = Number.isNaN || function NumberIsNaN2(value) {
5010
+ __name(ProcessEmitWarning, "ProcessEmitWarning");
5011
+ var NumberIsNaN = Number.isNaN || /* @__PURE__ */ __name(function NumberIsNaN2(value) {
4705
5012
  return value !== value;
4706
- };
5013
+ }, "NumberIsNaN");
4707
5014
  function EventEmitter() {
4708
5015
  EventEmitter.init.call(this);
4709
5016
  }
5017
+ __name(EventEmitter, "EventEmitter");
4710
5018
  module.exports = EventEmitter;
4711
5019
  module.exports.once = once;
4712
5020
  EventEmitter.EventEmitter = EventEmitter;
@@ -4719,6 +5027,7 @@ var require_events = __commonJS({
4719
5027
  throw new TypeError('The "listener" argument must be of type Function. Received type ' + typeof listener);
4720
5028
  }
4721
5029
  }
5030
+ __name(checkListener, "checkListener");
4722
5031
  Object.defineProperty(EventEmitter, "defaultMaxListeners", {
4723
5032
  enumerable: true,
4724
5033
  get: function() {
@@ -4738,22 +5047,23 @@ var require_events = __commonJS({
4738
5047
  }
4739
5048
  this._maxListeners = this._maxListeners || void 0;
4740
5049
  };
4741
- EventEmitter.prototype.setMaxListeners = function setMaxListeners(n) {
5050
+ EventEmitter.prototype.setMaxListeners = /* @__PURE__ */ __name(function setMaxListeners(n) {
4742
5051
  if (typeof n !== "number" || n < 0 || NumberIsNaN(n)) {
4743
5052
  throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received ' + n + ".");
4744
5053
  }
4745
5054
  this._maxListeners = n;
4746
5055
  return this;
4747
- };
5056
+ }, "setMaxListeners");
4748
5057
  function _getMaxListeners(that) {
4749
5058
  if (that._maxListeners === void 0)
4750
5059
  return EventEmitter.defaultMaxListeners;
4751
5060
  return that._maxListeners;
4752
5061
  }
4753
- EventEmitter.prototype.getMaxListeners = function getMaxListeners() {
5062
+ __name(_getMaxListeners, "_getMaxListeners");
5063
+ EventEmitter.prototype.getMaxListeners = /* @__PURE__ */ __name(function getMaxListeners() {
4754
5064
  return _getMaxListeners(this);
4755
- };
4756
- EventEmitter.prototype.emit = function emit(type) {
5065
+ }, "getMaxListeners");
5066
+ EventEmitter.prototype.emit = /* @__PURE__ */ __name(function emit(type) {
4757
5067
  var args = [];
4758
5068
  for (var i = 1; i < arguments.length; i++)
4759
5069
  args.push(arguments[i]);
@@ -4786,7 +5096,7 @@ var require_events = __commonJS({
4786
5096
  ReflectApply(listeners[i], this, args);
4787
5097
  }
4788
5098
  return true;
4789
- };
5099
+ }, "emit");
4790
5100
  function _addListener(target, type, listener, prepend) {
4791
5101
  var m;
4792
5102
  var events;
@@ -4831,13 +5141,14 @@ var require_events = __commonJS({
4831
5141
  }
4832
5142
  return target;
4833
5143
  }
4834
- EventEmitter.prototype.addListener = function addListener(type, listener) {
5144
+ __name(_addListener, "_addListener");
5145
+ EventEmitter.prototype.addListener = /* @__PURE__ */ __name(function addListener(type, listener) {
4835
5146
  return _addListener(this, type, listener, false);
4836
- };
5147
+ }, "addListener");
4837
5148
  EventEmitter.prototype.on = EventEmitter.prototype.addListener;
4838
- EventEmitter.prototype.prependListener = function prependListener(type, listener) {
5149
+ EventEmitter.prototype.prependListener = /* @__PURE__ */ __name(function prependListener(type, listener) {
4839
5150
  return _addListener(this, type, listener, true);
4840
- };
5151
+ }, "prependListener");
4841
5152
  function onceWrapper() {
4842
5153
  if (!this.fired) {
4843
5154
  this.target.removeListener(this.type, this.wrapFn);
@@ -4847,6 +5158,7 @@ var require_events = __commonJS({
4847
5158
  return this.listener.apply(this.target, arguments);
4848
5159
  }
4849
5160
  }
5161
+ __name(onceWrapper, "onceWrapper");
4850
5162
  function _onceWrap(target, type, listener) {
4851
5163
  var state = { fired: false, wrapFn: void 0, target, type, listener };
4852
5164
  var wrapped = onceWrapper.bind(state);
@@ -4854,17 +5166,18 @@ var require_events = __commonJS({
4854
5166
  state.wrapFn = wrapped;
4855
5167
  return wrapped;
4856
5168
  }
4857
- EventEmitter.prototype.once = function once2(type, listener) {
5169
+ __name(_onceWrap, "_onceWrap");
5170
+ EventEmitter.prototype.once = /* @__PURE__ */ __name(function once2(type, listener) {
4858
5171
  checkListener(listener);
4859
5172
  this.on(type, _onceWrap(this, type, listener));
4860
5173
  return this;
4861
- };
4862
- EventEmitter.prototype.prependOnceListener = function prependOnceListener(type, listener) {
5174
+ }, "once");
5175
+ EventEmitter.prototype.prependOnceListener = /* @__PURE__ */ __name(function prependOnceListener(type, listener) {
4863
5176
  checkListener(listener);
4864
5177
  this.prependListener(type, _onceWrap(this, type, listener));
4865
5178
  return this;
4866
- };
4867
- EventEmitter.prototype.removeListener = function removeListener(type, listener) {
5179
+ }, "prependOnceListener");
5180
+ EventEmitter.prototype.removeListener = /* @__PURE__ */ __name(function removeListener(type, listener) {
4868
5181
  var list, events, position, i, originalListener;
4869
5182
  checkListener(listener);
4870
5183
  events = this._events;
@@ -4903,9 +5216,9 @@ var require_events = __commonJS({
4903
5216
  this.emit("removeListener", type, originalListener || listener);
4904
5217
  }
4905
5218
  return this;
4906
- };
5219
+ }, "removeListener");
4907
5220
  EventEmitter.prototype.off = EventEmitter.prototype.removeListener;
4908
- EventEmitter.prototype.removeAllListeners = function removeAllListeners(type) {
5221
+ EventEmitter.prototype.removeAllListeners = /* @__PURE__ */ __name(function removeAllListeners(type) {
4909
5222
  var listeners, events, i;
4910
5223
  events = this._events;
4911
5224
  if (events === void 0)
@@ -4945,7 +5258,7 @@ var require_events = __commonJS({
4945
5258
  }
4946
5259
  }
4947
5260
  return this;
4948
- };
5261
+ }, "removeAllListeners");
4949
5262
  function _listeners(target, type, unwrap) {
4950
5263
  var events = target._events;
4951
5264
  if (events === void 0)
@@ -4957,12 +5270,13 @@ var require_events = __commonJS({
4957
5270
  return unwrap ? [evlistener.listener || evlistener] : [evlistener];
4958
5271
  return unwrap ? unwrapListeners(evlistener) : arrayClone(evlistener, evlistener.length);
4959
5272
  }
4960
- EventEmitter.prototype.listeners = function listeners(type) {
5273
+ __name(_listeners, "_listeners");
5274
+ EventEmitter.prototype.listeners = /* @__PURE__ */ __name(function listeners(type) {
4961
5275
  return _listeners(this, type, true);
4962
- };
4963
- EventEmitter.prototype.rawListeners = function rawListeners(type) {
5276
+ }, "listeners");
5277
+ EventEmitter.prototype.rawListeners = /* @__PURE__ */ __name(function rawListeners(type) {
4964
5278
  return _listeners(this, type, false);
4965
- };
5279
+ }, "rawListeners");
4966
5280
  EventEmitter.listenerCount = function(emitter, type) {
4967
5281
  if (typeof emitter.listenerCount === "function") {
4968
5282
  return emitter.listenerCount(type);
@@ -4983,20 +5297,23 @@ var require_events = __commonJS({
4983
5297
  }
4984
5298
  return 0;
4985
5299
  }
4986
- EventEmitter.prototype.eventNames = function eventNames() {
5300
+ __name(listenerCount, "listenerCount");
5301
+ EventEmitter.prototype.eventNames = /* @__PURE__ */ __name(function eventNames() {
4987
5302
  return this._eventsCount > 0 ? ReflectOwnKeys(this._events) : [];
4988
- };
5303
+ }, "eventNames");
4989
5304
  function arrayClone(arr, n) {
4990
5305
  var copy = new Array(n);
4991
5306
  for (var i = 0; i < n; ++i)
4992
5307
  copy[i] = arr[i];
4993
5308
  return copy;
4994
5309
  }
5310
+ __name(arrayClone, "arrayClone");
4995
5311
  function spliceOne(list, index) {
4996
5312
  for (; index + 1 < list.length; index++)
4997
5313
  list[index] = list[index + 1];
4998
5314
  list.pop();
4999
5315
  }
5316
+ __name(spliceOne, "spliceOne");
5000
5317
  function unwrapListeners(arr) {
5001
5318
  var ret = new Array(arr.length);
5002
5319
  for (var i = 0; i < ret.length; ++i) {
@@ -5004,18 +5321,21 @@ var require_events = __commonJS({
5004
5321
  }
5005
5322
  return ret;
5006
5323
  }
5324
+ __name(unwrapListeners, "unwrapListeners");
5007
5325
  function once(emitter, name) {
5008
5326
  return new Promise(function(resolve, reject) {
5009
5327
  function errorListener(err) {
5010
5328
  emitter.removeListener(name, resolver);
5011
5329
  reject(err);
5012
5330
  }
5331
+ __name(errorListener, "errorListener");
5013
5332
  function resolver() {
5014
5333
  if (typeof emitter.removeListener === "function") {
5015
5334
  emitter.removeListener("error", errorListener);
5016
5335
  }
5017
5336
  resolve([].slice.call(arguments));
5018
5337
  }
5338
+ __name(resolver, "resolver");
5019
5339
  ;
5020
5340
  eventTargetAgnosticAddListener(emitter, name, resolver, { once: true });
5021
5341
  if (name !== "error") {
@@ -5023,11 +5343,13 @@ var require_events = __commonJS({
5023
5343
  }
5024
5344
  });
5025
5345
  }
5346
+ __name(once, "once");
5026
5347
  function addErrorHandlerIfEventEmitter(emitter, handler, flags) {
5027
5348
  if (typeof emitter.on === "function") {
5028
5349
  eventTargetAgnosticAddListener(emitter, "error", handler, flags);
5029
5350
  }
5030
5351
  }
5352
+ __name(addErrorHandlerIfEventEmitter, "addErrorHandlerIfEventEmitter");
5031
5353
  function eventTargetAgnosticAddListener(emitter, name, listener, flags) {
5032
5354
  if (typeof emitter.on === "function") {
5033
5355
  if (flags.once) {
@@ -5036,16 +5358,17 @@ var require_events = __commonJS({
5036
5358
  emitter.on(name, listener);
5037
5359
  }
5038
5360
  } else if (typeof emitter.addEventListener === "function") {
5039
- emitter.addEventListener(name, function wrapListener(arg) {
5361
+ emitter.addEventListener(name, /* @__PURE__ */ __name(function wrapListener(arg) {
5040
5362
  if (flags.once) {
5041
5363
  emitter.removeEventListener(name, wrapListener);
5042
5364
  }
5043
5365
  listener(arg);
5044
- });
5366
+ }, "wrapListener"));
5045
5367
  } else {
5046
5368
  throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type ' + typeof emitter);
5047
5369
  }
5048
5370
  }
5371
+ __name(eventTargetAgnosticAddListener, "eventTargetAgnosticAddListener");
5049
5372
  }
5050
5373
  });
5051
5374
 
@@ -5054,26 +5377,28 @@ var require_axios = __commonJS({
5054
5377
  "node_modules/axios/dist/browser/axios.cjs"(exports, module) {
5055
5378
  "use strict";
5056
5379
  function bind(fn, thisArg) {
5057
- return function wrap() {
5380
+ return /* @__PURE__ */ __name(function wrap() {
5058
5381
  return fn.apply(thisArg, arguments);
5059
- };
5382
+ }, "wrap");
5060
5383
  }
5384
+ __name(bind, "bind");
5061
5385
  var { toString } = Object.prototype;
5062
5386
  var { getPrototypeOf } = Object;
5063
5387
  var kindOf = ((cache) => (thing) => {
5064
5388
  const str = toString.call(thing);
5065
5389
  return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
5066
5390
  })(/* @__PURE__ */ Object.create(null));
5067
- var kindOfTest = (type) => {
5391
+ var kindOfTest = /* @__PURE__ */ __name((type) => {
5068
5392
  type = type.toLowerCase();
5069
5393
  return (thing) => kindOf(thing) === type;
5070
- };
5071
- var typeOfTest = (type) => (thing) => typeof thing === type;
5394
+ }, "kindOfTest");
5395
+ var typeOfTest = /* @__PURE__ */ __name((type) => (thing) => typeof thing === type, "typeOfTest");
5072
5396
  var { isArray } = Array;
5073
5397
  var isUndefined = typeOfTest("undefined");
5074
5398
  function isBuffer(val) {
5075
5399
  return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);
5076
5400
  }
5401
+ __name(isBuffer, "isBuffer");
5077
5402
  var isArrayBuffer = kindOfTest("ArrayBuffer");
5078
5403
  function isArrayBufferView(val) {
5079
5404
  let result;
@@ -5084,29 +5409,30 @@ var require_axios = __commonJS({
5084
5409
  }
5085
5410
  return result;
5086
5411
  }
5412
+ __name(isArrayBufferView, "isArrayBufferView");
5087
5413
  var isString = typeOfTest("string");
5088
5414
  var isFunction = typeOfTest("function");
5089
5415
  var isNumber = typeOfTest("number");
5090
- var isObject = (thing) => thing !== null && typeof thing === "object";
5091
- var isBoolean = (thing) => thing === true || thing === false;
5092
- 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) => {
5093
5419
  if (kindOf(val) !== "object") {
5094
5420
  return false;
5095
5421
  }
5096
5422
  const prototype2 = getPrototypeOf(val);
5097
5423
  return (prototype2 === null || prototype2 === Object.prototype || Object.getPrototypeOf(prototype2) === null) && !(Symbol.toStringTag in val) && !(Symbol.iterator in val);
5098
- };
5424
+ }, "isPlainObject");
5099
5425
  var isDate = kindOfTest("Date");
5100
5426
  var isFile = kindOfTest("File");
5101
5427
  var isBlob = kindOfTest("Blob");
5102
5428
  var isFileList = kindOfTest("FileList");
5103
- var isStream = (val) => isObject(val) && isFunction(val.pipe);
5104
- var isFormData = (thing) => {
5429
+ var isStream = /* @__PURE__ */ __name((val) => isObject(val) && isFunction(val.pipe), "isStream");
5430
+ var isFormData = /* @__PURE__ */ __name((thing) => {
5105
5431
  const pattern = "[object FormData]";
5106
5432
  return thing && (typeof FormData === "function" && thing instanceof FormData || toString.call(thing) === pattern || isFunction(thing.toString) && thing.toString() === pattern);
5107
- };
5433
+ }, "isFormData");
5108
5434
  var isURLSearchParams = kindOfTest("URLSearchParams");
5109
- 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");
5110
5436
  function forEach(obj, fn, { allOwnKeys = false } = {}) {
5111
5437
  if (obj === null || typeof obj === "undefined") {
5112
5438
  return;
@@ -5130,6 +5456,7 @@ var require_axios = __commonJS({
5130
5456
  }
5131
5457
  }
5132
5458
  }
5459
+ __name(forEach, "forEach");
5133
5460
  function findKey(obj, key) {
5134
5461
  key = key.toLowerCase();
5135
5462
  const keys = Object.keys(obj);
@@ -5143,16 +5470,17 @@ var require_axios = __commonJS({
5143
5470
  }
5144
5471
  return null;
5145
5472
  }
5473
+ __name(findKey, "findKey");
5146
5474
  var _global = (() => {
5147
5475
  if (typeof globalThis !== "undefined")
5148
5476
  return globalThis;
5149
5477
  return typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : window;
5150
5478
  })();
5151
- var isContextDefined = (context) => !isUndefined(context) && context !== _global;
5479
+ var isContextDefined = /* @__PURE__ */ __name((context) => !isUndefined(context) && context !== _global, "isContextDefined");
5152
5480
  function merge() {
5153
5481
  const { caseless } = isContextDefined(this) && this || {};
5154
5482
  const result = {};
5155
- const assignValue = (val, key) => {
5483
+ const assignValue = /* @__PURE__ */ __name((val, key) => {
5156
5484
  const targetKey = caseless && findKey(result, key) || key;
5157
5485
  if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
5158
5486
  result[targetKey] = merge(result[targetKey], val);
@@ -5163,13 +5491,14 @@ var require_axios = __commonJS({
5163
5491
  } else {
5164
5492
  result[targetKey] = val;
5165
5493
  }
5166
- };
5494
+ }, "assignValue");
5167
5495
  for (let i = 0, l = arguments.length; i < l; i++) {
5168
5496
  arguments[i] && forEach(arguments[i], assignValue);
5169
5497
  }
5170
5498
  return result;
5171
5499
  }
5172
- var extend = (a, b, thisArg, { allOwnKeys } = {}) => {
5500
+ __name(merge, "merge");
5501
+ var extend = /* @__PURE__ */ __name((a, b, thisArg, { allOwnKeys } = {}) => {
5173
5502
  forEach(b, (val, key) => {
5174
5503
  if (thisArg && isFunction(val)) {
5175
5504
  a[key] = bind(val, thisArg);
@@ -5178,22 +5507,22 @@ var require_axios = __commonJS({
5178
5507
  }
5179
5508
  }, { allOwnKeys });
5180
5509
  return a;
5181
- };
5182
- var stripBOM = (content) => {
5510
+ }, "extend");
5511
+ var stripBOM = /* @__PURE__ */ __name((content) => {
5183
5512
  if (content.charCodeAt(0) === 65279) {
5184
5513
  content = content.slice(1);
5185
5514
  }
5186
5515
  return content;
5187
- };
5188
- var inherits = (constructor, superConstructor, props, descriptors2) => {
5516
+ }, "stripBOM");
5517
+ var inherits = /* @__PURE__ */ __name((constructor, superConstructor, props, descriptors2) => {
5189
5518
  constructor.prototype = Object.create(superConstructor.prototype, descriptors2);
5190
5519
  constructor.prototype.constructor = constructor;
5191
5520
  Object.defineProperty(constructor, "super", {
5192
5521
  value: superConstructor.prototype
5193
5522
  });
5194
5523
  props && Object.assign(constructor.prototype, props);
5195
- };
5196
- var toFlatObject = (sourceObj, destObj, filter, propFilter) => {
5524
+ }, "inherits");
5525
+ var toFlatObject = /* @__PURE__ */ __name((sourceObj, destObj, filter, propFilter) => {
5197
5526
  let props;
5198
5527
  let i;
5199
5528
  let prop;
@@ -5214,8 +5543,8 @@ var require_axios = __commonJS({
5214
5543
  sourceObj = filter !== false && getPrototypeOf(sourceObj);
5215
5544
  } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);
5216
5545
  return destObj;
5217
- };
5218
- var endsWith = (str, searchString, position) => {
5546
+ }, "toFlatObject");
5547
+ var endsWith = /* @__PURE__ */ __name((str, searchString, position) => {
5219
5548
  str = String(str);
5220
5549
  if (position === void 0 || position > str.length) {
5221
5550
  position = str.length;
@@ -5223,8 +5552,8 @@ var require_axios = __commonJS({
5223
5552
  position -= searchString.length;
5224
5553
  const lastIndex = str.indexOf(searchString, position);
5225
5554
  return lastIndex !== -1 && lastIndex === position;
5226
- };
5227
- var toArray = (thing) => {
5555
+ }, "endsWith");
5556
+ var toArray = /* @__PURE__ */ __name((thing) => {
5228
5557
  if (!thing)
5229
5558
  return null;
5230
5559
  if (isArray(thing))
@@ -5237,13 +5566,13 @@ var require_axios = __commonJS({
5237
5566
  arr[i] = thing[i];
5238
5567
  }
5239
5568
  return arr;
5240
- };
5569
+ }, "toArray");
5241
5570
  var isTypedArray = ((TypedArray) => {
5242
5571
  return (thing) => {
5243
5572
  return TypedArray && thing instanceof TypedArray;
5244
5573
  };
5245
5574
  })(typeof Uint8Array !== "undefined" && getPrototypeOf(Uint8Array));
5246
- var forEachEntry = (obj, fn) => {
5575
+ var forEachEntry = /* @__PURE__ */ __name((obj, fn) => {
5247
5576
  const generator = obj && obj[Symbol.iterator];
5248
5577
  const iterator = generator.call(obj);
5249
5578
  let result;
@@ -5251,27 +5580,27 @@ var require_axios = __commonJS({
5251
5580
  const pair = result.value;
5252
5581
  fn.call(obj, pair[0], pair[1]);
5253
5582
  }
5254
- };
5255
- var matchAll = (regExp, str) => {
5583
+ }, "forEachEntry");
5584
+ var matchAll = /* @__PURE__ */ __name((regExp, str) => {
5256
5585
  let matches;
5257
5586
  const arr = [];
5258
5587
  while ((matches = regExp.exec(str)) !== null) {
5259
5588
  arr.push(matches);
5260
5589
  }
5261
5590
  return arr;
5262
- };
5591
+ }, "matchAll");
5263
5592
  var isHTMLForm = kindOfTest("HTMLFormElement");
5264
- var toCamelCase = (str) => {
5593
+ var toCamelCase = /* @__PURE__ */ __name((str) => {
5265
5594
  return str.toLowerCase().replace(
5266
5595
  /[_-\s]([a-z\d])(\w*)/g,
5267
- function replacer(m, p1, p2) {
5596
+ /* @__PURE__ */ __name(function replacer(m, p1, p2) {
5268
5597
  return p1.toUpperCase() + p2;
5269
- }
5598
+ }, "replacer")
5270
5599
  );
5271
- };
5600
+ }, "toCamelCase");
5272
5601
  var hasOwnProperty = (({ hasOwnProperty: hasOwnProperty2 }) => (obj, prop) => hasOwnProperty2.call(obj, prop))(Object.prototype);
5273
5602
  var isRegExp = kindOfTest("RegExp");
5274
- var reduceDescriptors = (obj, reducer) => {
5603
+ var reduceDescriptors = /* @__PURE__ */ __name((obj, reducer) => {
5275
5604
  const descriptors2 = Object.getOwnPropertyDescriptors(obj);
5276
5605
  const reducedDescriptors = {};
5277
5606
  forEach(descriptors2, (descriptor, name) => {
@@ -5280,8 +5609,8 @@ var require_axios = __commonJS({
5280
5609
  }
5281
5610
  });
5282
5611
  Object.defineProperties(obj, reducedDescriptors);
5283
- };
5284
- var freezeMethods = (obj) => {
5612
+ }, "reduceDescriptors");
5613
+ var freezeMethods = /* @__PURE__ */ __name((obj) => {
5285
5614
  reduceDescriptors(obj, (descriptor, name) => {
5286
5615
  if (isFunction(obj) && ["arguments", "caller", "callee"].indexOf(name) !== -1) {
5287
5616
  return false;
@@ -5300,26 +5629,26 @@ var require_axios = __commonJS({
5300
5629
  };
5301
5630
  }
5302
5631
  });
5303
- };
5304
- var toObjectSet = (arrayOrString, delimiter) => {
5632
+ }, "freezeMethods");
5633
+ var toObjectSet = /* @__PURE__ */ __name((arrayOrString, delimiter) => {
5305
5634
  const obj = {};
5306
- const define = (arr) => {
5635
+ const define = /* @__PURE__ */ __name((arr) => {
5307
5636
  arr.forEach((value) => {
5308
5637
  obj[value] = true;
5309
5638
  });
5310
- };
5639
+ }, "define");
5311
5640
  isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));
5312
5641
  return obj;
5313
- };
5314
- var noop = () => {
5315
- };
5316
- var toFiniteNumber = (value, defaultValue) => {
5642
+ }, "toObjectSet");
5643
+ var noop = /* @__PURE__ */ __name(() => {
5644
+ }, "noop");
5645
+ var toFiniteNumber = /* @__PURE__ */ __name((value, defaultValue) => {
5317
5646
  value = +value;
5318
5647
  return Number.isFinite(value) ? value : defaultValue;
5319
- };
5320
- var toJSONObject = (obj) => {
5648
+ }, "toFiniteNumber");
5649
+ var toJSONObject = /* @__PURE__ */ __name((obj) => {
5321
5650
  const stack = new Array(10);
5322
- const visit = (source, i) => {
5651
+ const visit = /* @__PURE__ */ __name((source, i) => {
5323
5652
  if (isObject(source)) {
5324
5653
  if (stack.indexOf(source) >= 0) {
5325
5654
  return;
@@ -5336,9 +5665,9 @@ var require_axios = __commonJS({
5336
5665
  }
5337
5666
  }
5338
5667
  return source;
5339
- };
5668
+ }, "visit");
5340
5669
  return visit(obj, 0);
5341
- };
5670
+ }, "toJSONObject");
5342
5671
  var utils = {
5343
5672
  isArray,
5344
5673
  isArrayBuffer,
@@ -5402,8 +5731,9 @@ var require_axios = __commonJS({
5402
5731
  request && (this.request = request);
5403
5732
  response && (this.response = response);
5404
5733
  }
5734
+ __name(AxiosError, "AxiosError");
5405
5735
  utils.inherits(AxiosError, Error, {
5406
- toJSON: function toJSON() {
5736
+ toJSON: /* @__PURE__ */ __name(function toJSON() {
5407
5737
  return {
5408
5738
  // Standard
5409
5739
  message: this.message,
@@ -5421,7 +5751,7 @@ var require_axios = __commonJS({
5421
5751
  code: this.code,
5422
5752
  status: this.response && this.response.status ? this.response.status : null
5423
5753
  };
5424
- }
5754
+ }, "toJSON")
5425
5755
  });
5426
5756
  var prototype$1 = AxiosError.prototype;
5427
5757
  var descriptors = {};
@@ -5446,9 +5776,9 @@ var require_axios = __commonJS({
5446
5776
  Object.defineProperty(prototype$1, "isAxiosError", { value: true });
5447
5777
  AxiosError.from = (error, code, config, request, response, customProps) => {
5448
5778
  const axiosError = Object.create(prototype$1);
5449
- utils.toFlatObject(error, axiosError, function filter(obj) {
5779
+ utils.toFlatObject(error, axiosError, /* @__PURE__ */ __name(function filter(obj) {
5450
5780
  return obj !== Error.prototype;
5451
- }, (prop) => {
5781
+ }, "filter"), (prop) => {
5452
5782
  return prop !== "isAxiosError";
5453
5783
  });
5454
5784
  AxiosError.call(axiosError, error.message, code, config, request, response);
@@ -5462,26 +5792,31 @@ var require_axios = __commonJS({
5462
5792
  function isVisitable(thing) {
5463
5793
  return utils.isPlainObject(thing) || utils.isArray(thing);
5464
5794
  }
5795
+ __name(isVisitable, "isVisitable");
5465
5796
  function removeBrackets(key) {
5466
5797
  return utils.endsWith(key, "[]") ? key.slice(0, -2) : key;
5467
5798
  }
5799
+ __name(removeBrackets, "removeBrackets");
5468
5800
  function renderKey(path, key, dots) {
5469
5801
  if (!path)
5470
5802
  return key;
5471
- return path.concat(key).map(function each(token, i) {
5803
+ return path.concat(key).map(/* @__PURE__ */ __name(function each(token, i) {
5472
5804
  token = removeBrackets(token);
5473
5805
  return !dots && i ? "[" + token + "]" : token;
5474
- }).join(dots ? "." : "");
5806
+ }, "each")).join(dots ? "." : "");
5475
5807
  }
5808
+ __name(renderKey, "renderKey");
5476
5809
  function isFlatArray(arr) {
5477
5810
  return utils.isArray(arr) && !arr.some(isVisitable);
5478
5811
  }
5479
- 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) {
5480
5814
  return /^is[A-Z]/.test(prop);
5481
- });
5815
+ }, "filter"));
5482
5816
  function isSpecCompliant(thing) {
5483
5817
  return thing && utils.isFunction(thing.append) && thing[Symbol.toStringTag] === "FormData" && thing[Symbol.iterator];
5484
5818
  }
5819
+ __name(isSpecCompliant, "isSpecCompliant");
5485
5820
  function toFormData(obj, formData, options) {
5486
5821
  if (!utils.isObject(obj)) {
5487
5822
  throw new TypeError("target must be an object");
@@ -5491,9 +5826,9 @@ var require_axios = __commonJS({
5491
5826
  metaTokens: true,
5492
5827
  dots: false,
5493
5828
  indexes: false
5494
- }, false, function defined(option, source) {
5829
+ }, false, /* @__PURE__ */ __name(function defined(option, source) {
5495
5830
  return !utils.isUndefined(source[option]);
5496
- });
5831
+ }, "defined"));
5497
5832
  const metaTokens = options.metaTokens;
5498
5833
  const visitor = options.visitor || defaultVisitor;
5499
5834
  const dots = options.dots;
@@ -5517,6 +5852,7 @@ var require_axios = __commonJS({
5517
5852
  }
5518
5853
  return value;
5519
5854
  }
5855
+ __name(convertValue, "convertValue");
5520
5856
  function defaultVisitor(value, key, path) {
5521
5857
  let arr = value;
5522
5858
  if (value && !path && typeof value === "object") {
@@ -5525,13 +5861,13 @@ var require_axios = __commonJS({
5525
5861
  value = JSON.stringify(value);
5526
5862
  } else if (utils.isArray(value) && isFlatArray(value) || (utils.isFileList(value) || utils.endsWith(key, "[]") && (arr = utils.toArray(value)))) {
5527
5863
  key = removeBrackets(key);
5528
- arr.forEach(function each(el, index) {
5864
+ arr.forEach(/* @__PURE__ */ __name(function each(el, index) {
5529
5865
  !(utils.isUndefined(el) || el === null) && formData.append(
5530
5866
  // eslint-disable-next-line no-nested-ternary
5531
5867
  indexes === true ? renderKey([key], index, dots) : indexes === null ? key : key + "[]",
5532
5868
  convertValue(el)
5533
5869
  );
5534
- });
5870
+ }, "each"));
5535
5871
  return false;
5536
5872
  }
5537
5873
  }
@@ -5541,6 +5877,7 @@ var require_axios = __commonJS({
5541
5877
  formData.append(renderKey(path, key, dots), convertValue(value));
5542
5878
  return false;
5543
5879
  }
5880
+ __name(defaultVisitor, "defaultVisitor");
5544
5881
  const stack = [];
5545
5882
  const exposedHelpers = Object.assign(predicates, {
5546
5883
  defaultVisitor,
@@ -5554,7 +5891,7 @@ var require_axios = __commonJS({
5554
5891
  throw Error("Circular reference detected in " + path.join("."));
5555
5892
  }
5556
5893
  stack.push(value);
5557
- utils.forEach(value, function each(el, key) {
5894
+ utils.forEach(value, /* @__PURE__ */ __name(function each(el, key) {
5558
5895
  const result = !(utils.isUndefined(el) || el === null) && visitor.call(
5559
5896
  formData,
5560
5897
  el,
@@ -5565,15 +5902,17 @@ var require_axios = __commonJS({
5565
5902
  if (result === true) {
5566
5903
  build(el, path ? path.concat(key) : [key]);
5567
5904
  }
5568
- });
5905
+ }, "each"));
5569
5906
  stack.pop();
5570
5907
  }
5908
+ __name(build, "build");
5571
5909
  if (!utils.isObject(obj)) {
5572
5910
  throw new TypeError("data must be an object");
5573
5911
  }
5574
5912
  build(obj);
5575
5913
  return formData;
5576
5914
  }
5915
+ __name(toFormData, "toFormData");
5577
5916
  function encode$1(str) {
5578
5917
  const charMap = {
5579
5918
  "!": "%21",
@@ -5584,29 +5923,32 @@ var require_axios = __commonJS({
5584
5923
  "%20": "+",
5585
5924
  "%00": "\0"
5586
5925
  };
5587
- return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) {
5926
+ return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, /* @__PURE__ */ __name(function replacer(match) {
5588
5927
  return charMap[match];
5589
- });
5928
+ }, "replacer"));
5590
5929
  }
5930
+ __name(encode$1, "encode$1");
5591
5931
  function AxiosURLSearchParams(params, options) {
5592
5932
  this._pairs = [];
5593
5933
  params && toFormData(params, this, options);
5594
5934
  }
5935
+ __name(AxiosURLSearchParams, "AxiosURLSearchParams");
5595
5936
  var prototype = AxiosURLSearchParams.prototype;
5596
- prototype.append = function append(name, value) {
5937
+ prototype.append = /* @__PURE__ */ __name(function append(name, value) {
5597
5938
  this._pairs.push([name, value]);
5598
- };
5599
- prototype.toString = function toString2(encoder) {
5939
+ }, "append");
5940
+ prototype.toString = /* @__PURE__ */ __name(function toString2(encoder) {
5600
5941
  const _encode = encoder ? function(value) {
5601
5942
  return encoder.call(this, value, encode$1);
5602
5943
  } : encode$1;
5603
- return this._pairs.map(function each(pair) {
5944
+ return this._pairs.map(/* @__PURE__ */ __name(function each(pair) {
5604
5945
  return _encode(pair[0]) + "=" + _encode(pair[1]);
5605
- }, "").join("&");
5606
- };
5946
+ }, "each"), "").join("&");
5947
+ }, "toString");
5607
5948
  function encode(val) {
5608
5949
  return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
5609
5950
  }
5951
+ __name(encode, "encode");
5610
5952
  function buildURL(url, params, options) {
5611
5953
  if (!params) {
5612
5954
  return url;
@@ -5628,6 +5970,7 @@ var require_axios = __commonJS({
5628
5970
  }
5629
5971
  return url;
5630
5972
  }
5973
+ __name(buildURL, "buildURL");
5631
5974
  var InterceptorManager = class {
5632
5975
  constructor() {
5633
5976
  this.handlers = [];
@@ -5682,13 +6025,14 @@ var require_axios = __commonJS({
5682
6025
  * @returns {void}
5683
6026
  */
5684
6027
  forEach(fn) {
5685
- utils.forEach(this.handlers, function forEachHandler(h) {
6028
+ utils.forEach(this.handlers, /* @__PURE__ */ __name(function forEachHandler(h) {
5686
6029
  if (h !== null) {
5687
6030
  fn(h);
5688
6031
  }
5689
- });
6032
+ }, "forEachHandler"));
5690
6033
  }
5691
6034
  };
6035
+ __name(InterceptorManager, "InterceptorManager");
5692
6036
  var InterceptorManager$1 = InterceptorManager;
5693
6037
  var transitionalDefaults = {
5694
6038
  silentJSONParsing: true,
@@ -5730,11 +6074,13 @@ var require_axios = __commonJS({
5730
6074
  }
5731
6075
  }, options));
5732
6076
  }
6077
+ __name(toURLEncodedForm, "toURLEncodedForm");
5733
6078
  function parsePropPath(name) {
5734
6079
  return utils.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
5735
6080
  return match[0] === "[]" ? "" : match[1] || match[0];
5736
6081
  });
5737
6082
  }
6083
+ __name(parsePropPath, "parsePropPath");
5738
6084
  function arrayToObject(arr) {
5739
6085
  const obj = {};
5740
6086
  const keys = Object.keys(arr);
@@ -5747,6 +6093,7 @@ var require_axios = __commonJS({
5747
6093
  }
5748
6094
  return obj;
5749
6095
  }
6096
+ __name(arrayToObject, "arrayToObject");
5750
6097
  function formDataToJSON(formData) {
5751
6098
  function buildPath(path, value, target, index) {
5752
6099
  let name = path[index++];
@@ -5770,6 +6117,7 @@ var require_axios = __commonJS({
5770
6117
  }
5771
6118
  return !isNumericKey;
5772
6119
  }
6120
+ __name(buildPath, "buildPath");
5773
6121
  if (utils.isFormData(formData) && utils.isFunction(formData.entries)) {
5774
6122
  const obj = {};
5775
6123
  utils.forEachEntry(formData, (name, value) => {
@@ -5779,6 +6127,7 @@ var require_axios = __commonJS({
5779
6127
  }
5780
6128
  return null;
5781
6129
  }
6130
+ __name(formDataToJSON, "formDataToJSON");
5782
6131
  var DEFAULT_CONTENT_TYPE = {
5783
6132
  "Content-Type": void 0
5784
6133
  };
@@ -5795,10 +6144,11 @@ var require_axios = __commonJS({
5795
6144
  }
5796
6145
  return (encoder || JSON.stringify)(rawValue);
5797
6146
  }
6147
+ __name(stringifySafely, "stringifySafely");
5798
6148
  var defaults = {
5799
6149
  transitional: transitionalDefaults,
5800
6150
  adapter: ["xhr", "http"],
5801
- transformRequest: [function transformRequest(data, headers) {
6151
+ transformRequest: [/* @__PURE__ */ __name(function transformRequest(data, headers) {
5802
6152
  const contentType = headers.getContentType() || "";
5803
6153
  const hasJSONContentType = contentType.indexOf("application/json") > -1;
5804
6154
  const isObjectPayload = utils.isObject(data);
@@ -5841,8 +6191,8 @@ var require_axios = __commonJS({
5841
6191
  return stringifySafely(data);
5842
6192
  }
5843
6193
  return data;
5844
- }],
5845
- transformResponse: [function transformResponse(data) {
6194
+ }, "transformRequest")],
6195
+ transformResponse: [/* @__PURE__ */ __name(function transformResponse(data) {
5846
6196
  const transitional = this.transitional || defaults.transitional;
5847
6197
  const forcedJSONParsing = transitional && transitional.forcedJSONParsing;
5848
6198
  const JSONRequested = this.responseType === "json";
@@ -5861,7 +6211,7 @@ var require_axios = __commonJS({
5861
6211
  }
5862
6212
  }
5863
6213
  return data;
5864
- }],
6214
+ }, "transformResponse")],
5865
6215
  /**
5866
6216
  * A timeout in milliseconds to abort a request. If set to 0 (default) a
5867
6217
  * timeout is not created.
@@ -5875,21 +6225,21 @@ var require_axios = __commonJS({
5875
6225
  FormData: platform.classes.FormData,
5876
6226
  Blob: platform.classes.Blob
5877
6227
  },
5878
- validateStatus: function validateStatus(status) {
6228
+ validateStatus: /* @__PURE__ */ __name(function validateStatus(status) {
5879
6229
  return status >= 200 && status < 300;
5880
- },
6230
+ }, "validateStatus"),
5881
6231
  headers: {
5882
6232
  common: {
5883
6233
  "Accept": "application/json, text/plain, */*"
5884
6234
  }
5885
6235
  }
5886
6236
  };
5887
- utils.forEach(["delete", "get", "head"], function forEachMethodNoData(method) {
6237
+ utils.forEach(["delete", "get", "head"], /* @__PURE__ */ __name(function forEachMethodNoData(method) {
5888
6238
  defaults.headers[method] = {};
5889
- });
5890
- utils.forEach(["post", "put", "patch"], function forEachMethodWithData(method) {
6239
+ }, "forEachMethodNoData"));
6240
+ utils.forEach(["post", "put", "patch"], /* @__PURE__ */ __name(function forEachMethodWithData(method) {
5891
6241
  defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);
5892
- });
6242
+ }, "forEachMethodWithData"));
5893
6243
  var defaults$1 = defaults;
5894
6244
  var ignoreDuplicateOf = utils.toObjectSet([
5895
6245
  "age",
@@ -5910,12 +6260,12 @@ var require_axios = __commonJS({
5910
6260
  "retry-after",
5911
6261
  "user-agent"
5912
6262
  ]);
5913
- var parseHeaders = (rawHeaders) => {
6263
+ var parseHeaders = /* @__PURE__ */ __name((rawHeaders) => {
5914
6264
  const parsed = {};
5915
6265
  let key;
5916
6266
  let val;
5917
6267
  let i;
5918
- rawHeaders && rawHeaders.split("\n").forEach(function parser(line) {
6268
+ rawHeaders && rawHeaders.split("\n").forEach(/* @__PURE__ */ __name(function parser(line) {
5919
6269
  i = line.indexOf(":");
5920
6270
  key = line.substring(0, i).trim().toLowerCase();
5921
6271
  val = line.substring(i + 1).trim();
@@ -5931,19 +6281,21 @@ var require_axios = __commonJS({
5931
6281
  } else {
5932
6282
  parsed[key] = parsed[key] ? parsed[key] + ", " + val : val;
5933
6283
  }
5934
- });
6284
+ }, "parser"));
5935
6285
  return parsed;
5936
- };
6286
+ }, "parseHeaders");
5937
6287
  var $internals = Symbol("internals");
5938
6288
  function normalizeHeader(header) {
5939
6289
  return header && String(header).trim().toLowerCase();
5940
6290
  }
6291
+ __name(normalizeHeader, "normalizeHeader");
5941
6292
  function normalizeValue(value) {
5942
6293
  if (value === false || value == null) {
5943
6294
  return value;
5944
6295
  }
5945
6296
  return utils.isArray(value) ? value.map(normalizeValue) : String(value);
5946
6297
  }
6298
+ __name(normalizeValue, "normalizeValue");
5947
6299
  function parseTokens(str) {
5948
6300
  const tokens = /* @__PURE__ */ Object.create(null);
5949
6301
  const tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
@@ -5953,9 +6305,11 @@ var require_axios = __commonJS({
5953
6305
  }
5954
6306
  return tokens;
5955
6307
  }
6308
+ __name(parseTokens, "parseTokens");
5956
6309
  function isValidHeaderName(str) {
5957
6310
  return /^[-_a-zA-Z]+$/.test(str.trim());
5958
6311
  }
6312
+ __name(isValidHeaderName, "isValidHeaderName");
5959
6313
  function matchHeaderValue(context, value, header, filter) {
5960
6314
  if (utils.isFunction(filter)) {
5961
6315
  return filter.call(this, value, header);
@@ -5969,11 +6323,13 @@ var require_axios = __commonJS({
5969
6323
  return filter.test(value);
5970
6324
  }
5971
6325
  }
6326
+ __name(matchHeaderValue, "matchHeaderValue");
5972
6327
  function formatHeader(header) {
5973
6328
  return header.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (w, char, str) => {
5974
6329
  return char.toUpperCase() + str;
5975
6330
  });
5976
6331
  }
6332
+ __name(formatHeader, "formatHeader");
5977
6333
  function buildAccessors(obj, header) {
5978
6334
  const accessorName = utils.toCamelCase(" " + header);
5979
6335
  ["get", "set", "has"].forEach((methodName) => {
@@ -5985,6 +6341,7 @@ var require_axios = __commonJS({
5985
6341
  });
5986
6342
  });
5987
6343
  }
6344
+ __name(buildAccessors, "buildAccessors");
5988
6345
  var AxiosHeaders = class {
5989
6346
  constructor(headers) {
5990
6347
  headers && this.set(headers);
@@ -6001,7 +6358,8 @@ var require_axios = __commonJS({
6001
6358
  self2[key || _header] = normalizeValue(_value);
6002
6359
  }
6003
6360
  }
6004
- 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");
6005
6363
  if (utils.isPlainObject(header) || header instanceof this.constructor) {
6006
6364
  setHeaders(header, valueOrRewrite);
6007
6365
  } else if (utils.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
@@ -6054,6 +6412,7 @@ var require_axios = __commonJS({
6054
6412
  }
6055
6413
  }
6056
6414
  }
6415
+ __name(deleteHeader, "deleteHeader");
6057
6416
  if (utils.isArray(header)) {
6058
6417
  header.forEach(deleteHeader);
6059
6418
  } else {
@@ -6123,10 +6482,12 @@ var require_axios = __commonJS({
6123
6482
  accessors[lHeader] = true;
6124
6483
  }
6125
6484
  }
6485
+ __name(defineAccessor, "defineAccessor");
6126
6486
  utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);
6127
6487
  return this;
6128
6488
  }
6129
6489
  };
6490
+ __name(AxiosHeaders, "AxiosHeaders");
6130
6491
  AxiosHeaders.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent"]);
6131
6492
  utils.freezeMethods(AxiosHeaders.prototype);
6132
6493
  utils.freezeMethods(AxiosHeaders);
@@ -6136,19 +6497,22 @@ var require_axios = __commonJS({
6136
6497
  const context = response || config;
6137
6498
  const headers = AxiosHeaders$1.from(context.headers);
6138
6499
  let data = context.data;
6139
- utils.forEach(fns, function transform(fn) {
6500
+ utils.forEach(fns, /* @__PURE__ */ __name(function transform(fn) {
6140
6501
  data = fn.call(config, data, headers.normalize(), response ? response.status : void 0);
6141
- });
6502
+ }, "transform"));
6142
6503
  headers.normalize();
6143
6504
  return data;
6144
6505
  }
6506
+ __name(transformData, "transformData");
6145
6507
  function isCancel(value) {
6146
6508
  return !!(value && value.__CANCEL__);
6147
6509
  }
6510
+ __name(isCancel, "isCancel");
6148
6511
  function CanceledError(message, config, request) {
6149
6512
  AxiosError.call(this, message == null ? "canceled" : message, AxiosError.ERR_CANCELED, config, request);
6150
6513
  this.name = "CanceledError";
6151
6514
  }
6515
+ __name(CanceledError, "CanceledError");
6152
6516
  utils.inherits(CanceledError, AxiosError, {
6153
6517
  __CANCEL__: true
6154
6518
  });
@@ -6167,11 +6531,12 @@ var require_axios = __commonJS({
6167
6531
  ));
6168
6532
  }
6169
6533
  }
6534
+ __name(settle, "settle");
6170
6535
  var cookies = platform.isStandardBrowserEnv ? (
6171
6536
  // Standard browser envs support document.cookie
6172
- function standardBrowserEnv() {
6537
+ (/* @__PURE__ */ __name(function standardBrowserEnv() {
6173
6538
  return {
6174
- write: function write(name, value, expires, path, domain, secure) {
6539
+ write: /* @__PURE__ */ __name(function write(name, value, expires, path, domain, secure) {
6175
6540
  const cookie = [];
6176
6541
  cookie.push(name + "=" + encodeURIComponent(value));
6177
6542
  if (utils.isNumber(expires)) {
@@ -6187,46 +6552,49 @@ var require_axios = __commonJS({
6187
6552
  cookie.push("secure");
6188
6553
  }
6189
6554
  document.cookie = cookie.join("; ");
6190
- },
6191
- read: function read(name) {
6555
+ }, "write"),
6556
+ read: /* @__PURE__ */ __name(function read(name) {
6192
6557
  const match = document.cookie.match(new RegExp("(^|;\\s*)(" + name + ")=([^;]*)"));
6193
6558
  return match ? decodeURIComponent(match[3]) : null;
6194
- },
6195
- remove: function remove(name) {
6559
+ }, "read"),
6560
+ remove: /* @__PURE__ */ __name(function remove(name) {
6196
6561
  this.write(name, "", Date.now() - 864e5);
6197
- }
6562
+ }, "remove")
6198
6563
  };
6199
- }()
6564
+ }, "standardBrowserEnv"))()
6200
6565
  ) : (
6201
6566
  // Non standard browser env (web workers, react-native) lack needed support.
6202
- function nonStandardBrowserEnv() {
6567
+ (/* @__PURE__ */ __name(function nonStandardBrowserEnv() {
6203
6568
  return {
6204
- write: function write() {
6205
- },
6206
- read: function read() {
6569
+ write: /* @__PURE__ */ __name(function write() {
6570
+ }, "write"),
6571
+ read: /* @__PURE__ */ __name(function read() {
6207
6572
  return null;
6208
- },
6209
- remove: function remove() {
6210
- }
6573
+ }, "read"),
6574
+ remove: /* @__PURE__ */ __name(function remove() {
6575
+ }, "remove")
6211
6576
  };
6212
- }()
6577
+ }, "nonStandardBrowserEnv"))()
6213
6578
  );
6214
6579
  function isAbsoluteURL(url) {
6215
6580
  return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url);
6216
6581
  }
6582
+ __name(isAbsoluteURL, "isAbsoluteURL");
6217
6583
  function combineURLs(baseURL, relativeURL) {
6218
6584
  return relativeURL ? baseURL.replace(/\/+$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
6219
6585
  }
6586
+ __name(combineURLs, "combineURLs");
6220
6587
  function buildFullPath(baseURL, requestedURL) {
6221
6588
  if (baseURL && !isAbsoluteURL(requestedURL)) {
6222
6589
  return combineURLs(baseURL, requestedURL);
6223
6590
  }
6224
6591
  return requestedURL;
6225
6592
  }
6593
+ __name(buildFullPath, "buildFullPath");
6226
6594
  var isURLSameOrigin = platform.isStandardBrowserEnv ? (
6227
6595
  // Standard browser envs have full support of the APIs needed to test
6228
6596
  // whether the request URL is of the same origin as current location.
6229
- function standardBrowserEnv() {
6597
+ (/* @__PURE__ */ __name(function standardBrowserEnv() {
6230
6598
  const msie = /(msie|trident)/i.test(navigator.userAgent);
6231
6599
  const urlParsingNode = document.createElement("a");
6232
6600
  let originURL;
@@ -6248,24 +6616,26 @@ var require_axios = __commonJS({
6248
6616
  pathname: urlParsingNode.pathname.charAt(0) === "/" ? urlParsingNode.pathname : "/" + urlParsingNode.pathname
6249
6617
  };
6250
6618
  }
6619
+ __name(resolveURL, "resolveURL");
6251
6620
  originURL = resolveURL(window.location.href);
6252
- return function isURLSameOrigin2(requestURL) {
6621
+ return /* @__PURE__ */ __name(function isURLSameOrigin2(requestURL) {
6253
6622
  const parsed = utils.isString(requestURL) ? resolveURL(requestURL) : requestURL;
6254
6623
  return parsed.protocol === originURL.protocol && parsed.host === originURL.host;
6255
- };
6256
- }()
6624
+ }, "isURLSameOrigin");
6625
+ }, "standardBrowserEnv"))()
6257
6626
  ) : (
6258
6627
  // Non standard browser envs (web workers, react-native) lack needed support.
6259
- function nonStandardBrowserEnv() {
6260
- return function isURLSameOrigin2() {
6628
+ (/* @__PURE__ */ __name(function nonStandardBrowserEnv() {
6629
+ return /* @__PURE__ */ __name(function isURLSameOrigin2() {
6261
6630
  return true;
6262
- };
6263
- }()
6631
+ }, "isURLSameOrigin");
6632
+ }, "nonStandardBrowserEnv"))()
6264
6633
  );
6265
6634
  function parseProtocol(url) {
6266
6635
  const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
6267
6636
  return match && match[1] || "";
6268
6637
  }
6638
+ __name(parseProtocol, "parseProtocol");
6269
6639
  function speedometer(samplesCount, min) {
6270
6640
  samplesCount = samplesCount || 10;
6271
6641
  const bytes = new Array(samplesCount);
@@ -6274,7 +6644,7 @@ var require_axios = __commonJS({
6274
6644
  let tail = 0;
6275
6645
  let firstSampleTS;
6276
6646
  min = min !== void 0 ? min : 1e3;
6277
- return function push(chunkLength) {
6647
+ return /* @__PURE__ */ __name(function push(chunkLength) {
6278
6648
  const now = Date.now();
6279
6649
  const startedAt = timestamps[tail];
6280
6650
  if (!firstSampleTS) {
@@ -6297,8 +6667,9 @@ var require_axios = __commonJS({
6297
6667
  }
6298
6668
  const passed = startedAt && now - startedAt;
6299
6669
  return passed ? Math.round(bytesCount * 1e3 / passed) : void 0;
6300
- };
6670
+ }, "push");
6301
6671
  }
6672
+ __name(speedometer, "speedometer");
6302
6673
  function progressEventReducer(listener, isDownloadStream) {
6303
6674
  let bytesNotified = 0;
6304
6675
  const _speedometer = speedometer(50, 250);
@@ -6322,9 +6693,10 @@ var require_axios = __commonJS({
6322
6693
  listener(data);
6323
6694
  };
6324
6695
  }
6696
+ __name(progressEventReducer, "progressEventReducer");
6325
6697
  var isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
6326
6698
  var xhrAdapter = isXHRAdapterSupported && function(config) {
6327
- return new Promise(function dispatchXhrRequest(resolve, reject) {
6699
+ return new Promise(/* @__PURE__ */ __name(function dispatchXhrRequest(resolve, reject) {
6328
6700
  let requestData = config.data;
6329
6701
  const requestHeaders = AxiosHeaders$1.from(config.headers).normalize();
6330
6702
  const responseType = config.responseType;
@@ -6337,6 +6709,7 @@ var require_axios = __commonJS({
6337
6709
  config.signal.removeEventListener("abort", onCanceled);
6338
6710
  }
6339
6711
  }
6712
+ __name(done, "done");
6340
6713
  if (utils.isFormData(requestData) && (platform.isStandardBrowserEnv || platform.isStandardBrowserWebWorkerEnv)) {
6341
6714
  requestHeaders.setContentType(false);
6342
6715
  }
@@ -6365,19 +6738,20 @@ var require_axios = __commonJS({
6365
6738
  config,
6366
6739
  request
6367
6740
  };
6368
- settle(function _resolve(value) {
6741
+ settle(/* @__PURE__ */ __name(function _resolve(value) {
6369
6742
  resolve(value);
6370
6743
  done();
6371
- }, function _reject(err) {
6744
+ }, "_resolve"), /* @__PURE__ */ __name(function _reject(err) {
6372
6745
  reject(err);
6373
6746
  done();
6374
- }, response);
6747
+ }, "_reject"), response);
6375
6748
  request = null;
6376
6749
  }
6750
+ __name(onloadend, "onloadend");
6377
6751
  if ("onloadend" in request) {
6378
6752
  request.onloadend = onloadend;
6379
6753
  } else {
6380
- request.onreadystatechange = function handleLoad() {
6754
+ request.onreadystatechange = /* @__PURE__ */ __name(function handleLoad() {
6381
6755
  if (!request || request.readyState !== 4) {
6382
6756
  return;
6383
6757
  }
@@ -6385,20 +6759,20 @@ var require_axios = __commonJS({
6385
6759
  return;
6386
6760
  }
6387
6761
  setTimeout(onloadend);
6388
- };
6762
+ }, "handleLoad");
6389
6763
  }
6390
- request.onabort = function handleAbort() {
6764
+ request.onabort = /* @__PURE__ */ __name(function handleAbort() {
6391
6765
  if (!request) {
6392
6766
  return;
6393
6767
  }
6394
6768
  reject(new AxiosError("Request aborted", AxiosError.ECONNABORTED, config, request));
6395
6769
  request = null;
6396
- };
6397
- request.onerror = function handleError() {
6770
+ }, "handleAbort");
6771
+ request.onerror = /* @__PURE__ */ __name(function handleError() {
6398
6772
  reject(new AxiosError("Network Error", AxiosError.ERR_NETWORK, config, request));
6399
6773
  request = null;
6400
- };
6401
- request.ontimeout = function handleTimeout() {
6774
+ }, "handleError");
6775
+ request.ontimeout = /* @__PURE__ */ __name(function handleTimeout() {
6402
6776
  let timeoutErrorMessage = config.timeout ? "timeout of " + config.timeout + "ms exceeded" : "timeout exceeded";
6403
6777
  const transitional = config.transitional || transitionalDefaults;
6404
6778
  if (config.timeoutErrorMessage) {
@@ -6411,7 +6785,7 @@ var require_axios = __commonJS({
6411
6785
  request
6412
6786
  ));
6413
6787
  request = null;
6414
- };
6788
+ }, "handleTimeout");
6415
6789
  if (platform.isStandardBrowserEnv) {
6416
6790
  const xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName && cookies.read(config.xsrfCookieName);
6417
6791
  if (xsrfValue) {
@@ -6420,9 +6794,9 @@ var require_axios = __commonJS({
6420
6794
  }
6421
6795
  requestData === void 0 && requestHeaders.setContentType(null);
6422
6796
  if ("setRequestHeader" in request) {
6423
- utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {
6797
+ utils.forEach(requestHeaders.toJSON(), /* @__PURE__ */ __name(function setRequestHeader(val, key) {
6424
6798
  request.setRequestHeader(key, val);
6425
- });
6799
+ }, "setRequestHeader"));
6426
6800
  }
6427
6801
  if (!utils.isUndefined(config.withCredentials)) {
6428
6802
  request.withCredentials = !!config.withCredentials;
@@ -6437,14 +6811,14 @@ var require_axios = __commonJS({
6437
6811
  request.upload.addEventListener("progress", progressEventReducer(config.onUploadProgress));
6438
6812
  }
6439
6813
  if (config.cancelToken || config.signal) {
6440
- onCanceled = (cancel) => {
6814
+ onCanceled = /* @__PURE__ */ __name((cancel) => {
6441
6815
  if (!request) {
6442
6816
  return;
6443
6817
  }
6444
6818
  reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);
6445
6819
  request.abort();
6446
6820
  request = null;
6447
- };
6821
+ }, "onCanceled");
6448
6822
  config.cancelToken && config.cancelToken.subscribe(onCanceled);
6449
6823
  if (config.signal) {
6450
6824
  config.signal.aborted ? onCanceled() : config.signal.addEventListener("abort", onCanceled);
@@ -6456,7 +6830,7 @@ var require_axios = __commonJS({
6456
6830
  return;
6457
6831
  }
6458
6832
  request.send(requestData || null);
6459
- });
6833
+ }, "dispatchXhrRequest"));
6460
6834
  };
6461
6835
  var knownAdapters = {
6462
6836
  http: httpAdapter,
@@ -6509,6 +6883,7 @@ var require_axios = __commonJS({
6509
6883
  throw new CanceledError(null, config);
6510
6884
  }
6511
6885
  }
6886
+ __name(throwIfCancellationRequested, "throwIfCancellationRequested");
6512
6887
  function dispatchRequest(config) {
6513
6888
  throwIfCancellationRequested(config);
6514
6889
  config.headers = AxiosHeaders$1.from(config.headers);
@@ -6520,7 +6895,7 @@ var require_axios = __commonJS({
6520
6895
  config.headers.setContentType("application/x-www-form-urlencoded", false);
6521
6896
  }
6522
6897
  const adapter = adapters.getAdapter(config.adapter || defaults$1.adapter);
6523
- return adapter(config).then(function onAdapterResolution(response) {
6898
+ return adapter(config).then(/* @__PURE__ */ __name(function onAdapterResolution(response) {
6524
6899
  throwIfCancellationRequested(config);
6525
6900
  response.data = transformData.call(
6526
6901
  config,
@@ -6529,7 +6904,7 @@ var require_axios = __commonJS({
6529
6904
  );
6530
6905
  response.headers = AxiosHeaders$1.from(response.headers);
6531
6906
  return response;
6532
- }, function onAdapterRejection(reason) {
6907
+ }, "onAdapterResolution"), /* @__PURE__ */ __name(function onAdapterRejection(reason) {
6533
6908
  if (!isCancel(reason)) {
6534
6909
  throwIfCancellationRequested(config);
6535
6910
  if (reason && reason.response) {
@@ -6542,9 +6917,10 @@ var require_axios = __commonJS({
6542
6917
  }
6543
6918
  }
6544
6919
  return Promise.reject(reason);
6545
- });
6920
+ }, "onAdapterRejection"));
6546
6921
  }
6547
- 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");
6548
6924
  function mergeConfig(config1, config2) {
6549
6925
  config2 = config2 || {};
6550
6926
  const config = {};
@@ -6558,6 +6934,7 @@ var require_axios = __commonJS({
6558
6934
  }
6559
6935
  return source;
6560
6936
  }
6937
+ __name(getMergedValue, "getMergedValue");
6561
6938
  function mergeDeepProperties(a, b, caseless) {
6562
6939
  if (!utils.isUndefined(b)) {
6563
6940
  return getMergedValue(a, b, caseless);
@@ -6565,11 +6942,13 @@ var require_axios = __commonJS({
6565
6942
  return getMergedValue(void 0, a, caseless);
6566
6943
  }
6567
6944
  }
6945
+ __name(mergeDeepProperties, "mergeDeepProperties");
6568
6946
  function valueFromConfig2(a, b) {
6569
6947
  if (!utils.isUndefined(b)) {
6570
6948
  return getMergedValue(void 0, b);
6571
6949
  }
6572
6950
  }
6951
+ __name(valueFromConfig2, "valueFromConfig2");
6573
6952
  function defaultToConfig2(a, b) {
6574
6953
  if (!utils.isUndefined(b)) {
6575
6954
  return getMergedValue(void 0, b);
@@ -6577,6 +6956,7 @@ var require_axios = __commonJS({
6577
6956
  return getMergedValue(void 0, a);
6578
6957
  }
6579
6958
  }
6959
+ __name(defaultToConfig2, "defaultToConfig2");
6580
6960
  function mergeDirectKeys(a, b, prop) {
6581
6961
  if (prop in config2) {
6582
6962
  return getMergedValue(a, b);
@@ -6584,6 +6964,7 @@ var require_axios = __commonJS({
6584
6964
  return getMergedValue(void 0, a);
6585
6965
  }
6586
6966
  }
6967
+ __name(mergeDirectKeys, "mergeDirectKeys");
6587
6968
  const mergeMap = {
6588
6969
  url: valueFromConfig2,
6589
6970
  method: valueFromConfig2,
@@ -6614,25 +6995,27 @@ var require_axios = __commonJS({
6614
6995
  validateStatus: mergeDirectKeys,
6615
6996
  headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
6616
6997
  };
6617
- 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) {
6618
6999
  const merge2 = mergeMap[prop] || mergeDeepProperties;
6619
7000
  const configValue = merge2(config1[prop], config2[prop], prop);
6620
7001
  utils.isUndefined(configValue) && merge2 !== mergeDirectKeys || (config[prop] = configValue);
6621
- });
7002
+ }, "computeConfigValue"));
6622
7003
  return config;
6623
7004
  }
7005
+ __name(mergeConfig, "mergeConfig");
6624
7006
  var VERSION = "1.2.3";
6625
7007
  var validators$1 = {};
6626
7008
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
6627
- validators$1[type] = function validator2(thing) {
7009
+ validators$1[type] = /* @__PURE__ */ __name(function validator2(thing) {
6628
7010
  return typeof thing === type || "a" + (i < 1 ? "n " : " ") + type;
6629
- };
7011
+ }, "validator");
6630
7012
  });
6631
7013
  var deprecatedWarnings = {};
6632
- validators$1.transitional = function transitional(validator2, version, message) {
7014
+ validators$1.transitional = /* @__PURE__ */ __name(function transitional(validator2, version, message) {
6633
7015
  function formatMessage(opt, desc) {
6634
7016
  return "[Axios v" + VERSION + "] Transitional option '" + opt + "'" + desc + (message ? ". " + message : "");
6635
7017
  }
7018
+ __name(formatMessage, "formatMessage");
6636
7019
  return (value, opt, opts) => {
6637
7020
  if (validator2 === false) {
6638
7021
  throw new AxiosError(
@@ -6651,7 +7034,7 @@ var require_axios = __commonJS({
6651
7034
  }
6652
7035
  return validator2 ? validator2(value, opt, opts) : true;
6653
7036
  };
6654
- };
7037
+ }, "transitional");
6655
7038
  function assertOptions(options, schema, allowUnknown) {
6656
7039
  if (typeof options !== "object") {
6657
7040
  throw new AxiosError("options must be an object", AxiosError.ERR_BAD_OPTION_VALUE);
@@ -6674,6 +7057,7 @@ var require_axios = __commonJS({
6674
7057
  }
6675
7058
  }
6676
7059
  }
7060
+ __name(assertOptions, "assertOptions");
6677
7061
  var validator = {
6678
7062
  assertOptions,
6679
7063
  validators: validators$1
@@ -6732,17 +7116,17 @@ var require_axios = __commonJS({
6732
7116
  config.headers = AxiosHeaders$1.concat(contextHeaders, headers);
6733
7117
  const requestInterceptorChain = [];
6734
7118
  let synchronousRequestInterceptors = true;
6735
- this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {
7119
+ this.interceptors.request.forEach(/* @__PURE__ */ __name(function unshiftRequestInterceptors(interceptor) {
6736
7120
  if (typeof interceptor.runWhen === "function" && interceptor.runWhen(config) === false) {
6737
7121
  return;
6738
7122
  }
6739
7123
  synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
6740
7124
  requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
6741
- });
7125
+ }, "unshiftRequestInterceptors"));
6742
7126
  const responseInterceptorChain = [];
6743
- this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
7127
+ this.interceptors.response.forEach(/* @__PURE__ */ __name(function pushResponseInterceptors(interceptor) {
6744
7128
  responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
6745
- });
7129
+ }, "pushResponseInterceptors"));
6746
7130
  let promise;
6747
7131
  let i = 0;
6748
7132
  let len;
@@ -6788,7 +7172,8 @@ var require_axios = __commonJS({
6788
7172
  return buildURL(fullPath, config.params, config.paramsSerializer);
6789
7173
  }
6790
7174
  };
6791
- 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) {
6792
7177
  Axios.prototype[method] = function(url, config) {
6793
7178
  return this.request(mergeConfig(config || {}, {
6794
7179
  method,
@@ -6796,10 +7181,10 @@ var require_axios = __commonJS({
6796
7181
  data: (config || {}).data
6797
7182
  }));
6798
7183
  };
6799
- });
6800
- utils.forEach(["post", "put", "patch"], function forEachMethodWithData(method) {
7184
+ }, "forEachMethodNoData"));
7185
+ utils.forEach(["post", "put", "patch"], /* @__PURE__ */ __name(function forEachMethodWithData(method) {
6801
7186
  function generateHTTPMethod(isForm) {
6802
- return function httpMethod(url, data, config) {
7187
+ return /* @__PURE__ */ __name(function httpMethod(url, data, config) {
6803
7188
  return this.request(mergeConfig(config || {}, {
6804
7189
  method,
6805
7190
  headers: isForm ? {
@@ -6808,11 +7193,12 @@ var require_axios = __commonJS({
6808
7193
  url,
6809
7194
  data
6810
7195
  }));
6811
- };
7196
+ }, "httpMethod");
6812
7197
  }
7198
+ __name(generateHTTPMethod, "generateHTTPMethod");
6813
7199
  Axios.prototype[method] = generateHTTPMethod();
6814
7200
  Axios.prototype[method + "Form"] = generateHTTPMethod(true);
6815
- });
7201
+ }, "forEachMethodWithData"));
6816
7202
  var Axios$1 = Axios;
6817
7203
  var CancelToken = class {
6818
7204
  constructor(executor) {
@@ -6820,9 +7206,9 @@ var require_axios = __commonJS({
6820
7206
  throw new TypeError("executor must be a function.");
6821
7207
  }
6822
7208
  let resolvePromise;
6823
- this.promise = new Promise(function promiseExecutor(resolve) {
7209
+ this.promise = new Promise(/* @__PURE__ */ __name(function promiseExecutor(resolve) {
6824
7210
  resolvePromise = resolve;
6825
- });
7211
+ }, "promiseExecutor"));
6826
7212
  const token = this;
6827
7213
  this.promise.then((cancel) => {
6828
7214
  if (!token._listeners)
@@ -6839,18 +7225,18 @@ var require_axios = __commonJS({
6839
7225
  token.subscribe(resolve);
6840
7226
  _resolve = resolve;
6841
7227
  }).then(onfulfilled);
6842
- promise.cancel = function reject() {
7228
+ promise.cancel = /* @__PURE__ */ __name(function reject() {
6843
7229
  token.unsubscribe(_resolve);
6844
- };
7230
+ }, "reject");
6845
7231
  return promise;
6846
7232
  };
6847
- executor(function cancel(message, config, request) {
7233
+ executor(/* @__PURE__ */ __name(function cancel(message, config, request) {
6848
7234
  if (token.reason) {
6849
7235
  return;
6850
7236
  }
6851
7237
  token.reason = new CanceledError(message, config, request);
6852
7238
  resolvePromise(token.reason);
6853
- });
7239
+ }, "cancel"));
6854
7240
  }
6855
7241
  /**
6856
7242
  * Throws a `CanceledError` if cancellation has been requested.
@@ -6892,24 +7278,27 @@ var require_axios = __commonJS({
6892
7278
  */
6893
7279
  static source() {
6894
7280
  let cancel;
6895
- const token = new CancelToken(function executor(c) {
7281
+ const token = new CancelToken(/* @__PURE__ */ __name(function executor(c) {
6896
7282
  cancel = c;
6897
- });
7283
+ }, "executor"));
6898
7284
  return {
6899
7285
  token,
6900
7286
  cancel
6901
7287
  };
6902
7288
  }
6903
7289
  };
7290
+ __name(CancelToken, "CancelToken");
6904
7291
  var CancelToken$1 = CancelToken;
6905
7292
  function spread(callback) {
6906
- return function wrap(arr) {
7293
+ return /* @__PURE__ */ __name(function wrap(arr) {
6907
7294
  return callback.apply(null, arr);
6908
- };
7295
+ }, "wrap");
6909
7296
  }
7297
+ __name(spread, "spread");
6910
7298
  function isAxiosError(payload) {
6911
7299
  return utils.isObject(payload) && payload.isAxiosError === true;
6912
7300
  }
7301
+ __name(isAxiosError, "isAxiosError");
6913
7302
  var HttpStatusCode = {
6914
7303
  Continue: 100,
6915
7304
  SwitchingProtocols: 101,
@@ -6984,11 +7373,12 @@ var require_axios = __commonJS({
6984
7373
  const instance = bind(Axios$1.prototype.request, context);
6985
7374
  utils.extend(instance, Axios$1.prototype, context, { allOwnKeys: true });
6986
7375
  utils.extend(instance, context, null, { allOwnKeys: true });
6987
- instance.create = function create(instanceConfig) {
7376
+ instance.create = /* @__PURE__ */ __name(function create(instanceConfig) {
6988
7377
  return createInstance(mergeConfig(defaultConfig, instanceConfig));
6989
- };
7378
+ }, "create");
6990
7379
  return instance;
6991
7380
  }
7381
+ __name(createInstance, "createInstance");
6992
7382
  var axios = createInstance(defaults$1);
6993
7383
  axios.Axios = Axios$1;
6994
7384
  axios.CanceledError = CanceledError;
@@ -6998,9 +7388,9 @@ var require_axios = __commonJS({
6998
7388
  axios.toFormData = toFormData;
6999
7389
  axios.AxiosError = AxiosError;
7000
7390
  axios.Cancel = axios.CanceledError;
7001
- axios.all = function all(promises) {
7391
+ axios.all = /* @__PURE__ */ __name(function all(promises) {
7002
7392
  return Promise.all(promises);
7003
- };
7393
+ }, "all");
7004
7394
  axios.spread = spread;
7005
7395
  axios.isAxiosError = isAxiosError;
7006
7396
  axios.mergeConfig = mergeConfig;
@@ -7015,11 +7405,19 @@ var require_axios = __commonJS({
7015
7405
  // src/Client/index.js
7016
7406
  var require_Client = __commonJS({
7017
7407
  "src/Client/index.js"(exports, module) {
7408
+ var AdminCreateCustomer = require_AdminCreateCustomer();
7409
+ var AdminUpdateCustomer = require_AdminUpdateCustomer();
7410
+ var AdminDescribeCustomer = require_AdminDescribeCustomer();
7018
7411
  var AdminListCustomers = require_AdminListCustomers();
7019
7412
  var AdminListProperties = require_AdminListProperties();
7020
7413
  var AdminUpdateProperty = require_AdminUpdateProperty();
7021
7414
  var AdminDescribeProperty = require_AdminDescribeProperty();
7022
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();
7023
7421
  var LoginUser = require_LoginUser();
7024
7422
  var RefreshToken = require_RefreshToken();
7025
7423
  var RequestLoginLink = require_RequestLoginLink();
@@ -7227,7 +7625,7 @@ var require_Client = __commonJS({
7227
7625
  }
7228
7626
  if (expectedError && newTokensNeeded) {
7229
7627
  return this.RefreshToken().then(() => {
7230
- return this.http(originalReq);
7628
+ return this._http(originalReq);
7231
7629
  });
7232
7630
  }
7233
7631
  } catch (error2) {
@@ -7258,11 +7656,20 @@ var require_Client = __commonJS({
7258
7656
  this.emit("LoginRequired");
7259
7657
  }
7260
7658
  };
7659
+ __name(KohostApiClient, "KohostApiClient");
7660
+ KohostApiClient.prototype.AdminCreateCustomer = AdminCreateCustomer;
7661
+ KohostApiClient.prototype.AdminUpdateCustomer = AdminUpdateCustomer;
7662
+ KohostApiClient.prototype.AdminDescribeCustomer = AdminDescribeCustomer;
7261
7663
  KohostApiClient.prototype.AdminListCustomers = AdminListCustomers;
7262
7664
  KohostApiClient.prototype.AdminListProperties = AdminListProperties;
7263
7665
  KohostApiClient.prototype.AdminUpdateProperty = AdminUpdateProperty;
7264
7666
  KohostApiClient.prototype.AdminDescribeProperty = AdminDescribeProperty;
7265
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;
7266
7673
  KohostApiClient.prototype.LoginUser = LoginUser;
7267
7674
  KohostApiClient.prototype.RefreshToken = RefreshToken;
7268
7675
  KohostApiClient.prototype.RequestLoginLink = RequestLoginLink;