@doordeck/doordeck-headless-sdk 0.99.0 → 0.100.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
CHANGED
|
@@ -27,4 +27,4 @@ The SDK supports a range of targets for different platforms:
|
|
|
27
27
|
To start using the Doordeck Headless SDK, refer to the [documentation index](https://github.com/doordeck/doordeck-headless-sdk/blob/main/docs/01_INDEX.md#index) for detailed setup and usage instructions tailored to your platform.
|
|
28
28
|
|
|
29
29
|
## Samples
|
|
30
|
-
We provide samples for different targets, where you can see how the SDK can be used in fully functional projects. For more information, please see the [samples page](https://github.com/doordeck/doordeck-headless-sdk/blob/main/docs/15_SAMPLES.md).
|
|
30
|
+
We provide samples for different targets, where you can see how the SDK can be used in fully functional projects. For more information, please see the [samples page](https://github.com/doordeck/doordeck-headless-sdk/blob/main/docs/15_SAMPLES.md).
|
|
@@ -309,7 +309,7 @@
|
|
|
309
309
|
function addFormatStructureForTime(structure) {
|
|
310
310
|
this.q5f(structure);
|
|
311
311
|
}
|
|
312
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
312
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
|
|
313
313
|
function offsetHours$default(padding, $super) {
|
|
314
314
|
padding = padding === VOID ? Padding_ZERO_getInstance() : padding;
|
|
315
315
|
var tmp;
|
package/kotlin/doordeck-sdk.d.ts
CHANGED
|
@@ -31,6 +31,11 @@ export declare namespace com.doordeck.multiplatform.sdk {
|
|
|
31
31
|
};
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
|
+
export declare namespace com.doordeck.multiplatform.sdk {
|
|
35
|
+
const KDoordeckFactory: {
|
|
36
|
+
initialize(sdkConfig: com.doordeck.multiplatform.sdk.config.SdkConfig): com.doordeck.multiplatform.sdk.Doordeck;
|
|
37
|
+
};
|
|
38
|
+
}
|
|
34
39
|
export declare namespace com.doordeck.multiplatform.sdk.config {
|
|
35
40
|
class SdkConfig {
|
|
36
41
|
constructor(apiEnvironment: Nullable<com.doordeck.multiplatform.sdk.model.data.ApiEnvironment> | undefined, cloudAuthToken: Nullable<string> | undefined, cloudRefreshToken: Nullable<string> | undefined, fusionHost: Nullable<string>, secureStorage: com.doordeck.multiplatform.sdk.storage.SecureStorage);
|
|
@@ -1773,11 +1778,6 @@ export declare namespace com.doordeck.multiplatform.sdk.util {
|
|
|
1773
1778
|
stringToCertificateChain(_this_: string): kotlin.collections.KtList<string>;
|
|
1774
1779
|
};
|
|
1775
1780
|
}
|
|
1776
|
-
export declare namespace com.doordeck.multiplatform.sdk {
|
|
1777
|
-
const KDoordeckFactory: {
|
|
1778
|
-
initialize(sdkConfig: com.doordeck.multiplatform.sdk.config.SdkConfig): com.doordeck.multiplatform.sdk.Doordeck;
|
|
1779
|
-
};
|
|
1780
|
-
}
|
|
1781
1781
|
export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
1782
1782
|
const AccountApi: {
|
|
1783
1783
|
refreshToken(refreshToken?: Nullable<string>): Promise<com.doordeck.multiplatform.sdk.model.responses.TokenResponse>;
|