@solibo/solibo-sdk 1.6.15 → 1.6.16
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-test.mjs +18 -18
- 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 +237 -237
- package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
- package/index.mjs +2 -0
- package/kotlin-kotlin-stdlib.mjs +15 -15
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +7 -7
- package/kotlinx-coroutines-core.mjs.map +1 -1
- package/ktor-ktor-client-auth.mjs +224 -224
- package/ktor-ktor-client-encoding.mjs +75 -75
- package/ktor-ktor-client-logging.mjs +520 -520
- package/ktor-ktor-client-mock.mjs +39 -39
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +19343 -18952
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +73 -1
- package/solibo-sdk-sdk.mjs +2857 -2843
- package/solibo-sdk-sdk.mjs.map +1 -1
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -14842,6 +14842,76 @@ export declare namespace SectionInvoiceRecipientOverview {
|
|
|
14842
14842
|
const constructor: abstract new () => SectionInvoiceRecipientOverview;
|
|
14843
14843
|
}
|
|
14844
14844
|
}
|
|
14845
|
+
export interface SectionOnboardingProps {
|
|
14846
|
+
message?: string | null | undefined;
|
|
14847
|
+
sectionId: bigint;
|
|
14848
|
+
status: SectionOnboardingStatusProps;
|
|
14849
|
+
updatedAt?: SoliboInstant /* Instant */ | null | undefined;
|
|
14850
|
+
}
|
|
14851
|
+
export declare class SectionOnboarding {
|
|
14852
|
+
constructor(props: SectionOnboardingProps);
|
|
14853
|
+
constructor(message: string | null | undefined, sectionId: bigint, status: SectionOnboardingStatus, updatedAt?: SoliboInstant /* Instant */ | null | undefined);
|
|
14854
|
+
get message(): string | null | undefined;
|
|
14855
|
+
get sectionId(): bigint;
|
|
14856
|
+
get status(): SectionOnboardingStatus;
|
|
14857
|
+
get updatedAt(): SoliboInstant /* Instant */ | null | undefined;
|
|
14858
|
+
}
|
|
14859
|
+
export declare namespace SectionOnboarding {
|
|
14860
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
14861
|
+
namespace $metadata$ {
|
|
14862
|
+
const constructor: abstract new () => SectionOnboarding;
|
|
14863
|
+
}
|
|
14864
|
+
}
|
|
14865
|
+
export declare abstract class SectionOnboardingStatus {
|
|
14866
|
+
private constructor();
|
|
14867
|
+
static get SUBMITTED(): SectionOnboardingStatus & {
|
|
14868
|
+
get name(): "SUBMITTED";
|
|
14869
|
+
get ordinal(): 0;
|
|
14870
|
+
};
|
|
14871
|
+
static get COMPLETED(): SectionOnboardingStatus & {
|
|
14872
|
+
get name(): "COMPLETED";
|
|
14873
|
+
get ordinal(): 1;
|
|
14874
|
+
};
|
|
14875
|
+
static get FAILED(): SectionOnboardingStatus & {
|
|
14876
|
+
get name(): "FAILED";
|
|
14877
|
+
get ordinal(): 2;
|
|
14878
|
+
};
|
|
14879
|
+
static get Submitted(): SectionOnboardingStatus & {
|
|
14880
|
+
get name(): "SUBMITTED";
|
|
14881
|
+
get ordinal(): 0;
|
|
14882
|
+
};
|
|
14883
|
+
static get Completed(): SectionOnboardingStatus & {
|
|
14884
|
+
get name(): "COMPLETED";
|
|
14885
|
+
get ordinal(): 1;
|
|
14886
|
+
};
|
|
14887
|
+
static get Failed(): SectionOnboardingStatus & {
|
|
14888
|
+
get name(): "FAILED";
|
|
14889
|
+
get ordinal(): 2;
|
|
14890
|
+
};
|
|
14891
|
+
static values(): [typeof SectionOnboardingStatus.SUBMITTED, typeof SectionOnboardingStatus.COMPLETED, typeof SectionOnboardingStatus.FAILED];
|
|
14892
|
+
static valueOf(value: string): SectionOnboardingStatus;
|
|
14893
|
+
get name(): "SUBMITTED" | "COMPLETED" | "FAILED";
|
|
14894
|
+
get ordinal(): 0 | 1 | 2;
|
|
14895
|
+
get value(): string;
|
|
14896
|
+
}
|
|
14897
|
+
export declare namespace SectionOnboardingStatus {
|
|
14898
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
14899
|
+
namespace $metadata$ {
|
|
14900
|
+
const constructor: abstract new () => SectionOnboardingStatus;
|
|
14901
|
+
}
|
|
14902
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
14903
|
+
private constructor();
|
|
14904
|
+
}
|
|
14905
|
+
namespace Companion {
|
|
14906
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
14907
|
+
namespace $metadata$ {
|
|
14908
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
14909
|
+
fromValue(value: string): SectionOnboardingStatus | null | undefined;
|
|
14910
|
+
private constructor();
|
|
14911
|
+
}
|
|
14912
|
+
}
|
|
14913
|
+
}
|
|
14914
|
+
}
|
|
14845
14915
|
export interface SectionPackProps {
|
|
14846
14916
|
preferredAdvertisement?: PreferredAdvertisementProps | null | undefined;
|
|
14847
14917
|
sectionId: bigint;
|
|
@@ -15406,6 +15476,7 @@ export interface SettlementProviderConfigurationProps {
|
|
|
15406
15476
|
id: bigint;
|
|
15407
15477
|
relevantOrgnrs?: string[] | null | undefined;
|
|
15408
15478
|
resolverPrefix?: string | null | undefined;
|
|
15479
|
+
sectionOnboardings?: SectionOnboardingProps[] | null | undefined;
|
|
15409
15480
|
settlementProvider: SettlementProviderProps;
|
|
15410
15481
|
shouldInvoice: boolean;
|
|
15411
15482
|
startDate: SoliboLocalDate /* LocalDate */;
|
|
@@ -15413,7 +15484,7 @@ export interface SettlementProviderConfigurationProps {
|
|
|
15413
15484
|
}
|
|
15414
15485
|
export declare class SettlementProviderConfiguration {
|
|
15415
15486
|
constructor(props: SettlementProviderConfigurationProps);
|
|
15416
|
-
constructor(active: boolean, closedAt: SoliboInstant /* Instant */ | null | undefined, companyId: bigint, endDate: SoliboLocalDate /* LocalDate */ | null | undefined, id: bigint, relevantOrgnrs: string[] | null | undefined, resolverPrefix: string | null | undefined, settlementProvider: SettlementProvider, shouldInvoice: boolean, startDate: SoliboLocalDate /* LocalDate */, userId?: string | null | undefined);
|
|
15487
|
+
constructor(active: boolean, closedAt: SoliboInstant /* Instant */ | null | undefined, companyId: bigint, endDate: SoliboLocalDate /* LocalDate */ | null | undefined, id: bigint, relevantOrgnrs: string[] | null | undefined, resolverPrefix: string | null | undefined, sectionOnboardings: SectionOnboarding[] | null | undefined, settlementProvider: SettlementProvider, shouldInvoice: boolean, startDate: SoliboLocalDate /* LocalDate */, userId?: string | null | undefined);
|
|
15417
15488
|
get active(): boolean;
|
|
15418
15489
|
get closedAt(): SoliboInstant /* Instant */ | null | undefined;
|
|
15419
15490
|
get companyId(): bigint;
|
|
@@ -15421,6 +15492,7 @@ export declare class SettlementProviderConfiguration {
|
|
|
15421
15492
|
get id(): bigint;
|
|
15422
15493
|
get relevantOrgnrs(): string[] | null | undefined;
|
|
15423
15494
|
get resolverPrefix(): string | null | undefined;
|
|
15495
|
+
get sectionOnboardings(): SectionOnboarding[] | null | undefined;
|
|
15424
15496
|
get settlementProvider(): SettlementProvider;
|
|
15425
15497
|
get shouldInvoice(): boolean;
|
|
15426
15498
|
get startDate(): SoliboLocalDate /* LocalDate */;
|