@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.
Files changed (34) hide show
  1. package/KmLogging-logging.mjs +77 -77
  2. package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
  3. package/KotlinBigInteger-bignum.mjs +1099 -1099
  4. package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
  5. package/Stately-stately-concurrency.mjs +4 -4
  6. package/cryptography-kotlin-cryptography-bigint.mjs +26 -26
  7. package/cryptography-kotlin-cryptography-core.mjs +47 -47
  8. package/cryptography-kotlin-cryptography-provider-base.mjs +8 -8
  9. package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +136 -136
  10. package/cryptography-kotlin-cryptography-random.mjs +15 -15
  11. package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +118 -118
  12. package/cryptography-kotlin-cryptography-serialization-asn1.mjs +252 -252
  13. package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
  14. package/kotlin-kotlin-stdlib.mjs +61 -43
  15. package/kotlin-kotlin-stdlib.mjs.map +1 -1
  16. package/kotlinx-serialization-kotlinx-serialization-json.mjs +1063 -1063
  17. package/ktor-ktor-client-auth.mjs +244 -244
  18. package/ktor-ktor-client-content-negotiation.mjs +121 -121
  19. package/ktor-ktor-client-core.mjs +2427 -2427
  20. package/ktor-ktor-client-logging.mjs +593 -593
  21. package/ktor-ktor-client-mock.mjs +46 -46
  22. package/ktor-ktor-http-cio.mjs +289 -289
  23. package/ktor-ktor-http.mjs +305 -309
  24. package/ktor-ktor-http.mjs.map +1 -1
  25. package/ktor-ktor-serialization-kotlinx-json.mjs +5 -5
  26. package/ktor-ktor-serialization-kotlinx.mjs +110 -110
  27. package/ktor-ktor-serialization.mjs +50 -50
  28. package/ktor-ktor-websockets.mjs +317 -317
  29. package/package.json +1 -1
  30. package/solibo-sdk-sdk-home-api.mjs +21081 -21071
  31. package/solibo-sdk-sdk-home-api.mjs.map +1 -1
  32. package/solibo-sdk-sdk.d.mts +32 -9
  33. package/solibo-sdk-sdk.mjs +7990 -5465
  34. package/solibo-sdk-sdk.mjs.map +1 -1
@@ -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 conversationCategories(): KtMutableMap<bigint, SecureConversationCategory>;
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 invoicePlanDistributions(): KtMutableMap<bigint, InvoicePlanDistribution>;
15956
- get invoicePlanRecipients(): KtMutableMap<bigint, InvoiceRecipient>;
15957
- get invoicePlanLines(): KtMutableMap<bigint, InvoicePlanLine>;
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, backend?: MockBackend, settings?: any/* Settings */);
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
  }