@solibo/solibo-sdk 1.1.72 → 1.1.74

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.
@@ -3320,6 +3320,7 @@ export declare namespace CreateSettlementCustomCostCommand {
3320
3320
  }
3321
3321
  }
3322
3322
  export interface CreateSettlementProviderConfigurationCommandProps {
3323
+ active?: boolean | null | undefined;
3323
3324
  closedAt?: any | null | undefined/* Instant | null | undefined */ | undefined;
3324
3325
  endDate?: any | null | undefined/* LocalDate | null | undefined */ | undefined;
3325
3326
  relevantOrgnrs?: KtList<string> | null | undefined;
@@ -3331,7 +3332,8 @@ export interface CreateSettlementProviderConfigurationCommandProps {
3331
3332
  }
3332
3333
  export declare class CreateSettlementProviderConfigurationCommand {
3333
3334
  constructor(props: CreateSettlementProviderConfigurationCommandProps);
3334
- constructor(closedAt: any | null | undefined/* Instant | null | undefined */ | undefined, endDate: any | null | undefined/* LocalDate | null | undefined */ | undefined, relevantOrgnrs: KtList<string> | null | undefined, resolverPrefix: string | null | undefined, settlementProvider: SettlementProvider, shouldInvoice: boolean | null | undefined, startDate: any/* LocalDate */, userId?: string | null | undefined);
3335
+ constructor(active: boolean | null | undefined, closedAt: any | null | undefined/* Instant | null | undefined */ | undefined, endDate: any | null | undefined/* LocalDate | null | undefined */ | undefined, relevantOrgnrs: KtList<string> | null | undefined, resolverPrefix: string | null | undefined, settlementProvider: SettlementProvider, shouldInvoice: boolean | null | undefined, startDate: any/* LocalDate */, userId?: string | null | undefined);
3336
+ get active(): boolean | null | undefined;
3335
3337
  get closedAt(): any | null | undefined/* Instant | null | undefined */;
3336
3338
  get endDate(): any | null | undefined/* LocalDate | null | undefined */;
3337
3339
  get relevantOrgnrs(): KtList<string> | null | undefined;
@@ -12085,6 +12087,7 @@ export declare namespace SettlementProvider {
12085
12087
  }
12086
12088
  }
12087
12089
  export interface SettlementProviderConfigurationProps {
12090
+ active: boolean;
12088
12091
  closedAt?: any | null | undefined/* Instant | null | undefined */ | undefined;
12089
12092
  companyId: bigint;
12090
12093
  endDate?: any | null | undefined/* LocalDate | null | undefined */ | undefined;
@@ -12098,7 +12101,8 @@ export interface SettlementProviderConfigurationProps {
12098
12101
  }
12099
12102
  export declare class SettlementProviderConfiguration {
12100
12103
  constructor(props: SettlementProviderConfigurationProps);
12101
- constructor(closedAt: any | null | undefined/* Instant | null | undefined */ | undefined, companyId: bigint, endDate: any | null | undefined/* LocalDate | null | undefined */ | undefined, id: bigint, relevantOrgnrs: KtList<string> | null | undefined, resolverPrefix: string | null | undefined, settlementProvider: SettlementProvider, shouldInvoice: boolean, startDate: any/* LocalDate */, userId?: string | null | undefined);
12104
+ constructor(active: boolean, closedAt: any | null | undefined/* Instant | null | undefined */ | undefined, companyId: bigint, endDate: any | null | undefined/* LocalDate | null | undefined */ | undefined, id: bigint, relevantOrgnrs: KtList<string> | null | undefined, resolverPrefix: string | null | undefined, settlementProvider: SettlementProvider, shouldInvoice: boolean, startDate: any/* LocalDate */, userId?: string | null | undefined);
12105
+ get active(): boolean;
12102
12106
  get closedAt(): any | null | undefined/* Instant | null | undefined */;
12103
12107
  get companyId(): bigint;
12104
12108
  get endDate(): any | null | undefined/* LocalDate | null | undefined */;
@@ -14711,6 +14715,7 @@ export declare namespace UpdateSettlementCustomCostCommand {
14711
14715
  }
14712
14716
  }
14713
14717
  export interface UpdateSettlementProviderConfigurationCommandProps {
14718
+ active?: boolean | null | undefined;
14714
14719
  closedAt?: any | null | undefined/* Instant | null | undefined */ | undefined;
14715
14720
  endDate?: any | null | undefined/* LocalDate | null | undefined */ | undefined;
14716
14721
  relevantOrgNrs?: KtList<string> | null | undefined;
@@ -14721,7 +14726,8 @@ export interface UpdateSettlementProviderConfigurationCommandProps {
14721
14726
  }
14722
14727
  export declare class UpdateSettlementProviderConfigurationCommand {
14723
14728
  constructor(props: UpdateSettlementProviderConfigurationCommandProps);
14724
- constructor(closedAt: any | null | undefined/* Instant | null | undefined */ | undefined, endDate: any | null | undefined/* LocalDate | null | undefined */ | undefined, relevantOrgNrs: KtList<string> | null | undefined, resolverPrefix: string | null | undefined, shouldInvoice: boolean | null | undefined, startDate: any/* LocalDate */, userId?: string | null | undefined);
14729
+ constructor(active: boolean | null | undefined, closedAt: any | null | undefined/* Instant | null | undefined */ | undefined, endDate: any | null | undefined/* LocalDate | null | undefined */ | undefined, relevantOrgNrs: KtList<string> | null | undefined, resolverPrefix: string | null | undefined, shouldInvoice: boolean | null | undefined, startDate: any/* LocalDate */, userId?: string | null | undefined);
14730
+ get active(): boolean | null | undefined;
14725
14731
  get closedAt(): any | null | undefined/* Instant | null | undefined */;
14726
14732
  get endDate(): any | null | undefined/* LocalDate | null | undefined */;
14727
14733
  get relevantOrgNrs(): KtList<string> | null | undefined;
@@ -6035,7 +6035,7 @@ function createMockSettlementCustomCost($this, id) {
6035
6035
  function createMockSettlementProviderConfiguration($this, id) {
6036
6036
  var tmp0_settlementProvider = SettlementProvider_OTHER_getInstance();
6037
6037
  var tmp1_startDate = new LocalDate(2025, 1, 1);
6038
- return new SettlementProviderConfiguration(VOID, 1n, VOID, id, VOID, VOID, tmp0_settlementProvider, true, tmp1_startDate);
6038
+ return new SettlementProviderConfiguration(true, VOID, 1n, VOID, id, VOID, VOID, tmp0_settlementProvider, true, tmp1_startDate);
6039
6039
  }
6040
6040
  function createMockIssue($this, id, companyId) {
6041
6041
  var tmp0_title = 'Mock Issue ' + id.toString();