@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.
- package/KmLogging-logging.mjs +99 -99
- package/KotlinBigInteger-bignum.mjs +1114 -1114
- 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 +240 -240
- package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
- package/kotlin-kotlin-stdlib.mjs +11 -11
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +1 -1
- package/ktor-ktor-client-auth.mjs +224 -224
- package/ktor-ktor-client-logging.mjs +516 -516
- package/ktor-ktor-client-mock.mjs +39 -39
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +18823 -18393
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +42 -15
- package/solibo-sdk-sdk.mjs +2163 -2163
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -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
|
-
|
|
5185
|
+
upcoming: KtList<GlobalPreviewUpcomingProps>;
|
|
5184
5186
|
}
|
|
5185
5187
|
export declare class GlobalPreview {
|
|
5186
5188
|
constructor(props: GlobalPreviewProps);
|
|
5187
|
-
constructor(companyId: bigint,
|
|
5189
|
+
constructor(companyId: bigint, upcoming: KtList<GlobalPreviewUpcoming>);
|
|
5188
5190
|
get companyId(): bigint;
|
|
5189
|
-
get
|
|
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
|
|
5199
|
+
export interface GlobalPreviewUpcomingProps {
|
|
5198
5200
|
dueDate: any/* Instant */;
|
|
5201
|
+
id: bigint;
|
|
5202
|
+
invoiceCount: bigint;
|
|
5199
5203
|
invoiceDate: any/* Instant */;
|
|
5200
|
-
|
|
5201
|
-
payerName: string;
|
|
5204
|
+
name: string;
|
|
5202
5205
|
}
|
|
5203
|
-
export declare class
|
|
5204
|
-
constructor(props:
|
|
5205
|
-
constructor(dueDate: any/* Instant */, invoiceDate: any/* Instant */,
|
|
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
|
|
5209
|
-
get payerName(): string;
|
|
5213
|
+
get name(): string;
|
|
5210
5214
|
}
|
|
5211
|
-
export declare namespace
|
|
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 () =>
|
|
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>>>>;
|