bimplus-websdk 1.0.13 → 1.0.14
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/package.json
CHANGED
|
@@ -237,6 +237,11 @@ declare module 'bimplus-websdk' {
|
|
|
237
237
|
structureDepth: number;
|
|
238
238
|
}
|
|
239
239
|
|
|
240
|
+
export class PrivacyTexts {
|
|
241
|
+
constructor(api: Api);
|
|
242
|
+
get(lang: string | undefined, type: string | undefined): Promise<HTML>;
|
|
243
|
+
}
|
|
244
|
+
|
|
240
245
|
export interface IDBCache {
|
|
241
246
|
data: string;
|
|
242
247
|
|
|
@@ -256,6 +261,9 @@ declare module 'bimplus-websdk' {
|
|
|
256
261
|
objectFilters: ObjectFilters;
|
|
257
262
|
objects: Objects;
|
|
258
263
|
exportService: ExportService;
|
|
264
|
+
terms: PrivacyTexts;
|
|
265
|
+
imprints: PrivacyTexts;
|
|
266
|
+
dataProtection: PrivacyTexts;
|
|
259
267
|
|
|
260
268
|
setAccessToken(token: AccessToken): void;
|
|
261
269
|
getAccessToken(): AccessToken | null;
|