@doordeck/doordeck-headless-sdk 0.38.0 → 0.40.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 +3 -0
- package/kotlin/doordeck-sdk.js +661 -625
- package/kotlin/doordeck-sdk.js.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin/kotlinx-coroutines-core.js +1 -1
- package/package.json +1 -1
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
function addFormatStructureForTime(structure) {
|
|
285
285
|
this.g4t(structure);
|
|
286
286
|
}
|
|
287
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
287
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
|
|
288
288
|
function offsetHours$default(padding, $super) {
|
|
289
289
|
padding = padding === VOID ? Padding_ZERO_getInstance() : padding;
|
|
290
290
|
var tmp;
|
package/kotlin/doordeck-sdk.d.ts
CHANGED
|
@@ -83,6 +83,7 @@ export declare namespace com.doordeck.multiplatform.sdk {
|
|
|
83
83
|
export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
84
84
|
interface ContextManager {
|
|
85
85
|
setAuthToken(token: string): void;
|
|
86
|
+
setRefreshToken(token: string): void;
|
|
86
87
|
setOperationContext(userId: string, certificateChain: kotlin.collections.KtList<string>, privateKey: Int8Array): void;
|
|
87
88
|
setOperationContextJson(data: string): void;
|
|
88
89
|
setFusionAuthToken(token: string): void;
|
|
@@ -1150,6 +1151,8 @@ export declare namespace com.doordeck.multiplatform.sdk.storage {
|
|
|
1150
1151
|
interface SecureStorage {
|
|
1151
1152
|
addCloudAuthToken(token: string): void;
|
|
1152
1153
|
getCloudAuthToken(): Nullable<string>;
|
|
1154
|
+
addCloudRefreshToken(token: string): void;
|
|
1155
|
+
getCloudRefreshToken(): Nullable<string>;
|
|
1153
1156
|
addFusionAuthToken(token: string): void;
|
|
1154
1157
|
getFusionAuthToken(): Nullable<string>;
|
|
1155
1158
|
addPrivateKey(byteArray: Int8Array): void;
|