@doordeck/doordeck-headless-sdk 0.137.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.
Files changed (28) hide show
  1. package/kotlin/Kermit-kermit-core.js +61 -61
  2. package/kotlin/Kermit-kermit.js +8 -8
  3. package/kotlin/Kotlin-DateTime-library-kotlinx-datetime.js +2 -6459
  4. package/kotlin/KotlinMultiplatformLibsodium-multiplatform-crypto-libsodium-bindings.js +57 -57
  5. package/kotlin/MultiplatformSettings-multiplatform-settings.js +23 -23
  6. package/kotlin/doordeck-sdk.d.ts +80 -80
  7. package/kotlin/doordeck-sdk.js +13815 -13617
  8. package/kotlin/kotlin-kotlin-stdlib.js +3464 -2905
  9. package/kotlin/kotlinx-atomicfu.js +24 -24
  10. package/kotlin/kotlinx-coroutines-core.js +2412 -2409
  11. package/kotlin/kotlinx-io-kotlinx-io-bytestring.js +54 -54
  12. package/kotlin/kotlinx-io-kotlinx-io-core.js +568 -568
  13. package/kotlin/kotlinx-serialization-kotlinx-serialization-core.js +2130 -2118
  14. package/kotlin/kotlinx-serialization-kotlinx-serialization-json.js +1675 -1659
  15. package/kotlin/ktor-ktor-client-auth.js +476 -476
  16. package/kotlin/ktor-ktor-client-content-negotiation.js +220 -220
  17. package/kotlin/ktor-ktor-client-core.js +3068 -3086
  18. package/kotlin/ktor-ktor-client-logging.js +1206 -1206
  19. package/kotlin/ktor-ktor-events.js +12 -12
  20. package/kotlin/ktor-ktor-http-cio.js +603 -586
  21. package/kotlin/ktor-ktor-http.js +888 -888
  22. package/kotlin/ktor-ktor-io.js +1140 -1140
  23. package/kotlin/ktor-ktor-serialization-kotlinx-json.js +8 -8
  24. package/kotlin/ktor-ktor-serialization-kotlinx.js +287 -287
  25. package/kotlin/ktor-ktor-serialization.js +130 -130
  26. package/kotlin/ktor-ktor-utils.js +961 -961
  27. package/kotlin/ktor-ktor-websockets.js +54 -54
  28. package/package.json +7 -7
@@ -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<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.IntegrationConfigurationResponse>>;
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<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.AuditResponse>>;
832
- getAuditForUser(userId: string, start: number, end: number): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.AuditResponse>>;
833
- getUsersForLock(lockId: string): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.UserLockResponse>>;
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: kotlin.collections.KtList<string>): Promise<any>;
838
+ setLockSettingPermittedAddresses(lockId: string, permittedAddresses: Array<string>): Promise<any>;
839
839
  updateLockSettingHidden(lockId: string, hidden: boolean): Promise<any>;
840
- setLockSettingTimeRestrictions(lockId: string, times: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement>): Promise<any>;
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: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
849
- getUserPublicKeyByTelephones(telephones: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
850
- getUserPublicKeyByLocalKeys(localKeys: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
851
- getUserPublicKeyByForeignKeys(foreignKeys: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
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<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.LockResponse>>;
859
- getShareableLocks(): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.ShareableLockResponse>>;
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<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.ApplicationResponse>>;
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<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.ApplicationOwnerDetailsResponse>>;
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<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.SiteResponse>>;
906
- getLocksForSite(siteId: string): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.LockResponse>>;
907
- getUsersForSite(siteId: string): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.UserForSiteResponse>>;
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: kotlin.collections.KtList<string>): Promise<any>;
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: kotlin.collections.KtList<string>): void;
950
- getCertificateChain(): Nullable<kotlin.collections.KtList<string>>;
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: kotlin.collections.KtList<string>, publicKey: Int8Array, privateKey: Int8Array, isKeyPairVerified: boolean): void;
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<kotlin.collections.KtList<string>>);
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<kotlin.collections.KtList<string>>;
1381
- copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Nullable<kotlin.collections.KtList<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween;
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<kotlin.collections.KtList<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
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<kotlin.collections.KtList<string>>);
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<kotlin.collections.KtList<string>>;
1409
- copy(baseOperation?: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, directAccessEndpoints?: Nullable<kotlin.collections.KtList<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation;
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<kotlin.collections.KtList<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation.Builder;
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: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>);
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(): kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>;
1492
- copy(baseOperation?: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users?: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation;
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: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation.Builder;
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: kotlin.collections.KtList<string>);
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(): kotlin.collections.KtList<string>;
1518
- copy(baseOperation?: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users?: kotlin.collections.KtList<string>): com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation;
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: kotlin.collections.KtList<string>): com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation.Builder;
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<kotlin.collections.KtList<string>> | undefined, userPrivateKey: Nullable<Int8Array> | undefined, lockId: string, notBefore?: number, issuedAt?: number, expiresAt?: number, jti?: string);
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<kotlin.collections.KtList<string>>;
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<kotlin.collections.KtList<string>>, userPrivateKey?: Nullable<Int8Array>, lockId?: string, notBefore?: number, issuedAt?: number, expiresAt?: number, jti?: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation;
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<kotlin.collections.KtList<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation.Builder;
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: kotlin.collections.KtList<string>, userId: string);
1896
- get certificateChain(): kotlin.collections.KtList<string>;
1895
+ constructor(certificateChain: Array<string>, userId: string);
1896
+ get certificateChain(): Array<string>;
1897
1897
  get userId(): string;
1898
- copy(certificateChain?: kotlin.collections.KtList<string>, userId?: string): com.doordeck.multiplatform.sdk.model.responses.RegisterEphemeralKeyResponse;
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: kotlin.collections.KtList<string>, defaultName: string, usageRequirements: Nullable<com.doordeck.multiplatform.sdk.model.responses.UsageRequirementsResponse> | undefined, unlockBetweenWindow: Nullable<com.doordeck.multiplatform.sdk.model.responses.UnlockBetweenSettingResponse> | undefined, tiles: kotlin.collections.KtList<string>, hidden: boolean, directAccessEndpoints?: kotlin.collections.KtList<string>, capabilities?: kotlin.collections.KtMap<com.doordeck.multiplatform.sdk.model.common.CapabilityType, com.doordeck.multiplatform.sdk.model.common.CapabilityStatus>);
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(): kotlin.collections.KtList<string>;
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(): kotlin.collections.KtList<string>;
2066
+ get tiles(): Array<string>;
2067
2067
  get hidden(): boolean;
2068
- get directAccessEndpoints(): kotlin.collections.KtList<string>;
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?: kotlin.collections.KtList<string>, defaultName?: string, usageRequirements?: Nullable<com.doordeck.multiplatform.sdk.model.responses.UsageRequirementsResponse>, unlockBetweenWindow?: Nullable<com.doordeck.multiplatform.sdk.model.responses.UnlockBetweenSettingResponse>, tiles?: kotlin.collections.KtList<string>, hidden?: boolean, directAccessEndpoints?: kotlin.collections.KtList<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;
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?: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse>, location?: Nullable<com.doordeck.multiplatform.sdk.model.responses.LocationRequirementResponse>);
2081
- get time(): kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse>;
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?: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse>, location?: Nullable<com.doordeck.multiplatform.sdk.model.responses.LocationRequirementResponse>): com.doordeck.multiplatform.sdk.model.responses.UsageRequirementsResponse;
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?: kotlin.collections.KtList<string>);
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(): kotlin.collections.KtList<string>;
2130
- copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: kotlin.collections.KtList<string>): com.doordeck.multiplatform.sdk.model.responses.UnlockBetweenSettingResponse;
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: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.LockUserDetailsResponse>);
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(): kotlin.collections.KtList<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?: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.LockUserDetailsResponse>): com.doordeck.multiplatform.sdk.model.responses.LockUserResponse;
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: kotlin.collections.KtList<string> | undefined, corsDomains: kotlin.collections.KtList<string> | undefined, authDomains: kotlin.collections.KtList<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>);
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(): kotlin.collections.KtList<string>;
2289
- get corsDomains(): kotlin.collections.KtList<string>;
2290
- get authDomains(): kotlin.collections.KtList<string>;
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?: kotlin.collections.KtList<string>, corsDomains?: kotlin.collections.KtList<string>, authDomains?: kotlin.collections.KtList<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;
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<kotlin.collections.KtList<string>>;
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<kotlin.collections.KtList<string>>;
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<kotlin.collections.KtList<string>> | undefined, x5u: Nullable<string> | undefined, x5t: Nullable<string> | undefined, x5t256: Nullable<string> | undefined, x5c: Nullable<kotlin.collections.KtList<string>> | undefined, exp: Nullable<number> | undefined, nbf: Nullable<number> | undefined, iat: Nullable<number> | undefined, e: string, n: string);
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<kotlin.collections.KtList<string>>;
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<kotlin.collections.KtList<string>>;
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<kotlin.collections.KtList<string>>, x5u?: Nullable<string>, x5t?: Nullable<string>, x5t256?: Nullable<string>, x5c?: Nullable<kotlin.collections.KtList<string>>, exp?: Nullable<number>, nbf?: Nullable<number>, iat?: Nullable<number>, e?: string, n?: string): com.doordeck.multiplatform.sdk.model.responses.RsaKeyResponse;
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<kotlin.collections.KtList<string>> | undefined, x5u: Nullable<string> | undefined, x5t: Nullable<string> | undefined, x5t256: Nullable<string> | undefined, x5c: Nullable<kotlin.collections.KtList<string>> | undefined, exp: Nullable<number> | undefined, nbf: Nullable<number> | undefined, iat: Nullable<number> | undefined, crv: string, x: string, y: string);
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<kotlin.collections.KtList<string>>;
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<kotlin.collections.KtList<string>>;
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<kotlin.collections.KtList<string>>, x5u?: Nullable<string>, x5t?: Nullable<string>, x5t256?: Nullable<string>, x5c?: Nullable<kotlin.collections.KtList<string>>, exp?: Nullable<number>, nbf?: Nullable<number>, iat?: Nullable<number>, crv?: string, x?: string, y?: string): com.doordeck.multiplatform.sdk.model.responses.EcKeyResponse;
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<kotlin.collections.KtList<string>> | undefined, x5u: Nullable<string> | undefined, x5t: Nullable<string> | undefined, x5t256: Nullable<string> | undefined, x5c: Nullable<kotlin.collections.KtList<string>> | undefined, exp: Nullable<number> | undefined, nbf: Nullable<number> | undefined, iat: Nullable<number> | undefined, crv: string, x: string);
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<kotlin.collections.KtList<string>>;
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<kotlin.collections.KtList<string>>;
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<kotlin.collections.KtList<string>>, x5u?: Nullable<string>, x5t?: Nullable<string>, x5t256?: Nullable<string>, x5c?: Nullable<kotlin.collections.KtList<string>>, exp?: Nullable<number>, nbf?: Nullable<number>, iat?: Nullable<number>, crv?: string, x?: string): com.doordeck.multiplatform.sdk.model.responses.Ed25519KeyResponse;
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: kotlin.collections.KtList<string>);
2514
+ constructor(siteId: string, tileId: string, deviceIds: Array<string>);
2515
2515
  get siteId(): string;
2516
2516
  get tileId(): string;
2517
- get deviceIds(): kotlin.collections.KtList<string>;
2518
- copy(siteId?: string, tileId?: string, deviceIds?: kotlin.collections.KtList<string>): com.doordeck.multiplatform.sdk.model.responses.TileLocksResponse;
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;