@doordeck/doordeck-headless-sdk 0.138.0 → 0.140.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.
@@ -17,22 +17,6 @@ export declare namespace kotlin.collections {
17
17
  private constructor();
18
18
  }
19
19
  }
20
- interface KtSet<E> /* extends kotlin.collections.Collection<E> */ {
21
- asJsReadonlySetView(): ReadonlySet<E>;
22
- readonly __doNotUseOrImplementIt: {
23
- readonly "kotlin.collections.KtSet": unique symbol;
24
- };
25
- }
26
- abstract class KtSet<E> extends KtSingleton<KtSet.$metadata$.constructor>() {
27
- private constructor();
28
- }
29
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
30
- namespace KtSet.$metadata$ {
31
- abstract class constructor {
32
- fromJsSet<E>(set: ReadonlySet<E>): kotlin.collections.KtSet<E>;
33
- private constructor();
34
- }
35
- }
36
20
  interface KtMap<K, V> {
37
21
  asJsReadonlyMapView(): ReadonlyMap<K, V>;
38
22
  readonly __doNotUseOrImplementIt: {
@@ -793,7 +777,7 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
793
777
  abstract class constructor {
794
778
  login(email: string, password: string): Promise<com.doordeck.multiplatform.sdk.model.responses.FusionLoginResponse>;
795
779
  getIntegrationType(): Promise<com.doordeck.multiplatform.sdk.model.responses.IntegrationTypeResponse>;
796
- getIntegrationConfiguration(type: string): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.IntegrationConfigurationResponse>>;
780
+ getIntegrationConfiguration(type: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.IntegrationConfigurationResponse>>;
797
781
  enableDoor(name: string, siteId: string, controller: com.doordeck.multiplatform.sdk.model.data.FusionOperations.LockController): Promise<any>;
798
782
  deleteDoor(deviceId: string): Promise<any>;
799
783
  getDoorStatus(deviceId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.DoorStateResponse>;
@@ -828,16 +812,16 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
828
812
  namespace LockOperationsApi.$metadata$ {
829
813
  abstract class constructor {
830
814
  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>>;
815
+ getLockAuditTrail(lockId: string, start: number, end: number): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.AuditResponse>>;
816
+ getAuditForUser(userId: string, start: number, end: number): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.AuditResponse>>;
817
+ getUsersForLock(lockId: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.UserLockResponse>>;
834
818
  getLocksForUser(userId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.LockUserResponse>;
835
819
  updateLockName(lockId: string, name?: Nullable<string>): Promise<any>;
836
820
  updateLockFavourite(lockId: string, favourite: boolean): Promise<any>;
837
821
  updateLockSettingDefaultName(lockId: string, name: string): Promise<any>;
838
- setLockSettingPermittedAddresses(lockId: string, permittedAddresses: kotlin.collections.KtList<string>): Promise<any>;
822
+ setLockSettingPermittedAddresses(lockId: string, permittedAddresses: Array<string>): Promise<any>;
839
823
  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>;
824
+ setLockSettingTimeRestrictions(lockId: string, times: Array<com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement>): Promise<any>;
841
825
  updateLockSettingLocationRestrictions(lockId: string, location?: Nullable<com.doordeck.multiplatform.sdk.model.data.LockOperations.LocationRequirement>): Promise<any>;
842
826
  getUserPublicKey(userEmail: string, visitor?: boolean): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
843
827
  getUserPublicKeyByEmail(email: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
@@ -845,18 +829,18 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
845
829
  getUserPublicKeyByLocalKey(localKey: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
846
830
  getUserPublicKeyByForeignKey(foreignKey: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
847
831
  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>>;
832
+ getUserPublicKeyByEmails(emails: Array<string>): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
833
+ getUserPublicKeyByTelephones(telephones: Array<string>): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
834
+ getUserPublicKeyByLocalKeys(localKeys: Array<string>): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
835
+ getUserPublicKeyByForeignKeys(foreignKeys: Array<string>): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
852
836
  unlock(unlockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation): Promise<any>;
853
837
  shareLock(shareLockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLockOperation): Promise<any>;
854
838
  batchShareLock(batchShareLockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation): Promise<any>;
855
839
  revokeAccessToLock(revokeAccessToLockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation): Promise<any>;
856
840
  updateSecureSettingUnlockDuration(updateSecureSettingUnlockDuration: com.doordeck.multiplatform.sdk.model.data.LockOperations.UpdateSecureSettingUnlockDuration): Promise<any>;
857
841
  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>>;
842
+ getPinnedLocks(): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.LockResponse>>;
843
+ getShareableLocks(): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.ShareableLockResponse>>;
860
844
  private constructor();
861
845
  }
862
846
  }
@@ -870,7 +854,7 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
870
854
  namespace PlatformApi.$metadata$ {
871
855
  abstract class constructor {
872
856
  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>>;
857
+ listApplications(): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.ApplicationResponse>>;
874
858
  getApplication(applicationId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.ApplicationResponse>;
875
859
  updateApplicationName(applicationId: string, name: string): Promise<any>;
876
860
  updateApplicationCompanyName(applicationId: string, companyName: string): Promise<any>;
@@ -889,7 +873,7 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
889
873
  removeCorsDomain(applicationId: string, url: string): Promise<any>;
890
874
  addApplicationOwner(applicationId: string, userId: string): Promise<any>;
891
875
  removeApplicationOwner(applicationId: string, userId: string): Promise<any>;
892
- getApplicationOwnersDetails(applicationId: string): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.ApplicationOwnerDetailsResponse>>;
876
+ getApplicationOwnersDetails(applicationId: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.ApplicationOwnerDetailsResponse>>;
893
877
  private constructor();
894
878
  }
895
879
  }
@@ -902,9 +886,9 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
902
886
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
903
887
  namespace SitesApi.$metadata$ {
904
888
  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>>;
889
+ listSites(): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.SiteResponse>>;
890
+ getLocksForSite(siteId: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.LockResponse>>;
891
+ getUsersForSite(siteId: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.UserForSiteResponse>>;
908
892
  private constructor();
909
893
  }
910
894
  }
@@ -918,7 +902,7 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
918
902
  namespace TilesApi.$metadata$ {
919
903
  abstract class constructor {
920
904
  getLocksBelongingToTile(tileId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.TileLocksResponse>;
921
- associateMultipleLocks(tileId: string, siteId: string, lockIds: kotlin.collections.KtList<string>): Promise<any>;
905
+ associateMultipleLocks(tileId: string, siteId: string, lockIds: Array<string>): Promise<any>;
922
906
  private constructor();
923
907
  }
924
908
  }
@@ -946,15 +930,15 @@ export declare namespace com.doordeck.multiplatform.sdk.context {
946
930
  getUserId(): Nullable<string>;
947
931
  setUserEmail(email: string): void;
948
932
  getUserEmail(): Nullable<string>;
949
- setCertificateChain(certificateChain: kotlin.collections.KtList<string>): void;
950
- getCertificateChain(): Nullable<kotlin.collections.KtList<string>>;
933
+ setCertificateChain(certificateChain: Array<string>): void;
934
+ getCertificateChain(): Nullable<Array<string>>;
951
935
  isCertificateChainInvalidOrExpired(): boolean;
952
936
  setKeyPair(publicKey: Int8Array, privateKey: Int8Array): void;
953
937
  getKeyPair(): Nullable<com.doordeck.multiplatform.sdk.model.data.Crypto.KeyPair>;
954
938
  setKeyPairVerified(publicKey: Nullable<Int8Array>): void;
955
939
  isKeyPairVerified(): boolean;
956
940
  isKeyPairValid(): boolean;
957
- setOperationContext(userId: string, certificateChain: kotlin.collections.KtList<string>, publicKey: Int8Array, privateKey: Int8Array, isKeyPairVerified: boolean): void;
941
+ setOperationContext(userId: string, certificateChain: Array<string>, publicKey: Int8Array, privateKey: Int8Array, isKeyPairVerified: boolean): void;
958
942
  getContextState(): com.doordeck.multiplatform.sdk.model.common.ContextState;
959
943
  clearContext(): void;
960
944
  private constructor();
@@ -1312,12 +1296,12 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1312
1296
  }
1313
1297
  namespace LockOperations {
1314
1298
  class TimeRequirement {
1315
- constructor(start: string, end: string, timezone: string, days: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>);
1299
+ constructor(start: string, end: string, timezone: string, days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>);
1316
1300
  get start(): string;
1317
1301
  get end(): string;
1318
1302
  get timezone(): string;
1319
- get days(): kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
1320
- copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement;
1303
+ get days(): Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
1304
+ copy(start?: string, end?: string, timezone?: string, days?: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement;
1321
1305
  toString(): string;
1322
1306
  hashCode(): number;
1323
1307
  equals(other: Nullable<any>): boolean;
@@ -1332,7 +1316,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1332
1316
  setStart(start: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement.Builder;
1333
1317
  setEnd(end: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement.Builder;
1334
1318
  setTimezone(timezone: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement.Builder;
1335
- setDays(days: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement.Builder;
1319
+ setDays(days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement.Builder;
1336
1320
  build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement;
1337
1321
  }
1338
1322
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -1372,13 +1356,13 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1372
1356
  }
1373
1357
  }
1374
1358
  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>>);
1359
+ constructor(start: string, end: string, timezone: string, days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Nullable<Array<string>>);
1376
1360
  get start(): string;
1377
1361
  get end(): string;
1378
1362
  get timezone(): string;
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;
1363
+ get days(): Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
1364
+ get exceptions(): Nullable<Array<string>>;
1365
+ copy(start?: string, end?: string, timezone?: string, days?: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween;
1382
1366
  toString(): string;
1383
1367
  hashCode(): number;
1384
1368
  equals(other: Nullable<any>): boolean;
@@ -1393,8 +1377,8 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1393
1377
  setStart(start: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
1394
1378
  setEnd(end: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
1395
1379
  setTimezone(timezone: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
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;
1380
+ setDays(days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
1381
+ setExceptions(exceptions: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
1398
1382
  build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween;
1399
1383
  }
1400
1384
  /** @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 +1387,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1403
1387
  }
1404
1388
  }
1405
1389
  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>>);
1390
+ constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, directAccessEndpoints?: Nullable<Array<string>>);
1407
1391
  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;
1392
+ get directAccessEndpoints(): Nullable<Array<string>>;
1393
+ copy(baseOperation?: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, directAccessEndpoints?: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation;
1410
1394
  toString(): string;
1411
1395
  hashCode(): number;
1412
1396
  equals(other: Nullable<any>): boolean;
@@ -1420,7 +1404,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1420
1404
  class Builder {
1421
1405
  constructor();
1422
1406
  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;
1407
+ setDirectAccessEndpoints(directAccessEndpoints: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation.Builder;
1424
1408
  build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation;
1425
1409
  }
1426
1410
  /** @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 +1470,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1486
1470
  }
1487
1471
  }
1488
1472
  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>);
1473
+ constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users: Array<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>);
1490
1474
  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;
1475
+ get users(): Array<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>;
1476
+ 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
1477
  toString(): string;
1494
1478
  hashCode(): number;
1495
1479
  equals(other: Nullable<any>): boolean;
@@ -1503,7 +1487,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1503
1487
  class Builder {
1504
1488
  constructor();
1505
1489
  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;
1490
+ setUsers(users: Array<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation.Builder;
1507
1491
  build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation;
1508
1492
  }
1509
1493
  /** @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 +1496,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1512
1496
  }
1513
1497
  }
1514
1498
  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>);
1499
+ constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users: Array<string>);
1516
1500
  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;
1501
+ get users(): Array<string>;
1502
+ copy(baseOperation?: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users?: Array<string>): com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation;
1519
1503
  toString(): string;
1520
1504
  hashCode(): number;
1521
1505
  equals(other: Nullable<any>): boolean;
@@ -1529,7 +1513,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1529
1513
  class Builder {
1530
1514
  constructor();
1531
1515
  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;
1516
+ setUsers(users: Array<string>): com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation.Builder;
1533
1517
  build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation;
1534
1518
  }
1535
1519
  /** @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 +1574,16 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1590
1574
  }
1591
1575
  }
1592
1576
  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);
1577
+ 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
1578
  get userId(): Nullable<string>;
1595
- get userCertificateChain(): Nullable<kotlin.collections.KtList<string>>;
1579
+ get userCertificateChain(): Nullable<Array<string>>;
1596
1580
  get userPrivateKey(): Nullable<Int8Array>;
1597
1581
  get lockId(): string;
1598
1582
  get notBefore(): number;
1599
1583
  get issuedAt(): number;
1600
1584
  get expiresAt(): number;
1601
1585
  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;
1586
+ 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
1587
  toString(): string;
1604
1588
  hashCode(): number;
1605
1589
  equals(other: Nullable<any>): boolean;
@@ -1612,7 +1596,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
1612
1596
  class Builder {
1613
1597
  constructor();
1614
1598
  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;
1599
+ setUserCertificateChain(userCertificateChain: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation.Builder;
1616
1600
  setUserPrivateKey(userPrivateKey: Nullable<Int8Array>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation.Builder;
1617
1601
  setLockId(lockId: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation.Builder;
1618
1602
  setNotBefore(notBefore: number): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation.Builder;
@@ -1892,10 +1876,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
1892
1876
  const constructor: abstract new () => UserDetailsResponse;
1893
1877
  }
1894
1878
  class RegisterEphemeralKeyResponse {
1895
- constructor(certificateChain: kotlin.collections.KtList<string>, userId: string);
1896
- get certificateChain(): kotlin.collections.KtList<string>;
1879
+ constructor(certificateChain: Array<string>, userId: string);
1880
+ get certificateChain(): Array<string>;
1897
1881
  get userId(): string;
1898
- copy(certificateChain?: kotlin.collections.KtList<string>, userId?: string): com.doordeck.multiplatform.sdk.model.responses.RegisterEphemeralKeyResponse;
1882
+ copy(certificateChain?: Array<string>, userId?: string): com.doordeck.multiplatform.sdk.model.responses.RegisterEphemeralKeyResponse;
1899
1883
  toString(): string;
1900
1884
  hashCode(): number;
1901
1885
  equals(other: Nullable<any>): boolean;
@@ -2057,17 +2041,17 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2057
2041
  const constructor: abstract new () => LockResponse;
2058
2042
  }
2059
2043
  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>);
2044
+ 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
2045
  get unlockTime(): number;
2062
- get permittedAddresses(): kotlin.collections.KtList<string>;
2046
+ get permittedAddresses(): Array<string>;
2063
2047
  get defaultName(): string;
2064
2048
  get usageRequirements(): Nullable<com.doordeck.multiplatform.sdk.model.responses.UsageRequirementsResponse>;
2065
2049
  get unlockBetweenWindow(): Nullable<com.doordeck.multiplatform.sdk.model.responses.UnlockBetweenSettingResponse>;
2066
- get tiles(): kotlin.collections.KtList<string>;
2050
+ get tiles(): Array<string>;
2067
2051
  get hidden(): boolean;
2068
- get directAccessEndpoints(): kotlin.collections.KtList<string>;
2052
+ get directAccessEndpoints(): Array<string>;
2069
2053
  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;
2054
+ 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
2055
  toString(): string;
2072
2056
  hashCode(): number;
2073
2057
  equals(other: Nullable<any>): boolean;
@@ -2077,10 +2061,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2077
2061
  const constructor: abstract new () => LockSettingsResponse;
2078
2062
  }
2079
2063
  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>;
2064
+ constructor(time?: Array<com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse>, location?: Nullable<com.doordeck.multiplatform.sdk.model.responses.LocationRequirementResponse>);
2065
+ get time(): Array<com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse>;
2082
2066
  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;
2067
+ 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
2068
  toString(): string;
2085
2069
  hashCode(): number;
2086
2070
  equals(other: Nullable<any>): boolean;
@@ -2090,12 +2074,12 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2090
2074
  const constructor: abstract new () => UsageRequirementsResponse;
2091
2075
  }
2092
2076
  class TimeRequirementResponse {
2093
- constructor(start: string, end: string, timezone: string, days: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>);
2077
+ constructor(start: string, end: string, timezone: string, days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>);
2094
2078
  get start(): string;
2095
2079
  get end(): string;
2096
2080
  get timezone(): string;
2097
- get days(): kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
2098
- copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtSet<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse;
2081
+ get days(): Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
2082
+ copy(start?: string, end?: string, timezone?: string, days?: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse;
2099
2083
  toString(): string;
2100
2084
  hashCode(): number;
2101
2085
  equals(other: Nullable<any>): boolean;
@@ -2121,13 +2105,13 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2121
2105
  const constructor: abstract new () => LocationRequirementResponse;
2122
2106
  }
2123
2107
  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>);
2108
+ constructor(start: string, end: string, timezone: string, days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Array<string>);
2125
2109
  get start(): string;
2126
2110
  get end(): string;
2127
2111
  get timezone(): string;
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;
2112
+ get days(): Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
2113
+ get exceptions(): Array<string>;
2114
+ copy(start?: string, end?: string, timezone?: string, days?: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Array<string>): com.doordeck.multiplatform.sdk.model.responses.UnlockBetweenSettingResponse;
2131
2115
  toString(): string;
2132
2116
  hashCode(): number;
2133
2117
  equals(other: Nullable<any>): boolean;
@@ -2211,7 +2195,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2211
2195
  const constructor: abstract new () => UserLockResponse;
2212
2196
  }
2213
2197
  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>);
2198
+ 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
2199
  get userId(): string;
2216
2200
  get email(): string;
2217
2201
  get publicKey(): string;
@@ -2220,8 +2204,8 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2220
2204
  get foreign(): boolean;
2221
2205
  get start(): Nullable<number>;
2222
2206
  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;
2207
+ get devices(): Array<com.doordeck.multiplatform.sdk.model.responses.LockUserDetailsResponse>;
2208
+ 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
2209
  toString(): string;
2226
2210
  hashCode(): number;
2227
2211
  equals(other: Nullable<any>): boolean;
@@ -2281,13 +2265,13 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2281
2265
  }
2282
2266
  export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2283
2267
  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>);
2268
+ 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
2269
  get applicationId(): string;
2286
2270
  get name(): string;
2287
2271
  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>;
2272
+ get owners(): Array<string>;
2273
+ get corsDomains(): Array<string>;
2274
+ get authDomains(): Array<string>;
2291
2275
  get logoUrl(): Nullable<string>;
2292
2276
  get privacyPolicy(): Nullable<string>;
2293
2277
  get mailingAddress(): Nullable<string>;
@@ -2299,7 +2283,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2299
2283
  get authKeys(): kotlin.collections.KtMap<string, com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse>;
2300
2284
  get oauth(): Nullable<com.doordeck.multiplatform.sdk.model.responses.OauthResponse>;
2301
2285
  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;
2286
+ 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
2287
  toString(): string;
2304
2288
  hashCode(): number;
2305
2289
  equals(other: Nullable<any>): boolean;
@@ -2312,11 +2296,11 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2312
2296
  readonly kid: string;
2313
2297
  readonly use: string;
2314
2298
  readonly alg: Nullable<string>;
2315
- readonly ops: Nullable<kotlin.collections.KtList<string>>;
2299
+ readonly ops: Nullable<Array<string>>;
2316
2300
  readonly x5u: Nullable<string>;
2317
2301
  readonly x5t: Nullable<string>;
2318
2302
  readonly x5t256: Nullable<string>;
2319
- readonly x5c: Nullable<kotlin.collections.KtList<string>>;
2303
+ readonly x5c: Nullable<Array<string>>;
2320
2304
  readonly exp: Nullable<number>;
2321
2305
  readonly nbf: Nullable<number>;
2322
2306
  readonly iat: Nullable<number>;
@@ -2325,21 +2309,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2325
2309
  };
2326
2310
  }
2327
2311
  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);
2312
+ 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
2313
  get use(): string;
2330
2314
  get kid(): string;
2331
2315
  get alg(): Nullable<string>;
2332
- get ops(): Nullable<kotlin.collections.KtList<string>>;
2316
+ get ops(): Nullable<Array<string>>;
2333
2317
  get x5u(): Nullable<string>;
2334
2318
  get x5t(): Nullable<string>;
2335
2319
  get x5t256(): Nullable<string>;
2336
- get x5c(): Nullable<kotlin.collections.KtList<string>>;
2320
+ get x5c(): Nullable<Array<string>>;
2337
2321
  get exp(): Nullable<number>;
2338
2322
  get nbf(): Nullable<number>;
2339
2323
  get iat(): Nullable<number>;
2340
2324
  get e(): string;
2341
2325
  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;
2326
+ 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
2327
  toString(): string;
2344
2328
  hashCode(): number;
2345
2329
  equals(other: Nullable<any>): boolean;
@@ -2350,22 +2334,22 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2350
2334
  const constructor: abstract new () => RsaKeyResponse;
2351
2335
  }
2352
2336
  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);
2337
+ 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
2338
  get use(): string;
2355
2339
  get kid(): string;
2356
2340
  get alg(): Nullable<string>;
2357
- get ops(): Nullable<kotlin.collections.KtList<string>>;
2341
+ get ops(): Nullable<Array<string>>;
2358
2342
  get x5u(): Nullable<string>;
2359
2343
  get x5t(): Nullable<string>;
2360
2344
  get x5t256(): Nullable<string>;
2361
- get x5c(): Nullable<kotlin.collections.KtList<string>>;
2345
+ get x5c(): Nullable<Array<string>>;
2362
2346
  get exp(): Nullable<number>;
2363
2347
  get nbf(): Nullable<number>;
2364
2348
  get iat(): Nullable<number>;
2365
2349
  get crv(): string;
2366
2350
  get x(): string;
2367
2351
  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;
2352
+ 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
2353
  toString(): string;
2370
2354
  hashCode(): number;
2371
2355
  equals(other: Nullable<any>): boolean;
@@ -2376,21 +2360,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2376
2360
  const constructor: abstract new () => EcKeyResponse;
2377
2361
  }
2378
2362
  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);
2363
+ 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
2364
  get use(): string;
2381
2365
  get kid(): string;
2382
2366
  get alg(): Nullable<string>;
2383
- get ops(): Nullable<kotlin.collections.KtList<string>>;
2367
+ get ops(): Nullable<Array<string>>;
2384
2368
  get x5u(): Nullable<string>;
2385
2369
  get x5t(): Nullable<string>;
2386
2370
  get x5t256(): Nullable<string>;
2387
- get x5c(): Nullable<kotlin.collections.KtList<string>>;
2371
+ get x5c(): Nullable<Array<string>>;
2388
2372
  get exp(): Nullable<number>;
2389
2373
  get nbf(): Nullable<number>;
2390
2374
  get iat(): Nullable<number>;
2391
2375
  get crv(): string;
2392
2376
  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;
2377
+ 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
2378
  toString(): string;
2395
2379
  hashCode(): number;
2396
2380
  equals(other: Nullable<any>): boolean;
@@ -2511,11 +2495,11 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2511
2495
  }
2512
2496
  export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2513
2497
  class TileLocksResponse {
2514
- constructor(siteId: string, tileId: string, deviceIds: kotlin.collections.KtList<string>);
2498
+ constructor(siteId: string, tileId: string, deviceIds: Array<string>);
2515
2499
  get siteId(): string;
2516
2500
  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;
2501
+ get deviceIds(): Array<string>;
2502
+ copy(siteId?: string, tileId?: string, deviceIds?: Array<string>): com.doordeck.multiplatform.sdk.model.responses.TileLocksResponse;
2519
2503
  toString(): string;
2520
2504
  hashCode(): number;
2521
2505
  equals(other: Nullable<any>): boolean;