@solibo/home-api 1.7.77 → 1.7.78-07425e5-1783687617788-SNAPSHOT
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/kotlinx-coroutines-core.mjs +7 -7
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.d.mts +11 -4
- package/solibo-sdk-sdk-home-api.mjs +20612 -20423
package/kotlin-kotlin-stdlib.mjs
CHANGED
|
@@ -59,12 +59,6 @@ if (typeof Math.trunc === 'undefined') {
|
|
|
59
59
|
return Math.ceil(x);
|
|
60
60
|
};
|
|
61
61
|
}
|
|
62
|
-
if (typeof String.prototype.startsWith === 'undefined') {
|
|
63
|
-
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
64
|
-
position = position || 0;
|
|
65
|
-
return this.lastIndexOf(searchString, position) === position;
|
|
66
|
-
}});
|
|
67
|
-
}
|
|
68
62
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
69
63
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
70
64
|
var subjectString = this.toString();
|
|
@@ -76,6 +70,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
76
70
|
return lastIndex !== -1 && lastIndex === position;
|
|
77
71
|
}});
|
|
78
72
|
}
|
|
73
|
+
if (typeof String.prototype.startsWith === 'undefined') {
|
|
74
|
+
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
75
|
+
position = position || 0;
|
|
76
|
+
return this.lastIndexOf(searchString, position) === position;
|
|
77
|
+
}});
|
|
78
|
+
}
|
|
79
79
|
//endregion
|
|
80
80
|
//region block: imports
|
|
81
81
|
var imul_0 = Math.imul;
|
|
@@ -217,6 +217,11 @@ initMetadataForClass(SendBroadcast, 'SendBroadcast', VOID, VOID, [Waiter]);
|
|
|
217
217
|
initMetadataForClass(BufferedChannelIterator, 'BufferedChannelIterator', VOID, VOID, [Waiter], [0, 3]);
|
|
218
218
|
initMetadataForCoroutine($sendCOROUTINE$, CoroutineImpl);
|
|
219
219
|
initMetadataForCoroutine($receiveCOROUTINE$, CoroutineImpl);
|
|
220
|
+
function close$default(cause, $super) {
|
|
221
|
+
cause = cause === VOID ? null : cause;
|
|
222
|
+
return $super === VOID ? this.y18(cause) : $super.y18.call(this, cause);
|
|
223
|
+
}
|
|
224
|
+
initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
|
|
220
225
|
function cancel$default_0(cause, $super) {
|
|
221
226
|
cause = cause === VOID ? null : cause;
|
|
222
227
|
var tmp;
|
|
@@ -229,12 +234,7 @@ function cancel$default_0(cause, $super) {
|
|
|
229
234
|
return tmp;
|
|
230
235
|
}
|
|
231
236
|
initMetadataForInterface(ReceiveChannel, 'ReceiveChannel', VOID, VOID, VOID, [0]);
|
|
232
|
-
|
|
233
|
-
cause = cause === VOID ? null : cause;
|
|
234
|
-
return $super === VOID ? this.y18(cause) : $super.y18.call(this, cause);
|
|
235
|
-
}
|
|
236
|
-
initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
|
|
237
|
-
initMetadataForClass(BufferedChannel, 'BufferedChannel', VOID, VOID, [ReceiveChannel, SendChannel], [1, 4, 0, 3]);
|
|
237
|
+
initMetadataForClass(BufferedChannel, 'BufferedChannel', VOID, VOID, [SendChannel, ReceiveChannel], [1, 4, 0, 3]);
|
|
238
238
|
initMetadataForClass(WaiterEB, 'WaiterEB');
|
|
239
239
|
initMetadataForClass(ReceiveCatching, 'ReceiveCatching', VOID, VOID, [Waiter]);
|
|
240
240
|
initMetadataForObject(Factory, 'Factory');
|
|
@@ -244,7 +244,7 @@ initMetadataForCompanion(Companion);
|
|
|
244
244
|
initMetadataForClass(ChannelResult, 'ChannelResult');
|
|
245
245
|
initMetadataForClass(ClosedReceiveChannelException, 'ClosedReceiveChannelException', VOID, NoSuchElementException);
|
|
246
246
|
initMetadataForClass(ClosedSendChannelException, 'ClosedSendChannelException', VOID, IllegalStateException);
|
|
247
|
-
initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [
|
|
247
|
+
initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [SendChannel, ReceiveChannel], [1, 0]);
|
|
248
248
|
initMetadataForClass(ConflatedBufferedChannel, 'ConflatedBufferedChannel', VOID, BufferedChannel, VOID, [1, 0]);
|
|
249
249
|
initMetadataForInterface(ProducerScope, 'ProducerScope', VOID, VOID, [CoroutineScope, SendChannel], [1]);
|
|
250
250
|
initMetadataForClass(ProducerCoroutine, 'ProducerCoroutine', VOID, ChannelCoroutine, [ProducerScope], [1, 0]);
|
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
|
@@ -8606,14 +8606,17 @@ export declare namespace InvoiceState {
|
|
|
8606
8606
|
}
|
|
8607
8607
|
}
|
|
8608
8608
|
export declare class InvoiceSubjectMeta {
|
|
8609
|
-
constructor(accountNumber: Nullable<string> | undefined, area: Nullable<string> | undefined, contactAddresse: Nullable<string> | undefined, name: string, orgnr?: Nullable<string>, zipCode?: Nullable<string>);
|
|
8609
|
+
constructor(accountNumber: Nullable<string> | undefined, area: Nullable<string> | undefined, contactAddresse: Nullable<string> | undefined, digipostArea: Nullable<string> | undefined, digipostContactAddresse: Nullable<string> | undefined, digipostZipCode: Nullable<string> | undefined, name: string, orgnr?: Nullable<string>, zipCode?: Nullable<string>);
|
|
8610
8610
|
get accountNumber(): Nullable<string>;
|
|
8611
8611
|
get area(): Nullable<string>;
|
|
8612
8612
|
get contactAddresse(): Nullable<string>;
|
|
8613
|
+
get digipostArea(): Nullable<string>;
|
|
8614
|
+
get digipostContactAddresse(): Nullable<string>;
|
|
8615
|
+
get digipostZipCode(): Nullable<string>;
|
|
8613
8616
|
get name(): string;
|
|
8614
8617
|
get orgnr(): Nullable<string>;
|
|
8615
8618
|
get zipCode(): Nullable<string>;
|
|
8616
|
-
copy(accountNumber?: Nullable<string>, area?: Nullable<string>, contactAddresse?: Nullable<string>, name?: string, orgnr?: Nullable<string>, zipCode?: Nullable<string>): InvoiceSubjectMeta;
|
|
8619
|
+
copy(accountNumber?: Nullable<string>, area?: Nullable<string>, contactAddresse?: Nullable<string>, digipostArea?: Nullable<string>, digipostContactAddresse?: Nullable<string>, digipostZipCode?: Nullable<string>, name?: string, orgnr?: Nullable<string>, zipCode?: Nullable<string>): InvoiceSubjectMeta;
|
|
8617
8620
|
toString(): string;
|
|
8618
8621
|
hashCode(): number;
|
|
8619
8622
|
equals(other: Nullable<any>): boolean;
|
|
@@ -12450,8 +12453,12 @@ export declare namespace PayeeType {
|
|
|
12450
12453
|
}
|
|
12451
12454
|
}
|
|
12452
12455
|
export declare class PayerInput {
|
|
12453
|
-
constructor(area: Nullable<string> | undefined, email: Nullable<string> | undefined, id: string, name: Nullable<string> | undefined, number: Nullable<string> | undefined, orgnr: Nullable<string> | undefined, overrideEHFRecipient: Nullable<string> | undefined, overridePersonnummer: Nullable<string> | undefined, preferredAdvertisement: Nullable<PreferredAdvertisement> | undefined, reservedEmail: boolean, reservedSMS: boolean, streetAdresse: Nullable<string> | undefined, type: PayerType, useFolkeregisteret?: Nullable<boolean>, zipCode?: Nullable<string>);
|
|
12456
|
+
constructor(area: Nullable<string> | undefined, digipostArea: Nullable<string> | undefined, digipostNumber: Nullable<string> | undefined, digipostStreetAdresse: Nullable<string> | undefined, digipostZipCode: Nullable<string> | undefined, email: Nullable<string> | undefined, id: string, name: Nullable<string> | undefined, number: Nullable<string> | undefined, orgnr: Nullable<string> | undefined, overrideEHFRecipient: Nullable<string> | undefined, overridePersonnummer: Nullable<string> | undefined, preferredAdvertisement: Nullable<PreferredAdvertisement> | undefined, reservedEmail: boolean, reservedSMS: boolean, streetAdresse: Nullable<string> | undefined, type: PayerType, useFolkeregisteret?: Nullable<boolean>, zipCode?: Nullable<string>);
|
|
12454
12457
|
get area(): Nullable<string>;
|
|
12458
|
+
get digipostArea(): Nullable<string>;
|
|
12459
|
+
get digipostNumber(): Nullable<string>;
|
|
12460
|
+
get digipostStreetAdresse(): Nullable<string>;
|
|
12461
|
+
get digipostZipCode(): Nullable<string>;
|
|
12455
12462
|
get email(): Nullable<string>;
|
|
12456
12463
|
get id(): string;
|
|
12457
12464
|
get name(): Nullable<string>;
|
|
@@ -12466,7 +12473,7 @@ export declare class PayerInput {
|
|
|
12466
12473
|
get type(): PayerType;
|
|
12467
12474
|
get useFolkeregisteret(): Nullable<boolean>;
|
|
12468
12475
|
get zipCode(): Nullable<string>;
|
|
12469
|
-
copy(area?: Nullable<string>, email?: Nullable<string>, id?: string, name?: Nullable<string>, number?: Nullable<string>, orgnr?: Nullable<string>, overrideEHFRecipient?: Nullable<string>, overridePersonnummer?: Nullable<string>, preferredAdvertisement?: Nullable<PreferredAdvertisement>, reservedEmail?: boolean, reservedSMS?: boolean, streetAdresse?: Nullable<string>, type?: PayerType, useFolkeregisteret?: Nullable<boolean>, zipCode?: Nullable<string>): PayerInput;
|
|
12476
|
+
copy(area?: Nullable<string>, digipostArea?: Nullable<string>, digipostNumber?: Nullable<string>, digipostStreetAdresse?: Nullable<string>, digipostZipCode?: Nullable<string>, email?: Nullable<string>, id?: string, name?: Nullable<string>, number?: Nullable<string>, orgnr?: Nullable<string>, overrideEHFRecipient?: Nullable<string>, overridePersonnummer?: Nullable<string>, preferredAdvertisement?: Nullable<PreferredAdvertisement>, reservedEmail?: boolean, reservedSMS?: boolean, streetAdresse?: Nullable<string>, type?: PayerType, useFolkeregisteret?: Nullable<boolean>, zipCode?: Nullable<string>): PayerInput;
|
|
12470
12477
|
toString(): string;
|
|
12471
12478
|
hashCode(): number;
|
|
12472
12479
|
equals(other: Nullable<any>): boolean;
|