@solibo/solibo-sdk 1.6.26 → 1.6.27
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 +99 -99
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- package/KotlinBigInteger-bignum.mjs +1115 -1115
- package/MultiplatformSettings-multiplatform-settings-test.mjs +18 -18
- package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
- package/Stately-stately-concurrency.mjs +4 -4
- package/cryptography-kotlin-cryptography-bigint.mjs +27 -27
- package/cryptography-kotlin-cryptography-core.mjs +47 -47
- package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
- package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +135 -135
- package/cryptography-kotlin-cryptography-random.mjs +15 -15
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +112 -112
- package/cryptography-kotlin-cryptography-serialization-asn1.mjs +237 -237
- package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
- package/index.mjs +2 -0
- package/kotlin-kotlin-stdlib.mjs +12 -12
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +8 -8
- package/kotlinx-coroutines-core.mjs.map +1 -1
- package/ktor-ktor-client-auth.mjs +224 -224
- package/ktor-ktor-client-encoding.mjs +75 -75
- package/ktor-ktor-client-logging.mjs +520 -520
- package/ktor-ktor-client-mock.mjs +39 -39
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +28178 -27305
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +98 -16
- package/solibo-sdk-sdk.mjs +2914 -2897
- package/solibo-sdk-sdk.mjs.map +1 -1
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -3890,20 +3890,20 @@ export declare namespace CreateSettlementCommand {
|
|
|
3890
3890
|
}
|
|
3891
3891
|
}
|
|
3892
3892
|
export interface CreateSettlementCustomCostCommandProps {
|
|
3893
|
-
amount
|
|
3893
|
+
amount?: number | null | undefined;
|
|
3894
3894
|
description?: string | null | undefined;
|
|
3895
3895
|
settlementType: SettlementTypeProps;
|
|
3896
3896
|
unitPrice: number;
|
|
3897
|
-
units
|
|
3897
|
+
units?: number | null | undefined;
|
|
3898
3898
|
}
|
|
3899
3899
|
export declare class CreateSettlementCustomCostCommand {
|
|
3900
3900
|
constructor(props: CreateSettlementCustomCostCommandProps);
|
|
3901
|
-
constructor(amount: number, description: string | null | undefined, settlementType: SettlementType, unitPrice: number, units
|
|
3902
|
-
get amount(): number;
|
|
3901
|
+
constructor(amount: number | null | undefined, description: string | null | undefined, settlementType: SettlementType, unitPrice: number, units?: number | null | undefined);
|
|
3902
|
+
get amount(): number | null | undefined;
|
|
3903
3903
|
get description(): string | null | undefined;
|
|
3904
3904
|
get settlementType(): SettlementType;
|
|
3905
3905
|
get unitPrice(): number;
|
|
3906
|
-
get units(): number;
|
|
3906
|
+
get units(): number | null | undefined;
|
|
3907
3907
|
}
|
|
3908
3908
|
export declare namespace CreateSettlementCustomCostCommand {
|
|
3909
3909
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
@@ -9323,6 +9323,24 @@ export declare namespace MergePersonsCommand {
|
|
|
9323
9323
|
const constructor: abstract new () => MergePersonsCommand;
|
|
9324
9324
|
}
|
|
9325
9325
|
}
|
|
9326
|
+
export interface MergeSectionsCommandProps {
|
|
9327
|
+
effectiveDate: SoliboLocalDate /* LocalDate */;
|
|
9328
|
+
retainSectionId: bigint;
|
|
9329
|
+
sourceSectionIds: bigint[];
|
|
9330
|
+
}
|
|
9331
|
+
export declare class MergeSectionsCommand {
|
|
9332
|
+
constructor(props: MergeSectionsCommandProps);
|
|
9333
|
+
constructor(effectiveDate: SoliboLocalDate /* LocalDate */, retainSectionId: bigint, sourceSectionIds: bigint[]);
|
|
9334
|
+
get effectiveDate(): SoliboLocalDate /* LocalDate */;
|
|
9335
|
+
get retainSectionId(): bigint;
|
|
9336
|
+
get sourceSectionIds(): bigint[];
|
|
9337
|
+
}
|
|
9338
|
+
export declare namespace MergeSectionsCommand {
|
|
9339
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
9340
|
+
namespace $metadata$ {
|
|
9341
|
+
const constructor: abstract new () => MergeSectionsCommand;
|
|
9342
|
+
}
|
|
9343
|
+
}
|
|
9326
9344
|
export interface MessageEmailContentProps {
|
|
9327
9345
|
hasMoreContent?: boolean | null | undefined;
|
|
9328
9346
|
html?: string | null | undefined;
|
|
@@ -14599,6 +14617,7 @@ export interface SectionProps {
|
|
|
14599
14617
|
companyClassification?: string | null | undefined;
|
|
14600
14618
|
companyId: bigint;
|
|
14601
14619
|
deletedAt?: SoliboInstant /* Instant */ | null | undefined;
|
|
14620
|
+
deletionReason?: SectionDeletionReasonProps | null | undefined;
|
|
14602
14621
|
floor?: BuildingFloorProps | null | undefined;
|
|
14603
14622
|
floorId?: bigint | null | undefined;
|
|
14604
14623
|
fnr?: string | null | undefined;
|
|
@@ -14627,7 +14646,7 @@ export interface SectionProps {
|
|
|
14627
14646
|
}
|
|
14628
14647
|
export declare class Section {
|
|
14629
14648
|
constructor(props: SectionProps);
|
|
14630
|
-
constructor(anr: string | null | undefined, apartmentNr: string | null | undefined, area: string | null | undefined, bnr: string | null | undefined, building: Building | null | undefined, buildingId: bigint | null | undefined, capabilities: string[] | null | undefined, children: Section[] | null | undefined, classification: SectionType, companyClassification: string | null | undefined, companyId: bigint, deletedAt: SoliboInstant /* Instant */ | null | undefined, floor: BuildingFloor | null | undefined, floorId: bigint | null | undefined, fnr: string | null | undefined, gnr: string | null | undefined, hNr: string | null | undefined, id: bigint, identifier: string | null | undefined, inFourFraction: string | null | undefined, inOneFraction: string | null | undefined, inThreeFraction: string | null | undefined, inTwoFraction: string | null | undefined, isBusiness: boolean, knr?: string | null | undefined, note?: string | null | undefined, ownerFraction?: string | null | undefined, parentId?: bigint | null | undefined, parkingSpaces?: ParkingSpaceOwnership[] | null | undefined, residenceNr?: bigint | null | undefined, sectionAddressId?: bigint | null | undefined, sectioningFraction?: string | null | undefined, snr?: string | null | undefined, storageRooms?: StorageRoomOwnership[] | null | undefined, streetAddress?: string | null | undefined, wealthFraction?: string | null | undefined, zipCode?: string | null | undefined);
|
|
14649
|
+
constructor(anr: string | null | undefined, apartmentNr: string | null | undefined, area: string | null | undefined, bnr: string | null | undefined, building: Building | null | undefined, buildingId: bigint | null | undefined, capabilities: string[] | null | undefined, children: Section[] | null | undefined, classification: SectionType, companyClassification: string | null | undefined, companyId: bigint, deletedAt: SoliboInstant /* Instant */ | null | undefined, deletionReason: SectionDeletionReason | null | undefined, floor: BuildingFloor | null | undefined, floorId: bigint | null | undefined, fnr: string | null | undefined, gnr: string | null | undefined, hNr: string | null | undefined, id: bigint, identifier: string | null | undefined, inFourFraction: string | null | undefined, inOneFraction: string | null | undefined, inThreeFraction: string | null | undefined, inTwoFraction: string | null | undefined, isBusiness: boolean, knr?: string | null | undefined, note?: string | null | undefined, ownerFraction?: string | null | undefined, parentId?: bigint | null | undefined, parkingSpaces?: ParkingSpaceOwnership[] | null | undefined, residenceNr?: bigint | null | undefined, sectionAddressId?: bigint | null | undefined, sectioningFraction?: string | null | undefined, snr?: string | null | undefined, storageRooms?: StorageRoomOwnership[] | null | undefined, streetAddress?: string | null | undefined, wealthFraction?: string | null | undefined, zipCode?: string | null | undefined);
|
|
14631
14650
|
get anr(): string | null | undefined;
|
|
14632
14651
|
get apartmentNr(): string | null | undefined;
|
|
14633
14652
|
get area(): string | null | undefined;
|
|
@@ -14640,6 +14659,7 @@ export declare class Section {
|
|
|
14640
14659
|
get companyClassification(): string | null | undefined;
|
|
14641
14660
|
get companyId(): bigint;
|
|
14642
14661
|
get deletedAt(): SoliboInstant /* Instant */ | null | undefined;
|
|
14662
|
+
get deletionReason(): SectionDeletionReason | null | undefined;
|
|
14643
14663
|
get floor(): BuildingFloor | null | undefined;
|
|
14644
14664
|
get floorId(): bigint | null | undefined;
|
|
14645
14665
|
get fnr(): string | null | undefined;
|
|
@@ -14694,6 +14714,48 @@ export declare namespace SectionAccountFraction {
|
|
|
14694
14714
|
const constructor: abstract new () => SectionAccountFraction;
|
|
14695
14715
|
}
|
|
14696
14716
|
}
|
|
14717
|
+
export declare abstract class SectionDeletionReason {
|
|
14718
|
+
private constructor();
|
|
14719
|
+
static get MERGED(): SectionDeletionReason & {
|
|
14720
|
+
get name(): "MERGED";
|
|
14721
|
+
get ordinal(): 0;
|
|
14722
|
+
};
|
|
14723
|
+
static get SPLIT(): SectionDeletionReason & {
|
|
14724
|
+
get name(): "SPLIT";
|
|
14725
|
+
get ordinal(): 1;
|
|
14726
|
+
};
|
|
14727
|
+
static get Merged(): SectionDeletionReason & {
|
|
14728
|
+
get name(): "MERGED";
|
|
14729
|
+
get ordinal(): 0;
|
|
14730
|
+
};
|
|
14731
|
+
static get Split(): SectionDeletionReason & {
|
|
14732
|
+
get name(): "SPLIT";
|
|
14733
|
+
get ordinal(): 1;
|
|
14734
|
+
};
|
|
14735
|
+
static values(): [typeof SectionDeletionReason.MERGED, typeof SectionDeletionReason.SPLIT];
|
|
14736
|
+
static valueOf(value: string): SectionDeletionReason;
|
|
14737
|
+
get name(): "MERGED" | "SPLIT";
|
|
14738
|
+
get ordinal(): 0 | 1;
|
|
14739
|
+
get value(): string;
|
|
14740
|
+
}
|
|
14741
|
+
export declare namespace SectionDeletionReason {
|
|
14742
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
14743
|
+
namespace $metadata$ {
|
|
14744
|
+
const constructor: abstract new () => SectionDeletionReason;
|
|
14745
|
+
}
|
|
14746
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
14747
|
+
private constructor();
|
|
14748
|
+
}
|
|
14749
|
+
namespace Companion {
|
|
14750
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
14751
|
+
namespace $metadata$ {
|
|
14752
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
14753
|
+
fromValue(value: string): SectionDeletionReason | null | undefined;
|
|
14754
|
+
private constructor();
|
|
14755
|
+
}
|
|
14756
|
+
}
|
|
14757
|
+
}
|
|
14758
|
+
}
|
|
14697
14759
|
export interface SectionFractionProps {
|
|
14698
14760
|
bolignr?: bigint | null | undefined;
|
|
14699
14761
|
identifier?: string | null | undefined;
|
|
@@ -15349,7 +15411,7 @@ export declare namespace Settlement {
|
|
|
15349
15411
|
}
|
|
15350
15412
|
}
|
|
15351
15413
|
export interface SettlementCustomCostProps {
|
|
15352
|
-
amount
|
|
15414
|
+
amount?: number | null | undefined;
|
|
15353
15415
|
createdAt: SoliboInstant /* Instant */;
|
|
15354
15416
|
createdBy: bigint;
|
|
15355
15417
|
description?: string | null | undefined;
|
|
@@ -15358,14 +15420,14 @@ export interface SettlementCustomCostProps {
|
|
|
15358
15420
|
settlementId: bigint;
|
|
15359
15421
|
settlementType: SettlementTypeProps;
|
|
15360
15422
|
unitPrice: number;
|
|
15361
|
-
units
|
|
15423
|
+
units?: number | null | undefined;
|
|
15362
15424
|
updatedAt?: SoliboInstant /* Instant */ | null | undefined;
|
|
15363
15425
|
updatedBy?: bigint | null | undefined;
|
|
15364
15426
|
}
|
|
15365
15427
|
export declare class SettlementCustomCost {
|
|
15366
15428
|
constructor(props: SettlementCustomCostProps);
|
|
15367
|
-
constructor(amount: number, createdAt: SoliboInstant /* Instant */, createdBy: bigint, description: string | null | undefined, documentIds: bigint[] | null | undefined, id: bigint, settlementId: bigint, settlementType: SettlementType, unitPrice: number, units
|
|
15368
|
-
get amount(): number;
|
|
15429
|
+
constructor(amount: number | null | undefined, createdAt: SoliboInstant /* Instant */, createdBy: bigint, description: string | null | undefined, documentIds: bigint[] | null | undefined, id: bigint, settlementId: bigint, settlementType: SettlementType, unitPrice: number, units?: number | null | undefined, updatedAt?: SoliboInstant /* Instant */ | null | undefined, updatedBy?: bigint | null | undefined);
|
|
15430
|
+
get amount(): number | null | undefined;
|
|
15369
15431
|
get createdAt(): SoliboInstant /* Instant */;
|
|
15370
15432
|
get createdBy(): bigint;
|
|
15371
15433
|
get description(): string | null | undefined;
|
|
@@ -15374,7 +15436,7 @@ export declare class SettlementCustomCost {
|
|
|
15374
15436
|
get settlementId(): bigint;
|
|
15375
15437
|
get settlementType(): SettlementType;
|
|
15376
15438
|
get unitPrice(): number;
|
|
15377
|
-
get units(): number;
|
|
15439
|
+
get units(): number | null | undefined;
|
|
15378
15440
|
get updatedAt(): SoliboInstant /* Instant */ | null | undefined;
|
|
15379
15441
|
get updatedBy(): bigint | null | undefined;
|
|
15380
15442
|
}
|
|
@@ -15385,24 +15447,24 @@ export declare namespace SettlementCustomCost {
|
|
|
15385
15447
|
}
|
|
15386
15448
|
}
|
|
15387
15449
|
export interface SettlementInvoiceProps {
|
|
15388
|
-
amount
|
|
15450
|
+
amount?: number | null | undefined;
|
|
15389
15451
|
customCostId?: bigint | null | undefined;
|
|
15390
15452
|
description?: string | null | undefined;
|
|
15391
15453
|
settlementType: SettlementTypeProps;
|
|
15392
15454
|
tripletexInvoiceId?: bigint | null | undefined;
|
|
15393
15455
|
unitPrice: number;
|
|
15394
|
-
units
|
|
15456
|
+
units?: number | null | undefined;
|
|
15395
15457
|
}
|
|
15396
15458
|
export declare class SettlementInvoice {
|
|
15397
15459
|
constructor(props: SettlementInvoiceProps);
|
|
15398
|
-
constructor(amount: number, customCostId: bigint | null | undefined, description: string | null | undefined, settlementType: SettlementType, tripletexInvoiceId: bigint | null | undefined, unitPrice: number, units
|
|
15399
|
-
get amount(): number;
|
|
15460
|
+
constructor(amount: number | null | undefined, customCostId: bigint | null | undefined, description: string | null | undefined, settlementType: SettlementType, tripletexInvoiceId: bigint | null | undefined, unitPrice: number, units?: number | null | undefined);
|
|
15461
|
+
get amount(): number | null | undefined;
|
|
15400
15462
|
get customCostId(): bigint | null | undefined;
|
|
15401
15463
|
get description(): string | null | undefined;
|
|
15402
15464
|
get settlementType(): SettlementType;
|
|
15403
15465
|
get tripletexInvoiceId(): bigint | null | undefined;
|
|
15404
15466
|
get unitPrice(): number;
|
|
15405
|
-
get units(): number;
|
|
15467
|
+
get units(): number | null | undefined;
|
|
15406
15468
|
}
|
|
15407
15469
|
export declare namespace SettlementInvoice {
|
|
15408
15470
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
@@ -15670,6 +15732,24 @@ export declare namespace SoliboTokens {
|
|
|
15670
15732
|
const constructor: abstract new () => SoliboTokens;
|
|
15671
15733
|
}
|
|
15672
15734
|
}
|
|
15735
|
+
export interface SplitSectionCommandProps {
|
|
15736
|
+
effectiveDate: SoliboLocalDate /* LocalDate */;
|
|
15737
|
+
newSections: CreateSectionCommandProps[];
|
|
15738
|
+
sourceSectionId: bigint;
|
|
15739
|
+
}
|
|
15740
|
+
export declare class SplitSectionCommand {
|
|
15741
|
+
constructor(props: SplitSectionCommandProps);
|
|
15742
|
+
constructor(effectiveDate: SoliboLocalDate /* LocalDate */, newSections: CreateSectionCommand[], sourceSectionId: bigint);
|
|
15743
|
+
get effectiveDate(): SoliboLocalDate /* LocalDate */;
|
|
15744
|
+
get newSections(): CreateSectionCommand[];
|
|
15745
|
+
get sourceSectionId(): bigint;
|
|
15746
|
+
}
|
|
15747
|
+
export declare namespace SplitSectionCommand {
|
|
15748
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
15749
|
+
namespace $metadata$ {
|
|
15750
|
+
const constructor: abstract new () => SplitSectionCommand;
|
|
15751
|
+
}
|
|
15752
|
+
}
|
|
15673
15753
|
export interface SrpVerificationProps {
|
|
15674
15754
|
salt?: string | null | undefined;
|
|
15675
15755
|
secretBlock: string;
|
|
@@ -19486,9 +19566,11 @@ export declare class SectionApi extends ApiClient.$metadata$.constructor {
|
|
|
19486
19566
|
massDeleteSectionFractions(companyId: bigint, fractionType?: FractionType | null | undefined, sectionIds?: KtList<bigint> | null | undefined, validFrom?: bigint | null | undefined): Promise<HttpResponse<void>>;
|
|
19487
19567
|
massUpdateSection(companyId: bigint, massUpdateSectionCommand: MassUpdateSectionCommand, status?: SectionState | null | undefined): Promise<HttpResponse<void>>;
|
|
19488
19568
|
massUpdateSectionFractions(companyId: bigint, massUpdateFractionsCommand: MassUpdateFractionsCommand, fractionType?: FractionType | null | undefined, sectionIds?: KtList<bigint> | null | undefined, validFrom?: bigint | null | undefined): Promise<HttpResponse<void>>;
|
|
19569
|
+
mergeSections(companyId: bigint, mergeSectionsCommand: MergeSectionsCommand): Promise<HttpResponse<Section>>;
|
|
19489
19570
|
multiCreateTagOnSection(companyId: bigint, sectionId: bigint, sectionTagCommand: KtList<SectionTagCommand>): Promise<HttpResponse<void>>;
|
|
19490
19571
|
showSectionResidentHistory(companyId: bigint, sectionId: bigint, fields?: string | null | undefined): Promise<HttpResponse<ResidentRoleHistory>>;
|
|
19491
19572
|
showSectionStatus(companyId: bigint, sectionId: bigint, statusType?: SectionState | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<KtMap<string, KtList<SectionStatusSectionStatusMapValue>>>>;
|
|
19573
|
+
splitSection(companyId: bigint, splitSectionCommand: SplitSectionCommand): Promise<HttpResponse<KtList<Section>>>;
|
|
19492
19574
|
updateOwnershipChange(companyId: bigint, sectionId: bigint, ownerChangeId: bigint, ownerChangeSectionCommand: OwnerChangeSectionCommand): Promise<HttpResponse<void>>;
|
|
19493
19575
|
updateSection(companyId: bigint, sectionId: bigint, updateSectionCommand: UpdateSectionCommand): Promise<HttpResponse<Section>>;
|
|
19494
19576
|
updateSectionNotat(companyId: bigint, sectionId: bigint, updateNoteCommand: UpdateNoteCommand): Promise<HttpResponse<Section>>;
|