@solibo/home-api 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.d.mts +6 -4
- package/solibo-sdk-sdk-home-api.mjs +3294 -3240
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
package/ktor-ktor-websockets.mjs
CHANGED
|
@@ -72,8 +72,8 @@ import {
|
|
|
72
72
|
_ChannelResult___get_isClosed__impl__mg7kuu1g5u2zmbzbfb4 as _ChannelResult___get_isClosed__impl__mg7kuu,
|
|
73
73
|
close$default1evna6yun3t5h as close$default,
|
|
74
74
|
cancel$default1fq6eekptkf7a as cancel$default,
|
|
75
|
-
ReceiveChannel24wu5e2tj9lbp as ReceiveChannel,
|
|
76
75
|
SendChannel38sllbxw662ws as SendChannel,
|
|
76
|
+
ReceiveChannel24wu5e2tj9lbp as ReceiveChannel,
|
|
77
77
|
} from './kotlinx-coroutines-core.mjs';
|
|
78
78
|
import {
|
|
79
79
|
get_isTraceEnabled82xibuu04nxp as get_isTraceEnabled,
|
|
@@ -138,7 +138,7 @@ initMetadataForCompanion(Companion_3);
|
|
|
138
138
|
initMetadataForClass(ChannelConfig, 'ChannelConfig');
|
|
139
139
|
initMetadataForClass(ChannelOverflow, 'ChannelOverflow', VOID, Enum);
|
|
140
140
|
initMetadataForCompanion(Companion_4);
|
|
141
|
-
initMetadataForClass(BoundedChannel, 'BoundedChannel', VOID, VOID, [
|
|
141
|
+
initMetadataForClass(BoundedChannel, 'BoundedChannel', VOID, VOID, [SendChannel, ReceiveChannel], [1, 0]);
|
|
142
142
|
initMetadataForClass(ChannelOverflowException, 'ChannelOverflowException', VOID, RuntimeException);
|
|
143
143
|
initMetadataForInterface(WebSocketExtension, 'WebSocketExtension');
|
|
144
144
|
initMetadataForClass(WebSocketExtensionsConfig, 'WebSocketExtensionsConfig', WebSocketExtensionsConfig);
|
package/package.json
CHANGED
|
@@ -6978,7 +6978,7 @@ export declare namespace IssueInConversation {
|
|
|
6978
6978
|
}
|
|
6979
6979
|
}
|
|
6980
6980
|
export declare class IssueInMeeting {
|
|
6981
|
-
constructor(attachedToMeetingAt: any/* Instant */, attachedToMeetingBy: IssueInMeetingAttachedToMeetingBy, comments: Nullable<KtList<IssueComment>> | undefined, createdAt: any/* Instant */, createdById: Nullable<bigint> | undefined, description: Nullable<string> | undefined, documents: Nullable<KtList<Document>> | undefined, followUp: boolean, issueId: bigint, issueStatus: IssueStatus, meetingId: bigint, proposedResolution: Nullable<string> | undefined, report: Nullable<string> | undefined, resolution: Nullable<string> | undefined, resolved: boolean, responsibleId: Nullable<bigint> | undefined, sequence: number, status: Nullable<MeetingStatus> | undefined, title: string, updatedAt: any/* Instant */, updatedById?: Nullable<bigint>);
|
|
6981
|
+
constructor(attachedToMeetingAt: any/* Instant */, attachedToMeetingBy: IssueInMeetingAttachedToMeetingBy, comments: Nullable<KtList<IssueComment>> | undefined, createdAt: any/* Instant */, createdById: Nullable<bigint> | undefined, description: Nullable<string> | undefined, documents: Nullable<KtList<Document>> | undefined, followUp: boolean, issueId: bigint, issueStatus: IssueStatus, meetingId: bigint, proposedResolution: Nullable<string> | undefined, report: Nullable<string> | undefined, resolution: Nullable<string> | undefined, resolved: boolean, responsibleId: Nullable<bigint> | undefined, responsibleName: Nullable<string> | undefined, sequence: number, status: Nullable<MeetingStatus> | undefined, title: string, updatedAt: any/* Instant */, updatedById?: Nullable<bigint>);
|
|
6982
6982
|
get attachedToMeetingAt(): any/* Instant */;
|
|
6983
6983
|
get attachedToMeetingBy(): IssueInMeetingAttachedToMeetingBy;
|
|
6984
6984
|
get comments(): Nullable<KtList<IssueComment>>;
|
|
@@ -6995,12 +6995,13 @@ export declare class IssueInMeeting {
|
|
|
6995
6995
|
get resolution(): Nullable<string>;
|
|
6996
6996
|
get resolved(): boolean;
|
|
6997
6997
|
get responsibleId(): Nullable<bigint>;
|
|
6998
|
+
get responsibleName(): Nullable<string>;
|
|
6998
6999
|
get sequence(): number;
|
|
6999
7000
|
get status(): Nullable<MeetingStatus>;
|
|
7000
7001
|
get title(): string;
|
|
7001
7002
|
get updatedAt(): any/* Instant */;
|
|
7002
7003
|
get updatedById(): Nullable<bigint>;
|
|
7003
|
-
copy(attachedToMeetingAt?: any/* Instant */, attachedToMeetingBy?: IssueInMeetingAttachedToMeetingBy, comments?: Nullable<KtList<IssueComment>>, createdAt?: any/* Instant */, createdById?: Nullable<bigint>, description?: Nullable<string>, documents?: Nullable<KtList<Document>>, followUp?: boolean, issueId?: bigint, issueStatus?: IssueStatus, meetingId?: bigint, proposedResolution?: Nullable<string>, report?: Nullable<string>, resolution?: Nullable<string>, resolved?: boolean, responsibleId?: Nullable<bigint>, sequence?: number, status?: Nullable<MeetingStatus>, title?: string, updatedAt?: any/* Instant */, updatedById?: Nullable<bigint>): IssueInMeeting;
|
|
7004
|
+
copy(attachedToMeetingAt?: any/* Instant */, attachedToMeetingBy?: IssueInMeetingAttachedToMeetingBy, comments?: Nullable<KtList<IssueComment>>, createdAt?: any/* Instant */, createdById?: Nullable<bigint>, description?: Nullable<string>, documents?: Nullable<KtList<Document>>, followUp?: boolean, issueId?: bigint, issueStatus?: IssueStatus, meetingId?: bigint, proposedResolution?: Nullable<string>, report?: Nullable<string>, resolution?: Nullable<string>, resolved?: boolean, responsibleId?: Nullable<bigint>, responsibleName?: Nullable<string>, sequence?: number, status?: Nullable<MeetingStatus>, title?: string, updatedAt?: any/* Instant */, updatedById?: Nullable<bigint>): IssueInMeeting;
|
|
7004
7005
|
toString(): string;
|
|
7005
7006
|
hashCode(): number;
|
|
7006
7007
|
equals(other: Nullable<any>): boolean;
|
|
@@ -13341,8 +13342,9 @@ export declare namespace SupplierForCompany {
|
|
|
13341
13342
|
}
|
|
13342
13343
|
}
|
|
13343
13344
|
export declare class SupplierInvoice {
|
|
13344
|
-
constructor(amount: number, currency: string, description: Nullable<string> | undefined, dueDate: Nullable<any>/* Nullable<Instant> */ | undefined, id: Nullable<bigint> | undefined, invoiceDate: any/* Instant */, invoiceProcessing: Nullable<KtList<SupplierInvoiceProcessing>> | undefined, outstanding: number, remainder: number, status: SupplierInvoiceStatus, supplierName: Nullable<string> | undefined, supplierOrgNr: Nullable<string> | undefined, tripletexId: bigint);
|
|
13345
|
+
constructor(amount: number, companyId: Nullable<bigint> | undefined, currency: string, description: Nullable<string> | undefined, dueDate: Nullable<any>/* Nullable<Instant> */ | undefined, id: Nullable<bigint> | undefined, invoiceDate: any/* Instant */, invoiceProcessing: Nullable<KtList<SupplierInvoiceProcessing>> | undefined, outstanding: number, remainder: number, status: SupplierInvoiceStatus, supplierName: Nullable<string> | undefined, supplierOrgNr: Nullable<string> | undefined, tripletexId: bigint);
|
|
13345
13346
|
get amount(): number;
|
|
13347
|
+
get companyId(): Nullable<bigint>;
|
|
13346
13348
|
get currency(): string;
|
|
13347
13349
|
get description(): Nullable<string>;
|
|
13348
13350
|
get dueDate(): Nullable<any>/* Nullable<Instant> */;
|
|
@@ -13355,7 +13357,7 @@ export declare class SupplierInvoice {
|
|
|
13355
13357
|
get supplierName(): Nullable<string>;
|
|
13356
13358
|
get supplierOrgNr(): Nullable<string>;
|
|
13357
13359
|
get tripletexId(): bigint;
|
|
13358
|
-
copy(amount?: number, currency?: string, description?: Nullable<string>, dueDate?: Nullable<any>/* Nullable<Instant> */, id?: Nullable<bigint>, invoiceDate?: any/* Instant */, invoiceProcessing?: Nullable<KtList<SupplierInvoiceProcessing>>, outstanding?: number, remainder?: number, status?: SupplierInvoiceStatus, supplierName?: Nullable<string>, supplierOrgNr?: Nullable<string>, tripletexId?: bigint): SupplierInvoice;
|
|
13360
|
+
copy(amount?: number, companyId?: Nullable<bigint>, currency?: string, description?: Nullable<string>, dueDate?: Nullable<any>/* Nullable<Instant> */, id?: Nullable<bigint>, invoiceDate?: any/* Instant */, invoiceProcessing?: Nullable<KtList<SupplierInvoiceProcessing>>, outstanding?: number, remainder?: number, status?: SupplierInvoiceStatus, supplierName?: Nullable<string>, supplierOrgNr?: Nullable<string>, tripletexId?: bigint): SupplierInvoice;
|
|
13359
13361
|
toString(): string;
|
|
13360
13362
|
hashCode(): number;
|
|
13361
13363
|
equals(other: Nullable<any>): boolean;
|