nuki-api-js 0.1.1 → 0.2.1
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 +2 -0
- package/dist/index.d.cts +93 -31
- package/dist/index.d.mts +93 -31
- package/dist/index.d.ts +93 -31
- package/dist/index.mjs +2 -0
- package/package.json +3 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
|
|
2
|
-
> nuki-api-js@0.
|
|
2
|
+
> nuki-api-js@0.2.1 build /home/runner/work/openapi-clients/openapi-clients/packages/nuki-api-js
|
|
3
3
|
> unbuild
|
|
4
4
|
|
|
5
5
|
[info] Automatically detected entries: src/index [esm] [cjs] [dts]
|
|
6
6
|
[info] Building nuki-api-js
|
|
7
7
|
[info] Cleaning dist directory: `./dist`
|
|
8
8
|
[success] Build succeeded for nuki-api-js
|
|
9
|
-
[log] dist/index.cjs (total size:
|
|
9
|
+
[log] dist/index.cjs (total size: 22 kB, chunk size: 22 kB, exports: NukiApi)
|
|
10
10
|
|
|
11
|
-
[log] dist/index.mjs (total size:
|
|
11
|
+
[log] dist/index.mjs (total size: 22 kB, chunk size: 22 kB, exports: NukiApi)
|
|
12
12
|
|
|
13
|
-
Σ Total dist size (byte size):
|
|
13
|
+
Σ Total dist size (byte size): 824 kB
|
|
14
14
|
[log]
|
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -301,6 +301,7 @@ const postSmartlocksAuthsResource = (variables, signal) => fetch$1({ url: "/smar
|
|
|
301
301
|
const putSmartlocksAuthsResource = (variables, signal) => fetch$1({ url: "/smartlock/auth", method: "put", ...variables, signal });
|
|
302
302
|
const deleteSmartlocksAuthsResource = (variables, signal) => fetch$1({ url: "/smartlock/auth", method: "delete", ...variables, signal });
|
|
303
303
|
const putSmartlockAuthsAdvancedResource = (variables, signal) => fetch$1({ url: "/smartlock/auth/advanced", method: "put", ...variables, signal });
|
|
304
|
+
const getSmartlocksAuthsPaginatedResource = (variables, signal) => fetch$1({ url: "/smartlock/auth/paged", method: "get", ...variables, signal });
|
|
304
305
|
const getSmartlocksLogsResource = (variables, signal) => fetch$1({ url: "/smartlock/log", method: "get", ...variables, signal });
|
|
305
306
|
const getSmartlockResource = (variables, signal) => fetch$1({ url: "/smartlock/{smartlockId}", method: "get", ...variables, signal });
|
|
306
307
|
const postSmartlockResource = (variables, signal) => fetch$1({ url: "/smartlock/{smartlockId}", method: "post", ...variables, signal });
|
|
@@ -549,6 +550,7 @@ const operationsByTag = {
|
|
|
549
550
|
postSmartlocksAuthsResource,
|
|
550
551
|
putSmartlocksAuthsResource,
|
|
551
552
|
deleteSmartlocksAuthsResource,
|
|
553
|
+
getSmartlocksAuthsPaginatedResource,
|
|
552
554
|
getSmartlockAuthsResource,
|
|
553
555
|
putSmartlockAuthsResource,
|
|
554
556
|
postSmartlockAuthWithSharedKeyResource,
|
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.13.1
|
|
5
5
|
*/
|
|
6
6
|
type Account = {
|
|
7
7
|
/**
|
|
@@ -997,11 +997,11 @@ type Application = {
|
|
|
997
997
|
connegService?: ConnegService;
|
|
998
998
|
metadataService?: MetadataService;
|
|
999
999
|
converterService?: ConverterService;
|
|
1000
|
-
rangeService?: RangeService;
|
|
1001
|
-
taskService?: TaskService;
|
|
1002
1000
|
connectorService?: ConnectorService;
|
|
1003
1001
|
decoderService?: DecoderService;
|
|
1004
1002
|
encoderService?: EncoderService;
|
|
1003
|
+
rangeService?: RangeService;
|
|
1004
|
+
taskService?: TaskService;
|
|
1005
1005
|
tunnelService?: TunnelService;
|
|
1006
1006
|
logger?: Logger;
|
|
1007
1007
|
application?: Application;
|
|
@@ -1112,22 +1112,22 @@ type Company = {
|
|
|
1112
1112
|
email?: string;
|
|
1113
1113
|
};
|
|
1114
1114
|
type CompletableFuture = {
|
|
1115
|
+
done?: boolean;
|
|
1116
|
+
cancelled?: boolean;
|
|
1115
1117
|
completedExceptionally?: boolean;
|
|
1116
1118
|
/**
|
|
1117
1119
|
* @format int32
|
|
1118
1120
|
*/
|
|
1119
1121
|
numberOfDependents?: number;
|
|
1120
|
-
done?: boolean;
|
|
1121
|
-
cancelled?: boolean;
|
|
1122
1122
|
};
|
|
1123
1123
|
type CompletableFutureListApiKey = {
|
|
1124
|
+
done?: boolean;
|
|
1125
|
+
cancelled?: boolean;
|
|
1124
1126
|
completedExceptionally?: boolean;
|
|
1125
1127
|
/**
|
|
1126
1128
|
* @format int32
|
|
1127
1129
|
*/
|
|
1128
1130
|
numberOfDependents?: number;
|
|
1129
|
-
done?: boolean;
|
|
1130
|
-
cancelled?: boolean;
|
|
1131
1131
|
};
|
|
1132
1132
|
type Conditions = {
|
|
1133
1133
|
match?: Tag[];
|
|
@@ -1288,8 +1288,8 @@ type Language = {
|
|
|
1288
1288
|
description?: string;
|
|
1289
1289
|
name?: string;
|
|
1290
1290
|
subTags?: string[];
|
|
1291
|
-
primaryTag?: string;
|
|
1292
1291
|
parent?: Language;
|
|
1292
|
+
primaryTag?: string;
|
|
1293
1293
|
};
|
|
1294
1294
|
type Level = {
|
|
1295
1295
|
name?: string;
|
|
@@ -1327,18 +1327,18 @@ type Logger = {
|
|
|
1327
1327
|
useParentHandlers?: boolean;
|
|
1328
1328
|
filter?: Filter;
|
|
1329
1329
|
parent?: Logger;
|
|
1330
|
-
level?: Level;
|
|
1331
1330
|
resourceBundle?: ResourceBundle;
|
|
1332
1331
|
resourceBundleName?: string;
|
|
1332
|
+
level?: Level;
|
|
1333
1333
|
};
|
|
1334
1334
|
type MediaType = {
|
|
1335
1335
|
description?: string;
|
|
1336
1336
|
name?: string;
|
|
1337
1337
|
parameters?: Parameter[];
|
|
1338
|
+
parent?: MediaType;
|
|
1338
1339
|
concrete?: boolean;
|
|
1339
1340
|
mainType?: string;
|
|
1340
1341
|
subType?: string;
|
|
1341
|
-
parent?: MediaType;
|
|
1342
1342
|
};
|
|
1343
1343
|
type Metadata = {
|
|
1344
1344
|
description?: string;
|
|
@@ -1639,6 +1639,30 @@ type OpenerIntercomModel = {
|
|
|
1639
1639
|
*/
|
|
1640
1640
|
updateDate?: string;
|
|
1641
1641
|
};
|
|
1642
|
+
type PaginatedResponse = {
|
|
1643
|
+
results?: Record<string, any>[];
|
|
1644
|
+
pagination?: Pagination;
|
|
1645
|
+
};
|
|
1646
|
+
type Pagination = {
|
|
1647
|
+
/**
|
|
1648
|
+
* @format int64
|
|
1649
|
+
*/
|
|
1650
|
+
totalItems?: number;
|
|
1651
|
+
/**
|
|
1652
|
+
* @format int32
|
|
1653
|
+
*/
|
|
1654
|
+
totalPages?: number;
|
|
1655
|
+
/**
|
|
1656
|
+
* @format int32
|
|
1657
|
+
*/
|
|
1658
|
+
currentPage?: number;
|
|
1659
|
+
nextPage?: string;
|
|
1660
|
+
prevPage?: string;
|
|
1661
|
+
/**
|
|
1662
|
+
* @format int32
|
|
1663
|
+
*/
|
|
1664
|
+
pageSize?: number;
|
|
1665
|
+
};
|
|
1642
1666
|
type Parameter = {
|
|
1643
1667
|
name?: string;
|
|
1644
1668
|
value?: string;
|
|
@@ -1704,8 +1728,8 @@ type Protocol = {
|
|
|
1704
1728
|
version?: string;
|
|
1705
1729
|
};
|
|
1706
1730
|
type PublicKey = {
|
|
1707
|
-
algorithm?: string;
|
|
1708
1731
|
format?: string;
|
|
1732
|
+
algorithm?: string;
|
|
1709
1733
|
encoded?: string[];
|
|
1710
1734
|
};
|
|
1711
1735
|
type Range = {
|
|
@@ -1741,13 +1765,17 @@ type RecipientInfo = {
|
|
|
1741
1765
|
type Reference = {
|
|
1742
1766
|
baseRef?: Reference;
|
|
1743
1767
|
schemeSpecificPart?: string;
|
|
1744
|
-
relative?: boolean;
|
|
1745
1768
|
identifier?: string;
|
|
1769
|
+
absolute?: boolean;
|
|
1746
1770
|
path?: string;
|
|
1771
|
+
opaque?: boolean;
|
|
1747
1772
|
scheme?: string;
|
|
1773
|
+
authority?: string;
|
|
1748
1774
|
fragment?: string;
|
|
1749
|
-
userInfo?: string;
|
|
1750
1775
|
query?: string;
|
|
1776
|
+
userInfo?: string;
|
|
1777
|
+
extensions?: string;
|
|
1778
|
+
relative?: boolean;
|
|
1751
1779
|
matrix?: string;
|
|
1752
1780
|
matrixAsForm?: Parameter[];
|
|
1753
1781
|
queryAsForm?: Parameter[];
|
|
@@ -1768,10 +1796,6 @@ type Reference = {
|
|
|
1768
1796
|
segments?: string[];
|
|
1769
1797
|
targetRef?: Reference;
|
|
1770
1798
|
hierarchical?: boolean;
|
|
1771
|
-
authority?: string;
|
|
1772
|
-
absolute?: boolean;
|
|
1773
|
-
opaque?: boolean;
|
|
1774
|
-
extensions?: string;
|
|
1775
1799
|
};
|
|
1776
1800
|
type Representation = {
|
|
1777
1801
|
characterSet?: CharacterSet;
|
|
@@ -1797,17 +1821,17 @@ type Representation = {
|
|
|
1797
1821
|
*/
|
|
1798
1822
|
size?: number;
|
|
1799
1823
|
stream?: InputStream;
|
|
1824
|
+
empty?: boolean;
|
|
1825
|
+
transient?: boolean;
|
|
1826
|
+
channel?: ReadableByteChannel;
|
|
1827
|
+
reader?: Reader;
|
|
1800
1828
|
text?: string;
|
|
1801
|
-
selectable?: boolean;
|
|
1802
1829
|
registration?: SelectionRegistration;
|
|
1803
|
-
|
|
1830
|
+
selectable?: boolean;
|
|
1804
1831
|
/**
|
|
1805
1832
|
* @format int64
|
|
1806
1833
|
*/
|
|
1807
1834
|
availableSize?: number;
|
|
1808
|
-
transient?: boolean;
|
|
1809
|
-
empty?: boolean;
|
|
1810
|
-
channel?: ReadableByteChannel;
|
|
1811
1835
|
};
|
|
1812
1836
|
type Request = {
|
|
1813
1837
|
attributes?: {
|
|
@@ -1932,9 +1956,9 @@ type Response$1 = {
|
|
|
1932
1956
|
retryAfter?: string;
|
|
1933
1957
|
serverInfo?: ServerInfo;
|
|
1934
1958
|
status?: Status;
|
|
1959
|
+
final?: boolean;
|
|
1935
1960
|
confidential?: boolean;
|
|
1936
1961
|
provisional?: boolean;
|
|
1937
|
-
final?: boolean;
|
|
1938
1962
|
headers?: Header[];
|
|
1939
1963
|
entityAsText?: string;
|
|
1940
1964
|
entityAvailable?: boolean;
|
|
@@ -3109,7 +3133,7 @@ type SmartlockLog = {
|
|
|
3109
3133
|
*/
|
|
3110
3134
|
trigger: number;
|
|
3111
3135
|
/**
|
|
3112
|
-
* The completion state: 0 .. Success, 1 .. Motor blocked, 2 .. Canceled, 3 .. Too recent, 4 .. Busy, 5 .. Low motor voltage, 6 .. Clutch failure, 7 .. Motor power failure, 8 .. Incomplete, 9 .. Rejected, 10 .. Rejected night mode, 254 .. Other error, 255 .. Unknown error
|
|
3136
|
+
* The completion state: 0 .. Success, 1 .. Motor blocked, 2 .. Canceled, 3 .. Too recent, 4 .. Busy, 5 .. Low motor voltage, 6 .. Clutch failure, 7 .. Motor power failure, 8 .. Incomplete, 9 .. Rejected, 10 .. Rejected night mode, 224 .. Invalid Code, 225 .. Invalid Fingerprint, 226 .. Invalid NFC Tag, 254 .. Other error, 255 .. Unknown error
|
|
3113
3137
|
*
|
|
3114
3138
|
* @format int32
|
|
3115
3139
|
* @minimum 1
|
|
@@ -3134,7 +3158,7 @@ type SmartlockLog = {
|
|
|
3134
3158
|
*/
|
|
3135
3159
|
ajarTimeout?: number;
|
|
3136
3160
|
/**
|
|
3137
|
-
* The source of action: 1 .. Keypad code, 2 .. Fingerprint, 0 .. Default
|
|
3161
|
+
* The source of action: 1 .. Keypad code, 2 .. Fingerprint, 3 .. Tap to Unlock, 0 .. Default
|
|
3138
3162
|
*
|
|
3139
3163
|
* @format int32
|
|
3140
3164
|
*/
|
|
@@ -3335,6 +3359,7 @@ type Status = {
|
|
|
3335
3359
|
reasonPhrase?: string;
|
|
3336
3360
|
throwable?: Throwable;
|
|
3337
3361
|
uri?: string;
|
|
3362
|
+
error?: boolean;
|
|
3338
3363
|
success?: boolean;
|
|
3339
3364
|
serverError?: boolean;
|
|
3340
3365
|
connectorError?: boolean;
|
|
@@ -3343,7 +3368,6 @@ type Status = {
|
|
|
3343
3368
|
informational?: boolean;
|
|
3344
3369
|
redirection?: boolean;
|
|
3345
3370
|
recoverableError?: boolean;
|
|
3346
|
-
error?: boolean;
|
|
3347
3371
|
};
|
|
3348
3372
|
type StatusService = {
|
|
3349
3373
|
context?: Context;
|
|
@@ -3610,6 +3634,8 @@ type schemas_NotificationSetting = NotificationSetting;
|
|
|
3610
3634
|
type schemas_ObjectId = ObjectId;
|
|
3611
3635
|
type schemas_OpenerIntercomBrand = OpenerIntercomBrand;
|
|
3612
3636
|
type schemas_OpenerIntercomModel = OpenerIntercomModel;
|
|
3637
|
+
type schemas_PaginatedResponse = PaginatedResponse;
|
|
3638
|
+
type schemas_Pagination = Pagination;
|
|
3613
3639
|
type schemas_Parameter = Parameter;
|
|
3614
3640
|
type schemas_Preference = Preference;
|
|
3615
3641
|
type schemas_PreferenceCharacterSet = PreferenceCharacterSet;
|
|
@@ -3676,7 +3702,7 @@ type schemas_WebConfigRequest = WebConfigRequest;
|
|
|
3676
3702
|
type schemas_WebhookLog = WebhookLog;
|
|
3677
3703
|
type schemas_WebhookMessage = WebhookMessage;
|
|
3678
3704
|
declare namespace schemas {
|
|
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 };
|
|
3705
|
+
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_PaginatedResponse as PaginatedResponse, schemas_Pagination as Pagination, 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 };
|
|
3680
3706
|
}
|
|
3681
3707
|
|
|
3682
3708
|
type RequestInit = {
|
|
@@ -3709,7 +3735,7 @@ type ErrorWrapper<TError> = TError | {
|
|
|
3709
3735
|
/**
|
|
3710
3736
|
* Generated by @openapi-codegen
|
|
3711
3737
|
*
|
|
3712
|
-
* @version 3.
|
|
3738
|
+
* @version 3.13.1
|
|
3713
3739
|
*/
|
|
3714
3740
|
|
|
3715
3741
|
type SmartlockAction = SmartlockAction$1;
|
|
@@ -3722,7 +3748,7 @@ declare namespace requestBodies {
|
|
|
3722
3748
|
/**
|
|
3723
3749
|
* Generated by @openapi-codegen
|
|
3724
3750
|
*
|
|
3725
|
-
* @version 3.
|
|
3751
|
+
* @version 3.13.1
|
|
3726
3752
|
*/
|
|
3727
3753
|
|
|
3728
3754
|
type GetAccountsResourceError = ErrorWrapper<undefined>;
|
|
@@ -4507,6 +4533,33 @@ type PutSmartlockAuthsAdvancedResourceVariables = {
|
|
|
4507
4533
|
body: SmartlocksAuthAdvancedCreate;
|
|
4508
4534
|
} & FetcherExtraProps;
|
|
4509
4535
|
declare const putSmartlockAuthsAdvancedResource: (variables: PutSmartlockAuthsAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
4536
|
+
type GetSmartlocksAuthsPaginatedResourceQueryParams = {
|
|
4537
|
+
/**
|
|
4538
|
+
* The page number, starting from 0
|
|
4539
|
+
*
|
|
4540
|
+
* @default 0
|
|
4541
|
+
*/
|
|
4542
|
+
page?: number;
|
|
4543
|
+
/**
|
|
4544
|
+
* The number of items in one page
|
|
4545
|
+
*
|
|
4546
|
+
* @default 100
|
|
4547
|
+
*/
|
|
4548
|
+
size?: number;
|
|
4549
|
+
/**
|
|
4550
|
+
* Filter for account users: set to a positive number will filter for authorizations with this specific accountUserId, set to a negative number will filter without set accountUserId
|
|
4551
|
+
*/
|
|
4552
|
+
accountUserId?: number;
|
|
4553
|
+
/**
|
|
4554
|
+
* Filter for authorization's types (comma-separated eg: 0,2,3)
|
|
4555
|
+
*/
|
|
4556
|
+
types?: string;
|
|
4557
|
+
};
|
|
4558
|
+
type GetSmartlocksAuthsPaginatedResourceError = ErrorWrapper<undefined>;
|
|
4559
|
+
type GetSmartlocksAuthsPaginatedResourceVariables = {
|
|
4560
|
+
queryParams?: GetSmartlocksAuthsPaginatedResourceQueryParams;
|
|
4561
|
+
} & FetcherExtraProps;
|
|
4562
|
+
declare const getSmartlocksAuthsPaginatedResource: (variables: GetSmartlocksAuthsPaginatedResourceVariables, signal?: AbortSignal) => Promise<PaginatedResponse>;
|
|
4510
4563
|
type GetSmartlocksLogsResourceQueryParams = {
|
|
4511
4564
|
/**
|
|
4512
4565
|
* Filter for account users
|
|
@@ -4982,6 +5035,7 @@ declare const operationsByTag: {
|
|
|
4982
5035
|
postSmartlocksAuthsResource: (variables: PostSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
4983
5036
|
putSmartlocksAuthsResource: (variables: PutSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
4984
5037
|
deleteSmartlocksAuthsResource: (variables: DeleteSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5038
|
+
getSmartlocksAuthsPaginatedResource: (variables: GetSmartlocksAuthsPaginatedResourceVariables, signal?: AbortSignal) => Promise<PaginatedResponse>;
|
|
4985
5039
|
getSmartlockAuthsResource: (variables: GetSmartlockAuthsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlockAuthsResourceResponse>;
|
|
4986
5040
|
putSmartlockAuthsResource: (variables: PutSmartlockAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
4987
5041
|
postSmartlockAuthWithSharedKeyResource: (variables: PostSmartlockAuthWithSharedKeyResourceVariables, signal?: AbortSignal) => Promise<PostSmartlockAuthWithSharedKeyResourceResponse>;
|
|
@@ -5144,6 +5198,9 @@ type components_GetSmartlockLogsResourceVariables = GetSmartlockLogsResourceVari
|
|
|
5144
5198
|
type components_GetSmartlockResourceError = GetSmartlockResourceError;
|
|
5145
5199
|
type components_GetSmartlockResourcePathParams = GetSmartlockResourcePathParams;
|
|
5146
5200
|
type components_GetSmartlockResourceVariables = GetSmartlockResourceVariables;
|
|
5201
|
+
type components_GetSmartlocksAuthsPaginatedResourceError = GetSmartlocksAuthsPaginatedResourceError;
|
|
5202
|
+
type components_GetSmartlocksAuthsPaginatedResourceQueryParams = GetSmartlocksAuthsPaginatedResourceQueryParams;
|
|
5203
|
+
type components_GetSmartlocksAuthsPaginatedResourceVariables = GetSmartlocksAuthsPaginatedResourceVariables;
|
|
5147
5204
|
type components_GetSmartlocksAuthsResourceError = GetSmartlocksAuthsResourceError;
|
|
5148
5205
|
type components_GetSmartlocksAuthsResourceQueryParams = GetSmartlocksAuthsResourceQueryParams;
|
|
5149
5206
|
type components_GetSmartlocksAuthsResourceResponse = GetSmartlocksAuthsResourceResponse;
|
|
@@ -5351,6 +5408,7 @@ declare const components_getSmartlockAuthResource: typeof getSmartlockAuthResour
|
|
|
5351
5408
|
declare const components_getSmartlockAuthsResource: typeof getSmartlockAuthsResource;
|
|
5352
5409
|
declare const components_getSmartlockLogsResource: typeof getSmartlockLogsResource;
|
|
5353
5410
|
declare const components_getSmartlockResource: typeof getSmartlockResource;
|
|
5411
|
+
declare const components_getSmartlocksAuthsPaginatedResource: typeof getSmartlocksAuthsPaginatedResource;
|
|
5354
5412
|
declare const components_getSmartlocksAuthsResource: typeof getSmartlocksAuthsResource;
|
|
5355
5413
|
declare const components_getSmartlocksLogsResource: typeof getSmartlocksLogsResource;
|
|
5356
5414
|
declare const components_getSmartlocksResource: typeof getSmartlocksResource;
|
|
@@ -5409,7 +5467,8 @@ declare const components_putSmartlockAuthsAdvancedResource: typeof putSmartlockA
|
|
|
5409
5467
|
declare const components_putSmartlockAuthsResource: typeof putSmartlockAuthsResource;
|
|
5410
5468
|
declare const components_putSmartlocksAuthsResource: typeof putSmartlocksAuthsResource;
|
|
5411
5469
|
declare namespace components {
|
|
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 };
|
|
5470
|
+
export { 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_getSmartlocksAuthsPaginatedResource as getSmartlocksAuthsPaginatedResource, 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 };
|
|
5471
|
+
export type { components_DeleteAccountIntegrationsResourceError as DeleteAccountIntegrationsResourceError, components_DeleteAccountIntegrationsResourceQueryParams as DeleteAccountIntegrationsResourceQueryParams, components_DeleteAccountIntegrationsResourceVariables as DeleteAccountIntegrationsResourceVariables, components_DeleteAccountOtpResourceError as DeleteAccountOtpResourceError, components_DeleteAccountOtpResourceVariables as DeleteAccountOtpResourceVariables, components_DeleteAccountSettingResourceError as DeleteAccountSettingResourceError, components_DeleteAccountSettingResourceVariables as DeleteAccountSettingResourceVariables, components_DeleteAccountSubResourceError as DeleteAccountSubResourceError, components_DeleteAccountSubResourcePathParams as DeleteAccountSubResourcePathParams, components_DeleteAccountSubResourceVariables as DeleteAccountSubResourceVariables, components_DeleteAccountUserResourceError as DeleteAccountUserResourceError, components_DeleteAccountUserResourcePathParams as DeleteAccountUserResourcePathParams, components_DeleteAccountUserResourceVariables as DeleteAccountUserResourceVariables, components_DeleteAccountsResourceError as DeleteAccountsResourceError, components_DeleteAccountsResourceVariables as DeleteAccountsResourceVariables, components_DeleteAddressResourceError as DeleteAddressResourceError, components_DeleteAddressResourcePathParams as DeleteAddressResourcePathParams, components_DeleteAddressResourceVariables as DeleteAddressResourceVariables, components_DeleteAddressUnitResourceError as DeleteAddressUnitResourceError, components_DeleteAddressUnitResourcePathParams as DeleteAddressUnitResourcePathParams, components_DeleteAddressUnitResourceVariables as DeleteAddressUnitResourceVariables, components_DeleteAddressUnitsResourceError as DeleteAddressUnitsResourceError, components_DeleteAddressUnitsResourcePathParams as DeleteAddressUnitsResourcePathParams, components_DeleteAddressUnitsResourceRequestBody as DeleteAddressUnitsResourceRequestBody, components_DeleteAddressUnitsResourceVariables as DeleteAddressUnitsResourceVariables, components_DeleteApiKeyAdvancedResourceError as DeleteApiKeyAdvancedResourceError, components_DeleteApiKeyAdvancedResourcePathParams as DeleteApiKeyAdvancedResourcePathParams, components_DeleteApiKeyAdvancedResourceVariables as DeleteApiKeyAdvancedResourceVariables, components_DeleteApiKeyResourceError as DeleteApiKeyResourceError, components_DeleteApiKeyResourcePathParams as DeleteApiKeyResourcePathParams, components_DeleteApiKeyResourceVariables as DeleteApiKeyResourceVariables, components_DeleteApiKeyTokenResourceError as DeleteApiKeyTokenResourceError, components_DeleteApiKeyTokenResourcePathParams as DeleteApiKeyTokenResourcePathParams, components_DeleteApiKeyTokenResourceVariables as DeleteApiKeyTokenResourceVariables, components_DeleteDecentralWebhookResourceError as DeleteDecentralWebhookResourceError, components_DeleteDecentralWebhookResourcePathParams as DeleteDecentralWebhookResourcePathParams, components_DeleteDecentralWebhookResourceVariables as DeleteDecentralWebhookResourceVariables, components_DeleteNotificationResourceError as DeleteNotificationResourceError, components_DeleteNotificationResourcePathParams as DeleteNotificationResourcePathParams, components_DeleteNotificationResourceVariables as DeleteNotificationResourceVariables, components_DeleteSmartlockAuthResourceError as DeleteSmartlockAuthResourceError, components_DeleteSmartlockAuthResourcePathParams as DeleteSmartlockAuthResourcePathParams, components_DeleteSmartlockAuthResourceVariables as DeleteSmartlockAuthResourceVariables, components_DeleteSmartlockResourceError as DeleteSmartlockResourceError, components_DeleteSmartlockResourcePathParams as DeleteSmartlockResourcePathParams, components_DeleteSmartlockResourceVariables as DeleteSmartlockResourceVariables, components_DeleteSmartlocksAuthsResourceError as DeleteSmartlocksAuthsResourceError, components_DeleteSmartlocksAuthsResourceRequestBody as DeleteSmartlocksAuthsResourceRequestBody, components_DeleteSmartlocksAuthsResourceVariables as DeleteSmartlocksAuthsResourceVariables, components_GetAccountIntegrationsResourceError as GetAccountIntegrationsResourceError, components_GetAccountIntegrationsResourceResponse as GetAccountIntegrationsResourceResponse, components_GetAccountIntegrationsResourceVariables as GetAccountIntegrationsResourceVariables, components_GetAccountSettingResourceError as GetAccountSettingResourceError, components_GetAccountSettingResourceVariables as GetAccountSettingResourceVariables, components_GetAccountSubResourceError as GetAccountSubResourceError, components_GetAccountSubResourcePathParams as GetAccountSubResourcePathParams, components_GetAccountSubResourceVariables as GetAccountSubResourceVariables, components_GetAccountSubsResourceError as GetAccountSubsResourceError, components_GetAccountSubsResourceQueryParams as GetAccountSubsResourceQueryParams, components_GetAccountSubsResourceVariables as GetAccountSubsResourceVariables, components_GetAccountUserResourceError as GetAccountUserResourceError, components_GetAccountUserResourcePathParams as GetAccountUserResourcePathParams, components_GetAccountUserResourceVariables as GetAccountUserResourceVariables, components_GetAccountUsersResourceError as GetAccountUsersResourceError, components_GetAccountUsersResourceQueryParams as GetAccountUsersResourceQueryParams, components_GetAccountUsersResourceResponse as GetAccountUsersResourceResponse, components_GetAccountUsersResourceVariables as GetAccountUsersResourceVariables, components_GetAccountsResourceError as GetAccountsResourceError, components_GetAccountsResourceVariables as GetAccountsResourceVariables, components_GetAddressReservationsResourceError as GetAddressReservationsResourceError, components_GetAddressReservationsResourcePathParams as GetAddressReservationsResourcePathParams, components_GetAddressReservationsResourceResponse as GetAddressReservationsResourceResponse, components_GetAddressReservationsResourceVariables as GetAddressReservationsResourceVariables, components_GetAddressTokenRedeemResourceError as GetAddressTokenRedeemResourceError, components_GetAddressTokenRedeemResourcePathParams as GetAddressTokenRedeemResourcePathParams, components_GetAddressTokenRedeemResourceVariables as GetAddressTokenRedeemResourceVariables, components_GetAddressTokenResourceError as GetAddressTokenResourceError, components_GetAddressTokenResourcePathParams as GetAddressTokenResourcePathParams, components_GetAddressTokenResourceVariables as GetAddressTokenResourceVariables, components_GetAddressTokensResourceError as GetAddressTokensResourceError, components_GetAddressTokensResourcePathParams as GetAddressTokensResourcePathParams, components_GetAddressTokensResourceResponse as GetAddressTokensResourceResponse, components_GetAddressTokensResourceVariables as GetAddressTokensResourceVariables, components_GetAddressUnitsResourceError as GetAddressUnitsResourceError, components_GetAddressUnitsResourcePathParams as GetAddressUnitsResourcePathParams, components_GetAddressUnitsResourceResponse as GetAddressUnitsResourceResponse, components_GetAddressUnitsResourceVariables as GetAddressUnitsResourceVariables, components_GetAddressesResourceError as GetAddressesResourceError, components_GetAddressesResourceResponse as GetAddressesResourceResponse, components_GetAddressesResourceVariables as GetAddressesResourceVariables, components_GetApiKeyAdvancedResourceError as GetApiKeyAdvancedResourceError, components_GetApiKeyAdvancedResourcePathParams as GetApiKeyAdvancedResourcePathParams, components_GetApiKeyAdvancedResourceVariables as GetApiKeyAdvancedResourceVariables, components_GetApiKeyTokensResourceError as GetApiKeyTokensResourceError, components_GetApiKeyTokensResourcePathParams as GetApiKeyTokensResourcePathParams, components_GetApiKeyTokensResourceResponse as GetApiKeyTokensResourceResponse, components_GetApiKeyTokensResourceVariables as GetApiKeyTokensResourceVariables, components_GetApiKeysResourceError as GetApiKeysResourceError, components_GetApiKeysResourceResponse as GetApiKeysResourceResponse, components_GetApiKeysResourceVariables as GetApiKeysResourceVariables, components_GetCompaniesResourceError as GetCompaniesResourceError, components_GetCompaniesResourceResponse as GetCompaniesResourceResponse, components_GetCompaniesResourceVariables as GetCompaniesResourceVariables, components_GetDecentralWebhooksResourceError as GetDecentralWebhooksResourceError, components_GetDecentralWebhooksResourceResponse as GetDecentralWebhooksResourceResponse, components_GetDecentralWebhooksResourceVariables as GetDecentralWebhooksResourceVariables, components_GetNotificationResourceError as GetNotificationResourceError, components_GetNotificationResourcePathParams as GetNotificationResourcePathParams, components_GetNotificationResourceVariables as GetNotificationResourceVariables, components_GetNotificationsResourceError as GetNotificationsResourceError, components_GetNotificationsResourceQueryParams as GetNotificationsResourceQueryParams, components_GetNotificationsResourceResponse as GetNotificationsResourceResponse, components_GetNotificationsResourceVariables as GetNotificationsResourceVariables, components_GetOpenerBrandResourceError as GetOpenerBrandResourceError, components_GetOpenerBrandResourcePathParams as GetOpenerBrandResourcePathParams, components_GetOpenerBrandResourceVariables as GetOpenerBrandResourceVariables, components_GetOpenerBrandsResourceError as GetOpenerBrandsResourceError, components_GetOpenerBrandsResourceResponse as GetOpenerBrandsResourceResponse, components_GetOpenerBrandsResourceVariables as GetOpenerBrandsResourceVariables, components_GetOpenerIntercomResourceError as GetOpenerIntercomResourceError, components_GetOpenerIntercomResourcePathParams as GetOpenerIntercomResourcePathParams, components_GetOpenerIntercomResourceVariables as GetOpenerIntercomResourceVariables, components_GetOpenerIntercomsResourceError as GetOpenerIntercomsResourceError, components_GetOpenerIntercomsResourceQueryParams as GetOpenerIntercomsResourceQueryParams, components_GetOpenerIntercomsResourceResponse as GetOpenerIntercomsResourceResponse, components_GetOpenerIntercomsResourceVariables as GetOpenerIntercomsResourceVariables, components_GetServiceResourceError as GetServiceResourceError, components_GetServiceResourcePathParams as GetServiceResourcePathParams, components_GetServiceResourceVariables as GetServiceResourceVariables, components_GetServicesResourceError as GetServicesResourceError, components_GetServicesResourceQueryParams as GetServicesResourceQueryParams, components_GetServicesResourceResponse as GetServicesResourceResponse, components_GetServicesResourceVariables as GetServicesResourceVariables, components_GetSmartlockAuthResourceError as GetSmartlockAuthResourceError, components_GetSmartlockAuthResourcePathParams as GetSmartlockAuthResourcePathParams, components_GetSmartlockAuthResourceVariables as GetSmartlockAuthResourceVariables, components_GetSmartlockAuthsResourceError as GetSmartlockAuthsResourceError, components_GetSmartlockAuthsResourcePathParams as GetSmartlockAuthsResourcePathParams, components_GetSmartlockAuthsResourceQueryParams as GetSmartlockAuthsResourceQueryParams, components_GetSmartlockAuthsResourceResponse as GetSmartlockAuthsResourceResponse, components_GetSmartlockAuthsResourceVariables as GetSmartlockAuthsResourceVariables, components_GetSmartlockLogsResourceError as GetSmartlockLogsResourceError, components_GetSmartlockLogsResourcePathParams as GetSmartlockLogsResourcePathParams, components_GetSmartlockLogsResourceQueryParams as GetSmartlockLogsResourceQueryParams, components_GetSmartlockLogsResourceResponse as GetSmartlockLogsResourceResponse, components_GetSmartlockLogsResourceVariables as GetSmartlockLogsResourceVariables, components_GetSmartlockResourceError as GetSmartlockResourceError, components_GetSmartlockResourcePathParams as GetSmartlockResourcePathParams, components_GetSmartlockResourceVariables as GetSmartlockResourceVariables, components_GetSmartlocksAuthsPaginatedResourceError as GetSmartlocksAuthsPaginatedResourceError, components_GetSmartlocksAuthsPaginatedResourceQueryParams as GetSmartlocksAuthsPaginatedResourceQueryParams, components_GetSmartlocksAuthsPaginatedResourceVariables as GetSmartlocksAuthsPaginatedResourceVariables, components_GetSmartlocksAuthsResourceError as GetSmartlocksAuthsResourceError, components_GetSmartlocksAuthsResourceQueryParams as GetSmartlocksAuthsResourceQueryParams, components_GetSmartlocksAuthsResourceResponse as GetSmartlocksAuthsResourceResponse, components_GetSmartlocksAuthsResourceVariables as GetSmartlocksAuthsResourceVariables, components_GetSmartlocksLogsResourceError as GetSmartlocksLogsResourceError, components_GetSmartlocksLogsResourceQueryParams as GetSmartlocksLogsResourceQueryParams, components_GetSmartlocksLogsResourceResponse as GetSmartlocksLogsResourceResponse, components_GetSmartlocksLogsResourceVariables as GetSmartlocksLogsResourceVariables, components_GetSmartlocksResourceError as GetSmartlocksResourceError, components_GetSmartlocksResourceQueryParams as GetSmartlocksResourceQueryParams, components_GetSmartlocksResourceResponse as GetSmartlocksResourceResponse, components_GetSmartlocksResourceVariables as GetSmartlocksResourceVariables, components_GetWebhookLogsResourceError as GetWebhookLogsResourceError, components_GetWebhookLogsResourcePathParams as GetWebhookLogsResourcePathParams, components_GetWebhookLogsResourceQueryParams as GetWebhookLogsResourceQueryParams, components_GetWebhookLogsResourceResponse as GetWebhookLogsResourceResponse, components_GetWebhookLogsResourceVariables as GetWebhookLogsResourceVariables, components_PostAccountEmailChangeResourceError as PostAccountEmailChangeResourceError, components_PostAccountEmailChangeResourceVariables as PostAccountEmailChangeResourceVariables, components_PostAccountEmailVerifyResourceError as PostAccountEmailVerifyResourceError, components_PostAccountEmailVerifyResourceVariables as PostAccountEmailVerifyResourceVariables, components_PostAccountOtpResourceError as PostAccountOtpResourceError, components_PostAccountOtpResourceVariables as PostAccountOtpResourceVariables, components_PostAccountPasswordResetResourceError as PostAccountPasswordResetResourceError, components_PostAccountPasswordResetResourceVariables as PostAccountPasswordResetResourceVariables, components_PostAccountSubResourceError as PostAccountSubResourceError, components_PostAccountSubResourcePathParams as PostAccountSubResourcePathParams, components_PostAccountSubResourceVariables as PostAccountSubResourceVariables, components_PostAccountUserResourceError as PostAccountUserResourceError, components_PostAccountUserResourcePathParams as PostAccountUserResourcePathParams, components_PostAccountUserResourceVariables as PostAccountUserResourceVariables, components_PostAccountsResourceError as PostAccountsResourceError, components_PostAccountsResourceQueryParams as PostAccountsResourceQueryParams, components_PostAccountsResourceVariables as PostAccountsResourceVariables, components_PostAddressReservationIssueResourceError as PostAddressReservationIssueResourceError, components_PostAddressReservationIssueResourcePathParams as PostAddressReservationIssueResourcePathParams, components_PostAddressReservationIssueResourceVariables as PostAddressReservationIssueResourceVariables, components_PostAddressReservationRevokeResourceError as PostAddressReservationRevokeResourceError, components_PostAddressReservationRevokeResourcePathParams as PostAddressReservationRevokeResourcePathParams, components_PostAddressReservationRevokeResourceVariables as PostAddressReservationRevokeResourceVariables, components_PostAddressResourceError as PostAddressResourceError, components_PostAddressResourcePathParams as PostAddressResourcePathParams, components_PostAddressResourceVariables as PostAddressResourceVariables, components_PostAddressTokenRedeemResourceError as PostAddressTokenRedeemResourceError, components_PostAddressTokenRedeemResourcePathParams as PostAddressTokenRedeemResourcePathParams, components_PostAddressTokenRedeemResourceQueryParams as PostAddressTokenRedeemResourceQueryParams, components_PostAddressTokenRedeemResourceVariables as PostAddressTokenRedeemResourceVariables, components_PostApiKeyAdvancedReactivateResourceError as PostApiKeyAdvancedReactivateResourceError, components_PostApiKeyAdvancedReactivateResourcePathParams as PostApiKeyAdvancedReactivateResourcePathParams, components_PostApiKeyAdvancedReactivateResourceVariables as PostApiKeyAdvancedReactivateResourceVariables, components_PostApiKeyAdvancedResourceError as PostApiKeyAdvancedResourceError, components_PostApiKeyAdvancedResourcePathParams as PostApiKeyAdvancedResourcePathParams, components_PostApiKeyAdvancedResourceVariables as PostApiKeyAdvancedResourceVariables, components_PostApiKeyResourceError as PostApiKeyResourceError, components_PostApiKeyResourcePathParams as PostApiKeyResourcePathParams, components_PostApiKeyResourceVariables as PostApiKeyResourceVariables, components_PostApiKeyTokenResourceError as PostApiKeyTokenResourceError, components_PostApiKeyTokenResourcePathParams as PostApiKeyTokenResourcePathParams, components_PostApiKeyTokenResourceVariables as PostApiKeyTokenResourceVariables, components_PostNotificationResourceError as PostNotificationResourceError, components_PostNotificationResourcePathParams as PostNotificationResourcePathParams, components_PostNotificationResourceVariables as PostNotificationResourceVariables, components_PostReservationAccessTimesUpdateResourceError as PostReservationAccessTimesUpdateResourceError, components_PostReservationAccessTimesUpdateResourcePathParams as PostReservationAccessTimesUpdateResourcePathParams, components_PostReservationAccessTimesUpdateResourceVariables as PostReservationAccessTimesUpdateResourceVariables, components_PostServiceLinkResourceError as PostServiceLinkResourceError, components_PostServiceLinkResourcePathParams as PostServiceLinkResourcePathParams, components_PostServiceLinkResourceVariables as PostServiceLinkResourceVariables, components_PostServiceSyncResourceError as PostServiceSyncResourceError, components_PostServiceSyncResourcePathParams as PostServiceSyncResourcePathParams, components_PostServiceSyncResourceVariables as PostServiceSyncResourceVariables, components_PostServiceUnlinkResourceError as PostServiceUnlinkResourceError, components_PostServiceUnlinkResourcePathParams as PostServiceUnlinkResourcePathParams, components_PostServiceUnlinkResourceVariables as PostServiceUnlinkResourceVariables, components_PostSmartdoorAdvancedConfigResourceError as PostSmartdoorAdvancedConfigResourceError, components_PostSmartdoorAdvancedConfigResourcePathParams as PostSmartdoorAdvancedConfigResourcePathParams, components_PostSmartdoorAdvancedConfigResourceVariables as PostSmartdoorAdvancedConfigResourceVariables, components_PostSmartlockActionAdvancedResourceError as PostSmartlockActionAdvancedResourceError, components_PostSmartlockActionAdvancedResourcePathParams as PostSmartlockActionAdvancedResourcePathParams, components_PostSmartlockActionAdvancedResourceVariables as PostSmartlockActionAdvancedResourceVariables, components_PostSmartlockActionResourceError as PostSmartlockActionResourceError, components_PostSmartlockActionResourcePathParams as PostSmartlockActionResourcePathParams, components_PostSmartlockActionResourceVariables as PostSmartlockActionResourceVariables, components_PostSmartlockAdminPinResourceError as PostSmartlockAdminPinResourceError, components_PostSmartlockAdminPinResourcePathParams as PostSmartlockAdminPinResourcePathParams, components_PostSmartlockAdminPinResourceVariables as PostSmartlockAdminPinResourceVariables, components_PostSmartlockAdvancedConfigResourceError as PostSmartlockAdvancedConfigResourceError, components_PostSmartlockAdvancedConfigResourcePathParams as PostSmartlockAdvancedConfigResourcePathParams, components_PostSmartlockAdvancedConfigResourceVariables as PostSmartlockAdvancedConfigResourceVariables, components_PostSmartlockAuthResourceError as PostSmartlockAuthResourceError, components_PostSmartlockAuthResourcePathParams as PostSmartlockAuthResourcePathParams, components_PostSmartlockAuthResourceVariables as PostSmartlockAuthResourceVariables, components_PostSmartlockAuthWithSharedKeyResourceError as PostSmartlockAuthWithSharedKeyResourceError, components_PostSmartlockAuthWithSharedKeyResourcePathParams as PostSmartlockAuthWithSharedKeyResourcePathParams, components_PostSmartlockAuthWithSharedKeyResourceResponse as PostSmartlockAuthWithSharedKeyResourceResponse, components_PostSmartlockAuthWithSharedKeyResourceVariables as PostSmartlockAuthWithSharedKeyResourceVariables, components_PostSmartlockBulkWebConfigResourceError as PostSmartlockBulkWebConfigResourceError, components_PostSmartlockBulkWebConfigResourceVariables as PostSmartlockBulkWebConfigResourceVariables, components_PostSmartlockConfigResourceError as PostSmartlockConfigResourceError, components_PostSmartlockConfigResourcePathParams as PostSmartlockConfigResourcePathParams, components_PostSmartlockConfigResourceVariables as PostSmartlockConfigResourceVariables, components_PostSmartlockLockActionAdvancedResourceError as PostSmartlockLockActionAdvancedResourceError, components_PostSmartlockLockActionAdvancedResourcePathParams as PostSmartlockLockActionAdvancedResourcePathParams, components_PostSmartlockLockActionAdvancedResourceVariables as PostSmartlockLockActionAdvancedResourceVariables, components_PostSmartlockLockActionResourceError as PostSmartlockLockActionResourceError, components_PostSmartlockLockActionResourcePathParams as PostSmartlockLockActionResourcePathParams, components_PostSmartlockLockActionResourceVariables as PostSmartlockLockActionResourceVariables, components_PostSmartlockOpenerAdvancedConfigResourceError as PostSmartlockOpenerAdvancedConfigResourceError, components_PostSmartlockOpenerAdvancedConfigResourcePathParams as PostSmartlockOpenerAdvancedConfigResourcePathParams, components_PostSmartlockOpenerAdvancedConfigResourceVariables as PostSmartlockOpenerAdvancedConfigResourceVariables, components_PostSmartlockResourceError as PostSmartlockResourceError, components_PostSmartlockResourcePathParams as PostSmartlockResourcePathParams, components_PostSmartlockResourceVariables as PostSmartlockResourceVariables, components_PostSmartlockSyncResourceError as PostSmartlockSyncResourceError, components_PostSmartlockSyncResourcePathParams as PostSmartlockSyncResourcePathParams, components_PostSmartlockSyncResourceVariables as PostSmartlockSyncResourceVariables, components_PostSmartlockUnlockActionAdvancedResourceError as PostSmartlockUnlockActionAdvancedResourceError, components_PostSmartlockUnlockActionAdvancedResourcePathParams as PostSmartlockUnlockActionAdvancedResourcePathParams, components_PostSmartlockUnlockActionAdvancedResourceVariables as PostSmartlockUnlockActionAdvancedResourceVariables, components_PostSmartlockUnlockActionResourceError as PostSmartlockUnlockActionResourceError, components_PostSmartlockUnlockActionResourcePathParams as PostSmartlockUnlockActionResourcePathParams, components_PostSmartlockUnlockActionResourceVariables as PostSmartlockUnlockActionResourceVariables, components_PostSmartlockWebConfigResourceError as PostSmartlockWebConfigResourceError, components_PostSmartlockWebConfigResourcePathParams as PostSmartlockWebConfigResourcePathParams, components_PostSmartlockWebConfigResourceVariables as PostSmartlockWebConfigResourceVariables, components_PostSmartlocksAuthsResourceError as PostSmartlocksAuthsResourceError, components_PostSmartlocksAuthsResourceRequestBody as PostSmartlocksAuthsResourceRequestBody, components_PostSmartlocksAuthsResourceVariables as PostSmartlocksAuthsResourceVariables, components_PutAccountOtpResourceError as PutAccountOtpResourceError, components_PutAccountOtpResourceVariables as PutAccountOtpResourceVariables, components_PutAccountSettingResourceError as PutAccountSettingResourceError, components_PutAccountSettingResourceVariables as PutAccountSettingResourceVariables, components_PutAccountSubsResourceError as PutAccountSubsResourceError, components_PutAccountSubsResourceVariables as PutAccountSubsResourceVariables, components_PutAccountUsersResourceError as PutAccountUsersResourceError, components_PutAccountUsersResourceVariables as PutAccountUsersResourceVariables, components_PutAddressUnitsResourceError as PutAddressUnitsResourceError, components_PutAddressUnitsResourcePathParams as PutAddressUnitsResourcePathParams, components_PutAddressUnitsResourceVariables as PutAddressUnitsResourceVariables, components_PutAddressesResourceError as PutAddressesResourceError, components_PutAddressesResourceVariables as PutAddressesResourceVariables, components_PutApiKeyAdvancedResourceError as PutApiKeyAdvancedResourceError, components_PutApiKeyAdvancedResourcePathParams as PutApiKeyAdvancedResourcePathParams, components_PutApiKeyAdvancedResourceVariables as PutApiKeyAdvancedResourceVariables, components_PutApiKeyTokensResourceError as PutApiKeyTokensResourceError, components_PutApiKeyTokensResourcePathParams as PutApiKeyTokensResourcePathParams, components_PutApiKeyTokensResourceVariables as PutApiKeyTokensResourceVariables, components_PutApiKeysResourceError as PutApiKeysResourceError, components_PutApiKeysResourceVariables as PutApiKeysResourceVariables, components_PutDecentralWebhooksResourceError as PutDecentralWebhooksResourceError, components_PutDecentralWebhooksResourceVariables as PutDecentralWebhooksResourceVariables, components_PutNotificationsResourceError as PutNotificationsResourceError, components_PutNotificationsResourceVariables as PutNotificationsResourceVariables, components_PutSmartlockAuthsAdvancedResourceError as PutSmartlockAuthsAdvancedResourceError, components_PutSmartlockAuthsAdvancedResourceVariables as PutSmartlockAuthsAdvancedResourceVariables, components_PutSmartlockAuthsResourceError as PutSmartlockAuthsResourceError, components_PutSmartlockAuthsResourcePathParams as PutSmartlockAuthsResourcePathParams, components_PutSmartlockAuthsResourceVariables as PutSmartlockAuthsResourceVariables, components_PutSmartlocksAuthsResourceError as PutSmartlocksAuthsResourceError, components_PutSmartlocksAuthsResourceVariables as PutSmartlocksAuthsResourceVariables };
|
|
5413
5472
|
}
|
|
5414
5473
|
|
|
5415
5474
|
declare const operationsByPath: {
|
|
@@ -5492,6 +5551,7 @@ declare const operationsByPath: {
|
|
|
5492
5551
|
"PUT /smartlock/auth": (variables: PutSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5493
5552
|
"DELETE /smartlock/auth": (variables: DeleteSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5494
5553
|
"PUT /smartlock/auth/advanced": (variables: PutSmartlockAuthsAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5554
|
+
"GET /smartlock/auth/paged": (variables: GetSmartlocksAuthsPaginatedResourceVariables, signal?: AbortSignal) => Promise<PaginatedResponse>;
|
|
5495
5555
|
"GET /smartlock/log": (variables: GetSmartlocksLogsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlocksLogsResourceResponse>;
|
|
5496
5556
|
"GET /smartlock/{smartlockId}": (variables: GetSmartlockResourceVariables, signal?: AbortSignal) => Promise<Smartlock>;
|
|
5497
5557
|
"POST /smartlock/{smartlockId}": (variables: PostSmartlockResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -5616,6 +5676,7 @@ declare class NukiApi {
|
|
|
5616
5676
|
"PUT /smartlock/auth": (variables: PutSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5617
5677
|
"DELETE /smartlock/auth": (variables: DeleteSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5618
5678
|
"PUT /smartlock/auth/advanced": (variables: PutSmartlockAuthsAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5679
|
+
"GET /smartlock/auth/paged": (variables: GetSmartlocksAuthsPaginatedResourceVariables, signal?: AbortSignal) => Promise<PaginatedResponse>;
|
|
5619
5680
|
"GET /smartlock/log": (variables: GetSmartlocksLogsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlocksLogsResourceResponse>;
|
|
5620
5681
|
"GET /smartlock/{smartlockId}": (variables: GetSmartlockResourceVariables, signal?: AbortSignal) => Promise<Smartlock>;
|
|
5621
5682
|
"POST /smartlock/{smartlockId}": (variables: PostSmartlockResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -5643,4 +5704,5 @@ declare class NukiApi {
|
|
|
5643
5704
|
}[Endpoint]>>;
|
|
5644
5705
|
}
|
|
5645
5706
|
|
|
5646
|
-
export { components as Components, NukiApi,
|
|
5707
|
+
export { components as Components, NukiApi, requestBodies as RequestBodies, schemas as Schemas };
|
|
5708
|
+
export type { NukiApiOptions };
|