nuki-api-js 0.0.5 → 0.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.
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +12 -0
- package/dist/index.cjs +1 -34
- package/dist/index.d.cts +18 -222
- package/dist/index.d.mts +18 -222
- package/dist/index.d.ts +18 -222
- package/dist/index.mjs +1 -34
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Generated by @openapi-codegen
|
|
3
3
|
*
|
|
4
|
-
* @version 3.
|
|
4
|
+
* @version 3.10.2
|
|
5
5
|
*/
|
|
6
6
|
type Account = {
|
|
7
7
|
/**
|
|
@@ -302,63 +302,6 @@ type AccountSubUpdate = {
|
|
|
302
302
|
config?: AccountConfig;
|
|
303
303
|
profile?: AccountProfile;
|
|
304
304
|
};
|
|
305
|
-
type AccountSubscription = {
|
|
306
|
-
id: ObjectId;
|
|
307
|
-
/**
|
|
308
|
-
* The account id
|
|
309
|
-
*
|
|
310
|
-
* @format int32
|
|
311
|
-
*/
|
|
312
|
-
accountId: number;
|
|
313
|
-
/**
|
|
314
|
-
* The subscription id
|
|
315
|
-
*
|
|
316
|
-
* @format int32
|
|
317
|
-
*/
|
|
318
|
-
subscriptionId: number;
|
|
319
|
-
/**
|
|
320
|
-
* The actual period
|
|
321
|
-
*
|
|
322
|
-
* @format int32
|
|
323
|
-
*/
|
|
324
|
-
period: number;
|
|
325
|
-
/**
|
|
326
|
-
* The payment type
|
|
327
|
-
*/
|
|
328
|
-
paymentType: 'free' | 'paypal' | 'card' | 'account';
|
|
329
|
-
/**
|
|
330
|
-
* The quantity of authorizations
|
|
331
|
-
*
|
|
332
|
-
* @format int32
|
|
333
|
-
*/
|
|
334
|
-
quantity: number;
|
|
335
|
-
/**
|
|
336
|
-
* The optional gift article after first purchase
|
|
337
|
-
*/
|
|
338
|
-
giftArticle?: string;
|
|
339
|
-
/**
|
|
340
|
-
* The status
|
|
341
|
-
*/
|
|
342
|
-
status: 'active' | 'deactivated' | 'finished';
|
|
343
|
-
/**
|
|
344
|
-
* The start date
|
|
345
|
-
*
|
|
346
|
-
* @format int64
|
|
347
|
-
*/
|
|
348
|
-
startDate?: number;
|
|
349
|
-
/**
|
|
350
|
-
* The period end date
|
|
351
|
-
*
|
|
352
|
-
* @format int64
|
|
353
|
-
*/
|
|
354
|
-
periodEndDate?: number;
|
|
355
|
-
/**
|
|
356
|
-
* The next payment date
|
|
357
|
-
*
|
|
358
|
-
* @format int64
|
|
359
|
-
*/
|
|
360
|
-
nextPaymentDate?: number;
|
|
361
|
-
};
|
|
362
305
|
type AccountUpdate = {
|
|
363
306
|
/**
|
|
364
307
|
* The new email address
|
|
@@ -1054,12 +997,12 @@ type Application = {
|
|
|
1054
997
|
connegService?: ConnegService;
|
|
1055
998
|
metadataService?: MetadataService;
|
|
1056
999
|
converterService?: ConverterService;
|
|
1000
|
+
rangeService?: RangeService;
|
|
1001
|
+
taskService?: TaskService;
|
|
1057
1002
|
connectorService?: ConnectorService;
|
|
1058
1003
|
decoderService?: DecoderService;
|
|
1059
1004
|
encoderService?: EncoderService;
|
|
1060
|
-
taskService?: TaskService;
|
|
1061
1005
|
tunnelService?: TunnelService;
|
|
1062
|
-
rangeService?: RangeService;
|
|
1063
1006
|
logger?: Logger;
|
|
1064
1007
|
application?: Application;
|
|
1065
1008
|
stopped?: boolean;
|
|
@@ -1169,22 +1112,22 @@ type Company = {
|
|
|
1169
1112
|
email?: string;
|
|
1170
1113
|
};
|
|
1171
1114
|
type CompletableFuture = {
|
|
1172
|
-
done?: boolean;
|
|
1173
|
-
cancelled?: boolean;
|
|
1174
1115
|
completedExceptionally?: boolean;
|
|
1175
1116
|
/**
|
|
1176
1117
|
* @format int32
|
|
1177
1118
|
*/
|
|
1178
1119
|
numberOfDependents?: number;
|
|
1179
|
-
};
|
|
1180
|
-
type CompletableFutureListApiKey = {
|
|
1181
1120
|
done?: boolean;
|
|
1182
1121
|
cancelled?: boolean;
|
|
1122
|
+
};
|
|
1123
|
+
type CompletableFutureListApiKey = {
|
|
1183
1124
|
completedExceptionally?: boolean;
|
|
1184
1125
|
/**
|
|
1185
1126
|
* @format int32
|
|
1186
1127
|
*/
|
|
1187
1128
|
numberOfDependents?: number;
|
|
1129
|
+
done?: boolean;
|
|
1130
|
+
cancelled?: boolean;
|
|
1188
1131
|
};
|
|
1189
1132
|
type Conditions = {
|
|
1190
1133
|
match?: Tag[];
|
|
@@ -1761,8 +1704,8 @@ type Protocol = {
|
|
|
1761
1704
|
version?: string;
|
|
1762
1705
|
};
|
|
1763
1706
|
type PublicKey = {
|
|
1764
|
-
format?: string;
|
|
1765
1707
|
algorithm?: string;
|
|
1708
|
+
format?: string;
|
|
1766
1709
|
encoded?: string[];
|
|
1767
1710
|
};
|
|
1768
1711
|
type Range = {
|
|
@@ -1797,9 +1740,9 @@ type RecipientInfo = {
|
|
|
1797
1740
|
};
|
|
1798
1741
|
type Reference = {
|
|
1799
1742
|
baseRef?: Reference;
|
|
1800
|
-
identifier?: string;
|
|
1801
1743
|
schemeSpecificPart?: string;
|
|
1802
1744
|
relative?: boolean;
|
|
1745
|
+
identifier?: string;
|
|
1803
1746
|
path?: string;
|
|
1804
1747
|
scheme?: string;
|
|
1805
1748
|
fragment?: string;
|
|
@@ -1854,15 +1797,15 @@ type Representation = {
|
|
|
1854
1797
|
*/
|
|
1855
1798
|
size?: number;
|
|
1856
1799
|
stream?: InputStream;
|
|
1857
|
-
reader?: Reader;
|
|
1858
1800
|
text?: string;
|
|
1801
|
+
selectable?: boolean;
|
|
1802
|
+
registration?: SelectionRegistration;
|
|
1803
|
+
reader?: Reader;
|
|
1859
1804
|
/**
|
|
1860
1805
|
* @format int64
|
|
1861
1806
|
*/
|
|
1862
1807
|
availableSize?: number;
|
|
1863
1808
|
transient?: boolean;
|
|
1864
|
-
registration?: SelectionRegistration;
|
|
1865
|
-
selectable?: boolean;
|
|
1866
1809
|
empty?: boolean;
|
|
1867
1810
|
channel?: ReadableByteChannel;
|
|
1868
1811
|
};
|
|
@@ -1993,8 +1936,8 @@ type Response$1 = {
|
|
|
1993
1936
|
provisional?: boolean;
|
|
1994
1937
|
final?: boolean;
|
|
1995
1938
|
headers?: Header[];
|
|
1996
|
-
entityAvailable?: boolean;
|
|
1997
1939
|
entityAsText?: string;
|
|
1940
|
+
entityAvailable?: boolean;
|
|
1998
1941
|
};
|
|
1999
1942
|
type Restlet = {
|
|
2000
1943
|
author?: string;
|
|
@@ -3150,7 +3093,7 @@ type SmartlockLog = {
|
|
|
3150
3093
|
*/
|
|
3151
3094
|
name: string;
|
|
3152
3095
|
/**
|
|
3153
|
-
* The action: 1 .. unlock, 2 .. lock, 3 .. unlatch, 4 .. lock'n'go, 5 .. lock'n'go with unlatch, 208 .. door warning ajar, 209 door warning status mismatch, 224 .. doorbell recognition (only Opener), 240 .. door opened, 241 .. door closed, 242 .. door sensor jammed, 243 .. firmware update, 250 .. door log enabled, 251 .. door log disabled, 252 .. initialization, 253 .. calibration, 254 .. log enabled, 255 .. log disabled
|
|
3096
|
+
* The action: 1 .. unlock, 2 .. lock, 3 .. unlatch, 4 .. lock'n'go, 5 .. lock'n'go with unlatch, 11 .. Restore reset to default setting, 208 .. door warning ajar, 209 door warning status mismatch, 224 .. doorbell recognition (only Opener), 240 .. door opened, 241 .. door closed, 242 .. door sensor jammed, 243 .. firmware update, 250 .. door log enabled, 251 .. door log disabled, 252 .. initialization, 253 .. calibration, 254 .. log enabled, 255 .. log disabled
|
|
3154
3097
|
*
|
|
3155
3098
|
* @format int32
|
|
3156
3099
|
* @minimum 1
|
|
@@ -3414,62 +3357,6 @@ type StatusService = {
|
|
|
3414
3357
|
overwriting?: boolean;
|
|
3415
3358
|
stopped?: boolean;
|
|
3416
3359
|
};
|
|
3417
|
-
type Subscription = {
|
|
3418
|
-
/**
|
|
3419
|
-
* The unique subscription id
|
|
3420
|
-
*
|
|
3421
|
-
* @format int32
|
|
3422
|
-
*/
|
|
3423
|
-
subscriptionId: number;
|
|
3424
|
-
/**
|
|
3425
|
-
* The title per language
|
|
3426
|
-
*
|
|
3427
|
-
* @example { de: '', en: ''}
|
|
3428
|
-
*/
|
|
3429
|
-
titles: {
|
|
3430
|
-
[key: string]: string;
|
|
3431
|
-
};
|
|
3432
|
-
/**
|
|
3433
|
-
* The description per language
|
|
3434
|
-
*
|
|
3435
|
-
* @example { de: '', en: ''}
|
|
3436
|
-
*/
|
|
3437
|
-
descriptions: {
|
|
3438
|
-
[key: string]: string;
|
|
3439
|
-
};
|
|
3440
|
-
/**
|
|
3441
|
-
* The quantity of authorizations
|
|
3442
|
-
*
|
|
3443
|
-
* @format int32
|
|
3444
|
-
*/
|
|
3445
|
-
quantity: number;
|
|
3446
|
-
/**
|
|
3447
|
-
* The length with number and unit (e.g. 30d, 2y)
|
|
3448
|
-
*
|
|
3449
|
-
* @example 30d
|
|
3450
|
-
*/
|
|
3451
|
-
length: string;
|
|
3452
|
-
/**
|
|
3453
|
-
* The price
|
|
3454
|
-
*
|
|
3455
|
-
* @format double
|
|
3456
|
-
*/
|
|
3457
|
-
price: number;
|
|
3458
|
-
/**
|
|
3459
|
-
* The optional gift article
|
|
3460
|
-
*/
|
|
3461
|
-
giftArticle?: string;
|
|
3462
|
-
/**
|
|
3463
|
-
* True if the subscription is available for new users
|
|
3464
|
-
*/
|
|
3465
|
-
available: boolean;
|
|
3466
|
-
/**
|
|
3467
|
-
* The update date
|
|
3468
|
-
*
|
|
3469
|
-
* @format int64
|
|
3470
|
-
*/
|
|
3471
|
-
updateDate?: number;
|
|
3472
|
-
};
|
|
3473
3360
|
type Tag = {
|
|
3474
3361
|
name?: string;
|
|
3475
3362
|
weak?: boolean;
|
|
@@ -3647,7 +3534,6 @@ type schemas_AccountSetting = AccountSetting;
|
|
|
3647
3534
|
type schemas_AccountSettingWeb = AccountSettingWeb;
|
|
3648
3535
|
type schemas_AccountSubCreate = AccountSubCreate;
|
|
3649
3536
|
type schemas_AccountSubUpdate = AccountSubUpdate;
|
|
3650
|
-
type schemas_AccountSubscription = AccountSubscription;
|
|
3651
3537
|
type schemas_AccountUpdate = AccountUpdate;
|
|
3652
3538
|
type schemas_AccountUser = AccountUser;
|
|
3653
3539
|
type schemas_AccountUserCreate = AccountUserCreate;
|
|
@@ -3775,7 +3661,6 @@ type schemas_StackTraceElement = StackTraceElement;
|
|
|
3775
3661
|
type schemas_StaleDevice = StaleDevice;
|
|
3776
3662
|
type schemas_Status = Status;
|
|
3777
3663
|
type schemas_StatusService = StatusService;
|
|
3778
|
-
type schemas_Subscription = Subscription;
|
|
3779
3664
|
type schemas_Tag = Tag;
|
|
3780
3665
|
type schemas_TaskService = TaskService;
|
|
3781
3666
|
type schemas_TermsOfUse = TermsOfUse;
|
|
@@ -3791,7 +3676,7 @@ type schemas_WebConfigRequest = WebConfigRequest;
|
|
|
3791
3676
|
type schemas_WebhookLog = WebhookLog;
|
|
3792
3677
|
type schemas_WebhookMessage = WebhookMessage;
|
|
3793
3678
|
declare namespace schemas {
|
|
3794
|
-
export type { schemas_Account as Account, schemas_AccountConfig as AccountConfig, schemas_AccountDescent as AccountDescent, schemas_AccountEmailChange as AccountEmailChange, schemas_AccountIntegration as AccountIntegration, schemas_AccountOtpEnable as AccountOtpEnable, schemas_AccountPasswordReset as AccountPasswordReset, schemas_AccountProfile as AccountProfile, schemas_AccountSetting as AccountSetting, schemas_AccountSettingWeb as AccountSettingWeb, schemas_AccountSubCreate as AccountSubCreate, schemas_AccountSubUpdate as AccountSubUpdate,
|
|
3679
|
+
export type { schemas_Account as Account, schemas_AccountConfig as AccountConfig, schemas_AccountDescent as AccountDescent, schemas_AccountEmailChange as AccountEmailChange, schemas_AccountIntegration as AccountIntegration, schemas_AccountOtpEnable as AccountOtpEnable, schemas_AccountPasswordReset as AccountPasswordReset, schemas_AccountProfile as AccountProfile, schemas_AccountSetting as AccountSetting, schemas_AccountSettingWeb as AccountSettingWeb, schemas_AccountSubCreate as AccountSubCreate, schemas_AccountSubUpdate as AccountSubUpdate, schemas_AccountUpdate as AccountUpdate, schemas_AccountUser as AccountUser, schemas_AccountUserCreate as AccountUserCreate, schemas_AccountUserUpdate as AccountUserUpdate, schemas_Address as Address, schemas_AddressCreate as AddressCreate, schemas_AddressReservation as AddressReservation, schemas_AddressToken as AddressToken, schemas_AddressTokenInfo as AddressTokenInfo, schemas_AddressUnit as AddressUnit, schemas_AddressUnitResponse as AddressUnitResponse, schemas_AddressUpdate as AddressUpdate, schemas_AdvancedApiKey as AdvancedApiKey, schemas_AdvancedApiKeyCreate as AdvancedApiKeyCreate, schemas_AdvancedApiKeyUpdate as AdvancedApiKeyUpdate, schemas_AdvancedConfirmationResponse as AdvancedConfirmationResponse, schemas_ApiKey as ApiKey, schemas_ApiKeyAdvanced as ApiKeyAdvanced, schemas_ApiKeyCreate as ApiKeyCreate, schemas_ApiKeyService as ApiKeyService, schemas_ApiKeyToken as ApiKeyToken, schemas_ApiKeyTokenCreate as ApiKeyTokenCreate, schemas_ApiKeyTokenUpdate as ApiKeyTokenUpdate, schemas_ApiKeyUpdate as ApiKeyUpdate, schemas_Application as Application, schemas_AuthenticationInfo as AuthenticationInfo, schemas_BulkWebConfigRequest as BulkWebConfigRequest, schemas_CacheDirective as CacheDirective, schemas_Certificate as Certificate, schemas_ChallengeRequest as ChallengeRequest, schemas_ChallengeResponse as ChallengeResponse, schemas_ChallengeScheme as ChallengeScheme, schemas_CharacterSet as CharacterSet, schemas_ClientInfo as ClientInfo, schemas_Company as Company, schemas_CompletableFuture as CompletableFuture, schemas_CompletableFutureListApiKey as CompletableFutureListApiKey, schemas_Conditions as Conditions, schemas_ConnectorService as ConnectorService, schemas_ConnegService as ConnegService, schemas_Context as Context, schemas_ConverterService as ConverterService, schemas_Cookie as Cookie, schemas_CookieSetting as CookieSetting, schemas_DecentralWebhook as DecentralWebhook, schemas_DecoderService as DecoderService, schemas_Digest as Digest, schemas_Disposition as Disposition, schemas_EncoderService as EncoderService, schemas_Encoding as Encoding, schemas_Enroler as Enroler, schemas_Enumeration as Enumeration, schemas_EnumerationString as EnumerationString, schemas_ErrorManager as ErrorManager, schemas_Expectation as Expectation, schemas_Filter as Filter, schemas_Formatter as Formatter, schemas_Handler as Handler, schemas_Header as Header, schemas_InputStream as InputStream, schemas_Language as Language, schemas_Level as Level, schemas_Locale as Locale, schemas_Logger as Logger, schemas_MediaType as MediaType, schemas_Metadata as Metadata, schemas_MetadataService as MetadataService, schemas_Method as Method, schemas_MyAccount as MyAccount, schemas_NamedValue as NamedValue, schemas_NamedValueString as NamedValueString, schemas_Notification as Notification, schemas_NotificationSetting as NotificationSetting, schemas_ObjectId as ObjectId, schemas_OpenerIntercomBrand as OpenerIntercomBrand, schemas_OpenerIntercomModel as OpenerIntercomModel, schemas_Parameter as Parameter, schemas_Preference as Preference, schemas_PreferenceCharacterSet as PreferenceCharacterSet, schemas_PreferenceEncoding as PreferenceEncoding, schemas_PreferenceLanguage as PreferenceLanguage, schemas_PreferenceMediaType as PreferenceMediaType, schemas_Principal as Principal, schemas_Product as Product, schemas_Protocol as Protocol, schemas_PublicKey as PublicKey, schemas_Range as Range, schemas_RangeService as RangeService, schemas_ReadableByteChannel as ReadableByteChannel, schemas_Reader as Reader, schemas_RecipientInfo as RecipientInfo, schemas_Reference as Reference, schemas_Representation as Representation, schemas_Request as Request, schemas_ReservationAccessTimesUpdate as ReservationAccessTimesUpdate, schemas_ResourceBundle as ResourceBundle, Response$1 as Response, schemas_Restlet as Restlet, schemas_Role as Role, schemas_ScheduledExecutorService as ScheduledExecutorService, schemas_SelectableChannel as SelectableChannel, schemas_SelectionListener as SelectionListener, schemas_SelectionRegistration as SelectionRegistration, schemas_ServerInfo as ServerInfo, schemas_Service as Service, schemas_ShsSubscription as ShsSubscription, schemas_Smartlock as Smartlock, SmartlockAction$1 as SmartlockAction, schemas_SmartlockAdminPinUpdate as SmartlockAdminPinUpdate, schemas_SmartlockAdvancedConfig as SmartlockAdvancedConfig, schemas_SmartlockAuth as SmartlockAuth, schemas_SmartlockAuthCreate as SmartlockAuthCreate, schemas_SmartlockAuthMultiUpdate as SmartlockAuthMultiUpdate, schemas_SmartlockAuthUpdate as SmartlockAuthUpdate, schemas_SmartlockAuthWithSharedKeyCreate as SmartlockAuthWithSharedKeyCreate, schemas_SmartlockConfig as SmartlockConfig, schemas_SmartlockLog as SmartlockLog, schemas_SmartlockLogOpenerLog as SmartlockLogOpenerLog, schemas_SmartlockOpenerAdvancedConfig as SmartlockOpenerAdvancedConfig, schemas_SmartlockSmartdoorAdvancedConfig as SmartlockSmartdoorAdvancedConfig, schemas_SmartlockState as SmartlockState, schemas_SmartlockUpdate as SmartlockUpdate, schemas_SmartlockWebConfig as SmartlockWebConfig, schemas_SmartlocksAuthAdvancedCreate as SmartlocksAuthAdvancedCreate, schemas_SmartlocksAuthCreate as SmartlocksAuthCreate, schemas_StackTraceElement as StackTraceElement, schemas_StaleDevice as StaleDevice, schemas_Status as Status, schemas_StatusService as StatusService, schemas_Tag as Tag, schemas_TaskService as TaskService, schemas_TermsOfUse as TermsOfUse, schemas_Throwable as Throwable, schemas_TunnelService as TunnelService, schemas_Uniform as Uniform, schemas_User as User, schemas_Variant as Variant, schemas_Verifier as Verifier, schemas_WakeupListener as WakeupListener, schemas_Warning as Warning, schemas_WebConfigRequest as WebConfigRequest, schemas_WebhookLog as WebhookLog, schemas_WebhookMessage as WebhookMessage };
|
|
3795
3680
|
}
|
|
3796
3681
|
|
|
3797
3682
|
type RequestInit = {
|
|
@@ -3824,7 +3709,7 @@ type ErrorWrapper<TError> = TError | {
|
|
|
3824
3709
|
/**
|
|
3825
3710
|
* Generated by @openapi-codegen
|
|
3826
3711
|
*
|
|
3827
|
-
* @version 3.
|
|
3712
|
+
* @version 3.10.2
|
|
3828
3713
|
*/
|
|
3829
3714
|
|
|
3830
3715
|
type SmartlockAction = SmartlockAction$1;
|
|
@@ -3837,7 +3722,7 @@ declare namespace requestBodies {
|
|
|
3837
3722
|
/**
|
|
3838
3723
|
* Generated by @openapi-codegen
|
|
3839
3724
|
*
|
|
3840
|
-
* @version 3.
|
|
3725
|
+
* @version 3.10.2
|
|
3841
3726
|
*/
|
|
3842
3727
|
|
|
3843
3728
|
type GetAccountsResourceError = ErrorWrapper<undefined>;
|
|
@@ -3964,31 +3849,6 @@ type DeleteAccountSubResourceVariables = {
|
|
|
3964
3849
|
pathParams: DeleteAccountSubResourcePathParams;
|
|
3965
3850
|
} & FetcherExtraProps;
|
|
3966
3851
|
declare const deleteAccountSubResource: (variables: DeleteAccountSubResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
3967
|
-
type PostAccountSubscriptionPayResourceError = ErrorWrapper<undefined>;
|
|
3968
|
-
type PostAccountSubscriptionPayResourceVariables = FetcherExtraProps;
|
|
3969
|
-
declare const postAccountSubscriptionPayResource: (variables: PostAccountSubscriptionPayResourceVariables, signal?: AbortSignal) => Promise<string>;
|
|
3970
|
-
type PostAccountSubscriptionActivateResourcePathParams = {
|
|
3971
|
-
/**
|
|
3972
|
-
* The account subscription unique id
|
|
3973
|
-
*/
|
|
3974
|
-
id: string;
|
|
3975
|
-
};
|
|
3976
|
-
type PostAccountSubscriptionActivateResourceError = ErrorWrapper<undefined>;
|
|
3977
|
-
type PostAccountSubscriptionActivateResourceVariables = {
|
|
3978
|
-
pathParams: PostAccountSubscriptionActivateResourcePathParams;
|
|
3979
|
-
} & FetcherExtraProps;
|
|
3980
|
-
declare const postAccountSubscriptionActivateResource: (variables: PostAccountSubscriptionActivateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
3981
|
-
type PostAccountSubscriptionTerminateResourcePathParams = {
|
|
3982
|
-
/**
|
|
3983
|
-
* The account subscription unique id
|
|
3984
|
-
*/
|
|
3985
|
-
id: string;
|
|
3986
|
-
};
|
|
3987
|
-
type PostAccountSubscriptionTerminateResourceError = ErrorWrapper<undefined>;
|
|
3988
|
-
type PostAccountSubscriptionTerminateResourceVariables = {
|
|
3989
|
-
pathParams: PostAccountSubscriptionTerminateResourcePathParams;
|
|
3990
|
-
} & FetcherExtraProps;
|
|
3991
|
-
declare const postAccountSubscriptionTerminateResource: (variables: PostAccountSubscriptionTerminateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
3992
3852
|
type GetAccountUsersResourceQueryParams = {
|
|
3993
3853
|
/**
|
|
3994
3854
|
* Filter for email
|
|
@@ -4431,10 +4291,6 @@ type GetWebhookLogsResourceVariables = {
|
|
|
4431
4291
|
queryParams?: GetWebhookLogsResourceQueryParams;
|
|
4432
4292
|
} & FetcherExtraProps;
|
|
4433
4293
|
declare const getWebhookLogsResource: (variables: GetWebhookLogsResourceVariables, signal?: AbortSignal) => Promise<GetWebhookLogsResourceResponse>;
|
|
4434
|
-
type GetAccountSubscriptionsResourceError = ErrorWrapper<undefined>;
|
|
4435
|
-
type GetAccountSubscriptionsResourceResponse = AccountSubscription[];
|
|
4436
|
-
type GetAccountSubscriptionsResourceVariables = FetcherExtraProps;
|
|
4437
|
-
declare const getAccountSubscriptionsResource: (variables: GetAccountSubscriptionsResourceVariables, signal?: AbortSignal) => Promise<GetAccountSubscriptionsResourceResponse>;
|
|
4438
4294
|
type PostSmartlockBulkWebConfigResourceError = ErrorWrapper<undefined>;
|
|
4439
4295
|
type PostSmartlockBulkWebConfigResourceVariables = {
|
|
4440
4296
|
body?: BulkWebConfigRequest;
|
|
@@ -5005,21 +4861,6 @@ type PostSmartlockWebConfigResourceVariables = {
|
|
|
5005
4861
|
pathParams: PostSmartlockWebConfigResourcePathParams;
|
|
5006
4862
|
} & FetcherExtraProps;
|
|
5007
4863
|
declare const postSmartlockWebConfigResource: (variables: PostSmartlockWebConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5008
|
-
type GetSubscriptionsResourceError = ErrorWrapper<undefined>;
|
|
5009
|
-
type GetSubscriptionsResourceResponse = Subscription[];
|
|
5010
|
-
type GetSubscriptionsResourceVariables = FetcherExtraProps;
|
|
5011
|
-
declare const getSubscriptionsResource: (variables: GetSubscriptionsResourceVariables, signal?: AbortSignal) => Promise<GetSubscriptionsResourceResponse>;
|
|
5012
|
-
type GetSubscriptionResourcePathParams = {
|
|
5013
|
-
/**
|
|
5014
|
-
* The subscription id
|
|
5015
|
-
*/
|
|
5016
|
-
subscriptionId: number;
|
|
5017
|
-
};
|
|
5018
|
-
type GetSubscriptionResourceError = ErrorWrapper<undefined>;
|
|
5019
|
-
type GetSubscriptionResourceVariables = {
|
|
5020
|
-
pathParams: GetSubscriptionResourcePathParams;
|
|
5021
|
-
} & FetcherExtraProps;
|
|
5022
|
-
declare const getSubscriptionResource: (variables: GetSubscriptionResourceVariables, signal?: AbortSignal) => Promise<Subscription>;
|
|
5023
4864
|
declare const operationsByTag: {
|
|
5024
4865
|
account: {
|
|
5025
4866
|
getAccountsResource: (variables: GetAccountsResourceVariables, signal?: AbortSignal) => Promise<MyAccount>;
|
|
@@ -5042,12 +4883,6 @@ declare const operationsByTag: {
|
|
|
5042
4883
|
postAccountSubResource: (variables: PostAccountSubResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5043
4884
|
deleteAccountSubResource: (variables: DeleteAccountSubResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5044
4885
|
};
|
|
5045
|
-
accountSubscription: {
|
|
5046
|
-
postAccountSubscriptionPayResource: (variables: PostAccountSubscriptionPayResourceVariables, signal?: AbortSignal) => Promise<string>;
|
|
5047
|
-
postAccountSubscriptionActivateResource: (variables: PostAccountSubscriptionActivateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5048
|
-
postAccountSubscriptionTerminateResource: (variables: PostAccountSubscriptionTerminateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5049
|
-
getAccountSubscriptionsResource: (variables: GetAccountSubscriptionsResourceVariables, signal?: AbortSignal) => Promise<GetAccountSubscriptionsResourceResponse>;
|
|
5050
|
-
};
|
|
5051
4886
|
accountUser: {
|
|
5052
4887
|
getAccountUsersResource: (variables: GetAccountUsersResourceVariables, signal?: AbortSignal) => Promise<GetAccountUsersResourceResponse>;
|
|
5053
4888
|
putAccountUsersResource: (variables: PutAccountUsersResourceVariables, signal?: AbortSignal) => Promise<AccountUser>;
|
|
@@ -5158,10 +4993,6 @@ declare const operationsByTag: {
|
|
|
5158
4993
|
getSmartlocksLogsResource: (variables: GetSmartlocksLogsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlocksLogsResourceResponse>;
|
|
5159
4994
|
getSmartlockLogsResource: (variables: GetSmartlockLogsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlockLogsResourceResponse>;
|
|
5160
4995
|
};
|
|
5161
|
-
subscription: {
|
|
5162
|
-
getSubscriptionsResource: (variables: GetSubscriptionsResourceVariables, signal?: AbortSignal) => Promise<GetSubscriptionsResourceResponse>;
|
|
5163
|
-
getSubscriptionResource: (variables: GetSubscriptionResourceVariables, signal?: AbortSignal) => Promise<Subscription>;
|
|
5164
|
-
};
|
|
5165
4996
|
};
|
|
5166
4997
|
|
|
5167
4998
|
type components_DeleteAccountIntegrationsResourceError = DeleteAccountIntegrationsResourceError;
|
|
@@ -5224,9 +5055,6 @@ type components_GetAccountSubResourceVariables = GetAccountSubResourceVariables;
|
|
|
5224
5055
|
type components_GetAccountSubsResourceError = GetAccountSubsResourceError;
|
|
5225
5056
|
type components_GetAccountSubsResourceQueryParams = GetAccountSubsResourceQueryParams;
|
|
5226
5057
|
type components_GetAccountSubsResourceVariables = GetAccountSubsResourceVariables;
|
|
5227
|
-
type components_GetAccountSubscriptionsResourceError = GetAccountSubscriptionsResourceError;
|
|
5228
|
-
type components_GetAccountSubscriptionsResourceResponse = GetAccountSubscriptionsResourceResponse;
|
|
5229
|
-
type components_GetAccountSubscriptionsResourceVariables = GetAccountSubscriptionsResourceVariables;
|
|
5230
5058
|
type components_GetAccountUserResourceError = GetAccountUserResourceError;
|
|
5231
5059
|
type components_GetAccountUserResourcePathParams = GetAccountUserResourcePathParams;
|
|
5232
5060
|
type components_GetAccountUserResourceVariables = GetAccountUserResourceVariables;
|
|
@@ -5328,12 +5156,6 @@ type components_GetSmartlocksResourceError = GetSmartlocksResourceError;
|
|
|
5328
5156
|
type components_GetSmartlocksResourceQueryParams = GetSmartlocksResourceQueryParams;
|
|
5329
5157
|
type components_GetSmartlocksResourceResponse = GetSmartlocksResourceResponse;
|
|
5330
5158
|
type components_GetSmartlocksResourceVariables = GetSmartlocksResourceVariables;
|
|
5331
|
-
type components_GetSubscriptionResourceError = GetSubscriptionResourceError;
|
|
5332
|
-
type components_GetSubscriptionResourcePathParams = GetSubscriptionResourcePathParams;
|
|
5333
|
-
type components_GetSubscriptionResourceVariables = GetSubscriptionResourceVariables;
|
|
5334
|
-
type components_GetSubscriptionsResourceError = GetSubscriptionsResourceError;
|
|
5335
|
-
type components_GetSubscriptionsResourceResponse = GetSubscriptionsResourceResponse;
|
|
5336
|
-
type components_GetSubscriptionsResourceVariables = GetSubscriptionsResourceVariables;
|
|
5337
5159
|
type components_GetWebhookLogsResourceError = GetWebhookLogsResourceError;
|
|
5338
5160
|
type components_GetWebhookLogsResourcePathParams = GetWebhookLogsResourcePathParams;
|
|
5339
5161
|
type components_GetWebhookLogsResourceQueryParams = GetWebhookLogsResourceQueryParams;
|
|
@@ -5350,14 +5172,6 @@ type components_PostAccountPasswordResetResourceVariables = PostAccountPasswordR
|
|
|
5350
5172
|
type components_PostAccountSubResourceError = PostAccountSubResourceError;
|
|
5351
5173
|
type components_PostAccountSubResourcePathParams = PostAccountSubResourcePathParams;
|
|
5352
5174
|
type components_PostAccountSubResourceVariables = PostAccountSubResourceVariables;
|
|
5353
|
-
type components_PostAccountSubscriptionActivateResourceError = PostAccountSubscriptionActivateResourceError;
|
|
5354
|
-
type components_PostAccountSubscriptionActivateResourcePathParams = PostAccountSubscriptionActivateResourcePathParams;
|
|
5355
|
-
type components_PostAccountSubscriptionActivateResourceVariables = PostAccountSubscriptionActivateResourceVariables;
|
|
5356
|
-
type components_PostAccountSubscriptionPayResourceError = PostAccountSubscriptionPayResourceError;
|
|
5357
|
-
type components_PostAccountSubscriptionPayResourceVariables = PostAccountSubscriptionPayResourceVariables;
|
|
5358
|
-
type components_PostAccountSubscriptionTerminateResourceError = PostAccountSubscriptionTerminateResourceError;
|
|
5359
|
-
type components_PostAccountSubscriptionTerminateResourcePathParams = PostAccountSubscriptionTerminateResourcePathParams;
|
|
5360
|
-
type components_PostAccountSubscriptionTerminateResourceVariables = PostAccountSubscriptionTerminateResourceVariables;
|
|
5361
5175
|
type components_PostAccountUserResourceError = PostAccountUserResourceError;
|
|
5362
5176
|
type components_PostAccountUserResourcePathParams = PostAccountUserResourcePathParams;
|
|
5363
5177
|
type components_PostAccountUserResourceVariables = PostAccountUserResourceVariables;
|
|
@@ -5511,7 +5325,6 @@ declare const components_getAccountIntegrationsResource: typeof getAccountIntegr
|
|
|
5511
5325
|
declare const components_getAccountSettingResource: typeof getAccountSettingResource;
|
|
5512
5326
|
declare const components_getAccountSubResource: typeof getAccountSubResource;
|
|
5513
5327
|
declare const components_getAccountSubsResource: typeof getAccountSubsResource;
|
|
5514
|
-
declare const components_getAccountSubscriptionsResource: typeof getAccountSubscriptionsResource;
|
|
5515
5328
|
declare const components_getAccountUserResource: typeof getAccountUserResource;
|
|
5516
5329
|
declare const components_getAccountUsersResource: typeof getAccountUsersResource;
|
|
5517
5330
|
declare const components_getAccountsResource: typeof getAccountsResource;
|
|
@@ -5541,8 +5354,6 @@ declare const components_getSmartlockResource: typeof getSmartlockResource;
|
|
|
5541
5354
|
declare const components_getSmartlocksAuthsResource: typeof getSmartlocksAuthsResource;
|
|
5542
5355
|
declare const components_getSmartlocksLogsResource: typeof getSmartlocksLogsResource;
|
|
5543
5356
|
declare const components_getSmartlocksResource: typeof getSmartlocksResource;
|
|
5544
|
-
declare const components_getSubscriptionResource: typeof getSubscriptionResource;
|
|
5545
|
-
declare const components_getSubscriptionsResource: typeof getSubscriptionsResource;
|
|
5546
5357
|
declare const components_getWebhookLogsResource: typeof getWebhookLogsResource;
|
|
5547
5358
|
declare const components_operationsByTag: typeof operationsByTag;
|
|
5548
5359
|
declare const components_postAccountEmailChangeResource: typeof postAccountEmailChangeResource;
|
|
@@ -5550,9 +5361,6 @@ declare const components_postAccountEmailVerifyResource: typeof postAccountEmail
|
|
|
5550
5361
|
declare const components_postAccountOtpResource: typeof postAccountOtpResource;
|
|
5551
5362
|
declare const components_postAccountPasswordResetResource: typeof postAccountPasswordResetResource;
|
|
5552
5363
|
declare const components_postAccountSubResource: typeof postAccountSubResource;
|
|
5553
|
-
declare const components_postAccountSubscriptionActivateResource: typeof postAccountSubscriptionActivateResource;
|
|
5554
|
-
declare const components_postAccountSubscriptionPayResource: typeof postAccountSubscriptionPayResource;
|
|
5555
|
-
declare const components_postAccountSubscriptionTerminateResource: typeof postAccountSubscriptionTerminateResource;
|
|
5556
5364
|
declare const components_postAccountUserResource: typeof postAccountUserResource;
|
|
5557
5365
|
declare const components_postAccountsResource: typeof postAccountsResource;
|
|
5558
5366
|
declare const components_postAddressReservationIssueResource: typeof postAddressReservationIssueResource;
|
|
@@ -5601,7 +5409,7 @@ declare const components_putSmartlockAuthsAdvancedResource: typeof putSmartlockA
|
|
|
5601
5409
|
declare const components_putSmartlockAuthsResource: typeof putSmartlockAuthsResource;
|
|
5602
5410
|
declare const components_putSmartlocksAuthsResource: typeof putSmartlocksAuthsResource;
|
|
5603
5411
|
declare namespace components {
|
|
5604
|
-
export { type components_DeleteAccountIntegrationsResourceError as DeleteAccountIntegrationsResourceError, type components_DeleteAccountIntegrationsResourceQueryParams as DeleteAccountIntegrationsResourceQueryParams, type components_DeleteAccountIntegrationsResourceVariables as DeleteAccountIntegrationsResourceVariables, type components_DeleteAccountOtpResourceError as DeleteAccountOtpResourceError, type components_DeleteAccountOtpResourceVariables as DeleteAccountOtpResourceVariables, type components_DeleteAccountSettingResourceError as DeleteAccountSettingResourceError, type components_DeleteAccountSettingResourceVariables as DeleteAccountSettingResourceVariables, type components_DeleteAccountSubResourceError as DeleteAccountSubResourceError, type components_DeleteAccountSubResourcePathParams as DeleteAccountSubResourcePathParams, type components_DeleteAccountSubResourceVariables as DeleteAccountSubResourceVariables, type components_DeleteAccountUserResourceError as DeleteAccountUserResourceError, type components_DeleteAccountUserResourcePathParams as DeleteAccountUserResourcePathParams, type components_DeleteAccountUserResourceVariables as DeleteAccountUserResourceVariables, type components_DeleteAccountsResourceError as DeleteAccountsResourceError, type components_DeleteAccountsResourceVariables as DeleteAccountsResourceVariables, type components_DeleteAddressResourceError as DeleteAddressResourceError, type components_DeleteAddressResourcePathParams as DeleteAddressResourcePathParams, type components_DeleteAddressResourceVariables as DeleteAddressResourceVariables, type components_DeleteAddressUnitResourceError as DeleteAddressUnitResourceError, type components_DeleteAddressUnitResourcePathParams as DeleteAddressUnitResourcePathParams, type components_DeleteAddressUnitResourceVariables as DeleteAddressUnitResourceVariables, type components_DeleteAddressUnitsResourceError as DeleteAddressUnitsResourceError, type components_DeleteAddressUnitsResourcePathParams as DeleteAddressUnitsResourcePathParams, type components_DeleteAddressUnitsResourceRequestBody as DeleteAddressUnitsResourceRequestBody, type components_DeleteAddressUnitsResourceVariables as DeleteAddressUnitsResourceVariables, type components_DeleteApiKeyAdvancedResourceError as DeleteApiKeyAdvancedResourceError, type components_DeleteApiKeyAdvancedResourcePathParams as DeleteApiKeyAdvancedResourcePathParams, type components_DeleteApiKeyAdvancedResourceVariables as DeleteApiKeyAdvancedResourceVariables, type components_DeleteApiKeyResourceError as DeleteApiKeyResourceError, type components_DeleteApiKeyResourcePathParams as DeleteApiKeyResourcePathParams, type components_DeleteApiKeyResourceVariables as DeleteApiKeyResourceVariables, type components_DeleteApiKeyTokenResourceError as DeleteApiKeyTokenResourceError, type components_DeleteApiKeyTokenResourcePathParams as DeleteApiKeyTokenResourcePathParams, type components_DeleteApiKeyTokenResourceVariables as DeleteApiKeyTokenResourceVariables, type components_DeleteDecentralWebhookResourceError as DeleteDecentralWebhookResourceError, type components_DeleteDecentralWebhookResourcePathParams as DeleteDecentralWebhookResourcePathParams, type components_DeleteDecentralWebhookResourceVariables as DeleteDecentralWebhookResourceVariables, type components_DeleteNotificationResourceError as DeleteNotificationResourceError, type components_DeleteNotificationResourcePathParams as DeleteNotificationResourcePathParams, type components_DeleteNotificationResourceVariables as DeleteNotificationResourceVariables, type components_DeleteSmartlockAuthResourceError as DeleteSmartlockAuthResourceError, type components_DeleteSmartlockAuthResourcePathParams as DeleteSmartlockAuthResourcePathParams, type components_DeleteSmartlockAuthResourceVariables as DeleteSmartlockAuthResourceVariables, type components_DeleteSmartlockResourceError as DeleteSmartlockResourceError, type components_DeleteSmartlockResourcePathParams as DeleteSmartlockResourcePathParams, type components_DeleteSmartlockResourceVariables as DeleteSmartlockResourceVariables, type components_DeleteSmartlocksAuthsResourceError as DeleteSmartlocksAuthsResourceError, type components_DeleteSmartlocksAuthsResourceRequestBody as DeleteSmartlocksAuthsResourceRequestBody, type components_DeleteSmartlocksAuthsResourceVariables as DeleteSmartlocksAuthsResourceVariables, type components_GetAccountIntegrationsResourceError as GetAccountIntegrationsResourceError, type components_GetAccountIntegrationsResourceResponse as GetAccountIntegrationsResourceResponse, type components_GetAccountIntegrationsResourceVariables as GetAccountIntegrationsResourceVariables, type components_GetAccountSettingResourceError as GetAccountSettingResourceError, type components_GetAccountSettingResourceVariables as GetAccountSettingResourceVariables, type components_GetAccountSubResourceError as GetAccountSubResourceError, type components_GetAccountSubResourcePathParams as GetAccountSubResourcePathParams, type components_GetAccountSubResourceVariables as GetAccountSubResourceVariables, type components_GetAccountSubsResourceError as GetAccountSubsResourceError, type components_GetAccountSubsResourceQueryParams as GetAccountSubsResourceQueryParams, type components_GetAccountSubsResourceVariables as GetAccountSubsResourceVariables, type components_GetAccountSubscriptionsResourceError as GetAccountSubscriptionsResourceError, type components_GetAccountSubscriptionsResourceResponse as GetAccountSubscriptionsResourceResponse, type components_GetAccountSubscriptionsResourceVariables as GetAccountSubscriptionsResourceVariables, type components_GetAccountUserResourceError as GetAccountUserResourceError, type components_GetAccountUserResourcePathParams as GetAccountUserResourcePathParams, type components_GetAccountUserResourceVariables as GetAccountUserResourceVariables, type components_GetAccountUsersResourceError as GetAccountUsersResourceError, type components_GetAccountUsersResourceQueryParams as GetAccountUsersResourceQueryParams, type components_GetAccountUsersResourceResponse as GetAccountUsersResourceResponse, type components_GetAccountUsersResourceVariables as GetAccountUsersResourceVariables, type components_GetAccountsResourceError as GetAccountsResourceError, type components_GetAccountsResourceVariables as GetAccountsResourceVariables, type components_GetAddressReservationsResourceError as GetAddressReservationsResourceError, type components_GetAddressReservationsResourcePathParams as GetAddressReservationsResourcePathParams, type components_GetAddressReservationsResourceResponse as GetAddressReservationsResourceResponse, type components_GetAddressReservationsResourceVariables as GetAddressReservationsResourceVariables, type components_GetAddressTokenRedeemResourceError as GetAddressTokenRedeemResourceError, type components_GetAddressTokenRedeemResourcePathParams as GetAddressTokenRedeemResourcePathParams, type components_GetAddressTokenRedeemResourceVariables as GetAddressTokenRedeemResourceVariables, type components_GetAddressTokenResourceError as GetAddressTokenResourceError, type components_GetAddressTokenResourcePathParams as GetAddressTokenResourcePathParams, type components_GetAddressTokenResourceVariables as GetAddressTokenResourceVariables, type components_GetAddressTokensResourceError as GetAddressTokensResourceError, type components_GetAddressTokensResourcePathParams as GetAddressTokensResourcePathParams, type components_GetAddressTokensResourceResponse as GetAddressTokensResourceResponse, type components_GetAddressTokensResourceVariables as GetAddressTokensResourceVariables, type components_GetAddressUnitsResourceError as GetAddressUnitsResourceError, type components_GetAddressUnitsResourcePathParams as GetAddressUnitsResourcePathParams, type components_GetAddressUnitsResourceResponse as GetAddressUnitsResourceResponse, type components_GetAddressUnitsResourceVariables as GetAddressUnitsResourceVariables, type components_GetAddressesResourceError as GetAddressesResourceError, type components_GetAddressesResourceResponse as GetAddressesResourceResponse, type components_GetAddressesResourceVariables as GetAddressesResourceVariables, type components_GetApiKeyAdvancedResourceError as GetApiKeyAdvancedResourceError, type components_GetApiKeyAdvancedResourcePathParams as GetApiKeyAdvancedResourcePathParams, type components_GetApiKeyAdvancedResourceVariables as GetApiKeyAdvancedResourceVariables, type components_GetApiKeyTokensResourceError as GetApiKeyTokensResourceError, type components_GetApiKeyTokensResourcePathParams as GetApiKeyTokensResourcePathParams, type components_GetApiKeyTokensResourceResponse as GetApiKeyTokensResourceResponse, type components_GetApiKeyTokensResourceVariables as GetApiKeyTokensResourceVariables, type components_GetApiKeysResourceError as GetApiKeysResourceError, type components_GetApiKeysResourceResponse as GetApiKeysResourceResponse, type components_GetApiKeysResourceVariables as GetApiKeysResourceVariables, type components_GetCompaniesResourceError as GetCompaniesResourceError, type components_GetCompaniesResourceResponse as GetCompaniesResourceResponse, type components_GetCompaniesResourceVariables as GetCompaniesResourceVariables, type components_GetDecentralWebhooksResourceError as GetDecentralWebhooksResourceError, type components_GetDecentralWebhooksResourceResponse as GetDecentralWebhooksResourceResponse, type components_GetDecentralWebhooksResourceVariables as GetDecentralWebhooksResourceVariables, type components_GetNotificationResourceError as GetNotificationResourceError, type components_GetNotificationResourcePathParams as GetNotificationResourcePathParams, type components_GetNotificationResourceVariables as GetNotificationResourceVariables, type components_GetNotificationsResourceError as GetNotificationsResourceError, type components_GetNotificationsResourceQueryParams as GetNotificationsResourceQueryParams, type components_GetNotificationsResourceResponse as GetNotificationsResourceResponse, type components_GetNotificationsResourceVariables as GetNotificationsResourceVariables, type components_GetOpenerBrandResourceError as GetOpenerBrandResourceError, type components_GetOpenerBrandResourcePathParams as GetOpenerBrandResourcePathParams, type components_GetOpenerBrandResourceVariables as GetOpenerBrandResourceVariables, type components_GetOpenerBrandsResourceError as GetOpenerBrandsResourceError, type components_GetOpenerBrandsResourceResponse as GetOpenerBrandsResourceResponse, type components_GetOpenerBrandsResourceVariables as GetOpenerBrandsResourceVariables, type components_GetOpenerIntercomResourceError as GetOpenerIntercomResourceError, type components_GetOpenerIntercomResourcePathParams as GetOpenerIntercomResourcePathParams, type components_GetOpenerIntercomResourceVariables as GetOpenerIntercomResourceVariables, type components_GetOpenerIntercomsResourceError as GetOpenerIntercomsResourceError, type components_GetOpenerIntercomsResourceQueryParams as GetOpenerIntercomsResourceQueryParams, type components_GetOpenerIntercomsResourceResponse as GetOpenerIntercomsResourceResponse, type components_GetOpenerIntercomsResourceVariables as GetOpenerIntercomsResourceVariables, type components_GetServiceResourceError as GetServiceResourceError, type components_GetServiceResourcePathParams as GetServiceResourcePathParams, type components_GetServiceResourceVariables as GetServiceResourceVariables, type components_GetServicesResourceError as GetServicesResourceError, type components_GetServicesResourceQueryParams as GetServicesResourceQueryParams, type components_GetServicesResourceResponse as GetServicesResourceResponse, type components_GetServicesResourceVariables as GetServicesResourceVariables, type components_GetSmartlockAuthResourceError as GetSmartlockAuthResourceError, type components_GetSmartlockAuthResourcePathParams as GetSmartlockAuthResourcePathParams, type components_GetSmartlockAuthResourceVariables as GetSmartlockAuthResourceVariables, type components_GetSmartlockAuthsResourceError as GetSmartlockAuthsResourceError, type components_GetSmartlockAuthsResourcePathParams as GetSmartlockAuthsResourcePathParams, type components_GetSmartlockAuthsResourceQueryParams as GetSmartlockAuthsResourceQueryParams, type components_GetSmartlockAuthsResourceResponse as GetSmartlockAuthsResourceResponse, type components_GetSmartlockAuthsResourceVariables as GetSmartlockAuthsResourceVariables, type components_GetSmartlockLogsResourceError as GetSmartlockLogsResourceError, type components_GetSmartlockLogsResourcePathParams as GetSmartlockLogsResourcePathParams, type components_GetSmartlockLogsResourceQueryParams as GetSmartlockLogsResourceQueryParams, type components_GetSmartlockLogsResourceResponse as GetSmartlockLogsResourceResponse, type components_GetSmartlockLogsResourceVariables as GetSmartlockLogsResourceVariables, type components_GetSmartlockResourceError as GetSmartlockResourceError, type components_GetSmartlockResourcePathParams as GetSmartlockResourcePathParams, type components_GetSmartlockResourceVariables as GetSmartlockResourceVariables, type components_GetSmartlocksAuthsResourceError as GetSmartlocksAuthsResourceError, type components_GetSmartlocksAuthsResourceQueryParams as GetSmartlocksAuthsResourceQueryParams, type components_GetSmartlocksAuthsResourceResponse as GetSmartlocksAuthsResourceResponse, type components_GetSmartlocksAuthsResourceVariables as GetSmartlocksAuthsResourceVariables, type components_GetSmartlocksLogsResourceError as GetSmartlocksLogsResourceError, type components_GetSmartlocksLogsResourceQueryParams as GetSmartlocksLogsResourceQueryParams, type components_GetSmartlocksLogsResourceResponse as GetSmartlocksLogsResourceResponse, type components_GetSmartlocksLogsResourceVariables as GetSmartlocksLogsResourceVariables, type components_GetSmartlocksResourceError as GetSmartlocksResourceError, type components_GetSmartlocksResourceQueryParams as GetSmartlocksResourceQueryParams, type components_GetSmartlocksResourceResponse as GetSmartlocksResourceResponse, type components_GetSmartlocksResourceVariables as GetSmartlocksResourceVariables, type components_GetSubscriptionResourceError as GetSubscriptionResourceError, type components_GetSubscriptionResourcePathParams as GetSubscriptionResourcePathParams, type components_GetSubscriptionResourceVariables as GetSubscriptionResourceVariables, type components_GetSubscriptionsResourceError as GetSubscriptionsResourceError, type components_GetSubscriptionsResourceResponse as GetSubscriptionsResourceResponse, type components_GetSubscriptionsResourceVariables as GetSubscriptionsResourceVariables, type components_GetWebhookLogsResourceError as GetWebhookLogsResourceError, type components_GetWebhookLogsResourcePathParams as GetWebhookLogsResourcePathParams, type components_GetWebhookLogsResourceQueryParams as GetWebhookLogsResourceQueryParams, type components_GetWebhookLogsResourceResponse as GetWebhookLogsResourceResponse, type components_GetWebhookLogsResourceVariables as GetWebhookLogsResourceVariables, type components_PostAccountEmailChangeResourceError as PostAccountEmailChangeResourceError, type components_PostAccountEmailChangeResourceVariables as PostAccountEmailChangeResourceVariables, type components_PostAccountEmailVerifyResourceError as PostAccountEmailVerifyResourceError, type components_PostAccountEmailVerifyResourceVariables as PostAccountEmailVerifyResourceVariables, type components_PostAccountOtpResourceError as PostAccountOtpResourceError, type components_PostAccountOtpResourceVariables as PostAccountOtpResourceVariables, type components_PostAccountPasswordResetResourceError as PostAccountPasswordResetResourceError, type components_PostAccountPasswordResetResourceVariables as PostAccountPasswordResetResourceVariables, type components_PostAccountSubResourceError as PostAccountSubResourceError, type components_PostAccountSubResourcePathParams as PostAccountSubResourcePathParams, type components_PostAccountSubResourceVariables as PostAccountSubResourceVariables, type components_PostAccountSubscriptionActivateResourceError as PostAccountSubscriptionActivateResourceError, type components_PostAccountSubscriptionActivateResourcePathParams as PostAccountSubscriptionActivateResourcePathParams, type components_PostAccountSubscriptionActivateResourceVariables as PostAccountSubscriptionActivateResourceVariables, type components_PostAccountSubscriptionPayResourceError as PostAccountSubscriptionPayResourceError, type components_PostAccountSubscriptionPayResourceVariables as PostAccountSubscriptionPayResourceVariables, type components_PostAccountSubscriptionTerminateResourceError as PostAccountSubscriptionTerminateResourceError, type components_PostAccountSubscriptionTerminateResourcePathParams as PostAccountSubscriptionTerminateResourcePathParams, type components_PostAccountSubscriptionTerminateResourceVariables as PostAccountSubscriptionTerminateResourceVariables, type components_PostAccountUserResourceError as PostAccountUserResourceError, type components_PostAccountUserResourcePathParams as PostAccountUserResourcePathParams, type components_PostAccountUserResourceVariables as PostAccountUserResourceVariables, type components_PostAccountsResourceError as PostAccountsResourceError, type components_PostAccountsResourceQueryParams as PostAccountsResourceQueryParams, type components_PostAccountsResourceVariables as PostAccountsResourceVariables, type components_PostAddressReservationIssueResourceError as PostAddressReservationIssueResourceError, type components_PostAddressReservationIssueResourcePathParams as PostAddressReservationIssueResourcePathParams, type components_PostAddressReservationIssueResourceVariables as PostAddressReservationIssueResourceVariables, type components_PostAddressReservationRevokeResourceError as PostAddressReservationRevokeResourceError, type components_PostAddressReservationRevokeResourcePathParams as PostAddressReservationRevokeResourcePathParams, type components_PostAddressReservationRevokeResourceVariables as PostAddressReservationRevokeResourceVariables, type components_PostAddressResourceError as PostAddressResourceError, type components_PostAddressResourcePathParams as PostAddressResourcePathParams, type components_PostAddressResourceVariables as PostAddressResourceVariables, type components_PostAddressTokenRedeemResourceError as PostAddressTokenRedeemResourceError, type components_PostAddressTokenRedeemResourcePathParams as PostAddressTokenRedeemResourcePathParams, type components_PostAddressTokenRedeemResourceQueryParams as PostAddressTokenRedeemResourceQueryParams, type components_PostAddressTokenRedeemResourceVariables as PostAddressTokenRedeemResourceVariables, type components_PostApiKeyAdvancedReactivateResourceError as PostApiKeyAdvancedReactivateResourceError, type components_PostApiKeyAdvancedReactivateResourcePathParams as PostApiKeyAdvancedReactivateResourcePathParams, type components_PostApiKeyAdvancedReactivateResourceVariables as PostApiKeyAdvancedReactivateResourceVariables, type components_PostApiKeyAdvancedResourceError as PostApiKeyAdvancedResourceError, type components_PostApiKeyAdvancedResourcePathParams as PostApiKeyAdvancedResourcePathParams, type components_PostApiKeyAdvancedResourceVariables as PostApiKeyAdvancedResourceVariables, type components_PostApiKeyResourceError as PostApiKeyResourceError, type components_PostApiKeyResourcePathParams as PostApiKeyResourcePathParams, type components_PostApiKeyResourceVariables as PostApiKeyResourceVariables, type components_PostApiKeyTokenResourceError as PostApiKeyTokenResourceError, type components_PostApiKeyTokenResourcePathParams as PostApiKeyTokenResourcePathParams, type components_PostApiKeyTokenResourceVariables as PostApiKeyTokenResourceVariables, type components_PostNotificationResourceError as PostNotificationResourceError, type components_PostNotificationResourcePathParams as PostNotificationResourcePathParams, type components_PostNotificationResourceVariables as PostNotificationResourceVariables, type components_PostReservationAccessTimesUpdateResourceError as PostReservationAccessTimesUpdateResourceError, type components_PostReservationAccessTimesUpdateResourcePathParams as PostReservationAccessTimesUpdateResourcePathParams, type components_PostReservationAccessTimesUpdateResourceVariables as PostReservationAccessTimesUpdateResourceVariables, type components_PostServiceLinkResourceError as PostServiceLinkResourceError, type components_PostServiceLinkResourcePathParams as PostServiceLinkResourcePathParams, type components_PostServiceLinkResourceVariables as PostServiceLinkResourceVariables, type components_PostServiceSyncResourceError as PostServiceSyncResourceError, type components_PostServiceSyncResourcePathParams as PostServiceSyncResourcePathParams, type components_PostServiceSyncResourceVariables as PostServiceSyncResourceVariables, type components_PostServiceUnlinkResourceError as PostServiceUnlinkResourceError, type components_PostServiceUnlinkResourcePathParams as PostServiceUnlinkResourcePathParams, type components_PostServiceUnlinkResourceVariables as PostServiceUnlinkResourceVariables, type components_PostSmartdoorAdvancedConfigResourceError as PostSmartdoorAdvancedConfigResourceError, type components_PostSmartdoorAdvancedConfigResourcePathParams as PostSmartdoorAdvancedConfigResourcePathParams, type components_PostSmartdoorAdvancedConfigResourceVariables as PostSmartdoorAdvancedConfigResourceVariables, type components_PostSmartlockActionAdvancedResourceError as PostSmartlockActionAdvancedResourceError, type components_PostSmartlockActionAdvancedResourcePathParams as PostSmartlockActionAdvancedResourcePathParams, type components_PostSmartlockActionAdvancedResourceVariables as PostSmartlockActionAdvancedResourceVariables, type components_PostSmartlockActionResourceError as PostSmartlockActionResourceError, type components_PostSmartlockActionResourcePathParams as PostSmartlockActionResourcePathParams, type components_PostSmartlockActionResourceVariables as PostSmartlockActionResourceVariables, type components_PostSmartlockAdminPinResourceError as PostSmartlockAdminPinResourceError, type components_PostSmartlockAdminPinResourcePathParams as PostSmartlockAdminPinResourcePathParams, type components_PostSmartlockAdminPinResourceVariables as PostSmartlockAdminPinResourceVariables, type components_PostSmartlockAdvancedConfigResourceError as PostSmartlockAdvancedConfigResourceError, type components_PostSmartlockAdvancedConfigResourcePathParams as PostSmartlockAdvancedConfigResourcePathParams, type components_PostSmartlockAdvancedConfigResourceVariables as PostSmartlockAdvancedConfigResourceVariables, type components_PostSmartlockAuthResourceError as PostSmartlockAuthResourceError, type components_PostSmartlockAuthResourcePathParams as PostSmartlockAuthResourcePathParams, type components_PostSmartlockAuthResourceVariables as PostSmartlockAuthResourceVariables, type components_PostSmartlockAuthWithSharedKeyResourceError as PostSmartlockAuthWithSharedKeyResourceError, type components_PostSmartlockAuthWithSharedKeyResourcePathParams as PostSmartlockAuthWithSharedKeyResourcePathParams, type components_PostSmartlockAuthWithSharedKeyResourceResponse as PostSmartlockAuthWithSharedKeyResourceResponse, type components_PostSmartlockAuthWithSharedKeyResourceVariables as PostSmartlockAuthWithSharedKeyResourceVariables, type components_PostSmartlockBulkWebConfigResourceError as PostSmartlockBulkWebConfigResourceError, type components_PostSmartlockBulkWebConfigResourceVariables as PostSmartlockBulkWebConfigResourceVariables, type components_PostSmartlockConfigResourceError as PostSmartlockConfigResourceError, type components_PostSmartlockConfigResourcePathParams as PostSmartlockConfigResourcePathParams, type components_PostSmartlockConfigResourceVariables as PostSmartlockConfigResourceVariables, type components_PostSmartlockLockActionAdvancedResourceError as PostSmartlockLockActionAdvancedResourceError, type components_PostSmartlockLockActionAdvancedResourcePathParams as PostSmartlockLockActionAdvancedResourcePathParams, type components_PostSmartlockLockActionAdvancedResourceVariables as PostSmartlockLockActionAdvancedResourceVariables, type components_PostSmartlockLockActionResourceError as PostSmartlockLockActionResourceError, type components_PostSmartlockLockActionResourcePathParams as PostSmartlockLockActionResourcePathParams, type components_PostSmartlockLockActionResourceVariables as PostSmartlockLockActionResourceVariables, type components_PostSmartlockOpenerAdvancedConfigResourceError as PostSmartlockOpenerAdvancedConfigResourceError, type components_PostSmartlockOpenerAdvancedConfigResourcePathParams as PostSmartlockOpenerAdvancedConfigResourcePathParams, type components_PostSmartlockOpenerAdvancedConfigResourceVariables as PostSmartlockOpenerAdvancedConfigResourceVariables, type components_PostSmartlockResourceError as PostSmartlockResourceError, type components_PostSmartlockResourcePathParams as PostSmartlockResourcePathParams, type components_PostSmartlockResourceVariables as PostSmartlockResourceVariables, type components_PostSmartlockSyncResourceError as PostSmartlockSyncResourceError, type components_PostSmartlockSyncResourcePathParams as PostSmartlockSyncResourcePathParams, type components_PostSmartlockSyncResourceVariables as PostSmartlockSyncResourceVariables, type components_PostSmartlockUnlockActionAdvancedResourceError as PostSmartlockUnlockActionAdvancedResourceError, type components_PostSmartlockUnlockActionAdvancedResourcePathParams as PostSmartlockUnlockActionAdvancedResourcePathParams, type components_PostSmartlockUnlockActionAdvancedResourceVariables as PostSmartlockUnlockActionAdvancedResourceVariables, type components_PostSmartlockUnlockActionResourceError as PostSmartlockUnlockActionResourceError, type components_PostSmartlockUnlockActionResourcePathParams as PostSmartlockUnlockActionResourcePathParams, type components_PostSmartlockUnlockActionResourceVariables as PostSmartlockUnlockActionResourceVariables, type components_PostSmartlockWebConfigResourceError as PostSmartlockWebConfigResourceError, type components_PostSmartlockWebConfigResourcePathParams as PostSmartlockWebConfigResourcePathParams, type components_PostSmartlockWebConfigResourceVariables as PostSmartlockWebConfigResourceVariables, type components_PostSmartlocksAuthsResourceError as PostSmartlocksAuthsResourceError, type components_PostSmartlocksAuthsResourceRequestBody as PostSmartlocksAuthsResourceRequestBody, type components_PostSmartlocksAuthsResourceVariables as PostSmartlocksAuthsResourceVariables, type components_PutAccountOtpResourceError as PutAccountOtpResourceError, type components_PutAccountOtpResourceVariables as PutAccountOtpResourceVariables, type components_PutAccountSettingResourceError as PutAccountSettingResourceError, type components_PutAccountSettingResourceVariables as PutAccountSettingResourceVariables, type components_PutAccountSubsResourceError as PutAccountSubsResourceError, type components_PutAccountSubsResourceVariables as PutAccountSubsResourceVariables, type components_PutAccountUsersResourceError as PutAccountUsersResourceError, type components_PutAccountUsersResourceVariables as PutAccountUsersResourceVariables, type components_PutAddressUnitsResourceError as PutAddressUnitsResourceError, type components_PutAddressUnitsResourcePathParams as PutAddressUnitsResourcePathParams, type components_PutAddressUnitsResourceVariables as PutAddressUnitsResourceVariables, type components_PutAddressesResourceError as PutAddressesResourceError, type components_PutAddressesResourceVariables as PutAddressesResourceVariables, type components_PutApiKeyAdvancedResourceError as PutApiKeyAdvancedResourceError, type components_PutApiKeyAdvancedResourcePathParams as PutApiKeyAdvancedResourcePathParams, type components_PutApiKeyAdvancedResourceVariables as PutApiKeyAdvancedResourceVariables, type components_PutApiKeyTokensResourceError as PutApiKeyTokensResourceError, type components_PutApiKeyTokensResourcePathParams as PutApiKeyTokensResourcePathParams, type components_PutApiKeyTokensResourceVariables as PutApiKeyTokensResourceVariables, type components_PutApiKeysResourceError as PutApiKeysResourceError, type components_PutApiKeysResourceVariables as PutApiKeysResourceVariables, type components_PutDecentralWebhooksResourceError as PutDecentralWebhooksResourceError, type components_PutDecentralWebhooksResourceVariables as PutDecentralWebhooksResourceVariables, type components_PutNotificationsResourceError as PutNotificationsResourceError, type components_PutNotificationsResourceVariables as PutNotificationsResourceVariables, type components_PutSmartlockAuthsAdvancedResourceError as PutSmartlockAuthsAdvancedResourceError, type components_PutSmartlockAuthsAdvancedResourceVariables as PutSmartlockAuthsAdvancedResourceVariables, type components_PutSmartlockAuthsResourceError as PutSmartlockAuthsResourceError, type components_PutSmartlockAuthsResourcePathParams as PutSmartlockAuthsResourcePathParams, type components_PutSmartlockAuthsResourceVariables as PutSmartlockAuthsResourceVariables, type components_PutSmartlocksAuthsResourceError as PutSmartlocksAuthsResourceError, type components_PutSmartlocksAuthsResourceVariables as PutSmartlocksAuthsResourceVariables, components_deleteAccountIntegrationsResource as deleteAccountIntegrationsResource, components_deleteAccountOtpResource as deleteAccountOtpResource, components_deleteAccountSettingResource as deleteAccountSettingResource, components_deleteAccountSubResource as deleteAccountSubResource, components_deleteAccountUserResource as deleteAccountUserResource, components_deleteAccountsResource as deleteAccountsResource, components_deleteAddressResource as deleteAddressResource, components_deleteAddressUnitResource as deleteAddressUnitResource, components_deleteAddressUnitsResource as deleteAddressUnitsResource, components_deleteApiKeyAdvancedResource as deleteApiKeyAdvancedResource, components_deleteApiKeyResource as deleteApiKeyResource, components_deleteApiKeyTokenResource as deleteApiKeyTokenResource, components_deleteDecentralWebhookResource as deleteDecentralWebhookResource, components_deleteNotificationResource as deleteNotificationResource, components_deleteSmartlockAuthResource as deleteSmartlockAuthResource, components_deleteSmartlockResource as deleteSmartlockResource, components_deleteSmartlocksAuthsResource as deleteSmartlocksAuthsResource, components_getAccountIntegrationsResource as getAccountIntegrationsResource, components_getAccountSettingResource as getAccountSettingResource, components_getAccountSubResource as getAccountSubResource, components_getAccountSubsResource as getAccountSubsResource, components_getAccountSubscriptionsResource as getAccountSubscriptionsResource, components_getAccountUserResource as getAccountUserResource, components_getAccountUsersResource as getAccountUsersResource, components_getAccountsResource as getAccountsResource, components_getAddressReservationsResource as getAddressReservationsResource, components_getAddressTokenRedeemResource as getAddressTokenRedeemResource, components_getAddressTokenResource as getAddressTokenResource, components_getAddressTokensResource as getAddressTokensResource, components_getAddressUnitsResource as getAddressUnitsResource, components_getAddressesResource as getAddressesResource, components_getApiKeyAdvancedResource as getApiKeyAdvancedResource, components_getApiKeyTokensResource as getApiKeyTokensResource, components_getApiKeysResource as getApiKeysResource, components_getCompaniesResource as getCompaniesResource, components_getDecentralWebhooksResource as getDecentralWebhooksResource, components_getNotificationResource as getNotificationResource, components_getNotificationsResource as getNotificationsResource, components_getOpenerBrandResource as getOpenerBrandResource, components_getOpenerBrandsResource as getOpenerBrandsResource, components_getOpenerIntercomResource as getOpenerIntercomResource, components_getOpenerIntercomsResource as getOpenerIntercomsResource, components_getServiceResource as getServiceResource, components_getServicesResource as getServicesResource, components_getSmartlockAuthResource as getSmartlockAuthResource, components_getSmartlockAuthsResource as getSmartlockAuthsResource, components_getSmartlockLogsResource as getSmartlockLogsResource, components_getSmartlockResource as getSmartlockResource, components_getSmartlocksAuthsResource as getSmartlocksAuthsResource, components_getSmartlocksLogsResource as getSmartlocksLogsResource, components_getSmartlocksResource as getSmartlocksResource, components_getSubscriptionResource as getSubscriptionResource, components_getSubscriptionsResource as getSubscriptionsResource, components_getWebhookLogsResource as getWebhookLogsResource, components_operationsByTag as operationsByTag, components_postAccountEmailChangeResource as postAccountEmailChangeResource, components_postAccountEmailVerifyResource as postAccountEmailVerifyResource, components_postAccountOtpResource as postAccountOtpResource, components_postAccountPasswordResetResource as postAccountPasswordResetResource, components_postAccountSubResource as postAccountSubResource, components_postAccountSubscriptionActivateResource as postAccountSubscriptionActivateResource, components_postAccountSubscriptionPayResource as postAccountSubscriptionPayResource, components_postAccountSubscriptionTerminateResource as postAccountSubscriptionTerminateResource, components_postAccountUserResource as postAccountUserResource, components_postAccountsResource as postAccountsResource, components_postAddressReservationIssueResource as postAddressReservationIssueResource, components_postAddressReservationRevokeResource as postAddressReservationRevokeResource, components_postAddressResource as postAddressResource, components_postAddressTokenRedeemResource as postAddressTokenRedeemResource, components_postApiKeyAdvancedReactivateResource as postApiKeyAdvancedReactivateResource, components_postApiKeyAdvancedResource as postApiKeyAdvancedResource, components_postApiKeyResource as postApiKeyResource, components_postApiKeyTokenResource as postApiKeyTokenResource, components_postNotificationResource as postNotificationResource, components_postReservationAccessTimesUpdateResource as postReservationAccessTimesUpdateResource, components_postServiceLinkResource as postServiceLinkResource, components_postServiceSyncResource as postServiceSyncResource, components_postServiceUnlinkResource as postServiceUnlinkResource, components_postSmartdoorAdvancedConfigResource as postSmartdoorAdvancedConfigResource, components_postSmartlockActionAdvancedResource as postSmartlockActionAdvancedResource, components_postSmartlockActionResource as postSmartlockActionResource, components_postSmartlockAdminPinResource as postSmartlockAdminPinResource, components_postSmartlockAdvancedConfigResource as postSmartlockAdvancedConfigResource, components_postSmartlockAuthResource as postSmartlockAuthResource, components_postSmartlockAuthWithSharedKeyResource as postSmartlockAuthWithSharedKeyResource, components_postSmartlockBulkWebConfigResource as postSmartlockBulkWebConfigResource, components_postSmartlockConfigResource as postSmartlockConfigResource, components_postSmartlockLockActionAdvancedResource as postSmartlockLockActionAdvancedResource, components_postSmartlockLockActionResource as postSmartlockLockActionResource, components_postSmartlockOpenerAdvancedConfigResource as postSmartlockOpenerAdvancedConfigResource, components_postSmartlockResource as postSmartlockResource, components_postSmartlockSyncResource as postSmartlockSyncResource, components_postSmartlockUnlockActionAdvancedResource as postSmartlockUnlockActionAdvancedResource, components_postSmartlockUnlockActionResource as postSmartlockUnlockActionResource, components_postSmartlockWebConfigResource as postSmartlockWebConfigResource, components_postSmartlocksAuthsResource as postSmartlocksAuthsResource, components_putAccountOtpResource as putAccountOtpResource, components_putAccountSettingResource as putAccountSettingResource, components_putAccountSubsResource as putAccountSubsResource, components_putAccountUsersResource as putAccountUsersResource, components_putAddressUnitsResource as putAddressUnitsResource, components_putAddressesResource as putAddressesResource, components_putApiKeyAdvancedResource as putApiKeyAdvancedResource, components_putApiKeyTokensResource as putApiKeyTokensResource, components_putApiKeysResource as putApiKeysResource, components_putDecentralWebhooksResource as putDecentralWebhooksResource, components_putNotificationsResource as putNotificationsResource, components_putSmartlockAuthsAdvancedResource as putSmartlockAuthsAdvancedResource, components_putSmartlockAuthsResource as putSmartlockAuthsResource, components_putSmartlocksAuthsResource as putSmartlocksAuthsResource };
|
|
5412
|
+
export { type components_DeleteAccountIntegrationsResourceError as DeleteAccountIntegrationsResourceError, type components_DeleteAccountIntegrationsResourceQueryParams as DeleteAccountIntegrationsResourceQueryParams, type components_DeleteAccountIntegrationsResourceVariables as DeleteAccountIntegrationsResourceVariables, type components_DeleteAccountOtpResourceError as DeleteAccountOtpResourceError, type components_DeleteAccountOtpResourceVariables as DeleteAccountOtpResourceVariables, type components_DeleteAccountSettingResourceError as DeleteAccountSettingResourceError, type components_DeleteAccountSettingResourceVariables as DeleteAccountSettingResourceVariables, type components_DeleteAccountSubResourceError as DeleteAccountSubResourceError, type components_DeleteAccountSubResourcePathParams as DeleteAccountSubResourcePathParams, type components_DeleteAccountSubResourceVariables as DeleteAccountSubResourceVariables, type components_DeleteAccountUserResourceError as DeleteAccountUserResourceError, type components_DeleteAccountUserResourcePathParams as DeleteAccountUserResourcePathParams, type components_DeleteAccountUserResourceVariables as DeleteAccountUserResourceVariables, type components_DeleteAccountsResourceError as DeleteAccountsResourceError, type components_DeleteAccountsResourceVariables as DeleteAccountsResourceVariables, type components_DeleteAddressResourceError as DeleteAddressResourceError, type components_DeleteAddressResourcePathParams as DeleteAddressResourcePathParams, type components_DeleteAddressResourceVariables as DeleteAddressResourceVariables, type components_DeleteAddressUnitResourceError as DeleteAddressUnitResourceError, type components_DeleteAddressUnitResourcePathParams as DeleteAddressUnitResourcePathParams, type components_DeleteAddressUnitResourceVariables as DeleteAddressUnitResourceVariables, type components_DeleteAddressUnitsResourceError as DeleteAddressUnitsResourceError, type components_DeleteAddressUnitsResourcePathParams as DeleteAddressUnitsResourcePathParams, type components_DeleteAddressUnitsResourceRequestBody as DeleteAddressUnitsResourceRequestBody, type components_DeleteAddressUnitsResourceVariables as DeleteAddressUnitsResourceVariables, type components_DeleteApiKeyAdvancedResourceError as DeleteApiKeyAdvancedResourceError, type components_DeleteApiKeyAdvancedResourcePathParams as DeleteApiKeyAdvancedResourcePathParams, type components_DeleteApiKeyAdvancedResourceVariables as DeleteApiKeyAdvancedResourceVariables, type components_DeleteApiKeyResourceError as DeleteApiKeyResourceError, type components_DeleteApiKeyResourcePathParams as DeleteApiKeyResourcePathParams, type components_DeleteApiKeyResourceVariables as DeleteApiKeyResourceVariables, type components_DeleteApiKeyTokenResourceError as DeleteApiKeyTokenResourceError, type components_DeleteApiKeyTokenResourcePathParams as DeleteApiKeyTokenResourcePathParams, type components_DeleteApiKeyTokenResourceVariables as DeleteApiKeyTokenResourceVariables, type components_DeleteDecentralWebhookResourceError as DeleteDecentralWebhookResourceError, type components_DeleteDecentralWebhookResourcePathParams as DeleteDecentralWebhookResourcePathParams, type components_DeleteDecentralWebhookResourceVariables as DeleteDecentralWebhookResourceVariables, type components_DeleteNotificationResourceError as DeleteNotificationResourceError, type components_DeleteNotificationResourcePathParams as DeleteNotificationResourcePathParams, type components_DeleteNotificationResourceVariables as DeleteNotificationResourceVariables, type components_DeleteSmartlockAuthResourceError as DeleteSmartlockAuthResourceError, type components_DeleteSmartlockAuthResourcePathParams as DeleteSmartlockAuthResourcePathParams, type components_DeleteSmartlockAuthResourceVariables as DeleteSmartlockAuthResourceVariables, type components_DeleteSmartlockResourceError as DeleteSmartlockResourceError, type components_DeleteSmartlockResourcePathParams as DeleteSmartlockResourcePathParams, type components_DeleteSmartlockResourceVariables as DeleteSmartlockResourceVariables, type components_DeleteSmartlocksAuthsResourceError as DeleteSmartlocksAuthsResourceError, type components_DeleteSmartlocksAuthsResourceRequestBody as DeleteSmartlocksAuthsResourceRequestBody, type components_DeleteSmartlocksAuthsResourceVariables as DeleteSmartlocksAuthsResourceVariables, type components_GetAccountIntegrationsResourceError as GetAccountIntegrationsResourceError, type components_GetAccountIntegrationsResourceResponse as GetAccountIntegrationsResourceResponse, type components_GetAccountIntegrationsResourceVariables as GetAccountIntegrationsResourceVariables, type components_GetAccountSettingResourceError as GetAccountSettingResourceError, type components_GetAccountSettingResourceVariables as GetAccountSettingResourceVariables, type components_GetAccountSubResourceError as GetAccountSubResourceError, type components_GetAccountSubResourcePathParams as GetAccountSubResourcePathParams, type components_GetAccountSubResourceVariables as GetAccountSubResourceVariables, type components_GetAccountSubsResourceError as GetAccountSubsResourceError, type components_GetAccountSubsResourceQueryParams as GetAccountSubsResourceQueryParams, type components_GetAccountSubsResourceVariables as GetAccountSubsResourceVariables, type components_GetAccountUserResourceError as GetAccountUserResourceError, type components_GetAccountUserResourcePathParams as GetAccountUserResourcePathParams, type components_GetAccountUserResourceVariables as GetAccountUserResourceVariables, type components_GetAccountUsersResourceError as GetAccountUsersResourceError, type components_GetAccountUsersResourceQueryParams as GetAccountUsersResourceQueryParams, type components_GetAccountUsersResourceResponse as GetAccountUsersResourceResponse, type components_GetAccountUsersResourceVariables as GetAccountUsersResourceVariables, type components_GetAccountsResourceError as GetAccountsResourceError, type components_GetAccountsResourceVariables as GetAccountsResourceVariables, type components_GetAddressReservationsResourceError as GetAddressReservationsResourceError, type components_GetAddressReservationsResourcePathParams as GetAddressReservationsResourcePathParams, type components_GetAddressReservationsResourceResponse as GetAddressReservationsResourceResponse, type components_GetAddressReservationsResourceVariables as GetAddressReservationsResourceVariables, type components_GetAddressTokenRedeemResourceError as GetAddressTokenRedeemResourceError, type components_GetAddressTokenRedeemResourcePathParams as GetAddressTokenRedeemResourcePathParams, type components_GetAddressTokenRedeemResourceVariables as GetAddressTokenRedeemResourceVariables, type components_GetAddressTokenResourceError as GetAddressTokenResourceError, type components_GetAddressTokenResourcePathParams as GetAddressTokenResourcePathParams, type components_GetAddressTokenResourceVariables as GetAddressTokenResourceVariables, type components_GetAddressTokensResourceError as GetAddressTokensResourceError, type components_GetAddressTokensResourcePathParams as GetAddressTokensResourcePathParams, type components_GetAddressTokensResourceResponse as GetAddressTokensResourceResponse, type components_GetAddressTokensResourceVariables as GetAddressTokensResourceVariables, type components_GetAddressUnitsResourceError as GetAddressUnitsResourceError, type components_GetAddressUnitsResourcePathParams as GetAddressUnitsResourcePathParams, type components_GetAddressUnitsResourceResponse as GetAddressUnitsResourceResponse, type components_GetAddressUnitsResourceVariables as GetAddressUnitsResourceVariables, type components_GetAddressesResourceError as GetAddressesResourceError, type components_GetAddressesResourceResponse as GetAddressesResourceResponse, type components_GetAddressesResourceVariables as GetAddressesResourceVariables, type components_GetApiKeyAdvancedResourceError as GetApiKeyAdvancedResourceError, type components_GetApiKeyAdvancedResourcePathParams as GetApiKeyAdvancedResourcePathParams, type components_GetApiKeyAdvancedResourceVariables as GetApiKeyAdvancedResourceVariables, type components_GetApiKeyTokensResourceError as GetApiKeyTokensResourceError, type components_GetApiKeyTokensResourcePathParams as GetApiKeyTokensResourcePathParams, type components_GetApiKeyTokensResourceResponse as GetApiKeyTokensResourceResponse, type components_GetApiKeyTokensResourceVariables as GetApiKeyTokensResourceVariables, type components_GetApiKeysResourceError as GetApiKeysResourceError, type components_GetApiKeysResourceResponse as GetApiKeysResourceResponse, type components_GetApiKeysResourceVariables as GetApiKeysResourceVariables, type components_GetCompaniesResourceError as GetCompaniesResourceError, type components_GetCompaniesResourceResponse as GetCompaniesResourceResponse, type components_GetCompaniesResourceVariables as GetCompaniesResourceVariables, type components_GetDecentralWebhooksResourceError as GetDecentralWebhooksResourceError, type components_GetDecentralWebhooksResourceResponse as GetDecentralWebhooksResourceResponse, type components_GetDecentralWebhooksResourceVariables as GetDecentralWebhooksResourceVariables, type components_GetNotificationResourceError as GetNotificationResourceError, type components_GetNotificationResourcePathParams as GetNotificationResourcePathParams, type components_GetNotificationResourceVariables as GetNotificationResourceVariables, type components_GetNotificationsResourceError as GetNotificationsResourceError, type components_GetNotificationsResourceQueryParams as GetNotificationsResourceQueryParams, type components_GetNotificationsResourceResponse as GetNotificationsResourceResponse, type components_GetNotificationsResourceVariables as GetNotificationsResourceVariables, type components_GetOpenerBrandResourceError as GetOpenerBrandResourceError, type components_GetOpenerBrandResourcePathParams as GetOpenerBrandResourcePathParams, type components_GetOpenerBrandResourceVariables as GetOpenerBrandResourceVariables, type components_GetOpenerBrandsResourceError as GetOpenerBrandsResourceError, type components_GetOpenerBrandsResourceResponse as GetOpenerBrandsResourceResponse, type components_GetOpenerBrandsResourceVariables as GetOpenerBrandsResourceVariables, type components_GetOpenerIntercomResourceError as GetOpenerIntercomResourceError, type components_GetOpenerIntercomResourcePathParams as GetOpenerIntercomResourcePathParams, type components_GetOpenerIntercomResourceVariables as GetOpenerIntercomResourceVariables, type components_GetOpenerIntercomsResourceError as GetOpenerIntercomsResourceError, type components_GetOpenerIntercomsResourceQueryParams as GetOpenerIntercomsResourceQueryParams, type components_GetOpenerIntercomsResourceResponse as GetOpenerIntercomsResourceResponse, type components_GetOpenerIntercomsResourceVariables as GetOpenerIntercomsResourceVariables, type components_GetServiceResourceError as GetServiceResourceError, type components_GetServiceResourcePathParams as GetServiceResourcePathParams, type components_GetServiceResourceVariables as GetServiceResourceVariables, type components_GetServicesResourceError as GetServicesResourceError, type components_GetServicesResourceQueryParams as GetServicesResourceQueryParams, type components_GetServicesResourceResponse as GetServicesResourceResponse, type components_GetServicesResourceVariables as GetServicesResourceVariables, type components_GetSmartlockAuthResourceError as GetSmartlockAuthResourceError, type components_GetSmartlockAuthResourcePathParams as GetSmartlockAuthResourcePathParams, type components_GetSmartlockAuthResourceVariables as GetSmartlockAuthResourceVariables, type components_GetSmartlockAuthsResourceError as GetSmartlockAuthsResourceError, type components_GetSmartlockAuthsResourcePathParams as GetSmartlockAuthsResourcePathParams, type components_GetSmartlockAuthsResourceQueryParams as GetSmartlockAuthsResourceQueryParams, type components_GetSmartlockAuthsResourceResponse as GetSmartlockAuthsResourceResponse, type components_GetSmartlockAuthsResourceVariables as GetSmartlockAuthsResourceVariables, type components_GetSmartlockLogsResourceError as GetSmartlockLogsResourceError, type components_GetSmartlockLogsResourcePathParams as GetSmartlockLogsResourcePathParams, type components_GetSmartlockLogsResourceQueryParams as GetSmartlockLogsResourceQueryParams, type components_GetSmartlockLogsResourceResponse as GetSmartlockLogsResourceResponse, type components_GetSmartlockLogsResourceVariables as GetSmartlockLogsResourceVariables, type components_GetSmartlockResourceError as GetSmartlockResourceError, type components_GetSmartlockResourcePathParams as GetSmartlockResourcePathParams, type components_GetSmartlockResourceVariables as GetSmartlockResourceVariables, type components_GetSmartlocksAuthsResourceError as GetSmartlocksAuthsResourceError, type components_GetSmartlocksAuthsResourceQueryParams as GetSmartlocksAuthsResourceQueryParams, type components_GetSmartlocksAuthsResourceResponse as GetSmartlocksAuthsResourceResponse, type components_GetSmartlocksAuthsResourceVariables as GetSmartlocksAuthsResourceVariables, type components_GetSmartlocksLogsResourceError as GetSmartlocksLogsResourceError, type components_GetSmartlocksLogsResourceQueryParams as GetSmartlocksLogsResourceQueryParams, type components_GetSmartlocksLogsResourceResponse as GetSmartlocksLogsResourceResponse, type components_GetSmartlocksLogsResourceVariables as GetSmartlocksLogsResourceVariables, type components_GetSmartlocksResourceError as GetSmartlocksResourceError, type components_GetSmartlocksResourceQueryParams as GetSmartlocksResourceQueryParams, type components_GetSmartlocksResourceResponse as GetSmartlocksResourceResponse, type components_GetSmartlocksResourceVariables as GetSmartlocksResourceVariables, type components_GetWebhookLogsResourceError as GetWebhookLogsResourceError, type components_GetWebhookLogsResourcePathParams as GetWebhookLogsResourcePathParams, type components_GetWebhookLogsResourceQueryParams as GetWebhookLogsResourceQueryParams, type components_GetWebhookLogsResourceResponse as GetWebhookLogsResourceResponse, type components_GetWebhookLogsResourceVariables as GetWebhookLogsResourceVariables, type components_PostAccountEmailChangeResourceError as PostAccountEmailChangeResourceError, type components_PostAccountEmailChangeResourceVariables as PostAccountEmailChangeResourceVariables, type components_PostAccountEmailVerifyResourceError as PostAccountEmailVerifyResourceError, type components_PostAccountEmailVerifyResourceVariables as PostAccountEmailVerifyResourceVariables, type components_PostAccountOtpResourceError as PostAccountOtpResourceError, type components_PostAccountOtpResourceVariables as PostAccountOtpResourceVariables, type components_PostAccountPasswordResetResourceError as PostAccountPasswordResetResourceError, type components_PostAccountPasswordResetResourceVariables as PostAccountPasswordResetResourceVariables, type components_PostAccountSubResourceError as PostAccountSubResourceError, type components_PostAccountSubResourcePathParams as PostAccountSubResourcePathParams, type components_PostAccountSubResourceVariables as PostAccountSubResourceVariables, type components_PostAccountUserResourceError as PostAccountUserResourceError, type components_PostAccountUserResourcePathParams as PostAccountUserResourcePathParams, type components_PostAccountUserResourceVariables as PostAccountUserResourceVariables, type components_PostAccountsResourceError as PostAccountsResourceError, type components_PostAccountsResourceQueryParams as PostAccountsResourceQueryParams, type components_PostAccountsResourceVariables as PostAccountsResourceVariables, type components_PostAddressReservationIssueResourceError as PostAddressReservationIssueResourceError, type components_PostAddressReservationIssueResourcePathParams as PostAddressReservationIssueResourcePathParams, type components_PostAddressReservationIssueResourceVariables as PostAddressReservationIssueResourceVariables, type components_PostAddressReservationRevokeResourceError as PostAddressReservationRevokeResourceError, type components_PostAddressReservationRevokeResourcePathParams as PostAddressReservationRevokeResourcePathParams, type components_PostAddressReservationRevokeResourceVariables as PostAddressReservationRevokeResourceVariables, type components_PostAddressResourceError as PostAddressResourceError, type components_PostAddressResourcePathParams as PostAddressResourcePathParams, type components_PostAddressResourceVariables as PostAddressResourceVariables, type components_PostAddressTokenRedeemResourceError as PostAddressTokenRedeemResourceError, type components_PostAddressTokenRedeemResourcePathParams as PostAddressTokenRedeemResourcePathParams, type components_PostAddressTokenRedeemResourceQueryParams as PostAddressTokenRedeemResourceQueryParams, type components_PostAddressTokenRedeemResourceVariables as PostAddressTokenRedeemResourceVariables, type components_PostApiKeyAdvancedReactivateResourceError as PostApiKeyAdvancedReactivateResourceError, type components_PostApiKeyAdvancedReactivateResourcePathParams as PostApiKeyAdvancedReactivateResourcePathParams, type components_PostApiKeyAdvancedReactivateResourceVariables as PostApiKeyAdvancedReactivateResourceVariables, type components_PostApiKeyAdvancedResourceError as PostApiKeyAdvancedResourceError, type components_PostApiKeyAdvancedResourcePathParams as PostApiKeyAdvancedResourcePathParams, type components_PostApiKeyAdvancedResourceVariables as PostApiKeyAdvancedResourceVariables, type components_PostApiKeyResourceError as PostApiKeyResourceError, type components_PostApiKeyResourcePathParams as PostApiKeyResourcePathParams, type components_PostApiKeyResourceVariables as PostApiKeyResourceVariables, type components_PostApiKeyTokenResourceError as PostApiKeyTokenResourceError, type components_PostApiKeyTokenResourcePathParams as PostApiKeyTokenResourcePathParams, type components_PostApiKeyTokenResourceVariables as PostApiKeyTokenResourceVariables, type components_PostNotificationResourceError as PostNotificationResourceError, type components_PostNotificationResourcePathParams as PostNotificationResourcePathParams, type components_PostNotificationResourceVariables as PostNotificationResourceVariables, type components_PostReservationAccessTimesUpdateResourceError as PostReservationAccessTimesUpdateResourceError, type components_PostReservationAccessTimesUpdateResourcePathParams as PostReservationAccessTimesUpdateResourcePathParams, type components_PostReservationAccessTimesUpdateResourceVariables as PostReservationAccessTimesUpdateResourceVariables, type components_PostServiceLinkResourceError as PostServiceLinkResourceError, type components_PostServiceLinkResourcePathParams as PostServiceLinkResourcePathParams, type components_PostServiceLinkResourceVariables as PostServiceLinkResourceVariables, type components_PostServiceSyncResourceError as PostServiceSyncResourceError, type components_PostServiceSyncResourcePathParams as PostServiceSyncResourcePathParams, type components_PostServiceSyncResourceVariables as PostServiceSyncResourceVariables, type components_PostServiceUnlinkResourceError as PostServiceUnlinkResourceError, type components_PostServiceUnlinkResourcePathParams as PostServiceUnlinkResourcePathParams, type components_PostServiceUnlinkResourceVariables as PostServiceUnlinkResourceVariables, type components_PostSmartdoorAdvancedConfigResourceError as PostSmartdoorAdvancedConfigResourceError, type components_PostSmartdoorAdvancedConfigResourcePathParams as PostSmartdoorAdvancedConfigResourcePathParams, type components_PostSmartdoorAdvancedConfigResourceVariables as PostSmartdoorAdvancedConfigResourceVariables, type components_PostSmartlockActionAdvancedResourceError as PostSmartlockActionAdvancedResourceError, type components_PostSmartlockActionAdvancedResourcePathParams as PostSmartlockActionAdvancedResourcePathParams, type components_PostSmartlockActionAdvancedResourceVariables as PostSmartlockActionAdvancedResourceVariables, type components_PostSmartlockActionResourceError as PostSmartlockActionResourceError, type components_PostSmartlockActionResourcePathParams as PostSmartlockActionResourcePathParams, type components_PostSmartlockActionResourceVariables as PostSmartlockActionResourceVariables, type components_PostSmartlockAdminPinResourceError as PostSmartlockAdminPinResourceError, type components_PostSmartlockAdminPinResourcePathParams as PostSmartlockAdminPinResourcePathParams, type components_PostSmartlockAdminPinResourceVariables as PostSmartlockAdminPinResourceVariables, type components_PostSmartlockAdvancedConfigResourceError as PostSmartlockAdvancedConfigResourceError, type components_PostSmartlockAdvancedConfigResourcePathParams as PostSmartlockAdvancedConfigResourcePathParams, type components_PostSmartlockAdvancedConfigResourceVariables as PostSmartlockAdvancedConfigResourceVariables, type components_PostSmartlockAuthResourceError as PostSmartlockAuthResourceError, type components_PostSmartlockAuthResourcePathParams as PostSmartlockAuthResourcePathParams, type components_PostSmartlockAuthResourceVariables as PostSmartlockAuthResourceVariables, type components_PostSmartlockAuthWithSharedKeyResourceError as PostSmartlockAuthWithSharedKeyResourceError, type components_PostSmartlockAuthWithSharedKeyResourcePathParams as PostSmartlockAuthWithSharedKeyResourcePathParams, type components_PostSmartlockAuthWithSharedKeyResourceResponse as PostSmartlockAuthWithSharedKeyResourceResponse, type components_PostSmartlockAuthWithSharedKeyResourceVariables as PostSmartlockAuthWithSharedKeyResourceVariables, type components_PostSmartlockBulkWebConfigResourceError as PostSmartlockBulkWebConfigResourceError, type components_PostSmartlockBulkWebConfigResourceVariables as PostSmartlockBulkWebConfigResourceVariables, type components_PostSmartlockConfigResourceError as PostSmartlockConfigResourceError, type components_PostSmartlockConfigResourcePathParams as PostSmartlockConfigResourcePathParams, type components_PostSmartlockConfigResourceVariables as PostSmartlockConfigResourceVariables, type components_PostSmartlockLockActionAdvancedResourceError as PostSmartlockLockActionAdvancedResourceError, type components_PostSmartlockLockActionAdvancedResourcePathParams as PostSmartlockLockActionAdvancedResourcePathParams, type components_PostSmartlockLockActionAdvancedResourceVariables as PostSmartlockLockActionAdvancedResourceVariables, type components_PostSmartlockLockActionResourceError as PostSmartlockLockActionResourceError, type components_PostSmartlockLockActionResourcePathParams as PostSmartlockLockActionResourcePathParams, type components_PostSmartlockLockActionResourceVariables as PostSmartlockLockActionResourceVariables, type components_PostSmartlockOpenerAdvancedConfigResourceError as PostSmartlockOpenerAdvancedConfigResourceError, type components_PostSmartlockOpenerAdvancedConfigResourcePathParams as PostSmartlockOpenerAdvancedConfigResourcePathParams, type components_PostSmartlockOpenerAdvancedConfigResourceVariables as PostSmartlockOpenerAdvancedConfigResourceVariables, type components_PostSmartlockResourceError as PostSmartlockResourceError, type components_PostSmartlockResourcePathParams as PostSmartlockResourcePathParams, type components_PostSmartlockResourceVariables as PostSmartlockResourceVariables, type components_PostSmartlockSyncResourceError as PostSmartlockSyncResourceError, type components_PostSmartlockSyncResourcePathParams as PostSmartlockSyncResourcePathParams, type components_PostSmartlockSyncResourceVariables as PostSmartlockSyncResourceVariables, type components_PostSmartlockUnlockActionAdvancedResourceError as PostSmartlockUnlockActionAdvancedResourceError, type components_PostSmartlockUnlockActionAdvancedResourcePathParams as PostSmartlockUnlockActionAdvancedResourcePathParams, type components_PostSmartlockUnlockActionAdvancedResourceVariables as PostSmartlockUnlockActionAdvancedResourceVariables, type components_PostSmartlockUnlockActionResourceError as PostSmartlockUnlockActionResourceError, type components_PostSmartlockUnlockActionResourcePathParams as PostSmartlockUnlockActionResourcePathParams, type components_PostSmartlockUnlockActionResourceVariables as PostSmartlockUnlockActionResourceVariables, type components_PostSmartlockWebConfigResourceError as PostSmartlockWebConfigResourceError, type components_PostSmartlockWebConfigResourcePathParams as PostSmartlockWebConfigResourcePathParams, type components_PostSmartlockWebConfigResourceVariables as PostSmartlockWebConfigResourceVariables, type components_PostSmartlocksAuthsResourceError as PostSmartlocksAuthsResourceError, type components_PostSmartlocksAuthsResourceRequestBody as PostSmartlocksAuthsResourceRequestBody, type components_PostSmartlocksAuthsResourceVariables as PostSmartlocksAuthsResourceVariables, type components_PutAccountOtpResourceError as PutAccountOtpResourceError, type components_PutAccountOtpResourceVariables as PutAccountOtpResourceVariables, type components_PutAccountSettingResourceError as PutAccountSettingResourceError, type components_PutAccountSettingResourceVariables as PutAccountSettingResourceVariables, type components_PutAccountSubsResourceError as PutAccountSubsResourceError, type components_PutAccountSubsResourceVariables as PutAccountSubsResourceVariables, type components_PutAccountUsersResourceError as PutAccountUsersResourceError, type components_PutAccountUsersResourceVariables as PutAccountUsersResourceVariables, type components_PutAddressUnitsResourceError as PutAddressUnitsResourceError, type components_PutAddressUnitsResourcePathParams as PutAddressUnitsResourcePathParams, type components_PutAddressUnitsResourceVariables as PutAddressUnitsResourceVariables, type components_PutAddressesResourceError as PutAddressesResourceError, type components_PutAddressesResourceVariables as PutAddressesResourceVariables, type components_PutApiKeyAdvancedResourceError as PutApiKeyAdvancedResourceError, type components_PutApiKeyAdvancedResourcePathParams as PutApiKeyAdvancedResourcePathParams, type components_PutApiKeyAdvancedResourceVariables as PutApiKeyAdvancedResourceVariables, type components_PutApiKeyTokensResourceError as PutApiKeyTokensResourceError, type components_PutApiKeyTokensResourcePathParams as PutApiKeyTokensResourcePathParams, type components_PutApiKeyTokensResourceVariables as PutApiKeyTokensResourceVariables, type components_PutApiKeysResourceError as PutApiKeysResourceError, type components_PutApiKeysResourceVariables as PutApiKeysResourceVariables, type components_PutDecentralWebhooksResourceError as PutDecentralWebhooksResourceError, type components_PutDecentralWebhooksResourceVariables as PutDecentralWebhooksResourceVariables, type components_PutNotificationsResourceError as PutNotificationsResourceError, type components_PutNotificationsResourceVariables as PutNotificationsResourceVariables, type components_PutSmartlockAuthsAdvancedResourceError as PutSmartlockAuthsAdvancedResourceError, type components_PutSmartlockAuthsAdvancedResourceVariables as PutSmartlockAuthsAdvancedResourceVariables, type components_PutSmartlockAuthsResourceError as PutSmartlockAuthsResourceError, type components_PutSmartlockAuthsResourcePathParams as PutSmartlockAuthsResourcePathParams, type components_PutSmartlockAuthsResourceVariables as PutSmartlockAuthsResourceVariables, type components_PutSmartlocksAuthsResourceError as PutSmartlocksAuthsResourceError, type components_PutSmartlocksAuthsResourceVariables as PutSmartlocksAuthsResourceVariables, components_deleteAccountIntegrationsResource as deleteAccountIntegrationsResource, components_deleteAccountOtpResource as deleteAccountOtpResource, components_deleteAccountSettingResource as deleteAccountSettingResource, components_deleteAccountSubResource as deleteAccountSubResource, components_deleteAccountUserResource as deleteAccountUserResource, components_deleteAccountsResource as deleteAccountsResource, components_deleteAddressResource as deleteAddressResource, components_deleteAddressUnitResource as deleteAddressUnitResource, components_deleteAddressUnitsResource as deleteAddressUnitsResource, components_deleteApiKeyAdvancedResource as deleteApiKeyAdvancedResource, components_deleteApiKeyResource as deleteApiKeyResource, components_deleteApiKeyTokenResource as deleteApiKeyTokenResource, components_deleteDecentralWebhookResource as deleteDecentralWebhookResource, components_deleteNotificationResource as deleteNotificationResource, components_deleteSmartlockAuthResource as deleteSmartlockAuthResource, components_deleteSmartlockResource as deleteSmartlockResource, components_deleteSmartlocksAuthsResource as deleteSmartlocksAuthsResource, components_getAccountIntegrationsResource as getAccountIntegrationsResource, components_getAccountSettingResource as getAccountSettingResource, components_getAccountSubResource as getAccountSubResource, components_getAccountSubsResource as getAccountSubsResource, components_getAccountUserResource as getAccountUserResource, components_getAccountUsersResource as getAccountUsersResource, components_getAccountsResource as getAccountsResource, components_getAddressReservationsResource as getAddressReservationsResource, components_getAddressTokenRedeemResource as getAddressTokenRedeemResource, components_getAddressTokenResource as getAddressTokenResource, components_getAddressTokensResource as getAddressTokensResource, components_getAddressUnitsResource as getAddressUnitsResource, components_getAddressesResource as getAddressesResource, components_getApiKeyAdvancedResource as getApiKeyAdvancedResource, components_getApiKeyTokensResource as getApiKeyTokensResource, components_getApiKeysResource as getApiKeysResource, components_getCompaniesResource as getCompaniesResource, components_getDecentralWebhooksResource as getDecentralWebhooksResource, components_getNotificationResource as getNotificationResource, components_getNotificationsResource as getNotificationsResource, components_getOpenerBrandResource as getOpenerBrandResource, components_getOpenerBrandsResource as getOpenerBrandsResource, components_getOpenerIntercomResource as getOpenerIntercomResource, components_getOpenerIntercomsResource as getOpenerIntercomsResource, components_getServiceResource as getServiceResource, components_getServicesResource as getServicesResource, components_getSmartlockAuthResource as getSmartlockAuthResource, components_getSmartlockAuthsResource as getSmartlockAuthsResource, components_getSmartlockLogsResource as getSmartlockLogsResource, components_getSmartlockResource as getSmartlockResource, components_getSmartlocksAuthsResource as getSmartlocksAuthsResource, components_getSmartlocksLogsResource as getSmartlocksLogsResource, components_getSmartlocksResource as getSmartlocksResource, components_getWebhookLogsResource as getWebhookLogsResource, components_operationsByTag as operationsByTag, components_postAccountEmailChangeResource as postAccountEmailChangeResource, components_postAccountEmailVerifyResource as postAccountEmailVerifyResource, components_postAccountOtpResource as postAccountOtpResource, components_postAccountPasswordResetResource as postAccountPasswordResetResource, components_postAccountSubResource as postAccountSubResource, components_postAccountUserResource as postAccountUserResource, components_postAccountsResource as postAccountsResource, components_postAddressReservationIssueResource as postAddressReservationIssueResource, components_postAddressReservationRevokeResource as postAddressReservationRevokeResource, components_postAddressResource as postAddressResource, components_postAddressTokenRedeemResource as postAddressTokenRedeemResource, components_postApiKeyAdvancedReactivateResource as postApiKeyAdvancedReactivateResource, components_postApiKeyAdvancedResource as postApiKeyAdvancedResource, components_postApiKeyResource as postApiKeyResource, components_postApiKeyTokenResource as postApiKeyTokenResource, components_postNotificationResource as postNotificationResource, components_postReservationAccessTimesUpdateResource as postReservationAccessTimesUpdateResource, components_postServiceLinkResource as postServiceLinkResource, components_postServiceSyncResource as postServiceSyncResource, components_postServiceUnlinkResource as postServiceUnlinkResource, components_postSmartdoorAdvancedConfigResource as postSmartdoorAdvancedConfigResource, components_postSmartlockActionAdvancedResource as postSmartlockActionAdvancedResource, components_postSmartlockActionResource as postSmartlockActionResource, components_postSmartlockAdminPinResource as postSmartlockAdminPinResource, components_postSmartlockAdvancedConfigResource as postSmartlockAdvancedConfigResource, components_postSmartlockAuthResource as postSmartlockAuthResource, components_postSmartlockAuthWithSharedKeyResource as postSmartlockAuthWithSharedKeyResource, components_postSmartlockBulkWebConfigResource as postSmartlockBulkWebConfigResource, components_postSmartlockConfigResource as postSmartlockConfigResource, components_postSmartlockLockActionAdvancedResource as postSmartlockLockActionAdvancedResource, components_postSmartlockLockActionResource as postSmartlockLockActionResource, components_postSmartlockOpenerAdvancedConfigResource as postSmartlockOpenerAdvancedConfigResource, components_postSmartlockResource as postSmartlockResource, components_postSmartlockSyncResource as postSmartlockSyncResource, components_postSmartlockUnlockActionAdvancedResource as postSmartlockUnlockActionAdvancedResource, components_postSmartlockUnlockActionResource as postSmartlockUnlockActionResource, components_postSmartlockWebConfigResource as postSmartlockWebConfigResource, components_postSmartlocksAuthsResource as postSmartlocksAuthsResource, components_putAccountOtpResource as putAccountOtpResource, components_putAccountSettingResource as putAccountSettingResource, components_putAccountSubsResource as putAccountSubsResource, components_putAccountUsersResource as putAccountUsersResource, components_putAddressUnitsResource as putAddressUnitsResource, components_putAddressesResource as putAddressesResource, components_putApiKeyAdvancedResource as putApiKeyAdvancedResource, components_putApiKeyTokensResource as putApiKeyTokensResource, components_putApiKeysResource as putApiKeysResource, components_putDecentralWebhooksResource as putDecentralWebhooksResource, components_putNotificationsResource as putNotificationsResource, components_putSmartlockAuthsAdvancedResource as putSmartlockAuthsAdvancedResource, components_putSmartlockAuthsResource as putSmartlockAuthsResource, components_putSmartlocksAuthsResource as putSmartlocksAuthsResource };
|
|
5605
5413
|
}
|
|
5606
5414
|
|
|
5607
5415
|
declare const operationsByPath: {
|
|
@@ -5624,9 +5432,6 @@ declare const operationsByPath: {
|
|
|
5624
5432
|
'GET /account/sub/{accountId}': (variables: GetAccountSubResourceVariables, signal?: AbortSignal) => Promise<Account>;
|
|
5625
5433
|
'POST /account/sub/{accountId}': (variables: PostAccountSubResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5626
5434
|
'DELETE /account/sub/{accountId}': (variables: DeleteAccountSubResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5627
|
-
'POST /account/subscription/pay': (variables: PostAccountSubscriptionPayResourceVariables, signal?: AbortSignal) => Promise<string>;
|
|
5628
|
-
'POST /account/subscription/{id}/activate': (variables: PostAccountSubscriptionActivateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5629
|
-
'POST /account/subscription/{id}/terminate': (variables: PostAccountSubscriptionTerminateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5630
5435
|
'GET /account/user': (variables: GetAccountUsersResourceVariables, signal?: AbortSignal) => Promise<GetAccountUsersResourceResponse>;
|
|
5631
5436
|
'PUT /account/user': (variables: PutAccountUsersResourceVariables, signal?: AbortSignal) => Promise<AccountUser>;
|
|
5632
5437
|
'GET /account/user/{accountUserId}': (variables: GetAccountUserResourceVariables, signal?: AbortSignal) => Promise<AccountUser>;
|
|
@@ -5665,7 +5470,6 @@ declare const operationsByPath: {
|
|
|
5665
5470
|
'POST /api/key/{apiKeyId}/token/{id}': (variables: PostApiKeyTokenResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5666
5471
|
'DELETE /api/key/{apiKeyId}/token/{id}': (variables: DeleteApiKeyTokenResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5667
5472
|
'GET /api/key/{apiKeyId}/webhook/logs': (variables: GetWebhookLogsResourceVariables, signal?: AbortSignal) => Promise<GetWebhookLogsResourceResponse>;
|
|
5668
|
-
'GET /app/account/subscription': (variables: GetAccountSubscriptionsResourceVariables, signal?: AbortSignal) => Promise<GetAccountSubscriptionsResourceResponse>;
|
|
5669
5473
|
'POST /bulk-web-config': (variables: PostSmartlockBulkWebConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5670
5474
|
'GET /company': (variables: GetCompaniesResourceVariables, signal?: AbortSignal) => Promise<GetCompaniesResourceResponse>;
|
|
5671
5475
|
'GET /notification': (variables: GetNotificationsResourceVariables, signal?: AbortSignal) => Promise<GetNotificationsResourceResponse>;
|
|
@@ -5712,8 +5516,6 @@ declare const operationsByPath: {
|
|
|
5712
5516
|
'GET /smartlock/{smartlockId}/log': (variables: GetSmartlockLogsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlockLogsResourceResponse>;
|
|
5713
5517
|
'POST /smartlock/{smartlockId}/sync': (variables: PostSmartlockSyncResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5714
5518
|
'POST /smartlock/{smartlockId}/web/config': (variables: PostSmartlockWebConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5715
|
-
'GET /subscription': (variables: GetSubscriptionsResourceVariables, signal?: AbortSignal) => Promise<GetSubscriptionsResourceResponse>;
|
|
5716
|
-
'GET /subscription/{subscriptionId}': (variables: GetSubscriptionResourceVariables, signal?: AbortSignal) => Promise<Subscription>;
|
|
5717
5519
|
};
|
|
5718
5520
|
|
|
5719
5521
|
type RequiredKeys<T> = {
|
|
@@ -5754,9 +5556,6 @@ declare class NukiApi {
|
|
|
5754
5556
|
'GET /account/sub/{accountId}': (variables: GetAccountSubResourceVariables, signal?: AbortSignal) => Promise<Account>;
|
|
5755
5557
|
'POST /account/sub/{accountId}': (variables: PostAccountSubResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5756
5558
|
'DELETE /account/sub/{accountId}': (variables: DeleteAccountSubResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5757
|
-
'POST /account/subscription/pay': (variables: PostAccountSubscriptionPayResourceVariables, signal?: AbortSignal) => Promise<string>;
|
|
5758
|
-
'POST /account/subscription/{id}/activate': (variables: PostAccountSubscriptionActivateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5759
|
-
'POST /account/subscription/{id}/terminate': (variables: PostAccountSubscriptionTerminateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5760
5559
|
'GET /account/user': (variables: GetAccountUsersResourceVariables, signal?: AbortSignal) => Promise<GetAccountUsersResourceResponse>;
|
|
5761
5560
|
'PUT /account/user': (variables: PutAccountUsersResourceVariables, signal?: AbortSignal) => Promise<AccountUser>;
|
|
5762
5561
|
'GET /account/user/{accountUserId}': (variables: GetAccountUserResourceVariables, signal?: AbortSignal) => Promise<AccountUser>;
|
|
@@ -5795,7 +5594,6 @@ declare class NukiApi {
|
|
|
5795
5594
|
'POST /api/key/{apiKeyId}/token/{id}': (variables: PostApiKeyTokenResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5796
5595
|
'DELETE /api/key/{apiKeyId}/token/{id}': (variables: DeleteApiKeyTokenResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5797
5596
|
'GET /api/key/{apiKeyId}/webhook/logs': (variables: GetWebhookLogsResourceVariables, signal?: AbortSignal) => Promise<GetWebhookLogsResourceResponse>;
|
|
5798
|
-
'GET /app/account/subscription': (variables: GetAccountSubscriptionsResourceVariables, signal?: AbortSignal) => Promise<GetAccountSubscriptionsResourceResponse>;
|
|
5799
5597
|
'POST /bulk-web-config': (variables: PostSmartlockBulkWebConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5800
5598
|
'GET /company': (variables: GetCompaniesResourceVariables, signal?: AbortSignal) => Promise<GetCompaniesResourceResponse>;
|
|
5801
5599
|
'GET /notification': (variables: GetNotificationsResourceVariables, signal?: AbortSignal) => Promise<GetNotificationsResourceResponse>;
|
|
@@ -5842,8 +5640,6 @@ declare class NukiApi {
|
|
|
5842
5640
|
'GET /smartlock/{smartlockId}/log': (variables: GetSmartlockLogsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlockLogsResourceResponse>;
|
|
5843
5641
|
'POST /smartlock/{smartlockId}/sync': (variables: PostSmartlockSyncResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5844
5642
|
'POST /smartlock/{smartlockId}/web/config': (variables: PostSmartlockWebConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5845
|
-
'GET /subscription': (variables: GetSubscriptionsResourceVariables, signal?: AbortSignal) => Promise<GetSubscriptionsResourceResponse>;
|
|
5846
|
-
'GET /subscription/{subscriptionId}': (variables: GetSubscriptionResourceVariables, signal?: AbortSignal) => Promise<Subscription>;
|
|
5847
5643
|
}[Endpoint]>>;
|
|
5848
5644
|
}
|
|
5849
5645
|
|