@doordeck/doordeck-headless-sdk 0.52.0 → 0.54.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.
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
return tmp;
|
|
335
335
|
}
|
|
336
336
|
initMetadataForInterface(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', VOID, VOID, [WithUtcOffset]);
|
|
337
|
-
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder,
|
|
337
|
+
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithDate, WithUtcOffset, WithTime]);
|
|
338
338
|
initMetadataForClass(AbstractDateTimeFormat, 'AbstractDateTimeFormat');
|
|
339
339
|
initMetadataForClass(DateTimeComponentsFormat, 'DateTimeComponentsFormat', VOID, AbstractDateTimeFormat);
|
|
340
340
|
initMetadataForClass(TwoDigitNumber, 'TwoDigitNumber');
|
package/kotlin/doordeck-sdk.d.ts
CHANGED
|
@@ -787,6 +787,12 @@ export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
|
787
787
|
static get Companion(): {
|
|
788
788
|
};
|
|
789
789
|
}
|
|
790
|
+
class AssistedRegisterEphemeralKeyResponse {
|
|
791
|
+
constructor(requiresVerification: boolean);
|
|
792
|
+
get requiresVerification(): boolean;
|
|
793
|
+
static get Companion(): {
|
|
794
|
+
};
|
|
795
|
+
}
|
|
790
796
|
}
|
|
791
797
|
export declare namespace com.doordeck.multiplatform.sdk.api.responses {
|
|
792
798
|
class LockResponse {
|
|
@@ -1222,8 +1228,10 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
1222
1228
|
export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
1223
1229
|
interface AccountlessResource {
|
|
1224
1230
|
login(email: string, password: string): Promise<com.doordeck.multiplatform.sdk.api.responses.TokenResponse>;
|
|
1225
|
-
registration(email: string, password: string, displayName?: Nullable<string>, force?: boolean): Promise<com.doordeck.multiplatform.sdk.api.responses.TokenResponse>;
|
|
1231
|
+
registration(email: string, password: string, displayName?: Nullable<string>, force?: boolean, publicKey?: Nullable<Int8Array>): Promise<com.doordeck.multiplatform.sdk.api.responses.TokenResponse>;
|
|
1226
1232
|
verifyEmail(code: string): Promise<any>;
|
|
1233
|
+
passwordReset(email: string): Promise<any>;
|
|
1234
|
+
passwordResetVerify(userId: string, token: string, password: string): Promise<any>;
|
|
1227
1235
|
readonly __doNotUseOrImplementIt: {
|
|
1228
1236
|
readonly "com.doordeck.multiplatform.sdk.api.AccountlessResource": unique symbol;
|
|
1229
1237
|
};
|
|
@@ -1250,6 +1258,8 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
1250
1258
|
interface HelperResource {
|
|
1251
1259
|
uploadPlatformLogo(applicationId: string, contentType: string, image: Int8Array): Promise<any>;
|
|
1252
1260
|
assistedLogin(email: string, password: string): Promise<com.doordeck.multiplatform.sdk.api.responses.AssistedLoginResponse>;
|
|
1261
|
+
assistedRegisterEphemeralKey(publicKey?: Nullable<Int8Array>): Promise<com.doordeck.multiplatform.sdk.api.responses.AssistedRegisterEphemeralKeyResponse>;
|
|
1262
|
+
assistedRegister(email: string, password: string, displayName?: Nullable<string>, force?: boolean): Promise<any>;
|
|
1253
1263
|
readonly __doNotUseOrImplementIt: {
|
|
1254
1264
|
readonly "com.doordeck.multiplatform.sdk.api.HelperResource": unique symbol;
|
|
1255
1265
|
};
|