@solibo/home-api 1.1.42 → 1.1.43
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/package.json +1 -1
- package/solibo-sdk-sdk-home-api.d.mts +12 -0
- package/solibo-sdk-sdk-home-api.mjs +11015 -10860
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
package/kotlin-kotlin-stdlib.mjs
CHANGED
|
@@ -59,12 +59,6 @@ if (typeof Math.trunc === 'undefined') {
|
|
|
59
59
|
return Math.ceil(x);
|
|
60
60
|
};
|
|
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;
|
package/package.json
CHANGED
|
@@ -12724,6 +12724,18 @@ export declare namespace WsEvent {
|
|
|
12724
12724
|
const constructor: abstract new () => WsEvent;
|
|
12725
12725
|
}
|
|
12726
12726
|
}
|
|
12727
|
+
export declare class AppStoresApi extends ApiClient.$metadata$.constructor {
|
|
12728
|
+
private constructor();
|
|
12729
|
+
static create(baseUrl?: string, httpClientEngine?: Nullable<any>/* Nullable<HttpClientEngine> */, httpClientConfig?: Nullable<(p0: any/* HttpClientConfig<UnknownType *> */) => void>, jsonSerializer?: any/* Json */): AppStoresApi;
|
|
12730
|
+
static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): AppStoresApi;
|
|
12731
|
+
appStoresRedirect(): Promise<HttpResponse<void>>;
|
|
12732
|
+
}
|
|
12733
|
+
export declare namespace AppStoresApi {
|
|
12734
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12735
|
+
namespace $metadata$ {
|
|
12736
|
+
const constructor: abstract new () => AppStoresApi;
|
|
12737
|
+
}
|
|
12738
|
+
}
|
|
12727
12739
|
export declare class AuthApi extends ApiClient.$metadata$.constructor {
|
|
12728
12740
|
private constructor();
|
|
12729
12741
|
static create(baseUrl?: string, httpClientEngine?: Nullable<any>/* Nullable<HttpClientEngine> */, httpClientConfig?: Nullable<(p0: any/* HttpClientConfig<UnknownType *> */) => void>, jsonSerializer?: any/* Json */): AuthApi;
|