@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.
- package/esm2020/lib/services/tru-app-environment.mjs +8 -1
- package/fesm2015/trudb-tru-common-lib.mjs +7 -0
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +7 -0
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/lib/services/tru-app-environment.d.ts +3 -0
- package/package.json +1 -1
|
@@ -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
|
}
|