@solibo/solibo-sdk 1.1.12 → 1.1.13

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.
@@ -3521,6 +3521,7 @@ export declare namespace CustomerCommentCreatedBy {
3521
3521
  }
3522
3522
  export interface CustomerMetadataProps {
3523
3523
  alternateEHFReference?: string | null | undefined;
3524
+ companyId: bigint;
3524
3525
  customerId: bigint;
3525
3526
  customerReference?: string | null | undefined;
3526
3527
  customerType: CustomerType;
@@ -3530,8 +3531,9 @@ export interface CustomerMetadataProps {
3530
3531
  }
3531
3532
  export declare class CustomerMetadata {
3532
3533
  constructor(props: CustomerMetadataProps);
3533
- constructor(alternateEHFReference: string | null | undefined, customerId: bigint, customerReference: string | null | undefined, customerType: CustomerType, groupInvoices: boolean, id: bigint, overdueProcessing: boolean);
3534
+ constructor(alternateEHFReference: string | null | undefined, companyId: bigint, customerId: bigint, customerReference: string | null | undefined, customerType: CustomerType, groupInvoices: boolean, id: bigint, overdueProcessing: boolean);
3534
3535
  get alternateEHFReference(): string | null | undefined;
3536
+ get companyId(): bigint;
3535
3537
  get customerId(): bigint;
3536
3538
  get customerReference(): string | null | undefined;
3537
3539
  get customerType(): CustomerType;
@@ -5180,13 +5182,13 @@ export declare namespace GenghisVoucher {
5180
5182
  }
5181
5183
  export interface GlobalPreviewProps {
5182
5184
  companyId: bigint;
5183
- previews: KtList<GlobalPreviewReceiverProps>;
5185
+ upcoming: KtList<GlobalPreviewUpcomingProps>;
5184
5186
  }
5185
5187
  export declare class GlobalPreview {
5186
5188
  constructor(props: GlobalPreviewProps);
5187
- constructor(companyId: bigint, previews: KtList<GlobalPreviewReceiver>);
5189
+ constructor(companyId: bigint, upcoming: KtList<GlobalPreviewUpcoming>);
5188
5190
  get companyId(): bigint;
5189
- get previews(): KtList<GlobalPreviewReceiver>;
5191
+ get upcoming(): KtList<GlobalPreviewUpcoming>;
5190
5192
  }
5191
5193
  export declare namespace GlobalPreview {
5192
5194
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -5194,24 +5196,26 @@ export declare namespace GlobalPreview {
5194
5196
  const constructor: abstract new () => GlobalPreview;
5195
5197
  }
5196
5198
  }
5197
- export interface GlobalPreviewReceiverProps {
5199
+ export interface GlobalPreviewUpcomingProps {
5198
5200
  dueDate: any/* Instant */;
5201
+ id: bigint;
5202
+ invoiceCount: bigint;
5199
5203
  invoiceDate: any/* Instant */;
5200
- payerId: bigint;
5201
- payerName: string;
5204
+ name: string;
5202
5205
  }
5203
- export declare class GlobalPreviewReceiver {
5204
- constructor(props: GlobalPreviewReceiverProps);
5205
- constructor(dueDate: any/* Instant */, invoiceDate: any/* Instant */, payerId: bigint, payerName: string);
5206
+ export declare class GlobalPreviewUpcoming {
5207
+ constructor(props: GlobalPreviewUpcomingProps);
5208
+ constructor(dueDate: any/* Instant */, id: bigint, invoiceCount: bigint, invoiceDate: any/* Instant */, name: string);
5206
5209
  get dueDate(): any/* Instant */;
5210
+ get id(): bigint;
5211
+ get invoiceCount(): bigint;
5207
5212
  get invoiceDate(): any/* Instant */;
5208
- get payerId(): bigint;
5209
- get payerName(): string;
5213
+ get name(): string;
5210
5214
  }
5211
- export declare namespace GlobalPreviewReceiver {
5215
+ export declare namespace GlobalPreviewUpcoming {
5212
5216
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
5213
5217
  namespace $metadata$ {
5214
- const constructor: abstract new () => GlobalPreviewReceiver;
5218
+ const constructor: abstract new () => GlobalPreviewUpcoming;
5215
5219
  }
5216
5220
  }
5217
5221
  export interface HmsSettingsProps {
@@ -11182,6 +11186,28 @@ export declare namespace Section {
11182
11186
  const constructor: abstract new () => Section;
11183
11187
  }
11184
11188
  }
11189
+ export interface SectionAccountFractionProps {
11190
+ accountName?: string | null | undefined;
11191
+ accountNumber: bigint;
11192
+ fractionedBalance: number;
11193
+ ownerFraction: string;
11194
+ totalBalance: number;
11195
+ }
11196
+ export declare class SectionAccountFraction {
11197
+ constructor(props: SectionAccountFractionProps);
11198
+ constructor(accountName: string | null | undefined, accountNumber: bigint, fractionedBalance: number, ownerFraction: string, totalBalance: number);
11199
+ get accountName(): string | null | undefined;
11200
+ get accountNumber(): bigint;
11201
+ get fractionedBalance(): number;
11202
+ get ownerFraction(): string;
11203
+ get totalBalance(): number;
11204
+ }
11205
+ export declare namespace SectionAccountFraction {
11206
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
11207
+ namespace $metadata$ {
11208
+ const constructor: abstract new () => SectionAccountFraction;
11209
+ }
11210
+ }
11185
11211
  export interface SectionFractionProps {
11186
11212
  bolignr?: bigint | null | undefined;
11187
11213
  identifier?: string | null | undefined;
@@ -14820,7 +14846,7 @@ export declare class AuthApi extends ApiClient.$metadata$.constructor {
14820
14846
  indexUserDevices(): Promise<HttpResponse<KtList<Device>>>;
14821
14847
  refreshTokens(refreshTokensCommand: RefreshTokensCommand): Promise<HttpResponse<SoliboAuthentication>>;
14822
14848
  registerFCMDeviceForUser(registerDeviceCommand: RegisterDeviceCommand): Promise<HttpResponse<void>>;
14823
- reportPushNotificationRead(trackingId: string): Promise<HttpResponse<void>>;
14849
+ reportPushNotificationRead(companyId: bigint, trackingId: string): Promise<HttpResponse<void>>;
14824
14850
  revokeTokens(clientId?: string | null | undefined, deviceKey?: string | null | undefined, deviceKeyGroup?: string | null | undefined, userId?: string | null | undefined, refreshToken?: string | null | undefined): Promise<HttpResponse<void>>;
14825
14851
  verifyCreateTOTPMfa(verifyAssociateTotpMfaCommand: VerifyAssociateTotpMfaCommand): Promise<HttpResponse<SoftwareTokenAssociation>>;
14826
14852
  verifySMSMfa(verifyMfaCommand: VerifyMfaCommand): Promise<HttpResponse<SoliboAuthentication>>;
@@ -15452,6 +15478,7 @@ export declare class SectionApi extends ApiClient.$metadata$.constructor {
15452
15478
  deleteTagOnSection(companyId: bigint, sectionId: bigint): Promise<HttpResponse<void>>;
15453
15479
  eierskifteSection(companyId: bigint, sectionId: bigint, ownerChangeSectionCommand: OwnerChangeSectionCommand): Promise<HttpResponse<void>>;
15454
15480
  indexCompanyOwnershipChanges(companyId: bigint): Promise<HttpResponse<KtList<OwnershipChange>>>;
15481
+ indexLoansByFraction(companyId: bigint, sectionId: bigint): Promise<HttpResponse<KtList<SectionAccountFraction>>>;
15455
15482
  indexOwnershipChanges(): Promise<HttpResponse<KtList<OwnershipChange>>>;
15456
15483
  indexSection(companyId: bigint, status?: SectionState | null | undefined, autoPaginate?: boolean | null | undefined, query?: string | null | undefined, pageToken?: string | null | undefined): Promise<HttpResponse<SectionList>>;
15457
15484
  indexSectionFractions(companyId: bigint, fractionType?: FractionType | null | undefined, sectionIds?: KtList<bigint> | null | undefined, validFrom?: bigint | null | undefined): Promise<HttpResponse<KtMap<string, KtList<SectionFractionSectionFractionMapValue>>>>;