@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/.vs/slnx.sqlite +0 -0
- package/.vs/sync/CopilotIndices/17.14.260.54502/CodeChunks.db +0 -0
- package/.vs/sync/CopilotIndices/17.14.260.54502/SemanticSymbols.db +0 -0
- package/.vs/sync/FileContentIndex/{46473787-3d20-4f5a-849d-a99c601ab90f.vsidx → 3881c9ba-413d-444d-b9d4-43b79228192c.vsidx} +0 -0
- package/.vs/sync/FileContentIndex/40eca9db-2eca-4bb1-b236-ef05624e799e.vsidx +0 -0
- package/.vs/sync/FileContentIndex/{d6a9e023-f0ee-489b-8cfd-04fd4d8b476f.vsidx → 5c93d870-257a-4d35-93a3-48d299fa5b1a.vsidx} +0 -0
- package/.vs/sync/FileContentIndex/{ddd298b1-dee9-42b4-a705-1eeebff3ae8c.vsidx → c2ebbf3f-6ffc-45f4-9e41-20101dcbfe33.vsidx} +0 -0
- package/.vs/sync/v17/.wsuo +0 -0
- package/.vs/sync/v17/DocumentLayout.backup.json +17 -10
- package/.vs/sync/v17/DocumentLayout.json +3 -4
- package/dist/src/index.d.ts +1 -0
- package/dist/sync.es.js +3 -2
- package/dist/sync.es.js.map +1 -1
- package/dist/sync.umd.js +1 -1
- package/dist/sync.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -0
- package/.vs/sync/FileContentIndex/57cacc78-62f1-4670-a7de-ef5a5f15761c.vsidx +0 -0
package/package.json
CHANGED
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;
|
|
Binary file
|