@solibo/home-api 1.1.113 → 1.1.114
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 +16 -16
- 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 +3 -2
- package/solibo-sdk-sdk-home-api.mjs +725 -693
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
package/ktor-ktor-websockets.mjs
CHANGED
|
@@ -71,8 +71,8 @@ import {
|
|
|
71
71
|
_ChannelResult___get_isClosed__impl__mg7kuu1g5u2zmbzbfb4 as _ChannelResult___get_isClosed__impl__mg7kuu,
|
|
72
72
|
close$default1evna6yun3t5h as close$default,
|
|
73
73
|
cancel$default1fq6eekptkf7a as cancel$default,
|
|
74
|
-
ReceiveChannel24wu5e2tj9lbp as ReceiveChannel,
|
|
75
74
|
SendChannel38sllbxw662ws as SendChannel,
|
|
75
|
+
ReceiveChannel24wu5e2tj9lbp as ReceiveChannel,
|
|
76
76
|
} from './kotlinx-coroutines-core.mjs';
|
|
77
77
|
import {
|
|
78
78
|
get_isTraceEnabled82xibuu04nxp as get_isTraceEnabled,
|
|
@@ -137,7 +137,7 @@ initMetadataForCompanion(Companion_3);
|
|
|
137
137
|
initMetadataForClass(ChannelConfig, 'ChannelConfig');
|
|
138
138
|
initMetadataForClass(ChannelOverflow, 'ChannelOverflow', VOID, Enum);
|
|
139
139
|
initMetadataForCompanion(Companion_4);
|
|
140
|
-
initMetadataForClass(BoundedChannel, 'BoundedChannel', VOID, VOID, [
|
|
140
|
+
initMetadataForClass(BoundedChannel, 'BoundedChannel', VOID, VOID, [SendChannel, ReceiveChannel], [1, 0]);
|
|
141
141
|
initMetadataForClass(ChannelOverflowException, 'ChannelOverflowException', VOID, RuntimeException);
|
|
142
142
|
initMetadataForInterface(WebSocketExtension, 'WebSocketExtension');
|
|
143
143
|
initMetadataForClass(WebSocketExtensionsConfig, 'WebSocketExtensionsConfig', WebSocketExtensionsConfig);
|
package/package.json
CHANGED
|
@@ -2960,11 +2960,12 @@ export declare namespace CreateTokensCommand {
|
|
|
2960
2960
|
}
|
|
2961
2961
|
}
|
|
2962
2962
|
export declare class CreditInvoiceCommand {
|
|
2963
|
-
constructor(description?: Nullable<string>, lines?: Nullable<KtList<InvoiceLineInput>>, overrideCreditDate?: Nullable<any>/* Nullable<Instant> */);
|
|
2963
|
+
constructor(description?: Nullable<string>, lineGroups?: Nullable<KtList<InvoiceLineGroupInput>>, lines?: Nullable<KtList<InvoiceLineInput>>, overrideCreditDate?: Nullable<any>/* Nullable<Instant> */);
|
|
2964
2964
|
get description(): Nullable<string>;
|
|
2965
|
+
get lineGroups(): Nullable<KtList<InvoiceLineGroupInput>>;
|
|
2965
2966
|
get lines(): Nullable<KtList<InvoiceLineInput>>;
|
|
2966
2967
|
get overrideCreditDate(): Nullable<any>/* Nullable<Instant> */;
|
|
2967
|
-
copy(description?: Nullable<string>, lines?: Nullable<KtList<InvoiceLineInput>>, overrideCreditDate?: Nullable<any>/* Nullable<Instant> */): CreditInvoiceCommand;
|
|
2968
|
+
copy(description?: Nullable<string>, lineGroups?: Nullable<KtList<InvoiceLineGroupInput>>, lines?: Nullable<KtList<InvoiceLineInput>>, overrideCreditDate?: Nullable<any>/* Nullable<Instant> */): CreditInvoiceCommand;
|
|
2968
2969
|
toString(): string;
|
|
2969
2970
|
hashCode(): number;
|
|
2970
2971
|
equals(other: Nullable<any>): boolean;
|