@doordeck/doordeck-headless-sdk 0.138.0 → 0.139.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/Kermit-kermit-core.js +59 -59
- package/kotlin/Kermit-kermit.js +8 -8
- package/kotlin/KotlinMultiplatformLibsodium-multiplatform-crypto-libsodium-bindings.js +47 -47
- package/kotlin/MultiplatformSettings-multiplatform-settings.js +22 -22
- package/kotlin/doordeck-sdk.d.ts +80 -80
- package/kotlin/doordeck-sdk.js +12700 -12540
- package/kotlin/kotlin-kotlin-stdlib.js +2257 -2208
- package/kotlin/kotlinx-atomicfu.js +24 -24
- package/kotlin/kotlinx-coroutines-core.js +2340 -2337
- package/kotlin/kotlinx-io-kotlinx-io-bytestring.js +46 -46
- package/kotlin/kotlinx-io-kotlinx-io-core.js +489 -489
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core.js +1797 -1797
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json.js +1530 -1530
- package/kotlin/ktor-ktor-client-auth.js +469 -469
- package/kotlin/ktor-ktor-client-content-negotiation.js +214 -214
- package/kotlin/ktor-ktor-client-core.js +2981 -2981
- package/kotlin/ktor-ktor-client-logging.js +1186 -1186
- package/kotlin/ktor-ktor-events.js +11 -11
- package/kotlin/ktor-ktor-http-cio.js +538 -538
- package/kotlin/ktor-ktor-http.js +826 -826
- package/kotlin/ktor-ktor-io.js +1120 -1120
- package/kotlin/ktor-ktor-serialization-kotlinx-json.js +6 -6
- package/kotlin/ktor-ktor-serialization-kotlinx.js +265 -265
- package/kotlin/ktor-ktor-serialization.js +127 -127
- package/kotlin/ktor-ktor-utils.js +895 -895
- package/kotlin/ktor-ktor-websockets.js +52 -52
- package/package.json +1 -1
package/kotlin/doordeck-sdk.d.ts
CHANGED
|
@@ -793,7 +793,7 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
793
793
|
abstract class constructor {
|
|
794
794
|
login(email: string, password: string): Promise<com.doordeck.multiplatform.sdk.model.responses.FusionLoginResponse>;
|
|
795
795
|
getIntegrationType(): Promise<com.doordeck.multiplatform.sdk.model.responses.IntegrationTypeResponse>;
|
|
796
|
-
getIntegrationConfiguration(type: string): Promise<
|
|
796
|
+
getIntegrationConfiguration(type: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.IntegrationConfigurationResponse>>;
|
|
797
797
|
enableDoor(name: string, siteId: string, controller: com.doordeck.multiplatform.sdk.model.data.FusionOperations.LockController): Promise<any>;
|
|
798
798
|
deleteDoor(deviceId: string): Promise<any>;
|
|
799
799
|
getDoorStatus(deviceId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.DoorStateResponse>;
|
|
@@ -828,16 +828,16 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
828
828
|
namespace LockOperationsApi.$metadata$ {
|
|
829
829
|
abstract class constructor {
|
|
830
830
|
getSingleLock(lockId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.LockResponse>;
|
|
831
|
-
getLockAuditTrail(lockId: string, start: number, end: number): Promise<
|
|
832
|
-
getAuditForUser(userId: string, start: number, end: number): Promise<
|
|
833
|
-
getUsersForLock(lockId: string): Promise<
|
|
831
|
+
getLockAuditTrail(lockId: string, start: number, end: number): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.AuditResponse>>;
|
|
832
|
+
getAuditForUser(userId: string, start: number, end: number): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.AuditResponse>>;
|
|
833
|
+
getUsersForLock(lockId: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.UserLockResponse>>;
|
|
834
834
|
getLocksForUser(userId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.LockUserResponse>;
|
|
835
835
|
updateLockName(lockId: string, name?: Nullable<string>): Promise<any>;
|
|
836
836
|
updateLockFavourite(lockId: string, favourite: boolean): Promise<any>;
|
|
837
837
|
updateLockSettingDefaultName(lockId: string, name: string): Promise<any>;
|
|
838
|
-
setLockSettingPermittedAddresses(lockId: string, permittedAddresses:
|
|
838
|
+
setLockSettingPermittedAddresses(lockId: string, permittedAddresses: Array<string>): Promise<any>;
|
|
839
839
|
updateLockSettingHidden(lockId: string, hidden: boolean): Promise<any>;
|
|
840
|
-
setLockSettingTimeRestrictions(lockId: string, times:
|
|
840
|
+
setLockSettingTimeRestrictions(lockId: string, times: Array<com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement>): Promise<any>;
|
|
841
841
|
updateLockSettingLocationRestrictions(lockId: string, location?: Nullable<com.doordeck.multiplatform.sdk.model.data.LockOperations.LocationRequirement>): Promise<any>;
|
|
842
842
|
getUserPublicKey(userEmail: string, visitor?: boolean): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
|
|
843
843
|
getUserPublicKeyByEmail(email: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
|
|
@@ -845,18 +845,18 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
845
845
|
getUserPublicKeyByLocalKey(localKey: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
|
|
846
846
|
getUserPublicKeyByForeignKey(foreignKey: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
|
|
847
847
|
getUserPublicKeyByIdentity(identity: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
|
|
848
|
-
getUserPublicKeyByEmails(emails:
|
|
849
|
-
getUserPublicKeyByTelephones(telephones:
|
|
850
|
-
getUserPublicKeyByLocalKeys(localKeys:
|
|
851
|
-
getUserPublicKeyByForeignKeys(foreignKeys:
|
|
848
|
+
getUserPublicKeyByEmails(emails: Array<string>): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
|
|
849
|
+
getUserPublicKeyByTelephones(telephones: Array<string>): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
|
|
850
|
+
getUserPublicKeyByLocalKeys(localKeys: Array<string>): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
|
|
851
|
+
getUserPublicKeyByForeignKeys(foreignKeys: Array<string>): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
|
|
852
852
|
unlock(unlockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation): Promise<any>;
|
|
853
853
|
shareLock(shareLockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLockOperation): Promise<any>;
|
|
854
854
|
batchShareLock(batchShareLockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation): Promise<any>;
|
|
855
855
|
revokeAccessToLock(revokeAccessToLockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation): Promise<any>;
|
|
856
856
|
updateSecureSettingUnlockDuration(updateSecureSettingUnlockDuration: com.doordeck.multiplatform.sdk.model.data.LockOperations.UpdateSecureSettingUnlockDuration): Promise<any>;
|
|
857
857
|
updateSecureSettingUnlockBetween(updateSecureSettingUnlockBetween: com.doordeck.multiplatform.sdk.model.data.LockOperations.UpdateSecureSettingUnlockBetween): Promise<any>;
|
|
858
|
-
getPinnedLocks(): Promise<
|
|
859
|
-
getShareableLocks(): Promise<
|
|
858
|
+
getPinnedLocks(): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.LockResponse>>;
|
|
859
|
+
getShareableLocks(): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.ShareableLockResponse>>;
|
|
860
860
|
private constructor();
|
|
861
861
|
}
|
|
862
862
|
}
|
|
@@ -870,7 +870,7 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
870
870
|
namespace PlatformApi.$metadata$ {
|
|
871
871
|
abstract class constructor {
|
|
872
872
|
createApplication(application: com.doordeck.multiplatform.sdk.model.data.PlatformOperations.CreateApplication): Promise<any>;
|
|
873
|
-
listApplications(): Promise<
|
|
873
|
+
listApplications(): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.ApplicationResponse>>;
|
|
874
874
|
getApplication(applicationId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.ApplicationResponse>;
|
|
875
875
|
updateApplicationName(applicationId: string, name: string): Promise<any>;
|
|
876
876
|
updateApplicationCompanyName(applicationId: string, companyName: string): Promise<any>;
|
|
@@ -889,7 +889,7 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
889
889
|
removeCorsDomain(applicationId: string, url: string): Promise<any>;
|
|
890
890
|
addApplicationOwner(applicationId: string, userId: string): Promise<any>;
|
|
891
891
|
removeApplicationOwner(applicationId: string, userId: string): Promise<any>;
|
|
892
|
-
getApplicationOwnersDetails(applicationId: string): Promise<
|
|
892
|
+
getApplicationOwnersDetails(applicationId: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.ApplicationOwnerDetailsResponse>>;
|
|
893
893
|
private constructor();
|
|
894
894
|
}
|
|
895
895
|
}
|
|
@@ -902,9 +902,9 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
902
902
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
903
903
|
namespace SitesApi.$metadata$ {
|
|
904
904
|
abstract class constructor {
|
|
905
|
-
listSites(): Promise<
|
|
906
|
-
getLocksForSite(siteId: string): Promise<
|
|
907
|
-
getUsersForSite(siteId: string): Promise<
|
|
905
|
+
listSites(): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.SiteResponse>>;
|
|
906
|
+
getLocksForSite(siteId: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.LockResponse>>;
|
|
907
|
+
getUsersForSite(siteId: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.UserForSiteResponse>>;
|
|
908
908
|
private constructor();
|
|
909
909
|
}
|
|
910
910
|
}
|
|
@@ -918,7 +918,7 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
918
918
|
namespace TilesApi.$metadata$ {
|
|
919
919
|
abstract class constructor {
|
|
920
920
|
getLocksBelongingToTile(tileId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.TileLocksResponse>;
|
|
921
|
-
associateMultipleLocks(tileId: string, siteId: string, lockIds:
|
|
921
|
+
associateMultipleLocks(tileId: string, siteId: string, lockIds: Array<string>): Promise<any>;
|
|
922
922
|
private constructor();
|
|
923
923
|
}
|
|
924
924
|
}
|
|
@@ -946,15 +946,15 @@ export declare namespace com.doordeck.multiplatform.sdk.context {
|
|
|
946
946
|
getUserId(): Nullable<string>;
|
|
947
947
|
setUserEmail(email: string): void;
|
|
948
948
|
getUserEmail(): Nullable<string>;
|
|
949
|
-
setCertificateChain(certificateChain:
|
|
950
|
-
getCertificateChain(): Nullable<
|
|
949
|
+
setCertificateChain(certificateChain: Array<string>): void;
|
|
950
|
+
getCertificateChain(): Nullable<Array<string>>;
|
|
951
951
|
isCertificateChainInvalidOrExpired(): boolean;
|
|
952
952
|
setKeyPair(publicKey: Int8Array, privateKey: Int8Array): void;
|
|
953
953
|
getKeyPair(): Nullable<com.doordeck.multiplatform.sdk.model.data.Crypto.KeyPair>;
|
|
954
954
|
setKeyPairVerified(publicKey: Nullable<Int8Array>): void;
|
|
955
955
|
isKeyPairVerified(): boolean;
|
|
956
956
|
isKeyPairValid(): boolean;
|
|
957
|
-
setOperationContext(userId: string, certificateChain:
|
|
957
|
+
setOperationContext(userId: string, certificateChain: Array<string>, publicKey: Int8Array, privateKey: Int8Array, isKeyPairVerified: boolean): void;
|
|
958
958
|
getContextState(): com.doordeck.multiplatform.sdk.model.common.ContextState;
|
|
959
959
|
clearContext(): void;
|
|
960
960
|
private constructor();
|
|
@@ -1372,13 +1372,13 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1372
1372
|
}
|
|
1373
1373
|
}
|
|
1374
1374
|
class UnlockBetween {
|
|
1375
|
-
constructor(start: string, end: string, timezone: string, days: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Nullable<
|
|
1375
|
+
constructor(start: string, end: string, timezone: string, days: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Nullable<Array<string>>);
|
|
1376
1376
|
get start(): string;
|
|
1377
1377
|
get end(): string;
|
|
1378
1378
|
get timezone(): string;
|
|
1379
1379
|
get days(): kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
|
|
1380
|
-
get exceptions(): Nullable<
|
|
1381
|
-
copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Nullable<
|
|
1380
|
+
get exceptions(): Nullable<Array<string>>;
|
|
1381
|
+
copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween;
|
|
1382
1382
|
toString(): string;
|
|
1383
1383
|
hashCode(): number;
|
|
1384
1384
|
equals(other: Nullable<any>): boolean;
|
|
@@ -1394,7 +1394,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1394
1394
|
setEnd(end: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
|
|
1395
1395
|
setTimezone(timezone: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
|
|
1396
1396
|
setDays(days: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
|
|
1397
|
-
setExceptions(exceptions: Nullable<
|
|
1397
|
+
setExceptions(exceptions: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
|
|
1398
1398
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween;
|
|
1399
1399
|
}
|
|
1400
1400
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
@@ -1403,10 +1403,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1403
1403
|
}
|
|
1404
1404
|
}
|
|
1405
1405
|
class UnlockOperation implements com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation {
|
|
1406
|
-
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, directAccessEndpoints?: Nullable<
|
|
1406
|
+
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, directAccessEndpoints?: Nullable<Array<string>>);
|
|
1407
1407
|
get baseOperation(): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation;
|
|
1408
|
-
get directAccessEndpoints(): Nullable<
|
|
1409
|
-
copy(baseOperation?: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, directAccessEndpoints?: Nullable<
|
|
1408
|
+
get directAccessEndpoints(): Nullable<Array<string>>;
|
|
1409
|
+
copy(baseOperation?: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, directAccessEndpoints?: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation;
|
|
1410
1410
|
toString(): string;
|
|
1411
1411
|
hashCode(): number;
|
|
1412
1412
|
equals(other: Nullable<any>): boolean;
|
|
@@ -1420,7 +1420,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1420
1420
|
class Builder {
|
|
1421
1421
|
constructor();
|
|
1422
1422
|
setBaseOperation(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation.Builder;
|
|
1423
|
-
setDirectAccessEndpoints(directAccessEndpoints: Nullable<
|
|
1423
|
+
setDirectAccessEndpoints(directAccessEndpoints: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation.Builder;
|
|
1424
1424
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation;
|
|
1425
1425
|
}
|
|
1426
1426
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
@@ -1486,10 +1486,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1486
1486
|
}
|
|
1487
1487
|
}
|
|
1488
1488
|
class BatchShareLockOperation implements com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation {
|
|
1489
|
-
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users:
|
|
1489
|
+
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users: Array<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>);
|
|
1490
1490
|
get baseOperation(): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation;
|
|
1491
|
-
get users():
|
|
1492
|
-
copy(baseOperation?: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users?:
|
|
1491
|
+
get users(): Array<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>;
|
|
1492
|
+
copy(baseOperation?: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users?: Array<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation;
|
|
1493
1493
|
toString(): string;
|
|
1494
1494
|
hashCode(): number;
|
|
1495
1495
|
equals(other: Nullable<any>): boolean;
|
|
@@ -1503,7 +1503,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1503
1503
|
class Builder {
|
|
1504
1504
|
constructor();
|
|
1505
1505
|
setBaseOperation(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation): com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation.Builder;
|
|
1506
|
-
setUsers(users:
|
|
1506
|
+
setUsers(users: Array<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation.Builder;
|
|
1507
1507
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation;
|
|
1508
1508
|
}
|
|
1509
1509
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
@@ -1512,10 +1512,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1512
1512
|
}
|
|
1513
1513
|
}
|
|
1514
1514
|
class RevokeAccessToLockOperation implements com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation {
|
|
1515
|
-
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users:
|
|
1515
|
+
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users: Array<string>);
|
|
1516
1516
|
get baseOperation(): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation;
|
|
1517
|
-
get users():
|
|
1518
|
-
copy(baseOperation?: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users?:
|
|
1517
|
+
get users(): Array<string>;
|
|
1518
|
+
copy(baseOperation?: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users?: Array<string>): com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation;
|
|
1519
1519
|
toString(): string;
|
|
1520
1520
|
hashCode(): number;
|
|
1521
1521
|
equals(other: Nullable<any>): boolean;
|
|
@@ -1529,7 +1529,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1529
1529
|
class Builder {
|
|
1530
1530
|
constructor();
|
|
1531
1531
|
setBaseOperation(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation): com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation.Builder;
|
|
1532
|
-
setUsers(users:
|
|
1532
|
+
setUsers(users: Array<string>): com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation.Builder;
|
|
1533
1533
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation;
|
|
1534
1534
|
}
|
|
1535
1535
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
@@ -1590,16 +1590,16 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1590
1590
|
}
|
|
1591
1591
|
}
|
|
1592
1592
|
class BaseOperation {
|
|
1593
|
-
constructor(userId: Nullable<string> | undefined, userCertificateChain: Nullable<
|
|
1593
|
+
constructor(userId: Nullable<string> | undefined, userCertificateChain: Nullable<Array<string>> | undefined, userPrivateKey: Nullable<Int8Array> | undefined, lockId: string, notBefore?: number, issuedAt?: number, expiresAt?: number, jti?: string);
|
|
1594
1594
|
get userId(): Nullable<string>;
|
|
1595
|
-
get userCertificateChain(): Nullable<
|
|
1595
|
+
get userCertificateChain(): Nullable<Array<string>>;
|
|
1596
1596
|
get userPrivateKey(): Nullable<Int8Array>;
|
|
1597
1597
|
get lockId(): string;
|
|
1598
1598
|
get notBefore(): number;
|
|
1599
1599
|
get issuedAt(): number;
|
|
1600
1600
|
get expiresAt(): number;
|
|
1601
1601
|
get jti(): string;
|
|
1602
|
-
copy(userId?: Nullable<string>, userCertificateChain?: Nullable<
|
|
1602
|
+
copy(userId?: Nullable<string>, userCertificateChain?: Nullable<Array<string>>, userPrivateKey?: Nullable<Int8Array>, lockId?: string, notBefore?: number, issuedAt?: number, expiresAt?: number, jti?: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation;
|
|
1603
1603
|
toString(): string;
|
|
1604
1604
|
hashCode(): number;
|
|
1605
1605
|
equals(other: Nullable<any>): boolean;
|
|
@@ -1612,7 +1612,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1612
1612
|
class Builder {
|
|
1613
1613
|
constructor();
|
|
1614
1614
|
setUserId(userId: Nullable<string>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation.Builder;
|
|
1615
|
-
setUserCertificateChain(userCertificateChain: Nullable<
|
|
1615
|
+
setUserCertificateChain(userCertificateChain: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation.Builder;
|
|
1616
1616
|
setUserPrivateKey(userPrivateKey: Nullable<Int8Array>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation.Builder;
|
|
1617
1617
|
setLockId(lockId: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation.Builder;
|
|
1618
1618
|
setNotBefore(notBefore: number): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation.Builder;
|
|
@@ -1892,10 +1892,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1892
1892
|
const constructor: abstract new () => UserDetailsResponse;
|
|
1893
1893
|
}
|
|
1894
1894
|
class RegisterEphemeralKeyResponse {
|
|
1895
|
-
constructor(certificateChain:
|
|
1896
|
-
get certificateChain():
|
|
1895
|
+
constructor(certificateChain: Array<string>, userId: string);
|
|
1896
|
+
get certificateChain(): Array<string>;
|
|
1897
1897
|
get userId(): string;
|
|
1898
|
-
copy(certificateChain?:
|
|
1898
|
+
copy(certificateChain?: Array<string>, userId?: string): com.doordeck.multiplatform.sdk.model.responses.RegisterEphemeralKeyResponse;
|
|
1899
1899
|
toString(): string;
|
|
1900
1900
|
hashCode(): number;
|
|
1901
1901
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2057,17 +2057,17 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2057
2057
|
const constructor: abstract new () => LockResponse;
|
|
2058
2058
|
}
|
|
2059
2059
|
class LockSettingsResponse {
|
|
2060
|
-
constructor(unlockTime: number, permittedAddresses:
|
|
2060
|
+
constructor(unlockTime: number, permittedAddresses: Array<string>, defaultName: string, usageRequirements: Nullable<com.doordeck.multiplatform.sdk.model.responses.UsageRequirementsResponse> | undefined, unlockBetweenWindow: Nullable<com.doordeck.multiplatform.sdk.model.responses.UnlockBetweenSettingResponse> | undefined, tiles: Array<string>, hidden: boolean, directAccessEndpoints?: Array<string>, capabilities?: kotlin.collections.KtMap<com.doordeck.multiplatform.sdk.model.common.CapabilityType, com.doordeck.multiplatform.sdk.model.common.CapabilityStatus>);
|
|
2061
2061
|
get unlockTime(): number;
|
|
2062
|
-
get permittedAddresses():
|
|
2062
|
+
get permittedAddresses(): Array<string>;
|
|
2063
2063
|
get defaultName(): string;
|
|
2064
2064
|
get usageRequirements(): Nullable<com.doordeck.multiplatform.sdk.model.responses.UsageRequirementsResponse>;
|
|
2065
2065
|
get unlockBetweenWindow(): Nullable<com.doordeck.multiplatform.sdk.model.responses.UnlockBetweenSettingResponse>;
|
|
2066
|
-
get tiles():
|
|
2066
|
+
get tiles(): Array<string>;
|
|
2067
2067
|
get hidden(): boolean;
|
|
2068
|
-
get directAccessEndpoints():
|
|
2068
|
+
get directAccessEndpoints(): Array<string>;
|
|
2069
2069
|
get capabilities(): kotlin.collections.KtMap<com.doordeck.multiplatform.sdk.model.common.CapabilityType, com.doordeck.multiplatform.sdk.model.common.CapabilityStatus>;
|
|
2070
|
-
copy(unlockTime?: number, permittedAddresses?:
|
|
2070
|
+
copy(unlockTime?: number, permittedAddresses?: Array<string>, defaultName?: string, usageRequirements?: Nullable<com.doordeck.multiplatform.sdk.model.responses.UsageRequirementsResponse>, unlockBetweenWindow?: Nullable<com.doordeck.multiplatform.sdk.model.responses.UnlockBetweenSettingResponse>, tiles?: Array<string>, hidden?: boolean, directAccessEndpoints?: Array<string>, capabilities?: kotlin.collections.KtMap<com.doordeck.multiplatform.sdk.model.common.CapabilityType, com.doordeck.multiplatform.sdk.model.common.CapabilityStatus>): com.doordeck.multiplatform.sdk.model.responses.LockSettingsResponse;
|
|
2071
2071
|
toString(): string;
|
|
2072
2072
|
hashCode(): number;
|
|
2073
2073
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2077,10 +2077,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2077
2077
|
const constructor: abstract new () => LockSettingsResponse;
|
|
2078
2078
|
}
|
|
2079
2079
|
class UsageRequirementsResponse {
|
|
2080
|
-
constructor(time?:
|
|
2081
|
-
get time():
|
|
2080
|
+
constructor(time?: Array<com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse>, location?: Nullable<com.doordeck.multiplatform.sdk.model.responses.LocationRequirementResponse>);
|
|
2081
|
+
get time(): Array<com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse>;
|
|
2082
2082
|
get location(): Nullable<com.doordeck.multiplatform.sdk.model.responses.LocationRequirementResponse>;
|
|
2083
|
-
copy(time?:
|
|
2083
|
+
copy(time?: Array<com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse>, location?: Nullable<com.doordeck.multiplatform.sdk.model.responses.LocationRequirementResponse>): com.doordeck.multiplatform.sdk.model.responses.UsageRequirementsResponse;
|
|
2084
2084
|
toString(): string;
|
|
2085
2085
|
hashCode(): number;
|
|
2086
2086
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2121,13 +2121,13 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2121
2121
|
const constructor: abstract new () => LocationRequirementResponse;
|
|
2122
2122
|
}
|
|
2123
2123
|
class UnlockBetweenSettingResponse {
|
|
2124
|
-
constructor(start: string, end: string, timezone: string, days: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?:
|
|
2124
|
+
constructor(start: string, end: string, timezone: string, days: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Array<string>);
|
|
2125
2125
|
get start(): string;
|
|
2126
2126
|
get end(): string;
|
|
2127
2127
|
get timezone(): string;
|
|
2128
2128
|
get days(): kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
|
|
2129
|
-
get exceptions():
|
|
2130
|
-
copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?:
|
|
2129
|
+
get exceptions(): Array<string>;
|
|
2130
|
+
copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Array<string>): com.doordeck.multiplatform.sdk.model.responses.UnlockBetweenSettingResponse;
|
|
2131
2131
|
toString(): string;
|
|
2132
2132
|
hashCode(): number;
|
|
2133
2133
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2211,7 +2211,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2211
2211
|
const constructor: abstract new () => UserLockResponse;
|
|
2212
2212
|
}
|
|
2213
2213
|
class LockUserResponse {
|
|
2214
|
-
constructor(userId: string, email: string, publicKey: string, displayName: Nullable<string> | undefined, orphan: boolean, foreign: boolean, start: Nullable<number> | undefined, end: Nullable<number> | undefined, devices:
|
|
2214
|
+
constructor(userId: string, email: string, publicKey: string, displayName: Nullable<string> | undefined, orphan: boolean, foreign: boolean, start: Nullable<number> | undefined, end: Nullable<number> | undefined, devices: Array<com.doordeck.multiplatform.sdk.model.responses.LockUserDetailsResponse>);
|
|
2215
2215
|
get userId(): string;
|
|
2216
2216
|
get email(): string;
|
|
2217
2217
|
get publicKey(): string;
|
|
@@ -2220,8 +2220,8 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2220
2220
|
get foreign(): boolean;
|
|
2221
2221
|
get start(): Nullable<number>;
|
|
2222
2222
|
get end(): Nullable<number>;
|
|
2223
|
-
get devices():
|
|
2224
|
-
copy(userId?: string, email?: string, publicKey?: string, displayName?: Nullable<string>, orphan?: boolean, foreign?: boolean, start?: Nullable<number>, end?: Nullable<number>, devices?:
|
|
2223
|
+
get devices(): Array<com.doordeck.multiplatform.sdk.model.responses.LockUserDetailsResponse>;
|
|
2224
|
+
copy(userId?: string, email?: string, publicKey?: string, displayName?: Nullable<string>, orphan?: boolean, foreign?: boolean, start?: Nullable<number>, end?: Nullable<number>, devices?: Array<com.doordeck.multiplatform.sdk.model.responses.LockUserDetailsResponse>): com.doordeck.multiplatform.sdk.model.responses.LockUserResponse;
|
|
2225
2225
|
toString(): string;
|
|
2226
2226
|
hashCode(): number;
|
|
2227
2227
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2281,13 +2281,13 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2281
2281
|
}
|
|
2282
2282
|
export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
2283
2283
|
class ApplicationResponse {
|
|
2284
|
-
constructor(applicationId: string, name: string, lastUpdated: Nullable<number> | undefined, owners:
|
|
2284
|
+
constructor(applicationId: string, name: string, lastUpdated: Nullable<number> | undefined, owners: Array<string> | undefined, corsDomains: Array<string> | undefined, authDomains: Array<string> | undefined, logoUrl: Nullable<string> | undefined, privacyPolicy: Nullable<string> | undefined, mailingAddress: Nullable<string> | undefined, companyName: Nullable<string> | undefined, supportContact: Nullable<string> | undefined, appLink: Nullable<string> | undefined, slug: Nullable<string> | undefined, emailPreferences: com.doordeck.multiplatform.sdk.model.responses.EmailPreferencesResponse, authKeys: kotlin.collections.KtMap<string, com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse>, oauth?: Nullable<com.doordeck.multiplatform.sdk.model.responses.OauthResponse>, isDoordeckApplication?: Nullable<boolean>);
|
|
2285
2285
|
get applicationId(): string;
|
|
2286
2286
|
get name(): string;
|
|
2287
2287
|
get lastUpdated(): Nullable<number>;
|
|
2288
|
-
get owners():
|
|
2289
|
-
get corsDomains():
|
|
2290
|
-
get authDomains():
|
|
2288
|
+
get owners(): Array<string>;
|
|
2289
|
+
get corsDomains(): Array<string>;
|
|
2290
|
+
get authDomains(): Array<string>;
|
|
2291
2291
|
get logoUrl(): Nullable<string>;
|
|
2292
2292
|
get privacyPolicy(): Nullable<string>;
|
|
2293
2293
|
get mailingAddress(): Nullable<string>;
|
|
@@ -2299,7 +2299,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2299
2299
|
get authKeys(): kotlin.collections.KtMap<string, com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse>;
|
|
2300
2300
|
get oauth(): Nullable<com.doordeck.multiplatform.sdk.model.responses.OauthResponse>;
|
|
2301
2301
|
get isDoordeckApplication(): Nullable<boolean>;
|
|
2302
|
-
copy(applicationId?: string, name?: string, lastUpdated?: Nullable<number>, owners?:
|
|
2302
|
+
copy(applicationId?: string, name?: string, lastUpdated?: Nullable<number>, owners?: Array<string>, corsDomains?: Array<string>, authDomains?: Array<string>, logoUrl?: Nullable<string>, privacyPolicy?: Nullable<string>, mailingAddress?: Nullable<string>, companyName?: Nullable<string>, supportContact?: Nullable<string>, appLink?: Nullable<string>, slug?: Nullable<string>, emailPreferences?: com.doordeck.multiplatform.sdk.model.responses.EmailPreferencesResponse, authKeys?: kotlin.collections.KtMap<string, com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse>, oauth?: Nullable<com.doordeck.multiplatform.sdk.model.responses.OauthResponse>, isDoordeckApplication?: Nullable<boolean>): com.doordeck.multiplatform.sdk.model.responses.ApplicationResponse;
|
|
2303
2303
|
toString(): string;
|
|
2304
2304
|
hashCode(): number;
|
|
2305
2305
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2312,11 +2312,11 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2312
2312
|
readonly kid: string;
|
|
2313
2313
|
readonly use: string;
|
|
2314
2314
|
readonly alg: Nullable<string>;
|
|
2315
|
-
readonly ops: Nullable<
|
|
2315
|
+
readonly ops: Nullable<Array<string>>;
|
|
2316
2316
|
readonly x5u: Nullable<string>;
|
|
2317
2317
|
readonly x5t: Nullable<string>;
|
|
2318
2318
|
readonly x5t256: Nullable<string>;
|
|
2319
|
-
readonly x5c: Nullable<
|
|
2319
|
+
readonly x5c: Nullable<Array<string>>;
|
|
2320
2320
|
readonly exp: Nullable<number>;
|
|
2321
2321
|
readonly nbf: Nullable<number>;
|
|
2322
2322
|
readonly iat: Nullable<number>;
|
|
@@ -2325,21 +2325,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2325
2325
|
};
|
|
2326
2326
|
}
|
|
2327
2327
|
class RsaKeyResponse implements com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse {
|
|
2328
|
-
constructor(use: string, kid: string, alg: Nullable<string> | undefined, ops: Nullable<
|
|
2328
|
+
constructor(use: string, kid: string, alg: Nullable<string> | undefined, ops: Nullable<Array<string>> | undefined, x5u: Nullable<string> | undefined, x5t: Nullable<string> | undefined, x5t256: Nullable<string> | undefined, x5c: Nullable<Array<string>> | undefined, exp: Nullable<number> | undefined, nbf: Nullable<number> | undefined, iat: Nullable<number> | undefined, e: string, n: string);
|
|
2329
2329
|
get use(): string;
|
|
2330
2330
|
get kid(): string;
|
|
2331
2331
|
get alg(): Nullable<string>;
|
|
2332
|
-
get ops(): Nullable<
|
|
2332
|
+
get ops(): Nullable<Array<string>>;
|
|
2333
2333
|
get x5u(): Nullable<string>;
|
|
2334
2334
|
get x5t(): Nullable<string>;
|
|
2335
2335
|
get x5t256(): Nullable<string>;
|
|
2336
|
-
get x5c(): Nullable<
|
|
2336
|
+
get x5c(): Nullable<Array<string>>;
|
|
2337
2337
|
get exp(): Nullable<number>;
|
|
2338
2338
|
get nbf(): Nullable<number>;
|
|
2339
2339
|
get iat(): Nullable<number>;
|
|
2340
2340
|
get e(): string;
|
|
2341
2341
|
get n(): string;
|
|
2342
|
-
copy(use?: string, kid?: string, alg?: Nullable<string>, ops?: Nullable<
|
|
2342
|
+
copy(use?: string, kid?: string, alg?: Nullable<string>, ops?: Nullable<Array<string>>, x5u?: Nullable<string>, x5t?: Nullable<string>, x5t256?: Nullable<string>, x5c?: Nullable<Array<string>>, exp?: Nullable<number>, nbf?: Nullable<number>, iat?: Nullable<number>, e?: string, n?: string): com.doordeck.multiplatform.sdk.model.responses.RsaKeyResponse;
|
|
2343
2343
|
toString(): string;
|
|
2344
2344
|
hashCode(): number;
|
|
2345
2345
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2350,22 +2350,22 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2350
2350
|
const constructor: abstract new () => RsaKeyResponse;
|
|
2351
2351
|
}
|
|
2352
2352
|
class EcKeyResponse implements com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse {
|
|
2353
|
-
constructor(use: string, kid: string, alg: Nullable<string> | undefined, ops: Nullable<
|
|
2353
|
+
constructor(use: string, kid: string, alg: Nullable<string> | undefined, ops: Nullable<Array<string>> | undefined, x5u: Nullable<string> | undefined, x5t: Nullable<string> | undefined, x5t256: Nullable<string> | undefined, x5c: Nullable<Array<string>> | undefined, exp: Nullable<number> | undefined, nbf: Nullable<number> | undefined, iat: Nullable<number> | undefined, crv: string, x: string, y: string);
|
|
2354
2354
|
get use(): string;
|
|
2355
2355
|
get kid(): string;
|
|
2356
2356
|
get alg(): Nullable<string>;
|
|
2357
|
-
get ops(): Nullable<
|
|
2357
|
+
get ops(): Nullable<Array<string>>;
|
|
2358
2358
|
get x5u(): Nullable<string>;
|
|
2359
2359
|
get x5t(): Nullable<string>;
|
|
2360
2360
|
get x5t256(): Nullable<string>;
|
|
2361
|
-
get x5c(): Nullable<
|
|
2361
|
+
get x5c(): Nullable<Array<string>>;
|
|
2362
2362
|
get exp(): Nullable<number>;
|
|
2363
2363
|
get nbf(): Nullable<number>;
|
|
2364
2364
|
get iat(): Nullable<number>;
|
|
2365
2365
|
get crv(): string;
|
|
2366
2366
|
get x(): string;
|
|
2367
2367
|
get y(): string;
|
|
2368
|
-
copy(use?: string, kid?: string, alg?: Nullable<string>, ops?: Nullable<
|
|
2368
|
+
copy(use?: string, kid?: string, alg?: Nullable<string>, ops?: Nullable<Array<string>>, x5u?: Nullable<string>, x5t?: Nullable<string>, x5t256?: Nullable<string>, x5c?: Nullable<Array<string>>, exp?: Nullable<number>, nbf?: Nullable<number>, iat?: Nullable<number>, crv?: string, x?: string, y?: string): com.doordeck.multiplatform.sdk.model.responses.EcKeyResponse;
|
|
2369
2369
|
toString(): string;
|
|
2370
2370
|
hashCode(): number;
|
|
2371
2371
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2376,21 +2376,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2376
2376
|
const constructor: abstract new () => EcKeyResponse;
|
|
2377
2377
|
}
|
|
2378
2378
|
class Ed25519KeyResponse implements com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse {
|
|
2379
|
-
constructor(use: string, kid: string, alg: Nullable<string> | undefined, ops: Nullable<
|
|
2379
|
+
constructor(use: string, kid: string, alg: Nullable<string> | undefined, ops: Nullable<Array<string>> | undefined, x5u: Nullable<string> | undefined, x5t: Nullable<string> | undefined, x5t256: Nullable<string> | undefined, x5c: Nullable<Array<string>> | undefined, exp: Nullable<number> | undefined, nbf: Nullable<number> | undefined, iat: Nullable<number> | undefined, crv: string, x: string);
|
|
2380
2380
|
get use(): string;
|
|
2381
2381
|
get kid(): string;
|
|
2382
2382
|
get alg(): Nullable<string>;
|
|
2383
|
-
get ops(): Nullable<
|
|
2383
|
+
get ops(): Nullable<Array<string>>;
|
|
2384
2384
|
get x5u(): Nullable<string>;
|
|
2385
2385
|
get x5t(): Nullable<string>;
|
|
2386
2386
|
get x5t256(): Nullable<string>;
|
|
2387
|
-
get x5c(): Nullable<
|
|
2387
|
+
get x5c(): Nullable<Array<string>>;
|
|
2388
2388
|
get exp(): Nullable<number>;
|
|
2389
2389
|
get nbf(): Nullable<number>;
|
|
2390
2390
|
get iat(): Nullable<number>;
|
|
2391
2391
|
get crv(): string;
|
|
2392
2392
|
get x(): string;
|
|
2393
|
-
copy(use?: string, kid?: string, alg?: Nullable<string>, ops?: Nullable<
|
|
2393
|
+
copy(use?: string, kid?: string, alg?: Nullable<string>, ops?: Nullable<Array<string>>, x5u?: Nullable<string>, x5t?: Nullable<string>, x5t256?: Nullable<string>, x5c?: Nullable<Array<string>>, exp?: Nullable<number>, nbf?: Nullable<number>, iat?: Nullable<number>, crv?: string, x?: string): com.doordeck.multiplatform.sdk.model.responses.Ed25519KeyResponse;
|
|
2394
2394
|
toString(): string;
|
|
2395
2395
|
hashCode(): number;
|
|
2396
2396
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2511,11 +2511,11 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2511
2511
|
}
|
|
2512
2512
|
export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
2513
2513
|
class TileLocksResponse {
|
|
2514
|
-
constructor(siteId: string, tileId: string, deviceIds:
|
|
2514
|
+
constructor(siteId: string, tileId: string, deviceIds: Array<string>);
|
|
2515
2515
|
get siteId(): string;
|
|
2516
2516
|
get tileId(): string;
|
|
2517
|
-
get deviceIds():
|
|
2518
|
-
copy(siteId?: string, tileId?: string, deviceIds?:
|
|
2517
|
+
get deviceIds(): Array<string>;
|
|
2518
|
+
copy(siteId?: string, tileId?: string, deviceIds?: Array<string>): com.doordeck.multiplatform.sdk.model.responses.TileLocksResponse;
|
|
2519
2519
|
toString(): string;
|
|
2520
2520
|
hashCode(): number;
|
|
2521
2521
|
equals(other: Nullable<any>): boolean;
|