@solibo/home-api 1.1.31 → 1.1.32

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.
@@ -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.endsWith === 'undefined') {
63
63
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
64
64
  var subjectString = this.toString();
@@ -262,7 +262,7 @@ initMetadataForClass(ContextScope, 'ContextScope', VOID, VOID, [CoroutineScope])
262
262
  initMetadataForClass(Symbol, 'Symbol');
263
263
  initMetadataForInterface(SelectInstance, 'SelectInstance');
264
264
  initMetadataForClass(ClauseData, 'ClauseData', VOID, VOID, VOID, [1]);
265
- initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, SelectInstance, Waiter], [0, 2]);
265
+ initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, Waiter, SelectInstance], [0, 2]);
266
266
  initMetadataForClass(TrySelectDetailedResult, 'TrySelectDetailedResult', VOID, Enum);
267
267
  initMetadataForClass(SetTimeoutBasedDispatcher, 'SetTimeoutBasedDispatcher', VOID, CoroutineDispatcher, [CoroutineDispatcher, Delay], [1]);
268
268
  initMetadataForObject(NodeDispatcher, 'NodeDispatcher', VOID, SetTimeoutBasedDispatcher, VOID, [1]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "main": "solibo-sdk-sdk-home-api.mjs",
3
- "version": "1.1.31",
3
+ "version": "1.1.32",
4
4
  "name": "@solibo/home-api",
5
5
  "dependencies": {
6
6
  "ws": "8.18.3",
@@ -3209,24 +3209,8 @@ export declare abstract class DialogActivityType {
3209
3209
  get name(): "SENT_TO_PAYMENT";
3210
3210
  get ordinal(): 12;
3211
3211
  };
3212
- static get FORM_SUBMITTED(): DialogActivityType & {
3213
- get name(): "FORM_SUBMITTED";
3214
- get ordinal(): 13;
3215
- };
3216
- static get FORM_SAVED(): DialogActivityType & {
3217
- get name(): "FORM_SAVED";
3218
- get ordinal(): 14;
3219
- };
3220
- static get CORRESPONDENCE_OPENED(): DialogActivityType & {
3221
- get name(): "CORRESPONDENCE_OPENED";
3222
- get ordinal(): 15;
3223
- };
3224
- static get CORRESPONDENCE_CONFIRMED(): DialogActivityType & {
3225
- get name(): "CORRESPONDENCE_CONFIRMED";
3226
- get ordinal(): 16;
3227
- };
3228
- get name(): "DIALOG_CREATED" | "DIALOG_CLOSED" | "INFORMATION" | "TRANSMISSION_OPENED" | "PAYMENT_MADE" | "SIGNATURE_PROVIDED" | "DIALOG_OPENED" | "DIALOG_DELETED" | "DIALOG_RESTORED" | "SENT_TO_SIGNING" | "SENT_TO_FORM_FILL" | "SENT_TO_SEND_IN" | "SENT_TO_PAYMENT" | "FORM_SUBMITTED" | "FORM_SAVED" | "CORRESPONDENCE_OPENED" | "CORRESPONDENCE_CONFIRMED";
3229
- get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16;
3212
+ get name(): "DIALOG_CREATED" | "DIALOG_CLOSED" | "INFORMATION" | "TRANSMISSION_OPENED" | "PAYMENT_MADE" | "SIGNATURE_PROVIDED" | "DIALOG_OPENED" | "DIALOG_DELETED" | "DIALOG_RESTORED" | "SENT_TO_SIGNING" | "SENT_TO_FORM_FILL" | "SENT_TO_SEND_IN" | "SENT_TO_PAYMENT";
3213
+ get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
3230
3214
  get value(): string;
3231
3215
  toString(): string;
3232
3216
  static values(): Array<DialogActivityType>;
@@ -3307,24 +3291,12 @@ export declare abstract class DialogSystemLabel {
3307
3291
  get name(): "DEFAULT";
3308
3292
  get ordinal(): 0;
3309
3293
  };
3310
- static get BIN(): DialogSystemLabel & {
3311
- get name(): "BIN";
3312
- get ordinal(): 1;
3313
- };
3314
- static get ARCHIVE(): DialogSystemLabel & {
3315
- get name(): "ARCHIVE";
3316
- get ordinal(): 2;
3317
- };
3318
- static get MARK_AS_UNOPENED(): DialogSystemLabel & {
3319
- get name(): "MARK_AS_UNOPENED";
3320
- get ordinal(): 3;
3321
- };
3322
3294
  static get SENT(): DialogSystemLabel & {
3323
3295
  get name(): "SENT";
3324
- get ordinal(): 4;
3296
+ get ordinal(): 1;
3325
3297
  };
3326
- get name(): "DEFAULT" | "BIN" | "ARCHIVE" | "MARK_AS_UNOPENED" | "SENT";
3327
- get ordinal(): 0 | 1 | 2 | 3 | 4;
3298
+ get name(): "DEFAULT" | "SENT";
3299
+ get ordinal(): 0 | 1;
3328
3300
  get value(): string;
3329
3301
  toString(): string;
3330
3302
  static values(): Array<DialogSystemLabel>;
@@ -35801,11 +35801,11 @@ function DialogActivityType$Companion$_anonymous__5xht6m() {
35801
35801
  // Inline function 'kotlin.arrayOf' call
35802
35802
  // Inline function 'kotlin.js.unsafeCast' call
35803
35803
  // Inline function 'kotlin.js.asDynamic' call
35804
- var tmp_0 = ['DialogCreated', 'DialogClosed', 'Information', 'TransmissionOpened', 'PaymentMade', 'SignatureProvided', 'DialogOpened', 'DialogDeleted', 'DialogRestored', 'SentToSigning', 'SentToFormFill', 'SentToSendIn', 'SentToPayment', 'FormSubmitted', 'FormSaved', 'CorrespondenceOpened', 'CorrespondenceConfirmed'];
35804
+ var tmp_0 = ['DialogCreated', 'DialogClosed', 'Information', 'TransmissionOpened', 'PaymentMade', 'SignatureProvided', 'DialogOpened', 'DialogDeleted', 'DialogRestored', 'SentToSigning', 'SentToFormFill', 'SentToSendIn', 'SentToPayment'];
35805
35805
  // Inline function 'kotlin.arrayOf' call
35806
35806
  // Inline function 'kotlin.js.unsafeCast' call
35807
35807
  // Inline function 'kotlin.js.asDynamic' call
35808
- var tmp$ret$5 = [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null];
35808
+ var tmp$ret$5 = [null, null, null, null, null, null, null, null, null, null, null, null, null];
35809
35809
  return createAnnotatedEnumSerializer('no.solibo.oss.sdk.api.gen.models.DialogActivityType', tmp, tmp_0, tmp$ret$5, null);
35810
35810
  }
35811
35811
  var DialogActivityType_DIALOG_CREATED_instance;
@@ -35821,10 +35821,6 @@ var DialogActivityType_SENT_TO_SIGNING_instance;
35821
35821
  var DialogActivityType_SENT_TO_FORM_FILL_instance;
35822
35822
  var DialogActivityType_SENT_TO_SEND_IN_instance;
35823
35823
  var DialogActivityType_SENT_TO_PAYMENT_instance;
35824
- var DialogActivityType_FORM_SUBMITTED_instance;
35825
- var DialogActivityType_FORM_SAVED_instance;
35826
- var DialogActivityType_CORRESPONDENCE_OPENED_instance;
35827
- var DialogActivityType_CORRESPONDENCE_CONFIRMED_instance;
35828
35824
  function Companion_155() {
35829
35825
  Companion_instance_155 = this;
35830
35826
  var tmp = this;
@@ -35861,7 +35857,7 @@ function Companion_getInstance_158() {
35861
35857
  return Companion_instance_155;
35862
35858
  }
35863
35859
  function values_9() {
35864
- return [DialogActivityType_DIALOG_CREATED_getInstance(), DialogActivityType_DIALOG_CLOSED_getInstance(), DialogActivityType_INFORMATION_getInstance(), DialogActivityType_TRANSMISSION_OPENED_getInstance(), DialogActivityType_PAYMENT_MADE_getInstance(), DialogActivityType_SIGNATURE_PROVIDED_getInstance(), DialogActivityType_DIALOG_OPENED_getInstance(), DialogActivityType_DIALOG_DELETED_getInstance(), DialogActivityType_DIALOG_RESTORED_getInstance(), DialogActivityType_SENT_TO_SIGNING_getInstance(), DialogActivityType_SENT_TO_FORM_FILL_getInstance(), DialogActivityType_SENT_TO_SEND_IN_getInstance(), DialogActivityType_SENT_TO_PAYMENT_getInstance(), DialogActivityType_FORM_SUBMITTED_getInstance(), DialogActivityType_FORM_SAVED_getInstance(), DialogActivityType_CORRESPONDENCE_OPENED_getInstance(), DialogActivityType_CORRESPONDENCE_CONFIRMED_getInstance()];
35860
+ return [DialogActivityType_DIALOG_CREATED_getInstance(), DialogActivityType_DIALOG_CLOSED_getInstance(), DialogActivityType_INFORMATION_getInstance(), DialogActivityType_TRANSMISSION_OPENED_getInstance(), DialogActivityType_PAYMENT_MADE_getInstance(), DialogActivityType_SIGNATURE_PROVIDED_getInstance(), DialogActivityType_DIALOG_OPENED_getInstance(), DialogActivityType_DIALOG_DELETED_getInstance(), DialogActivityType_DIALOG_RESTORED_getInstance(), DialogActivityType_SENT_TO_SIGNING_getInstance(), DialogActivityType_SENT_TO_FORM_FILL_getInstance(), DialogActivityType_SENT_TO_SEND_IN_getInstance(), DialogActivityType_SENT_TO_PAYMENT_getInstance()];
35865
35861
  }
35866
35862
  function valueOf_9(value) {
35867
35863
  switch (value) {
@@ -35891,14 +35887,6 @@ function valueOf_9(value) {
35891
35887
  return DialogActivityType_SENT_TO_SEND_IN_getInstance();
35892
35888
  case 'SENT_TO_PAYMENT':
35893
35889
  return DialogActivityType_SENT_TO_PAYMENT_getInstance();
35894
- case 'FORM_SUBMITTED':
35895
- return DialogActivityType_FORM_SUBMITTED_getInstance();
35896
- case 'FORM_SAVED':
35897
- return DialogActivityType_FORM_SAVED_getInstance();
35898
- case 'CORRESPONDENCE_OPENED':
35899
- return DialogActivityType_CORRESPONDENCE_OPENED_getInstance();
35900
- case 'CORRESPONDENCE_CONFIRMED':
35901
- return DialogActivityType_CORRESPONDENCE_CONFIRMED_getInstance();
35902
35890
  default:
35903
35891
  DialogActivityType_initEntries();
35904
35892
  THROW_IAE('No enum constant no.solibo.oss.sdk.api.gen.models.DialogActivityType.' + value);
@@ -35928,10 +35916,6 @@ function DialogActivityType_initEntries() {
35928
35916
  DialogActivityType_SENT_TO_FORM_FILL_instance = new DialogActivityType('SENT_TO_FORM_FILL', 10, 'SentToFormFill');
35929
35917
  DialogActivityType_SENT_TO_SEND_IN_instance = new DialogActivityType('SENT_TO_SEND_IN', 11, 'SentToSendIn');
35930
35918
  DialogActivityType_SENT_TO_PAYMENT_instance = new DialogActivityType('SENT_TO_PAYMENT', 12, 'SentToPayment');
35931
- DialogActivityType_FORM_SUBMITTED_instance = new DialogActivityType('FORM_SUBMITTED', 13, 'FormSubmitted');
35932
- DialogActivityType_FORM_SAVED_instance = new DialogActivityType('FORM_SAVED', 14, 'FormSaved');
35933
- DialogActivityType_CORRESPONDENCE_OPENED_instance = new DialogActivityType('CORRESPONDENCE_OPENED', 15, 'CorrespondenceOpened');
35934
- DialogActivityType_CORRESPONDENCE_CONFIRMED_instance = new DialogActivityType('CORRESPONDENCE_CONFIRMED', 16, 'CorrespondenceConfirmed');
35935
35919
  Companion_getInstance_158();
35936
35920
  }
35937
35921
  var $ENTRIES_9;
@@ -35997,22 +35981,6 @@ function DialogActivityType_SENT_TO_PAYMENT_getInstance() {
35997
35981
  DialogActivityType_initEntries();
35998
35982
  return DialogActivityType_SENT_TO_PAYMENT_instance;
35999
35983
  }
36000
- function DialogActivityType_FORM_SUBMITTED_getInstance() {
36001
- DialogActivityType_initEntries();
36002
- return DialogActivityType_FORM_SUBMITTED_instance;
36003
- }
36004
- function DialogActivityType_FORM_SAVED_getInstance() {
36005
- DialogActivityType_initEntries();
36006
- return DialogActivityType_FORM_SAVED_instance;
36007
- }
36008
- function DialogActivityType_CORRESPONDENCE_OPENED_getInstance() {
36009
- DialogActivityType_initEntries();
36010
- return DialogActivityType_CORRESPONDENCE_OPENED_instance;
36011
- }
36012
- function DialogActivityType_CORRESPONDENCE_CONFIRMED_getInstance() {
36013
- DialogActivityType_initEntries();
36014
- return DialogActivityType_CORRESPONDENCE_CONFIRMED_instance;
36015
- }
36016
35984
  function _get_$cachedSerializer__te6jhj_14($this) {
36017
35985
  return $this.i6b_1.m1();
36018
35986
  }
@@ -36153,17 +36121,14 @@ function DialogSystemLabel$Companion$_anonymous__uwh242() {
36153
36121
  // Inline function 'kotlin.arrayOf' call
36154
36122
  // Inline function 'kotlin.js.unsafeCast' call
36155
36123
  // Inline function 'kotlin.js.asDynamic' call
36156
- var tmp_0 = ['Default', 'Bin', 'Archive', 'MarkAsUnopened', 'Sent'];
36124
+ var tmp_0 = ['Default', 'Sent'];
36157
36125
  // Inline function 'kotlin.arrayOf' call
36158
36126
  // Inline function 'kotlin.js.unsafeCast' call
36159
36127
  // Inline function 'kotlin.js.asDynamic' call
36160
- var tmp$ret$5 = [null, null, null, null, null];
36128
+ var tmp$ret$5 = [null, null];
36161
36129
  return createAnnotatedEnumSerializer('no.solibo.oss.sdk.api.gen.models.DialogSystemLabel', tmp, tmp_0, tmp$ret$5, null);
36162
36130
  }
36163
36131
  var DialogSystemLabel_DEFAULT_instance;
36164
- var DialogSystemLabel_BIN_instance;
36165
- var DialogSystemLabel_ARCHIVE_instance;
36166
- var DialogSystemLabel_MARK_AS_UNOPENED_instance;
36167
36132
  var DialogSystemLabel_SENT_instance;
36168
36133
  function Companion_157() {
36169
36134
  Companion_instance_157 = this;
@@ -36201,18 +36166,12 @@ function Companion_getInstance_160() {
36201
36166
  return Companion_instance_157;
36202
36167
  }
36203
36168
  function values_11() {
36204
- return [DialogSystemLabel_DEFAULT_getInstance(), DialogSystemLabel_BIN_getInstance(), DialogSystemLabel_ARCHIVE_getInstance(), DialogSystemLabel_MARK_AS_UNOPENED_getInstance(), DialogSystemLabel_SENT_getInstance()];
36169
+ return [DialogSystemLabel_DEFAULT_getInstance(), DialogSystemLabel_SENT_getInstance()];
36205
36170
  }
36206
36171
  function valueOf_11(value) {
36207
36172
  switch (value) {
36208
36173
  case 'DEFAULT':
36209
36174
  return DialogSystemLabel_DEFAULT_getInstance();
36210
- case 'BIN':
36211
- return DialogSystemLabel_BIN_getInstance();
36212
- case 'ARCHIVE':
36213
- return DialogSystemLabel_ARCHIVE_getInstance();
36214
- case 'MARK_AS_UNOPENED':
36215
- return DialogSystemLabel_MARK_AS_UNOPENED_getInstance();
36216
36175
  case 'SENT':
36217
36176
  return DialogSystemLabel_SENT_getInstance();
36218
36177
  default:
@@ -36232,10 +36191,7 @@ function DialogSystemLabel_initEntries() {
36232
36191
  return Unit_instance;
36233
36192
  DialogSystemLabel_entriesInitialized = true;
36234
36193
  DialogSystemLabel_DEFAULT_instance = new DialogSystemLabel('DEFAULT', 0, 'Default');
36235
- DialogSystemLabel_BIN_instance = new DialogSystemLabel('BIN', 1, 'Bin');
36236
- DialogSystemLabel_ARCHIVE_instance = new DialogSystemLabel('ARCHIVE', 2, 'Archive');
36237
- DialogSystemLabel_MARK_AS_UNOPENED_instance = new DialogSystemLabel('MARK_AS_UNOPENED', 3, 'MarkAsUnopened');
36238
- DialogSystemLabel_SENT_instance = new DialogSystemLabel('SENT', 4, 'Sent');
36194
+ DialogSystemLabel_SENT_instance = new DialogSystemLabel('SENT', 1, 'Sent');
36239
36195
  Companion_getInstance_160();
36240
36196
  }
36241
36197
  var $ENTRIES_11;
@@ -36253,18 +36209,6 @@ function DialogSystemLabel_DEFAULT_getInstance() {
36253
36209
  DialogSystemLabel_initEntries();
36254
36210
  return DialogSystemLabel_DEFAULT_instance;
36255
36211
  }
36256
- function DialogSystemLabel_BIN_getInstance() {
36257
- DialogSystemLabel_initEntries();
36258
- return DialogSystemLabel_BIN_instance;
36259
- }
36260
- function DialogSystemLabel_ARCHIVE_getInstance() {
36261
- DialogSystemLabel_initEntries();
36262
- return DialogSystemLabel_ARCHIVE_instance;
36263
- }
36264
- function DialogSystemLabel_MARK_AS_UNOPENED_getInstance() {
36265
- DialogSystemLabel_initEntries();
36266
- return DialogSystemLabel_MARK_AS_UNOPENED_instance;
36267
- }
36268
36212
  function DialogSystemLabel_SENT_getInstance() {
36269
36213
  DialogSystemLabel_initEntries();
36270
36214
  return DialogSystemLabel_SENT_instance;
@@ -202289,10 +202233,6 @@ defineProp(DialogActivityType, 'SENT_TO_SIGNING', DialogActivityType_SENT_TO_SIG
202289
202233
  defineProp(DialogActivityType, 'SENT_TO_FORM_FILL', DialogActivityType_SENT_TO_FORM_FILL_getInstance, VOID, true);
202290
202234
  defineProp(DialogActivityType, 'SENT_TO_SEND_IN', DialogActivityType_SENT_TO_SEND_IN_getInstance, VOID, true);
202291
202235
  defineProp(DialogActivityType, 'SENT_TO_PAYMENT', DialogActivityType_SENT_TO_PAYMENT_getInstance, VOID, true);
202292
- defineProp(DialogActivityType, 'FORM_SUBMITTED', DialogActivityType_FORM_SUBMITTED_getInstance, VOID, true);
202293
- defineProp(DialogActivityType, 'FORM_SAVED', DialogActivityType_FORM_SAVED_getInstance, VOID, true);
202294
- defineProp(DialogActivityType, 'CORRESPONDENCE_OPENED', DialogActivityType_CORRESPONDENCE_OPENED_getInstance, VOID, true);
202295
- defineProp(DialogActivityType, 'CORRESPONDENCE_CONFIRMED', DialogActivityType_CORRESPONDENCE_CONFIRMED_getInstance, VOID, true);
202296
202236
  defineProp(DialogActivityType, 'Companion', Companion_getInstance_158, VOID, true);
202297
202237
  DialogStatus.values = values_10;
202298
202238
  DialogStatus.valueOf = valueOf_10;
@@ -202306,9 +202246,6 @@ defineProp(DialogStatus, 'Companion', Companion_getInstance_159, VOID, true);
202306
202246
  DialogSystemLabel.values = values_11;
202307
202247
  DialogSystemLabel.valueOf = valueOf_11;
202308
202248
  defineProp(DialogSystemLabel, 'DEFAULT', DialogSystemLabel_DEFAULT_getInstance, VOID, true);
202309
- defineProp(DialogSystemLabel, 'BIN', DialogSystemLabel_BIN_getInstance, VOID, true);
202310
- defineProp(DialogSystemLabel, 'ARCHIVE', DialogSystemLabel_ARCHIVE_getInstance, VOID, true);
202311
- defineProp(DialogSystemLabel, 'MARK_AS_UNOPENED', DialogSystemLabel_MARK_AS_UNOPENED_getInstance, VOID, true);
202312
202249
  defineProp(DialogSystemLabel, 'SENT', DialogSystemLabel_SENT_getInstance, VOID, true);
202313
202250
  defineProp(DialogSystemLabel, 'Companion', Companion_getInstance_160, VOID, true);
202314
202251
  DocumentType.values = values_12;