@solibo/solibo-sdk 1.15.11 → 1.15.13
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 +98 -98
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- 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 +3 -3
- package/bitops-library-bits.mjs +33 -33
- package/bitops-library-endian.mjs +3 -3
- package/client.d.mts +49 -35
- package/client.mjs +20 -18
- package/core-library-digest.mjs +29 -29
- 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/hash-library-md.mjs +30 -30
- package/index.d.ts +1 -0
- package/index.mjs +40 -263
- package/kotlin-kotlin-stdlib.mjs +6 -6
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +8 -8
- 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-encoding.mjs.map +1 -1
- 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 +43729 -44495
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +404 -550
- package/solibo-sdk-sdk.mjs +4800 -4730
- package/solibo-sdk-sdk.mjs.map +1 -1
|
@@ -26,14 +26,14 @@ initMetadataForClass(PemContent, 'PemContent');
|
|
|
26
26
|
initMetadataForCompanion(Companion);
|
|
27
27
|
//endregion
|
|
28
28
|
function Pem() {
|
|
29
|
-
this.
|
|
30
|
-
this.
|
|
31
|
-
this.
|
|
29
|
+
this.t114_1 = '-----BEGIN ';
|
|
30
|
+
this.u114_1 = '-----END ';
|
|
31
|
+
this.v114_1 = '-----';
|
|
32
32
|
}
|
|
33
|
-
protoOf(Pem).
|
|
34
|
-
return this.
|
|
33
|
+
protoOf(Pem).w114 = function (bytes) {
|
|
34
|
+
return this.x114(decodeToString(bytes));
|
|
35
35
|
};
|
|
36
|
-
protoOf(Pem).
|
|
36
|
+
protoOf(Pem).x114 = function (string) {
|
|
37
37
|
var lines = split(string, ['\n']);
|
|
38
38
|
var tmp$ret$0;
|
|
39
39
|
$l$block: {
|
|
@@ -108,13 +108,13 @@ function Pem_getInstance() {
|
|
|
108
108
|
return Pem_instance;
|
|
109
109
|
}
|
|
110
110
|
function PemContent(label, bytes) {
|
|
111
|
-
this.
|
|
112
|
-
this.
|
|
111
|
+
this.y114_1 = label;
|
|
112
|
+
this.z114_1 = bytes;
|
|
113
113
|
}
|
|
114
114
|
function ensurePemLabel(_this__u8e3s4, label) {
|
|
115
115
|
// Inline function 'kotlin.check' call
|
|
116
|
-
if (!(_this__u8e3s4.
|
|
117
|
-
var message = 'Wrong PEM label, expected ' + PemLabel__toString_impl_auwpt1(label) + ', actual ' + PemLabel__toString_impl_auwpt1(_this__u8e3s4.
|
|
116
|
+
if (!(_this__u8e3s4.y114_1 === label)) {
|
|
117
|
+
var message = 'Wrong PEM label, expected ' + PemLabel__toString_impl_auwpt1(label) + ', actual ' + PemLabel__toString_impl_auwpt1(_this__u8e3s4.y114_1);
|
|
118
118
|
throw IllegalStateException_init_$Create$(toString(message));
|
|
119
119
|
}
|
|
120
120
|
return _this__u8e3s4;
|
|
@@ -124,11 +124,11 @@ function _PemLabel___init__impl__xifhtx(representation) {
|
|
|
124
124
|
}
|
|
125
125
|
function Companion() {
|
|
126
126
|
Companion_instance = this;
|
|
127
|
-
this.
|
|
128
|
-
this.
|
|
129
|
-
this.
|
|
130
|
-
this.
|
|
131
|
-
this.
|
|
127
|
+
this.a115_1 = _PemLabel___init__impl__xifhtx('PUBLIC KEY');
|
|
128
|
+
this.b115_1 = _PemLabel___init__impl__xifhtx('PRIVATE KEY');
|
|
129
|
+
this.c115_1 = _PemLabel___init__impl__xifhtx('RSA PUBLIC KEY');
|
|
130
|
+
this.d115_1 = _PemLabel___init__impl__xifhtx('RSA PRIVATE KEY');
|
|
131
|
+
this.e115_1 = _PemLabel___init__impl__xifhtx('EC PRIVATE KEY');
|
|
132
132
|
}
|
|
133
133
|
var Companion_instance;
|
|
134
134
|
function Companion_getInstance() {
|
package/hash-library-md.mjs
CHANGED
|
@@ -25,12 +25,12 @@ initMetadataForClass(MD5, 'MD5', MD5_init_$Create$, Digest);
|
|
|
25
25
|
function MD5_init_$Init$($this) {
|
|
26
26
|
Digest_init_$Init$('MD5', 64, 16, $this);
|
|
27
27
|
MD5.call($this);
|
|
28
|
-
$this.
|
|
28
|
+
$this.c11b_1 = new Int32Array(16);
|
|
29
29
|
var tmp = $this;
|
|
30
30
|
// Inline function 'kotlin.collections.copyOf' call
|
|
31
31
|
// Inline function 'kotlin.js.asDynamic' call
|
|
32
|
-
tmp.
|
|
33
|
-
$this.
|
|
32
|
+
tmp.d11b_1 = Companion_getInstance().g11b_1.slice();
|
|
33
|
+
$this.e11b_1 = Bit32_init_$Create$(64);
|
|
34
34
|
return $this;
|
|
35
35
|
}
|
|
36
36
|
function MD5_init_$Create$() {
|
|
@@ -38,16 +38,16 @@ function MD5_init_$Create$() {
|
|
|
38
38
|
}
|
|
39
39
|
function Companion() {
|
|
40
40
|
Companion_instance = this;
|
|
41
|
-
this.
|
|
41
|
+
this.f11b_1 = 64;
|
|
42
42
|
var tmp = this;
|
|
43
43
|
// Inline function 'kotlin.intArrayOf' call
|
|
44
|
-
tmp.
|
|
44
|
+
tmp.g11b_1 = new Int32Array([1732584193, -271733879, -1732584194, 271733878]);
|
|
45
45
|
var tmp_0 = this;
|
|
46
46
|
// Inline function 'kotlin.intArrayOf' call
|
|
47
|
-
tmp_0.
|
|
47
|
+
tmp_0.h11b_1 = new Int32Array([7, 12, 17, 22, 7, 12, 17, 22, 7, 12, 17, 22, 7, 12, 17, 22, 5, 9, 14, 20, 5, 9, 14, 20, 5, 9, 14, 20, 5, 9, 14, 20, 4, 11, 16, 23, 4, 11, 16, 23, 4, 11, 16, 23, 4, 11, 16, 23, 6, 10, 15, 21, 6, 10, 15, 21, 6, 10, 15, 21, 6, 10, 15, 21]);
|
|
48
48
|
var tmp_1 = this;
|
|
49
49
|
// Inline function 'kotlin.intArrayOf' call
|
|
50
|
-
tmp_1.
|
|
50
|
+
tmp_1.i11b_1 = new Int32Array([-680876936, -389564586, 606105819, -1044525330, -176418897, 1200080426, -1473231341, -45705983, 1770035416, -1958414417, -42063, -1990404162, 1804603682, -40341101, -1502002290, 1236535329, -165796510, -1069501632, 643717713, -373897302, -701558691, 38016083, -660478335, -405537848, 568446438, -1019803690, -187363961, 1163531501, -1444681467, -51403784, 1735328473, -1926607734, -378558, -2022574463, 1839030562, -35309556, -1530992060, 1272893353, -155497632, -1094730640, 681279174, -358537222, -722521979, 76029189, -640364487, -421815835, 530742520, -995338651, -198630844, 1126891415, -1416354905, -57434055, 1700485571, -1894986606, -1051523, -2054922799, 1873313359, -30611744, -1560198380, 1309151649, -145523070, -1120210379, 718787259, -343485551]);
|
|
51
51
|
}
|
|
52
52
|
var Companion_instance;
|
|
53
53
|
function Companion_getInstance() {
|
|
@@ -55,11 +55,11 @@ function Companion_getInstance() {
|
|
|
55
55
|
new Companion();
|
|
56
56
|
return Companion_instance;
|
|
57
57
|
}
|
|
58
|
-
protoOf(MD5).
|
|
59
|
-
var k = Companion_getInstance().
|
|
60
|
-
var s = Companion_getInstance().
|
|
61
|
-
var x = this.
|
|
62
|
-
var state = this.
|
|
58
|
+
protoOf(MD5).y119 = function (input, offset) {
|
|
59
|
+
var k = Companion_getInstance().i11b_1;
|
|
60
|
+
var s = Companion_getInstance().h11b_1;
|
|
61
|
+
var x = this.c11b_1;
|
|
62
|
+
var state = this.d11b_1;
|
|
63
63
|
var a = state[0];
|
|
64
64
|
var b = state[1];
|
|
65
65
|
var c = state[2];
|
|
@@ -72,7 +72,7 @@ protoOf(MD5).s11a = function (input, offset) {
|
|
|
72
72
|
Little_getInstance();
|
|
73
73
|
// Inline function 'org.kotlincrypto.bitops.endian.Little.leIntAt' call
|
|
74
74
|
var offset_0 = imul(i, 4) + offset | 0;
|
|
75
|
-
var xi = Little_getInstance().
|
|
75
|
+
var xi = Little_getInstance().v11a(input, offset_0);
|
|
76
76
|
x[i] = xi;
|
|
77
77
|
var f = (((b & c | ~b & d) + a | 0) + k[i] | 0) + xi | 0;
|
|
78
78
|
a = d;
|
|
@@ -124,40 +124,40 @@ protoOf(MD5).s11a = function (input, offset) {
|
|
|
124
124
|
state[1] = state[1] + b | 0;
|
|
125
125
|
state[2] = state[2] + c | 0;
|
|
126
126
|
state[3] = state[3] + d | 0;
|
|
127
|
-
this.
|
|
127
|
+
this.e11b_1.k11a();
|
|
128
128
|
};
|
|
129
|
-
protoOf(MD5).
|
|
130
|
-
var digest = new Int8Array(this.
|
|
131
|
-
this.
|
|
129
|
+
protoOf(MD5).z119 = function (buf, bufPos) {
|
|
130
|
+
var digest = new Int8Array(this.r119());
|
|
131
|
+
this.w119(digest, 0, buf, bufPos);
|
|
132
132
|
return digest;
|
|
133
133
|
};
|
|
134
|
-
protoOf(MD5).
|
|
135
|
-
var tmp0_container = this.
|
|
134
|
+
protoOf(MD5).w119 = function (dest, destOffset, buf, bufPos) {
|
|
135
|
+
var tmp0_container = this.e11b_1.l11a(bufPos).i11a();
|
|
136
136
|
var bitsLo = tmp0_container.ch();
|
|
137
137
|
var bitsHi = tmp0_container.dh();
|
|
138
138
|
buf[bufPos] = -128;
|
|
139
139
|
if ((bufPos + 1 | 0) > 56) {
|
|
140
|
-
this.
|
|
140
|
+
this.y119(buf, 0);
|
|
141
141
|
fill(buf, 0, 0, 56);
|
|
142
142
|
}
|
|
143
143
|
// Inline function 'org.kotlincrypto.bitops.endian.Little.lePackIntoUnsafe' call
|
|
144
144
|
Little_getInstance();
|
|
145
|
-
Little_getInstance().
|
|
145
|
+
Little_getInstance().w11a(bitsLo, buf, 56);
|
|
146
146
|
// Inline function 'org.kotlincrypto.bitops.endian.Little.lePackIntoUnsafe' call
|
|
147
147
|
Little_getInstance();
|
|
148
|
-
Little_getInstance().
|
|
149
|
-
this.
|
|
148
|
+
Little_getInstance().w11a(bitsHi, buf, 60);
|
|
149
|
+
this.y119(buf, 0);
|
|
150
150
|
Little_getInstance();
|
|
151
151
|
// Inline function 'org.kotlincrypto.bitops.endian.Little.lePackIntoUnsafe' call
|
|
152
|
-
var this_0 = this.
|
|
152
|
+
var this_0 = this.d11b_1;
|
|
153
153
|
var sourceIndexEnd = this_0.length;
|
|
154
|
-
Little_getInstance().
|
|
154
|
+
Little_getInstance().x11a(this_0, dest, destOffset, 0, sourceIndexEnd);
|
|
155
155
|
};
|
|
156
|
-
protoOf(MD5).
|
|
157
|
-
fill_0(this.
|
|
158
|
-
var tmp0 = Companion_getInstance().
|
|
156
|
+
protoOf(MD5).x119 = function () {
|
|
157
|
+
fill_0(this.c11b_1, 0);
|
|
158
|
+
var tmp0 = Companion_getInstance().g11b_1;
|
|
159
159
|
// Inline function 'kotlin.collections.copyInto' call
|
|
160
|
-
var destination = this.
|
|
160
|
+
var destination = this.d11b_1;
|
|
161
161
|
var endIndex = tmp0.length;
|
|
162
162
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
163
163
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -165,7 +165,7 @@ protoOf(MD5).r11a = function () {
|
|
|
165
165
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
166
166
|
// Inline function 'kotlin.js.asDynamic' call
|
|
167
167
|
arrayCopy(tmp, destination, 0, 0, endIndex);
|
|
168
|
-
this.
|
|
168
|
+
this.e11b_1.m11a();
|
|
169
169
|
};
|
|
170
170
|
function MD5() {
|
|
171
171
|
Companion_getInstance();
|
package/index.d.ts
CHANGED
package/index.mjs
CHANGED
|
@@ -65,271 +65,47 @@ import {
|
|
|
65
65
|
}
|
|
66
66
|
})();
|
|
67
67
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
68
|
+
/** Preserve Kotlin enum instances and wire names while exposing both JS member styles. */
|
|
69
|
+
function enumMemberAliases(name) {
|
|
70
|
+
const words = name
|
|
71
|
+
.replace(/([A-Z]+)([A-Z][a-z])/g, '$1_$2')
|
|
72
|
+
.replace(/([a-z0-9])([A-Z])/g, '$1_$2')
|
|
73
|
+
.split('_')
|
|
74
|
+
.filter(Boolean);
|
|
75
|
+
return [...new Set([
|
|
76
|
+
words.join('_').toUpperCase(),
|
|
77
|
+
words.map(word => word[0].toUpperCase() + word.slice(1).toLowerCase()).join(''),
|
|
78
|
+
])].filter(alias => alias && alias !== name);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/** Walk exported classes/namespaces without evaluating unrelated static getters. */
|
|
82
|
+
function addEnumAliases(exports, visited = new Set()) {
|
|
83
|
+
if (!exports || !['object', 'function'].includes(typeof exports) || visited.has(exports)) return;
|
|
84
|
+
visited.add(exports);
|
|
85
|
+
if (Object.hasOwn(exports, 'values') && Object.hasOwn(exports, 'valueOf') &&
|
|
86
|
+
typeof exports.values === 'function' && typeof exports.valueOf === 'function') {
|
|
87
|
+
for (const value of exports.values()) {
|
|
88
|
+
for (const alias of enumMemberAliases(value.name)) {
|
|
89
|
+
if (alias in exports) {
|
|
90
|
+
if (exports[alias] !== value) throw new Error(`Enum alias ${alias} conflicts with ${value.name}`);
|
|
91
|
+
continue;
|
|
84
92
|
}
|
|
85
|
-
|
|
93
|
+
Object.defineProperty(exports, alias, { get: () => value, enumerable: true, configurable: true });
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
return;
|
|
97
|
+
}
|
|
98
|
+
for (const [key, descriptor] of Object.entries(Object.getOwnPropertyDescriptors(exports))) {
|
|
99
|
+
if (!/^[A-Za-z]/.test(key) || ['prototype', 'constructor'].includes(key)) continue;
|
|
100
|
+
// Kotlin exports nested enum classes as data properties on their owning class.
|
|
101
|
+
if ('value' in descriptor) addEnumAliases(descriptor.value, visited);
|
|
102
|
+
}
|
|
86
103
|
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
BulkCreateIssueItemStatus as _Enum_BulkCreateIssueItemStatus,
|
|
93
|
-
BulkCreateMeetingItemStatus as _Enum_BulkCreateMeetingItemStatus,
|
|
94
|
-
BulkCreateNewsletterItemStatus as _Enum_BulkCreateNewsletterItemStatus,
|
|
95
|
-
BulkCreateSMSBroadcastItemStatus as _Enum_BulkCreateSMSBroadcastItemStatus,
|
|
96
|
-
BulkImportTaskItemStatus as _Enum_BulkImportTaskItemStatus,
|
|
97
|
-
BulkPublishNewsletterItemStatus as _Enum_BulkPublishNewsletterItemStatus,
|
|
98
|
-
BulkPublishSMSBroadcastItemStatus as _Enum_BulkPublishSMSBroadcastItemStatus,
|
|
99
|
-
BulkRetroactiveKartverketItemStatus as _Enum_BulkRetroactiveKartverketItemStatus,
|
|
100
|
-
BulkUpdateCompanyDetailedItemStatus as _Enum_BulkUpdateCompanyDetailedItemStatus,
|
|
101
|
-
CategoryColor as _Enum_CategoryColor,
|
|
102
|
-
ChannelType as _Enum_ChannelType,
|
|
103
|
-
ClientUserCompanyScope as _Enum_ClientUserCompanyScope,
|
|
104
|
-
CollectionHandoff as _Enum_CollectionHandoff,
|
|
105
|
-
CommunicationCommentStatus as _Enum_CommunicationCommentStatus,
|
|
106
|
-
CommunicationMessageType as _Enum_CommunicationMessageType,
|
|
107
|
-
CommunicationModerationStatus as _Enum_CommunicationModerationStatus,
|
|
108
|
-
CommunicationRecipientType as _Enum_CommunicationRecipientType,
|
|
109
|
-
CommunicationState as _Enum_CommunicationState,
|
|
110
|
-
CommunicationType as _Enum_CommunicationType,
|
|
111
|
-
CompanyStatus as _Enum_CompanyStatus,
|
|
112
|
-
CompanySubType as _Enum_CompanySubType,
|
|
113
|
-
ContactSource as _Enum_ContactSource,
|
|
114
|
-
ConversationEventType as _Enum_ConversationEventType,
|
|
115
|
-
ConversationMessageSide as _Enum_ConversationMessageSide,
|
|
116
|
-
ConversationOrderBy as _Enum_ConversationOrderBy,
|
|
117
|
-
ConversationOrderDirection as _Enum_ConversationOrderDirection,
|
|
118
|
-
ConversationPushFallbackCadencePreset as _Enum_ConversationPushFallbackCadencePreset,
|
|
119
|
-
ConversationStatus as _Enum_ConversationStatus,
|
|
120
|
-
CustomerClassification as _Enum_CustomerClassification,
|
|
121
|
-
CustomerType as _Enum_CustomerType,
|
|
122
|
-
DialogActivityType as _Enum_DialogActivityType,
|
|
123
|
-
DialogStatus as _Enum_DialogStatus,
|
|
124
|
-
DialogSystemLabel as _Enum_DialogSystemLabel,
|
|
125
|
-
DirectSendInvoiceChannel as _Enum_DirectSendInvoiceChannel,
|
|
126
|
-
DirectSendInvoiceDocument as _Enum_DirectSendInvoiceDocument,
|
|
127
|
-
DocumentContentSearchBackfillReason as _Enum_DocumentContentSearchBackfillReason,
|
|
128
|
-
DocumentContentSearchBackfillStatus as _Enum_DocumentContentSearchBackfillStatus,
|
|
129
|
-
DocumentType as _Enum_DocumentType,
|
|
130
|
-
EconomicReportStatus as _Enum_EconomicReportStatus,
|
|
131
|
-
EconomicReportType as _Enum_EconomicReportType,
|
|
132
|
-
EconomyStatusAvailability as _Enum_EconomyStatusAvailability,
|
|
133
|
-
Errors as _Enum_Errors,
|
|
134
|
-
ExpenseProcessingResult as _Enum_ExpenseProcessingResult,
|
|
135
|
-
ExpenseStatus as _Enum_ExpenseStatus,
|
|
136
|
-
ExpiredType as _Enum_ExpiredType,
|
|
137
|
-
FcmDeviceType as _Enum_FcmDeviceType,
|
|
138
|
-
FractionRecipientType as _Enum_FractionRecipientType,
|
|
139
|
-
FractionType as _Enum_FractionType,
|
|
140
|
-
InlineDistributionType as _Enum_InlineDistributionType,
|
|
141
|
-
IntegratedDocumentRole as _Enum_IntegratedDocumentRole,
|
|
142
|
-
InvoiceDistributionReceiverType as _Enum_InvoiceDistributionReceiverType,
|
|
143
|
-
InvoiceDistributionType as _Enum_InvoiceDistributionType,
|
|
144
|
-
InvoicePlanInterval as _Enum_InvoicePlanInterval,
|
|
145
|
-
InvoicePlanMode as _Enum_InvoicePlanMode,
|
|
146
|
-
InvoicePlanType as _Enum_InvoicePlanType,
|
|
147
|
-
InvoiceProcessType as _Enum_InvoiceProcessType,
|
|
148
|
-
InvoiceState as _Enum_InvoiceState,
|
|
149
|
-
InvoiceType as _Enum_InvoiceType,
|
|
150
|
-
IssueStatus as _Enum_IssueStatus,
|
|
151
|
-
JobState as _Enum_JobState,
|
|
152
|
-
KartverketFetchState as _Enum_KartverketFetchState,
|
|
153
|
-
LOANLOGTYPE as _Enum_LOANLOGTYPE,
|
|
154
|
-
LeveranseType3po as _Enum_LeveranseType3po,
|
|
155
|
-
MeetingStatus as _Enum_MeetingStatus,
|
|
156
|
-
MessageOrigin as _Enum_MessageOrigin,
|
|
157
|
-
MessageType as _Enum_MessageType,
|
|
158
|
-
MfaType as _Enum_MfaType,
|
|
159
|
-
NeighborhoodGroupStatus as _Enum_NeighborhoodGroupStatus,
|
|
160
|
-
NeighborhoodPostStatus as _Enum_NeighborhoodPostStatus,
|
|
161
|
-
NotificationGroupType as _Enum_NotificationGroupType,
|
|
162
|
-
Office365EditSessionActorKind as _Enum_Office365EditSessionActorKind,
|
|
163
|
-
OrderType as _Enum_OrderType,
|
|
164
|
-
OverdueNoticeOrder as _Enum_OverdueNoticeOrder,
|
|
165
|
-
OverdueOwner as _Enum_OverdueOwner,
|
|
166
|
-
ParkingSpaceAllocationStatus as _Enum_ParkingSpaceAllocationStatus,
|
|
167
|
-
ParkingSpaceOwnerType as _Enum_ParkingSpaceOwnerType,
|
|
168
|
-
ParkingSpaceType as _Enum_ParkingSpaceType,
|
|
169
|
-
ParticipantType as _Enum_ParticipantType,
|
|
170
|
-
PayeeType as _Enum_PayeeType,
|
|
171
|
-
PayerType as _Enum_PayerType,
|
|
172
|
-
PaymentHandlingStatus as _Enum_PaymentHandlingStatus,
|
|
173
|
-
PeriodicTaskIntervalMethod as _Enum_PeriodicTaskIntervalMethod,
|
|
174
|
-
PeriodicTaskIntervalType as _Enum_PeriodicTaskIntervalType,
|
|
175
|
-
PersonStatus as _Enum_PersonStatus,
|
|
176
|
-
PolicyEffect as _Enum_PolicyEffect,
|
|
177
|
-
PreferredAdvertisement as _Enum_PreferredAdvertisement,
|
|
178
|
-
PushNotificationProviderStatus as _Enum_PushNotificationProviderStatus,
|
|
179
|
-
PushNotificationRecipientKind as _Enum_PushNotificationRecipientKind,
|
|
180
|
-
PushNotificationResolutionSource as _Enum_PushNotificationResolutionSource,
|
|
181
|
-
PushNotificationResolutionStatus as _Enum_PushNotificationResolutionStatus,
|
|
182
|
-
RelationType as _Enum_RelationType,
|
|
183
|
-
ResidentType as _Enum_ResidentType,
|
|
184
|
-
RoleType as _Enum_RoleType,
|
|
185
|
-
RoutineInterval as _Enum_RoutineInterval,
|
|
186
|
-
RoutineMethod as _Enum_RoutineMethod,
|
|
187
|
-
RoutineType as _Enum_RoutineType,
|
|
188
|
-
Rsvp as _Enum_Rsvp,
|
|
189
|
-
SearchMatchField as _Enum_SearchMatchField,
|
|
190
|
-
SearchMatchQuality as _Enum_SearchMatchQuality,
|
|
191
|
-
SectionDeletionReason as _Enum_SectionDeletionReason,
|
|
192
|
-
SectionOnboardingStatus as _Enum_SectionOnboardingStatus,
|
|
193
|
-
SectionState as _Enum_SectionState,
|
|
194
|
-
SectionStatusOperation as _Enum_SectionStatusOperation,
|
|
195
|
-
SectionType as _Enum_SectionType,
|
|
196
|
-
SettlementCostKind as _Enum_SettlementCostKind,
|
|
197
|
-
SettlementProvider as _Enum_SettlementProvider,
|
|
198
|
-
SettlementType as _Enum_SettlementType,
|
|
199
|
-
StorageRoomAllocationStatus as _Enum_StorageRoomAllocationStatus,
|
|
200
|
-
StorageRoomOwnerType as _Enum_StorageRoomOwnerType,
|
|
201
|
-
SupplierInvoiceProcessingResult as _Enum_SupplierInvoiceProcessingResult,
|
|
202
|
-
SupplierInvoiceStatus as _Enum_SupplierInvoiceStatus,
|
|
203
|
-
TaskEventType as _Enum_TaskEventType,
|
|
204
|
-
TenantType as _Enum_TenantType,
|
|
205
|
-
TransmissionDialogType as _Enum_TransmissionDialogType,
|
|
206
|
-
RequestMethod as _Enum_RequestMethod,
|
|
207
|
-
} from './solibo-sdk-sdk-home-api.mjs';
|
|
208
|
-
import {
|
|
209
|
-
AuthMode as _Enum_AuthMode,
|
|
210
|
-
LoginType as _Enum_LoginType,
|
|
211
|
-
} from './solibo-sdk-sdk.mjs';
|
|
212
|
-
_addPascalEnumAliases(_Enum_AuthChallengeType);
|
|
213
|
-
_addPascalEnumAliases(_Enum_BulkCreateConversationItemStatus);
|
|
214
|
-
_addPascalEnumAliases(_Enum_BulkCreateHomepagePostItemStatus);
|
|
215
|
-
_addPascalEnumAliases(_Enum_BulkCreateHomepagePracticalInfoItemStatus);
|
|
216
|
-
_addPascalEnumAliases(_Enum_BulkCreateIssueItemStatus);
|
|
217
|
-
_addPascalEnumAliases(_Enum_BulkCreateMeetingItemStatus);
|
|
218
|
-
_addPascalEnumAliases(_Enum_BulkCreateNewsletterItemStatus);
|
|
219
|
-
_addPascalEnumAliases(_Enum_BulkCreateSMSBroadcastItemStatus);
|
|
220
|
-
_addPascalEnumAliases(_Enum_BulkImportTaskItemStatus);
|
|
221
|
-
_addPascalEnumAliases(_Enum_BulkPublishNewsletterItemStatus);
|
|
222
|
-
_addPascalEnumAliases(_Enum_BulkPublishSMSBroadcastItemStatus);
|
|
223
|
-
_addPascalEnumAliases(_Enum_BulkRetroactiveKartverketItemStatus);
|
|
224
|
-
_addPascalEnumAliases(_Enum_BulkUpdateCompanyDetailedItemStatus);
|
|
225
|
-
_addPascalEnumAliases(_Enum_CategoryColor);
|
|
226
|
-
_addPascalEnumAliases(_Enum_ChannelType);
|
|
227
|
-
_addPascalEnumAliases(_Enum_ClientUserCompanyScope);
|
|
228
|
-
_addPascalEnumAliases(_Enum_CollectionHandoff);
|
|
229
|
-
_addPascalEnumAliases(_Enum_CommunicationCommentStatus);
|
|
230
|
-
_addPascalEnumAliases(_Enum_CommunicationMessageType);
|
|
231
|
-
_addPascalEnumAliases(_Enum_CommunicationModerationStatus);
|
|
232
|
-
_addPascalEnumAliases(_Enum_CommunicationRecipientType);
|
|
233
|
-
_addPascalEnumAliases(_Enum_CommunicationState);
|
|
234
|
-
_addPascalEnumAliases(_Enum_CommunicationType);
|
|
235
|
-
_addPascalEnumAliases(_Enum_CompanyStatus);
|
|
236
|
-
_addPascalEnumAliases(_Enum_CompanySubType);
|
|
237
|
-
_addPascalEnumAliases(_Enum_ContactSource);
|
|
238
|
-
_addPascalEnumAliases(_Enum_ConversationEventType);
|
|
239
|
-
_addPascalEnumAliases(_Enum_ConversationMessageSide);
|
|
240
|
-
_addPascalEnumAliases(_Enum_ConversationOrderBy);
|
|
241
|
-
_addPascalEnumAliases(_Enum_ConversationOrderDirection);
|
|
242
|
-
_addPascalEnumAliases(_Enum_ConversationPushFallbackCadencePreset);
|
|
243
|
-
_addPascalEnumAliases(_Enum_ConversationStatus);
|
|
244
|
-
_addPascalEnumAliases(_Enum_CustomerClassification);
|
|
245
|
-
_addPascalEnumAliases(_Enum_CustomerType);
|
|
246
|
-
_addPascalEnumAliases(_Enum_DialogActivityType);
|
|
247
|
-
_addPascalEnumAliases(_Enum_DialogStatus);
|
|
248
|
-
_addPascalEnumAliases(_Enum_DialogSystemLabel);
|
|
249
|
-
_addPascalEnumAliases(_Enum_DirectSendInvoiceChannel);
|
|
250
|
-
_addPascalEnumAliases(_Enum_DirectSendInvoiceDocument);
|
|
251
|
-
_addPascalEnumAliases(_Enum_DocumentContentSearchBackfillReason);
|
|
252
|
-
_addPascalEnumAliases(_Enum_DocumentContentSearchBackfillStatus);
|
|
253
|
-
_addPascalEnumAliases(_Enum_DocumentType);
|
|
254
|
-
_addPascalEnumAliases(_Enum_EconomicReportStatus);
|
|
255
|
-
_addPascalEnumAliases(_Enum_EconomicReportType);
|
|
256
|
-
_addPascalEnumAliases(_Enum_EconomyStatusAvailability);
|
|
257
|
-
_addPascalEnumAliases(_Enum_Errors);
|
|
258
|
-
_addPascalEnumAliases(_Enum_ExpenseProcessingResult);
|
|
259
|
-
_addPascalEnumAliases(_Enum_ExpenseStatus);
|
|
260
|
-
_addPascalEnumAliases(_Enum_ExpiredType);
|
|
261
|
-
_addPascalEnumAliases(_Enum_FcmDeviceType);
|
|
262
|
-
_addPascalEnumAliases(_Enum_FractionRecipientType);
|
|
263
|
-
_addPascalEnumAliases(_Enum_FractionType);
|
|
264
|
-
_addPascalEnumAliases(_Enum_InlineDistributionType);
|
|
265
|
-
_addPascalEnumAliases(_Enum_IntegratedDocumentRole);
|
|
266
|
-
_addPascalEnumAliases(_Enum_InvoiceDistributionReceiverType);
|
|
267
|
-
_addPascalEnumAliases(_Enum_InvoiceDistributionType);
|
|
268
|
-
_addPascalEnumAliases(_Enum_InvoicePlanInterval);
|
|
269
|
-
_addPascalEnumAliases(_Enum_InvoicePlanMode);
|
|
270
|
-
_addPascalEnumAliases(_Enum_InvoicePlanType);
|
|
271
|
-
_addPascalEnumAliases(_Enum_InvoiceProcessType);
|
|
272
|
-
_addPascalEnumAliases(_Enum_InvoiceState);
|
|
273
|
-
_addPascalEnumAliases(_Enum_InvoiceType);
|
|
274
|
-
_addPascalEnumAliases(_Enum_IssueStatus);
|
|
275
|
-
_addPascalEnumAliases(_Enum_JobState);
|
|
276
|
-
_addPascalEnumAliases(_Enum_KartverketFetchState);
|
|
277
|
-
_addPascalEnumAliases(_Enum_LOANLOGTYPE);
|
|
278
|
-
_addPascalEnumAliases(_Enum_LeveranseType3po);
|
|
279
|
-
_addPascalEnumAliases(_Enum_MeetingStatus);
|
|
280
|
-
_addPascalEnumAliases(_Enum_MessageOrigin);
|
|
281
|
-
_addPascalEnumAliases(_Enum_MessageType);
|
|
282
|
-
_addPascalEnumAliases(_Enum_MfaType);
|
|
283
|
-
_addPascalEnumAliases(_Enum_NeighborhoodGroupStatus);
|
|
284
|
-
_addPascalEnumAliases(_Enum_NeighborhoodPostStatus);
|
|
285
|
-
_addPascalEnumAliases(_Enum_NotificationGroupType);
|
|
286
|
-
_addPascalEnumAliases(_Enum_Office365EditSessionActorKind);
|
|
287
|
-
_addPascalEnumAliases(_Enum_OrderType);
|
|
288
|
-
_addPascalEnumAliases(_Enum_OverdueNoticeOrder);
|
|
289
|
-
_addPascalEnumAliases(_Enum_OverdueOwner);
|
|
290
|
-
_addPascalEnumAliases(_Enum_ParkingSpaceAllocationStatus);
|
|
291
|
-
_addPascalEnumAliases(_Enum_ParkingSpaceOwnerType);
|
|
292
|
-
_addPascalEnumAliases(_Enum_ParkingSpaceType);
|
|
293
|
-
_addPascalEnumAliases(_Enum_ParticipantType);
|
|
294
|
-
_addPascalEnumAliases(_Enum_PayeeType);
|
|
295
|
-
_addPascalEnumAliases(_Enum_PayerType);
|
|
296
|
-
_addPascalEnumAliases(_Enum_PaymentHandlingStatus);
|
|
297
|
-
_addPascalEnumAliases(_Enum_PeriodicTaskIntervalMethod);
|
|
298
|
-
_addPascalEnumAliases(_Enum_PeriodicTaskIntervalType);
|
|
299
|
-
_addPascalEnumAliases(_Enum_PersonStatus);
|
|
300
|
-
_addPascalEnumAliases(_Enum_PolicyEffect);
|
|
301
|
-
_addPascalEnumAliases(_Enum_PreferredAdvertisement);
|
|
302
|
-
_addPascalEnumAliases(_Enum_PushNotificationProviderStatus);
|
|
303
|
-
_addPascalEnumAliases(_Enum_PushNotificationRecipientKind);
|
|
304
|
-
_addPascalEnumAliases(_Enum_PushNotificationResolutionSource);
|
|
305
|
-
_addPascalEnumAliases(_Enum_PushNotificationResolutionStatus);
|
|
306
|
-
_addPascalEnumAliases(_Enum_RelationType);
|
|
307
|
-
_addPascalEnumAliases(_Enum_ResidentType);
|
|
308
|
-
_addPascalEnumAliases(_Enum_RoleType);
|
|
309
|
-
_addPascalEnumAliases(_Enum_RoutineInterval);
|
|
310
|
-
_addPascalEnumAliases(_Enum_RoutineMethod);
|
|
311
|
-
_addPascalEnumAliases(_Enum_RoutineType);
|
|
312
|
-
_addPascalEnumAliases(_Enum_Rsvp);
|
|
313
|
-
_addPascalEnumAliases(_Enum_SearchMatchField);
|
|
314
|
-
_addPascalEnumAliases(_Enum_SearchMatchQuality);
|
|
315
|
-
_addPascalEnumAliases(_Enum_SectionDeletionReason);
|
|
316
|
-
_addPascalEnumAliases(_Enum_SectionOnboardingStatus);
|
|
317
|
-
_addPascalEnumAliases(_Enum_SectionState);
|
|
318
|
-
_addPascalEnumAliases(_Enum_SectionStatusOperation);
|
|
319
|
-
_addPascalEnumAliases(_Enum_SectionType);
|
|
320
|
-
_addPascalEnumAliases(_Enum_SettlementCostKind);
|
|
321
|
-
_addPascalEnumAliases(_Enum_SettlementProvider);
|
|
322
|
-
_addPascalEnumAliases(_Enum_SettlementType);
|
|
323
|
-
_addPascalEnumAliases(_Enum_StorageRoomAllocationStatus);
|
|
324
|
-
_addPascalEnumAliases(_Enum_StorageRoomOwnerType);
|
|
325
|
-
_addPascalEnumAliases(_Enum_SupplierInvoiceProcessingResult);
|
|
326
|
-
_addPascalEnumAliases(_Enum_SupplierInvoiceStatus);
|
|
327
|
-
_addPascalEnumAliases(_Enum_TaskEventType);
|
|
328
|
-
_addPascalEnumAliases(_Enum_TenantType);
|
|
329
|
-
_addPascalEnumAliases(_Enum_TransmissionDialogType);
|
|
330
|
-
_addPascalEnumAliases(_Enum_RequestMethod);
|
|
331
|
-
_addPascalEnumAliases(_Enum_AuthMode);
|
|
332
|
-
_addPascalEnumAliases(_Enum_LoginType);
|
|
104
|
+
|
|
105
|
+
import * as _enumHomeApiExports from './solibo-sdk-sdk-home-api.mjs';
|
|
106
|
+
import * as _enumSdkExports from './solibo-sdk-sdk.mjs';
|
|
107
|
+
addEnumAliases(_enumHomeApiExports);
|
|
108
|
+
addEnumAliases(_enumSdkExports);
|
|
333
109
|
|
|
334
110
|
|
|
335
111
|
export {
|
|
@@ -341,4 +117,5 @@ export {
|
|
|
341
117
|
};
|
|
342
118
|
// <solibo-js-facade>
|
|
343
119
|
export * from './client.mjs';
|
|
120
|
+
export { ResidentDiscriminator } from './client.mjs';
|
|
344
121
|
// </solibo-js-facade>
|
package/kotlin-kotlin-stdlib.mjs
CHANGED
|
@@ -64,12 +64,6 @@ if (typeof Math.trunc === 'undefined') {
|
|
|
64
64
|
return Math.ceil(x);
|
|
65
65
|
};
|
|
66
66
|
}
|
|
67
|
-
if (typeof String.prototype.startsWith === 'undefined') {
|
|
68
|
-
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
69
|
-
position = position || 0;
|
|
70
|
-
return this.lastIndexOf(searchString, position) === position;
|
|
71
|
-
}});
|
|
72
|
-
}
|
|
73
67
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
74
68
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
75
69
|
var subjectString = this.toString();
|
|
@@ -81,6 +75,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
81
75
|
return lastIndex !== -1 && lastIndex === position;
|
|
82
76
|
}});
|
|
83
77
|
}
|
|
78
|
+
if (typeof String.prototype.startsWith === 'undefined') {
|
|
79
|
+
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
80
|
+
position = position || 0;
|
|
81
|
+
return this.lastIndexOf(searchString, position) === position;
|
|
82
|
+
}});
|
|
83
|
+
}
|
|
84
84
|
//endregion
|
|
85
85
|
//region block: imports
|
|
86
86
|
var imul_0 = Math.imul;
|