@solibo/solibo-sdk 1.7.16 → 1.7.17
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-stdlib.mjs +5 -5
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +8 -8
- package/kotlinx-coroutines-core.mjs.map +1 -1
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +2262 -2037
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +20 -4
- package/solibo-sdk-sdk.mjs +34 -34
- package/solibo-sdk-sdk.mjs.map +1 -1
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -2007,16 +2007,20 @@ export interface ConfirmMagicEmailCommandProps {
|
|
|
2007
2007
|
deviceKey?: string | null | undefined;
|
|
2008
2008
|
email: string;
|
|
2009
2009
|
fingerprint?: string | null | undefined;
|
|
2010
|
+
mcpRedirectUri?: string | null | undefined;
|
|
2011
|
+
mcpState?: string | null | undefined;
|
|
2010
2012
|
session?: string | null | undefined;
|
|
2011
2013
|
}
|
|
2012
2014
|
export declare class ConfirmMagicEmailCommand {
|
|
2013
2015
|
constructor(props: ConfirmMagicEmailCommandProps);
|
|
2014
|
-
constructor(clientId: string, code: string, deviceKey: string | null | undefined, email: string, fingerprint?: string | null | undefined, session?: string | null | undefined);
|
|
2016
|
+
constructor(clientId: string, code: string, deviceKey: string | null | undefined, email: string, fingerprint?: string | null | undefined, mcpRedirectUri?: string | null | undefined, mcpState?: string | null | undefined, session?: string | null | undefined);
|
|
2015
2017
|
get clientId(): string;
|
|
2016
2018
|
get code(): string;
|
|
2017
2019
|
get deviceKey(): string | null | undefined;
|
|
2018
2020
|
get email(): string;
|
|
2019
2021
|
get fingerprint(): string | null | undefined;
|
|
2022
|
+
get mcpRedirectUri(): string | null | undefined;
|
|
2023
|
+
get mcpState(): string | null | undefined;
|
|
2020
2024
|
get session(): string | null | undefined;
|
|
2021
2025
|
}
|
|
2022
2026
|
export declare namespace ConfirmMagicEmailCommand {
|
|
@@ -2030,16 +2034,20 @@ export interface ConfirmMagicSmsCommandProps {
|
|
|
2030
2034
|
code: string;
|
|
2031
2035
|
deviceKey?: string | null | undefined;
|
|
2032
2036
|
fingerprint?: string | null | undefined;
|
|
2037
|
+
mcpRedirectUri?: string | null | undefined;
|
|
2038
|
+
mcpState?: string | null | undefined;
|
|
2033
2039
|
mobile: string;
|
|
2034
2040
|
session?: string | null | undefined;
|
|
2035
2041
|
}
|
|
2036
2042
|
export declare class ConfirmMagicSmsCommand {
|
|
2037
2043
|
constructor(props: ConfirmMagicSmsCommandProps);
|
|
2038
|
-
constructor(clientId: string, code: string, deviceKey: string | null | undefined, fingerprint: string | null | undefined, mobile: string, session?: string | null | undefined);
|
|
2044
|
+
constructor(clientId: string, code: string, deviceKey: string | null | undefined, fingerprint: string | null | undefined, mcpRedirectUri: string | null | undefined, mcpState: string | null | undefined, mobile: string, session?: string | null | undefined);
|
|
2039
2045
|
get clientId(): string;
|
|
2040
2046
|
get code(): string;
|
|
2041
2047
|
get deviceKey(): string | null | undefined;
|
|
2042
2048
|
get fingerprint(): string | null | undefined;
|
|
2049
|
+
get mcpRedirectUri(): string | null | undefined;
|
|
2050
|
+
get mcpState(): string | null | undefined;
|
|
2043
2051
|
get mobile(): string;
|
|
2044
2052
|
get session(): string | null | undefined;
|
|
2045
2053
|
}
|
|
@@ -4655,6 +4663,8 @@ export interface DeviceVerifySrpCommandProps {
|
|
|
4655
4663
|
deviceKey?: string | null | undefined;
|
|
4656
4664
|
email?: string | null | undefined;
|
|
4657
4665
|
fingerprint: string;
|
|
4666
|
+
mcpRedirectUri?: string | null | undefined;
|
|
4667
|
+
mcpState?: string | null | undefined;
|
|
4658
4668
|
mobile?: string | null | undefined;
|
|
4659
4669
|
passwordSignature: string;
|
|
4660
4670
|
secretBlock: string;
|
|
@@ -4663,11 +4673,13 @@ export interface DeviceVerifySrpCommandProps {
|
|
|
4663
4673
|
}
|
|
4664
4674
|
export declare class DeviceVerifySrpCommand {
|
|
4665
4675
|
constructor(props: DeviceVerifySrpCommandProps);
|
|
4666
|
-
constructor(clientId: string, deviceKey: string | null | undefined, email: string | null | undefined, fingerprint: string, mobile: string | null | undefined, passwordSignature: string, secretBlock: string, session: string, timestamp: string);
|
|
4676
|
+
constructor(clientId: string, deviceKey: string | null | undefined, email: string | null | undefined, fingerprint: string, mcpRedirectUri: string | null | undefined, mcpState: string | null | undefined, mobile: string | null | undefined, passwordSignature: string, secretBlock: string, session: string, timestamp: string);
|
|
4667
4677
|
get clientId(): string;
|
|
4668
4678
|
get deviceKey(): string | null | undefined;
|
|
4669
4679
|
get email(): string | null | undefined;
|
|
4670
4680
|
get fingerprint(): string;
|
|
4681
|
+
get mcpRedirectUri(): string | null | undefined;
|
|
4682
|
+
get mcpState(): string | null | undefined;
|
|
4671
4683
|
get mobile(): string | null | undefined;
|
|
4672
4684
|
get passwordSignature(): string;
|
|
4673
4685
|
get secretBlock(): string;
|
|
@@ -19643,6 +19655,8 @@ export interface VerifySrpCommandProps {
|
|
|
19643
19655
|
deviceKey?: string | null | undefined;
|
|
19644
19656
|
email?: string | null | undefined;
|
|
19645
19657
|
fingerprint?: string | null | undefined;
|
|
19658
|
+
mcpRedirectUri?: string | null | undefined;
|
|
19659
|
+
mcpState?: string | null | undefined;
|
|
19646
19660
|
mobile?: string | null | undefined;
|
|
19647
19661
|
passwordSignature: string;
|
|
19648
19662
|
secretBlock: string;
|
|
@@ -19650,11 +19664,13 @@ export interface VerifySrpCommandProps {
|
|
|
19650
19664
|
}
|
|
19651
19665
|
export declare class VerifySrpCommand {
|
|
19652
19666
|
constructor(props: VerifySrpCommandProps);
|
|
19653
|
-
constructor(clientId: string, deviceKey: string | null | undefined, email: string | null | undefined, fingerprint: string | null | undefined, mobile: string | null | undefined, passwordSignature: string, secretBlock: string, timestamp: string);
|
|
19667
|
+
constructor(clientId: string, deviceKey: string | null | undefined, email: string | null | undefined, fingerprint: string | null | undefined, mcpRedirectUri: string | null | undefined, mcpState: string | null | undefined, mobile: string | null | undefined, passwordSignature: string, secretBlock: string, timestamp: string);
|
|
19654
19668
|
get clientId(): string;
|
|
19655
19669
|
get deviceKey(): string | null | undefined;
|
|
19656
19670
|
get email(): string | null | undefined;
|
|
19657
19671
|
get fingerprint(): string | null | undefined;
|
|
19672
|
+
get mcpRedirectUri(): string | null | undefined;
|
|
19673
|
+
get mcpState(): string | null | undefined;
|
|
19658
19674
|
get mobile(): string | null | undefined;
|
|
19659
19675
|
get passwordSignature(): string;
|
|
19660
19676
|
get secretBlock(): string;
|
package/solibo-sdk-sdk.mjs
CHANGED
|
@@ -1049,7 +1049,7 @@ protoOf(KotlinBuilder).ztp = function () {
|
|
|
1049
1049
|
protoOf(KotlinBuilder).atq = function (_set____db54di) {
|
|
1050
1050
|
this.settings = _set____db54di;
|
|
1051
1051
|
};
|
|
1052
|
-
protoOf(KotlinBuilder).
|
|
1052
|
+
protoOf(KotlinBuilder).l7p = function () {
|
|
1053
1053
|
return this.settings;
|
|
1054
1054
|
};
|
|
1055
1055
|
protoOf(KotlinBuilder).btq = function (_set____db54di) {
|
|
@@ -1115,13 +1115,13 @@ protoOf(KotlinBuilder).x72 = function () {
|
|
|
1115
1115
|
protoOf(KotlinBuilder).ttq = function (_set____db54di) {
|
|
1116
1116
|
this.clientSecret = _set____db54di;
|
|
1117
1117
|
};
|
|
1118
|
-
protoOf(KotlinBuilder).
|
|
1118
|
+
protoOf(KotlinBuilder).c7r = function () {
|
|
1119
1119
|
return this.clientSecret;
|
|
1120
1120
|
};
|
|
1121
1121
|
protoOf(KotlinBuilder).utq = function (_set____db54di) {
|
|
1122
1122
|
this.scopes = _set____db54di;
|
|
1123
1123
|
};
|
|
1124
|
-
protoOf(KotlinBuilder).
|
|
1124
|
+
protoOf(KotlinBuilder).d7r = function () {
|
|
1125
1125
|
return this.scopes;
|
|
1126
1126
|
};
|
|
1127
1127
|
protoOf(KotlinBuilder).build = function () {
|
|
@@ -1566,7 +1566,7 @@ protoOf(UploadDocumentRequest).y6y = function () {
|
|
|
1566
1566
|
protoOf(UploadDocumentRequest).s9o = function () {
|
|
1567
1567
|
return this.documentType;
|
|
1568
1568
|
};
|
|
1569
|
-
protoOf(UploadDocumentRequest).
|
|
1569
|
+
protoOf(UploadDocumentRequest).h7j = function () {
|
|
1570
1570
|
return this.fileName;
|
|
1571
1571
|
};
|
|
1572
1572
|
protoOf(UploadDocumentRequest).e8k = function () {
|
|
@@ -1575,7 +1575,7 @@ protoOf(UploadDocumentRequest).e8k = function () {
|
|
|
1575
1575
|
protoOf(UploadDocumentRequest).p82 = function () {
|
|
1576
1576
|
return this.belongsToId;
|
|
1577
1577
|
};
|
|
1578
|
-
protoOf(UploadDocumentRequest).
|
|
1578
|
+
protoOf(UploadDocumentRequest).t7j = function () {
|
|
1579
1579
|
return this.parentId;
|
|
1580
1580
|
};
|
|
1581
1581
|
protoOf(UploadDocumentRequest).y82 = function () {
|
|
@@ -1786,13 +1786,13 @@ protoOf(DocumentUploadOptions).ch = function () {
|
|
|
1786
1786
|
protoOf(DocumentUploadOptions).dh = function () {
|
|
1787
1787
|
return this.uploadUrlReplacementTo;
|
|
1788
1788
|
};
|
|
1789
|
-
protoOf(DocumentUploadOptions).
|
|
1789
|
+
protoOf(DocumentUploadOptions).o7q = function (uploadUrlReplacementFrom, uploadUrlReplacementTo) {
|
|
1790
1790
|
return new DocumentUploadOptions(uploadUrlReplacementFrom, uploadUrlReplacementTo);
|
|
1791
1791
|
};
|
|
1792
1792
|
protoOf(DocumentUploadOptions).copy = function (uploadUrlReplacementFrom, uploadUrlReplacementTo, $super) {
|
|
1793
1793
|
uploadUrlReplacementFrom = uploadUrlReplacementFrom === VOID ? this.uploadUrlReplacementFrom : uploadUrlReplacementFrom;
|
|
1794
1794
|
uploadUrlReplacementTo = uploadUrlReplacementTo === VOID ? this.uploadUrlReplacementTo : uploadUrlReplacementTo;
|
|
1795
|
-
return $super === VOID ? this.
|
|
1795
|
+
return $super === VOID ? this.o7q(uploadUrlReplacementFrom, uploadUrlReplacementTo) : $super.o7q.call(this, uploadUrlReplacementFrom, uploadUrlReplacementTo);
|
|
1796
1796
|
};
|
|
1797
1797
|
protoOf(DocumentUploadOptions).toString = function () {
|
|
1798
1798
|
return 'DocumentUploadOptions(uploadUrlReplacementFrom=' + this.uploadUrlReplacementFrom + ', uploadUrlReplacementTo=' + this.uploadUrlReplacementTo + ')';
|
|
@@ -4195,7 +4195,7 @@ function EventBus(wsUrl, headersProvider, httpClient, json) {
|
|
|
4195
4195
|
protoOf(EventBus).bu5 = function () {
|
|
4196
4196
|
return this.rtz_1;
|
|
4197
4197
|
};
|
|
4198
|
-
protoOf(EventBus).
|
|
4198
|
+
protoOf(EventBus).e7h = function () {
|
|
4199
4199
|
return this.stz_1;
|
|
4200
4200
|
};
|
|
4201
4201
|
protoOf(EventBus).onEvent = function (callback) {
|
|
@@ -5355,8 +5355,8 @@ function HomeApi$clientConfigurator$lambda$lambda_10(this$0, $platformName) {
|
|
|
5355
5355
|
}
|
|
5356
5356
|
accept($this$defaultRequest, Application_getInstance().p3y_1);
|
|
5357
5357
|
header($this$defaultRequest, 'Accept-Language', buildAcceptLanguage(this$0.userLanguage));
|
|
5358
|
-
header($this$defaultRequest, 'User-Agent', 'SoliboSDK/1.7.
|
|
5359
|
-
header($this$defaultRequest, 'X-Solibo-SDK-Version', '1.7.
|
|
5358
|
+
header($this$defaultRequest, 'User-Agent', 'SoliboSDK/1.7.17 (' + $platformName + ')');
|
|
5359
|
+
header($this$defaultRequest, 'X-Solibo-SDK-Version', '1.7.17');
|
|
5360
5360
|
return Unit_instance;
|
|
5361
5361
|
};
|
|
5362
5362
|
}
|
|
@@ -6874,13 +6874,13 @@ protoOf(HomeApi).x72 = function () {
|
|
|
6874
6874
|
protoOf(HomeApi).ttq = function (_set____db54di) {
|
|
6875
6875
|
this.bts_1 = _set____db54di;
|
|
6876
6876
|
};
|
|
6877
|
-
protoOf(HomeApi).
|
|
6877
|
+
protoOf(HomeApi).c7r = function () {
|
|
6878
6878
|
return this.bts_1;
|
|
6879
6879
|
};
|
|
6880
6880
|
protoOf(HomeApi).utq = function (_set____db54di) {
|
|
6881
6881
|
this.cts_1 = _set____db54di;
|
|
6882
6882
|
};
|
|
6883
|
-
protoOf(HomeApi).
|
|
6883
|
+
protoOf(HomeApi).d7r = function () {
|
|
6884
6884
|
return this.cts_1;
|
|
6885
6885
|
};
|
|
6886
6886
|
protoOf(HomeApi).nu9 = function (value) {
|
|
@@ -6919,7 +6919,7 @@ protoOf(HomeApi).nu9 = function (value) {
|
|
|
6919
6919
|
tmp = tmp_0;
|
|
6920
6920
|
}
|
|
6921
6921
|
};
|
|
6922
|
-
protoOf(HomeApi).
|
|
6922
|
+
protoOf(HomeApi).n7k = function () {
|
|
6923
6923
|
return this.dts_1;
|
|
6924
6924
|
};
|
|
6925
6925
|
protoOf(HomeApi).zua = function (value) {
|
|
@@ -7141,7 +7141,7 @@ protoOf(HomeApi).gub = function () {
|
|
|
7141
7141
|
getPropertyCallableRef('users', 1, tmp, HomeApi$_get_users_$ref_gtk4rz(), null);
|
|
7142
7142
|
return tmp0.n1();
|
|
7143
7143
|
};
|
|
7144
|
-
protoOf(HomeApi).
|
|
7144
|
+
protoOf(HomeApi).d7h = function () {
|
|
7145
7145
|
var tmp0 = this.gts_1;
|
|
7146
7146
|
var tmp = KProperty1;
|
|
7147
7147
|
// Inline function 'kotlin.getValue' call
|
|
@@ -7197,7 +7197,7 @@ protoOf(HomeApi).kub = function () {
|
|
|
7197
7197
|
getPropertyCallableRef('residents', 1, tmp, HomeApi$_get_residents_$ref_lgfx1o(), null);
|
|
7198
7198
|
return tmp0.n1();
|
|
7199
7199
|
};
|
|
7200
|
-
protoOf(HomeApi).
|
|
7200
|
+
protoOf(HomeApi).z7h = function () {
|
|
7201
7201
|
var tmp0 = this.ots_1;
|
|
7202
7202
|
var tmp = KProperty1;
|
|
7203
7203
|
// Inline function 'kotlin.getValue' call
|
|
@@ -7246,7 +7246,7 @@ protoOf(HomeApi).nub = function () {
|
|
|
7246
7246
|
getPropertyCallableRef('storage', 1, tmp, HomeApi$_get_storage_$ref_ggf47w(), null);
|
|
7247
7247
|
return tmp0.n1();
|
|
7248
7248
|
};
|
|
7249
|
-
protoOf(HomeApi).
|
|
7249
|
+
protoOf(HomeApi).t7k = function () {
|
|
7250
7250
|
var tmp0 = this.vts_1;
|
|
7251
7251
|
var tmp = KProperty1;
|
|
7252
7252
|
// Inline function 'kotlin.getValue' call
|
|
@@ -11203,7 +11203,7 @@ function MockBackend$registerHandlers$lambda_86(this$0) {
|
|
|
11203
11203
|
tmp_1 = tmp1_elvis_lhs;
|
|
11204
11204
|
}
|
|
11205
11205
|
var tmp5_name = tmp_1;
|
|
11206
|
-
var tmp4_elvis_lhs = command == null ? null : command.
|
|
11206
|
+
var tmp4_elvis_lhs = command == null ? null : command.i7u_1;
|
|
11207
11207
|
var tmp6_nationality = tmp4_elvis_lhs == null ? 1n : tmp4_elvis_lhs;
|
|
11208
11208
|
var resident = new PersonResident(VOID, VOID, 'NO', VOID, id, tmp6_nationality, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, tmp5_name);
|
|
11209
11209
|
// Inline function 'kotlin.collections.getOrPut' call
|
|
@@ -20217,7 +20217,7 @@ function MockBackend$registerHandlers$lambda_421(this$0) {
|
|
|
20217
20217
|
tmp_1 = tmp1_elvis_lhs;
|
|
20218
20218
|
}
|
|
20219
20219
|
var tmp5_name = tmp_1;
|
|
20220
|
-
var tmp4_elvis_lhs = command == null ? null : command.
|
|
20220
|
+
var tmp4_elvis_lhs = command == null ? null : command.i7u_1;
|
|
20221
20221
|
var tmp6_nationality = tmp4_elvis_lhs == null ? 1n : tmp4_elvis_lhs;
|
|
20222
20222
|
var resident = new PersonResident(VOID, VOID, 'NO', VOID, id, tmp6_nationality, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, VOID, tmp5_name);
|
|
20223
20223
|
// Inline function 'kotlin.collections.getOrPut' call
|
|
@@ -21486,7 +21486,7 @@ protoOf(MockBackend).k8s = function () {
|
|
|
21486
21486
|
protoOf(MockBackend).yue = function () {
|
|
21487
21487
|
return this.issueComments;
|
|
21488
21488
|
};
|
|
21489
|
-
protoOf(MockBackend).
|
|
21489
|
+
protoOf(MockBackend).d7h = function () {
|
|
21490
21490
|
return this.documents;
|
|
21491
21491
|
};
|
|
21492
21492
|
protoOf(MockBackend).e7c = function () {
|
|
@@ -21501,10 +21501,10 @@ protoOf(MockBackend).zue = function () {
|
|
|
21501
21501
|
protoOf(MockBackend).auf = function () {
|
|
21502
21502
|
return this.invoicePlans;
|
|
21503
21503
|
};
|
|
21504
|
-
protoOf(MockBackend).
|
|
21504
|
+
protoOf(MockBackend).e7m = function () {
|
|
21505
21505
|
return this.organizations;
|
|
21506
21506
|
};
|
|
21507
|
-
protoOf(MockBackend).
|
|
21507
|
+
protoOf(MockBackend).g7m = function () {
|
|
21508
21508
|
return this.persons;
|
|
21509
21509
|
};
|
|
21510
21510
|
protoOf(MockBackend).buf = function () {
|
|
@@ -22964,7 +22964,7 @@ protoOf($verifySrpCOROUTINE$).u9 = function () {
|
|
|
22964
22964
|
var tmp0_clientId = ensureNotNull(this_0.api.clientId);
|
|
22965
22965
|
var tmp1_email = loginType.equals(LoginType_EMAIL_getInstance()) ? this.pul_1 : null;
|
|
22966
22966
|
var tmp2_mobile = loginType.equals(LoginType_MOBILE_getInstance()) ? this.pul_1 : null;
|
|
22967
|
-
var command = new VerifySrpCommand(tmp0_clientId, this.tul_1, tmp1_email, fingerprint, tmp2_mobile, this.qul_1, this.rul_1, this.sul_1);
|
|
22967
|
+
var command = new VerifySrpCommand(tmp0_clientId, this.tul_1, tmp1_email, fingerprint, VOID, VOID, tmp2_mobile, this.qul_1, this.rul_1, this.sul_1);
|
|
22968
22968
|
this.m9_1 = 1;
|
|
22969
22969
|
suspendResult = this_0.api.auth.wbb(command, this);
|
|
22970
22970
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
@@ -23235,7 +23235,7 @@ protoOf($verifyDeviceSrpCOROUTINE$).u9 = function () {
|
|
|
23235
23235
|
var tmp0_clientId = ensureNotNull(this_0.api.clientId);
|
|
23236
23236
|
var tmp1_email = loginType.equals(LoginType_EMAIL_getInstance()) ? this.yum_1 : null;
|
|
23237
23237
|
var tmp2_mobile = loginType.equals(LoginType_MOBILE_getInstance()) ? this.yum_1 : null;
|
|
23238
|
-
var command = new DeviceVerifySrpCommand(tmp0_clientId, deviceKey, tmp1_email, fingerprint, tmp2_mobile, this.aun_1, this.bun_1, this.zum_1, this.cun_1);
|
|
23238
|
+
var command = new DeviceVerifySrpCommand(tmp0_clientId, deviceKey, tmp1_email, fingerprint, VOID, VOID, tmp2_mobile, this.aun_1, this.bun_1, this.zum_1, this.cun_1);
|
|
23239
23239
|
this.m9_1 = 1;
|
|
23240
23240
|
suspendResult = this_0.api.auth.kbb(command, this);
|
|
23241
23241
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
@@ -23419,7 +23419,7 @@ protoOf($loginByCodeCOROUTINE$).u9 = function () {
|
|
|
23419
23419
|
this.n9_1 = 11;
|
|
23420
23420
|
this.jus_1 = Companion_instance;
|
|
23421
23421
|
var tmp0_clientId = ensureNotNull(this_0.api.clientId);
|
|
23422
|
-
var command = new ConfirmMagicEmailCommand(tmp0_clientId, this.aus_1, deviceKey, this.zur_1, fingerprint, session);
|
|
23422
|
+
var command = new ConfirmMagicEmailCommand(tmp0_clientId, this.aus_1, deviceKey, this.zur_1, fingerprint, VOID, VOID, session);
|
|
23423
23423
|
this.m9_1 = 9;
|
|
23424
23424
|
suspendResult = this_0.api.auth.fbb(command, this);
|
|
23425
23425
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
@@ -23441,7 +23441,7 @@ protoOf($loginByCodeCOROUTINE$).u9 = function () {
|
|
|
23441
23441
|
tmp_3 = tmp1_elvis_lhs_0;
|
|
23442
23442
|
}
|
|
23443
23443
|
var tmp3_session = tmp_3;
|
|
23444
|
-
var command_0 = new ConfirmMagicSmsCommand(tmp2_clientId, this.aus_1, deviceKey, fingerprint, this.zur_1, tmp3_session);
|
|
23444
|
+
var command_0 = new ConfirmMagicSmsCommand(tmp2_clientId, this.aus_1, deviceKey, fingerprint, VOID, VOID, this.zur_1, tmp3_session);
|
|
23445
23445
|
this.m9_1 = 1;
|
|
23446
23446
|
suspendResult = this_1.api.auth.hbb(command_0, this);
|
|
23447
23447
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
@@ -27097,7 +27097,7 @@ protoOf(Auth).ctq = function () {
|
|
|
27097
27097
|
protoOf(Auth).etq = function () {
|
|
27098
27098
|
return this.wup_1;
|
|
27099
27099
|
};
|
|
27100
|
-
protoOf(Auth).
|
|
27100
|
+
protoOf(Auth).l7p = function () {
|
|
27101
27101
|
return this.xup_1;
|
|
27102
27102
|
};
|
|
27103
27103
|
protoOf(Auth).gtq = function () {
|
|
@@ -29259,7 +29259,7 @@ protoOf($serializer).x14 = typeParametersSerializers;
|
|
|
29259
29259
|
protoOf($serializer_0).x14 = typeParametersSerializers;
|
|
29260
29260
|
protoOf($serializer_1).x14 = typeParametersSerializers;
|
|
29261
29261
|
defineProp(protoOf(EventBus), 'errors', protoOf(EventBus).bu5);
|
|
29262
|
-
defineProp(protoOf(EventBus), 'events', protoOf(EventBus).
|
|
29262
|
+
defineProp(protoOf(EventBus), 'events', protoOf(EventBus).e7h);
|
|
29263
29263
|
defineProp(protoOf(AuthMode), 'name', protoOf(AuthMode).m);
|
|
29264
29264
|
defineProp(protoOf(AuthMode), 'ordinal', protoOf(AuthMode).o3);
|
|
29265
29265
|
defineProp(protoOf(UnknownRefreshErrorException), 'message', function () {
|
|
@@ -29274,17 +29274,17 @@ defineProp(protoOf(HomeApi), 'clientId', function () {
|
|
|
29274
29274
|
this.stq(value);
|
|
29275
29275
|
});
|
|
29276
29276
|
defineProp(protoOf(HomeApi), 'clientSecret', function () {
|
|
29277
|
-
return this.
|
|
29277
|
+
return this.c7r();
|
|
29278
29278
|
}, function (value) {
|
|
29279
29279
|
this.ttq(value);
|
|
29280
29280
|
});
|
|
29281
29281
|
defineProp(protoOf(HomeApi), 'scopes', function () {
|
|
29282
|
-
return this.
|
|
29282
|
+
return this.d7r();
|
|
29283
29283
|
}, function (value) {
|
|
29284
29284
|
this.utq(value);
|
|
29285
29285
|
});
|
|
29286
29286
|
defineProp(protoOf(HomeApi), 'userId', function () {
|
|
29287
|
-
return this.
|
|
29287
|
+
return this.n7k();
|
|
29288
29288
|
}, function (value) {
|
|
29289
29289
|
this.nu9(value);
|
|
29290
29290
|
});
|
|
@@ -29297,7 +29297,7 @@ defineProp(protoOf(HomeApi), 'users', function () {
|
|
|
29297
29297
|
return this.gub();
|
|
29298
29298
|
});
|
|
29299
29299
|
defineProp(protoOf(HomeApi), 'documents', function () {
|
|
29300
|
-
return this.
|
|
29300
|
+
return this.d7h();
|
|
29301
29301
|
});
|
|
29302
29302
|
defineProp(protoOf(HomeApi), 'conversations', function () {
|
|
29303
29303
|
return this.wah();
|
|
@@ -29321,7 +29321,7 @@ defineProp(protoOf(HomeApi), 'residents', function () {
|
|
|
29321
29321
|
return this.kub();
|
|
29322
29322
|
});
|
|
29323
29323
|
defineProp(protoOf(HomeApi), 'person', function () {
|
|
29324
|
-
return this.
|
|
29324
|
+
return this.z7h();
|
|
29325
29325
|
});
|
|
29326
29326
|
defineProp(protoOf(HomeApi), 'auth', function () {
|
|
29327
29327
|
return this.pah();
|
|
@@ -29342,7 +29342,7 @@ defineProp(protoOf(HomeApi), 'storage', function () {
|
|
|
29342
29342
|
return this.nub();
|
|
29343
29343
|
});
|
|
29344
29344
|
defineProp(protoOf(HomeApi), 'language', function () {
|
|
29345
|
-
return this.
|
|
29345
|
+
return this.t7k();
|
|
29346
29346
|
});
|
|
29347
29347
|
defineProp(protoOf(HomeApi), 'board', function () {
|
|
29348
29348
|
return this.oub();
|
|
@@ -29407,7 +29407,7 @@ defineProp(protoOf(Auth), 'pushTokenProvider', function () {
|
|
|
29407
29407
|
return this.etq();
|
|
29408
29408
|
});
|
|
29409
29409
|
defineProp(protoOf(Auth), 'settings', function () {
|
|
29410
|
-
return this.
|
|
29410
|
+
return this.l7p();
|
|
29411
29411
|
});
|
|
29412
29412
|
defineProp(protoOf(Auth), 'deviceManager', function () {
|
|
29413
29413
|
return this.gtq();
|