@solibo/home-api 1.1.0 → 1.1.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "main": "solibo-sdk-sdk-home-api.js",
3
3
  "types": "solibo-sdk-sdk-home-api.d.ts",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "name": "@solibo/home-api",
6
6
  "dependencies": {
7
7
  "ws": "8.18.3",
@@ -2767,6 +2767,69 @@ export declare namespace no.solibo.oss.sdk.api.gen.models {
2767
2767
  }
2768
2768
  }
2769
2769
  }
2770
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
2771
+ class CreateSettlementCommand {
2772
+ constructor(description: Nullable<string> | undefined, endDate: any/* kotlinx.datetime.LocalDate */, invoices: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementInvoice>> | undefined, settlementProviderId: bigint, startDate: any/* kotlinx.datetime.LocalDate */);
2773
+ get description(): Nullable<string>;
2774
+ get endDate(): any/* kotlinx.datetime.LocalDate */;
2775
+ get invoices(): Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementInvoice>>;
2776
+ get settlementProviderId(): bigint;
2777
+ get startDate(): any/* kotlinx.datetime.LocalDate */;
2778
+ copy(description?: Nullable<string>, endDate?: any/* kotlinx.datetime.LocalDate */, invoices?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementInvoice>>, settlementProviderId?: bigint, startDate?: any/* kotlinx.datetime.LocalDate */): no.solibo.oss.sdk.api.gen.models.CreateSettlementCommand;
2779
+ toString(): string;
2780
+ hashCode(): number;
2781
+ equals(other: Nullable<any>): boolean;
2782
+ }
2783
+ namespace CreateSettlementCommand {
2784
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2785
+ namespace $metadata$ {
2786
+ const constructor: abstract new () => CreateSettlementCommand;
2787
+ }
2788
+ }
2789
+ }
2790
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
2791
+ class CreateSettlementCustomCostCommand {
2792
+ constructor(amount: number, description: Nullable<string> | undefined, settlementType: no.solibo.oss.sdk.api.gen.models.SettlementType, unitPrice: number, units: number);
2793
+ get amount(): number;
2794
+ get description(): Nullable<string>;
2795
+ get settlementType(): no.solibo.oss.sdk.api.gen.models.SettlementType;
2796
+ get unitPrice(): number;
2797
+ get units(): number;
2798
+ copy(amount?: number, description?: Nullable<string>, settlementType?: no.solibo.oss.sdk.api.gen.models.SettlementType, unitPrice?: number, units?: number): no.solibo.oss.sdk.api.gen.models.CreateSettlementCustomCostCommand;
2799
+ toString(): string;
2800
+ hashCode(): number;
2801
+ equals(other: Nullable<any>): boolean;
2802
+ }
2803
+ namespace CreateSettlementCustomCostCommand {
2804
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2805
+ namespace $metadata$ {
2806
+ const constructor: abstract new () => CreateSettlementCustomCostCommand;
2807
+ }
2808
+ }
2809
+ }
2810
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
2811
+ class CreateSettlementProviderConfigurationCommand {
2812
+ constructor(closedAt: Nullable<any>/* Nullable<kotlin.time.Instant> */ | undefined, endDate: Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */ | undefined, relevantOrgnrs: Nullable<kotlin.collections.KtList<string>> | undefined, resolverPrefix: Nullable<string> | undefined, settlementProvider: no.solibo.oss.sdk.api.gen.models.SettlementProvider, shouldInvoice: Nullable<boolean> | undefined, startDate: any/* kotlinx.datetime.LocalDate */, userId?: Nullable<string>);
2813
+ get closedAt(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
2814
+ get endDate(): Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */;
2815
+ get relevantOrgnrs(): Nullable<kotlin.collections.KtList<string>>;
2816
+ get resolverPrefix(): Nullable<string>;
2817
+ get settlementProvider(): no.solibo.oss.sdk.api.gen.models.SettlementProvider;
2818
+ get shouldInvoice(): Nullable<boolean>;
2819
+ get startDate(): any/* kotlinx.datetime.LocalDate */;
2820
+ get userId(): Nullable<string>;
2821
+ copy(closedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, endDate?: Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */, relevantOrgnrs?: Nullable<kotlin.collections.KtList<string>>, resolverPrefix?: Nullable<string>, settlementProvider?: no.solibo.oss.sdk.api.gen.models.SettlementProvider, shouldInvoice?: Nullable<boolean>, startDate?: any/* kotlinx.datetime.LocalDate */, userId?: Nullable<string>): no.solibo.oss.sdk.api.gen.models.CreateSettlementProviderConfigurationCommand;
2822
+ toString(): string;
2823
+ hashCode(): number;
2824
+ equals(other: Nullable<any>): boolean;
2825
+ }
2826
+ namespace CreateSettlementProviderConfigurationCommand {
2827
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2828
+ namespace $metadata$ {
2829
+ const constructor: abstract new () => CreateSettlementProviderConfigurationCommand;
2830
+ }
2831
+ }
2832
+ }
2770
2833
  export declare namespace no.solibo.oss.sdk.api.gen.models {
2771
2834
  class CreateStatusCommand {
2772
2835
  constructor(note: Nullable<string> | undefined, referencedOrganizationId: Nullable<bigint> | undefined, referencedPersonId: Nullable<bigint> | undefined, statusType: no.solibo.oss.sdk.api.gen.models.SectionState);
@@ -3464,16 +3527,24 @@ export declare namespace no.solibo.oss.sdk.api.gen.models {
3464
3527
  get name(): "ECONOMIC_REPORT";
3465
3528
  get ordinal(): 22;
3466
3529
  };
3530
+ static get SETTLEMENT(): no.solibo.oss.sdk.api.gen.models.DocumentType & {
3531
+ get name(): "SETTLEMENT";
3532
+ get ordinal(): 23;
3533
+ };
3534
+ static get SETTLEMENT_CUSTOM_COST(): no.solibo.oss.sdk.api.gen.models.DocumentType & {
3535
+ get name(): "SETTLEMENT_CUSTOM_COST";
3536
+ get ordinal(): 24;
3537
+ };
3467
3538
  static get OTHER(): no.solibo.oss.sdk.api.gen.models.DocumentType & {
3468
3539
  get name(): "OTHER";
3469
- get ordinal(): 23;
3540
+ get ordinal(): 25;
3470
3541
  };
3471
3542
  static get TRASH(): no.solibo.oss.sdk.api.gen.models.DocumentType & {
3472
3543
  get name(): "TRASH";
3473
- get ordinal(): 24;
3544
+ get ordinal(): 26;
3474
3545
  };
3475
- get name(): "ISSUE" | "SUPPLIER_FOR_COMPANY" | "HOMEPAGE" | "POST" | "PRACTICAL_INFO" | "PRIVATE" | "FDV" | "BUILDING" | "PROJECT" | "BYLAWS" | "HOUSE_RULES" | "ECONOMY" | "EXPENSE" | "MEETING" | "ANNUAL_MEETING" | "CONVERSATION" | "NEWSLETTER" | "ROUTINE" | "INSURANCE" | "LOAN" | "INVOICE" | "ADHOC" | "ECONOMIC_REPORT" | "OTHER" | "TRASH";
3476
- get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24;
3546
+ get name(): "ISSUE" | "SUPPLIER_FOR_COMPANY" | "HOMEPAGE" | "POST" | "PRACTICAL_INFO" | "PRIVATE" | "FDV" | "BUILDING" | "PROJECT" | "BYLAWS" | "HOUSE_RULES" | "ECONOMY" | "EXPENSE" | "MEETING" | "ANNUAL_MEETING" | "CONVERSATION" | "NEWSLETTER" | "ROUTINE" | "INSURANCE" | "LOAN" | "INVOICE" | "ADHOC" | "ECONOMIC_REPORT" | "SETTLEMENT" | "SETTLEMENT_CUSTOM_COST" | "OTHER" | "TRASH";
3547
+ get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26;
3477
3548
  get value(): string;
3478
3549
  toString(): string;
3479
3550
  static values(): Array<no.solibo.oss.sdk.api.gen.models.DocumentType>;
@@ -10525,6 +10596,211 @@ export declare namespace no.solibo.oss.sdk.api.gen.models {
10525
10596
  }
10526
10597
  }
10527
10598
  }
10599
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
10600
+ class Settlement {
10601
+ constructor(closedAt: Nullable<any>/* Nullable<kotlin.time.Instant> */ | undefined, companyId: bigint, completedAt: Nullable<any>/* Nullable<kotlin.time.Instant> */ | undefined, createdAt: any/* kotlin.time.Instant */, createdBy: bigint, customCosts: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementCustomCost>> | undefined, description: Nullable<string> | undefined, endDate: any/* kotlinx.datetime.LocalDate */, id: bigint, invoices: kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementInvoice>, settlementProvider: no.solibo.oss.sdk.api.gen.models.SettlementProvider, settlementProviderId: bigint, startDate: any/* kotlinx.datetime.LocalDate */, submissionError?: Nullable<string>, submissionId?: Nullable<string>, submittedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, updatedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, updatedBy?: Nullable<bigint>);
10602
+ get closedAt(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
10603
+ get companyId(): bigint;
10604
+ get completedAt(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
10605
+ get createdAt(): any/* kotlin.time.Instant */;
10606
+ get createdBy(): bigint;
10607
+ get customCosts(): Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementCustomCost>>;
10608
+ get description(): Nullable<string>;
10609
+ get endDate(): any/* kotlinx.datetime.LocalDate */;
10610
+ get id(): bigint;
10611
+ get invoices(): kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementInvoice>;
10612
+ get settlementProvider(): no.solibo.oss.sdk.api.gen.models.SettlementProvider;
10613
+ get settlementProviderId(): bigint;
10614
+ get startDate(): any/* kotlinx.datetime.LocalDate */;
10615
+ get submissionError(): Nullable<string>;
10616
+ get submissionId(): Nullable<string>;
10617
+ get submittedAt(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
10618
+ get updatedAt(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
10619
+ get updatedBy(): Nullable<bigint>;
10620
+ copy(closedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, companyId?: bigint, completedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, createdAt?: any/* kotlin.time.Instant */, createdBy?: bigint, customCosts?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementCustomCost>>, description?: Nullable<string>, endDate?: any/* kotlinx.datetime.LocalDate */, id?: bigint, invoices?: kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementInvoice>, settlementProvider?: no.solibo.oss.sdk.api.gen.models.SettlementProvider, settlementProviderId?: bigint, startDate?: any/* kotlinx.datetime.LocalDate */, submissionError?: Nullable<string>, submissionId?: Nullable<string>, submittedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, updatedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, updatedBy?: Nullable<bigint>): no.solibo.oss.sdk.api.gen.models.Settlement;
10621
+ toString(): string;
10622
+ hashCode(): number;
10623
+ equals(other: Nullable<any>): boolean;
10624
+ }
10625
+ namespace Settlement {
10626
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10627
+ namespace $metadata$ {
10628
+ const constructor: abstract new () => Settlement;
10629
+ }
10630
+ }
10631
+ }
10632
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
10633
+ class SettlementCustomCost {
10634
+ constructor(amount: number, createdAt: any/* kotlin.time.Instant */, createdBy: bigint, description: Nullable<string> | undefined, documentIds: Nullable<kotlin.collections.KtList<bigint>> | undefined, id: bigint, settlementId: bigint, settlementType: no.solibo.oss.sdk.api.gen.models.SettlementType, unitPrice: number, units: number, updatedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, updatedBy?: Nullable<bigint>);
10635
+ get amount(): number;
10636
+ get createdAt(): any/* kotlin.time.Instant */;
10637
+ get createdBy(): bigint;
10638
+ get description(): Nullable<string>;
10639
+ get documentIds(): Nullable<kotlin.collections.KtList<bigint>>;
10640
+ get id(): bigint;
10641
+ get settlementId(): bigint;
10642
+ get settlementType(): no.solibo.oss.sdk.api.gen.models.SettlementType;
10643
+ get unitPrice(): number;
10644
+ get units(): number;
10645
+ get updatedAt(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
10646
+ get updatedBy(): Nullable<bigint>;
10647
+ copy(amount?: number, createdAt?: any/* kotlin.time.Instant */, createdBy?: bigint, description?: Nullable<string>, documentIds?: Nullable<kotlin.collections.KtList<bigint>>, id?: bigint, settlementId?: bigint, settlementType?: no.solibo.oss.sdk.api.gen.models.SettlementType, unitPrice?: number, units?: number, updatedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, updatedBy?: Nullable<bigint>): no.solibo.oss.sdk.api.gen.models.SettlementCustomCost;
10648
+ toString(): string;
10649
+ hashCode(): number;
10650
+ equals(other: Nullable<any>): boolean;
10651
+ }
10652
+ namespace SettlementCustomCost {
10653
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10654
+ namespace $metadata$ {
10655
+ const constructor: abstract new () => SettlementCustomCost;
10656
+ }
10657
+ }
10658
+ }
10659
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
10660
+ class SettlementInvoice {
10661
+ constructor(amount: Nullable<number> | undefined, customCostId: Nullable<bigint> | undefined, description: Nullable<string> | undefined, settlementType: no.solibo.oss.sdk.api.gen.models.SettlementType, tripletexInvoiceId: Nullable<bigint> | undefined, unitPrice: number, units: number);
10662
+ get amount(): Nullable<number>;
10663
+ get customCostId(): Nullable<bigint>;
10664
+ get description(): Nullable<string>;
10665
+ get settlementType(): no.solibo.oss.sdk.api.gen.models.SettlementType;
10666
+ get tripletexInvoiceId(): Nullable<bigint>;
10667
+ get unitPrice(): number;
10668
+ get units(): number;
10669
+ copy(amount?: Nullable<number>, customCostId?: Nullable<bigint>, description?: Nullable<string>, settlementType?: no.solibo.oss.sdk.api.gen.models.SettlementType, tripletexInvoiceId?: Nullable<bigint>, unitPrice?: number, units?: number): no.solibo.oss.sdk.api.gen.models.SettlementInvoice;
10670
+ toString(): string;
10671
+ hashCode(): number;
10672
+ equals(other: Nullable<any>): boolean;
10673
+ }
10674
+ namespace SettlementInvoice {
10675
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10676
+ namespace $metadata$ {
10677
+ const constructor: abstract new () => SettlementInvoice;
10678
+ }
10679
+ }
10680
+ }
10681
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
10682
+ abstract class SettlementProvider {
10683
+ private constructor();
10684
+ static get ECOGUARD(): no.solibo.oss.sdk.api.gen.models.SettlementProvider & {
10685
+ get name(): "ECOGUARD";
10686
+ get ordinal(): 0;
10687
+ };
10688
+ static get ISTA(): no.solibo.oss.sdk.api.gen.models.SettlementProvider & {
10689
+ get name(): "ISTA";
10690
+ get ordinal(): 1;
10691
+ };
10692
+ static get TECHEM(): no.solibo.oss.sdk.api.gen.models.SettlementProvider & {
10693
+ get name(): "TECHEM";
10694
+ get ordinal(): 2;
10695
+ };
10696
+ static get OTHER(): no.solibo.oss.sdk.api.gen.models.SettlementProvider & {
10697
+ get name(): "OTHER";
10698
+ get ordinal(): 3;
10699
+ };
10700
+ get name(): "ECOGUARD" | "ISTA" | "TECHEM" | "OTHER";
10701
+ get ordinal(): 0 | 1 | 2 | 3;
10702
+ get value(): string;
10703
+ toString(): string;
10704
+ static values(): Array<no.solibo.oss.sdk.api.gen.models.SettlementProvider>;
10705
+ static valueOf(value: string): no.solibo.oss.sdk.api.gen.models.SettlementProvider;
10706
+ }
10707
+ namespace SettlementProvider {
10708
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10709
+ namespace $metadata$ {
10710
+ const constructor: abstract new () => SettlementProvider;
10711
+ }
10712
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
10713
+ private constructor();
10714
+ }
10715
+ namespace Companion {
10716
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10717
+ namespace $metadata$ {
10718
+ abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
10719
+ fromValue(value: string): Nullable<no.solibo.oss.sdk.api.gen.models.SettlementProvider>;
10720
+ private constructor();
10721
+ }
10722
+ }
10723
+ }
10724
+ }
10725
+ }
10726
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
10727
+ class SettlementProviderConfiguration {
10728
+ constructor(closedAt: Nullable<any>/* Nullable<kotlin.time.Instant> */ | undefined, companyId: bigint, endDate: Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */ | undefined, id: bigint, relevantOrgnrs: Nullable<kotlin.collections.KtList<string>> | undefined, resolverPrefix: Nullable<string> | undefined, settlementProvider: no.solibo.oss.sdk.api.gen.models.SettlementProvider, shouldInvoice: boolean, startDate: any/* kotlinx.datetime.LocalDate */, userId?: Nullable<string>);
10729
+ get closedAt(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
10730
+ get companyId(): bigint;
10731
+ get endDate(): Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */;
10732
+ get id(): bigint;
10733
+ get relevantOrgnrs(): Nullable<kotlin.collections.KtList<string>>;
10734
+ get resolverPrefix(): Nullable<string>;
10735
+ get settlementProvider(): no.solibo.oss.sdk.api.gen.models.SettlementProvider;
10736
+ get shouldInvoice(): boolean;
10737
+ get startDate(): any/* kotlinx.datetime.LocalDate */;
10738
+ get userId(): Nullable<string>;
10739
+ copy(closedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, companyId?: bigint, endDate?: Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */, id?: bigint, relevantOrgnrs?: Nullable<kotlin.collections.KtList<string>>, resolverPrefix?: Nullable<string>, settlementProvider?: no.solibo.oss.sdk.api.gen.models.SettlementProvider, shouldInvoice?: boolean, startDate?: any/* kotlinx.datetime.LocalDate */, userId?: Nullable<string>): no.solibo.oss.sdk.api.gen.models.SettlementProviderConfiguration;
10740
+ toString(): string;
10741
+ hashCode(): number;
10742
+ equals(other: Nullable<any>): boolean;
10743
+ }
10744
+ namespace SettlementProviderConfiguration {
10745
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10746
+ namespace $metadata$ {
10747
+ const constructor: abstract new () => SettlementProviderConfiguration;
10748
+ }
10749
+ }
10750
+ }
10751
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
10752
+ abstract class SettlementType {
10753
+ private constructor();
10754
+ static get HEAT(): no.solibo.oss.sdk.api.gen.models.SettlementType & {
10755
+ get name(): "HEAT";
10756
+ get ordinal(): 0;
10757
+ };
10758
+ static get COLD_WATER(): no.solibo.oss.sdk.api.gen.models.SettlementType & {
10759
+ get name(): "COLD_WATER";
10760
+ get ordinal(): 1;
10761
+ };
10762
+ static get WARM_WATER(): no.solibo.oss.sdk.api.gen.models.SettlementType & {
10763
+ get name(): "WARM_WATER";
10764
+ get ordinal(): 2;
10765
+ };
10766
+ static get ELECTRIC_CAR_CHARGER(): no.solibo.oss.sdk.api.gen.models.SettlementType & {
10767
+ get name(): "ELECTRIC_CAR_CHARGER";
10768
+ get ordinal(): 3;
10769
+ };
10770
+ static get ELECTRICITY(): no.solibo.oss.sdk.api.gen.models.SettlementType & {
10771
+ get name(): "ELECTRICITY";
10772
+ get ordinal(): 4;
10773
+ };
10774
+ static get OTHER(): no.solibo.oss.sdk.api.gen.models.SettlementType & {
10775
+ get name(): "OTHER";
10776
+ get ordinal(): 5;
10777
+ };
10778
+ get name(): "HEAT" | "COLD_WATER" | "WARM_WATER" | "ELECTRIC_CAR_CHARGER" | "ELECTRICITY" | "OTHER";
10779
+ get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
10780
+ get value(): string;
10781
+ toString(): string;
10782
+ static values(): Array<no.solibo.oss.sdk.api.gen.models.SettlementType>;
10783
+ static valueOf(value: string): no.solibo.oss.sdk.api.gen.models.SettlementType;
10784
+ }
10785
+ namespace SettlementType {
10786
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10787
+ namespace $metadata$ {
10788
+ const constructor: abstract new () => SettlementType;
10789
+ }
10790
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
10791
+ private constructor();
10792
+ }
10793
+ namespace Companion {
10794
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10795
+ namespace $metadata$ {
10796
+ abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
10797
+ fromValue(value: string): Nullable<no.solibo.oss.sdk.api.gen.models.SettlementType>;
10798
+ private constructor();
10799
+ }
10800
+ }
10801
+ }
10802
+ }
10803
+ }
10528
10804
  export declare namespace no.solibo.oss.sdk.api.gen.models {
10529
10805
  class SoftwareTokenAssociation {
10530
10806
  constructor(secret: string, session: string);
@@ -12136,12 +12412,10 @@ export declare namespace no.solibo.oss.sdk.api.gen.models {
12136
12412
  }
12137
12413
  export declare namespace no.solibo.oss.sdk.api.gen.models {
12138
12414
  class UpdateInvoiceSettingsCommand {
12139
- constructor(ecoGuardId: Nullable<string> | undefined, ecoGuardStart: Nullable<any>/* Nullable<kotlin.time.Instant> */ | undefined, paperTax: number, paperTaxAccount?: Nullable<string>);
12140
- get ecoGuardId(): Nullable<string>;
12141
- get ecoGuardStart(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
12415
+ constructor(paperTax: number, paperTaxAccount?: Nullable<string>);
12142
12416
  get paperTax(): number;
12143
12417
  get paperTaxAccount(): Nullable<string>;
12144
- copy(ecoGuardId?: Nullable<string>, ecoGuardStart?: Nullable<any>/* Nullable<kotlin.time.Instant> */, paperTax?: number, paperTaxAccount?: Nullable<string>): no.solibo.oss.sdk.api.gen.models.UpdateInvoiceSettingsCommand;
12418
+ copy(paperTax?: number, paperTaxAccount?: Nullable<string>): no.solibo.oss.sdk.api.gen.models.UpdateInvoiceSettingsCommand;
12145
12419
  toString(): string;
12146
12420
  hashCode(): number;
12147
12421
  equals(other: Nullable<any>): boolean;
@@ -12750,6 +13024,73 @@ export declare namespace no.solibo.oss.sdk.api.gen.models {
12750
13024
  }
12751
13025
  }
12752
13026
  }
13027
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
13028
+ class UpdateSettlementCommand {
13029
+ constructor(closedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, completedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, description?: Nullable<string>, endDate?: Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */, invoices?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementInvoice>>, settlementProviderId?: Nullable<bigint>, startDate?: Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */, submissionError?: Nullable<string>, submissionId?: Nullable<string>, submittedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */);
13030
+ get closedAt(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
13031
+ get completedAt(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
13032
+ get description(): Nullable<string>;
13033
+ get endDate(): Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */;
13034
+ get invoices(): Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementInvoice>>;
13035
+ get settlementProviderId(): Nullable<bigint>;
13036
+ get startDate(): Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */;
13037
+ get submissionError(): Nullable<string>;
13038
+ get submissionId(): Nullable<string>;
13039
+ get submittedAt(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
13040
+ copy(closedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, completedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, description?: Nullable<string>, endDate?: Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */, invoices?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementInvoice>>, settlementProviderId?: Nullable<bigint>, startDate?: Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */, submissionError?: Nullable<string>, submissionId?: Nullable<string>, submittedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */): no.solibo.oss.sdk.api.gen.models.UpdateSettlementCommand;
13041
+ toString(): string;
13042
+ hashCode(): number;
13043
+ equals(other: Nullable<any>): boolean;
13044
+ }
13045
+ namespace UpdateSettlementCommand {
13046
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
13047
+ namespace $metadata$ {
13048
+ const constructor: abstract new () => UpdateSettlementCommand;
13049
+ }
13050
+ }
13051
+ }
13052
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
13053
+ class UpdateSettlementCustomCostCommand {
13054
+ constructor(amount?: Nullable<number>, description?: Nullable<string>, settlementType?: Nullable<no.solibo.oss.sdk.api.gen.models.SettlementType>, unitPrice?: Nullable<number>, units?: Nullable<number>);
13055
+ get amount(): Nullable<number>;
13056
+ get description(): Nullable<string>;
13057
+ get settlementType(): Nullable<no.solibo.oss.sdk.api.gen.models.SettlementType>;
13058
+ get unitPrice(): Nullable<number>;
13059
+ get units(): Nullable<number>;
13060
+ copy(amount?: Nullable<number>, description?: Nullable<string>, settlementType?: Nullable<no.solibo.oss.sdk.api.gen.models.SettlementType>, unitPrice?: Nullable<number>, units?: Nullable<number>): no.solibo.oss.sdk.api.gen.models.UpdateSettlementCustomCostCommand;
13061
+ toString(): string;
13062
+ hashCode(): number;
13063
+ equals(other: Nullable<any>): boolean;
13064
+ }
13065
+ namespace UpdateSettlementCustomCostCommand {
13066
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
13067
+ namespace $metadata$ {
13068
+ const constructor: abstract new () => UpdateSettlementCustomCostCommand;
13069
+ }
13070
+ }
13071
+ }
13072
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
13073
+ class UpdateSettlementProviderConfigurationCommand {
13074
+ constructor(closedAt: Nullable<any>/* Nullable<kotlin.time.Instant> */ | undefined, endDate: Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */ | undefined, relevantOrgNrs: Nullable<kotlin.collections.KtList<string>> | undefined, resolverPrefix: Nullable<string> | undefined, shouldInvoice: Nullable<boolean> | undefined, startDate: any/* kotlinx.datetime.LocalDate */, userId?: Nullable<string>);
13075
+ get closedAt(): Nullable<any>/* Nullable<kotlin.time.Instant> */;
13076
+ get endDate(): Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */;
13077
+ get relevantOrgNrs(): Nullable<kotlin.collections.KtList<string>>;
13078
+ get resolverPrefix(): Nullable<string>;
13079
+ get shouldInvoice(): Nullable<boolean>;
13080
+ get startDate(): any/* kotlinx.datetime.LocalDate */;
13081
+ get userId(): Nullable<string>;
13082
+ copy(closedAt?: Nullable<any>/* Nullable<kotlin.time.Instant> */, endDate?: Nullable<any>/* Nullable<kotlinx.datetime.LocalDate> */, relevantOrgNrs?: Nullable<kotlin.collections.KtList<string>>, resolverPrefix?: Nullable<string>, shouldInvoice?: Nullable<boolean>, startDate?: any/* kotlinx.datetime.LocalDate */, userId?: Nullable<string>): no.solibo.oss.sdk.api.gen.models.UpdateSettlementProviderConfigurationCommand;
13083
+ toString(): string;
13084
+ hashCode(): number;
13085
+ equals(other: Nullable<any>): boolean;
13086
+ }
13087
+ namespace UpdateSettlementProviderConfigurationCommand {
13088
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
13089
+ namespace $metadata$ {
13090
+ const constructor: abstract new () => UpdateSettlementProviderConfigurationCommand;
13091
+ }
13092
+ }
13093
+ }
12753
13094
  export declare namespace no.solibo.oss.sdk.api.gen.models {
12754
13095
  class UpdateStatusCommand {
12755
13096
  constructor(note: Nullable<string> | undefined, referencedOrganizationId: Nullable<bigint> | undefined, referencedPersonId: Nullable<bigint> | undefined, statusType: no.solibo.oss.sdk.api.gen.models.SectionState);
@@ -12860,6 +13201,22 @@ export declare namespace no.solibo.oss.sdk.api.gen.models {
12860
13201
  }
12861
13202
  }
12862
13203
  }
13204
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
13205
+ class UpsertSettlementProviderCredentialsCommand {
13206
+ constructor(auth: kotlin.collections.KtMap<string, Nullable<string>>);
13207
+ get auth(): kotlin.collections.KtMap<string, Nullable<string>>;
13208
+ copy(auth?: kotlin.collections.KtMap<string, Nullable<string>>): no.solibo.oss.sdk.api.gen.models.UpsertSettlementProviderCredentialsCommand;
13209
+ toString(): string;
13210
+ hashCode(): number;
13211
+ equals(other: Nullable<any>): boolean;
13212
+ }
13213
+ namespace UpsertSettlementProviderCredentialsCommand {
13214
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
13215
+ namespace $metadata$ {
13216
+ const constructor: abstract new () => UpsertSettlementProviderCredentialsCommand;
13217
+ }
13218
+ }
13219
+ }
12863
13220
  export declare namespace no.solibo.oss.sdk.api.gen.models {
12864
13221
  class UrlWrapper {
12865
13222
  constructor(url: string);
@@ -13782,6 +14139,36 @@ export declare namespace no.solibo.oss.sdk.api.gen.client.apis {
13782
14139
  }
13783
14140
  }
13784
14141
  }
14142
+ export declare namespace no.solibo.oss.sdk.api.gen.client.apis {
14143
+ class SettlementApi extends no.solibo.oss.sdk.api.gen.infrastructure.ApiClient.$metadata$.constructor {
14144
+ private constructor();
14145
+ static create(baseUrl?: string, httpClientEngine?: Nullable<any>/* Nullable<io.ktor.client.engine.HttpClientEngine> */, httpClientConfig?: Nullable<(p0: any/* io.ktor.client.HttpClientConfig<UnknownType *> */) => void>, jsonSerializer?: any/* kotlinx.serialization.json.Json */): no.solibo.oss.sdk.api.gen.client.apis.SettlementApi;
14146
+ static createWithClient(baseUrl: string, httpClient: any/* io.ktor.client.HttpClient */): no.solibo.oss.sdk.api.gen.client.apis.SettlementApi;
14147
+ closeSettlement(companyId: bigint, settlementId: bigint): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void>>;
14148
+ createSettlement(companyId: bigint, createSettlementCommand: no.solibo.oss.sdk.api.gen.models.CreateSettlementCommand): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<no.solibo.oss.sdk.api.gen.models.Settlement>>;
14149
+ createSettlementCustomCost(companyId: bigint, settlementId: bigint, createSettlementCustomCostCommand: no.solibo.oss.sdk.api.gen.models.CreateSettlementCustomCostCommand): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<no.solibo.oss.sdk.api.gen.models.SettlementCustomCost>>;
14150
+ createSettlementProviderConfiguration(companyId: bigint, createSettlementProviderConfigurationCommand: no.solibo.oss.sdk.api.gen.models.CreateSettlementProviderConfigurationCommand): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void>>;
14151
+ deleteSettlement(companyId: bigint, settlementId: bigint): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void>>;
14152
+ deleteSettlementCustomCost(companyId: bigint, settlementId: bigint, customCostId: bigint): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void>>;
14153
+ indexSettlement(companyId: bigint): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.Settlement>>>;
14154
+ indexSettlementCustomCost(companyId: bigint, settlementId: bigint): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementCustomCost>>>;
14155
+ indexSettlementProviderConfiguration(companyId: bigint): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SettlementProviderConfiguration>>>;
14156
+ indexSettlement_0(companyId: bigint): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SupplierInvoice>>>;
14157
+ showSettlement(companyId: bigint, settlementId: bigint): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<no.solibo.oss.sdk.api.gen.models.Settlement>>;
14158
+ showSettlementCustomCost(companyId: bigint, settlementId: bigint, customCostId: bigint): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<no.solibo.oss.sdk.api.gen.models.SettlementCustomCost>>;
14159
+ showSettlementProviderConfigurationById(companyId: bigint, configurationId: bigint): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<no.solibo.oss.sdk.api.gen.models.SettlementProviderConfiguration>>;
14160
+ updateSettlement(companyId: bigint, settlementId: bigint, updateSettlementCommand: no.solibo.oss.sdk.api.gen.models.UpdateSettlementCommand): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<no.solibo.oss.sdk.api.gen.models.Settlement>>;
14161
+ updateSettlementCustomCost(companyId: bigint, settlementId: bigint, customCostId: bigint, updateSettlementCustomCostCommand: no.solibo.oss.sdk.api.gen.models.UpdateSettlementCustomCostCommand): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<no.solibo.oss.sdk.api.gen.models.SettlementCustomCost>>;
14162
+ updateSettlementProviderConfiguration(companyId: bigint, configurationId: bigint, updateSettlementProviderConfigurationCommand: no.solibo.oss.sdk.api.gen.models.UpdateSettlementProviderConfigurationCommand): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void>>;
14163
+ upsertSettlementProviderCredentials(companyId: bigint, configurationId: bigint, upsertSettlementProviderCredentialsCommand: no.solibo.oss.sdk.api.gen.models.UpsertSettlementProviderCredentialsCommand): Promise<no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void>>;
14164
+ }
14165
+ namespace SettlementApi {
14166
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
14167
+ namespace $metadata$ {
14168
+ const constructor: abstract new () => SettlementApi;
14169
+ }
14170
+ }
14171
+ }
13785
14172
  export declare namespace no.solibo.oss.sdk.api.gen.client.apis {
13786
14173
  class StorageApi extends no.solibo.oss.sdk.api.gen.infrastructure.ApiClient.$metadata$.constructor {
13787
14174
  private constructor();