@solibo/home-api 1.7.16 → 1.7.17-e412deb-1782074008319-SNAPSHOT
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 +6 -6
- package/kotlinx-coroutines-core.mjs +1 -1
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.d.mts +16 -8
- package/solibo-sdk-sdk-home-api.mjs +2288 -2072
package/kotlin-kotlin-stdlib.mjs
CHANGED
|
@@ -59,12 +59,6 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
59
59
|
};
|
|
60
60
|
}(Math.log, Math.LN2);
|
|
61
61
|
}
|
|
62
|
-
if (typeof String.prototype.startsWith === 'undefined') {
|
|
63
|
-
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
64
|
-
position = position || 0;
|
|
65
|
-
return this.lastIndexOf(searchString, position) === position;
|
|
66
|
-
}});
|
|
67
|
-
}
|
|
68
62
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
69
63
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
70
64
|
var subjectString = this.toString();
|
|
@@ -76,6 +70,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
76
70
|
return lastIndex !== -1 && lastIndex === position;
|
|
77
71
|
}});
|
|
78
72
|
}
|
|
73
|
+
if (typeof String.prototype.startsWith === 'undefined') {
|
|
74
|
+
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
75
|
+
position = position || 0;
|
|
76
|
+
return this.lastIndexOf(searchString, position) === position;
|
|
77
|
+
}});
|
|
78
|
+
}
|
|
79
79
|
//endregion
|
|
80
80
|
//region block: imports
|
|
81
81
|
var imul_0 = Math.imul;
|
|
@@ -263,7 +263,7 @@ initMetadataForClass(ContextScope, 'ContextScope', VOID, VOID, [CoroutineScope])
|
|
|
263
263
|
initMetadataForClass(Symbol, 'Symbol');
|
|
264
264
|
initMetadataForInterface(SelectInstance, 'SelectInstance');
|
|
265
265
|
initMetadataForClass(ClauseData, 'ClauseData', VOID, VOID, VOID, [1]);
|
|
266
|
-
initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler,
|
|
266
|
+
initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, SelectInstance, Waiter], [0, 2]);
|
|
267
267
|
initMetadataForClass(TrySelectDetailedResult, 'TrySelectDetailedResult', VOID, Enum);
|
|
268
268
|
initMetadataForClass(SetTimeoutBasedDispatcher, 'SetTimeoutBasedDispatcher', VOID, CoroutineDispatcher, [Delay], [1]);
|
|
269
269
|
initMetadataForObject(NodeDispatcher, 'NodeDispatcher', VOID, SetTimeoutBasedDispatcher, VOID, [1]);
|
package/package.json
CHANGED
|
@@ -1767,14 +1767,16 @@ export declare namespace CompleteTaskCommand {
|
|
|
1767
1767
|
}
|
|
1768
1768
|
}
|
|
1769
1769
|
export declare class ConfirmMagicEmailCommand {
|
|
1770
|
-
constructor(clientId: string, code: string, deviceKey: Nullable<string> | undefined, email: string, fingerprint?: Nullable<string>, session?: Nullable<string>);
|
|
1770
|
+
constructor(clientId: string, code: string, deviceKey: Nullable<string> | undefined, email: string, fingerprint?: Nullable<string>, mcpRedirectUri?: Nullable<string>, mcpState?: Nullable<string>, session?: Nullable<string>);
|
|
1771
1771
|
get clientId(): string;
|
|
1772
1772
|
get code(): string;
|
|
1773
1773
|
get deviceKey(): Nullable<string>;
|
|
1774
1774
|
get email(): string;
|
|
1775
1775
|
get fingerprint(): Nullable<string>;
|
|
1776
|
+
get mcpRedirectUri(): Nullable<string>;
|
|
1777
|
+
get mcpState(): Nullable<string>;
|
|
1776
1778
|
get session(): Nullable<string>;
|
|
1777
|
-
copy(clientId?: string, code?: string, deviceKey?: Nullable<string>, email?: string, fingerprint?: Nullable<string>, session?: Nullable<string>): ConfirmMagicEmailCommand;
|
|
1779
|
+
copy(clientId?: string, code?: string, deviceKey?: Nullable<string>, email?: string, fingerprint?: Nullable<string>, mcpRedirectUri?: Nullable<string>, mcpState?: Nullable<string>, session?: Nullable<string>): ConfirmMagicEmailCommand;
|
|
1778
1780
|
toString(): string;
|
|
1779
1781
|
hashCode(): number;
|
|
1780
1782
|
equals(other: Nullable<any>): boolean;
|
|
@@ -1786,14 +1788,16 @@ export declare namespace ConfirmMagicEmailCommand {
|
|
|
1786
1788
|
}
|
|
1787
1789
|
}
|
|
1788
1790
|
export declare class ConfirmMagicSmsCommand {
|
|
1789
|
-
constructor(clientId: string, code: string, deviceKey: Nullable<string> | undefined, fingerprint: Nullable<string> | undefined, mobile: string, session?: Nullable<string>);
|
|
1791
|
+
constructor(clientId: string, code: string, deviceKey: Nullable<string> | undefined, fingerprint: Nullable<string> | undefined, mcpRedirectUri: Nullable<string> | undefined, mcpState: Nullable<string> | undefined, mobile: string, session?: Nullable<string>);
|
|
1790
1792
|
get clientId(): string;
|
|
1791
1793
|
get code(): string;
|
|
1792
1794
|
get deviceKey(): Nullable<string>;
|
|
1793
1795
|
get fingerprint(): Nullable<string>;
|
|
1796
|
+
get mcpRedirectUri(): Nullable<string>;
|
|
1797
|
+
get mcpState(): Nullable<string>;
|
|
1794
1798
|
get mobile(): string;
|
|
1795
1799
|
get session(): Nullable<string>;
|
|
1796
|
-
copy(clientId?: string, code?: string, deviceKey?: Nullable<string>, fingerprint?: Nullable<string>, mobile?: string, session?: Nullable<string>): ConfirmMagicSmsCommand;
|
|
1800
|
+
copy(clientId?: string, code?: string, deviceKey?: Nullable<string>, fingerprint?: Nullable<string>, mcpRedirectUri?: Nullable<string>, mcpState?: Nullable<string>, mobile?: string, session?: Nullable<string>): ConfirmMagicSmsCommand;
|
|
1797
1801
|
toString(): string;
|
|
1798
1802
|
hashCode(): number;
|
|
1799
1803
|
equals(other: Nullable<any>): boolean;
|
|
@@ -3952,17 +3956,19 @@ export declare namespace DeviceSrpCommand {
|
|
|
3952
3956
|
}
|
|
3953
3957
|
}
|
|
3954
3958
|
export declare class DeviceVerifySrpCommand {
|
|
3955
|
-
constructor(clientId: string, deviceKey: Nullable<string> | undefined, email: Nullable<string> | undefined, fingerprint: string, mobile: Nullable<string> | undefined, passwordSignature: string, secretBlock: string, session: string, timestamp: string);
|
|
3959
|
+
constructor(clientId: string, deviceKey: Nullable<string> | undefined, email: Nullable<string> | undefined, fingerprint: string, mcpRedirectUri: Nullable<string> | undefined, mcpState: Nullable<string> | undefined, mobile: Nullable<string> | undefined, passwordSignature: string, secretBlock: string, session: string, timestamp: string);
|
|
3956
3960
|
get clientId(): string;
|
|
3957
3961
|
get deviceKey(): Nullable<string>;
|
|
3958
3962
|
get email(): Nullable<string>;
|
|
3959
3963
|
get fingerprint(): string;
|
|
3964
|
+
get mcpRedirectUri(): Nullable<string>;
|
|
3965
|
+
get mcpState(): Nullable<string>;
|
|
3960
3966
|
get mobile(): Nullable<string>;
|
|
3961
3967
|
get passwordSignature(): string;
|
|
3962
3968
|
get secretBlock(): string;
|
|
3963
3969
|
get session(): string;
|
|
3964
3970
|
get timestamp(): string;
|
|
3965
|
-
copy(clientId?: string, deviceKey?: Nullable<string>, email?: Nullable<string>, fingerprint?: string, mobile?: Nullable<string>, passwordSignature?: string, secretBlock?: string, session?: string, timestamp?: string): DeviceVerifySrpCommand;
|
|
3971
|
+
copy(clientId?: string, deviceKey?: Nullable<string>, email?: Nullable<string>, fingerprint?: string, mcpRedirectUri?: Nullable<string>, mcpState?: Nullable<string>, mobile?: Nullable<string>, passwordSignature?: string, secretBlock?: string, session?: string, timestamp?: string): DeviceVerifySrpCommand;
|
|
3966
3972
|
toString(): string;
|
|
3967
3973
|
hashCode(): number;
|
|
3968
3974
|
equals(other: Nullable<any>): boolean;
|
|
@@ -16972,16 +16978,18 @@ export declare namespace VerifyMfaCommand {
|
|
|
16972
16978
|
}
|
|
16973
16979
|
}
|
|
16974
16980
|
export declare class VerifySrpCommand {
|
|
16975
|
-
constructor(clientId: string, deviceKey: Nullable<string> | undefined, email: Nullable<string> | undefined, fingerprint: Nullable<string> | undefined, mobile: Nullable<string> | undefined, passwordSignature: string, secretBlock: string, timestamp: string);
|
|
16981
|
+
constructor(clientId: string, deviceKey: Nullable<string> | undefined, email: Nullable<string> | undefined, fingerprint: Nullable<string> | undefined, mcpRedirectUri: Nullable<string> | undefined, mcpState: Nullable<string> | undefined, mobile: Nullable<string> | undefined, passwordSignature: string, secretBlock: string, timestamp: string);
|
|
16976
16982
|
get clientId(): string;
|
|
16977
16983
|
get deviceKey(): Nullable<string>;
|
|
16978
16984
|
get email(): Nullable<string>;
|
|
16979
16985
|
get fingerprint(): Nullable<string>;
|
|
16986
|
+
get mcpRedirectUri(): Nullable<string>;
|
|
16987
|
+
get mcpState(): Nullable<string>;
|
|
16980
16988
|
get mobile(): Nullable<string>;
|
|
16981
16989
|
get passwordSignature(): string;
|
|
16982
16990
|
get secretBlock(): string;
|
|
16983
16991
|
get timestamp(): string;
|
|
16984
|
-
copy(clientId?: string, deviceKey?: Nullable<string>, email?: Nullable<string>, fingerprint?: Nullable<string>, mobile?: Nullable<string>, passwordSignature?: string, secretBlock?: string, timestamp?: string): VerifySrpCommand;
|
|
16992
|
+
copy(clientId?: string, deviceKey?: Nullable<string>, email?: Nullable<string>, fingerprint?: Nullable<string>, mcpRedirectUri?: Nullable<string>, mcpState?: Nullable<string>, mobile?: Nullable<string>, passwordSignature?: string, secretBlock?: string, timestamp?: string): VerifySrpCommand;
|
|
16985
16993
|
toString(): string;
|
|
16986
16994
|
hashCode(): number;
|
|
16987
16995
|
equals(other: Nullable<any>): boolean;
|