@solibo/solibo-sdk 1.7.3 → 1.7.4

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 (31) hide show
  1. package/KmLogging-logging.mjs +75 -75
  2. package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
  3. package/KotlinBigInteger-bignum.mjs +1104 -1104
  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/kotlin-kotlin-stdlib.mjs +11 -11
  20. package/kotlin-kotlin-stdlib.mjs.map +1 -1
  21. package/kotlinx-coroutines-core.mjs +1 -1
  22. package/ktor-ktor-client-auth.mjs +224 -224
  23. package/ktor-ktor-client-encoding.mjs +75 -75
  24. package/ktor-ktor-client-logging.mjs +520 -520
  25. package/ktor-ktor-client-mock.mjs +39 -39
  26. package/package.json +1 -1
  27. package/solibo-sdk-sdk-home-api.mjs +18895 -18782
  28. package/solibo-sdk-sdk-home-api.mjs.map +1 -1
  29. package/solibo-sdk-sdk.d.mts +11 -3
  30. package/solibo-sdk-sdk.mjs +3036 -3036
  31. package/solibo-sdk-sdk.mjs.map +1 -1
@@ -9979,6 +9979,7 @@ export interface OrganizationProps {
9979
9979
  businessContact?: BusinessContactProps | null | undefined;
9980
9980
  classification: string;
9981
9981
  country: string;
9982
+ domain?: string | null | undefined;
9982
9983
  employees?: OrganizationEmployeeProps[] | null | undefined;
9983
9984
  historicRoles?: RoleProps[] | null | undefined;
9984
9985
  id: bigint;
@@ -9998,12 +9999,13 @@ export interface OrganizationProps {
9998
9999
  }
9999
10000
  export declare class Organization {
10000
10001
  constructor(props: OrganizationProps);
10001
- constructor(accountNumber: string | null | undefined, businessAddress: BusinessAddress | null | undefined, businessContact: BusinessContact | null | undefined, classification: string, country: string, employees: OrganizationEmployee[] | null | undefined, historicRoles: Role[] | null | undefined, id: bigint, kartverketId: string | null | undefined, logoUrl: string | null | undefined, name: string, nationality: bigint, note?: string | null | undefined, orgNr?: string | null | undefined, parkingSpaces?: ParkingSpaceOwnership[] | null | undefined, preferredLanguage?: bigint | null | undefined, reservations?: Map<string, OrganizationReservations | null | undefined> | null | undefined, reservedEmail?: boolean | null | undefined, reservedSMS?: boolean | null | undefined, roles?: Role[] | null | undefined, storageRooms?: StorageRoomOwnership[] | null | undefined);
10002
+ constructor(accountNumber: string | null | undefined, businessAddress: BusinessAddress | null | undefined, businessContact: BusinessContact | null | undefined, classification: string, country: string, domain: string | null | undefined, employees: OrganizationEmployee[] | null | undefined, historicRoles: Role[] | null | undefined, id: bigint, kartverketId: string | null | undefined, logoUrl: string | null | undefined, name: string, nationality: bigint, note?: string | null | undefined, orgNr?: string | null | undefined, parkingSpaces?: ParkingSpaceOwnership[] | null | undefined, preferredLanguage?: bigint | null | undefined, reservations?: Map<string, OrganizationReservations | null | undefined> | null | undefined, reservedEmail?: boolean | null | undefined, reservedSMS?: boolean | null | undefined, roles?: Role[] | null | undefined, storageRooms?: StorageRoomOwnership[] | null | undefined);
10002
10003
  get accountNumber(): string | null | undefined;
10003
10004
  get businessAddress(): BusinessAddress | null | undefined;
10004
10005
  get businessContact(): BusinessContact | null | undefined;
10005
10006
  get classification(): string;
10006
10007
  get country(): string;
10008
+ get domain(): string | null | undefined;
10007
10009
  get employees(): OrganizationEmployee[] | null | undefined;
10008
10010
  get historicRoles(): Role[] | null | undefined;
10009
10011
  get id(): bigint;
@@ -16177,6 +16179,8 @@ export declare namespace StorageRoomVacant {
16177
16179
  }
16178
16180
  }
16179
16181
  export interface SupplierProps {
16182
+ companyCount?: bigint | null | undefined;
16183
+ domain?: string | null | undefined;
16180
16184
  id: bigint;
16181
16185
  logoUrl?: string | null | undefined;
16182
16186
  name: string;
@@ -16185,7 +16189,9 @@ export interface SupplierProps {
16185
16189
  }
16186
16190
  export declare class Supplier {
16187
16191
  constructor(props: SupplierProps);
16188
- constructor(id: bigint, logoUrl: string | null | undefined, name: string, orgNr: string, serviceCategories: string[]);
16192
+ constructor(companyCount: bigint | null | undefined, domain: string | null | undefined, id: bigint, logoUrl: string | null | undefined, name: string, orgNr: string, serviceCategories: string[]);
16193
+ get companyCount(): bigint | null | undefined;
16194
+ get domain(): string | null | undefined;
16189
16195
  get id(): bigint;
16190
16196
  get logoUrl(): string | null | undefined;
16191
16197
  get name(): string;
@@ -18328,6 +18334,7 @@ export interface UpdateOrganizationCommandProps {
18328
18334
  businessAddress?: BusinessAddressProps | null | undefined;
18329
18335
  businessContact?: BusinessContactProps | null | undefined;
18330
18336
  classification?: string | null | undefined;
18337
+ domain?: string | null | undefined;
18331
18338
  historicRoles?: RoleProps[] | null | undefined;
18332
18339
  name?: string | null | undefined;
18333
18340
  nationality?: bigint | null | undefined;
@@ -18340,11 +18347,12 @@ export interface UpdateOrganizationCommandProps {
18340
18347
  }
18341
18348
  export declare class UpdateOrganizationCommand {
18342
18349
  constructor(props: UpdateOrganizationCommandProps);
18343
- constructor(accountNumber?: string | null | undefined, businessAddress?: BusinessAddress | null | undefined, businessContact?: BusinessContact | null | undefined, classification?: string | null | undefined, historicRoles?: Role[] | null | undefined, name?: string | null | undefined, nationality?: bigint | null | undefined, orgNr?: string | null | undefined, parkingSpaces?: ParkingSpaceOwnership[] | null | undefined, preferredLanguage?: bigint | null | undefined, roles?: Role[] | null | undefined, soliboManaged?: boolean | null | undefined, storageRooms?: StorageRoomOwnership[] | null | undefined);
18350
+ constructor(accountNumber?: string | null | undefined, businessAddress?: BusinessAddress | null | undefined, businessContact?: BusinessContact | null | undefined, classification?: string | null | undefined, domain?: string | null | undefined, historicRoles?: Role[] | null | undefined, name?: string | null | undefined, nationality?: bigint | null | undefined, orgNr?: string | null | undefined, parkingSpaces?: ParkingSpaceOwnership[] | null | undefined, preferredLanguage?: bigint | null | undefined, roles?: Role[] | null | undefined, soliboManaged?: boolean | null | undefined, storageRooms?: StorageRoomOwnership[] | null | undefined);
18344
18351
  get accountNumber(): string | null | undefined;
18345
18352
  get businessAddress(): BusinessAddress | null | undefined;
18346
18353
  get businessContact(): BusinessContact | null | undefined;
18347
18354
  get classification(): string | null | undefined;
18355
+ get domain(): string | null | undefined;
18348
18356
  get historicRoles(): Role[] | null | undefined;
18349
18357
  get name(): string | null | undefined;
18350
18358
  get nationality(): bigint | null | undefined;