@mindline/sync 1.0.69 → 1.0.70

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.
@@ -2,6 +2,5 @@
2
2
  "ExpandedNodes": [
3
3
  ""
4
4
  ],
5
- "SelectedNode": "\\index.d.ts",
6
5
  "PreviewInSolutionExplorer": false
7
6
  }
package/.vs/slnx.sqlite CHANGED
Binary file
Binary file
@@ -70,9 +70,10 @@
70
70
  "RelativeDocumentMoniker": "hybridspa.ts",
71
71
  "ToolTip": "C:\\Users\\ArvindSuthar\\source\\repos\\front\\sync\\hybridspa.ts",
72
72
  "RelativeToolTip": "hybridspa.ts",
73
- "ViewState": "AQIAAO8AAAAAAAAAAAAuwAUBAAAAAAAA",
73
+ "ViewState": "AQIAAOcAAAAAAAAAAAAwwBEBAAAHAAAA",
74
74
  "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003213|",
75
- "WhenOpened": "2023-11-25T02:18:34.862Z"
75
+ "WhenOpened": "2023-11-25T02:18:34.862Z",
76
+ "EditorCaption": ""
76
77
  },
77
78
  {
78
79
  "$type": "Document",
@@ -82,7 +83,7 @@
82
83
  "RelativeDocumentMoniker": "index.ts",
83
84
  "ToolTip": "C:\\Users\\ArvindSuthar\\source\\repos\\front\\sync\\index.ts",
84
85
  "RelativeToolTip": "index.ts",
85
- "ViewState": "AQIAAEMEAAAAAAAAAAAjwGYEAAARAAAA",
86
+ "ViewState": "AQIAANgAAAAAAAAAAAAwwO4AAAANAAAA",
86
87
  "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003213|",
87
88
  "WhenOpened": "2023-12-05T02:10:16.04Z",
88
89
  "EditorCaption": ""
@@ -95,7 +96,7 @@
95
96
  "RelativeDocumentMoniker": "index.d.ts",
96
97
  "ToolTip": "C:\\Users\\ArvindSuthar\\source\\repos\\front\\sync\\index.d.ts",
97
98
  "RelativeToolTip": "index.d.ts",
98
- "ViewState": "AQIAANwAAAAAAAAAAAAAAO4AAAAZAAAA",
99
+ "ViewState": "AQIAAGkAAAAAAAAAAAAwwH8AAAAIAAAA",
99
100
  "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003213|",
100
101
  "WhenOpened": "2024-01-01T16:19:43.325Z",
101
102
  "EditorCaption": ""
package/index.d.ts CHANGED
@@ -124,8 +124,8 @@ declare module "@mindline/sync" {
124
124
  usersWritten: number;
125
125
  configId: string;
126
126
  batchId: string;
127
- isReadPermissionConsented: string;
128
- isWritePermissionConsented: string;
127
+ isReadPermissionConsented: boolean;
128
+ isWritePermissionConsented: boolean;
129
129
  }
130
130
  export class Config {
131
131
  id: string;
package/index.ts CHANGED
@@ -222,8 +222,8 @@ export class TenantConfigInfo {
222
222
  usersWritten: number;
223
223
  configId: string;
224
224
  batchId: string;
225
- isReadPermissionConsented: string;
226
- isWritePermissionConsented: string;
225
+ isReadPermissionConsented: boolean;
226
+ isWritePermissionConsented: boolean;
227
227
  constructor() {
228
228
  this.tid = "";
229
229
  this.sourceGroupId = "";
@@ -235,8 +235,8 @@ export class TenantConfigInfo {
235
235
  this.usersWritten = 0;
236
236
  this.configId = "";
237
237
  this.batchId = "";
238
- this.isReadPermissionConsented = "";
239
- this.isWritePermissionConsented = "";
238
+ this.isReadPermissionConsented = false;
239
+ this.isWritePermissionConsented = false;
240
240
  }
241
241
  }
242
242
  export class Config {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mindline/sync",
3
3
  "type": "module",
4
- "version": "1.0.69",
4
+ "version": "1.0.70",
5
5
  "types": "index.d.ts",
6
6
  "exports": "./index.ts",
7
7
  "description": "sync is a node.js package encapsulating javscript classes required for configuring Mindline sync service.",