nuki-api-js 0.1.0 → 0.1.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 +3 -3
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +166 -195
- package/dist/index.d.cts +237 -237
- package/dist/index.d.mts +237 -237
- package/dist/index.d.ts +237 -237
- package/dist/index.mjs +166 -195
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -68,7 +68,7 @@ type Account = {
|
|
|
68
68
|
/**
|
|
69
69
|
* subscription type of the account (b2b)
|
|
70
70
|
*/
|
|
71
|
-
shsSubscriptionType?:
|
|
71
|
+
shsSubscriptionType?: "BUSINESS" | "STANDARD" | "BUSINESS_PLUS" | "API_ONLY";
|
|
72
72
|
b2bActive?: boolean;
|
|
73
73
|
apiTermsOfUse?: TermsOfUse;
|
|
74
74
|
};
|
|
@@ -92,7 +92,7 @@ type AccountDescent = {
|
|
|
92
92
|
/**
|
|
93
93
|
* The account origin source
|
|
94
94
|
*/
|
|
95
|
-
origin:
|
|
95
|
+
origin: "GOOGLE" | "APPLE";
|
|
96
96
|
};
|
|
97
97
|
type AccountProfile = {
|
|
98
98
|
/**
|
|
@@ -130,7 +130,7 @@ type AccountIntegration = {
|
|
|
130
130
|
/**
|
|
131
131
|
* If the integration/device is an legacy or from the new oauth implementation
|
|
132
132
|
*/
|
|
133
|
-
version:
|
|
133
|
+
version: "LEGACY" | "HYDRA";
|
|
134
134
|
/**
|
|
135
135
|
* Enum key identifying the integration/device, values are e.g. ALEXA, IOS, NUKI_WEB, API_TOKEN etc
|
|
136
136
|
*/
|
|
@@ -221,11 +221,11 @@ type AccountSettingWeb = {
|
|
|
221
221
|
/**
|
|
222
222
|
* The initial view type of the device page
|
|
223
223
|
*/
|
|
224
|
-
deviceViewType?:
|
|
224
|
+
deviceViewType?: "LIST" | "TILE";
|
|
225
225
|
/**
|
|
226
226
|
* The initial sort type of the device page
|
|
227
227
|
*/
|
|
228
|
-
deviceSortType?:
|
|
228
|
+
deviceSortType?: "FAVOURITES_FIRST" | "NAME_ASC" | "NAME_DESC" | "LAST_ADDED_DESC";
|
|
229
229
|
/**
|
|
230
230
|
* If true, Nuki Club info is dismissed and no banner is shown
|
|
231
231
|
*/
|
|
@@ -398,7 +398,7 @@ type AccountUserCreate = {
|
|
|
398
398
|
/**
|
|
399
399
|
* The language code
|
|
400
400
|
*/
|
|
401
|
-
language?:
|
|
401
|
+
language?: "en" | "de" | "es" | "fr" | "it" | "nl" | "cs" | "sk";
|
|
402
402
|
};
|
|
403
403
|
type AccountUserUpdate = {
|
|
404
404
|
/**
|
|
@@ -414,7 +414,7 @@ type AccountUserUpdate = {
|
|
|
414
414
|
/**
|
|
415
415
|
* The new language code
|
|
416
416
|
*/
|
|
417
|
-
language?:
|
|
417
|
+
language?: "en" | "de" | "es" | "fr" | "it" | "nl" | "cs" | "sk";
|
|
418
418
|
};
|
|
419
419
|
type Address = {
|
|
420
420
|
/**
|
|
@@ -440,7 +440,7 @@ type Address = {
|
|
|
440
440
|
/**
|
|
441
441
|
* The optional service id if the address is from an partner service
|
|
442
442
|
*/
|
|
443
|
-
serviceId?:
|
|
443
|
+
serviceId?: "airbnb" | "bookingsync";
|
|
444
444
|
/**
|
|
445
445
|
* The timezone
|
|
446
446
|
*/
|
|
@@ -530,11 +530,11 @@ type AddressReservation = {
|
|
|
530
530
|
/**
|
|
531
531
|
* The state
|
|
532
532
|
*/
|
|
533
|
-
state:
|
|
533
|
+
state: "canceled" | "accepted";
|
|
534
534
|
/**
|
|
535
535
|
* The optional service id if the address is from an partner service
|
|
536
536
|
*/
|
|
537
|
-
serviceId?:
|
|
537
|
+
serviceId?: "airbnb" | "bookingsync";
|
|
538
538
|
/**
|
|
539
539
|
* The reference (booking code)
|
|
540
540
|
*/
|
|
@@ -609,7 +609,7 @@ type AddressToken = {
|
|
|
609
609
|
/**
|
|
610
610
|
* The redeem result
|
|
611
611
|
*/
|
|
612
|
-
redeemResult?:
|
|
612
|
+
redeemResult?: "ok" | "failed";
|
|
613
613
|
};
|
|
614
614
|
type AddressTokenInfo = {
|
|
615
615
|
/**
|
|
@@ -687,7 +687,7 @@ type AddressUnitResponse = {
|
|
|
687
687
|
/**
|
|
688
688
|
* The redeem result
|
|
689
689
|
*/
|
|
690
|
-
redeemResult?:
|
|
690
|
+
redeemResult?: "ok" | "failed";
|
|
691
691
|
};
|
|
692
692
|
type AddressUpdate = {
|
|
693
693
|
/**
|
|
@@ -721,11 +721,11 @@ type AdvancedApiKey = {
|
|
|
721
721
|
/**
|
|
722
722
|
* The application type
|
|
723
723
|
*/
|
|
724
|
-
type:
|
|
724
|
+
type: "ONLY_SECRET" | "SHORT_RENTAL" | "HEALTHCARE" | "SMART_HOME" | "OTHER";
|
|
725
725
|
/**
|
|
726
726
|
* The status of the webhook posting automation
|
|
727
727
|
*/
|
|
728
|
-
webhookStatus?:
|
|
728
|
+
webhookStatus?: "ACTIVE" | "DEACTIVATED";
|
|
729
729
|
/**
|
|
730
730
|
* A website where we can find more information on the company and its business model
|
|
731
731
|
*/
|
|
@@ -743,7 +743,7 @@ type AdvancedApiKey = {
|
|
|
743
743
|
*
|
|
744
744
|
* @uniqueItems true
|
|
745
745
|
*/
|
|
746
|
-
webhookFeatures: (
|
|
746
|
+
webhookFeatures: ("DEVICE_STATUS" | "DEVICE_MASTERDATA" | "DEVICE_CONFIG" | "DEVICE_LOGS" | "DEVICE_AUTHS" | "ACCOUNT_USER")[];
|
|
747
747
|
/**
|
|
748
748
|
* Whether the advanced API key is restricted
|
|
749
749
|
*/
|
|
@@ -755,7 +755,7 @@ type AdvancedApiKey = {
|
|
|
755
755
|
/**
|
|
756
756
|
* The application status
|
|
757
757
|
*/
|
|
758
|
-
status:
|
|
758
|
+
status: "INACTIVE" | "APPLIED" | "TESTING" | "ACTIVE";
|
|
759
759
|
/**
|
|
760
760
|
* The creation date
|
|
761
761
|
*
|
|
@@ -785,11 +785,11 @@ type AdvancedApiKeyCreate = {
|
|
|
785
785
|
/**
|
|
786
786
|
* The application type
|
|
787
787
|
*/
|
|
788
|
-
type:
|
|
788
|
+
type: "ONLY_SECRET" | "SHORT_RENTAL" | "HEALTHCARE" | "SMART_HOME" | "OTHER";
|
|
789
789
|
/**
|
|
790
790
|
* The status of the webhook posting automation
|
|
791
791
|
*/
|
|
792
|
-
webhookStatus?:
|
|
792
|
+
webhookStatus?: "ACTIVE" | "DEACTIVATED";
|
|
793
793
|
/**
|
|
794
794
|
* A website where we can find more information on the company and its business model
|
|
795
795
|
*/
|
|
@@ -807,7 +807,7 @@ type AdvancedApiKeyCreate = {
|
|
|
807
807
|
*
|
|
808
808
|
* @uniqueItems true
|
|
809
809
|
*/
|
|
810
|
-
webhookFeatures: (
|
|
810
|
+
webhookFeatures: ("DEVICE_STATUS" | "DEVICE_MASTERDATA" | "DEVICE_CONFIG" | "DEVICE_LOGS" | "DEVICE_AUTHS" | "ACCOUNT_USER")[];
|
|
811
811
|
/**
|
|
812
812
|
* Whether the advanced API key is restricted
|
|
813
813
|
*/
|
|
@@ -823,7 +823,7 @@ type AdvancedApiKeyUpdate = {
|
|
|
823
823
|
*
|
|
824
824
|
* @uniqueItems true
|
|
825
825
|
*/
|
|
826
|
-
webhookFeatures: (
|
|
826
|
+
webhookFeatures: ("DEVICE_STATUS" | "DEVICE_MASTERDATA" | "DEVICE_CONFIG" | "DEVICE_LOGS" | "DEVICE_AUTHS" | "ACCOUNT_USER")[];
|
|
827
827
|
};
|
|
828
828
|
type AdvancedConfirmationResponse = {
|
|
829
829
|
/**
|
|
@@ -871,13 +871,13 @@ type ApiKeyAdvanced = {
|
|
|
871
871
|
name?: string;
|
|
872
872
|
country?: string;
|
|
873
873
|
description?: string;
|
|
874
|
-
type?:
|
|
874
|
+
type?: "ONLY_SECRET" | "SHORT_RENTAL" | "HEALTHCARE" | "SMART_HOME" | "OTHER";
|
|
875
875
|
url?: string;
|
|
876
876
|
email?: string;
|
|
877
877
|
/**
|
|
878
878
|
* @uniqueItems true
|
|
879
879
|
*/
|
|
880
|
-
webhookFeatures?: (
|
|
880
|
+
webhookFeatures?: ("DEVICE_STATUS" | "DEVICE_MASTERDATA" | "DEVICE_CONFIG" | "DEVICE_LOGS" | "DEVICE_AUTHS" | "ACCOUNT_USER")[];
|
|
881
881
|
webhookUrl?: string;
|
|
882
882
|
/**
|
|
883
883
|
* @format int32
|
|
@@ -896,8 +896,8 @@ type ApiKeyAdvanced = {
|
|
|
896
896
|
*/
|
|
897
897
|
lastPostDuration?: number;
|
|
898
898
|
lastPostSuccesful?: boolean;
|
|
899
|
-
status?:
|
|
900
|
-
webhookStatus?:
|
|
899
|
+
status?: "INACTIVE" | "APPLIED" | "TESTING" | "ACTIVE";
|
|
900
|
+
webhookStatus?: "ACTIVE" | "DEACTIVATED";
|
|
901
901
|
/**
|
|
902
902
|
* @format date-time
|
|
903
903
|
*/
|
|
@@ -1227,7 +1227,7 @@ type DecentralWebhook = {
|
|
|
1227
1227
|
*
|
|
1228
1228
|
* @uniqueItems true
|
|
1229
1229
|
*/
|
|
1230
|
-
webhookFeatures: (
|
|
1230
|
+
webhookFeatures: ("DEVICE_STATUS" | "DEVICE_MASTERDATA" | "DEVICE_CONFIG" | "DEVICE_LOGS" | "DEVICE_AUTHS" | "ACCOUNT_USER")[];
|
|
1231
1231
|
};
|
|
1232
1232
|
type DecoderService = {
|
|
1233
1233
|
context?: Context;
|
|
@@ -1437,7 +1437,7 @@ type MyAccount = {
|
|
|
1437
1437
|
/**
|
|
1438
1438
|
* subscription type of the account (b2b)
|
|
1439
1439
|
*/
|
|
1440
|
-
shsSubscriptionType?:
|
|
1440
|
+
shsSubscriptionType?: "BUSINESS" | "STANDARD" | "BUSINESS_PLUS" | "API_ONLY";
|
|
1441
1441
|
b2bActive?: boolean;
|
|
1442
1442
|
apiTermsOfUse?: TermsOfUse;
|
|
1443
1443
|
};
|
|
@@ -1922,7 +1922,7 @@ type Response$1 = {
|
|
|
1922
1922
|
/**
|
|
1923
1923
|
* @uniqueItems true
|
|
1924
1924
|
*/
|
|
1925
|
-
dimensions?: (
|
|
1925
|
+
dimensions?: ("AUTHORIZATION" | "CHARACTER_SET" | "CLIENT_ADDRESS" | "CLIENT_AGENT" | "UNSPECIFIED" | "ENCODING" | "LANGUAGE" | "MEDIA_TYPE" | "TIME" | "ORIGIN")[];
|
|
1926
1926
|
locationRef?: Reference;
|
|
1927
1927
|
proxyChallengeRequests?: ChallengeRequest[];
|
|
1928
1928
|
request?: Request;
|
|
@@ -2000,9 +2000,9 @@ type Service = {
|
|
|
2000
2000
|
stopped?: boolean;
|
|
2001
2001
|
};
|
|
2002
2002
|
type ShsSubscription = {
|
|
2003
|
-
type?:
|
|
2004
|
-
state?:
|
|
2005
|
-
shsSubscriptionType?:
|
|
2003
|
+
type?: "B2C" | "B2B";
|
|
2004
|
+
state?: "ACTIVE" | "INACTIVE" | "CANCELLED" | "EXPIRED" | "ON_HOLD" | "PENDING" | "PENDING_CANCEL";
|
|
2005
|
+
shsSubscriptionType?: "BUSINESS" | "STANDARD" | "BUSINESS_PLUS" | "API_ONLY";
|
|
2006
2006
|
/**
|
|
2007
2007
|
* @format date-time
|
|
2008
2008
|
*/
|
|
@@ -3376,7 +3376,7 @@ type TaskService = {
|
|
|
3376
3376
|
stopped?: boolean;
|
|
3377
3377
|
};
|
|
3378
3378
|
type TermsOfUse = {
|
|
3379
|
-
state?:
|
|
3379
|
+
state?: "Accepted" | "Inactive";
|
|
3380
3380
|
/**
|
|
3381
3381
|
* @format date-time
|
|
3382
3382
|
*/
|
|
@@ -5413,109 +5413,109 @@ declare namespace components {
|
|
|
5413
5413
|
}
|
|
5414
5414
|
|
|
5415
5415
|
declare const operationsByPath: {
|
|
5416
|
-
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
|
|
5423
|
-
|
|
5424
|
-
|
|
5425
|
-
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
|
|
5431
|
-
|
|
5432
|
-
|
|
5433
|
-
|
|
5434
|
-
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
|
|
5439
|
-
|
|
5440
|
-
|
|
5441
|
-
|
|
5442
|
-
|
|
5443
|
-
|
|
5444
|
-
|
|
5445
|
-
|
|
5446
|
-
|
|
5447
|
-
|
|
5448
|
-
|
|
5449
|
-
|
|
5450
|
-
|
|
5451
|
-
|
|
5452
|
-
|
|
5453
|
-
|
|
5454
|
-
|
|
5455
|
-
|
|
5456
|
-
|
|
5457
|
-
|
|
5458
|
-
|
|
5459
|
-
|
|
5460
|
-
|
|
5461
|
-
|
|
5462
|
-
|
|
5463
|
-
|
|
5464
|
-
|
|
5465
|
-
|
|
5466
|
-
|
|
5467
|
-
|
|
5468
|
-
|
|
5469
|
-
|
|
5470
|
-
|
|
5471
|
-
|
|
5472
|
-
|
|
5473
|
-
|
|
5474
|
-
|
|
5475
|
-
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
|
|
5488
|
-
|
|
5489
|
-
|
|
5490
|
-
|
|
5491
|
-
|
|
5492
|
-
|
|
5493
|
-
|
|
5494
|
-
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5498
|
-
|
|
5499
|
-
|
|
5500
|
-
|
|
5501
|
-
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
5512
|
-
|
|
5513
|
-
|
|
5514
|
-
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5416
|
+
"GET /account": (variables: GetAccountsResourceVariables, signal?: AbortSignal) => Promise<MyAccount>;
|
|
5417
|
+
"POST /account": (variables: PostAccountsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5418
|
+
"DELETE /account": (variables: DeleteAccountsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5419
|
+
"POST /account/email/change": (variables: PostAccountEmailChangeResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5420
|
+
"POST /account/email/verify": (variables: PostAccountEmailVerifyResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5421
|
+
"GET /account/integration": (variables: GetAccountIntegrationsResourceVariables, signal?: AbortSignal) => Promise<GetAccountIntegrationsResourceResponse>;
|
|
5422
|
+
"DELETE /account/integration": (variables: DeleteAccountIntegrationsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5423
|
+
"POST /account/otp": (variables: PostAccountOtpResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5424
|
+
"PUT /account/otp": (variables: PutAccountOtpResourceVariables, signal?: AbortSignal) => Promise<string>;
|
|
5425
|
+
"DELETE /account/otp": (variables: DeleteAccountOtpResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5426
|
+
"POST /account/password/reset": (variables: PostAccountPasswordResetResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5427
|
+
"GET /account/setting": (variables: GetAccountSettingResourceVariables, signal?: AbortSignal) => Promise<AccountSetting>;
|
|
5428
|
+
"PUT /account/setting": (variables: PutAccountSettingResourceVariables, signal?: AbortSignal) => Promise<AccountSetting>;
|
|
5429
|
+
"DELETE /account/setting": (variables: DeleteAccountSettingResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5430
|
+
"GET /account/sub": (variables: GetAccountSubsResourceVariables, signal?: AbortSignal) => Promise<Account>;
|
|
5431
|
+
"PUT /account/sub": (variables: PutAccountSubsResourceVariables, signal?: AbortSignal) => Promise<MyAccount>;
|
|
5432
|
+
"GET /account/sub/{accountId}": (variables: GetAccountSubResourceVariables, signal?: AbortSignal) => Promise<Account>;
|
|
5433
|
+
"POST /account/sub/{accountId}": (variables: PostAccountSubResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5434
|
+
"DELETE /account/sub/{accountId}": (variables: DeleteAccountSubResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5435
|
+
"GET /account/user": (variables: GetAccountUsersResourceVariables, signal?: AbortSignal) => Promise<GetAccountUsersResourceResponse>;
|
|
5436
|
+
"PUT /account/user": (variables: PutAccountUsersResourceVariables, signal?: AbortSignal) => Promise<AccountUser>;
|
|
5437
|
+
"GET /account/user/{accountUserId}": (variables: GetAccountUserResourceVariables, signal?: AbortSignal) => Promise<AccountUser>;
|
|
5438
|
+
"POST /account/user/{accountUserId}": (variables: PostAccountUserResourceVariables, signal?: AbortSignal) => Promise<AccountUser>;
|
|
5439
|
+
"DELETE /account/user/{accountUserId}": (variables: DeleteAccountUserResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5440
|
+
"GET /address": (variables: GetAddressesResourceVariables, signal?: AbortSignal) => Promise<GetAddressesResourceResponse>;
|
|
5441
|
+
"PUT /address": (variables: PutAddressesResourceVariables, signal?: AbortSignal) => Promise<Address>;
|
|
5442
|
+
"GET /address/token/{id}": (variables: GetAddressTokenResourceVariables, signal?: AbortSignal) => Promise<AddressTokenInfo>;
|
|
5443
|
+
"GET /address/token/{id}/redeem": (variables: GetAddressTokenRedeemResourceVariables, signal?: AbortSignal) => Promise<AddressToken>;
|
|
5444
|
+
"POST /address/token/{id}/redeem": (variables: PostAddressTokenRedeemResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5445
|
+
"POST /address/{addressId}": (variables: PostAddressResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5446
|
+
"DELETE /address/{addressId}": (variables: DeleteAddressResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5447
|
+
"GET /address/{addressId}/reservation": (variables: GetAddressReservationsResourceVariables, signal?: AbortSignal) => Promise<GetAddressReservationsResourceResponse>;
|
|
5448
|
+
"POST /address/{addressId}/reservation/{id}/issue": (variables: PostAddressReservationIssueResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5449
|
+
"POST /address/{addressId}/reservation/{id}/revoke": (variables: PostAddressReservationRevokeResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5450
|
+
"POST /address/{addressId}/reservation/{id}/update/accesstimes": (variables: PostReservationAccessTimesUpdateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5451
|
+
"GET /address/{addressId}/token": (variables: GetAddressTokensResourceVariables, signal?: AbortSignal) => Promise<GetAddressTokensResourceResponse>;
|
|
5452
|
+
"GET /address/{addressId}/unit": (variables: GetAddressUnitsResourceVariables, signal?: AbortSignal) => Promise<GetAddressUnitsResourceResponse>;
|
|
5453
|
+
"PUT /address/{addressId}/unit": (variables: PutAddressUnitsResourceVariables, signal?: AbortSignal) => Promise<AddressUnitResponse>;
|
|
5454
|
+
"DELETE /address/{addressId}/unit": (variables: DeleteAddressUnitsResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5455
|
+
"DELETE /address/{addressId}/unit/{id}": (variables: DeleteAddressUnitResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5456
|
+
"GET /api/decentralWebhook": (variables: GetDecentralWebhooksResourceVariables, signal?: AbortSignal) => Promise<GetDecentralWebhooksResourceResponse>;
|
|
5457
|
+
"PUT /api/decentralWebhook": (variables: PutDecentralWebhooksResourceVariables, signal?: AbortSignal) => Promise<DecentralWebhook>;
|
|
5458
|
+
"DELETE /api/decentralWebhook/{id}": (variables: DeleteDecentralWebhookResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5459
|
+
"GET /api/key": (variables: GetApiKeysResourceVariables, signal?: AbortSignal) => Promise<GetApiKeysResourceResponse>;
|
|
5460
|
+
"PUT /api/key": (variables: PutApiKeysResourceVariables, signal?: AbortSignal) => Promise<ApiKey>;
|
|
5461
|
+
"POST /api/key/{apiKeyId}": (variables: PostApiKeyResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5462
|
+
"DELETE /api/key/{apiKeyId}": (variables: DeleteApiKeyResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5463
|
+
"GET /api/key/{apiKeyId}/advanced": (variables: GetApiKeyAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedApiKey>;
|
|
5464
|
+
"POST /api/key/{apiKeyId}/advanced": (variables: PostApiKeyAdvancedResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5465
|
+
"PUT /api/key/{apiKeyId}/advanced": (variables: PutApiKeyAdvancedResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5466
|
+
"DELETE /api/key/{apiKeyId}/advanced": (variables: DeleteApiKeyAdvancedResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5467
|
+
"POST /api/key/{apiKeyId}/advanced/reactivate": (variables: PostApiKeyAdvancedReactivateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5468
|
+
"GET /api/key/{apiKeyId}/token": (variables: GetApiKeyTokensResourceVariables, signal?: AbortSignal) => Promise<GetApiKeyTokensResourceResponse>;
|
|
5469
|
+
"PUT /api/key/{apiKeyId}/token": (variables: PutApiKeyTokensResourceVariables, signal?: AbortSignal) => Promise<ApiKeyToken>;
|
|
5470
|
+
"POST /api/key/{apiKeyId}/token/{id}": (variables: PostApiKeyTokenResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5471
|
+
"DELETE /api/key/{apiKeyId}/token/{id}": (variables: DeleteApiKeyTokenResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5472
|
+
"GET /api/key/{apiKeyId}/webhook/logs": (variables: GetWebhookLogsResourceVariables, signal?: AbortSignal) => Promise<GetWebhookLogsResourceResponse>;
|
|
5473
|
+
"POST /bulk-web-config": (variables: PostSmartlockBulkWebConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5474
|
+
"GET /company": (variables: GetCompaniesResourceVariables, signal?: AbortSignal) => Promise<GetCompaniesResourceResponse>;
|
|
5475
|
+
"GET /notification": (variables: GetNotificationsResourceVariables, signal?: AbortSignal) => Promise<GetNotificationsResourceResponse>;
|
|
5476
|
+
"PUT /notification": (variables: PutNotificationsResourceVariables, signal?: AbortSignal) => Promise<Notification>;
|
|
5477
|
+
"GET /notification/{notificationId}": (variables: GetNotificationResourceVariables, signal?: AbortSignal) => Promise<Notification>;
|
|
5478
|
+
"POST /notification/{notificationId}": (variables: PostNotificationResourceVariables, signal?: AbortSignal) => Promise<Notification>;
|
|
5479
|
+
"DELETE /notification/{notificationId}": (variables: DeleteNotificationResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5480
|
+
"GET /opener/brand": (variables: GetOpenerBrandsResourceVariables, signal?: AbortSignal) => Promise<GetOpenerBrandsResourceResponse>;
|
|
5481
|
+
"GET /opener/brand/{brandId}": (variables: GetOpenerBrandResourceVariables, signal?: AbortSignal) => Promise<OpenerIntercomBrand>;
|
|
5482
|
+
"GET /opener/intercom": (variables: GetOpenerIntercomsResourceVariables, signal?: AbortSignal) => Promise<GetOpenerIntercomsResourceResponse>;
|
|
5483
|
+
"GET /opener/intercom/{intercomId}": (variables: GetOpenerIntercomResourceVariables, signal?: AbortSignal) => Promise<OpenerIntercomModel>;
|
|
5484
|
+
"GET /service": (variables: GetServicesResourceVariables, signal?: AbortSignal) => Promise<GetServicesResourceResponse>;
|
|
5485
|
+
"GET /service/{serviceId}": (variables: GetServiceResourceVariables, signal?: AbortSignal) => Promise<Service>;
|
|
5486
|
+
"POST /service/{serviceId}/link": (variables: PostServiceLinkResourceVariables, signal?: AbortSignal) => Promise<string>;
|
|
5487
|
+
"POST /service/{serviceId}/sync": (variables: PostServiceSyncResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5488
|
+
"POST /service/{serviceId}/unlink": (variables: PostServiceUnlinkResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5489
|
+
"GET /smartlock": (variables: GetSmartlocksResourceVariables, signal?: AbortSignal) => Promise<GetSmartlocksResourceResponse>;
|
|
5490
|
+
"GET /smartlock/auth": (variables: GetSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlocksAuthsResourceResponse>;
|
|
5491
|
+
"POST /smartlock/auth": (variables: PostSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5492
|
+
"PUT /smartlock/auth": (variables: PutSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5493
|
+
"DELETE /smartlock/auth": (variables: DeleteSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5494
|
+
"PUT /smartlock/auth/advanced": (variables: PutSmartlockAuthsAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5495
|
+
"GET /smartlock/log": (variables: GetSmartlocksLogsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlocksLogsResourceResponse>;
|
|
5496
|
+
"GET /smartlock/{smartlockId}": (variables: GetSmartlockResourceVariables, signal?: AbortSignal) => Promise<Smartlock>;
|
|
5497
|
+
"POST /smartlock/{smartlockId}": (variables: PostSmartlockResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5498
|
+
"DELETE /smartlock/{smartlockId}": (variables: DeleteSmartlockResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5499
|
+
"POST /smartlock/{smartlockId}/action": (variables: PostSmartlockActionResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5500
|
+
"POST /smartlock/{smartlockId}/action/advanced": (variables: PostSmartlockActionAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5501
|
+
"POST /smartlock/{smartlockId}/action/lock": (variables: PostSmartlockLockActionResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5502
|
+
"POST /smartlock/{smartlockId}/action/lock/advanced": (variables: PostSmartlockLockActionAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5503
|
+
"POST /smartlock/{smartlockId}/action/unlock": (variables: PostSmartlockUnlockActionResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5504
|
+
"POST /smartlock/{smartlockId}/action/unlock/advanced": (variables: PostSmartlockUnlockActionAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5505
|
+
"POST /smartlock/{smartlockId}/admin/pin": (variables: PostSmartlockAdminPinResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5506
|
+
"POST /smartlock/{smartlockId}/advanced/config": (variables: PostSmartlockAdvancedConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5507
|
+
"POST /smartlock/{smartlockId}/advanced/openerconfig": (variables: PostSmartlockOpenerAdvancedConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5508
|
+
"POST /smartlock/{smartlockId}/advanced/smartdoorconfig": (variables: PostSmartdoorAdvancedConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5509
|
+
"GET /smartlock/{smartlockId}/auth": (variables: GetSmartlockAuthsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlockAuthsResourceResponse>;
|
|
5510
|
+
"PUT /smartlock/{smartlockId}/auth": (variables: PutSmartlockAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5511
|
+
"POST /smartlock/{smartlockId}/auth/advanced/sharedkey": (variables: PostSmartlockAuthWithSharedKeyResourceVariables, signal?: AbortSignal) => Promise<PostSmartlockAuthWithSharedKeyResourceResponse>;
|
|
5512
|
+
"GET /smartlock/{smartlockId}/auth/{id}": (variables: GetSmartlockAuthResourceVariables, signal?: AbortSignal) => Promise<SmartlockAuth>;
|
|
5513
|
+
"POST /smartlock/{smartlockId}/auth/{id}": (variables: PostSmartlockAuthResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5514
|
+
"DELETE /smartlock/{smartlockId}/auth/{id}": (variables: DeleteSmartlockAuthResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5515
|
+
"POST /smartlock/{smartlockId}/config": (variables: PostSmartlockConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5516
|
+
"GET /smartlock/{smartlockId}/log": (variables: GetSmartlockLogsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlockLogsResourceResponse>;
|
|
5517
|
+
"POST /smartlock/{smartlockId}/sync": (variables: PostSmartlockSyncResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5518
|
+
"POST /smartlock/{smartlockId}/web/config": (variables: PostSmartlockWebConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5519
5519
|
};
|
|
5520
5520
|
|
|
5521
5521
|
type RequiredKeys<T> = {
|
|
@@ -5537,109 +5537,109 @@ declare class NukiApi {
|
|
|
5537
5537
|
constructor(options: NukiApiOptions);
|
|
5538
5538
|
get api(): ApiProxy;
|
|
5539
5539
|
request<Endpoint extends keyof typeof operationsByPath>(endpoint: Endpoint, params: RequestEndpointParams<Endpoint>): Promise<ReturnType<{
|
|
5540
|
-
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
|
|
5545
|
-
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
|
|
5550
|
-
|
|
5551
|
-
|
|
5552
|
-
|
|
5553
|
-
|
|
5554
|
-
|
|
5555
|
-
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
5587
|
-
|
|
5588
|
-
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
|
|
5593
|
-
|
|
5594
|
-
|
|
5595
|
-
|
|
5596
|
-
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
|
|
5602
|
-
|
|
5603
|
-
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
|
|
5618
|
-
|
|
5619
|
-
|
|
5620
|
-
|
|
5621
|
-
|
|
5622
|
-
|
|
5623
|
-
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
|
|
5633
|
-
|
|
5634
|
-
|
|
5635
|
-
|
|
5636
|
-
|
|
5637
|
-
|
|
5638
|
-
|
|
5639
|
-
|
|
5640
|
-
|
|
5641
|
-
|
|
5642
|
-
|
|
5540
|
+
"GET /account": (variables: GetAccountsResourceVariables, signal?: AbortSignal) => Promise<MyAccount>;
|
|
5541
|
+
"POST /account": (variables: PostAccountsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5542
|
+
"DELETE /account": (variables: DeleteAccountsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5543
|
+
"POST /account/email/change": (variables: PostAccountEmailChangeResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5544
|
+
"POST /account/email/verify": (variables: PostAccountEmailVerifyResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5545
|
+
"GET /account/integration": (variables: GetAccountIntegrationsResourceVariables, signal?: AbortSignal) => Promise<GetAccountIntegrationsResourceResponse>;
|
|
5546
|
+
"DELETE /account/integration": (variables: DeleteAccountIntegrationsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5547
|
+
"POST /account/otp": (variables: PostAccountOtpResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5548
|
+
"PUT /account/otp": (variables: PutAccountOtpResourceVariables, signal?: AbortSignal) => Promise<string>;
|
|
5549
|
+
"DELETE /account/otp": (variables: DeleteAccountOtpResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5550
|
+
"POST /account/password/reset": (variables: PostAccountPasswordResetResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5551
|
+
"GET /account/setting": (variables: GetAccountSettingResourceVariables, signal?: AbortSignal) => Promise<AccountSetting>;
|
|
5552
|
+
"PUT /account/setting": (variables: PutAccountSettingResourceVariables, signal?: AbortSignal) => Promise<AccountSetting>;
|
|
5553
|
+
"DELETE /account/setting": (variables: DeleteAccountSettingResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5554
|
+
"GET /account/sub": (variables: GetAccountSubsResourceVariables, signal?: AbortSignal) => Promise<Account>;
|
|
5555
|
+
"PUT /account/sub": (variables: PutAccountSubsResourceVariables, signal?: AbortSignal) => Promise<MyAccount>;
|
|
5556
|
+
"GET /account/sub/{accountId}": (variables: GetAccountSubResourceVariables, signal?: AbortSignal) => Promise<Account>;
|
|
5557
|
+
"POST /account/sub/{accountId}": (variables: PostAccountSubResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5558
|
+
"DELETE /account/sub/{accountId}": (variables: DeleteAccountSubResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5559
|
+
"GET /account/user": (variables: GetAccountUsersResourceVariables, signal?: AbortSignal) => Promise<GetAccountUsersResourceResponse>;
|
|
5560
|
+
"PUT /account/user": (variables: PutAccountUsersResourceVariables, signal?: AbortSignal) => Promise<AccountUser>;
|
|
5561
|
+
"GET /account/user/{accountUserId}": (variables: GetAccountUserResourceVariables, signal?: AbortSignal) => Promise<AccountUser>;
|
|
5562
|
+
"POST /account/user/{accountUserId}": (variables: PostAccountUserResourceVariables, signal?: AbortSignal) => Promise<AccountUser>;
|
|
5563
|
+
"DELETE /account/user/{accountUserId}": (variables: DeleteAccountUserResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5564
|
+
"GET /address": (variables: GetAddressesResourceVariables, signal?: AbortSignal) => Promise<GetAddressesResourceResponse>;
|
|
5565
|
+
"PUT /address": (variables: PutAddressesResourceVariables, signal?: AbortSignal) => Promise<Address>;
|
|
5566
|
+
"GET /address/token/{id}": (variables: GetAddressTokenResourceVariables, signal?: AbortSignal) => Promise<AddressTokenInfo>;
|
|
5567
|
+
"GET /address/token/{id}/redeem": (variables: GetAddressTokenRedeemResourceVariables, signal?: AbortSignal) => Promise<AddressToken>;
|
|
5568
|
+
"POST /address/token/{id}/redeem": (variables: PostAddressTokenRedeemResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5569
|
+
"POST /address/{addressId}": (variables: PostAddressResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5570
|
+
"DELETE /address/{addressId}": (variables: DeleteAddressResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5571
|
+
"GET /address/{addressId}/reservation": (variables: GetAddressReservationsResourceVariables, signal?: AbortSignal) => Promise<GetAddressReservationsResourceResponse>;
|
|
5572
|
+
"POST /address/{addressId}/reservation/{id}/issue": (variables: PostAddressReservationIssueResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5573
|
+
"POST /address/{addressId}/reservation/{id}/revoke": (variables: PostAddressReservationRevokeResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5574
|
+
"POST /address/{addressId}/reservation/{id}/update/accesstimes": (variables: PostReservationAccessTimesUpdateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5575
|
+
"GET /address/{addressId}/token": (variables: GetAddressTokensResourceVariables, signal?: AbortSignal) => Promise<GetAddressTokensResourceResponse>;
|
|
5576
|
+
"GET /address/{addressId}/unit": (variables: GetAddressUnitsResourceVariables, signal?: AbortSignal) => Promise<GetAddressUnitsResourceResponse>;
|
|
5577
|
+
"PUT /address/{addressId}/unit": (variables: PutAddressUnitsResourceVariables, signal?: AbortSignal) => Promise<AddressUnitResponse>;
|
|
5578
|
+
"DELETE /address/{addressId}/unit": (variables: DeleteAddressUnitsResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5579
|
+
"DELETE /address/{addressId}/unit/{id}": (variables: DeleteAddressUnitResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5580
|
+
"GET /api/decentralWebhook": (variables: GetDecentralWebhooksResourceVariables, signal?: AbortSignal) => Promise<GetDecentralWebhooksResourceResponse>;
|
|
5581
|
+
"PUT /api/decentralWebhook": (variables: PutDecentralWebhooksResourceVariables, signal?: AbortSignal) => Promise<DecentralWebhook>;
|
|
5582
|
+
"DELETE /api/decentralWebhook/{id}": (variables: DeleteDecentralWebhookResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5583
|
+
"GET /api/key": (variables: GetApiKeysResourceVariables, signal?: AbortSignal) => Promise<GetApiKeysResourceResponse>;
|
|
5584
|
+
"PUT /api/key": (variables: PutApiKeysResourceVariables, signal?: AbortSignal) => Promise<ApiKey>;
|
|
5585
|
+
"POST /api/key/{apiKeyId}": (variables: PostApiKeyResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5586
|
+
"DELETE /api/key/{apiKeyId}": (variables: DeleteApiKeyResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5587
|
+
"GET /api/key/{apiKeyId}/advanced": (variables: GetApiKeyAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedApiKey>;
|
|
5588
|
+
"POST /api/key/{apiKeyId}/advanced": (variables: PostApiKeyAdvancedResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5589
|
+
"PUT /api/key/{apiKeyId}/advanced": (variables: PutApiKeyAdvancedResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5590
|
+
"DELETE /api/key/{apiKeyId}/advanced": (variables: DeleteApiKeyAdvancedResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5591
|
+
"POST /api/key/{apiKeyId}/advanced/reactivate": (variables: PostApiKeyAdvancedReactivateResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5592
|
+
"GET /api/key/{apiKeyId}/token": (variables: GetApiKeyTokensResourceVariables, signal?: AbortSignal) => Promise<GetApiKeyTokensResourceResponse>;
|
|
5593
|
+
"PUT /api/key/{apiKeyId}/token": (variables: PutApiKeyTokensResourceVariables, signal?: AbortSignal) => Promise<ApiKeyToken>;
|
|
5594
|
+
"POST /api/key/{apiKeyId}/token/{id}": (variables: PostApiKeyTokenResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5595
|
+
"DELETE /api/key/{apiKeyId}/token/{id}": (variables: DeleteApiKeyTokenResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5596
|
+
"GET /api/key/{apiKeyId}/webhook/logs": (variables: GetWebhookLogsResourceVariables, signal?: AbortSignal) => Promise<GetWebhookLogsResourceResponse>;
|
|
5597
|
+
"POST /bulk-web-config": (variables: PostSmartlockBulkWebConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5598
|
+
"GET /company": (variables: GetCompaniesResourceVariables, signal?: AbortSignal) => Promise<GetCompaniesResourceResponse>;
|
|
5599
|
+
"GET /notification": (variables: GetNotificationsResourceVariables, signal?: AbortSignal) => Promise<GetNotificationsResourceResponse>;
|
|
5600
|
+
"PUT /notification": (variables: PutNotificationsResourceVariables, signal?: AbortSignal) => Promise<Notification>;
|
|
5601
|
+
"GET /notification/{notificationId}": (variables: GetNotificationResourceVariables, signal?: AbortSignal) => Promise<Notification>;
|
|
5602
|
+
"POST /notification/{notificationId}": (variables: PostNotificationResourceVariables, signal?: AbortSignal) => Promise<Notification>;
|
|
5603
|
+
"DELETE /notification/{notificationId}": (variables: DeleteNotificationResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5604
|
+
"GET /opener/brand": (variables: GetOpenerBrandsResourceVariables, signal?: AbortSignal) => Promise<GetOpenerBrandsResourceResponse>;
|
|
5605
|
+
"GET /opener/brand/{brandId}": (variables: GetOpenerBrandResourceVariables, signal?: AbortSignal) => Promise<OpenerIntercomBrand>;
|
|
5606
|
+
"GET /opener/intercom": (variables: GetOpenerIntercomsResourceVariables, signal?: AbortSignal) => Promise<GetOpenerIntercomsResourceResponse>;
|
|
5607
|
+
"GET /opener/intercom/{intercomId}": (variables: GetOpenerIntercomResourceVariables, signal?: AbortSignal) => Promise<OpenerIntercomModel>;
|
|
5608
|
+
"GET /service": (variables: GetServicesResourceVariables, signal?: AbortSignal) => Promise<GetServicesResourceResponse>;
|
|
5609
|
+
"GET /service/{serviceId}": (variables: GetServiceResourceVariables, signal?: AbortSignal) => Promise<Service>;
|
|
5610
|
+
"POST /service/{serviceId}/link": (variables: PostServiceLinkResourceVariables, signal?: AbortSignal) => Promise<string>;
|
|
5611
|
+
"POST /service/{serviceId}/sync": (variables: PostServiceSyncResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5612
|
+
"POST /service/{serviceId}/unlink": (variables: PostServiceUnlinkResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5613
|
+
"GET /smartlock": (variables: GetSmartlocksResourceVariables, signal?: AbortSignal) => Promise<GetSmartlocksResourceResponse>;
|
|
5614
|
+
"GET /smartlock/auth": (variables: GetSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlocksAuthsResourceResponse>;
|
|
5615
|
+
"POST /smartlock/auth": (variables: PostSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5616
|
+
"PUT /smartlock/auth": (variables: PutSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5617
|
+
"DELETE /smartlock/auth": (variables: DeleteSmartlocksAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5618
|
+
"PUT /smartlock/auth/advanced": (variables: PutSmartlockAuthsAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5619
|
+
"GET /smartlock/log": (variables: GetSmartlocksLogsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlocksLogsResourceResponse>;
|
|
5620
|
+
"GET /smartlock/{smartlockId}": (variables: GetSmartlockResourceVariables, signal?: AbortSignal) => Promise<Smartlock>;
|
|
5621
|
+
"POST /smartlock/{smartlockId}": (variables: PostSmartlockResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5622
|
+
"DELETE /smartlock/{smartlockId}": (variables: DeleteSmartlockResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5623
|
+
"POST /smartlock/{smartlockId}/action": (variables: PostSmartlockActionResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5624
|
+
"POST /smartlock/{smartlockId}/action/advanced": (variables: PostSmartlockActionAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5625
|
+
"POST /smartlock/{smartlockId}/action/lock": (variables: PostSmartlockLockActionResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5626
|
+
"POST /smartlock/{smartlockId}/action/lock/advanced": (variables: PostSmartlockLockActionAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5627
|
+
"POST /smartlock/{smartlockId}/action/unlock": (variables: PostSmartlockUnlockActionResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5628
|
+
"POST /smartlock/{smartlockId}/action/unlock/advanced": (variables: PostSmartlockUnlockActionAdvancedResourceVariables, signal?: AbortSignal) => Promise<AdvancedConfirmationResponse>;
|
|
5629
|
+
"POST /smartlock/{smartlockId}/admin/pin": (variables: PostSmartlockAdminPinResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5630
|
+
"POST /smartlock/{smartlockId}/advanced/config": (variables: PostSmartlockAdvancedConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5631
|
+
"POST /smartlock/{smartlockId}/advanced/openerconfig": (variables: PostSmartlockOpenerAdvancedConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5632
|
+
"POST /smartlock/{smartlockId}/advanced/smartdoorconfig": (variables: PostSmartdoorAdvancedConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5633
|
+
"GET /smartlock/{smartlockId}/auth": (variables: GetSmartlockAuthsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlockAuthsResourceResponse>;
|
|
5634
|
+
"PUT /smartlock/{smartlockId}/auth": (variables: PutSmartlockAuthsResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5635
|
+
"POST /smartlock/{smartlockId}/auth/advanced/sharedkey": (variables: PostSmartlockAuthWithSharedKeyResourceVariables, signal?: AbortSignal) => Promise<PostSmartlockAuthWithSharedKeyResourceResponse>;
|
|
5636
|
+
"GET /smartlock/{smartlockId}/auth/{id}": (variables: GetSmartlockAuthResourceVariables, signal?: AbortSignal) => Promise<SmartlockAuth>;
|
|
5637
|
+
"POST /smartlock/{smartlockId}/auth/{id}": (variables: PostSmartlockAuthResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5638
|
+
"DELETE /smartlock/{smartlockId}/auth/{id}": (variables: DeleteSmartlockAuthResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5639
|
+
"POST /smartlock/{smartlockId}/config": (variables: PostSmartlockConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5640
|
+
"GET /smartlock/{smartlockId}/log": (variables: GetSmartlockLogsResourceVariables, signal?: AbortSignal) => Promise<GetSmartlockLogsResourceResponse>;
|
|
5641
|
+
"POST /smartlock/{smartlockId}/sync": (variables: PostSmartlockSyncResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5642
|
+
"POST /smartlock/{smartlockId}/web/config": (variables: PostSmartlockWebConfigResourceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
5643
5643
|
}[Endpoint]>>;
|
|
5644
5644
|
}
|
|
5645
5645
|
|