nb-js-client 0.0.79 → 0.0.80
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Client } from '../classes';
|
|
2
2
|
import { Extension, ExtensionDefault, License, LockScreen, ResponseList, Restriction, Setting, SettingValue, User, UserNotification } from '../types';
|
|
3
3
|
import { FileLocking } from '../types/file-locking';
|
|
4
|
+
import { LdapStrict } from '../types/ldap-strict';
|
|
4
5
|
export declare class GatewayApiService {
|
|
5
6
|
private client;
|
|
6
7
|
constructor(client: Client);
|
|
@@ -25,6 +26,7 @@ export interface QueryInitResponse {
|
|
|
25
26
|
open_in_desktop_enabled: boolean;
|
|
26
27
|
};
|
|
27
28
|
two_factor_auth_enabled: boolean;
|
|
29
|
+
ldap_groups_roles_strict: LdapStrict;
|
|
28
30
|
inject_scripts?: string[];
|
|
29
31
|
}
|
|
30
32
|
export declare enum QueryInitViewType {
|
package/dist/index.d.ts
CHANGED
|
@@ -1197,6 +1197,11 @@ declare class FcaApiService {
|
|
|
1197
1197
|
check(data: ConnectionCreateParams): Promise<void>;
|
|
1198
1198
|
}
|
|
1199
1199
|
|
|
1200
|
+
interface LdapStrict {
|
|
1201
|
+
groups_strict?: boolean;
|
|
1202
|
+
roles_strict?: boolean;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1200
1205
|
declare class GatewayApiService {
|
|
1201
1206
|
private client;
|
|
1202
1207
|
constructor(client: Client);
|
|
@@ -1221,6 +1226,7 @@ interface QueryInitResponse {
|
|
|
1221
1226
|
open_in_desktop_enabled: boolean;
|
|
1222
1227
|
};
|
|
1223
1228
|
two_factor_auth_enabled: boolean;
|
|
1229
|
+
ldap_groups_roles_strict: LdapStrict;
|
|
1224
1230
|
inject_scripts?: string[];
|
|
1225
1231
|
}
|
|
1226
1232
|
declare enum QueryInitViewType {
|