@trudb/tru-common-lib 0.0.708 → 0.0.709

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.
@@ -363,6 +363,7 @@ class TruAppEnvironment {
363
363
  return 'Are you sure you want to delete ' + count + ' ' + tablePluralLabel + '?';
364
364
  };
365
365
  this._appUri = '';
366
+ this._authType = 'jwt';
366
367
  this._maxRecordCount = 0;
367
368
  this.msgModifierKeyLabel = this.isMac ? 'Cmd' : 'Ctrl';
368
369
  this.msgConfirmExitWithChangesPending = 'You have unsaved changes that will be lost.';
@@ -386,6 +387,12 @@ class TruAppEnvironment {
386
387
  set appUri(uri) {
387
388
  this._appUri = uri;
388
389
  }
390
+ get authType() {
391
+ return this._authType;
392
+ }
393
+ set authType(type) {
394
+ this._authType = type;
395
+ }
389
396
  get isSaving() {
390
397
  return this._isSaving.getValue();
391
398
  }