@solibo/solibo-sdk 1.1.113 → 1.1.114

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.
@@ -3539,13 +3539,15 @@ export declare namespace CreateTokensCommand {
3539
3539
  }
3540
3540
  export interface CreditInvoiceCommandProps {
3541
3541
  description?: string | null | undefined;
3542
+ lineGroups?: KtList<InvoiceLineGroupInputProps> | null | undefined;
3542
3543
  lines?: KtList<InvoiceLineInputProps> | null | undefined;
3543
3544
  overrideCreditDate?: any | null | undefined/* Instant | null | undefined */;
3544
3545
  }
3545
3546
  export declare class CreditInvoiceCommand {
3546
3547
  constructor(props: CreditInvoiceCommandProps);
3547
- constructor(description?: string | null | undefined, lines?: KtList<InvoiceLineInput> | null | undefined, overrideCreditDate?: any | null | undefined/* Instant | null | undefined */);
3548
+ constructor(description?: string | null | undefined, lineGroups?: KtList<InvoiceLineGroupInput> | null | undefined, lines?: KtList<InvoiceLineInput> | null | undefined, overrideCreditDate?: any | null | undefined/* Instant | null | undefined */);
3548
3549
  get description(): string | null | undefined;
3550
+ get lineGroups(): KtList<InvoiceLineGroupInput> | null | undefined;
3549
3551
  get lines(): KtList<InvoiceLineInput> | null | undefined;
3550
3552
  get overrideCreditDate(): any | null | undefined/* Instant | null | undefined */;
3551
3553
  }