@doordeck/doordeck-headless-sdk 0.61.0 → 0.64.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/kotlin/Kotlin-DateTime-library-kotlinx-datetime.js +37 -37
- package/kotlin/KotlinMultiplatformLibsodium-multiplatform-crypto-libsodium-bindings.js +5 -5
- package/kotlin/MultiplatformSettings-multiplatform-settings.js +2 -2
- package/kotlin/doordeck-sdk.d.ts +328 -5
- package/kotlin/doordeck-sdk.js +10251 -4888
- package/kotlin/kotlin-kotlin-stdlib.js +152 -151
- package/kotlin/kotlinx-atomicfu.js +4 -4
- package/kotlin/kotlinx-coroutines-core.js +36 -36
- package/kotlin/kotlinx-io-kotlinx-io-core.js +15 -15
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core.js +58 -58
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json.js +61 -61
- package/kotlin/ktor-ktor-client-ktor-client-core.js +39 -39
- package/kotlin/ktor-ktor-client-ktor-client-plugins-ktor-client-auth.js +11 -11
- package/kotlin/ktor-ktor-client-ktor-client-plugins-ktor-client-content-negotiation.js +13 -13
- package/kotlin/ktor-ktor-http.js +54 -54
- package/kotlin/ktor-ktor-io.js +30 -30
- package/kotlin/ktor-ktor-shared-ktor-events.js +4 -4
- package/kotlin/ktor-ktor-shared-ktor-serialization-ktor-serialization-kotlinx.js +9 -9
- package/kotlin/ktor-ktor-shared-ktor-serialization.js +9 -9
- package/kotlin/ktor-ktor-shared-ktor-websockets.js +11 -11
- package/kotlin/ktor-ktor-utils.js +35 -35
- package/package.json +1 -1
package/kotlin/doordeck-sdk.d.ts
CHANGED
|
@@ -255,11 +255,19 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
255
255
|
constructor(_private: Int8Array, _public: Int8Array);
|
|
256
256
|
get private(): Int8Array;
|
|
257
257
|
get public(): Int8Array;
|
|
258
|
+
copy(_private?: Int8Array, _public?: Int8Array): com.doordeck.multiplatform.sdk.api.model.Crypto.KeyPair;
|
|
259
|
+
toString(): string;
|
|
260
|
+
hashCode(): number;
|
|
261
|
+
equals(other: Nullable<any>): boolean;
|
|
258
262
|
}
|
|
259
263
|
class EncodedKeyPair {
|
|
260
264
|
constructor(_private: string, _public: string);
|
|
261
265
|
get private(): string;
|
|
262
266
|
get public(): string;
|
|
267
|
+
copy(_private?: string, _public?: string): com.doordeck.multiplatform.sdk.api.model.Crypto.EncodedKeyPair;
|
|
268
|
+
toString(): string;
|
|
269
|
+
hashCode(): number;
|
|
270
|
+
equals(other: Nullable<any>): boolean;
|
|
263
271
|
static get Companion(): {
|
|
264
272
|
};
|
|
265
273
|
}
|
|
@@ -283,6 +291,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
283
291
|
get password(): string;
|
|
284
292
|
get doorId(): number;
|
|
285
293
|
get baseUrl(): Nullable<string>;
|
|
294
|
+
copy(username?: string, password?: string, doorId?: number, baseUrl?: Nullable<string>): com.doordeck.multiplatform.sdk.api.model.Fusion.AlpetaController;
|
|
295
|
+
toString(): string;
|
|
296
|
+
hashCode(): number;
|
|
297
|
+
equals(other: Nullable<any>): boolean;
|
|
286
298
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
287
299
|
static get Companion(): {
|
|
288
300
|
};
|
|
@@ -293,6 +305,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
293
305
|
get password(): string;
|
|
294
306
|
get doorId(): number;
|
|
295
307
|
get baseUrl(): Nullable<string>;
|
|
308
|
+
copy(username?: string, password?: string, doorId?: number, baseUrl?: Nullable<string>): com.doordeck.multiplatform.sdk.api.model.Fusion.AmagController;
|
|
309
|
+
toString(): string;
|
|
310
|
+
hashCode(): number;
|
|
311
|
+
equals(other: Nullable<any>): boolean;
|
|
296
312
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
297
313
|
static get Companion(): {
|
|
298
314
|
};
|
|
@@ -301,6 +317,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
301
317
|
constructor(baseUrl: string, doorId: string);
|
|
302
318
|
get baseUrl(): string;
|
|
303
319
|
get doorId(): string;
|
|
320
|
+
copy(baseUrl?: string, doorId?: string): com.doordeck.multiplatform.sdk.api.model.Fusion.AssaAbloyController;
|
|
321
|
+
toString(): string;
|
|
322
|
+
hashCode(): number;
|
|
323
|
+
equals(other: Nullable<any>): boolean;
|
|
304
324
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
305
325
|
static get Companion(): {
|
|
306
326
|
};
|
|
@@ -311,6 +331,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
311
331
|
get username(): string;
|
|
312
332
|
get password(): string;
|
|
313
333
|
get doorId(): string;
|
|
334
|
+
copy(baseUrl?: string, username?: string, password?: string, doorId?: string): com.doordeck.multiplatform.sdk.api.model.Fusion.AvigilonController;
|
|
335
|
+
toString(): string;
|
|
336
|
+
hashCode(): number;
|
|
337
|
+
equals(other: Nullable<any>): boolean;
|
|
314
338
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
315
339
|
static get Companion(): {
|
|
316
340
|
};
|
|
@@ -319,6 +343,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
319
343
|
constructor(baseUrl: string, doorIdentifier: string);
|
|
320
344
|
get baseUrl(): string;
|
|
321
345
|
get doorIdentifier(): string;
|
|
346
|
+
copy(baseUrl?: string, doorIdentifier?: string): com.doordeck.multiplatform.sdk.api.model.Fusion.AxisController;
|
|
347
|
+
toString(): string;
|
|
348
|
+
hashCode(): number;
|
|
349
|
+
equals(other: Nullable<any>): boolean;
|
|
322
350
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
323
351
|
static get Companion(): {
|
|
324
352
|
};
|
|
@@ -326,6 +354,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
326
354
|
class DemoController implements com.doordeck.multiplatform.sdk.api.model.Fusion.LockController {
|
|
327
355
|
constructor(port?: number);
|
|
328
356
|
get port(): number;
|
|
357
|
+
copy(port?: number): com.doordeck.multiplatform.sdk.api.model.Fusion.DemoController;
|
|
358
|
+
toString(): string;
|
|
359
|
+
hashCode(): number;
|
|
360
|
+
equals(other: Nullable<any>): boolean;
|
|
329
361
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
330
362
|
static get Companion(): {
|
|
331
363
|
};
|
|
@@ -335,6 +367,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
335
367
|
get baseUrl(): Nullable<string>;
|
|
336
368
|
get apiKey(): string;
|
|
337
369
|
get doorId(): string;
|
|
370
|
+
copy(baseUrl?: Nullable<string>, apiKey?: string, doorId?: string): com.doordeck.multiplatform.sdk.api.model.Fusion.GallagherController;
|
|
371
|
+
toString(): string;
|
|
372
|
+
hashCode(): number;
|
|
373
|
+
equals(other: Nullable<any>): boolean;
|
|
338
374
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
339
375
|
static get Companion(): {
|
|
340
376
|
};
|
|
@@ -345,6 +381,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
345
381
|
get username(): string;
|
|
346
382
|
get password(): string;
|
|
347
383
|
get doorId(): string;
|
|
384
|
+
copy(baseUrl?: string, username?: string, password?: string, doorId?: string): com.doordeck.multiplatform.sdk.api.model.Fusion.GenetecController;
|
|
385
|
+
toString(): string;
|
|
386
|
+
hashCode(): number;
|
|
387
|
+
equals(other: Nullable<any>): boolean;
|
|
348
388
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
349
389
|
static get Companion(): {
|
|
350
390
|
};
|
|
@@ -357,6 +397,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
357
397
|
get directoryId(): string;
|
|
358
398
|
get panelId(): string;
|
|
359
399
|
get readerId(): string;
|
|
400
|
+
copy(baseUrl?: string, username?: string, password?: string, directoryId?: string, panelId?: string, readerId?: string): com.doordeck.multiplatform.sdk.api.model.Fusion.LenelController;
|
|
401
|
+
toString(): string;
|
|
402
|
+
hashCode(): number;
|
|
403
|
+
equals(other: Nullable<any>): boolean;
|
|
360
404
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
361
405
|
static get Companion(): {
|
|
362
406
|
};
|
|
@@ -365,6 +409,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
365
409
|
constructor(host: string, output: number);
|
|
366
410
|
get host(): string;
|
|
367
411
|
get output(): number;
|
|
412
|
+
copy(host?: string, output?: number): com.doordeck.multiplatform.sdk.api.model.Fusion.MitrefinchController;
|
|
413
|
+
toString(): string;
|
|
414
|
+
hashCode(): number;
|
|
415
|
+
equals(other: Nullable<any>): boolean;
|
|
368
416
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
369
417
|
static get Companion(): {
|
|
370
418
|
};
|
|
@@ -374,6 +422,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
374
422
|
get host(): string;
|
|
375
423
|
get address(): string;
|
|
376
424
|
get output(): number;
|
|
425
|
+
copy(host?: string, address?: string, output?: number): com.doordeck.multiplatform.sdk.api.model.Fusion.PaxtonNet2Controller;
|
|
426
|
+
toString(): string;
|
|
427
|
+
hashCode(): number;
|
|
428
|
+
equals(other: Nullable<any>): boolean;
|
|
377
429
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
378
430
|
static get Companion(): {
|
|
379
431
|
};
|
|
@@ -384,6 +436,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
384
436
|
get username(): string;
|
|
385
437
|
get password(): string;
|
|
386
438
|
get applianceId(): number;
|
|
439
|
+
copy(baseUrl?: string, username?: string, password?: string, applianceId?: number): com.doordeck.multiplatform.sdk.api.model.Fusion.Paxton10Controller;
|
|
440
|
+
toString(): string;
|
|
441
|
+
hashCode(): number;
|
|
442
|
+
equals(other: Nullable<any>): boolean;
|
|
387
443
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
388
444
|
static get Companion(): {
|
|
389
445
|
};
|
|
@@ -393,6 +449,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
393
449
|
get username(): string;
|
|
394
450
|
get password(): string;
|
|
395
451
|
get controllerId(): number;
|
|
452
|
+
copy(username?: string, password?: string, controllerId?: number): com.doordeck.multiplatform.sdk.api.model.Fusion.IntegraV1Controller;
|
|
453
|
+
toString(): string;
|
|
454
|
+
hashCode(): number;
|
|
455
|
+
equals(other: Nullable<any>): boolean;
|
|
396
456
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
397
457
|
static get Companion(): {
|
|
398
458
|
};
|
|
@@ -404,6 +464,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
404
464
|
get controllerId(): number;
|
|
405
465
|
get cardholderId(): number;
|
|
406
466
|
get pinCode(): Nullable<number>;
|
|
467
|
+
copy(baseUrl?: string, sessionId?: string, controllerId?: number, cardholderId?: number, pinCode?: Nullable<number>): com.doordeck.multiplatform.sdk.api.model.Fusion.IntegraV2Controller;
|
|
468
|
+
toString(): string;
|
|
469
|
+
hashCode(): number;
|
|
470
|
+
equals(other: Nullable<any>): boolean;
|
|
407
471
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
408
472
|
static get Companion(): {
|
|
409
473
|
};
|
|
@@ -413,6 +477,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
413
477
|
get dataSource(): com.doordeck.multiplatform.sdk.api.model.Fusion.DataSource;
|
|
414
478
|
get outputChannel(): number;
|
|
415
479
|
get controllerSerial(): number;
|
|
480
|
+
copy(dataSource?: com.doordeck.multiplatform.sdk.api.model.Fusion.DataSource, outputChannel?: number, controllerSerial?: number): com.doordeck.multiplatform.sdk.api.model.Fusion.PacController;
|
|
481
|
+
toString(): string;
|
|
482
|
+
hashCode(): number;
|
|
483
|
+
equals(other: Nullable<any>): boolean;
|
|
416
484
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
417
485
|
static get Companion(): {
|
|
418
486
|
};
|
|
@@ -423,6 +491,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
423
491
|
get url(): string;
|
|
424
492
|
get user(): string;
|
|
425
493
|
get password(): string;
|
|
494
|
+
copy(driverClass?: string, url?: string, user?: string, password?: string): com.doordeck.multiplatform.sdk.api.model.Fusion.DataSource;
|
|
495
|
+
toString(): string;
|
|
496
|
+
hashCode(): number;
|
|
497
|
+
equals(other: Nullable<any>): boolean;
|
|
426
498
|
static get Companion(): {
|
|
427
499
|
};
|
|
428
500
|
}
|
|
@@ -432,6 +504,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
432
504
|
get username(): string;
|
|
433
505
|
get password(): string;
|
|
434
506
|
get doorId(): number;
|
|
507
|
+
copy(dbUrl?: Nullable<string>, username?: string, password?: string, doorId?: number): com.doordeck.multiplatform.sdk.api.model.Fusion.TdsiExgardeController;
|
|
508
|
+
toString(): string;
|
|
509
|
+
hashCode(): number;
|
|
510
|
+
equals(other: Nullable<any>): boolean;
|
|
435
511
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
436
512
|
static get Companion(): {
|
|
437
513
|
};
|
|
@@ -442,6 +518,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
442
518
|
get username(): string;
|
|
443
519
|
get password(): string;
|
|
444
520
|
get doorId(): number;
|
|
521
|
+
copy(host?: string, username?: string, password?: string, doorId?: number): com.doordeck.multiplatform.sdk.api.model.Fusion.TdsiGardisController;
|
|
522
|
+
toString(): string;
|
|
523
|
+
hashCode(): number;
|
|
524
|
+
equals(other: Nullable<any>): boolean;
|
|
445
525
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
446
526
|
static get Companion(): {
|
|
447
527
|
};
|
|
@@ -452,6 +532,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
452
532
|
get doorId(): string;
|
|
453
533
|
get baseUrl(): Nullable<string>;
|
|
454
534
|
get entityType(): com.doordeck.multiplatform.sdk.api.model.Fusion.ZktecoEntityType;
|
|
535
|
+
copy(clientSecret?: string, doorId?: string, baseUrl?: Nullable<string>, entityType?: com.doordeck.multiplatform.sdk.api.model.Fusion.ZktecoEntityType): com.doordeck.multiplatform.sdk.api.model.Fusion.ZktecoController;
|
|
536
|
+
toString(): string;
|
|
537
|
+
hashCode(): number;
|
|
538
|
+
equals(other: Nullable<any>): boolean;
|
|
455
539
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
456
540
|
static get Companion(): {
|
|
457
541
|
};
|
|
@@ -486,6 +570,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
486
570
|
get end(): string;
|
|
487
571
|
get timezone(): string;
|
|
488
572
|
get days(): kotlin.collections.KtList<string>;
|
|
573
|
+
copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtList<string>): com.doordeck.multiplatform.sdk.api.model.LockOperations.TimeRequirement;
|
|
574
|
+
toString(): string;
|
|
575
|
+
hashCode(): number;
|
|
576
|
+
equals(other: Nullable<any>): boolean;
|
|
489
577
|
}
|
|
490
578
|
class LocationRequirement {
|
|
491
579
|
constructor(latitude: number, longitude: number, enabled?: Nullable<boolean>, radius?: Nullable<number>, accuracy?: Nullable<number>);
|
|
@@ -494,6 +582,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
494
582
|
get enabled(): Nullable<boolean>;
|
|
495
583
|
get radius(): Nullable<number>;
|
|
496
584
|
get accuracy(): Nullable<number>;
|
|
585
|
+
copy(latitude?: number, longitude?: number, enabled?: Nullable<boolean>, radius?: Nullable<number>, accuracy?: Nullable<number>): com.doordeck.multiplatform.sdk.api.model.LockOperations.LocationRequirement;
|
|
586
|
+
toString(): string;
|
|
587
|
+
hashCode(): number;
|
|
588
|
+
equals(other: Nullable<any>): boolean;
|
|
497
589
|
}
|
|
498
590
|
class UnlockBetween {
|
|
499
591
|
constructor(start: string, end: string, timezone: string, days: kotlin.collections.KtList<string>, exceptions?: Nullable<kotlin.collections.KtList<string>>);
|
|
@@ -502,17 +594,29 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
502
594
|
get timezone(): string;
|
|
503
595
|
get days(): kotlin.collections.KtList<string>;
|
|
504
596
|
get exceptions(): Nullable<kotlin.collections.KtList<string>>;
|
|
597
|
+
copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtList<string>, exceptions?: Nullable<kotlin.collections.KtList<string>>): com.doordeck.multiplatform.sdk.api.model.LockOperations.UnlockBetween;
|
|
598
|
+
toString(): string;
|
|
599
|
+
hashCode(): number;
|
|
600
|
+
equals(other: Nullable<any>): boolean;
|
|
505
601
|
}
|
|
506
602
|
class UnlockOperation implements com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation {
|
|
507
603
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, directAccessEndpoints?: Nullable<kotlin.collections.KtList<string>>);
|
|
508
604
|
get baseOperation(): com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation;
|
|
509
605
|
get directAccessEndpoints(): Nullable<kotlin.collections.KtList<string>>;
|
|
606
|
+
copy(baseOperation?: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, directAccessEndpoints?: Nullable<kotlin.collections.KtList<string>>): com.doordeck.multiplatform.sdk.api.model.LockOperations.UnlockOperation;
|
|
607
|
+
toString(): string;
|
|
608
|
+
hashCode(): number;
|
|
609
|
+
equals(other: Nullable<any>): boolean;
|
|
510
610
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
511
611
|
}
|
|
512
612
|
class ShareLockOperation implements com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation {
|
|
513
613
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, shareLock: com.doordeck.multiplatform.sdk.api.model.LockOperations.ShareLock);
|
|
514
614
|
get baseOperation(): com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation;
|
|
515
615
|
get shareLock(): com.doordeck.multiplatform.sdk.api.model.LockOperations.ShareLock;
|
|
616
|
+
copy(baseOperation?: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, shareLock?: com.doordeck.multiplatform.sdk.api.model.LockOperations.ShareLock): com.doordeck.multiplatform.sdk.api.model.LockOperations.ShareLockOperation;
|
|
617
|
+
toString(): string;
|
|
618
|
+
hashCode(): number;
|
|
619
|
+
equals(other: Nullable<any>): boolean;
|
|
516
620
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
517
621
|
}
|
|
518
622
|
class ShareLock {
|
|
@@ -522,29 +626,49 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
522
626
|
get targetUserPublicKey(): Int8Array;
|
|
523
627
|
get start(): Nullable<number>;
|
|
524
628
|
get end(): Nullable<number>;
|
|
629
|
+
copy(targetUserId?: string, targetUserRole?: com.doordeck.multiplatform.sdk.api.model.UserRole, targetUserPublicKey?: Int8Array, start?: Nullable<number>, end?: Nullable<number>): com.doordeck.multiplatform.sdk.api.model.LockOperations.ShareLock;
|
|
630
|
+
toString(): string;
|
|
631
|
+
hashCode(): number;
|
|
632
|
+
equals(other: Nullable<any>): boolean;
|
|
525
633
|
}
|
|
526
634
|
class BatchShareLockOperation implements com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation {
|
|
527
635
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, users: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.api.model.LockOperations.ShareLock>);
|
|
528
636
|
get baseOperation(): com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation;
|
|
529
637
|
get users(): kotlin.collections.KtList<com.doordeck.multiplatform.sdk.api.model.LockOperations.ShareLock>;
|
|
638
|
+
copy(baseOperation?: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, users?: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.api.model.LockOperations.ShareLock>): com.doordeck.multiplatform.sdk.api.model.LockOperations.BatchShareLockOperation;
|
|
639
|
+
toString(): string;
|
|
640
|
+
hashCode(): number;
|
|
641
|
+
equals(other: Nullable<any>): boolean;
|
|
530
642
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
531
643
|
}
|
|
532
644
|
class RevokeAccessToLockOperation implements com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation {
|
|
533
645
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, users: kotlin.collections.KtList<string>);
|
|
534
646
|
get baseOperation(): com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation;
|
|
535
647
|
get users(): kotlin.collections.KtList<string>;
|
|
648
|
+
copy(baseOperation?: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, users?: kotlin.collections.KtList<string>): com.doordeck.multiplatform.sdk.api.model.LockOperations.RevokeAccessToLockOperation;
|
|
649
|
+
toString(): string;
|
|
650
|
+
hashCode(): number;
|
|
651
|
+
equals(other: Nullable<any>): boolean;
|
|
536
652
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
537
653
|
}
|
|
538
654
|
class UpdateSecureSettingUnlockDuration implements com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation {
|
|
539
655
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, unlockDuration: number);
|
|
540
656
|
get baseOperation(): com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation;
|
|
541
657
|
get unlockDuration(): number;
|
|
658
|
+
copy(baseOperation?: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, unlockDuration?: number): com.doordeck.multiplatform.sdk.api.model.LockOperations.UpdateSecureSettingUnlockDuration;
|
|
659
|
+
toString(): string;
|
|
660
|
+
hashCode(): number;
|
|
661
|
+
equals(other: Nullable<any>): boolean;
|
|
542
662
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
543
663
|
}
|
|
544
664
|
class UpdateSecureSettingUnlockBetween implements com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation {
|
|
545
665
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, unlockBetween?: Nullable<com.doordeck.multiplatform.sdk.api.model.LockOperations.UnlockBetween>);
|
|
546
666
|
get baseOperation(): com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation;
|
|
547
667
|
get unlockBetween(): Nullable<com.doordeck.multiplatform.sdk.api.model.LockOperations.UnlockBetween>;
|
|
668
|
+
copy(baseOperation?: com.doordeck.multiplatform.sdk.api.model.LockOperations.BaseOperation, unlockBetween?: Nullable<com.doordeck.multiplatform.sdk.api.model.LockOperations.UnlockBetween>): com.doordeck.multiplatform.sdk.api.model.LockOperations.UpdateSecureSettingUnlockBetween;
|
|
669
|
+
toString(): string;
|
|
670
|
+
hashCode(): number;
|
|
671
|
+
equals(other: Nullable<any>): boolean;
|
|
548
672
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
549
673
|
}
|
|
550
674
|
class BaseOperation {
|
|
@@ -557,6 +681,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
557
681
|
get issuedAt(): number;
|
|
558
682
|
get expiresAt(): number;
|
|
559
683
|
get jti(): string;
|
|
684
|
+
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.api.model.LockOperations.BaseOperation;
|
|
685
|
+
toString(): string;
|
|
686
|
+
hashCode(): number;
|
|
687
|
+
equals(other: Nullable<any>): boolean;
|
|
560
688
|
}
|
|
561
689
|
interface Operation {
|
|
562
690
|
readonly __doNotUseOrImplementIt: {
|
|
@@ -580,6 +708,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
580
708
|
get appLink(): Nullable<string>;
|
|
581
709
|
get emailPreferences(): Nullable<com.doordeck.multiplatform.sdk.api.model.Platform.EmailPreferences>;
|
|
582
710
|
get logoUrl(): Nullable<string>;
|
|
711
|
+
copy(name?: string, companyName?: string, mailingAddress?: string, privacyPolicy?: Nullable<string>, supportContact?: Nullable<string>, appLink?: Nullable<string>, emailPreferences?: Nullable<com.doordeck.multiplatform.sdk.api.model.Platform.EmailPreferences>, logoUrl?: Nullable<string>): com.doordeck.multiplatform.sdk.api.model.Platform.CreateApplication;
|
|
712
|
+
toString(): string;
|
|
713
|
+
hashCode(): number;
|
|
714
|
+
equals(other: Nullable<any>): boolean;
|
|
583
715
|
}
|
|
584
716
|
class EmailPreferences {
|
|
585
717
|
constructor(senderEmail?: Nullable<string>, senderName?: Nullable<string>, primaryColour?: Nullable<string>, secondaryColour?: Nullable<string>, onlySendEssentialEmails?: Nullable<boolean>, callToAction?: Nullable<com.doordeck.multiplatform.sdk.api.model.Platform.EmailCallToAction>);
|
|
@@ -589,12 +721,20 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
589
721
|
get secondaryColour(): Nullable<string>;
|
|
590
722
|
get onlySendEssentialEmails(): Nullable<boolean>;
|
|
591
723
|
get callToAction(): Nullable<com.doordeck.multiplatform.sdk.api.model.Platform.EmailCallToAction>;
|
|
724
|
+
copy(senderEmail?: Nullable<string>, senderName?: Nullable<string>, primaryColour?: Nullable<string>, secondaryColour?: Nullable<string>, onlySendEssentialEmails?: Nullable<boolean>, callToAction?: Nullable<com.doordeck.multiplatform.sdk.api.model.Platform.EmailCallToAction>): com.doordeck.multiplatform.sdk.api.model.Platform.EmailPreferences;
|
|
725
|
+
toString(): string;
|
|
726
|
+
hashCode(): number;
|
|
727
|
+
equals(other: Nullable<any>): boolean;
|
|
592
728
|
}
|
|
593
729
|
class EmailCallToAction {
|
|
594
730
|
constructor(actionTarget: string, headline: string, actionText: string);
|
|
595
731
|
get actionTarget(): string;
|
|
596
732
|
get headline(): string;
|
|
597
733
|
get actionText(): string;
|
|
734
|
+
copy(actionTarget?: string, headline?: string, actionText?: string): com.doordeck.multiplatform.sdk.api.model.Platform.EmailCallToAction;
|
|
735
|
+
toString(): string;
|
|
736
|
+
hashCode(): number;
|
|
737
|
+
equals(other: Nullable<any>): boolean;
|
|
598
738
|
}
|
|
599
739
|
interface AuthKey {
|
|
600
740
|
readonly kid: string;
|
|
@@ -619,6 +759,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
619
759
|
get dp(): string;
|
|
620
760
|
get dq(): string;
|
|
621
761
|
get n(): string;
|
|
762
|
+
copy(kty?: string, use?: string, kid?: string, alg?: Nullable<string>, p?: string, q?: string, d?: string, e?: string, qi?: string, dp?: string, dq?: string, n?: string): com.doordeck.multiplatform.sdk.api.model.Platform.RsaKey;
|
|
763
|
+
toString(): string;
|
|
764
|
+
hashCode(): number;
|
|
765
|
+
equals(other: Nullable<any>): boolean;
|
|
622
766
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Platform.AuthKey["__doNotUseOrImplementIt"];
|
|
623
767
|
}
|
|
624
768
|
class EcKey implements com.doordeck.multiplatform.sdk.api.model.Platform.AuthKey {
|
|
@@ -631,6 +775,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
631
775
|
get crv(): string;
|
|
632
776
|
get x(): string;
|
|
633
777
|
get y(): string;
|
|
778
|
+
copy(kty?: string, use?: string, kid?: string, alg?: Nullable<string>, d?: string, crv?: string, x?: string, y?: string): com.doordeck.multiplatform.sdk.api.model.Platform.EcKey;
|
|
779
|
+
toString(): string;
|
|
780
|
+
hashCode(): number;
|
|
781
|
+
equals(other: Nullable<any>): boolean;
|
|
634
782
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Platform.AuthKey["__doNotUseOrImplementIt"];
|
|
635
783
|
}
|
|
636
784
|
class Ed25519Key implements com.doordeck.multiplatform.sdk.api.model.Platform.AuthKey {
|
|
@@ -642,6 +790,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.model {
|
|
|
642
790
|
get d(): string;
|
|
643
791
|
get crv(): string;
|
|
644
792
|
get x(): string;
|
|
793
|
+
copy(kty?: string, use?: string, kid?: string, alg?: Nullable<string>, d?: string, crv?: string, x?: string): com.doordeck.multiplatform.sdk.api.model.Platform.Ed25519Key;
|
|
794
|
+
toString(): string;
|
|
795
|
+
hashCode(): number;
|
|
796
|
+
equals(other: Nullable<any>): boolean;
|
|
645
797
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.model.Platform.AuthKey["__doNotUseOrImplementIt"];
|
|
646
798
|
}
|
|
647
799
|
}
|
|
@@ -693,6 +845,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
693
845
|
constructor(authToken: string, refreshToken: string);
|
|
694
846
|
get authToken(): string;
|
|
695
847
|
get refreshToken(): string;
|
|
848
|
+
copy(authToken?: string, refreshToken?: string): com.doordeck.multiplatform.sdk.api.responses.TokenResponse;
|
|
849
|
+
toString(): string;
|
|
850
|
+
hashCode(): number;
|
|
851
|
+
equals(other: Nullable<any>): boolean;
|
|
696
852
|
static get Companion(): {
|
|
697
853
|
};
|
|
698
854
|
}
|
|
@@ -702,6 +858,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
702
858
|
get displayName(): Nullable<string>;
|
|
703
859
|
get emailVerified(): boolean;
|
|
704
860
|
get publicKey(): string;
|
|
861
|
+
copy(email?: string, displayName?: Nullable<string>, emailVerified?: boolean, publicKey?: string): com.doordeck.multiplatform.sdk.api.responses.UserDetailsResponse;
|
|
862
|
+
toString(): string;
|
|
863
|
+
hashCode(): number;
|
|
864
|
+
equals(other: Nullable<any>): boolean;
|
|
705
865
|
static get Companion(): {
|
|
706
866
|
};
|
|
707
867
|
}
|
|
@@ -709,12 +869,20 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
709
869
|
constructor(certificateChain: kotlin.collections.KtList<string>, userId: string);
|
|
710
870
|
get certificateChain(): kotlin.collections.KtList<string>;
|
|
711
871
|
get userId(): string;
|
|
872
|
+
copy(certificateChain?: kotlin.collections.KtList<string>, userId?: string): com.doordeck.multiplatform.sdk.api.responses.RegisterEphemeralKeyResponse;
|
|
873
|
+
toString(): string;
|
|
874
|
+
hashCode(): number;
|
|
875
|
+
equals(other: Nullable<any>): boolean;
|
|
712
876
|
static get Companion(): {
|
|
713
877
|
};
|
|
714
878
|
}
|
|
715
879
|
class RegisterEphemeralKeyWithSecondaryAuthenticationResponse {
|
|
716
880
|
constructor(method: com.doordeck.multiplatform.sdk.api.model.TwoFactorMethod);
|
|
717
881
|
get method(): com.doordeck.multiplatform.sdk.api.model.TwoFactorMethod;
|
|
882
|
+
copy(method?: com.doordeck.multiplatform.sdk.api.model.TwoFactorMethod): com.doordeck.multiplatform.sdk.api.responses.RegisterEphemeralKeyWithSecondaryAuthenticationResponse;
|
|
883
|
+
toString(): string;
|
|
884
|
+
hashCode(): number;
|
|
885
|
+
equals(other: Nullable<any>): boolean;
|
|
718
886
|
static get Companion(): {
|
|
719
887
|
};
|
|
720
888
|
}
|
|
@@ -723,18 +891,30 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
723
891
|
class FusionLoginResponse {
|
|
724
892
|
constructor(authToken: string);
|
|
725
893
|
get authToken(): string;
|
|
894
|
+
copy(authToken?: string): com.doordeck.multiplatform.sdk.api.responses.FusionLoginResponse;
|
|
895
|
+
toString(): string;
|
|
896
|
+
hashCode(): number;
|
|
897
|
+
equals(other: Nullable<any>): boolean;
|
|
726
898
|
static get Companion(): {
|
|
727
899
|
};
|
|
728
900
|
}
|
|
729
901
|
class IntegrationTypeResponse {
|
|
730
902
|
constructor(status?: Nullable<string>);
|
|
731
903
|
get status(): Nullable<string>;
|
|
904
|
+
copy(status?: Nullable<string>): com.doordeck.multiplatform.sdk.api.responses.IntegrationTypeResponse;
|
|
905
|
+
toString(): string;
|
|
906
|
+
hashCode(): number;
|
|
907
|
+
equals(other: Nullable<any>): boolean;
|
|
732
908
|
static get Companion(): {
|
|
733
909
|
};
|
|
734
910
|
}
|
|
735
911
|
class DoorStateResponse {
|
|
736
912
|
constructor(state: com.doordeck.multiplatform.sdk.api.responses.ServiceStateType);
|
|
737
913
|
get state(): com.doordeck.multiplatform.sdk.api.responses.ServiceStateType;
|
|
914
|
+
copy(state?: com.doordeck.multiplatform.sdk.api.responses.ServiceStateType): com.doordeck.multiplatform.sdk.api.responses.DoorStateResponse;
|
|
915
|
+
toString(): string;
|
|
916
|
+
hashCode(): number;
|
|
917
|
+
equals(other: Nullable<any>): boolean;
|
|
738
918
|
static get Companion(): {
|
|
739
919
|
};
|
|
740
920
|
}
|
|
@@ -743,6 +923,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
743
923
|
get doordeck(): Nullable<com.doordeck.multiplatform.sdk.api.responses.ControllerResponse>;
|
|
744
924
|
get service(): Nullable<com.doordeck.multiplatform.sdk.api.responses.ServiceStateResponse>;
|
|
745
925
|
get integration(): Nullable<com.doordeck.multiplatform.sdk.api.responses.DiscoveredDeviceResponse>;
|
|
926
|
+
copy(doordeck?: Nullable<com.doordeck.multiplatform.sdk.api.responses.ControllerResponse>, service?: Nullable<com.doordeck.multiplatform.sdk.api.responses.ServiceStateResponse>, integration?: Nullable<com.doordeck.multiplatform.sdk.api.responses.DiscoveredDeviceResponse>): com.doordeck.multiplatform.sdk.api.responses.IntegrationConfigurationResponse;
|
|
927
|
+
toString(): string;
|
|
928
|
+
hashCode(): number;
|
|
929
|
+
equals(other: Nullable<any>): boolean;
|
|
746
930
|
static get Companion(): {
|
|
747
931
|
};
|
|
748
932
|
}
|
|
@@ -751,12 +935,20 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
751
935
|
get id(): string;
|
|
752
936
|
get name(): Nullable<string>;
|
|
753
937
|
get role(): Nullable<com.doordeck.multiplatform.sdk.api.model.UserRole>;
|
|
938
|
+
copy(id?: string, name?: Nullable<string>, role?: Nullable<com.doordeck.multiplatform.sdk.api.model.UserRole>): com.doordeck.multiplatform.sdk.api.responses.ControllerResponse;
|
|
939
|
+
toString(): string;
|
|
940
|
+
hashCode(): number;
|
|
941
|
+
equals(other: Nullable<any>): boolean;
|
|
754
942
|
static get Companion(): {
|
|
755
943
|
};
|
|
756
944
|
}
|
|
757
945
|
class ServiceStateResponse {
|
|
758
946
|
constructor(state: com.doordeck.multiplatform.sdk.api.responses.ServiceStateType);
|
|
759
947
|
get state(): com.doordeck.multiplatform.sdk.api.responses.ServiceStateType;
|
|
948
|
+
copy(state?: com.doordeck.multiplatform.sdk.api.responses.ServiceStateType): com.doordeck.multiplatform.sdk.api.responses.ServiceStateResponse;
|
|
949
|
+
toString(): string;
|
|
950
|
+
hashCode(): number;
|
|
951
|
+
equals(other: Nullable<any>): boolean;
|
|
760
952
|
static get Companion(): {
|
|
761
953
|
};
|
|
762
954
|
}
|
|
@@ -764,6 +956,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
764
956
|
constructor(key: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController, metadata: kotlin.collections.KtMap<string, string>);
|
|
765
957
|
get key(): com.doordeck.multiplatform.sdk.api.model.Fusion.LockController;
|
|
766
958
|
get metadata(): kotlin.collections.KtMap<string, string>;
|
|
959
|
+
copy(key?: com.doordeck.multiplatform.sdk.api.model.Fusion.LockController, metadata?: kotlin.collections.KtMap<string, string>): com.doordeck.multiplatform.sdk.api.responses.DiscoveredDeviceResponse;
|
|
960
|
+
toString(): string;
|
|
961
|
+
hashCode(): number;
|
|
962
|
+
equals(other: Nullable<any>): boolean;
|
|
767
963
|
static get Companion(): {
|
|
768
964
|
};
|
|
769
965
|
}
|
|
@@ -793,12 +989,20 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
793
989
|
class AssistedLoginResponse {
|
|
794
990
|
constructor(requiresVerification: boolean);
|
|
795
991
|
get requiresVerification(): boolean;
|
|
992
|
+
copy(requiresVerification?: boolean): com.doordeck.multiplatform.sdk.api.responses.AssistedLoginResponse;
|
|
993
|
+
toString(): string;
|
|
994
|
+
hashCode(): number;
|
|
995
|
+
equals(other: Nullable<any>): boolean;
|
|
796
996
|
static get Companion(): {
|
|
797
997
|
};
|
|
798
998
|
}
|
|
799
999
|
class AssistedRegisterEphemeralKeyResponse {
|
|
800
1000
|
constructor(requiresVerification: boolean);
|
|
801
1001
|
get requiresVerification(): boolean;
|
|
1002
|
+
copy(requiresVerification?: boolean): com.doordeck.multiplatform.sdk.api.responses.AssistedRegisterEphemeralKeyResponse;
|
|
1003
|
+
toString(): string;
|
|
1004
|
+
hashCode(): number;
|
|
1005
|
+
equals(other: Nullable<any>): boolean;
|
|
802
1006
|
static get Companion(): {
|
|
803
1007
|
};
|
|
804
1008
|
}
|
|
@@ -816,6 +1020,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
816
1020
|
get state(): com.doordeck.multiplatform.sdk.api.responses.LockStateResponse;
|
|
817
1021
|
get favourite(): boolean;
|
|
818
1022
|
get unlockTime(): Nullable<number>;
|
|
1023
|
+
copy(id?: string, name?: string, colour?: Nullable<string>, start?: Nullable<string>, end?: Nullable<string>, role?: com.doordeck.multiplatform.sdk.api.model.UserRole, settings?: com.doordeck.multiplatform.sdk.api.responses.LockSettingsResponse, state?: com.doordeck.multiplatform.sdk.api.responses.LockStateResponse, favourite?: boolean, unlockTime?: Nullable<number>): com.doordeck.multiplatform.sdk.api.responses.LockResponse;
|
|
1024
|
+
toString(): string;
|
|
1025
|
+
hashCode(): number;
|
|
1026
|
+
equals(other: Nullable<any>): boolean;
|
|
819
1027
|
static get Companion(): {
|
|
820
1028
|
};
|
|
821
1029
|
}
|
|
@@ -830,6 +1038,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
830
1038
|
get hidden(): boolean;
|
|
831
1039
|
get directAccessEndpoints(): kotlin.collections.KtList<string>;
|
|
832
1040
|
get capabilities(): kotlin.collections.KtMap<com.doordeck.multiplatform.sdk.api.model.CapabilityType, com.doordeck.multiplatform.sdk.api.model.CapabilityStatus>;
|
|
1041
|
+
copy(unlockTime?: number, permittedAddresses?: kotlin.collections.KtList<string>, defaultName?: string, usageRequirements?: Nullable<com.doordeck.multiplatform.sdk.api.responses.UsageRequirementsResponse>, unlockBetweenWindow?: Nullable<com.doordeck.multiplatform.sdk.api.responses.UnlockBetweenSettingResponse>, tiles?: kotlin.collections.KtList<string>, hidden?: boolean, directAccessEndpoints?: kotlin.collections.KtList<string>, capabilities?: kotlin.collections.KtMap<com.doordeck.multiplatform.sdk.api.model.CapabilityType, com.doordeck.multiplatform.sdk.api.model.CapabilityStatus>): com.doordeck.multiplatform.sdk.api.responses.LockSettingsResponse;
|
|
1042
|
+
toString(): string;
|
|
1043
|
+
hashCode(): number;
|
|
1044
|
+
equals(other: Nullable<any>): boolean;
|
|
833
1045
|
static get Companion(): {
|
|
834
1046
|
};
|
|
835
1047
|
}
|
|
@@ -837,6 +1049,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
837
1049
|
constructor(time?: Nullable<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.api.responses.TimeRequirementResponse>>, location?: Nullable<com.doordeck.multiplatform.sdk.api.responses.LocationRequirementResponse>);
|
|
838
1050
|
get time(): Nullable<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.api.responses.TimeRequirementResponse>>;
|
|
839
1051
|
get location(): Nullable<com.doordeck.multiplatform.sdk.api.responses.LocationRequirementResponse>;
|
|
1052
|
+
copy(time?: Nullable<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.api.responses.TimeRequirementResponse>>, location?: Nullable<com.doordeck.multiplatform.sdk.api.responses.LocationRequirementResponse>): com.doordeck.multiplatform.sdk.api.responses.UsageRequirementsResponse;
|
|
1053
|
+
toString(): string;
|
|
1054
|
+
hashCode(): number;
|
|
1055
|
+
equals(other: Nullable<any>): boolean;
|
|
840
1056
|
static get Companion(): {
|
|
841
1057
|
};
|
|
842
1058
|
}
|
|
@@ -846,6 +1062,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
846
1062
|
get end(): string;
|
|
847
1063
|
get timezone(): string;
|
|
848
1064
|
get days(): kotlin.collections.KtList<string>;
|
|
1065
|
+
copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtList<string>): com.doordeck.multiplatform.sdk.api.responses.TimeRequirementResponse;
|
|
1066
|
+
toString(): string;
|
|
1067
|
+
hashCode(): number;
|
|
1068
|
+
equals(other: Nullable<any>): boolean;
|
|
849
1069
|
static get Companion(): {
|
|
850
1070
|
};
|
|
851
1071
|
}
|
|
@@ -856,6 +1076,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
856
1076
|
get enabled(): Nullable<boolean>;
|
|
857
1077
|
get radius(): Nullable<number>;
|
|
858
1078
|
get accuracy(): Nullable<number>;
|
|
1079
|
+
copy(latitude?: number, longitude?: number, enabled?: Nullable<boolean>, radius?: Nullable<number>, accuracy?: Nullable<number>): com.doordeck.multiplatform.sdk.api.responses.LocationRequirementResponse;
|
|
1080
|
+
toString(): string;
|
|
1081
|
+
hashCode(): number;
|
|
1082
|
+
equals(other: Nullable<any>): boolean;
|
|
859
1083
|
static get Companion(): {
|
|
860
1084
|
};
|
|
861
1085
|
}
|
|
@@ -866,6 +1090,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
866
1090
|
get timezone(): string;
|
|
867
1091
|
get days(): kotlin.collections.KtList<string>;
|
|
868
1092
|
get exceptions(): Nullable<kotlin.collections.KtList<string>>;
|
|
1093
|
+
copy(start?: string, end?: string, timezone?: string, days?: kotlin.collections.KtList<string>, exceptions?: Nullable<kotlin.collections.KtList<string>>): com.doordeck.multiplatform.sdk.api.responses.UnlockBetweenSettingResponse;
|
|
1094
|
+
toString(): string;
|
|
1095
|
+
hashCode(): number;
|
|
1096
|
+
equals(other: Nullable<any>): boolean;
|
|
869
1097
|
static get Companion(): {
|
|
870
1098
|
};
|
|
871
1099
|
}
|
|
@@ -873,6 +1101,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
873
1101
|
constructor(locked: boolean, connected: boolean);
|
|
874
1102
|
get locked(): boolean;
|
|
875
1103
|
get connected(): boolean;
|
|
1104
|
+
copy(locked?: boolean, connected?: boolean): com.doordeck.multiplatform.sdk.api.responses.LockStateResponse;
|
|
1105
|
+
toString(): string;
|
|
1106
|
+
hashCode(): number;
|
|
1107
|
+
equals(other: Nullable<any>): boolean;
|
|
876
1108
|
static get Companion(): {
|
|
877
1109
|
};
|
|
878
1110
|
}
|
|
@@ -880,6 +1112,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
880
1112
|
constructor(id: string, publicKey: string);
|
|
881
1113
|
get id(): string;
|
|
882
1114
|
get publicKey(): string;
|
|
1115
|
+
copy(id?: string, publicKey?: string): com.doordeck.multiplatform.sdk.api.responses.UserPublicKeyResponse;
|
|
1116
|
+
toString(): string;
|
|
1117
|
+
hashCode(): number;
|
|
1118
|
+
equals(other: Nullable<any>): boolean;
|
|
883
1119
|
static get Companion(): {
|
|
884
1120
|
};
|
|
885
1121
|
}
|
|
@@ -890,6 +1126,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
890
1126
|
get foreignKey(): Nullable<string>;
|
|
891
1127
|
get phone(): Nullable<string>;
|
|
892
1128
|
get publicKey(): string;
|
|
1129
|
+
copy(id?: string, email?: Nullable<string>, foreignKey?: Nullable<string>, phone?: Nullable<string>, publicKey?: string): com.doordeck.multiplatform.sdk.api.responses.BatchUserPublicKeyResponse;
|
|
1130
|
+
toString(): string;
|
|
1131
|
+
hashCode(): number;
|
|
1132
|
+
equals(other: Nullable<any>): boolean;
|
|
893
1133
|
static get Companion(): {
|
|
894
1134
|
};
|
|
895
1135
|
}
|
|
@@ -897,6 +1137,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
897
1137
|
constructor(id: string, name: string);
|
|
898
1138
|
get id(): string;
|
|
899
1139
|
get name(): string;
|
|
1140
|
+
copy(id?: string, name?: string): com.doordeck.multiplatform.sdk.api.responses.ShareableLockResponse;
|
|
1141
|
+
toString(): string;
|
|
1142
|
+
hashCode(): number;
|
|
1143
|
+
equals(other: Nullable<any>): boolean;
|
|
900
1144
|
static get Companion(): {
|
|
901
1145
|
};
|
|
902
1146
|
}
|
|
@@ -911,6 +1155,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
911
1155
|
get role(): com.doordeck.multiplatform.sdk.api.model.UserRole;
|
|
912
1156
|
get start(): Nullable<number>;
|
|
913
1157
|
get end(): Nullable<number>;
|
|
1158
|
+
copy(userId?: string, email?: string, publicKey?: string, displayName?: Nullable<string>, orphan?: boolean, foreign?: boolean, role?: com.doordeck.multiplatform.sdk.api.model.UserRole, start?: Nullable<number>, end?: Nullable<number>): com.doordeck.multiplatform.sdk.api.responses.UserLockResponse;
|
|
1159
|
+
toString(): string;
|
|
1160
|
+
hashCode(): number;
|
|
1161
|
+
equals(other: Nullable<any>): boolean;
|
|
914
1162
|
static get Companion(): {
|
|
915
1163
|
};
|
|
916
1164
|
}
|
|
@@ -925,6 +1173,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
925
1173
|
get start(): Nullable<number>;
|
|
926
1174
|
get end(): Nullable<number>;
|
|
927
1175
|
get devices(): kotlin.collections.KtList<com.doordeck.multiplatform.sdk.api.responses.LockUserDetailsResponse>;
|
|
1176
|
+
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.api.responses.LockUserDetailsResponse>): com.doordeck.multiplatform.sdk.api.responses.LockUserResponse;
|
|
1177
|
+
toString(): string;
|
|
1178
|
+
hashCode(): number;
|
|
1179
|
+
equals(other: Nullable<any>): boolean;
|
|
928
1180
|
static get Companion(): {
|
|
929
1181
|
};
|
|
930
1182
|
}
|
|
@@ -934,6 +1186,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
934
1186
|
get role(): com.doordeck.multiplatform.sdk.api.model.UserRole;
|
|
935
1187
|
get start(): Nullable<number>;
|
|
936
1188
|
get end(): Nullable<number>;
|
|
1189
|
+
copy(deviceId?: string, role?: com.doordeck.multiplatform.sdk.api.model.UserRole, start?: Nullable<number>, end?: Nullable<number>): com.doordeck.multiplatform.sdk.api.responses.LockUserDetailsResponse;
|
|
1190
|
+
toString(): string;
|
|
1191
|
+
hashCode(): number;
|
|
1192
|
+
equals(other: Nullable<any>): boolean;
|
|
937
1193
|
static get Companion(): {
|
|
938
1194
|
};
|
|
939
1195
|
}
|
|
@@ -946,6 +1202,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
946
1202
|
get subject(): Nullable<com.doordeck.multiplatform.sdk.api.responses.AuditSubjectResponse>;
|
|
947
1203
|
get rejectionReason(): Nullable<string>;
|
|
948
1204
|
get rejected(): boolean;
|
|
1205
|
+
copy(deviceId?: string, timestamp?: number, type?: com.doordeck.multiplatform.sdk.api.model.AuditEvent, issuer?: com.doordeck.multiplatform.sdk.api.responses.AuditIssuerResponse, subject?: Nullable<com.doordeck.multiplatform.sdk.api.responses.AuditSubjectResponse>, rejectionReason?: Nullable<string>, rejected?: boolean): com.doordeck.multiplatform.sdk.api.responses.AuditResponse;
|
|
1206
|
+
toString(): string;
|
|
1207
|
+
hashCode(): number;
|
|
1208
|
+
equals(other: Nullable<any>): boolean;
|
|
949
1209
|
static get Companion(): {
|
|
950
1210
|
};
|
|
951
1211
|
}
|
|
@@ -954,6 +1214,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
954
1214
|
get userId(): string;
|
|
955
1215
|
get email(): Nullable<string>;
|
|
956
1216
|
get ip(): Nullable<string>;
|
|
1217
|
+
copy(userId?: string, email?: Nullable<string>, ip?: Nullable<string>): com.doordeck.multiplatform.sdk.api.responses.AuditIssuerResponse;
|
|
1218
|
+
toString(): string;
|
|
1219
|
+
hashCode(): number;
|
|
1220
|
+
equals(other: Nullable<any>): boolean;
|
|
957
1221
|
static get Companion(): {
|
|
958
1222
|
};
|
|
959
1223
|
}
|
|
@@ -962,6 +1226,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
962
1226
|
get userId(): string;
|
|
963
1227
|
get email(): string;
|
|
964
1228
|
get displayName(): Nullable<string>;
|
|
1229
|
+
copy(userId?: string, email?: string, displayName?: Nullable<string>): com.doordeck.multiplatform.sdk.api.responses.AuditSubjectResponse;
|
|
1230
|
+
toString(): string;
|
|
1231
|
+
hashCode(): number;
|
|
1232
|
+
equals(other: Nullable<any>): boolean;
|
|
965
1233
|
static get Companion(): {
|
|
966
1234
|
};
|
|
967
1235
|
}
|
|
@@ -986,6 +1254,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
986
1254
|
get authKeys(): kotlin.collections.KtMap<string, com.doordeck.multiplatform.sdk.api.responses.AuthKeyResponse>;
|
|
987
1255
|
get oauth(): Nullable<com.doordeck.multiplatform.sdk.api.responses.OauthResponse>;
|
|
988
1256
|
get isDoordeckApplication(): Nullable<boolean>;
|
|
1257
|
+
copy(applicationId?: string, name?: string, lastUpdated?: Nullable<number>, owners?: Nullable<kotlin.collections.KtList<string>>, corsDomains?: Nullable<kotlin.collections.KtList<string>>, authDomains?: Nullable<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.api.responses.EmailPreferencesResponse, authKeys?: kotlin.collections.KtMap<string, com.doordeck.multiplatform.sdk.api.responses.AuthKeyResponse>, oauth?: Nullable<com.doordeck.multiplatform.sdk.api.responses.OauthResponse>, isDoordeckApplication?: Nullable<boolean>): com.doordeck.multiplatform.sdk.api.responses.ApplicationResponse;
|
|
1258
|
+
toString(): string;
|
|
1259
|
+
hashCode(): number;
|
|
1260
|
+
equals(other: Nullable<any>): boolean;
|
|
989
1261
|
static get Companion(): {
|
|
990
1262
|
};
|
|
991
1263
|
}
|
|
@@ -1022,6 +1294,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1022
1294
|
get iat(): Nullable<number>;
|
|
1023
1295
|
get e(): string;
|
|
1024
1296
|
get n(): string;
|
|
1297
|
+
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.api.responses.RsaKeyResponse;
|
|
1298
|
+
toString(): string;
|
|
1299
|
+
hashCode(): number;
|
|
1300
|
+
equals(other: Nullable<any>): boolean;
|
|
1025
1301
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.responses.AuthKeyResponse["__doNotUseOrImplementIt"];
|
|
1026
1302
|
static get Companion(): {
|
|
1027
1303
|
};
|
|
@@ -1042,6 +1318,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1042
1318
|
get crv(): string;
|
|
1043
1319
|
get x(): string;
|
|
1044
1320
|
get y(): string;
|
|
1321
|
+
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.api.responses.EcKeyResponse;
|
|
1322
|
+
toString(): string;
|
|
1323
|
+
hashCode(): number;
|
|
1324
|
+
equals(other: Nullable<any>): boolean;
|
|
1045
1325
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.responses.AuthKeyResponse["__doNotUseOrImplementIt"];
|
|
1046
1326
|
static get Companion(): {
|
|
1047
1327
|
};
|
|
@@ -1062,6 +1342,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1062
1342
|
get d(): Nullable<string>;
|
|
1063
1343
|
get crv(): string;
|
|
1064
1344
|
get x(): string;
|
|
1345
|
+
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>, d?: Nullable<string>, crv?: string, x?: string): com.doordeck.multiplatform.sdk.api.responses.Ed25519KeyResponse;
|
|
1346
|
+
toString(): string;
|
|
1347
|
+
hashCode(): number;
|
|
1348
|
+
equals(other: Nullable<any>): boolean;
|
|
1065
1349
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.api.responses.AuthKeyResponse["__doNotUseOrImplementIt"];
|
|
1066
1350
|
static get Companion(): {
|
|
1067
1351
|
};
|
|
@@ -1074,6 +1358,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1074
1358
|
get secondaryColour(): string;
|
|
1075
1359
|
get onlySendEssentialEmails(): Nullable<boolean>;
|
|
1076
1360
|
get callToAction(): Nullable<com.doordeck.multiplatform.sdk.api.responses.EmailCallToActionResponse>;
|
|
1361
|
+
copy(senderEmail?: Nullable<string>, senderName?: Nullable<string>, primaryColour?: string, secondaryColour?: string, onlySendEssentialEmails?: Nullable<boolean>, callToAction?: Nullable<com.doordeck.multiplatform.sdk.api.responses.EmailCallToActionResponse>): com.doordeck.multiplatform.sdk.api.responses.EmailPreferencesResponse;
|
|
1362
|
+
toString(): string;
|
|
1363
|
+
hashCode(): number;
|
|
1364
|
+
equals(other: Nullable<any>): boolean;
|
|
1077
1365
|
static get Companion(): {
|
|
1078
1366
|
};
|
|
1079
1367
|
}
|
|
@@ -1082,6 +1370,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1082
1370
|
get actionTarget(): string;
|
|
1083
1371
|
get headline(): string;
|
|
1084
1372
|
get actionText(): string;
|
|
1373
|
+
copy(actionTarget?: string, headline?: string, actionText?: string): com.doordeck.multiplatform.sdk.api.responses.EmailCallToActionResponse;
|
|
1374
|
+
toString(): string;
|
|
1375
|
+
hashCode(): number;
|
|
1376
|
+
equals(other: Nullable<any>): boolean;
|
|
1085
1377
|
static get Companion(): {
|
|
1086
1378
|
};
|
|
1087
1379
|
}
|
|
@@ -1090,6 +1382,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1090
1382
|
get authorizationEndpoint(): string;
|
|
1091
1383
|
get clientId(): string;
|
|
1092
1384
|
get grantType(): string;
|
|
1385
|
+
copy(authorizationEndpoint?: string, clientId?: string, grantType?: string): com.doordeck.multiplatform.sdk.api.responses.OauthResponse;
|
|
1386
|
+
toString(): string;
|
|
1387
|
+
hashCode(): number;
|
|
1388
|
+
equals(other: Nullable<any>): boolean;
|
|
1093
1389
|
static get Companion(): {
|
|
1094
1390
|
};
|
|
1095
1391
|
}
|
|
@@ -1100,12 +1396,20 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1100
1396
|
get displayName(): Nullable<string>;
|
|
1101
1397
|
get orphan(): boolean;
|
|
1102
1398
|
get foreign(): boolean;
|
|
1399
|
+
copy(userId?: string, email?: string, displayName?: Nullable<string>, orphan?: boolean, foreign?: boolean): com.doordeck.multiplatform.sdk.api.responses.ApplicationOwnerDetailsResponse;
|
|
1400
|
+
toString(): string;
|
|
1401
|
+
hashCode(): number;
|
|
1402
|
+
equals(other: Nullable<any>): boolean;
|
|
1103
1403
|
static get Companion(): {
|
|
1104
1404
|
};
|
|
1105
1405
|
}
|
|
1106
1406
|
class GetLogoUploadUrlResponse {
|
|
1107
1407
|
constructor(uploadUrl: string);
|
|
1108
1408
|
get uploadUrl(): string;
|
|
1409
|
+
copy(uploadUrl?: string): com.doordeck.multiplatform.sdk.api.responses.GetLogoUploadUrlResponse;
|
|
1410
|
+
toString(): string;
|
|
1411
|
+
hashCode(): number;
|
|
1412
|
+
equals(other: Nullable<any>): boolean;
|
|
1109
1413
|
static get Companion(): {
|
|
1110
1414
|
};
|
|
1111
1415
|
}
|
|
@@ -1122,6 +1426,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1122
1426
|
get passBackground(): string;
|
|
1123
1427
|
get created(): string;
|
|
1124
1428
|
get updated(): string;
|
|
1429
|
+
copy(id?: string, name?: string, colour?: string, longitude?: number, latitude?: number, radius?: number, passBackground?: string, created?: string, updated?: string): com.doordeck.multiplatform.sdk.api.responses.SiteResponse;
|
|
1430
|
+
toString(): string;
|
|
1431
|
+
hashCode(): number;
|
|
1432
|
+
equals(other: Nullable<any>): boolean;
|
|
1125
1433
|
static get Companion(): {
|
|
1126
1434
|
};
|
|
1127
1435
|
}
|
|
@@ -1132,6 +1440,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1132
1440
|
get colour(): Nullable<string>;
|
|
1133
1441
|
get role(): com.doordeck.multiplatform.sdk.api.model.UserRole;
|
|
1134
1442
|
get settings(): com.doordeck.multiplatform.sdk.api.responses.SiteLockSettingsResponse;
|
|
1443
|
+
copy(id?: string, name?: string, colour?: Nullable<string>, role?: com.doordeck.multiplatform.sdk.api.model.UserRole, settings?: com.doordeck.multiplatform.sdk.api.responses.SiteLockSettingsResponse): com.doordeck.multiplatform.sdk.api.responses.SiteLocksResponse;
|
|
1444
|
+
toString(): string;
|
|
1445
|
+
hashCode(): number;
|
|
1446
|
+
equals(other: Nullable<any>): boolean;
|
|
1135
1447
|
static get Companion(): {
|
|
1136
1448
|
};
|
|
1137
1449
|
}
|
|
@@ -1143,12 +1455,20 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1143
1455
|
get tiles(): kotlin.collections.KtList<string>;
|
|
1144
1456
|
get state(): Nullable<com.doordeck.multiplatform.sdk.api.responses.SiteStateResponse>;
|
|
1145
1457
|
get favourite(): Nullable<boolean>;
|
|
1458
|
+
copy(unlockTime?: number, permittedAddresses?: kotlin.collections.KtList<string>, defaultName?: string, tiles?: kotlin.collections.KtList<string>, state?: Nullable<com.doordeck.multiplatform.sdk.api.responses.SiteStateResponse>, favourite?: Nullable<boolean>): com.doordeck.multiplatform.sdk.api.responses.SiteLockSettingsResponse;
|
|
1459
|
+
toString(): string;
|
|
1460
|
+
hashCode(): number;
|
|
1461
|
+
equals(other: Nullable<any>): boolean;
|
|
1146
1462
|
static get Companion(): {
|
|
1147
1463
|
};
|
|
1148
1464
|
}
|
|
1149
1465
|
class SiteStateResponse {
|
|
1150
1466
|
constructor(connected: boolean);
|
|
1151
1467
|
get connected(): boolean;
|
|
1468
|
+
copy(connected?: boolean): com.doordeck.multiplatform.sdk.api.responses.SiteStateResponse;
|
|
1469
|
+
toString(): string;
|
|
1470
|
+
hashCode(): number;
|
|
1471
|
+
equals(other: Nullable<any>): boolean;
|
|
1152
1472
|
static get Companion(): {
|
|
1153
1473
|
};
|
|
1154
1474
|
}
|
|
@@ -1158,6 +1478,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1158
1478
|
get email(): string;
|
|
1159
1479
|
get displayName(): Nullable<string>;
|
|
1160
1480
|
get orphan(): boolean;
|
|
1481
|
+
copy(userId?: string, email?: string, displayName?: Nullable<string>, orphan?: boolean): com.doordeck.multiplatform.sdk.api.responses.UserForSiteResponse;
|
|
1482
|
+
toString(): string;
|
|
1483
|
+
hashCode(): number;
|
|
1484
|
+
equals(other: Nullable<any>): boolean;
|
|
1161
1485
|
static get Companion(): {
|
|
1162
1486
|
};
|
|
1163
1487
|
}
|
|
@@ -1168,6 +1492,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
1168
1492
|
get siteId(): string;
|
|
1169
1493
|
get tileId(): string;
|
|
1170
1494
|
get deviceIds(): kotlin.collections.KtList<string>;
|
|
1495
|
+
copy(siteId?: string, tileId?: string, deviceIds?: kotlin.collections.KtList<string>): com.doordeck.multiplatform.sdk.api.responses.TileLocksResponse;
|
|
1496
|
+
toString(): string;
|
|
1497
|
+
hashCode(): number;
|
|
1498
|
+
equals(other: Nullable<any>): boolean;
|
|
1171
1499
|
static get Companion(): {
|
|
1172
1500
|
};
|
|
1173
1501
|
}
|
|
@@ -1196,11 +1524,6 @@ export declare namespace com.doordeck.multiplatform.sdk.storage {
|
|
|
1196
1524
|
};
|
|
1197
1525
|
}
|
|
1198
1526
|
}
|
|
1199
|
-
export declare namespace com.doordeck.multiplatform.sdk.util {
|
|
1200
|
-
const JwtUtils: {
|
|
1201
|
-
isJwtTokenAboutToExpire(_this_: string): boolean;
|
|
1202
|
-
};
|
|
1203
|
-
}
|
|
1204
1527
|
export declare namespace com.doordeck.multiplatform.sdk.util {
|
|
1205
1528
|
const Utils: {
|
|
1206
1529
|
decodeBase64ToByteArray(_this_: string): Int8Array;
|