@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
|
@@ -10,6 +10,7 @@ export interface ActionEventCompleted {
|
|
|
10
10
|
export declare class TruAppEnvironment {
|
|
11
11
|
private truUser;
|
|
12
12
|
private _appUri;
|
|
13
|
+
private _authType;
|
|
13
14
|
private _maxRecordCount;
|
|
14
15
|
private _isSaving;
|
|
15
16
|
private _saveComplete;
|
|
@@ -38,6 +39,8 @@ export declare class TruAppEnvironment {
|
|
|
38
39
|
constructor(truUser: TruUser);
|
|
39
40
|
get appUri(): string;
|
|
40
41
|
set appUri(uri: string);
|
|
42
|
+
get authType(): 'session' | 'jwt';
|
|
43
|
+
set authType(type: 'session' | 'jwt');
|
|
41
44
|
get isSaving(): boolean;
|
|
42
45
|
set isSaving(isSaving: boolean);
|
|
43
46
|
get maxRecordCount(): number;
|