@solibo/solibo-sdk 1.1.10 → 1.1.11
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/KmLogging-logging.mjs +77 -77
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- package/KotlinBigInteger-bignum.mjs +1099 -1099
- package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
- package/Stately-stately-concurrency.mjs +4 -4
- package/cryptography-kotlin-cryptography-bigint.mjs +26 -26
- package/cryptography-kotlin-cryptography-core.mjs +47 -47
- package/cryptography-kotlin-cryptography-provider-base.mjs +8 -8
- package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +136 -136
- package/cryptography-kotlin-cryptography-random.mjs +15 -15
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +118 -118
- package/cryptography-kotlin-cryptography-serialization-asn1.mjs +252 -252
- package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
- package/kotlin-kotlin-stdlib.mjs +61 -43
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +1063 -1063
- package/ktor-ktor-client-auth.mjs +244 -244
- package/ktor-ktor-client-content-negotiation.mjs +121 -121
- package/ktor-ktor-client-core.mjs +2427 -2427
- package/ktor-ktor-client-logging.mjs +593 -593
- package/ktor-ktor-client-mock.mjs +46 -46
- package/ktor-ktor-http-cio.mjs +289 -289
- package/ktor-ktor-http.mjs +305 -309
- package/ktor-ktor-http.mjs.map +1 -1
- package/ktor-ktor-serialization-kotlinx-json.mjs +5 -5
- package/ktor-ktor-serialization-kotlinx.mjs +110 -110
- package/ktor-ktor-serialization.mjs +50 -50
- package/ktor-ktor-websockets.mjs +317 -317
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +21081 -21071
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +32 -9
- package/solibo-sdk-sdk.mjs +7990 -5465
- package/solibo-sdk-sdk.mjs.map +1 -1
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -15938,25 +15938,48 @@ export declare namespace HomeApi {
|
|
|
15938
15938
|
const constructor: abstract new () => HomeApi;
|
|
15939
15939
|
}
|
|
15940
15940
|
}
|
|
15941
|
+
export interface MockBackendProps {
|
|
15942
|
+
userIdProvider?: () => string | null | undefined, prefill?: boolean;
|
|
15943
|
+
}
|
|
15941
15944
|
export declare class MockBackend {
|
|
15942
|
-
constructor();
|
|
15945
|
+
constructor(props: MockBackendProps);
|
|
15946
|
+
constructor(userIdProvider?: () => string | null | undefined, prefill?: boolean);
|
|
15943
15947
|
get users(): KtMutableMap<string, User>;
|
|
15944
15948
|
get companies(): KtMutableMap<bigint, Company>;
|
|
15945
15949
|
get tasks(): KtMutableMap<bigint, Task>;
|
|
15946
15950
|
get issues(): KtMutableMap<bigint, Issue>;
|
|
15951
|
+
get issueComments(): KtMutableMap<bigint, KtMutableList<IssueComment>>;
|
|
15947
15952
|
get documents(): KtMutableMap<bigint, Document>;
|
|
15948
15953
|
get sections(): KtMutableMap<bigint, Section>;
|
|
15949
|
-
get residents(): KtMutableMap<bigint, Resident>;
|
|
15950
15954
|
get conversations(): KtMutableMap<bigint, Conversation>;
|
|
15951
|
-
get
|
|
15952
|
-
get boardMembers(): KtMutableMap<bigint, Person>;
|
|
15953
|
-
get smsBroadcasts(): KtMutableMap<bigint, SMSBroadcast>;
|
|
15955
|
+
get conversationCategoriesPerCompany(): KtMutableMap<bigint, KtMutableList<SecureConversationCategory>>;
|
|
15954
15956
|
get invoicePlans(): KtMutableMap<bigint, InvoicePlan>;
|
|
15955
|
-
get
|
|
15956
|
-
get
|
|
15957
|
-
get
|
|
15957
|
+
get organizations(): KtMutableMap<bigint, Organization>;
|
|
15958
|
+
get persons(): KtMutableMap<bigint, Person>;
|
|
15959
|
+
get meetings(): KtMutableMap<bigint, MeetingDetails>;
|
|
15960
|
+
get accounts(): KtMutableMap<bigint, KtMutableList<Account>>;
|
|
15961
|
+
get residentsPerCompany(): KtMutableMap<bigint, KtMutableList<Resident>>;
|
|
15962
|
+
get boardMembersPerCompany(): KtMutableMap<bigint, KtMutableList<Person>>;
|
|
15963
|
+
get boardMemberPersonnummers(): KtMutableMap<bigint, BoardmemberPersonnummer>;
|
|
15964
|
+
get suppliersPerCompany(): KtMutableMap<bigint, KtMutableList<SupplierForCompany>>;
|
|
15965
|
+
get expensesPerCompany(): KtMutableMap<bigint, KtMutableList<Expense>>;
|
|
15966
|
+
get smsBroadcastsPerCompany(): KtMutableMap<bigint, KtMutableList<SMSBroadcast>>;
|
|
15967
|
+
get invoicesPerCompany(): KtMutableMap<bigint, KtMutableList<Invoice>>;
|
|
15968
|
+
get loansPerCompany(): KtMutableMap<bigint, KtMutableList<Loan>>;
|
|
15969
|
+
get settlementsPerCompany(): KtMutableMap<bigint, KtMutableList<Settlement>>;
|
|
15970
|
+
get storageRoomsPerCompany(): KtMutableMap<bigint, KtMutableList<StorageRoom>>;
|
|
15971
|
+
get parkingSpacesPerCompany(): KtMutableMap<bigint, KtMutableList<ParkingSpace>>;
|
|
15972
|
+
get insurancesPerCompany(): KtMutableMap<bigint, KtMutableList<Insurance>>;
|
|
15973
|
+
get homepagesPerCompany(): KtMutableMap<bigint, Homepage>;
|
|
15974
|
+
get hmsSettingsPerCompany(): KtMutableMap<bigint, HmsSettings>;
|
|
15975
|
+
get routinesPerCompany(): KtMutableMap<bigint, KtMutableList<Routine>>;
|
|
15976
|
+
get issueSections(): KtMutableMap<bigint, KtMutableList<bigint>>;
|
|
15977
|
+
get issueConversations(): KtMutableMap<bigint, KtMutableList<bigint>>;
|
|
15978
|
+
get countries(): KtMutableList<Country>;
|
|
15958
15979
|
get capturedRequests(): KtMutableList<any/* HttpRequestData */>;
|
|
15980
|
+
prefillResources(): void;
|
|
15959
15981
|
prefillCompanies(): void;
|
|
15982
|
+
prefillUsers(): void;
|
|
15960
15983
|
addCompany(id: bigint, name: string): void;
|
|
15961
15984
|
addHandler(handler: (p0: any/* MockRequestHandleScope */, p1: any/* HttpRequestData */) => any | null | undefined/* HttpResponseData | null | undefined */): void;
|
|
15962
15985
|
get engine(): any/* MockEngine */;
|
|
@@ -15968,7 +15991,7 @@ export declare namespace MockBackend {
|
|
|
15968
15991
|
}
|
|
15969
15992
|
}
|
|
15970
15993
|
export declare class MockHomeApi extends HomeApi.$metadata$.constructor {
|
|
15971
|
-
constructor(fingerprinter: Fingerprinter, device: DeviceManager, authMode?: AuthMode,
|
|
15994
|
+
constructor(fingerprinter: Fingerprinter, device: DeviceManager, authMode?: AuthMode, prefill?: boolean, settings?: any/* Settings */, backend?: MockBackend);
|
|
15972
15995
|
get authMode(): AuthMode;
|
|
15973
15996
|
get backend(): MockBackend;
|
|
15974
15997
|
}
|