@solibo/solibo-sdk 1.5.14 → 1.5.15
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/kotlin-kotlin-stdlib.mjs +6 -6
- 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-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +3296 -3240
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +6 -2
- package/solibo-sdk-sdk.mjs +8 -8
- package/solibo-sdk-sdk.mjs.map +1 -1
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -8042,6 +8042,7 @@ export interface IssueInMeetingProps {
|
|
|
8042
8042
|
resolution?: string | null | undefined;
|
|
8043
8043
|
resolved: boolean;
|
|
8044
8044
|
responsibleId?: bigint | null | undefined;
|
|
8045
|
+
responsibleName?: string | null | undefined;
|
|
8045
8046
|
sequence: number;
|
|
8046
8047
|
status?: MeetingStatusProps | null | undefined;
|
|
8047
8048
|
title: string;
|
|
@@ -8050,7 +8051,7 @@ export interface IssueInMeetingProps {
|
|
|
8050
8051
|
}
|
|
8051
8052
|
export declare class IssueInMeeting {
|
|
8052
8053
|
constructor(props: IssueInMeetingProps);
|
|
8053
|
-
constructor(attachedToMeetingAt: SoliboInstant /* Instant */, attachedToMeetingBy: IssueInMeetingAttachedToMeetingBy, comments: IssueComment[] | null | undefined, createdAt: SoliboInstant /* Instant */, createdById: bigint | null | undefined, description: string | null | undefined, documents: Document[] | null | undefined, followUp: boolean, issueId: bigint, issueStatus: IssueStatus, meetingId: bigint, proposedResolution: string | null | undefined, report: string | null | undefined, resolution: string | null | undefined, resolved: boolean, responsibleId: bigint | null | undefined, sequence: number, status: MeetingStatus | null | undefined, title: string, updatedAt: SoliboInstant /* Instant */, updatedById?: bigint | null | undefined);
|
|
8054
|
+
constructor(attachedToMeetingAt: SoliboInstant /* Instant */, attachedToMeetingBy: IssueInMeetingAttachedToMeetingBy, comments: IssueComment[] | null | undefined, createdAt: SoliboInstant /* Instant */, createdById: bigint | null | undefined, description: string | null | undefined, documents: Document[] | null | undefined, followUp: boolean, issueId: bigint, issueStatus: IssueStatus, meetingId: bigint, proposedResolution: string | null | undefined, report: string | null | undefined, resolution: string | null | undefined, resolved: boolean, responsibleId: bigint | null | undefined, responsibleName: string | null | undefined, sequence: number, status: MeetingStatus | null | undefined, title: string, updatedAt: SoliboInstant /* Instant */, updatedById?: bigint | null | undefined);
|
|
8054
8055
|
get attachedToMeetingAt(): SoliboInstant /* Instant */;
|
|
8055
8056
|
get attachedToMeetingBy(): IssueInMeetingAttachedToMeetingBy;
|
|
8056
8057
|
get comments(): IssueComment[] | null | undefined;
|
|
@@ -8067,6 +8068,7 @@ export declare class IssueInMeeting {
|
|
|
8067
8068
|
get resolution(): string | null | undefined;
|
|
8068
8069
|
get resolved(): boolean;
|
|
8069
8070
|
get responsibleId(): bigint | null | undefined;
|
|
8071
|
+
get responsibleName(): string | null | undefined;
|
|
8070
8072
|
get sequence(): number;
|
|
8071
8073
|
get status(): MeetingStatus | null | undefined;
|
|
8072
8074
|
get title(): string;
|
|
@@ -15384,6 +15386,7 @@ export declare namespace SupplierForCompany {
|
|
|
15384
15386
|
}
|
|
15385
15387
|
export interface SupplierInvoiceProps {
|
|
15386
15388
|
amount: number;
|
|
15389
|
+
companyId?: bigint | null | undefined;
|
|
15387
15390
|
currency: string;
|
|
15388
15391
|
description?: string | null | undefined;
|
|
15389
15392
|
dueDate?: SoliboInstant /* Instant */ | null | undefined;
|
|
@@ -15399,8 +15402,9 @@ export interface SupplierInvoiceProps {
|
|
|
15399
15402
|
}
|
|
15400
15403
|
export declare class SupplierInvoice {
|
|
15401
15404
|
constructor(props: SupplierInvoiceProps);
|
|
15402
|
-
constructor(amount: number, currency: string, description: string | null | undefined, dueDate: SoliboInstant /* Instant */ | null | undefined, id: bigint | null | undefined, invoiceDate: SoliboInstant /* Instant */, invoiceProcessing: SupplierInvoiceProcessing[] | null | undefined, outstanding: number, remainder: number, status: SupplierInvoiceStatus, supplierName: string | null | undefined, supplierOrgNr: string | null | undefined, tripletexId: bigint);
|
|
15405
|
+
constructor(amount: number, companyId: bigint | null | undefined, currency: string, description: string | null | undefined, dueDate: SoliboInstant /* Instant */ | null | undefined, id: bigint | null | undefined, invoiceDate: SoliboInstant /* Instant */, invoiceProcessing: SupplierInvoiceProcessing[] | null | undefined, outstanding: number, remainder: number, status: SupplierInvoiceStatus, supplierName: string | null | undefined, supplierOrgNr: string | null | undefined, tripletexId: bigint);
|
|
15403
15406
|
get amount(): number;
|
|
15407
|
+
get companyId(): bigint | null | undefined;
|
|
15404
15408
|
get currency(): string;
|
|
15405
15409
|
get description(): string | null | undefined;
|
|
15406
15410
|
get dueDate(): SoliboInstant /* Instant */ | null | undefined;
|
package/solibo-sdk-sdk.mjs
CHANGED
|
@@ -3620,7 +3620,7 @@ function HomeApi$clientConfigurator$lambda$lambda_8(this$0) {
|
|
|
3620
3620
|
}
|
|
3621
3621
|
accept($this$defaultRequest, Application_getInstance().k3j_1);
|
|
3622
3622
|
header($this$defaultRequest, 'Accept-Language', buildAcceptLanguage(this$0.userLanguage));
|
|
3623
|
-
header($this$defaultRequest, 'X-Solibo-SDK-Version', '1.5.
|
|
3623
|
+
header($this$defaultRequest, 'X-Solibo-SDK-Version', '1.5.15');
|
|
3624
3624
|
return Unit_instance;
|
|
3625
3625
|
};
|
|
3626
3626
|
}
|
|
@@ -9978,7 +9978,7 @@ function MockBackend$registerHandlers$lambda_112(this$0) {
|
|
|
9978
9978
|
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.g1();
|
|
9979
9979
|
var tmp_5 = tmp1_elvis_lhs == null ? 0 : tmp1_elvis_lhs;
|
|
9980
9980
|
var tmp2_elvis_lhs = issue.title;
|
|
9981
|
-
var issueInMeeting = new IssueInMeeting(now, tmp_4, VOID, now, VOID, VOID, VOID, false, issueId, issue.status, meetingId, VOID, VOID, VOID, false, VOID, tmp_5, VOID, tmp2_elvis_lhs == null ? '' : tmp2_elvis_lhs, now);
|
|
9981
|
+
var issueInMeeting = new IssueInMeeting(now, tmp_4, VOID, now, VOID, VOID, VOID, false, issueId, issue.status, meetingId, VOID, VOID, VOID, false, VOID, VOID, tmp_5, VOID, tmp2_elvis_lhs == null ? '' : tmp2_elvis_lhs, now);
|
|
9982
9982
|
var tmp0 = this$0.meetings;
|
|
9983
9983
|
var tmp3_elvis_lhs = meeting.issues;
|
|
9984
9984
|
// Inline function 'kotlin.collections.set' call
|
|
@@ -19345,7 +19345,7 @@ protoOf(MockBackend).vsq = function () {
|
|
|
19345
19345
|
protoOf(MockBackend).ost = function () {
|
|
19346
19346
|
return this.tasks;
|
|
19347
19347
|
};
|
|
19348
|
-
protoOf(MockBackend).
|
|
19348
|
+
protoOf(MockBackend).j8i = function () {
|
|
19349
19349
|
return this.issues;
|
|
19350
19350
|
};
|
|
19351
19351
|
protoOf(MockBackend).pst = function () {
|
|
@@ -26328,8 +26328,8 @@ protoOf($verificationCOROUTINE$).t9 = function () {
|
|
|
26328
26328
|
|
|
26329
26329
|
continue $sm;
|
|
26330
26330
|
case 1:
|
|
26331
|
-
var saltAsBase64 = Default_getInstance().al(this.etv_1.
|
|
26332
|
-
var verifierAsBase64 = Default_getInstance().al(this.etv_1.
|
|
26331
|
+
var saltAsBase64 = Default_getInstance().al(this.etv_1.a9b());
|
|
26332
|
+
var verifierAsBase64 = Default_getInstance().al(this.etv_1.b9b());
|
|
26333
26333
|
return to(saltAsBase64, verifierAsBase64);
|
|
26334
26334
|
case 2:
|
|
26335
26335
|
throw this.o9_1;
|
|
@@ -26423,7 +26423,7 @@ protoOf($generateCOROUTINE$).t9 = function () {
|
|
|
26423
26423
|
var saltInt = Companion_getInstance_15().oru(randomBytes, Sign_POSITIVE_getInstance());
|
|
26424
26424
|
this.xtv_1.itv_1 = toJavaLikeTwosComplementByteArray(saltInt);
|
|
26425
26425
|
this.l9_1 = 2;
|
|
26426
|
-
var this_0 = this.xtv_1.
|
|
26426
|
+
var this_0 = this.xtv_1.a9b();
|
|
26427
26427
|
suspendResult = sha256_0(primitiveArrayConcat([this_0, deviceKeyHash]), this);
|
|
26428
26428
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
26429
26429
|
return suspendResult;
|
|
@@ -26456,7 +26456,7 @@ function DeviceSrp(deviceGroupKey, deviceKey, password) {
|
|
|
26456
26456
|
this.gtv_1 = deviceKey;
|
|
26457
26457
|
this.htv_1 = password;
|
|
26458
26458
|
}
|
|
26459
|
-
protoOf(DeviceSrp).
|
|
26459
|
+
protoOf(DeviceSrp).a9b = function () {
|
|
26460
26460
|
var tmp = this.itv_1;
|
|
26461
26461
|
if (!(tmp == null))
|
|
26462
26462
|
return tmp;
|
|
@@ -26464,7 +26464,7 @@ protoOf(DeviceSrp).z9a = function () {
|
|
|
26464
26464
|
throwUninitializedPropertyAccessException('salt');
|
|
26465
26465
|
}
|
|
26466
26466
|
};
|
|
26467
|
-
protoOf(DeviceSrp).
|
|
26467
|
+
protoOf(DeviceSrp).b9b = function () {
|
|
26468
26468
|
var tmp = this.jtv_1;
|
|
26469
26469
|
if (!(tmp == null))
|
|
26470
26470
|
return tmp;
|