@solibo/solibo-sdk 1.7.7 → 1.7.8

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.
Files changed (33) hide show
  1. package/KmLogging-logging.mjs +98 -98
  2. package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
  3. package/KotlinBigInteger-bignum.mjs +1114 -1114
  4. package/MultiplatformSettings-multiplatform-settings-test.mjs +18 -18
  5. package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
  6. package/Stately-stately-concurrency.mjs +3 -3
  7. package/bitops-library-bits.mjs +33 -33
  8. package/bitops-library-endian.mjs +3 -3
  9. package/core-library-digest.mjs +29 -29
  10. package/cryptography-kotlin-cryptography-bigint.mjs +27 -27
  11. package/cryptography-kotlin-cryptography-core.mjs +47 -47
  12. package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
  13. package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +135 -135
  14. package/cryptography-kotlin-cryptography-random.mjs +15 -15
  15. package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +112 -112
  16. package/cryptography-kotlin-cryptography-serialization-asn1.mjs +237 -237
  17. package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
  18. package/hash-library-md.mjs +30 -30
  19. package/index.mjs +4 -0
  20. package/kotlin-kotlin-stdlib.mjs +4 -4
  21. package/kotlinx-coroutines-core.mjs +7 -7
  22. package/kotlinx-coroutines-core.mjs.map +1 -1
  23. package/ktor-ktor-client-auth.mjs +224 -224
  24. package/ktor-ktor-client-encoding.mjs +75 -75
  25. package/ktor-ktor-client-logging.mjs +520 -520
  26. package/ktor-ktor-client-mock.mjs +39 -39
  27. package/ktor-ktor-websockets.mjs +2 -2
  28. package/package.json +1 -1
  29. package/solibo-sdk-sdk-home-api.mjs +20722 -20286
  30. package/solibo-sdk-sdk-home-api.mjs.map +1 -1
  31. package/solibo-sdk-sdk.d.mts +97 -3
  32. package/solibo-sdk-sdk.mjs +3674 -3656
  33. package/solibo-sdk-sdk.mjs.map +1 -1
@@ -11941,19 +11941,23 @@ export declare namespace ParkingSpace {
11941
11941
  }
11942
11942
  export interface ParkingSpaceAllocationItemProps {
11943
11943
  charger?: boolean | null | undefined;
11944
+ currentAllocationStatus?: ParkingSpaceAllocationStatusProps | null | undefined;
11944
11945
  currentOwner?: ParkingSpaceVacancyAssignmentProps | null | undefined;
11945
11946
  id: bigint;
11946
11947
  identifier: string;
11948
+ nextVacancy?: SoliboInstant /* Instant */ | null | undefined;
11947
11949
  note?: string | null | undefined;
11948
11950
  type?: ParkingSpaceTypeProps | null | undefined;
11949
11951
  }
11950
11952
  export declare class ParkingSpaceAllocationItem {
11951
11953
  constructor(props: ParkingSpaceAllocationItemProps);
11952
- constructor(charger: boolean | null | undefined, currentOwner: ParkingSpaceVacancyAssignment | null | undefined, id: bigint, identifier: string, note?: string | null | undefined, type?: ParkingSpaceType | null | undefined);
11954
+ constructor(charger: boolean | null | undefined, currentAllocationStatus: ParkingSpaceAllocationStatus | null | undefined, currentOwner: ParkingSpaceVacancyAssignment | null | undefined, id: bigint, identifier: string, nextVacancy?: SoliboInstant /* Instant */ | null | undefined, note?: string | null | undefined, type?: ParkingSpaceType | null | undefined);
11953
11955
  get charger(): boolean | null | undefined;
11956
+ get currentAllocationStatus(): ParkingSpaceAllocationStatus | null | undefined;
11954
11957
  get currentOwner(): ParkingSpaceVacancyAssignment | null | undefined;
11955
11958
  get id(): bigint;
11956
11959
  get identifier(): string;
11960
+ get nextVacancy(): SoliboInstant /* Instant */ | null | undefined;
11957
11961
  get note(): string | null | undefined;
11958
11962
  get type(): ParkingSpaceType | null | undefined;
11959
11963
  }
@@ -11989,6 +11993,48 @@ export declare namespace ParkingSpaceAllocationOverview {
11989
11993
  const constructor: abstract new () => ParkingSpaceAllocationOverview;
11990
11994
  }
11991
11995
  }
11996
+ export declare abstract class ParkingSpaceAllocationStatus {
11997
+ private constructor();
11998
+ static get ALLOCATED(): ParkingSpaceAllocationStatus & {
11999
+ get name(): "ALLOCATED";
12000
+ get ordinal(): 0;
12001
+ };
12002
+ static get VACANT(): ParkingSpaceAllocationStatus & {
12003
+ get name(): "VACANT";
12004
+ get ordinal(): 1;
12005
+ };
12006
+ static get Allocated(): ParkingSpaceAllocationStatus & {
12007
+ get name(): "ALLOCATED";
12008
+ get ordinal(): 0;
12009
+ };
12010
+ static get Vacant(): ParkingSpaceAllocationStatus & {
12011
+ get name(): "VACANT";
12012
+ get ordinal(): 1;
12013
+ };
12014
+ static values(): [typeof ParkingSpaceAllocationStatus.ALLOCATED, typeof ParkingSpaceAllocationStatus.VACANT];
12015
+ static valueOf(value: string): ParkingSpaceAllocationStatus;
12016
+ get name(): "ALLOCATED" | "VACANT";
12017
+ get ordinal(): 0 | 1;
12018
+ get value(): string;
12019
+ }
12020
+ export declare namespace ParkingSpaceAllocationStatus {
12021
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12022
+ namespace $metadata$ {
12023
+ const constructor: abstract new () => ParkingSpaceAllocationStatus;
12024
+ }
12025
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
12026
+ private constructor();
12027
+ }
12028
+ namespace Companion {
12029
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12030
+ namespace $metadata$ {
12031
+ abstract class constructor /* implements SerializerFactory */ {
12032
+ fromValue(value: string): ParkingSpaceAllocationStatus | null | undefined;
12033
+ private constructor();
12034
+ }
12035
+ }
12036
+ }
12037
+ }
11992
12038
  export declare abstract class ParkingSpaceOwnerType {
11993
12039
  private constructor();
11994
12040
  static get SECTION(): ParkingSpaceOwnerType & {
@@ -12839,15 +12885,17 @@ export interface PersonParticipantProps {
12839
12885
  id: bigint;
12840
12886
  name: string;
12841
12887
  participantId: bigint;
12888
+ actingRoleType?: RoleTypeProps | null | undefined;
12842
12889
  person?: PersonProps | null | undefined;
12843
12890
  }
12844
12891
  export declare class PersonParticipant extends Participant.$metadata$.constructor {
12845
12892
  constructor(props: PersonParticipantProps);
12846
- constructor(active: boolean, id: bigint, name: string, participantId: bigint, person?: Person | null | undefined);
12893
+ constructor(active: boolean, id: bigint, name: string, participantId: bigint, actingRoleType?: RoleType | null | undefined, person?: Person | null | undefined);
12847
12894
  get active(): boolean;
12848
12895
  get id(): bigint;
12849
12896
  get name(): string;
12850
12897
  get participantId(): bigint;
12898
+ get actingRoleType(): RoleType | null | undefined;
12851
12899
  get person(): Person | null | undefined;
12852
12900
  }
12853
12901
  export declare namespace PersonParticipant {
@@ -15993,17 +16041,21 @@ export declare namespace StorageRoom {
15993
16041
  }
15994
16042
  }
15995
16043
  export interface StorageRoomAllocationItemProps {
16044
+ currentAllocationStatus?: StorageRoomAllocationStatusProps | null | undefined;
15996
16045
  currentOwner?: StorageRoomVacancyAssignmentProps | null | undefined;
15997
16046
  id: bigint;
15998
16047
  identifier: string;
16048
+ nextVacancy?: SoliboInstant /* Instant */ | null | undefined;
15999
16049
  note?: string | null | undefined;
16000
16050
  }
16001
16051
  export declare class StorageRoomAllocationItem {
16002
16052
  constructor(props: StorageRoomAllocationItemProps);
16003
- constructor(currentOwner: StorageRoomVacancyAssignment | null | undefined, id: bigint, identifier: string, note?: string | null | undefined);
16053
+ constructor(currentAllocationStatus: StorageRoomAllocationStatus | null | undefined, currentOwner: StorageRoomVacancyAssignment | null | undefined, id: bigint, identifier: string, nextVacancy?: SoliboInstant /* Instant */ | null | undefined, note?: string | null | undefined);
16054
+ get currentAllocationStatus(): StorageRoomAllocationStatus | null | undefined;
16004
16055
  get currentOwner(): StorageRoomVacancyAssignment | null | undefined;
16005
16056
  get id(): bigint;
16006
16057
  get identifier(): string;
16058
+ get nextVacancy(): SoliboInstant /* Instant */ | null | undefined;
16007
16059
  get note(): string | null | undefined;
16008
16060
  }
16009
16061
  export declare namespace StorageRoomAllocationItem {
@@ -16038,6 +16090,48 @@ export declare namespace StorageRoomAllocationOverview {
16038
16090
  const constructor: abstract new () => StorageRoomAllocationOverview;
16039
16091
  }
16040
16092
  }
16093
+ export declare abstract class StorageRoomAllocationStatus {
16094
+ private constructor();
16095
+ static get ALLOCATED(): StorageRoomAllocationStatus & {
16096
+ get name(): "ALLOCATED";
16097
+ get ordinal(): 0;
16098
+ };
16099
+ static get VACANT(): StorageRoomAllocationStatus & {
16100
+ get name(): "VACANT";
16101
+ get ordinal(): 1;
16102
+ };
16103
+ static get Allocated(): StorageRoomAllocationStatus & {
16104
+ get name(): "ALLOCATED";
16105
+ get ordinal(): 0;
16106
+ };
16107
+ static get Vacant(): StorageRoomAllocationStatus & {
16108
+ get name(): "VACANT";
16109
+ get ordinal(): 1;
16110
+ };
16111
+ static values(): [typeof StorageRoomAllocationStatus.ALLOCATED, typeof StorageRoomAllocationStatus.VACANT];
16112
+ static valueOf(value: string): StorageRoomAllocationStatus;
16113
+ get name(): "ALLOCATED" | "VACANT";
16114
+ get ordinal(): 0 | 1;
16115
+ get value(): string;
16116
+ }
16117
+ export declare namespace StorageRoomAllocationStatus {
16118
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
16119
+ namespace $metadata$ {
16120
+ const constructor: abstract new () => StorageRoomAllocationStatus;
16121
+ }
16122
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
16123
+ private constructor();
16124
+ }
16125
+ namespace Companion {
16126
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
16127
+ namespace $metadata$ {
16128
+ abstract class constructor /* implements SerializerFactory */ {
16129
+ fromValue(value: string): StorageRoomAllocationStatus | null | undefined;
16130
+ private constructor();
16131
+ }
16132
+ }
16133
+ }
16134
+ }
16041
16135
  export declare abstract class StorageRoomOwnerType {
16042
16136
  private constructor();
16043
16137
  static get SECTION(): StorageRoomOwnerType & {