@mindline/sync 1.0.101 → 1.0.102
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/VSWorkspaceState.json +1 -1
- 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/{24a4af15-f48f-4636-bba3-eb444f17772c.vsidx → 1dc09e8c-13fc-40d9-b22d-a74371049af7.vsidx} +0 -0
- package/.vs/sync/FileContentIndex/{3d735301-6bc9-4349-a917-609e552af3d6.vsidx → 370aa08c-cb24-4e5f-8521-d20f70abd9fc.vsidx} +0 -0
- package/.vs/sync/FileContentIndex/48632d90-4949-4440-8d3a-4ac31d62c144.vsidx +0 -0
- package/.vs/sync/FileContentIndex/cad92429-a27a-4f1e-80cb-3dba05ee25cb.vsidx +0 -0
- package/.vs/sync/v17/.wsuo +0 -0
- package/.vs/sync/v17/DocumentLayout.backup.json +15 -17
- package/.vs/sync/v17/DocumentLayout.json +21 -28
- package/dist/sync.es.js +1 -1
- 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.d.ts +5 -0
- package/src/index.ts +1 -0
- package/.vs/sync/FileContentIndex/547368c3-2a34-40f3-abaf-8bff09e997f6.vsidx +0 -0
- package/.vs/sync/FileContentIndex/97436329-fb83-43f9-95a2-5f3a047fcb45.vsidx +0 -0
- /package/.vs/sync/FileContentIndex/{c124698b-787d-47cd-a04b-0fc30de7e469.vsidx → 08a1b6d5-6909-4155-8db3-76966f46fa1f.vsidx} +0 -0
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -154,11 +154,15 @@ declare module "@mindline/sync" {
|
|
|
154
154
|
name: string;
|
|
155
155
|
description: string;
|
|
156
156
|
isEnabled: boolean;
|
|
157
|
+
isReadPermissionConsented: boolean;
|
|
157
158
|
email: string;
|
|
158
159
|
tenantId: string;
|
|
159
160
|
sel: boolean; // selection state
|
|
160
161
|
constructor();
|
|
161
162
|
}
|
|
163
|
+
|
|
164
|
+
export type ConfigType = 'sync' | 'auditlogs';
|
|
165
|
+
|
|
162
166
|
// class to group Users, Tenants, and Configs
|
|
163
167
|
export class Workspace {
|
|
164
168
|
id: string;
|
|
@@ -176,6 +180,7 @@ declare module "@mindline/sync" {
|
|
|
176
180
|
us: User[];
|
|
177
181
|
ts: Tenant[];
|
|
178
182
|
cs: Config[];
|
|
183
|
+
acs: AuditConfig[];
|
|
179
184
|
ws: Workspace[];
|
|
180
185
|
configlevelconsent_configid: string;
|
|
181
186
|
configlevelconsent_access: TenantConfigType;
|
package/src/index.ts
CHANGED
|
Binary file
|
|
Binary file
|