@doordeck/doordeck-headless-sdk 0.52.0 → 0.53.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.
|
@@ -281,7 +281,7 @@
|
|
|
281
281
|
function addFormatStructureForTime(structure) {
|
|
282
282
|
this.e4v(structure);
|
|
283
283
|
}
|
|
284
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
284
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
|
|
285
285
|
function offsetHours$default(padding, $super) {
|
|
286
286
|
padding = padding === VOID ? Padding_ZERO_getInstance() : padding;
|
|
287
287
|
var tmp;
|
|
@@ -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, WithTime, WithDate, WithUtcOffset]);
|
|
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,7 +1228,7 @@ 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>;
|
|
1227
1233
|
readonly __doNotUseOrImplementIt: {
|
|
1228
1234
|
readonly "com.doordeck.multiplatform.sdk.api.AccountlessResource": unique symbol;
|
|
@@ -1250,6 +1256,8 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
|
1250
1256
|
interface HelperResource {
|
|
1251
1257
|
uploadPlatformLogo(applicationId: string, contentType: string, image: Int8Array): Promise<any>;
|
|
1252
1258
|
assistedLogin(email: string, password: string): Promise<com.doordeck.multiplatform.sdk.api.responses.AssistedLoginResponse>;
|
|
1259
|
+
assistedRegisterEphemeralKey(publicKey?: Nullable<Int8Array>): Promise<com.doordeck.multiplatform.sdk.api.responses.AssistedRegisterEphemeralKeyResponse>;
|
|
1260
|
+
assistedRegister(email: string, password: string, displayName?: Nullable<string>, force?: boolean): Promise<any>;
|
|
1253
1261
|
readonly __doNotUseOrImplementIt: {
|
|
1254
1262
|
readonly "com.doordeck.multiplatform.sdk.api.HelperResource": unique symbol;
|
|
1255
1263
|
};
|