@solibo/home-api 1.7.7 → 1.7.8-80f7cc4-1781521268131-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-DateTime-library-kotlinx-datetime.mjs +1 -1
- package/MultiplatformSettings-multiplatform-settings-no-arg.mjs +1 -1
- package/MultiplatformSettings-multiplatform-settings.mjs +1 -1
- package/kotlin-kotlin-stdlib.mjs +17 -17
- package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.mjs +1 -1
- package/kotlinx-atomicfu.mjs +1 -1
- package/kotlinx-browser.mjs +1 -1
- package/kotlinx-coroutines-core.mjs +2 -2
- package/kotlinx-io-kotlinx-io-bytestring.mjs +1 -1
- package/kotlinx-io-kotlinx-io-core.mjs +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core.mjs +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json-io.mjs +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +1 -1
- package/ktor-ktor-client-auth.mjs +1 -1
- package/ktor-ktor-client-content-negotiation.mjs +1 -1
- package/ktor-ktor-client-core.mjs +1 -1
- package/ktor-ktor-client-encoding.mjs +1 -1
- package/ktor-ktor-client-logging.mjs +1 -1
- package/ktor-ktor-client-websockets.mjs +1 -1
- package/ktor-ktor-events.mjs +1 -1
- package/ktor-ktor-http-cio.mjs +1 -1
- package/ktor-ktor-http.mjs +1 -1
- package/ktor-ktor-io.mjs +1 -1
- package/ktor-ktor-serialization-kotlinx-json.mjs +1 -1
- package/ktor-ktor-serialization-kotlinx.mjs +1 -1
- package/ktor-ktor-serialization.mjs +1 -1
- package/ktor-ktor-sse.mjs +1 -1
- package/ktor-ktor-utils.mjs +1 -1
- package/ktor-ktor-websocket-serialization.mjs +1 -1
- package/ktor-ktor-websockets.mjs +1 -1
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.d.mts +97 -6
- package/solibo-sdk-sdk-home-api.mjs +20697 -20308
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs.map +0 -1
- package/MultiplatformSettings-multiplatform-settings-no-arg.mjs.map +0 -1
- package/MultiplatformSettings-multiplatform-settings.mjs.map +0 -1
- package/kotlin-kotlin-stdlib.mjs.map +0 -1
- package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.mjs.map +0 -1
- package/kotlinx-atomicfu.mjs.map +0 -1
- package/kotlinx-browser.mjs.map +0 -1
- package/kotlinx-coroutines-core.mjs.map +0 -1
- package/kotlinx-io-kotlinx-io-bytestring.mjs.map +0 -1
- package/kotlinx-io-kotlinx-io-core.mjs.map +0 -1
- package/kotlinx-serialization-kotlinx-serialization-core.mjs.map +0 -1
- package/kotlinx-serialization-kotlinx-serialization-json-io.mjs.map +0 -1
- package/kotlinx-serialization-kotlinx-serialization-json.mjs.map +0 -1
- package/ktor-ktor-client-auth.mjs.map +0 -1
- package/ktor-ktor-client-content-negotiation.mjs.map +0 -1
- package/ktor-ktor-client-core.mjs.map +0 -1
- package/ktor-ktor-client-encoding.mjs.map +0 -1
- package/ktor-ktor-client-logging.mjs.map +0 -1
- package/ktor-ktor-client-websockets.mjs.map +0 -1
- package/ktor-ktor-events.mjs.map +0 -1
- package/ktor-ktor-http-cio.mjs.map +0 -1
- package/ktor-ktor-http.mjs.map +0 -1
- package/ktor-ktor-io.mjs.map +0 -1
- package/ktor-ktor-serialization-kotlinx-json.mjs.map +0 -1
- package/ktor-ktor-serialization-kotlinx.mjs.map +0 -1
- package/ktor-ktor-serialization.mjs.map +0 -1
- package/ktor-ktor-sse.mjs.map +0 -1
- package/ktor-ktor-utils.mjs.map +0 -1
- package/ktor-ktor-websocket-serialization.mjs.map +0 -1
- package/ktor-ktor-websockets.mjs.map +0 -1
- package/solibo-sdk-sdk-home-api.mjs.map +0 -1
package/kotlin-kotlin-stdlib.mjs
CHANGED
|
@@ -37,17 +37,6 @@ if (typeof Array.prototype.fill === 'undefined') {
|
|
|
37
37
|
Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
|
|
38
38
|
}
|
|
39
39
|
});
|
|
40
|
-
if (typeof Math.clz32 === 'undefined') {
|
|
41
|
-
Math.clz32 = function (log, LN2) {
|
|
42
|
-
return function (x) {
|
|
43
|
-
var asUint = x >>> 0;
|
|
44
|
-
if (asUint === 0) {
|
|
45
|
-
return 32;
|
|
46
|
-
}
|
|
47
|
-
return 31 - (log(asUint) / LN2 | 0) | 0; // the "| 0" acts like math.floor
|
|
48
|
-
};
|
|
49
|
-
}(Math.log, Math.LN2);
|
|
50
|
-
}
|
|
51
40
|
if (typeof Math.trunc === 'undefined') {
|
|
52
41
|
Math.trunc = function (x) {
|
|
53
42
|
if (isNaN(x)) {
|
|
@@ -59,11 +48,16 @@ if (typeof Math.trunc === 'undefined') {
|
|
|
59
48
|
return Math.ceil(x);
|
|
60
49
|
};
|
|
61
50
|
}
|
|
62
|
-
if (typeof
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
51
|
+
if (typeof Math.clz32 === 'undefined') {
|
|
52
|
+
Math.clz32 = function (log, LN2) {
|
|
53
|
+
return function (x) {
|
|
54
|
+
var asUint = x >>> 0;
|
|
55
|
+
if (asUint === 0) {
|
|
56
|
+
return 32;
|
|
57
|
+
}
|
|
58
|
+
return 31 - (log(asUint) / LN2 | 0) | 0; // the "| 0" acts like math.floor
|
|
59
|
+
};
|
|
60
|
+
}(Math.log, Math.LN2);
|
|
67
61
|
}
|
|
68
62
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
69
63
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
@@ -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;
|
|
@@ -16970,4 +16970,4 @@ export {
|
|
|
16970
16970
|
};
|
|
16971
16971
|
//endregion
|
|
16972
16972
|
|
|
16973
|
-
|
|
16973
|
+
|
package/kotlinx-atomicfu.mjs
CHANGED
package/kotlinx-browser.mjs
CHANGED
|
@@ -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, Waiter, SelectInstance], [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]);
|
|
@@ -8901,4 +8901,4 @@ export {
|
|
|
8901
8901
|
};
|
|
8902
8902
|
//endregion
|
|
8903
8903
|
|
|
8904
|
-
|
|
8904
|
+
|
|
@@ -10022,4 +10022,4 @@ export {
|
|
|
10022
10022
|
};
|
|
10023
10023
|
//endregion
|
|
10024
10024
|
|
|
10025
|
-
|
|
10025
|
+
|
package/ktor-ktor-events.mjs
CHANGED
package/ktor-ktor-http-cio.mjs
CHANGED
package/ktor-ktor-http.mjs
CHANGED
package/ktor-ktor-io.mjs
CHANGED
package/ktor-ktor-sse.mjs
CHANGED
package/ktor-ktor-utils.mjs
CHANGED
package/ktor-ktor-websockets.mjs
CHANGED
package/package.json
CHANGED
|
@@ -10371,14 +10371,16 @@ export declare namespace ParkingSpace {
|
|
|
10371
10371
|
}
|
|
10372
10372
|
}
|
|
10373
10373
|
export declare class ParkingSpaceAllocationItem {
|
|
10374
|
-
constructor(charger: Nullable<boolean> | undefined, currentOwner: Nullable<ParkingSpaceVacancyAssignment> | undefined, id: bigint, identifier: string, note?: Nullable<string>, type?: Nullable<ParkingSpaceType>);
|
|
10374
|
+
constructor(charger: Nullable<boolean> | undefined, currentAllocationStatus: Nullable<ParkingSpaceAllocationStatus> | undefined, currentOwner: Nullable<ParkingSpaceVacancyAssignment> | undefined, id: bigint, identifier: string, nextVacancy?: Nullable<any>/* Nullable<Instant> */, note?: Nullable<string>, type?: Nullable<ParkingSpaceType>);
|
|
10375
10375
|
get charger(): Nullable<boolean>;
|
|
10376
|
+
get currentAllocationStatus(): Nullable<ParkingSpaceAllocationStatus>;
|
|
10376
10377
|
get currentOwner(): Nullable<ParkingSpaceVacancyAssignment>;
|
|
10377
10378
|
get id(): bigint;
|
|
10378
10379
|
get identifier(): string;
|
|
10380
|
+
get nextVacancy(): Nullable<any>/* Nullable<Instant> */;
|
|
10379
10381
|
get note(): Nullable<string>;
|
|
10380
10382
|
get type(): Nullable<ParkingSpaceType>;
|
|
10381
|
-
copy(charger?: Nullable<boolean>, currentOwner?: Nullable<ParkingSpaceVacancyAssignment>, id?: bigint, identifier?: string, note?: Nullable<string>, type?: Nullable<ParkingSpaceType>): ParkingSpaceAllocationItem;
|
|
10383
|
+
copy(charger?: Nullable<boolean>, currentAllocationStatus?: Nullable<ParkingSpaceAllocationStatus>, currentOwner?: Nullable<ParkingSpaceVacancyAssignment>, id?: bigint, identifier?: string, nextVacancy?: Nullable<any>/* Nullable<Instant> */, note?: Nullable<string>, type?: Nullable<ParkingSpaceType>): ParkingSpaceAllocationItem;
|
|
10382
10384
|
toString(): string;
|
|
10383
10385
|
hashCode(): number;
|
|
10384
10386
|
equals(other: Nullable<any>): boolean;
|
|
@@ -10409,6 +10411,49 @@ export declare namespace ParkingSpaceAllocationOverview {
|
|
|
10409
10411
|
const constructor: abstract new () => ParkingSpaceAllocationOverview;
|
|
10410
10412
|
}
|
|
10411
10413
|
}
|
|
10414
|
+
export declare abstract class ParkingSpaceAllocationStatus {
|
|
10415
|
+
private constructor();
|
|
10416
|
+
static get ALLOCATED(): ParkingSpaceAllocationStatus & {
|
|
10417
|
+
get name(): "ALLOCATED";
|
|
10418
|
+
get ordinal(): 0;
|
|
10419
|
+
};
|
|
10420
|
+
static get VACANT(): ParkingSpaceAllocationStatus & {
|
|
10421
|
+
get name(): "VACANT";
|
|
10422
|
+
get ordinal(): 1;
|
|
10423
|
+
};
|
|
10424
|
+
static get Allocated(): ParkingSpaceAllocationStatus & {
|
|
10425
|
+
get name(): "ALLOCATED";
|
|
10426
|
+
get ordinal(): 0;
|
|
10427
|
+
};
|
|
10428
|
+
static get Vacant(): ParkingSpaceAllocationStatus & {
|
|
10429
|
+
get name(): "VACANT";
|
|
10430
|
+
get ordinal(): 1;
|
|
10431
|
+
};
|
|
10432
|
+
static values(): [typeof ParkingSpaceAllocationStatus.ALLOCATED, typeof ParkingSpaceAllocationStatus.VACANT];
|
|
10433
|
+
static valueOf(value: string): ParkingSpaceAllocationStatus;
|
|
10434
|
+
get name(): "ALLOCATED" | "VACANT";
|
|
10435
|
+
get ordinal(): 0 | 1;
|
|
10436
|
+
get value(): string;
|
|
10437
|
+
toString(): string;
|
|
10438
|
+
}
|
|
10439
|
+
export declare namespace ParkingSpaceAllocationStatus {
|
|
10440
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
10441
|
+
namespace $metadata$ {
|
|
10442
|
+
const constructor: abstract new () => ParkingSpaceAllocationStatus;
|
|
10443
|
+
}
|
|
10444
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
10445
|
+
private constructor();
|
|
10446
|
+
}
|
|
10447
|
+
namespace Companion {
|
|
10448
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
10449
|
+
namespace $metadata$ {
|
|
10450
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
10451
|
+
fromValue(value: string): Nullable<ParkingSpaceAllocationStatus>;
|
|
10452
|
+
private constructor();
|
|
10453
|
+
}
|
|
10454
|
+
}
|
|
10455
|
+
}
|
|
10456
|
+
}
|
|
10412
10457
|
export declare abstract class ParkingSpaceOwnerType {
|
|
10413
10458
|
private constructor();
|
|
10414
10459
|
static get SECTION(): ParkingSpaceOwnerType & {
|
|
@@ -11163,13 +11208,14 @@ export declare namespace PersonName {
|
|
|
11163
11208
|
}
|
|
11164
11209
|
}
|
|
11165
11210
|
export declare class PersonParticipant extends Participant.$metadata$.constructor {
|
|
11166
|
-
constructor(active: boolean, id: bigint, name: string, participantId: bigint, person?: Nullable<Person>);
|
|
11211
|
+
constructor(active: boolean, id: bigint, name: string, participantId: bigint, actingRoleType?: Nullable<RoleType>, person?: Nullable<Person>);
|
|
11167
11212
|
get active(): boolean;
|
|
11168
11213
|
get id(): bigint;
|
|
11169
11214
|
get name(): string;
|
|
11170
11215
|
get participantId(): bigint;
|
|
11216
|
+
get actingRoleType(): Nullable<RoleType>;
|
|
11171
11217
|
get person(): Nullable<Person>;
|
|
11172
|
-
copy(active?: boolean, id?: bigint, name?: string, participantId?: bigint, person?: Nullable<Person>): PersonParticipant;
|
|
11218
|
+
copy(active?: boolean, id?: bigint, name?: string, participantId?: bigint, actingRoleType?: Nullable<RoleType>, person?: Nullable<Person>): PersonParticipant;
|
|
11173
11219
|
toString(): string;
|
|
11174
11220
|
hashCode(): number;
|
|
11175
11221
|
equals(other: Nullable<any>): boolean;
|
|
@@ -13914,12 +13960,14 @@ export declare namespace StorageRoom {
|
|
|
13914
13960
|
}
|
|
13915
13961
|
}
|
|
13916
13962
|
export declare class StorageRoomAllocationItem {
|
|
13917
|
-
constructor(currentOwner: Nullable<StorageRoomVacancyAssignment> | undefined, id: bigint, identifier: string, note?: Nullable<string>);
|
|
13963
|
+
constructor(currentAllocationStatus: Nullable<StorageRoomAllocationStatus> | undefined, currentOwner: Nullable<StorageRoomVacancyAssignment> | undefined, id: bigint, identifier: string, nextVacancy?: Nullable<any>/* Nullable<Instant> */, note?: Nullable<string>);
|
|
13964
|
+
get currentAllocationStatus(): Nullable<StorageRoomAllocationStatus>;
|
|
13918
13965
|
get currentOwner(): Nullable<StorageRoomVacancyAssignment>;
|
|
13919
13966
|
get id(): bigint;
|
|
13920
13967
|
get identifier(): string;
|
|
13968
|
+
get nextVacancy(): Nullable<any>/* Nullable<Instant> */;
|
|
13921
13969
|
get note(): Nullable<string>;
|
|
13922
|
-
copy(currentOwner?: Nullable<StorageRoomVacancyAssignment>, id?: bigint, identifier?: string, note?: Nullable<string>): StorageRoomAllocationItem;
|
|
13970
|
+
copy(currentAllocationStatus?: Nullable<StorageRoomAllocationStatus>, currentOwner?: Nullable<StorageRoomVacancyAssignment>, id?: bigint, identifier?: string, nextVacancy?: Nullable<any>/* Nullable<Instant> */, note?: Nullable<string>): StorageRoomAllocationItem;
|
|
13923
13971
|
toString(): string;
|
|
13924
13972
|
hashCode(): number;
|
|
13925
13973
|
equals(other: Nullable<any>): boolean;
|
|
@@ -13950,6 +13998,49 @@ export declare namespace StorageRoomAllocationOverview {
|
|
|
13950
13998
|
const constructor: abstract new () => StorageRoomAllocationOverview;
|
|
13951
13999
|
}
|
|
13952
14000
|
}
|
|
14001
|
+
export declare abstract class StorageRoomAllocationStatus {
|
|
14002
|
+
private constructor();
|
|
14003
|
+
static get ALLOCATED(): StorageRoomAllocationStatus & {
|
|
14004
|
+
get name(): "ALLOCATED";
|
|
14005
|
+
get ordinal(): 0;
|
|
14006
|
+
};
|
|
14007
|
+
static get VACANT(): StorageRoomAllocationStatus & {
|
|
14008
|
+
get name(): "VACANT";
|
|
14009
|
+
get ordinal(): 1;
|
|
14010
|
+
};
|
|
14011
|
+
static get Allocated(): StorageRoomAllocationStatus & {
|
|
14012
|
+
get name(): "ALLOCATED";
|
|
14013
|
+
get ordinal(): 0;
|
|
14014
|
+
};
|
|
14015
|
+
static get Vacant(): StorageRoomAllocationStatus & {
|
|
14016
|
+
get name(): "VACANT";
|
|
14017
|
+
get ordinal(): 1;
|
|
14018
|
+
};
|
|
14019
|
+
static values(): [typeof StorageRoomAllocationStatus.ALLOCATED, typeof StorageRoomAllocationStatus.VACANT];
|
|
14020
|
+
static valueOf(value: string): StorageRoomAllocationStatus;
|
|
14021
|
+
get name(): "ALLOCATED" | "VACANT";
|
|
14022
|
+
get ordinal(): 0 | 1;
|
|
14023
|
+
get value(): string;
|
|
14024
|
+
toString(): string;
|
|
14025
|
+
}
|
|
14026
|
+
export declare namespace StorageRoomAllocationStatus {
|
|
14027
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
14028
|
+
namespace $metadata$ {
|
|
14029
|
+
const constructor: abstract new () => StorageRoomAllocationStatus;
|
|
14030
|
+
}
|
|
14031
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
14032
|
+
private constructor();
|
|
14033
|
+
}
|
|
14034
|
+
namespace Companion {
|
|
14035
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
14036
|
+
namespace $metadata$ {
|
|
14037
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
14038
|
+
fromValue(value: string): Nullable<StorageRoomAllocationStatus>;
|
|
14039
|
+
private constructor();
|
|
14040
|
+
}
|
|
14041
|
+
}
|
|
14042
|
+
}
|
|
14043
|
+
}
|
|
13953
14044
|
export declare abstract class StorageRoomOwnerType {
|
|
13954
14045
|
private constructor();
|
|
13955
14046
|
static get SECTION(): StorageRoomOwnerType & {
|