@mindline/sync 1.0.103 → 1.0.104

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindline/sync",
3
- "version": "1.0.103",
3
+ "version": "1.0.104",
4
4
  "description": "sync is a node.js package encapsulating JavaScript classes required for configuring Mindline sync service.",
5
5
  "main": "dist/sync.es.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -289,6 +289,7 @@ export class AuditConfig {
289
289
  name: string;
290
290
  description: string;
291
291
  isEnabled: boolean;
292
+ isReadPermissionConsented: boolean;
292
293
  email: string;
293
294
  tenantId: string;
294
295
  sel: boolean; // selection state
@@ -298,6 +299,7 @@ export class AuditConfig {
298
299
  this.workspaceId = "";
299
300
  this.description = "";
300
301
  this.isEnabled = false;
302
+ this.isReadPermissionConsented = false;
301
303
  this.email = "";
302
304
  this.tenantId = "";
303
305
  this.sel = false;