@doordeck/doordeck-headless-sdk 0.40.0 → 0.42.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/Kotlin-DateTime-library-kotlinx-datetime.js +1 -1
- package/kotlin/doordeck-sdk.d.ts +14 -0
- package/kotlin/doordeck-sdk.js +5928 -5158
- package/kotlin/doordeck-sdk.js.map +1 -1
- package/kotlin/kotlinx-coroutines-core.js +7 -7
- package/kotlin/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -337,7 +337,7 @@
|
|
|
337
337
|
return tmp;
|
|
338
338
|
}
|
|
339
339
|
initMetadataForInterface(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', VOID, VOID, [WithUtcOffset]);
|
|
340
|
-
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder,
|
|
340
|
+
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithDate, WithUtcOffset, WithTime]);
|
|
341
341
|
initMetadataForClass(AbstractDateTimeFormat, 'AbstractDateTimeFormat');
|
|
342
342
|
initMetadataForClass(DateTimeComponentsFormat, 'DateTimeComponentsFormat', VOID, AbstractDateTimeFormat);
|
|
343
343
|
initMetadataForClass(TwoDigitNumber, 'TwoDigitNumber');
|
package/kotlin/doordeck-sdk.d.ts
CHANGED
|
@@ -868,6 +868,16 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
868
868
|
static get Companion(): {
|
|
869
869
|
};
|
|
870
870
|
}
|
|
871
|
+
class BatchUserPublicKeyResponse {
|
|
872
|
+
constructor(id: string, email: Nullable<string> | undefined, foreignKey: Nullable<string> | undefined, phone: Nullable<string> | undefined, publicKey: string);
|
|
873
|
+
get id(): string;
|
|
874
|
+
get email(): Nullable<string>;
|
|
875
|
+
get foreignKey(): Nullable<string>;
|
|
876
|
+
get phone(): Nullable<string>;
|
|
877
|
+
get publicKey(): string;
|
|
878
|
+
static get Companion(): {
|
|
879
|
+
};
|
|
880
|
+
}
|
|
871
881
|
class ShareableLockResponse {
|
|
872
882
|
constructor(id: string, name: string);
|
|
873
883
|
get id(): string;
|
|
@@ -1257,6 +1267,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
1257
1267
|
getUserPublicKeyByLocalKey(localKey: string): Promise<com.doordeck.multiplatform.sdk.api.responses.UserPublicKeyResponse>;
|
|
1258
1268
|
getUserPublicKeyByForeignKey(foreignKey: string): Promise<com.doordeck.multiplatform.sdk.api.responses.UserPublicKeyResponse>;
|
|
1259
1269
|
getUserPublicKeyByIdentity(identity: string): Promise<com.doordeck.multiplatform.sdk.api.responses.UserPublicKeyResponse>;
|
|
1270
|
+
getUserPublicKeyByEmails(emails: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.api.responses.BatchUserPublicKeyResponse>>;
|
|
1271
|
+
getUserPublicKeyByTelephones(telephones: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.api.responses.BatchUserPublicKeyResponse>>;
|
|
1272
|
+
getUserPublicKeyByLocalKeys(localKeys: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.api.responses.BatchUserPublicKeyResponse>>;
|
|
1273
|
+
getUserPublicKeyByForeignKeys(foreignKeys: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.api.responses.BatchUserPublicKeyResponse>>;
|
|
1260
1274
|
unlockWithContext(lockId: string, directAccessEndpoints?: Nullable<kotlin.collections.KtList<string>>): Promise<any>;
|
|
1261
1275
|
unlock(unlockOperation: com.doordeck.multiplatform.sdk.api.model.LockOperations.UnlockOperation): Promise<any>;
|
|
1262
1276
|
shareLockWithContext(lockId: string, shareLock: com.doordeck.multiplatform.sdk.api.model.LockOperations.ShareLock): Promise<any>;
|