@doordeck/doordeck-headless-sdk 0.39.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/kotlinx-coroutines-core.js +6 -6
- 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, WithDate, WithUtcOffset
|
|
340
|
+
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithTime, WithDate, WithUtcOffset]);
|
|
341
341
|
initMetadataForClass(AbstractDateTimeFormat, 'AbstractDateTimeFormat');
|
|
342
342
|
initMetadataForClass(DateTimeComponentsFormat, 'DateTimeComponentsFormat', VOID, AbstractDateTimeFormat);
|
|
343
343
|
initMetadataForClass(TwoDigitNumber, 'TwoDigitNumber');
|
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;
|