nuki-api-js 0.2.1 → 1.1.0

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.
@@ -0,0 +1,1597 @@
1
+ import { DeleteAddressUnitsResourceBody, DeleteSmartlocksAuthsResourceBody, OpenerIntercomBrand, GetOpenerBrandsResourceStatus200, OpenerIntercomModel, GetOpenerIntercomsResourceStatus200, PostAccountsResourceBody, PostAccountEmailChangeResourceBody, PostAccountOtpResourceBody, PostAccountPasswordResetResourceBody, PutAccountSettingResourceBody, PutAccountSubsResourceBody, PostAccountSubResourceBody, PutAccountUsersResourceBody, PostAccountUserResourceBody, PutAddressesResourceBody, PostAddressResourceBody, PostReservationAccessTimesUpdateResourceBody, PutAddressUnitsResourceBody, PutDecentralWebhooksResourceBody, PutApiKeysResourceBody, PostApiKeyResourceBody, PostApiKeyAdvancedResourceBody, PutApiKeyAdvancedResourceBody, PutApiKeyTokensResourceBody, PostApiKeyTokenResourceBody, PostSmartlockBulkWebConfigResourceBody, PutNotificationsResourceBody, PostNotificationResourceBody, PostSmartlocksAuthsResourceBody, PutSmartlocksAuthsResourceBody, PutSmartlockAuthsAdvancedResourceBody, PostSmartlockResourceBody, PostSmartlockActionResourceBody, PostSmartlockActionAdvancedResourceBody, PostSmartlockAdminPinResourceBody, PostSmartlockAdvancedConfigResourceBody, PostSmartlockOpenerAdvancedConfigResourceBody, PostSmartdoorAdvancedConfigResourceBody, PutSmartlockAuthsResourceBody, PostSmartlockAuthWithSharedKeyResourceBody, PostSmartlockAuthResourceBody, PostSmartlockConfigResourceBody, PostSmartlockWebConfigResourceBody } from './types.mjs';
2
+
3
+ type RequestInit = {
4
+ body?: string | FormData | URLSearchParams | undefined;
5
+ headers?: Record<string, string> | undefined;
6
+ method?: string | undefined;
7
+ signal?: any | undefined;
8
+ };
9
+ type Response = {
10
+ ok: boolean;
11
+ status: number;
12
+ url: string;
13
+ json(): Promise<any>;
14
+ text(): Promise<string>;
15
+ headers?: {
16
+ get(name: string): string | null;
17
+ } | undefined;
18
+ };
19
+ type FetchImpl = (url: string, init?: RequestInit | undefined) => Promise<Response>;
20
+
21
+ type FetcherConfig = {
22
+ token?: string | null;
23
+ fetchImpl?: FetchImpl;
24
+ headers?: Record<string, any>;
25
+ };
26
+ type FetcherOptions<TBody, THeaders, TQueryParams, TPathParams> = {
27
+ url: string;
28
+ method: string;
29
+ body?: TBody | undefined;
30
+ headers?: THeaders | undefined;
31
+ queryParams?: TQueryParams | undefined;
32
+ pathParams?: TPathParams | undefined;
33
+ signal?: AbortSignal | undefined;
34
+ } & FetcherConfig;
35
+ declare function client<TData, TError, TBody, THeaders, TQueryParams, TPathParams>({ url, method, body, headers, pathParams, queryParams, signal, token, fetchImpl, }: FetcherOptions<TBody, THeaders, TQueryParams, TPathParams>): Promise<TData>;
36
+
37
+ /**
38
+ * @summary Get an account
39
+ * @link /account
40
+ */
41
+ declare function getAccountsResource({ config }?: {
42
+ config?: Partial<FetcherConfig> & {
43
+ client?: typeof client;
44
+ };
45
+ }): Promise<unknown>;
46
+ /**
47
+ * @summary Update an account
48
+ * @link /account
49
+ */
50
+ declare function postAccountsResource({ body, queryParams, config, }?: {
51
+ body: PostAccountsResourceBody;
52
+ queryParams?: {
53
+ deleteApiTokens?: boolean;
54
+ };
55
+ config?: Partial<FetcherConfig> & {
56
+ client?: typeof client;
57
+ };
58
+ }): Promise<unknown>;
59
+ /**
60
+ * @summary Delete an account
61
+ * @link /account
62
+ */
63
+ declare function deleteAccountsResource({ config }?: {
64
+ config?: Partial<FetcherConfig> & {
65
+ client?: typeof client;
66
+ };
67
+ }): Promise<unknown>;
68
+ /**
69
+ * @summary Trigger the email change verification email
70
+ * @link /account/email/change
71
+ */
72
+ declare function postAccountEmailChangeResource({ body, config, }?: {
73
+ body: PostAccountEmailChangeResourceBody;
74
+ config?: Partial<FetcherConfig> & {
75
+ client?: typeof client;
76
+ };
77
+ }): Promise<unknown>;
78
+ /**
79
+ * @summary Trigger the email change verification email
80
+ * @link /account/email/verify
81
+ */
82
+ declare function postAccountEmailVerifyResource({ config }?: {
83
+ config?: Partial<FetcherConfig> & {
84
+ client?: typeof client;
85
+ };
86
+ }): Promise<unknown>;
87
+ /**
88
+ * @summary Get all integrations for this account
89
+ * @link /account/integration
90
+ */
91
+ declare function getAccountIntegrationsResource({ config }?: {
92
+ config?: Partial<FetcherConfig> & {
93
+ client?: typeof client;
94
+ };
95
+ }): Promise<unknown>;
96
+ /**
97
+ * @summary Delete an integration
98
+ * @link /account/integration
99
+ */
100
+ declare function deleteAccountIntegrationsResource({ queryParams, config, }?: {
101
+ queryParams?: {
102
+ apiKeyId?: number;
103
+ tokenId?: number;
104
+ };
105
+ config?: Partial<FetcherConfig> & {
106
+ client?: typeof client;
107
+ };
108
+ }): Promise<unknown>;
109
+ /**
110
+ * @summary Enable one-time password for an account
111
+ * @link /account/otp
112
+ */
113
+ declare function postAccountOtpResource({ body, config, }?: {
114
+ body: PostAccountOtpResourceBody;
115
+ config?: Partial<FetcherConfig> & {
116
+ client?: typeof client;
117
+ };
118
+ }): Promise<unknown>;
119
+ /**
120
+ * @summary Create a one-time password secret
121
+ * @link /account/otp
122
+ */
123
+ declare function putAccountOtpResource({ config }?: {
124
+ config?: Partial<FetcherConfig> & {
125
+ client?: typeof client;
126
+ };
127
+ }): Promise<unknown>;
128
+ /**
129
+ * @summary Disable one-time password for an account
130
+ * @link /account/otp
131
+ */
132
+ declare function deleteAccountOtpResource({ config }?: {
133
+ config?: Partial<FetcherConfig> & {
134
+ client?: typeof client;
135
+ };
136
+ }): Promise<unknown>;
137
+ /**
138
+ * @summary Reset account password
139
+ * @link /account/password/reset
140
+ */
141
+ declare function postAccountPasswordResetResource({ body, config, }?: {
142
+ body: PostAccountPasswordResetResourceBody;
143
+ config?: Partial<FetcherConfig> & {
144
+ client?: typeof client;
145
+ };
146
+ }): Promise<unknown>;
147
+ /**
148
+ * @summary Get account setting
149
+ * @link /account/setting
150
+ */
151
+ declare function getAccountSettingResource({ config }?: {
152
+ config?: Partial<FetcherConfig> & {
153
+ client?: typeof client;
154
+ };
155
+ }): Promise<unknown>;
156
+ /**
157
+ * @summary Create or update account setting
158
+ * @link /account/setting
159
+ */
160
+ declare function putAccountSettingResource({ body, config, }?: {
161
+ body: PutAccountSettingResourceBody;
162
+ config?: Partial<FetcherConfig> & {
163
+ client?: typeof client;
164
+ };
165
+ }): Promise<unknown>;
166
+ /**
167
+ * @summary Delete an account setting
168
+ * @link /account/setting
169
+ */
170
+ declare function deleteAccountSettingResource({ config }?: {
171
+ config?: Partial<FetcherConfig> & {
172
+ client?: typeof client;
173
+ };
174
+ }): Promise<unknown>;
175
+ /**
176
+ * @summary Get a list of sub accounts
177
+ * @link /account/sub
178
+ */
179
+ declare function getAccountSubsResource({ queryParams, config, }?: {
180
+ queryParams?: {
181
+ email?: string;
182
+ };
183
+ config?: Partial<FetcherConfig> & {
184
+ client?: typeof client;
185
+ };
186
+ }): Promise<unknown>;
187
+ /**
188
+ * @summary Create a sub account
189
+ * @link /account/sub
190
+ */
191
+ declare function putAccountSubsResource({ body, config, }?: {
192
+ body: PutAccountSubsResourceBody;
193
+ config?: Partial<FetcherConfig> & {
194
+ client?: typeof client;
195
+ };
196
+ }): Promise<unknown>;
197
+ /**
198
+ * @summary Get a sub account
199
+ * @link /account/sub/{accountId}
200
+ */
201
+ declare function getAccountSubResource({ pathParams, config, }?: {
202
+ pathParams: {
203
+ accountId: number;
204
+ };
205
+ config?: Partial<FetcherConfig> & {
206
+ client?: typeof client;
207
+ };
208
+ }): Promise<unknown>;
209
+ /**
210
+ * @summary Update a sub account
211
+ * @link /account/sub/{accountId}
212
+ */
213
+ declare function postAccountSubResource({ pathParams, body, config, }?: {
214
+ pathParams: {
215
+ accountId: number;
216
+ };
217
+ body: PostAccountSubResourceBody;
218
+ config?: Partial<FetcherConfig> & {
219
+ client?: typeof client;
220
+ };
221
+ }): Promise<unknown>;
222
+ /**
223
+ * @summary Delete a sub account
224
+ * @link /account/sub/{accountId}
225
+ */
226
+ declare function deleteAccountSubResource({ pathParams, config, }?: {
227
+ pathParams: {
228
+ accountId: number;
229
+ };
230
+ config?: Partial<FetcherConfig> & {
231
+ client?: typeof client;
232
+ };
233
+ }): Promise<unknown>;
234
+ /**
235
+ * @summary Get a list of account users
236
+ * @link /account/user
237
+ */
238
+ declare function getAccountUsersResource({ queryParams, config, }?: {
239
+ queryParams?: {
240
+ email?: string;
241
+ offset?: number;
242
+ limit?: number;
243
+ };
244
+ config?: Partial<FetcherConfig> & {
245
+ client?: typeof client;
246
+ };
247
+ }): Promise<unknown>;
248
+ /**
249
+ * @summary Create an account user
250
+ * @link /account/user
251
+ */
252
+ declare function putAccountUsersResource({ body, config, }?: {
253
+ body: PutAccountUsersResourceBody;
254
+ config?: Partial<FetcherConfig> & {
255
+ client?: typeof client;
256
+ };
257
+ }): Promise<unknown>;
258
+ /**
259
+ * @summary Get an account user
260
+ * @link /account/user/{accountUserId}
261
+ */
262
+ declare function getAccountUserResource({ pathParams, config, }?: {
263
+ pathParams: {
264
+ accountUserId: number;
265
+ };
266
+ config?: Partial<FetcherConfig> & {
267
+ client?: typeof client;
268
+ };
269
+ }): Promise<unknown>;
270
+ /**
271
+ * @summary Update an account user
272
+ * @link /account/user/{accountUserId}
273
+ */
274
+ declare function postAccountUserResource({ pathParams, body, config, }?: {
275
+ pathParams: {
276
+ accountUserId: number;
277
+ };
278
+ body: PostAccountUserResourceBody;
279
+ config?: Partial<FetcherConfig> & {
280
+ client?: typeof client;
281
+ };
282
+ }): Promise<unknown>;
283
+ /**
284
+ * @summary Delete an account user asynchronously
285
+ * @link /account/user/{accountUserId}
286
+ */
287
+ declare function deleteAccountUserResource({ pathParams, config, }?: {
288
+ pathParams: {
289
+ accountUserId: number;
290
+ };
291
+ config?: Partial<FetcherConfig> & {
292
+ client?: typeof client;
293
+ };
294
+ }): Promise<unknown>;
295
+ /**
296
+ * @summary Get a list of addresses
297
+ * @link /address
298
+ */
299
+ declare function getAddressesResource({ config }?: {
300
+ config?: Partial<FetcherConfig> & {
301
+ client?: typeof client;
302
+ };
303
+ }): Promise<unknown>;
304
+ /**
305
+ * @summary Create an address
306
+ * @link /address
307
+ */
308
+ declare function putAddressesResource({ body, config, }?: {
309
+ body: PutAddressesResourceBody;
310
+ config?: Partial<FetcherConfig> & {
311
+ client?: typeof client;
312
+ };
313
+ }): Promise<unknown>;
314
+ /**
315
+ * @summary Get info about an address token
316
+ * @link /address/token/{id}
317
+ */
318
+ declare function getAddressTokenResource({ pathParams, config, }?: {
319
+ pathParams: {
320
+ id: string;
321
+ };
322
+ config?: Partial<FetcherConfig> & {
323
+ client?: typeof client;
324
+ };
325
+ }): Promise<unknown>;
326
+ /**
327
+ * @summary Get a redeemed address token
328
+ * @link /address/token/{id}/redeem
329
+ */
330
+ declare function getAddressTokenRedeemResource({ pathParams, config, }?: {
331
+ pathParams: {
332
+ id: string;
333
+ };
334
+ config?: Partial<FetcherConfig> & {
335
+ client?: typeof client;
336
+ };
337
+ }): Promise<unknown>;
338
+ /**
339
+ * @summary Redeem an address token
340
+ * @link /address/token/{id}/redeem
341
+ */
342
+ declare function postAddressTokenRedeemResource({ pathParams, queryParams, config, }?: {
343
+ pathParams: {
344
+ id: string;
345
+ };
346
+ queryParams?: {
347
+ email?: boolean;
348
+ };
349
+ config?: Partial<FetcherConfig> & {
350
+ client?: typeof client;
351
+ };
352
+ }): Promise<unknown>;
353
+ /**
354
+ * @summary Update an address
355
+ * @link /address/{addressId}
356
+ */
357
+ declare function postAddressResource({ pathParams, body, config, }?: {
358
+ pathParams: {
359
+ addressId: number;
360
+ };
361
+ body: PostAddressResourceBody;
362
+ config?: Partial<FetcherConfig> & {
363
+ client?: typeof client;
364
+ };
365
+ }): Promise<unknown>;
366
+ /**
367
+ * @summary Delete an address
368
+ * @link /address/{addressId}
369
+ */
370
+ declare function deleteAddressResource({ pathParams, config, }?: {
371
+ pathParams: {
372
+ addressId: number;
373
+ };
374
+ config?: Partial<FetcherConfig> & {
375
+ client?: typeof client;
376
+ };
377
+ }): Promise<unknown>;
378
+ /**
379
+ * @summary Get a list of address reservations
380
+ * @link /address/{addressId}/reservation
381
+ */
382
+ declare function getAddressReservationsResource({ pathParams, config, }?: {
383
+ pathParams: {
384
+ addressId: number;
385
+ };
386
+ config?: Partial<FetcherConfig> & {
387
+ client?: typeof client;
388
+ };
389
+ }): Promise<unknown>;
390
+ /**
391
+ * @summary Issues authorizations for an address reservation
392
+ * @link /address/{addressId}/reservation/{id}/issue
393
+ */
394
+ declare function postAddressReservationIssueResource({ pathParams, config, }?: {
395
+ pathParams: {
396
+ addressId: number;
397
+ id: string;
398
+ };
399
+ config?: Partial<FetcherConfig> & {
400
+ client?: typeof client;
401
+ };
402
+ }): Promise<unknown>;
403
+ /**
404
+ * @summary Revoke authorizations for an address reservation
405
+ * @link /address/{addressId}/reservation/{id}/revoke
406
+ */
407
+ declare function postAddressReservationRevokeResource({ pathParams, config, }?: {
408
+ pathParams: {
409
+ addressId: number;
410
+ id: string;
411
+ };
412
+ config?: Partial<FetcherConfig> & {
413
+ client?: typeof client;
414
+ };
415
+ }): Promise<unknown>;
416
+ /**
417
+ * @summary Update access times of a reservation
418
+ * @link /address/{addressId}/reservation/{id}/update/accesstimes
419
+ */
420
+ declare function postReservationAccessTimesUpdateResource({ pathParams, body, config, }?: {
421
+ pathParams: {
422
+ addressId: number;
423
+ id: string;
424
+ };
425
+ body: PostReservationAccessTimesUpdateResourceBody;
426
+ config?: Partial<FetcherConfig> & {
427
+ client?: typeof client;
428
+ };
429
+ }): Promise<unknown>;
430
+ /**
431
+ * @summary Get a list of address tokens
432
+ * @link /address/{addressId}/token
433
+ */
434
+ declare function getAddressTokensResource({ pathParams, config, }?: {
435
+ pathParams: {
436
+ addressId: number;
437
+ };
438
+ config?: Partial<FetcherConfig> & {
439
+ client?: typeof client;
440
+ };
441
+ }): Promise<unknown>;
442
+ /**
443
+ * @summary Get a list of address units
444
+ * @link /address/{addressId}/unit
445
+ */
446
+ declare function getAddressUnitsResource({ pathParams, config, }?: {
447
+ pathParams: {
448
+ addressId: number;
449
+ };
450
+ config?: Partial<FetcherConfig> & {
451
+ client?: typeof client;
452
+ };
453
+ }): Promise<unknown>;
454
+ /**
455
+ * @summary Create an address unit
456
+ * @link /address/{addressId}/unit
457
+ */
458
+ declare function putAddressUnitsResource({ pathParams, body, config, }?: {
459
+ pathParams: {
460
+ addressId: number;
461
+ };
462
+ body: PutAddressUnitsResourceBody;
463
+ config?: Partial<FetcherConfig> & {
464
+ client?: typeof client;
465
+ };
466
+ }): Promise<unknown>;
467
+ /**
468
+ * @summary Delete address units asynchronously
469
+ * @link /address/{addressId}/unit
470
+ */
471
+ declare function deleteAddressUnitsResource({ pathParams, body, config, }?: {
472
+ pathParams: {
473
+ addressId: number;
474
+ };
475
+ body: DeleteAddressUnitsResourceBody;
476
+ config?: Partial<FetcherConfig> & {
477
+ client?: typeof client;
478
+ };
479
+ }): Promise<unknown>;
480
+ /**
481
+ * @summary Delete an address unit
482
+ * @link /address/{addressId}/unit/{id}
483
+ */
484
+ declare function deleteAddressUnitResource({ pathParams, config, }?: {
485
+ pathParams: {
486
+ addressId: number;
487
+ id: string;
488
+ };
489
+ config?: Partial<FetcherConfig> & {
490
+ client?: typeof client;
491
+ };
492
+ }): Promise<unknown>;
493
+ /**
494
+ * @summary Get all registered decentral webhooks
495
+ * @link /api/decentralWebhook
496
+ */
497
+ declare function getDecentralWebhooksResource({ config }?: {
498
+ config?: Partial<FetcherConfig> & {
499
+ client?: typeof client;
500
+ };
501
+ }): Promise<unknown>;
502
+ /**
503
+ * @summary Create decentral webhook
504
+ * @link /api/decentralWebhook
505
+ */
506
+ declare function putDecentralWebhooksResource({ body, config, }?: {
507
+ body: PutDecentralWebhooksResourceBody;
508
+ config?: Partial<FetcherConfig> & {
509
+ client?: typeof client;
510
+ };
511
+ }): Promise<unknown>;
512
+ /**
513
+ * @summary Unregister a decentral webhook
514
+ * @link /api/decentralWebhook/{id}
515
+ */
516
+ declare function deleteDecentralWebhookResource({ pathParams, config, }?: {
517
+ pathParams: {
518
+ id: number;
519
+ };
520
+ config?: Partial<FetcherConfig> & {
521
+ client?: typeof client;
522
+ };
523
+ }): Promise<unknown>;
524
+ /**
525
+ * @summary Get a list of API keys
526
+ * @link /api/key
527
+ */
528
+ declare function getApiKeysResource({ config }?: {
529
+ config?: Partial<FetcherConfig> & {
530
+ client?: typeof client;
531
+ };
532
+ }): Promise<unknown>;
533
+ /**
534
+ * @summary Create an API key
535
+ * @link /api/key
536
+ */
537
+ declare function putApiKeysResource({ body, config, }?: {
538
+ body: PutApiKeysResourceBody;
539
+ config?: Partial<FetcherConfig> & {
540
+ client?: typeof client;
541
+ };
542
+ }): Promise<unknown>;
543
+ /**
544
+ * @summary Update an API key
545
+ * @link /api/key/{apiKeyId}
546
+ */
547
+ declare function postApiKeyResource({ pathParams, body, config, }?: {
548
+ pathParams: {
549
+ apiKeyId: number;
550
+ };
551
+ body: PostApiKeyResourceBody;
552
+ config?: Partial<FetcherConfig> & {
553
+ client?: typeof client;
554
+ };
555
+ }): Promise<unknown>;
556
+ /**
557
+ * @summary Delete an API key
558
+ * @link /api/key/{apiKeyId}
559
+ */
560
+ declare function deleteApiKeyResource({ pathParams, config, }?: {
561
+ pathParams: {
562
+ apiKeyId: number;
563
+ };
564
+ config?: Partial<FetcherConfig> & {
565
+ client?: typeof client;
566
+ };
567
+ }): Promise<unknown>;
568
+ /**
569
+ * @summary Get an advanced API key
570
+ * @link /api/key/{apiKeyId}/advanced
571
+ */
572
+ declare function getApiKeyAdvancedResource({ pathParams, config, }?: {
573
+ pathParams: {
574
+ apiKeyId: number;
575
+ };
576
+ config?: Partial<FetcherConfig> & {
577
+ client?: typeof client;
578
+ };
579
+ }): Promise<unknown>;
580
+ /**
581
+ * @summary Update an advanced API key
582
+ * @link /api/key/{apiKeyId}/advanced
583
+ */
584
+ declare function postApiKeyAdvancedResource({ pathParams, body, config, }?: {
585
+ pathParams: {
586
+ apiKeyId: number;
587
+ };
588
+ body: PostApiKeyAdvancedResourceBody;
589
+ config?: Partial<FetcherConfig> & {
590
+ client?: typeof client;
591
+ };
592
+ }): Promise<unknown>;
593
+ /**
594
+ * @summary Create an advanced API key
595
+ * @link /api/key/{apiKeyId}/advanced
596
+ */
597
+ declare function putApiKeyAdvancedResource({ pathParams, body, config, }?: {
598
+ pathParams: {
599
+ apiKeyId: number;
600
+ };
601
+ body: PutApiKeyAdvancedResourceBody;
602
+ config?: Partial<FetcherConfig> & {
603
+ client?: typeof client;
604
+ };
605
+ }): Promise<unknown>;
606
+ /**
607
+ * @summary Delete an advanced API key
608
+ * @link /api/key/{apiKeyId}/advanced
609
+ */
610
+ declare function deleteApiKeyAdvancedResource({ pathParams, config, }?: {
611
+ pathParams: {
612
+ apiKeyId: number;
613
+ };
614
+ config?: Partial<FetcherConfig> & {
615
+ client?: typeof client;
616
+ };
617
+ }): Promise<unknown>;
618
+ /**
619
+ * @summary Reactivate a deactivated advanced webhook integration
620
+ * @link /api/key/{apiKeyId}/advanced/reactivate
621
+ */
622
+ declare function postApiKeyAdvancedReactivateResource({ pathParams, config, }?: {
623
+ pathParams: {
624
+ apiKeyId: number;
625
+ };
626
+ config?: Partial<FetcherConfig> & {
627
+ client?: typeof client;
628
+ };
629
+ }): Promise<unknown>;
630
+ /**
631
+ * @summary Get a list of API key tokens
632
+ * @link /api/key/{apiKeyId}/token
633
+ */
634
+ declare function getApiKeyTokensResource({ pathParams, config, }?: {
635
+ pathParams: {
636
+ apiKeyId: number;
637
+ };
638
+ config?: Partial<FetcherConfig> & {
639
+ client?: typeof client;
640
+ };
641
+ }): Promise<unknown>;
642
+ /**
643
+ * @summary Create an API key token
644
+ * @link /api/key/{apiKeyId}/token
645
+ */
646
+ declare function putApiKeyTokensResource({ pathParams, body, config, }?: {
647
+ pathParams: {
648
+ apiKeyId: number;
649
+ };
650
+ body: PutApiKeyTokensResourceBody;
651
+ config?: Partial<FetcherConfig> & {
652
+ client?: typeof client;
653
+ };
654
+ }): Promise<unknown>;
655
+ /**
656
+ * @summary Update an API key token
657
+ * @link /api/key/{apiKeyId}/token/{id}
658
+ */
659
+ declare function postApiKeyTokenResource({ pathParams, body, config, }?: {
660
+ pathParams: {
661
+ apiKeyId: number;
662
+ id: string;
663
+ };
664
+ body: PostApiKeyTokenResourceBody;
665
+ config?: Partial<FetcherConfig> & {
666
+ client?: typeof client;
667
+ };
668
+ }): Promise<unknown>;
669
+ /**
670
+ * @summary Delete an API key token
671
+ * @link /api/key/{apiKeyId}/token/{id}
672
+ */
673
+ declare function deleteApiKeyTokenResource({ pathParams, config, }?: {
674
+ pathParams: {
675
+ apiKeyId: number;
676
+ id: string;
677
+ };
678
+ config?: Partial<FetcherConfig> & {
679
+ client?: typeof client;
680
+ };
681
+ }): Promise<unknown>;
682
+ /**
683
+ * @summary Get a list of webhook logs (descending)
684
+ * @link /api/key/{apiKeyId}/webhook/logs
685
+ */
686
+ declare function getWebhookLogsResource({ pathParams, queryParams, config, }?: {
687
+ pathParams: {
688
+ apiKeyId: number;
689
+ };
690
+ queryParams?: {
691
+ id?: string;
692
+ limit?: number;
693
+ };
694
+ config?: Partial<FetcherConfig> & {
695
+ client?: typeof client;
696
+ };
697
+ }): Promise<unknown>;
698
+ /**
699
+ * @summary Update the web config for a group of smartlocks
700
+ * @link /bulk-web-config
701
+ */
702
+ declare function postSmartlockBulkWebConfigResource({ body, config, }?: {
703
+ body: PostSmartlockBulkWebConfigResourceBody;
704
+ config?: Partial<FetcherConfig> & {
705
+ client?: typeof client;
706
+ };
707
+ }): Promise<unknown>;
708
+ /**
709
+ * @summary Get a list of companies
710
+ * @link /company
711
+ */
712
+ declare function getCompaniesResource({ config }?: {
713
+ config?: Partial<FetcherConfig> & {
714
+ client?: typeof client;
715
+ };
716
+ }): Promise<unknown>;
717
+ /**
718
+ * @summary Get all notifications attached to your account
719
+ * @link /notification
720
+ */
721
+ declare function getNotificationsResource({ queryParams, config, }?: {
722
+ queryParams?: {
723
+ referenceId?: string;
724
+ };
725
+ config?: Partial<FetcherConfig> & {
726
+ client?: typeof client;
727
+ };
728
+ }): Promise<unknown>;
729
+ /**
730
+ * @summary Create a notification configuration
731
+ * @link /notification
732
+ */
733
+ declare function putNotificationsResource({ body, config, }?: {
734
+ body: PutNotificationsResourceBody;
735
+ config?: Partial<FetcherConfig> & {
736
+ client?: typeof client;
737
+ };
738
+ }): Promise<unknown>;
739
+ /**
740
+ * @summary Get a notification configuration
741
+ * @link /notification/{notificationId}
742
+ */
743
+ declare function getNotificationResource({ pathParams, config, }?: {
744
+ pathParams: {
745
+ notificationId: string;
746
+ };
747
+ config?: Partial<FetcherConfig> & {
748
+ client?: typeof client;
749
+ };
750
+ }): Promise<unknown>;
751
+ /**
752
+ * @summary Update a notification configuration
753
+ * @link /notification/{notificationId}
754
+ */
755
+ declare function postNotificationResource({ pathParams, body, config, }?: {
756
+ pathParams: {
757
+ notificationId: string;
758
+ };
759
+ body: PostNotificationResourceBody;
760
+ config?: Partial<FetcherConfig> & {
761
+ client?: typeof client;
762
+ };
763
+ }): Promise<unknown>;
764
+ /**
765
+ * @summary Delete a notification configuration
766
+ * @link /notification/{notificationId}
767
+ */
768
+ declare function deleteNotificationResource({ pathParams, config, }?: {
769
+ pathParams: {
770
+ notificationId: string;
771
+ };
772
+ config?: Partial<FetcherConfig> & {
773
+ client?: typeof client;
774
+ };
775
+ }): Promise<unknown>;
776
+ /**
777
+ * @summary Get all intercom brands
778
+ * @link /opener/brand
779
+ */
780
+ declare function getOpenerBrandsResource({ config }?: {
781
+ config?: Partial<FetcherConfig> & {
782
+ client?: typeof client;
783
+ };
784
+ }): Promise<GetOpenerBrandsResourceStatus200>;
785
+ /**
786
+ * @summary Get an intercom brand
787
+ * @link /opener/brand/{brandId}
788
+ */
789
+ declare function getOpenerBrandResource({ pathParams, config, }?: {
790
+ pathParams: {
791
+ brandId: number;
792
+ };
793
+ config?: Partial<FetcherConfig> & {
794
+ client?: typeof client;
795
+ };
796
+ }): Promise<OpenerIntercomBrand>;
797
+ /**
798
+ * @summary Get a list of intercom models
799
+ * @link /opener/intercom
800
+ */
801
+ declare function getOpenerIntercomsResource({ queryParams, config, }?: {
802
+ queryParams?: {
803
+ brandId?: number;
804
+ ignoreVerified?: boolean;
805
+ recentlyChanged?: boolean;
806
+ };
807
+ config?: Partial<FetcherConfig> & {
808
+ client?: typeof client;
809
+ };
810
+ }): Promise<GetOpenerIntercomsResourceStatus200>;
811
+ /**
812
+ * @summary Get an intercom model
813
+ * @link /opener/intercom/{intercomId}
814
+ */
815
+ declare function getOpenerIntercomResource({ pathParams, config, }?: {
816
+ pathParams: {
817
+ intercomId: number;
818
+ };
819
+ config?: Partial<FetcherConfig> & {
820
+ client?: typeof client;
821
+ };
822
+ }): Promise<OpenerIntercomModel>;
823
+ /**
824
+ * @summary Get a list of services
825
+ * @link /service
826
+ */
827
+ declare function getServicesResource({ queryParams, config, }?: {
828
+ queryParams?: {
829
+ serviceIds?: string;
830
+ };
831
+ config?: Partial<FetcherConfig> & {
832
+ client?: typeof client;
833
+ };
834
+ }): Promise<unknown>;
835
+ /**
836
+ * @summary Get a service
837
+ * @link /service/{serviceId}
838
+ */
839
+ declare function getServiceResource({ pathParams, config, }?: {
840
+ pathParams: {
841
+ serviceId: string;
842
+ };
843
+ config?: Partial<FetcherConfig> & {
844
+ client?: typeof client;
845
+ };
846
+ }): Promise<unknown>;
847
+ /**
848
+ * @summary Link a service
849
+ * @link /service/{serviceId}/link
850
+ */
851
+ declare function postServiceLinkResource({ pathParams, config, }?: {
852
+ pathParams: {
853
+ serviceId: string;
854
+ };
855
+ config?: Partial<FetcherConfig> & {
856
+ client?: typeof client;
857
+ };
858
+ }): Promise<unknown>;
859
+ /**
860
+ * @summary Sync a service
861
+ * @link /service/{serviceId}/sync
862
+ */
863
+ declare function postServiceSyncResource({ pathParams, config, }?: {
864
+ pathParams: {
865
+ serviceId: string;
866
+ };
867
+ config?: Partial<FetcherConfig> & {
868
+ client?: typeof client;
869
+ };
870
+ }): Promise<unknown>;
871
+ /**
872
+ * @summary Unlink a service
873
+ * @link /service/{serviceId}/unlink
874
+ */
875
+ declare function postServiceUnlinkResource({ pathParams, config, }?: {
876
+ pathParams: {
877
+ serviceId: string;
878
+ };
879
+ config?: Partial<FetcherConfig> & {
880
+ client?: typeof client;
881
+ };
882
+ }): Promise<unknown>;
883
+ /**
884
+ * @summary Get a list of smartlocks
885
+ * @link /smartlock
886
+ */
887
+ declare function getSmartlocksResource({ queryParams, config, }?: {
888
+ queryParams?: {
889
+ authId?: number;
890
+ type?: number;
891
+ };
892
+ config?: Partial<FetcherConfig> & {
893
+ client?: typeof client;
894
+ };
895
+ }): Promise<unknown>;
896
+ /**
897
+ * @summary Get a list of smartlock authorizations for your smartlocks
898
+ * @link /smartlock/auth
899
+ */
900
+ declare function getSmartlocksAuthsResource({ queryParams, config, }?: {
901
+ queryParams?: {
902
+ accountUserId?: number;
903
+ types?: string;
904
+ };
905
+ config?: Partial<FetcherConfig> & {
906
+ client?: typeof client;
907
+ };
908
+ }): Promise<unknown>;
909
+ /**
910
+ * @summary Update smartlock authorizations asynchronously
911
+ * @link /smartlock/auth
912
+ */
913
+ declare function postSmartlocksAuthsResource({ body, config, }?: {
914
+ body: PostSmartlocksAuthsResourceBody;
915
+ config?: Partial<FetcherConfig> & {
916
+ client?: typeof client;
917
+ };
918
+ }): Promise<unknown>;
919
+ /**
920
+ * @summary Create smartlock authorizations asynchronously
921
+ * @link /smartlock/auth
922
+ */
923
+ declare function putSmartlocksAuthsResource({ body, config, }?: {
924
+ body: PutSmartlocksAuthsResourceBody;
925
+ config?: Partial<FetcherConfig> & {
926
+ client?: typeof client;
927
+ };
928
+ }): Promise<unknown>;
929
+ /**
930
+ * @summary Delete smartlock authorizations asynchronously
931
+ * @link /smartlock/auth
932
+ */
933
+ declare function deleteSmartlocksAuthsResource({ body, config, }?: {
934
+ body: DeleteSmartlocksAuthsResourceBody;
935
+ config?: Partial<FetcherConfig> & {
936
+ client?: typeof client;
937
+ };
938
+ }): Promise<unknown>;
939
+ /**
940
+ * @summary Create smartlock authorizations asynchronously
941
+ * @link /smartlock/auth/advanced
942
+ */
943
+ declare function putSmartlockAuthsAdvancedResource({ body, config, }?: {
944
+ body: PutSmartlockAuthsAdvancedResourceBody;
945
+ config?: Partial<FetcherConfig> & {
946
+ client?: typeof client;
947
+ };
948
+ }): Promise<unknown>;
949
+ /**
950
+ * @summary Get a paginated list of smartlock authorizations for your smartlocks
951
+ * @link /smartlock/auth/paged
952
+ */
953
+ declare function getSmartlocksAuthsPaginatedResource({ queryParams, config, }?: {
954
+ queryParams?: {
955
+ page?: number;
956
+ size?: number;
957
+ accountUserId?: number;
958
+ types?: string;
959
+ };
960
+ config?: Partial<FetcherConfig> & {
961
+ client?: typeof client;
962
+ };
963
+ }): Promise<unknown>;
964
+ /**
965
+ * @summary Get a list of smartlock logs for all of your smartlocks
966
+ * @link /smartlock/log
967
+ */
968
+ declare function getSmartlocksLogsResource({ queryParams, config, }?: {
969
+ queryParams?: {
970
+ accountUserId?: number;
971
+ fromDate?: string;
972
+ toDate?: string;
973
+ action?: number;
974
+ id?: string;
975
+ limit?: number;
976
+ };
977
+ config?: Partial<FetcherConfig> & {
978
+ client?: typeof client;
979
+ };
980
+ }): Promise<unknown>;
981
+ /**
982
+ * @summary Get a smartlock
983
+ * @link /smartlock/{smartlockId}
984
+ */
985
+ declare function getSmartlockResource({ pathParams, config, }?: {
986
+ pathParams: {
987
+ smartlockId: number;
988
+ };
989
+ config?: Partial<FetcherConfig> & {
990
+ client?: typeof client;
991
+ };
992
+ }): Promise<unknown>;
993
+ /**
994
+ * @summary Update a smartlock
995
+ * @link /smartlock/{smartlockId}
996
+ */
997
+ declare function postSmartlockResource({ pathParams, body, config, }?: {
998
+ pathParams: {
999
+ smartlockId: number;
1000
+ };
1001
+ body: PostSmartlockResourceBody;
1002
+ config?: Partial<FetcherConfig> & {
1003
+ client?: typeof client;
1004
+ };
1005
+ }): Promise<unknown>;
1006
+ /**
1007
+ * @summary Delete a smartlock
1008
+ * @link /smartlock/{smartlockId}
1009
+ */
1010
+ declare function deleteSmartlockResource({ pathParams, config, }?: {
1011
+ pathParams: {
1012
+ smartlockId: number;
1013
+ };
1014
+ config?: Partial<FetcherConfig> & {
1015
+ client?: typeof client;
1016
+ };
1017
+ }): Promise<unknown>;
1018
+ /**
1019
+ * @summary Lock & unlock a smartlock with options
1020
+ * @link /smartlock/{smartlockId}/action
1021
+ */
1022
+ declare function postSmartlockActionResource({ pathParams, body, config, }?: {
1023
+ pathParams: {
1024
+ smartlockId: string;
1025
+ };
1026
+ body: PostSmartlockActionResourceBody;
1027
+ config?: Partial<FetcherConfig> & {
1028
+ client?: typeof client;
1029
+ };
1030
+ }): Promise<unknown>;
1031
+ /**
1032
+ * @summary Lock & unlock a smartlock with callback
1033
+ * @link /smartlock/{smartlockId}/action/advanced
1034
+ */
1035
+ declare function postSmartlockActionAdvancedResource({ pathParams, body, config, }?: {
1036
+ pathParams: {
1037
+ smartlockId: string;
1038
+ };
1039
+ body: PostSmartlockActionAdvancedResourceBody;
1040
+ config?: Partial<FetcherConfig> & {
1041
+ client?: typeof client;
1042
+ };
1043
+ }): Promise<unknown>;
1044
+ /**
1045
+ * @summary Lock a smartlock
1046
+ * @link /smartlock/{smartlockId}/action/lock
1047
+ */
1048
+ declare function postSmartlockLockActionResource({ pathParams, config, }?: {
1049
+ pathParams: {
1050
+ smartlockId: string;
1051
+ };
1052
+ config?: Partial<FetcherConfig> & {
1053
+ client?: typeof client;
1054
+ };
1055
+ }): Promise<unknown>;
1056
+ /**
1057
+ * @summary Lock a smartlock
1058
+ * @link /smartlock/{smartlockId}/action/lock/advanced
1059
+ */
1060
+ declare function postSmartlockLockActionAdvancedResource({ pathParams, config, }?: {
1061
+ pathParams: {
1062
+ smartlockId: string;
1063
+ };
1064
+ config?: Partial<FetcherConfig> & {
1065
+ client?: typeof client;
1066
+ };
1067
+ }): Promise<unknown>;
1068
+ /**
1069
+ * @summary Unlock a smartlock
1070
+ * @link /smartlock/{smartlockId}/action/unlock
1071
+ */
1072
+ declare function postSmartlockUnlockActionResource({ pathParams, config, }?: {
1073
+ pathParams: {
1074
+ smartlockId: string;
1075
+ };
1076
+ config?: Partial<FetcherConfig> & {
1077
+ client?: typeof client;
1078
+ };
1079
+ }): Promise<unknown>;
1080
+ /**
1081
+ * @summary Unlock a smartlock
1082
+ * @link /smartlock/{smartlockId}/action/unlock/advanced
1083
+ */
1084
+ declare function postSmartlockUnlockActionAdvancedResource({ pathParams, config, }?: {
1085
+ pathParams: {
1086
+ smartlockId: string;
1087
+ };
1088
+ config?: Partial<FetcherConfig> & {
1089
+ client?: typeof client;
1090
+ };
1091
+ }): Promise<unknown>;
1092
+ /**
1093
+ * @summary Update a smartlock admin PIN
1094
+ * @link /smartlock/{smartlockId}/admin/pin
1095
+ */
1096
+ declare function postSmartlockAdminPinResource({ pathParams, body, config, }?: {
1097
+ pathParams: {
1098
+ smartlockId: number;
1099
+ };
1100
+ body: PostSmartlockAdminPinResourceBody;
1101
+ config?: Partial<FetcherConfig> & {
1102
+ client?: typeof client;
1103
+ };
1104
+ }): Promise<unknown>;
1105
+ /**
1106
+ * @summary Update a smartlock advanced config
1107
+ * @link /smartlock/{smartlockId}/advanced/config
1108
+ */
1109
+ declare function postSmartlockAdvancedConfigResource({ pathParams, body, config, }?: {
1110
+ pathParams: {
1111
+ smartlockId: number;
1112
+ };
1113
+ body: PostSmartlockAdvancedConfigResourceBody;
1114
+ config?: Partial<FetcherConfig> & {
1115
+ client?: typeof client;
1116
+ };
1117
+ }): Promise<unknown>;
1118
+ /**
1119
+ * @summary Update an opener advanced config
1120
+ * @link /smartlock/{smartlockId}/advanced/openerconfig
1121
+ */
1122
+ declare function postSmartlockOpenerAdvancedConfigResource({ pathParams, body, config, }?: {
1123
+ pathParams: {
1124
+ smartlockId: number;
1125
+ };
1126
+ body: PostSmartlockOpenerAdvancedConfigResourceBody;
1127
+ config?: Partial<FetcherConfig> & {
1128
+ client?: typeof client;
1129
+ };
1130
+ }): Promise<unknown>;
1131
+ /**
1132
+ * @summary Update a smartdoor advanced config
1133
+ * @link /smartlock/{smartlockId}/advanced/smartdoorconfig
1134
+ */
1135
+ declare function postSmartdoorAdvancedConfigResource({ pathParams, body, config, }?: {
1136
+ pathParams: {
1137
+ smartlockId: number;
1138
+ };
1139
+ body: PostSmartdoorAdvancedConfigResourceBody;
1140
+ config?: Partial<FetcherConfig> & {
1141
+ client?: typeof client;
1142
+ };
1143
+ }): Promise<unknown>;
1144
+ /**
1145
+ * @summary Get a list of smartlock authorizations
1146
+ * @link /smartlock/{smartlockId}/auth
1147
+ */
1148
+ declare function getSmartlockAuthsResource({ pathParams, queryParams, config, }?: {
1149
+ pathParams: {
1150
+ smartlockId: number;
1151
+ };
1152
+ queryParams?: {
1153
+ types?: string;
1154
+ includeEmail?: boolean;
1155
+ };
1156
+ config?: Partial<FetcherConfig> & {
1157
+ client?: typeof client;
1158
+ };
1159
+ }): Promise<unknown>;
1160
+ /**
1161
+ * @summary Create a smartlock authorization asynchronously
1162
+ * @link /smartlock/{smartlockId}/auth
1163
+ */
1164
+ declare function putSmartlockAuthsResource({ pathParams, body, config, }?: {
1165
+ pathParams: {
1166
+ smartlockId: number;
1167
+ };
1168
+ body: PutSmartlockAuthsResourceBody;
1169
+ config?: Partial<FetcherConfig> & {
1170
+ client?: typeof client;
1171
+ };
1172
+ }): Promise<unknown>;
1173
+ /**
1174
+ * @summary Generate a new smartlock auth with a shared key
1175
+ * @link /smartlock/{smartlockId}/auth/advanced/sharedkey
1176
+ */
1177
+ declare function postSmartlockAuthWithSharedKeyResource({ pathParams, body, config, }?: {
1178
+ pathParams: {
1179
+ smartlockId: number;
1180
+ };
1181
+ body: PostSmartlockAuthWithSharedKeyResourceBody;
1182
+ config?: Partial<FetcherConfig> & {
1183
+ client?: typeof client;
1184
+ };
1185
+ }): Promise<unknown>;
1186
+ /**
1187
+ * @summary Get a smartlock authorization
1188
+ * @link /smartlock/{smartlockId}/auth/{id}
1189
+ */
1190
+ declare function getSmartlockAuthResource({ pathParams, config, }?: {
1191
+ pathParams: {
1192
+ smartlockId: number;
1193
+ id: string;
1194
+ };
1195
+ config?: Partial<FetcherConfig> & {
1196
+ client?: typeof client;
1197
+ };
1198
+ }): Promise<unknown>;
1199
+ /**
1200
+ * @summary Update a smartlock authorization asynchronously
1201
+ * @link /smartlock/{smartlockId}/auth/{id}
1202
+ */
1203
+ declare function postSmartlockAuthResource({ pathParams, body, config, }?: {
1204
+ pathParams: {
1205
+ smartlockId: number;
1206
+ id: string;
1207
+ };
1208
+ body: PostSmartlockAuthResourceBody;
1209
+ config?: Partial<FetcherConfig> & {
1210
+ client?: typeof client;
1211
+ };
1212
+ }): Promise<unknown>;
1213
+ /**
1214
+ * @summary Delete a smartlock authorization asynchronously
1215
+ * @link /smartlock/{smartlockId}/auth/{id}
1216
+ */
1217
+ declare function deleteSmartlockAuthResource({ pathParams, config, }?: {
1218
+ pathParams: {
1219
+ smartlockId: number;
1220
+ id: string;
1221
+ };
1222
+ config?: Partial<FetcherConfig> & {
1223
+ client?: typeof client;
1224
+ };
1225
+ }): Promise<unknown>;
1226
+ /**
1227
+ * @summary Update a smartlock config
1228
+ * @link /smartlock/{smartlockId}/config
1229
+ */
1230
+ declare function postSmartlockConfigResource({ pathParams, body, config, }?: {
1231
+ pathParams: {
1232
+ smartlockId: number;
1233
+ };
1234
+ body: PostSmartlockConfigResourceBody;
1235
+ config?: Partial<FetcherConfig> & {
1236
+ client?: typeof client;
1237
+ };
1238
+ }): Promise<unknown>;
1239
+ /**
1240
+ * @summary Get a list of smartlock logs
1241
+ * @link /smartlock/{smartlockId}/log
1242
+ */
1243
+ declare function getSmartlockLogsResource({ pathParams, queryParams, config, }?: {
1244
+ pathParams: {
1245
+ smartlockId: number;
1246
+ };
1247
+ queryParams?: {
1248
+ authId?: string;
1249
+ accountUserId?: number;
1250
+ fromDate?: string;
1251
+ toDate?: string;
1252
+ action?: number;
1253
+ id?: string;
1254
+ limit?: number;
1255
+ };
1256
+ config?: Partial<FetcherConfig> & {
1257
+ client?: typeof client;
1258
+ };
1259
+ }): Promise<unknown>;
1260
+ /**
1261
+ * @summary Sync a smartlock
1262
+ * @link /smartlock/{smartlockId}/sync
1263
+ */
1264
+ declare function postSmartlockSyncResource({ pathParams, config, }?: {
1265
+ pathParams: {
1266
+ smartlockId: string;
1267
+ };
1268
+ config?: Partial<FetcherConfig> & {
1269
+ client?: typeof client;
1270
+ };
1271
+ }): Promise<unknown>;
1272
+ /**
1273
+ * @summary Update a smartlock web config
1274
+ * @link /smartlock/{smartlockId}/web/config
1275
+ */
1276
+ declare function postSmartlockWebConfigResource({ pathParams, body, config, }?: {
1277
+ pathParams: {
1278
+ smartlockId: number;
1279
+ };
1280
+ body: PostSmartlockWebConfigResourceBody;
1281
+ config?: Partial<FetcherConfig> & {
1282
+ client?: typeof client;
1283
+ };
1284
+ }): Promise<unknown>;
1285
+ declare const operationsByPath: {
1286
+ "GET /account": typeof getAccountsResource;
1287
+ "POST /account": typeof postAccountsResource;
1288
+ "DELETE /account": typeof deleteAccountsResource;
1289
+ "POST /account/email/change": typeof postAccountEmailChangeResource;
1290
+ "POST /account/email/verify": typeof postAccountEmailVerifyResource;
1291
+ "GET /account/integration": typeof getAccountIntegrationsResource;
1292
+ "DELETE /account/integration": typeof deleteAccountIntegrationsResource;
1293
+ "POST /account/otp": typeof postAccountOtpResource;
1294
+ "PUT /account/otp": typeof putAccountOtpResource;
1295
+ "DELETE /account/otp": typeof deleteAccountOtpResource;
1296
+ "POST /account/password/reset": typeof postAccountPasswordResetResource;
1297
+ "GET /account/setting": typeof getAccountSettingResource;
1298
+ "PUT /account/setting": typeof putAccountSettingResource;
1299
+ "DELETE /account/setting": typeof deleteAccountSettingResource;
1300
+ "GET /account/sub": typeof getAccountSubsResource;
1301
+ "PUT /account/sub": typeof putAccountSubsResource;
1302
+ "GET /account/sub/{accountId}": typeof getAccountSubResource;
1303
+ "POST /account/sub/{accountId}": typeof postAccountSubResource;
1304
+ "DELETE /account/sub/{accountId}": typeof deleteAccountSubResource;
1305
+ "GET /account/user": typeof getAccountUsersResource;
1306
+ "PUT /account/user": typeof putAccountUsersResource;
1307
+ "GET /account/user/{accountUserId}": typeof getAccountUserResource;
1308
+ "POST /account/user/{accountUserId}": typeof postAccountUserResource;
1309
+ "DELETE /account/user/{accountUserId}": typeof deleteAccountUserResource;
1310
+ "GET /address": typeof getAddressesResource;
1311
+ "PUT /address": typeof putAddressesResource;
1312
+ "GET /address/token/{id}": typeof getAddressTokenResource;
1313
+ "GET /address/token/{id}/redeem": typeof getAddressTokenRedeemResource;
1314
+ "POST /address/token/{id}/redeem": typeof postAddressTokenRedeemResource;
1315
+ "POST /address/{addressId}": typeof postAddressResource;
1316
+ "DELETE /address/{addressId}": typeof deleteAddressResource;
1317
+ "GET /address/{addressId}/reservation": typeof getAddressReservationsResource;
1318
+ "POST /address/{addressId}/reservation/{id}/issue": typeof postAddressReservationIssueResource;
1319
+ "POST /address/{addressId}/reservation/{id}/revoke": typeof postAddressReservationRevokeResource;
1320
+ "POST /address/{addressId}/reservation/{id}/update/accesstimes": typeof postReservationAccessTimesUpdateResource;
1321
+ "GET /address/{addressId}/token": typeof getAddressTokensResource;
1322
+ "GET /address/{addressId}/unit": typeof getAddressUnitsResource;
1323
+ "PUT /address/{addressId}/unit": typeof putAddressUnitsResource;
1324
+ "DELETE /address/{addressId}/unit": typeof deleteAddressUnitsResource;
1325
+ "DELETE /address/{addressId}/unit/{id}": typeof deleteAddressUnitResource;
1326
+ "GET /api/decentralWebhook": typeof getDecentralWebhooksResource;
1327
+ "PUT /api/decentralWebhook": typeof putDecentralWebhooksResource;
1328
+ "DELETE /api/decentralWebhook/{id}": typeof deleteDecentralWebhookResource;
1329
+ "GET /api/key": typeof getApiKeysResource;
1330
+ "PUT /api/key": typeof putApiKeysResource;
1331
+ "POST /api/key/{apiKeyId}": typeof postApiKeyResource;
1332
+ "DELETE /api/key/{apiKeyId}": typeof deleteApiKeyResource;
1333
+ "GET /api/key/{apiKeyId}/advanced": typeof getApiKeyAdvancedResource;
1334
+ "POST /api/key/{apiKeyId}/advanced": typeof postApiKeyAdvancedResource;
1335
+ "PUT /api/key/{apiKeyId}/advanced": typeof putApiKeyAdvancedResource;
1336
+ "DELETE /api/key/{apiKeyId}/advanced": typeof deleteApiKeyAdvancedResource;
1337
+ "POST /api/key/{apiKeyId}/advanced/reactivate": typeof postApiKeyAdvancedReactivateResource;
1338
+ "GET /api/key/{apiKeyId}/token": typeof getApiKeyTokensResource;
1339
+ "PUT /api/key/{apiKeyId}/token": typeof putApiKeyTokensResource;
1340
+ "POST /api/key/{apiKeyId}/token/{id}": typeof postApiKeyTokenResource;
1341
+ "DELETE /api/key/{apiKeyId}/token/{id}": typeof deleteApiKeyTokenResource;
1342
+ "GET /api/key/{apiKeyId}/webhook/logs": typeof getWebhookLogsResource;
1343
+ "POST /bulk-web-config": typeof postSmartlockBulkWebConfigResource;
1344
+ "GET /company": typeof getCompaniesResource;
1345
+ "GET /notification": typeof getNotificationsResource;
1346
+ "PUT /notification": typeof putNotificationsResource;
1347
+ "GET /notification/{notificationId}": typeof getNotificationResource;
1348
+ "POST /notification/{notificationId}": typeof postNotificationResource;
1349
+ "DELETE /notification/{notificationId}": typeof deleteNotificationResource;
1350
+ "GET /opener/brand": typeof getOpenerBrandsResource;
1351
+ "GET /opener/brand/{brandId}": typeof getOpenerBrandResource;
1352
+ "GET /opener/intercom": typeof getOpenerIntercomsResource;
1353
+ "GET /opener/intercom/{intercomId}": typeof getOpenerIntercomResource;
1354
+ "GET /service": typeof getServicesResource;
1355
+ "GET /service/{serviceId}": typeof getServiceResource;
1356
+ "POST /service/{serviceId}/link": typeof postServiceLinkResource;
1357
+ "POST /service/{serviceId}/sync": typeof postServiceSyncResource;
1358
+ "POST /service/{serviceId}/unlink": typeof postServiceUnlinkResource;
1359
+ "GET /smartlock": typeof getSmartlocksResource;
1360
+ "GET /smartlock/auth": typeof getSmartlocksAuthsResource;
1361
+ "POST /smartlock/auth": typeof postSmartlocksAuthsResource;
1362
+ "PUT /smartlock/auth": typeof putSmartlocksAuthsResource;
1363
+ "DELETE /smartlock/auth": typeof deleteSmartlocksAuthsResource;
1364
+ "PUT /smartlock/auth/advanced": typeof putSmartlockAuthsAdvancedResource;
1365
+ "GET /smartlock/auth/paged": typeof getSmartlocksAuthsPaginatedResource;
1366
+ "GET /smartlock/log": typeof getSmartlocksLogsResource;
1367
+ "GET /smartlock/{smartlockId}": typeof getSmartlockResource;
1368
+ "POST /smartlock/{smartlockId}": typeof postSmartlockResource;
1369
+ "DELETE /smartlock/{smartlockId}": typeof deleteSmartlockResource;
1370
+ "POST /smartlock/{smartlockId}/action": typeof postSmartlockActionResource;
1371
+ "POST /smartlock/{smartlockId}/action/advanced": typeof postSmartlockActionAdvancedResource;
1372
+ "POST /smartlock/{smartlockId}/action/lock": typeof postSmartlockLockActionResource;
1373
+ "POST /smartlock/{smartlockId}/action/lock/advanced": typeof postSmartlockLockActionAdvancedResource;
1374
+ "POST /smartlock/{smartlockId}/action/unlock": typeof postSmartlockUnlockActionResource;
1375
+ "POST /smartlock/{smartlockId}/action/unlock/advanced": typeof postSmartlockUnlockActionAdvancedResource;
1376
+ "POST /smartlock/{smartlockId}/admin/pin": typeof postSmartlockAdminPinResource;
1377
+ "POST /smartlock/{smartlockId}/advanced/config": typeof postSmartlockAdvancedConfigResource;
1378
+ "POST /smartlock/{smartlockId}/advanced/openerconfig": typeof postSmartlockOpenerAdvancedConfigResource;
1379
+ "POST /smartlock/{smartlockId}/advanced/smartdoorconfig": typeof postSmartdoorAdvancedConfigResource;
1380
+ "GET /smartlock/{smartlockId}/auth": typeof getSmartlockAuthsResource;
1381
+ "PUT /smartlock/{smartlockId}/auth": typeof putSmartlockAuthsResource;
1382
+ "POST /smartlock/{smartlockId}/auth/advanced/sharedkey": typeof postSmartlockAuthWithSharedKeyResource;
1383
+ "GET /smartlock/{smartlockId}/auth/{id}": typeof getSmartlockAuthResource;
1384
+ "POST /smartlock/{smartlockId}/auth/{id}": typeof postSmartlockAuthResource;
1385
+ "DELETE /smartlock/{smartlockId}/auth/{id}": typeof deleteSmartlockAuthResource;
1386
+ "POST /smartlock/{smartlockId}/config": typeof postSmartlockConfigResource;
1387
+ "GET /smartlock/{smartlockId}/log": typeof getSmartlockLogsResource;
1388
+ "POST /smartlock/{smartlockId}/sync": typeof postSmartlockSyncResource;
1389
+ "POST /smartlock/{smartlockId}/web/config": typeof postSmartlockWebConfigResource;
1390
+ };
1391
+ declare const operationsByTag: {
1392
+ account: {
1393
+ getAccountsResource: typeof getAccountsResource;
1394
+ postAccountsResource: typeof postAccountsResource;
1395
+ deleteAccountsResource: typeof deleteAccountsResource;
1396
+ postAccountEmailChangeResource: typeof postAccountEmailChangeResource;
1397
+ postAccountEmailVerifyResource: typeof postAccountEmailVerifyResource;
1398
+ getAccountIntegrationsResource: typeof getAccountIntegrationsResource;
1399
+ deleteAccountIntegrationsResource: typeof deleteAccountIntegrationsResource;
1400
+ postAccountOtpResource: typeof postAccountOtpResource;
1401
+ putAccountOtpResource: typeof putAccountOtpResource;
1402
+ deleteAccountOtpResource: typeof deleteAccountOtpResource;
1403
+ postAccountPasswordResetResource: typeof postAccountPasswordResetResource;
1404
+ getAccountSettingResource: typeof getAccountSettingResource;
1405
+ putAccountSettingResource: typeof putAccountSettingResource;
1406
+ deleteAccountSettingResource: typeof deleteAccountSettingResource;
1407
+ getAccountSubsResource: typeof getAccountSubsResource;
1408
+ putAccountSubsResource: typeof putAccountSubsResource;
1409
+ getAccountSubResource: typeof getAccountSubResource;
1410
+ postAccountSubResource: typeof postAccountSubResource;
1411
+ deleteAccountSubResource: typeof deleteAccountSubResource;
1412
+ };
1413
+ accountuser: {
1414
+ getAccountUsersResource: typeof getAccountUsersResource;
1415
+ putAccountUsersResource: typeof putAccountUsersResource;
1416
+ getAccountUserResource: typeof getAccountUserResource;
1417
+ postAccountUserResource: typeof postAccountUserResource;
1418
+ deleteAccountUserResource: typeof deleteAccountUserResource;
1419
+ };
1420
+ address: {
1421
+ getAddressesResource: typeof getAddressesResource;
1422
+ putAddressesResource: typeof putAddressesResource;
1423
+ postAddressResource: typeof postAddressResource;
1424
+ deleteAddressResource: typeof deleteAddressResource;
1425
+ getAddressUnitsResource: typeof getAddressUnitsResource;
1426
+ putAddressUnitsResource: typeof putAddressUnitsResource;
1427
+ deleteAddressUnitsResource: typeof deleteAddressUnitsResource;
1428
+ deleteAddressUnitResource: typeof deleteAddressUnitResource;
1429
+ };
1430
+ addresstoken: {
1431
+ getAddressTokenResource: typeof getAddressTokenResource;
1432
+ getAddressTokenRedeemResource: typeof getAddressTokenRedeemResource;
1433
+ postAddressTokenRedeemResource: typeof postAddressTokenRedeemResource;
1434
+ getAddressTokensResource: typeof getAddressTokensResource;
1435
+ };
1436
+ addressreservation: {
1437
+ getAddressReservationsResource: typeof getAddressReservationsResource;
1438
+ postAddressReservationIssueResource: typeof postAddressReservationIssueResource;
1439
+ postAddressReservationRevokeResource: typeof postAddressReservationRevokeResource;
1440
+ postReservationAccessTimesUpdateResource: typeof postReservationAccessTimesUpdateResource;
1441
+ };
1442
+ advancedapi: {
1443
+ getDecentralWebhooksResource: typeof getDecentralWebhooksResource;
1444
+ putDecentralWebhooksResource: typeof putDecentralWebhooksResource;
1445
+ deleteDecentralWebhookResource: typeof deleteDecentralWebhookResource;
1446
+ getWebhookLogsResource: typeof getWebhookLogsResource;
1447
+ putSmartlockAuthsAdvancedResource: typeof putSmartlockAuthsAdvancedResource;
1448
+ postSmartlockActionAdvancedResource: typeof postSmartlockActionAdvancedResource;
1449
+ postSmartlockLockActionAdvancedResource: typeof postSmartlockLockActionAdvancedResource;
1450
+ postSmartlockUnlockActionAdvancedResource: typeof postSmartlockUnlockActionAdvancedResource;
1451
+ };
1452
+ apikey: {
1453
+ getApiKeysResource: typeof getApiKeysResource;
1454
+ putApiKeysResource: typeof putApiKeysResource;
1455
+ postApiKeyResource: typeof postApiKeyResource;
1456
+ deleteApiKeyResource: typeof deleteApiKeyResource;
1457
+ getApiKeyAdvancedResource: typeof getApiKeyAdvancedResource;
1458
+ postApiKeyAdvancedResource: typeof postApiKeyAdvancedResource;
1459
+ putApiKeyAdvancedResource: typeof putApiKeyAdvancedResource;
1460
+ deleteApiKeyAdvancedResource: typeof deleteApiKeyAdvancedResource;
1461
+ postApiKeyAdvancedReactivateResource: typeof postApiKeyAdvancedReactivateResource;
1462
+ getApiKeyTokensResource: typeof getApiKeyTokensResource;
1463
+ putApiKeyTokensResource: typeof putApiKeyTokensResource;
1464
+ postApiKeyTokenResource: typeof postApiKeyTokenResource;
1465
+ deleteApiKeyTokenResource: typeof deleteApiKeyTokenResource;
1466
+ };
1467
+ smartlock: {
1468
+ postSmartlockBulkWebConfigResource: typeof postSmartlockBulkWebConfigResource;
1469
+ getSmartlocksResource: typeof getSmartlocksResource;
1470
+ getSmartlockResource: typeof getSmartlockResource;
1471
+ postSmartlockResource: typeof postSmartlockResource;
1472
+ deleteSmartlockResource: typeof deleteSmartlockResource;
1473
+ postSmartlockActionResource: typeof postSmartlockActionResource;
1474
+ postSmartlockLockActionResource: typeof postSmartlockLockActionResource;
1475
+ postSmartlockUnlockActionResource: typeof postSmartlockUnlockActionResource;
1476
+ postSmartlockAdminPinResource: typeof postSmartlockAdminPinResource;
1477
+ postSmartlockAdvancedConfigResource: typeof postSmartlockAdvancedConfigResource;
1478
+ postSmartlockOpenerAdvancedConfigResource: typeof postSmartlockOpenerAdvancedConfigResource;
1479
+ postSmartdoorAdvancedConfigResource: typeof postSmartdoorAdvancedConfigResource;
1480
+ postSmartlockConfigResource: typeof postSmartlockConfigResource;
1481
+ postSmartlockSyncResource: typeof postSmartlockSyncResource;
1482
+ postSmartlockWebConfigResource: typeof postSmartlockWebConfigResource;
1483
+ };
1484
+ company: {
1485
+ getCompaniesResource: typeof getCompaniesResource;
1486
+ };
1487
+ notification: {
1488
+ getNotificationsResource: typeof getNotificationsResource;
1489
+ putNotificationsResource: typeof putNotificationsResource;
1490
+ getNotificationResource: typeof getNotificationResource;
1491
+ postNotificationResource: typeof postNotificationResource;
1492
+ deleteNotificationResource: typeof deleteNotificationResource;
1493
+ };
1494
+ opener: {
1495
+ getOpenerBrandsResource: typeof getOpenerBrandsResource;
1496
+ getOpenerBrandResource: typeof getOpenerBrandResource;
1497
+ getOpenerIntercomsResource: typeof getOpenerIntercomsResource;
1498
+ getOpenerIntercomResource: typeof getOpenerIntercomResource;
1499
+ };
1500
+ service: {
1501
+ getServicesResource: typeof getServicesResource;
1502
+ getServiceResource: typeof getServiceResource;
1503
+ postServiceLinkResource: typeof postServiceLinkResource;
1504
+ postServiceSyncResource: typeof postServiceSyncResource;
1505
+ postServiceUnlinkResource: typeof postServiceUnlinkResource;
1506
+ };
1507
+ smartlockauth: {
1508
+ getSmartlocksAuthsResource: typeof getSmartlocksAuthsResource;
1509
+ postSmartlocksAuthsResource: typeof postSmartlocksAuthsResource;
1510
+ putSmartlocksAuthsResource: typeof putSmartlocksAuthsResource;
1511
+ deleteSmartlocksAuthsResource: typeof deleteSmartlocksAuthsResource;
1512
+ getSmartlocksAuthsPaginatedResource: typeof getSmartlocksAuthsPaginatedResource;
1513
+ getSmartlockAuthsResource: typeof getSmartlockAuthsResource;
1514
+ putSmartlockAuthsResource: typeof putSmartlockAuthsResource;
1515
+ postSmartlockAuthWithSharedKeyResource: typeof postSmartlockAuthWithSharedKeyResource;
1516
+ getSmartlockAuthResource: typeof getSmartlockAuthResource;
1517
+ postSmartlockAuthResource: typeof postSmartlockAuthResource;
1518
+ deleteSmartlockAuthResource: typeof deleteSmartlockAuthResource;
1519
+ };
1520
+ smartlocklog: {
1521
+ getSmartlocksLogsResource: typeof getSmartlocksLogsResource;
1522
+ getSmartlockLogsResource: typeof getSmartlockLogsResource;
1523
+ };
1524
+ };
1525
+ declare const tagDictionary: {
1526
+ readonly account: {
1527
+ readonly GET: readonly ["getAccountsResource", "getAccountIntegrationsResource", "getAccountSettingResource", "getAccountSubsResource", "getAccountSubResource"];
1528
+ readonly POST: readonly ["postAccountsResource", "postAccountEmailChangeResource", "postAccountEmailVerifyResource", "postAccountOtpResource", "postAccountPasswordResetResource", "postAccountSubResource"];
1529
+ readonly DELETE: readonly ["deleteAccountsResource", "deleteAccountIntegrationsResource", "deleteAccountOtpResource", "deleteAccountSettingResource", "deleteAccountSubResource"];
1530
+ readonly PUT: readonly ["putAccountOtpResource", "putAccountSettingResource", "putAccountSubsResource"];
1531
+ };
1532
+ readonly accountuser: {
1533
+ readonly GET: readonly ["getAccountUsersResource", "getAccountUserResource"];
1534
+ readonly PUT: readonly ["putAccountUsersResource"];
1535
+ readonly POST: readonly ["postAccountUserResource"];
1536
+ readonly DELETE: readonly ["deleteAccountUserResource"];
1537
+ };
1538
+ readonly address: {
1539
+ readonly GET: readonly ["getAddressesResource", "getAddressUnitsResource"];
1540
+ readonly PUT: readonly ["putAddressesResource", "putAddressUnitsResource"];
1541
+ readonly POST: readonly ["postAddressResource"];
1542
+ readonly DELETE: readonly ["deleteAddressResource", "deleteAddressUnitsResource", "deleteAddressUnitResource"];
1543
+ };
1544
+ readonly addresstoken: {
1545
+ readonly GET: readonly ["getAddressTokenResource", "getAddressTokenRedeemResource", "getAddressTokensResource"];
1546
+ readonly POST: readonly ["postAddressTokenRedeemResource"];
1547
+ };
1548
+ readonly addressreservation: {
1549
+ readonly GET: readonly ["getAddressReservationsResource"];
1550
+ readonly POST: readonly ["postAddressReservationIssueResource", "postAddressReservationRevokeResource", "postReservationAccessTimesUpdateResource"];
1551
+ };
1552
+ readonly advancedapi: {
1553
+ readonly GET: readonly ["getDecentralWebhooksResource", "getWebhookLogsResource"];
1554
+ readonly PUT: readonly ["putDecentralWebhooksResource", "putSmartlockAuthsAdvancedResource"];
1555
+ readonly DELETE: readonly ["deleteDecentralWebhookResource"];
1556
+ readonly POST: readonly ["postSmartlockActionAdvancedResource", "postSmartlockLockActionAdvancedResource", "postSmartlockUnlockActionAdvancedResource"];
1557
+ };
1558
+ readonly apikey: {
1559
+ readonly GET: readonly ["getApiKeysResource", "getApiKeyAdvancedResource", "getApiKeyTokensResource"];
1560
+ readonly PUT: readonly ["putApiKeysResource", "putApiKeyAdvancedResource", "putApiKeyTokensResource"];
1561
+ readonly POST: readonly ["postApiKeyResource", "postApiKeyAdvancedResource", "postApiKeyAdvancedReactivateResource", "postApiKeyTokenResource"];
1562
+ readonly DELETE: readonly ["deleteApiKeyResource", "deleteApiKeyAdvancedResource", "deleteApiKeyTokenResource"];
1563
+ };
1564
+ readonly smartlock: {
1565
+ readonly POST: readonly ["postSmartlockBulkWebConfigResource", "postSmartlockResource", "postSmartlockActionResource", "postSmartlockLockActionResource", "postSmartlockUnlockActionResource", "postSmartlockAdminPinResource", "postSmartlockAdvancedConfigResource", "postSmartlockOpenerAdvancedConfigResource", "postSmartdoorAdvancedConfigResource", "postSmartlockConfigResource", "postSmartlockSyncResource", "postSmartlockWebConfigResource"];
1566
+ readonly GET: readonly ["getSmartlocksResource", "getSmartlockResource"];
1567
+ readonly DELETE: readonly ["deleteSmartlockResource"];
1568
+ };
1569
+ readonly company: {
1570
+ readonly GET: readonly ["getCompaniesResource"];
1571
+ };
1572
+ readonly notification: {
1573
+ readonly GET: readonly ["getNotificationsResource", "getNotificationResource"];
1574
+ readonly PUT: readonly ["putNotificationsResource"];
1575
+ readonly POST: readonly ["postNotificationResource"];
1576
+ readonly DELETE: readonly ["deleteNotificationResource"];
1577
+ };
1578
+ readonly opener: {
1579
+ readonly GET: readonly ["getOpenerBrandsResource", "getOpenerBrandResource", "getOpenerIntercomsResource", "getOpenerIntercomResource"];
1580
+ };
1581
+ readonly service: {
1582
+ readonly GET: readonly ["getServicesResource", "getServiceResource"];
1583
+ readonly POST: readonly ["postServiceLinkResource", "postServiceSyncResource", "postServiceUnlinkResource"];
1584
+ };
1585
+ readonly smartlockauth: {
1586
+ readonly GET: readonly ["getSmartlocksAuthsResource", "getSmartlocksAuthsPaginatedResource", "getSmartlockAuthsResource", "getSmartlockAuthResource"];
1587
+ readonly POST: readonly ["postSmartlocksAuthsResource", "postSmartlockAuthWithSharedKeyResource", "postSmartlockAuthResource"];
1588
+ readonly PUT: readonly ["putSmartlocksAuthsResource", "putSmartlockAuthsResource"];
1589
+ readonly DELETE: readonly ["deleteSmartlocksAuthsResource", "deleteSmartlockAuthResource"];
1590
+ };
1591
+ readonly smartlocklog: {
1592
+ readonly GET: readonly ["getSmartlocksLogsResource", "getSmartlockLogsResource"];
1593
+ };
1594
+ };
1595
+
1596
+ export { deleteAccountIntegrationsResource, deleteAccountOtpResource, deleteAccountSettingResource, deleteAccountSubResource, deleteAccountUserResource, deleteAccountsResource, deleteAddressResource, deleteAddressUnitResource, deleteAddressUnitsResource, deleteApiKeyAdvancedResource, deleteApiKeyResource, deleteApiKeyTokenResource, deleteDecentralWebhookResource, deleteNotificationResource, deleteSmartlockAuthResource, deleteSmartlockResource, deleteSmartlocksAuthsResource, getAccountIntegrationsResource, getAccountSettingResource, getAccountSubResource, getAccountSubsResource, getAccountUserResource, getAccountUsersResource, getAccountsResource, getAddressReservationsResource, getAddressTokenRedeemResource, getAddressTokenResource, getAddressTokensResource, getAddressUnitsResource, getAddressesResource, getApiKeyAdvancedResource, getApiKeyTokensResource, getApiKeysResource, getCompaniesResource, getDecentralWebhooksResource, getNotificationResource, getNotificationsResource, getOpenerBrandResource, getOpenerBrandsResource, getOpenerIntercomResource, getOpenerIntercomsResource, getServiceResource, getServicesResource, getSmartlockAuthResource, getSmartlockAuthsResource, getSmartlockLogsResource, getSmartlockResource, getSmartlocksAuthsPaginatedResource, getSmartlocksAuthsResource, getSmartlocksLogsResource, getSmartlocksResource, getWebhookLogsResource, operationsByPath, operationsByTag, postAccountEmailChangeResource, postAccountEmailVerifyResource, postAccountOtpResource, postAccountPasswordResetResource, postAccountSubResource, postAccountUserResource, postAccountsResource, postAddressReservationIssueResource, postAddressReservationRevokeResource, postAddressResource, postAddressTokenRedeemResource, postApiKeyAdvancedReactivateResource, postApiKeyAdvancedResource, postApiKeyResource, postApiKeyTokenResource, postNotificationResource, postReservationAccessTimesUpdateResource, postServiceLinkResource, postServiceSyncResource, postServiceUnlinkResource, postSmartdoorAdvancedConfigResource, postSmartlockActionAdvancedResource, postSmartlockActionResource, postSmartlockAdminPinResource, postSmartlockAdvancedConfigResource, postSmartlockAuthResource, postSmartlockAuthWithSharedKeyResource, postSmartlockBulkWebConfigResource, postSmartlockConfigResource, postSmartlockLockActionAdvancedResource, postSmartlockLockActionResource, postSmartlockOpenerAdvancedConfigResource, postSmartlockResource, postSmartlockSyncResource, postSmartlockUnlockActionAdvancedResource, postSmartlockUnlockActionResource, postSmartlockWebConfigResource, postSmartlocksAuthsResource, putAccountOtpResource, putAccountSettingResource, putAccountSubsResource, putAccountUsersResource, putAddressUnitsResource, putAddressesResource, putApiKeyAdvancedResource, putApiKeyTokensResource, putApiKeysResource, putDecentralWebhooksResource, putNotificationsResource, putSmartlockAuthsAdvancedResource, putSmartlockAuthsResource, putSmartlocksAuthsResource, tagDictionary };
1597
+ //# sourceMappingURL=components.d.mts.map