@doordeck/doordeck-headless-sdk 0.147.0 → 0.149.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/doordeck-sdk.d.ts +2 -2
- package/kotlin/doordeck-sdk.js +1231 -1213
- package/kotlin/kotlin-kotlin-stdlib.js +6 -6
- package/package.json +1 -1
package/kotlin/doordeck-sdk.d.ts
CHANGED
|
@@ -788,8 +788,8 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
788
788
|
namespace LockOperationsApi.$metadata$ {
|
|
789
789
|
abstract class constructor {
|
|
790
790
|
getSingleLock(lockId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.LockResponse>;
|
|
791
|
-
getLockAuditTrail(lockId: string, start
|
|
792
|
-
getAuditForUser(userId: string, start
|
|
791
|
+
getLockAuditTrail(lockId: string, start?: Nullable<number>, end?: Nullable<number>): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.AuditResponse>>;
|
|
792
|
+
getAuditForUser(userId: string, start?: Nullable<number>, end?: Nullable<number>): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.AuditResponse>>;
|
|
793
793
|
getUsersForLock(lockId: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.UserLockResponse>>;
|
|
794
794
|
getLocksForUser(userId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.LockUserResponse>;
|
|
795
795
|
updateLockName(lockId: string, name?: Nullable<string>): Promise<any>;
|