@solibo/home-api 1.7.75 → 1.7.76-c47ff2e-1783609930666-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
CHANGED
|
@@ -37,17 +37,6 @@ if (typeof Array.prototype.fill === 'undefined') {
|
|
|
37
37
|
Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
|
|
38
38
|
}
|
|
39
39
|
});
|
|
40
|
-
if (typeof Math.clz32 === 'undefined') {
|
|
41
|
-
Math.clz32 = function (log, LN2) {
|
|
42
|
-
return function (x) {
|
|
43
|
-
var asUint = x >>> 0;
|
|
44
|
-
if (asUint === 0) {
|
|
45
|
-
return 32;
|
|
46
|
-
}
|
|
47
|
-
return 31 - (log(asUint) / LN2 | 0) | 0; // the "| 0" acts like math.floor
|
|
48
|
-
};
|
|
49
|
-
}(Math.log, Math.LN2);
|
|
50
|
-
}
|
|
51
40
|
if (typeof Math.trunc === 'undefined') {
|
|
52
41
|
Math.trunc = function (x) {
|
|
53
42
|
if (isNaN(x)) {
|
|
@@ -59,6 +48,17 @@ if (typeof Math.trunc === 'undefined') {
|
|
|
59
48
|
return Math.ceil(x);
|
|
60
49
|
};
|
|
61
50
|
}
|
|
51
|
+
if (typeof Math.clz32 === 'undefined') {
|
|
52
|
+
Math.clz32 = function (log, LN2) {
|
|
53
|
+
return function (x) {
|
|
54
|
+
var asUint = x >>> 0;
|
|
55
|
+
if (asUint === 0) {
|
|
56
|
+
return 32;
|
|
57
|
+
}
|
|
58
|
+
return 31 - (log(asUint) / LN2 | 0) | 0; // the "| 0" acts like math.floor
|
|
59
|
+
};
|
|
60
|
+
}(Math.log, Math.LN2);
|
|
61
|
+
}
|
|
62
62
|
if (typeof String.prototype.startsWith === 'undefined') {
|
|
63
63
|
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
64
64
|
position = position || 0;
|
|
@@ -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
|
@@ -167232,7 +167232,7 @@ protoOf(OAuth).s9a = function (query, headers) {
|
|
|
167232
167232
|
headers.s2(tmp2, value);
|
|
167233
167233
|
};
|
|
167234
167234
|
function AppStoresApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
167235
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
167235
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
167236
167236
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
167237
167237
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
167238
167238
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -167381,7 +167381,7 @@ protoOf(AppStoresApi).w9b = function ($completion) {
|
|
|
167381
167381
|
function AppStoresApi() {
|
|
167382
167382
|
}
|
|
167383
167383
|
function AuthApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
167384
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
167384
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
167385
167385
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
167386
167386
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
167387
167387
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -171441,7 +171441,7 @@ protoOf(AuthApi).za3 = function (verifyMfaCommand, $completion) {
|
|
|
171441
171441
|
function AuthApi() {
|
|
171442
171442
|
}
|
|
171443
171443
|
function BoardApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
171444
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
171444
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
171445
171445
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
171446
171446
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
171447
171447
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -172275,7 +172275,7 @@ protoOf(BoardApi).wa9 = function (companyId, personId, fields, $completion) {
|
|
|
172275
172275
|
function BoardApi() {
|
|
172276
172276
|
}
|
|
172277
172277
|
function CommunicationApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
172278
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
172278
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
172279
172279
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
172280
172280
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
172281
172281
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -176733,7 +176733,7 @@ function Companion_getInstance_765() {
|
|
|
176733
176733
|
return Companion_instance_762;
|
|
176734
176734
|
}
|
|
176735
176735
|
function CompanyApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
176736
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
176736
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
176737
176737
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
176738
176738
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
176739
176739
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -181540,7 +181540,7 @@ function Companion_getInstance_770() {
|
|
|
181540
181540
|
return Companion_instance_767;
|
|
181541
181541
|
}
|
|
181542
181542
|
function ConversationApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
181543
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
181543
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
181544
181544
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
181545
181545
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
181546
181546
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -188718,7 +188718,7 @@ protoOf(ConversationApi).ydi = function (companyId, folderId, updateFolderComman
|
|
|
188718
188718
|
function ConversationApi() {
|
|
188719
188719
|
}
|
|
188720
188720
|
function DocumentApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
188721
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
188721
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
188722
188722
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
188723
188723
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
188724
188724
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -191655,7 +191655,7 @@ protoOf(DocumentApi).me4 = function (companyId, documentId, $completion) {
|
|
|
191655
191655
|
function DocumentApi() {
|
|
191656
191656
|
}
|
|
191657
191657
|
function EconomyApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
191658
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
191658
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
191659
191659
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
191660
191660
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
191661
191661
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -192708,7 +192708,7 @@ protoOf(EconomyApi).yeb = function (companyId, reportId, fields, $completion) {
|
|
|
192708
192708
|
function EconomyApi() {
|
|
192709
192709
|
}
|
|
192710
192710
|
function ExpenseApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
192711
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
192711
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
192712
192712
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
192713
192713
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
192714
192714
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -194168,7 +194168,7 @@ protoOf(ExpenseApi).jem = function (companyId, expenseId, fields, $completion) {
|
|
|
194168
194168
|
function ExpenseApi() {
|
|
194169
194169
|
}
|
|
194170
194170
|
function HMSApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
194171
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
194171
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
194172
194172
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
194173
194173
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
194174
194174
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -194597,7 +194597,7 @@ protoOf(HMSApi).kep = function (companyId, fields, $completion) {
|
|
|
194597
194597
|
function HMSApi() {
|
|
194598
194598
|
}
|
|
194599
194599
|
function HomepageApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
194600
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
194600
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
194601
194601
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
194602
194602
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
194603
194603
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -198558,7 +198558,7 @@ protoOf(HomepageApi).tfh = function (companyId, practicalInformationId, updatePo
|
|
|
198558
198558
|
function HomepageApi() {
|
|
198559
198559
|
}
|
|
198560
198560
|
function InsuranceApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
198561
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
198561
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
198562
198562
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
198563
198563
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
198564
198564
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -199724,7 +199724,7 @@ protoOf(InsuranceApi).efq = function (companyId, insuranceId, fields, $completio
|
|
|
199724
199724
|
function InsuranceApi() {
|
|
199725
199725
|
}
|
|
199726
199726
|
function InvoiceApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
199727
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
199727
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
199728
199728
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
199729
199729
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
199730
199730
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -201648,7 +201648,7 @@ function Companion_getInstance_772() {
|
|
|
201648
201648
|
return Companion_instance_769;
|
|
201649
201649
|
}
|
|
201650
201650
|
function InvoicingApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
201651
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
201651
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
201652
201652
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
201653
201653
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
201654
201654
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -217114,7 +217114,7 @@ protoOf(InvoicingApi).uja = function (companyId, sectionId, updateSectionInvoice
|
|
|
217114
217114
|
function InvoicingApi() {
|
|
217115
217115
|
}
|
|
217116
217116
|
function IssueApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
217117
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
217117
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
217118
217118
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
217119
217119
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
217120
217120
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -219769,7 +219769,7 @@ protoOf(IssueApi).oju = function (companyId, issueId, changeResponsibleCommand,
|
|
|
219769
219769
|
function IssueApi() {
|
|
219770
219770
|
}
|
|
219771
219771
|
function LanguageApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
219772
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
219772
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
219773
219773
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
219774
219774
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
219775
219775
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -220102,7 +220102,7 @@ protoOf(LanguageApi).ujw = function (countryId, body, $completion) {
|
|
|
220102
220102
|
function LanguageApi() {
|
|
220103
220103
|
}
|
|
220104
220104
|
function LoanApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
220105
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
220105
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
220106
220106
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
220107
220107
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
220108
220108
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -221908,7 +221908,7 @@ protoOf(LoanApi).zk9 = function (companyId, loanId, updateLoanInterestCommand, $
|
|
|
221908
221908
|
function LoanApi() {
|
|
221909
221909
|
}
|
|
221910
221910
|
function MarketingApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
221911
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
221911
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
221912
221912
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
221913
221913
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
221914
221914
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -222587,7 +222587,7 @@ protoOf(MarketingApi).oke = function (newsletterSubscribeCommand, $completion) {
|
|
|
222587
222587
|
function MarketingApi() {
|
|
222588
222588
|
}
|
|
222589
222589
|
function MeetingApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
222590
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
222590
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
222591
222591
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
222592
222592
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
222593
222593
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -225874,7 +225874,7 @@ protoOf(MeetingApi).ll3 = function (companyId, meetingId, updateMeetingParticipa
|
|
|
225874
225874
|
function MeetingApi() {
|
|
225875
225875
|
}
|
|
225876
225876
|
function OrganizationApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
225877
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
225877
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
225878
225878
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
225879
225879
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
225880
225880
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -228346,7 +228346,7 @@ function Companion_getInstance_773() {
|
|
|
228346
228346
|
return Companion_instance_770;
|
|
228347
228347
|
}
|
|
228348
228348
|
function ParkingApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
228349
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
228349
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
228350
228350
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
228351
228351
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
228352
228352
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -230832,7 +230832,7 @@ function Companion_getInstance_775() {
|
|
|
230832
230832
|
return Companion_instance_772;
|
|
230833
230833
|
}
|
|
230834
230834
|
function PersonApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
230835
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
230835
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
230836
230836
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
230837
230837
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
230838
230838
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -232995,7 +232995,7 @@ protoOf(PersonApi).fmj = function (companyId, residentType, residentId, editResi
|
|
|
232995
232995
|
function PersonApi() {
|
|
232996
232996
|
}
|
|
232997
232997
|
function ResidentApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
232998
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
232998
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
232999
232999
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
233000
233000
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
233001
233001
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -235500,7 +235500,7 @@ protoOf(ResidentApi).on2 = function (companyId, residentType, residentId, update
|
|
|
235500
235500
|
function ResidentApi() {
|
|
235501
235501
|
}
|
|
235502
235502
|
function RoutinesApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
235503
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
235503
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
235504
235504
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
235505
235505
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
235506
235506
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -237068,7 +237068,7 @@ function Companion_getInstance_776() {
|
|
|
237068
237068
|
return Companion_instance_773;
|
|
237069
237069
|
}
|
|
237070
237070
|
function ScopedContactApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
237071
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
237071
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
237072
237072
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
237073
237073
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
237074
237074
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -238162,7 +238162,7 @@ function Companion_getInstance_780() {
|
|
|
238162
238162
|
return Companion_instance_777;
|
|
238163
238163
|
}
|
|
238164
238164
|
function SectionApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
238165
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
238165
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
238166
238166
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
238167
238167
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
238168
238168
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -243109,7 +243109,7 @@ protoOf(SectionApi).nol = function (companyId, sectionId, updateStatusCommand, s
|
|
|
243109
243109
|
function SectionApi() {
|
|
243110
243110
|
}
|
|
243111
243111
|
function SettlementApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
243112
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
243112
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
243113
243113
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
243114
243114
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
243115
243115
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -246256,7 +246256,7 @@ function Companion_getInstance_781() {
|
|
|
246256
246256
|
return Companion_instance_778;
|
|
246257
246257
|
}
|
|
246258
246258
|
function StorageApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
246259
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
246259
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
246260
246260
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
246261
246261
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
246262
246262
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -248640,7 +248640,7 @@ protoOf(StorageApi).kpq = function (companyId, storageRoomId, updateStorageRoomC
|
|
|
248640
248640
|
function StorageApi() {
|
|
248641
248641
|
}
|
|
248642
248642
|
function SupplierApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
248643
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
248643
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
248644
248644
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
248645
248645
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
248646
248646
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -251695,7 +251695,7 @@ protoOf(SupplierApi).xqc = function (supplierId, updateServiceCategoriesCommand,
|
|
|
251695
251695
|
function SupplierApi() {
|
|
251696
251696
|
}
|
|
251697
251697
|
function TaskApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
251698
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
251698
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
251699
251699
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
251700
251700
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
251701
251701
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -252977,7 +252977,7 @@ protoOf(TaskApi).cqm = function (companyId, taskId, updateTaskCommand, $completi
|
|
|
252977
252977
|
function TaskApi() {
|
|
252978
252978
|
}
|
|
252979
252979
|
function ThirdPartyInformationApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
252980
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
252980
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
252981
252981
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
252982
252982
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
252983
252983
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -255107,7 +255107,7 @@ protoOf(ThirdPartyInformationApi).br2 = function (companyId, thirdPartyInformati
|
|
|
255107
255107
|
function ThirdPartyInformationApi() {
|
|
255108
255108
|
}
|
|
255109
255109
|
function UnsubscribeApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
255110
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
255110
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
255111
255111
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
255112
255112
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
255113
255113
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -255402,7 +255402,7 @@ protoOf(UnsubscribeApi).br4 = function (token, $completion) {
|
|
|
255402
255402
|
function UnsubscribeApi() {
|
|
255403
255403
|
}
|
|
255404
255404
|
function UserApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
255405
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
255405
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
255406
255406
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
255407
255407
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
255408
255408
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -256898,7 +256898,7 @@ protoOf(UserApi).bre = function ($completion) {
|
|
|
256898
256898
|
function UserApi() {
|
|
256899
256899
|
}
|
|
256900
256900
|
function WebSocketApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
256901
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
256901
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
256902
256902
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
256903
256903
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
256904
256904
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_782().JSON_DEFAULT : jsonSerializer;
|
|
@@ -257138,7 +257138,7 @@ function _get_authentications__apunwq($this) {
|
|
|
257138
257138
|
}
|
|
257139
257139
|
function Companion_779() {
|
|
257140
257140
|
Companion_instance_779 = this;
|
|
257141
|
-
this.BASE_URL = 'https://
|
|
257141
|
+
this.BASE_URL = 'https://rearden.dev.solibo.io/api';
|
|
257142
257142
|
var tmp = this;
|
|
257143
257143
|
tmp.JSON_DEFAULT = Json(VOID, ApiClient$Companion$JSON_DEFAULT$lambda);
|
|
257144
257144
|
this.u9a_1 = listOf_0('Content-Type');
|