@mindline/sync 1.0.90 → 1.0.92
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 +4 -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/11f04bb9-c8c3-49b8-b9b0-23b59361ea60.vsidx +0 -0
- package/.vs/sync/FileContentIndex/32415761-521c-4586-b2be-358aa800c295.vsidx +0 -0
- package/.vs/sync/FileContentIndex/5f0eff90-00ed-4490-92bb-d2c0bedd89b6.vsidx +0 -0
- package/.vs/sync/FileContentIndex/cb5cf66e-d79f-4452-9b8b-b759f711e4af.vsidx +0 -0
- package/.vs/sync/FileContentIndex/fee90bf7-9f86-4fc9-a06e-ccbbe7777bfe.vsidx +0 -0
- package/.vs/sync/v17/.wsuo +0 -0
- package/.vs/sync/v17/DocumentLayout.backup.json +53 -20
- package/.vs/sync/v17/DocumentLayout.json +18 -33
- package/dist/actors.json.d.ts +22 -0
- package/dist/configs.json.d.ts +3 -0
- package/dist/index.d.ts +348 -0
- package/dist/resources.json.d.ts +60 -0
- package/dist/sync.es.js +2096 -0
- package/dist/sync.es.js.map +1 -0
- package/dist/sync.umd.js +54 -0
- package/dist/sync.umd.js.map +1 -0
- package/dist/syncmilestones.json.d.ts +25 -0
- package/dist/tenants.json.d.ts +13 -0
- package/dist/users.json.d.ts +15 -0
- package/dist/workspaces.json.d.ts +12 -0
- package/package.json +23 -13
- package/{index.ts → src/index.ts} +206 -147
- package/tsconfig.json +11 -14
- package/vite.config.ts +31 -0
- package/.vs/sync/FileContentIndex/0f447c8e-f707-40c3-aa4c-30bfeab10f57.vsidx +0 -0
- package/.vs/sync/FileContentIndex/14855cf9-9dc6-406b-8690-3a6fd40f6dea.vsidx +0 -0
- package/tasks.ts +0 -55
- /package/{README.md → src/README.md} +0 -0
- /package/{actors.json → src/actors.json} +0 -0
- /package/{configs.json → src/configs.json} +0 -0
- /package/{configs2.json → src/configs2.json} +0 -0
- /package/{index.d.ts → src/index.d.ts} +0 -0
- /package/{mockconfig.json → src/mockconfig.json} +0 -0
- /package/{resources.json → src/resources.json} +0 -0
- /package/{syncmilestones.json → src/syncmilestones.json} +0 -0
- /package/{tenants.json → src/tenants.json} +0 -0
- /package/{tenants2.json → src/tenants2.json} +0 -0
- /package/{users.json → src/users.json} +0 -0
- /package/{users2.json → src/users2.json} +0 -0
- /package/{workspaces.json → src/workspaces.json} +0 -0
- /package/{workspaces2.json → src/workspaces2.json} +0 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _default: [
|
|
2
|
+
{
|
|
3
|
+
"Run": "3",
|
|
4
|
+
"Start": "2023-09-17T12:00:00.000-07:00",
|
|
5
|
+
"POST": "2023-09-17T12:00:09.500-07:00",
|
|
6
|
+
"Read": "2023-09-17T12:00:15.500-07:00",
|
|
7
|
+
"Write": "2023-09-17T12:01:30.000-07:00"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"Run": "2",
|
|
11
|
+
"Start": "2023-09-17T12:00:00.000-07:00",
|
|
12
|
+
"POST": "2023-09-17T12:00:09.500-07:00",
|
|
13
|
+
"Read": "2023-09-17T12:00:15.500-07:00",
|
|
14
|
+
"Write": "2023-09-17T12:01:30.000-07:00"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"Run": "1",
|
|
18
|
+
"Start": "2023-09-17T12:00:00.000-07:00",
|
|
19
|
+
"POST": "2023-09-17T12:00:09.500-07:00",
|
|
20
|
+
"Read": "2023-09-17T12:00:15.500-07:00",
|
|
21
|
+
"Write": "2023-09-17T12:01:30.000-07:00"
|
|
22
|
+
}
|
|
23
|
+
];
|
|
24
|
+
|
|
25
|
+
export default _default;
|
package/package.json
CHANGED
|
@@ -1,26 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindline/sync",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
3
|
+
"version": "1.0.92",
|
|
4
|
+
"description": "sync is a node.js package encapsulating JavaScript classes required for configuring Mindline sync service.",
|
|
5
|
+
"main": "dist/sync.es.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./dist/sync.es.js"
|
|
9
|
+
},
|
|
8
10
|
"scripts": {
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
+
"build": "vite build",
|
|
12
|
+
"test": "vitest"
|
|
11
13
|
},
|
|
12
14
|
"keywords": [],
|
|
13
|
-
"author": "",
|
|
15
|
+
"author": "Arvind Suthar",
|
|
14
16
|
"license": "ISC",
|
|
17
|
+
"type": "module",
|
|
15
18
|
"devDependencies": {
|
|
16
|
-
"@types/react": "^18.
|
|
17
|
-
"@types/react-dom": "^18.
|
|
18
|
-
"typescript": "^5.
|
|
19
|
-
"
|
|
19
|
+
"@types/react": "^18.0.0",
|
|
20
|
+
"@types/react-dom": "^18.0.0",
|
|
21
|
+
"typescript": "^5.0.0",
|
|
22
|
+
"vite": "^6.2.5",
|
|
23
|
+
"vitest": "3.0.9",
|
|
24
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
25
|
+
"vite-plugin-dts": "^4.5.3"
|
|
20
26
|
},
|
|
21
27
|
"dependencies": {
|
|
28
|
+
"reflect-metadata": "^0.2.2"
|
|
29
|
+
},
|
|
30
|
+
"peerDependencies": {
|
|
22
31
|
"@microsoft/signalr": "^8.0.7",
|
|
23
32
|
"class-transformer": "^0.5.1",
|
|
24
|
-
"
|
|
33
|
+
"react": "^18.2.0",
|
|
34
|
+
"react-dom": "^18.2.0"
|
|
25
35
|
}
|
|
26
36
|
}
|