@solibo/home-api 1.6.21 → 1.6.22-305f274-1780495801796-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.trunc === 'undefined') {
|
|
41
|
-
Math.trunc = function (x) {
|
|
42
|
-
if (isNaN(x)) {
|
|
43
|
-
return NaN;
|
|
44
|
-
}
|
|
45
|
-
if (x > 0) {
|
|
46
|
-
return Math.floor(x);
|
|
47
|
-
}
|
|
48
|
-
return Math.ceil(x);
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
40
|
if (typeof Math.clz32 === 'undefined') {
|
|
52
41
|
Math.clz32 = function (log, LN2) {
|
|
53
42
|
return function (x) {
|
|
@@ -59,6 +48,17 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
59
48
|
};
|
|
60
49
|
}(Math.log, Math.LN2);
|
|
61
50
|
}
|
|
51
|
+
if (typeof Math.trunc === 'undefined') {
|
|
52
|
+
Math.trunc = function (x) {
|
|
53
|
+
if (isNaN(x)) {
|
|
54
|
+
return NaN;
|
|
55
|
+
}
|
|
56
|
+
if (x > 0) {
|
|
57
|
+
return Math.floor(x);
|
|
58
|
+
}
|
|
59
|
+
return Math.ceil(x);
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
62
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
63
63
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
64
64
|
var subjectString = this.toString();
|
|
@@ -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]);
|
|
@@ -263,7 +263,7 @@ initMetadataForClass(ContextScope, 'ContextScope', VOID, VOID, [CoroutineScope])
|
|
|
263
263
|
initMetadataForClass(Symbol, 'Symbol');
|
|
264
264
|
initMetadataForInterface(SelectInstance, 'SelectInstance');
|
|
265
265
|
initMetadataForClass(ClauseData, 'ClauseData', VOID, VOID, VOID, [1]);
|
|
266
|
-
initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler,
|
|
266
|
+
initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, SelectInstance, Waiter], [0, 2]);
|
|
267
267
|
initMetadataForClass(TrySelectDetailedResult, 'TrySelectDetailedResult', VOID, Enum);
|
|
268
268
|
initMetadataForClass(SetTimeoutBasedDispatcher, 'SetTimeoutBasedDispatcher', VOID, CoroutineDispatcher, [Delay], [1]);
|
|
269
269
|
initMetadataForObject(NodeDispatcher, 'NodeDispatcher', VOID, SetTimeoutBasedDispatcher, VOID, [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
|
@@ -144169,7 +144169,7 @@ protoOf(OAuth).l8r = function (query, headers) {
|
|
|
144169
144169
|
headers.s2(tmp2, value);
|
|
144170
144170
|
};
|
|
144171
144171
|
function AppStoresApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
144172
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
144172
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
144173
144173
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
144174
144174
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
144175
144175
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -144318,7 +144318,7 @@ protoOf(AppStoresApi).p8s = function ($completion) {
|
|
|
144318
144318
|
function AppStoresApi() {
|
|
144319
144319
|
}
|
|
144320
144320
|
function AuthApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
144321
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
144321
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
144322
144322
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
144323
144323
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
144324
144324
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -148378,7 +148378,7 @@ protoOf(AuthApi).s9k = function (verifyMfaCommand, $completion) {
|
|
|
148378
148378
|
function AuthApi() {
|
|
148379
148379
|
}
|
|
148380
148380
|
function BoardApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
148381
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
148381
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
148382
148382
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
148383
148383
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
148384
148384
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -149212,7 +149212,7 @@ protoOf(BoardApi).p9q = function (companyId, personId, fields, $completion) {
|
|
|
149212
149212
|
function BoardApi() {
|
|
149213
149213
|
}
|
|
149214
149214
|
function CommunicationApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
149215
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
149215
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
149216
149216
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
149217
149217
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
149218
149218
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -153184,7 +153184,7 @@ function Companion_getInstance_661() {
|
|
|
153184
153184
|
return Companion_instance_658;
|
|
153185
153185
|
}
|
|
153186
153186
|
function CompanyApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
153187
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
153187
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
153188
153188
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
153189
153189
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
153190
153190
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -157510,7 +157510,7 @@ function Companion_getInstance_665() {
|
|
|
157510
157510
|
return Companion_instance_662;
|
|
157511
157511
|
}
|
|
157512
157512
|
function ConversationApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
157513
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
157513
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
157514
157514
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
157515
157515
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
157516
157516
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -163930,7 +163930,7 @@ protoOf(ConversationApi).ocn = function (companyId, folderId, updateFolderComman
|
|
|
163930
163930
|
function ConversationApi() {
|
|
163931
163931
|
}
|
|
163932
163932
|
function DocumentApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
163933
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
163933
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
163934
163934
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
163935
163935
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
163936
163936
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -166845,7 +166845,7 @@ protoOf(DocumentApi).xd8 = function (companyId, documentId, $completion) {
|
|
|
166845
166845
|
function DocumentApi() {
|
|
166846
166846
|
}
|
|
166847
166847
|
function EconomyApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
166848
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
166848
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
166849
166849
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
166850
166850
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
166851
166851
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -167898,7 +167898,7 @@ protoOf(EconomyApi).jdg = function (companyId, reportId, fields, $completion) {
|
|
|
167898
167898
|
function EconomyApi() {
|
|
167899
167899
|
}
|
|
167900
167900
|
function ExpenseApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
167901
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
167901
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
167902
167902
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
167903
167903
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
167904
167904
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -169358,7 +169358,7 @@ protoOf(ExpenseApi).udq = function (companyId, expenseId, fields, $completion) {
|
|
|
169358
169358
|
function ExpenseApi() {
|
|
169359
169359
|
}
|
|
169360
169360
|
function HMSApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
169361
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
169361
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
169362
169362
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
169363
169363
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
169364
169364
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -169787,7 +169787,7 @@ protoOf(HMSApi).wdt = function (companyId, fields, $completion) {
|
|
|
169787
169787
|
function HMSApi() {
|
|
169788
169788
|
}
|
|
169789
169789
|
function HomepageApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
169790
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
169790
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
169791
169791
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
169792
169792
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
169793
169793
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -173490,7 +173490,7 @@ protoOf(HomepageApi).kek = function (companyId, practicalInformationId, updatePo
|
|
|
173490
173490
|
function HomepageApi() {
|
|
173491
173491
|
}
|
|
173492
173492
|
function InsuranceApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
173493
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
173493
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
173494
173494
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
173495
173495
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
173496
173496
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -174656,7 +174656,7 @@ protoOf(InsuranceApi).ves = function (companyId, insuranceId, fields, $completio
|
|
|
174656
174656
|
function InsuranceApi() {
|
|
174657
174657
|
}
|
|
174658
174658
|
function InvoiceApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
174659
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
174659
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
174660
174660
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
174661
174661
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
174662
174662
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -176580,7 +176580,7 @@ function Companion_getInstance_667() {
|
|
|
176580
176580
|
return Companion_instance_664;
|
|
176581
176581
|
}
|
|
176582
176582
|
function InvoicingApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
176583
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
176583
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
176584
176584
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
176585
176585
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
176586
176586
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -190599,7 +190599,7 @@ protoOf(InvoicingApi).li3 = function (companyId, updateInvoiceSettingsCommand, $
|
|
|
190599
190599
|
function InvoicingApi() {
|
|
190600
190600
|
}
|
|
190601
190601
|
function IssueApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
190602
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
190602
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
190603
190603
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
190604
190604
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
190605
190605
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -193125,7 +193125,7 @@ protoOf(IssueApi).jim = function (companyId, issueId, changeResponsibleCommand,
|
|
|
193125
193125
|
function IssueApi() {
|
|
193126
193126
|
}
|
|
193127
193127
|
function LanguageApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
193128
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
193128
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
193129
193129
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
193130
193130
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
193131
193131
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -193458,7 +193458,7 @@ protoOf(LanguageApi).pio = function (countryId, body, $completion) {
|
|
|
193458
193458
|
function LanguageApi() {
|
|
193459
193459
|
}
|
|
193460
193460
|
function LoanApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
193461
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
193461
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
193462
193462
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
193463
193463
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
193464
193464
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -195264,7 +195264,7 @@ protoOf(LoanApi).vj1 = function (companyId, loanId, updateLoanInterestCommand, $
|
|
|
195264
195264
|
function LoanApi() {
|
|
195265
195265
|
}
|
|
195266
195266
|
function MarketingApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
195267
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
195267
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
195268
195268
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
195269
195269
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
195270
195270
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -195943,7 +195943,7 @@ protoOf(MarketingApi).kj6 = function (newsletterSubscribeCommand, $completion) {
|
|
|
195943
195943
|
function MarketingApi() {
|
|
195944
195944
|
}
|
|
195945
195945
|
function MeetingApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
195946
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
195946
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
195947
195947
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
195948
195948
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
195949
195949
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -199101,7 +199101,7 @@ protoOf(MeetingApi).kju = function (companyId, meetingId, updateMeetingParticipa
|
|
|
199101
199101
|
function MeetingApi() {
|
|
199102
199102
|
}
|
|
199103
199103
|
function OrganizationApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
199104
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
199104
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
199105
199105
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
199106
199106
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
199107
199107
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -201543,7 +201543,7 @@ protoOf(OrganizationApi).gkc = function (organizationId, employeeId, companyId,
|
|
|
201543
201543
|
function OrganizationApi() {
|
|
201544
201544
|
}
|
|
201545
201545
|
function ParkingApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
201546
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
201546
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
201547
201547
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
201548
201548
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
201549
201549
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -203545,7 +203545,7 @@ function Companion_getInstance_669() {
|
|
|
203545
203545
|
return Companion_instance_666;
|
|
203546
203546
|
}
|
|
203547
203547
|
function PersonApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
203548
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
203548
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
203549
203549
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
203550
203550
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
203551
203551
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -205708,7 +205708,7 @@ protoOf(PersonApi).fl6 = function (companyId, residentType, residentId, editResi
|
|
|
205708
205708
|
function PersonApi() {
|
|
205709
205709
|
}
|
|
205710
205710
|
function ResidentApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
205711
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
205711
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
205712
205712
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
205713
205713
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
205714
205714
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -208081,7 +208081,7 @@ protoOf(ResidentApi).plo = function (companyId, residentType, residentId, update
|
|
|
208081
208081
|
function ResidentApi() {
|
|
208082
208082
|
}
|
|
208083
208083
|
function RoutinesApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
208084
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
208084
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
208085
208085
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
208086
208086
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
208087
208087
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -209649,7 +209649,7 @@ function Companion_getInstance_670() {
|
|
|
209649
209649
|
return Companion_instance_667;
|
|
209650
209650
|
}
|
|
209651
209651
|
function ScopedContactApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
209652
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
209652
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
209653
209653
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
209654
209654
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
209655
209655
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -210713,7 +210713,7 @@ function Companion_getInstance_673() {
|
|
|
210713
210713
|
return Companion_instance_670;
|
|
210714
210714
|
}
|
|
210715
210715
|
function SectionApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
210716
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
210716
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
210717
210717
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
210718
210718
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
210719
210719
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -215388,7 +215388,7 @@ protoOf(SectionApi).dn5 = function (companyId, sectionId, updateStatusCommand, s
|
|
|
215388
215388
|
function SectionApi() {
|
|
215389
215389
|
}
|
|
215390
215390
|
function SettlementApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
215391
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
215391
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
215392
215392
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
215393
215393
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
215394
215394
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -218505,7 +218505,7 @@ protoOf(SettlementApi).jns = function (companyId, configurationId, upsertSettlem
|
|
|
218505
218505
|
function SettlementApi() {
|
|
218506
218506
|
}
|
|
218507
218507
|
function StorageApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
218508
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
218508
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
218509
218509
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
218510
218510
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
218511
218511
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -220405,7 +220405,7 @@ protoOf(StorageApi).ko6 = function (companyId, storageRoomId, updateStorageRoomC
|
|
|
220405
220405
|
function StorageApi() {
|
|
220406
220406
|
}
|
|
220407
220407
|
function SupplierApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
220408
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
220408
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
220409
220409
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
220410
220410
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
220411
220411
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -223199,7 +223199,7 @@ protoOf(SupplierApi).cor = function (supplierId, updateServiceCategoriesCommand,
|
|
|
223199
223199
|
function SupplierApi() {
|
|
223200
223200
|
}
|
|
223201
223201
|
function TaskApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
223202
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
223202
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
223203
223203
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
223204
223204
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
223205
223205
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -224352,7 +224352,7 @@ protoOf(TaskApi).koz = function (companyId, taskId, updateTaskCommand, $completi
|
|
|
224352
224352
|
function TaskApi() {
|
|
224353
224353
|
}
|
|
224354
224354
|
function ThirdPartyInformationApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
224355
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
224355
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
224356
224356
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
224357
224357
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
224358
224358
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -226482,7 +226482,7 @@ protoOf(ThirdPartyInformationApi).jpf = function (companyId, thirdPartyInformati
|
|
|
226482
226482
|
function ThirdPartyInformationApi() {
|
|
226483
226483
|
}
|
|
226484
226484
|
function UnsubscribeApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
226485
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
226485
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
226486
226486
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
226487
226487
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
226488
226488
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -226777,7 +226777,7 @@ protoOf(UnsubscribeApi).jph = function (token, $completion) {
|
|
|
226777
226777
|
function UnsubscribeApi() {
|
|
226778
226778
|
}
|
|
226779
226779
|
function UserApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
226780
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
226780
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
226781
226781
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
226782
226782
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
226783
226783
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -228122,7 +228122,7 @@ protoOf(UserApi).kpq = function ($completion) {
|
|
|
228122
228122
|
function UserApi() {
|
|
228123
228123
|
}
|
|
228124
228124
|
function WebSocketApi_init_$Init$(baseUrl, httpClientEngine, httpClientConfig, jsonSerializer, $this) {
|
|
228125
|
-
baseUrl = baseUrl === VOID ? 'https://
|
|
228125
|
+
baseUrl = baseUrl === VOID ? 'https://rearden.dev.solibo.io/api' : baseUrl;
|
|
228126
228126
|
httpClientEngine = httpClientEngine === VOID ? null : httpClientEngine;
|
|
228127
228127
|
httpClientConfig = httpClientConfig === VOID ? null : httpClientConfig;
|
|
228128
228128
|
jsonSerializer = jsonSerializer === VOID ? Companion_getInstance_674().JSON_DEFAULT : jsonSerializer;
|
|
@@ -228362,7 +228362,7 @@ function _get_authentications__apunwq($this) {
|
|
|
228362
228362
|
}
|
|
228363
228363
|
function Companion_671() {
|
|
228364
228364
|
Companion_instance_671 = this;
|
|
228365
|
-
this.BASE_URL = 'https://
|
|
228365
|
+
this.BASE_URL = 'https://rearden.dev.solibo.io/api';
|
|
228366
228366
|
var tmp = this;
|
|
228367
228367
|
tmp.JSON_DEFAULT = Json(VOID, ApiClient$Companion$JSON_DEFAULT$lambda);
|
|
228368
228368
|
this.n8r_1 = listOf_0('Content-Type');
|