@mindline/sync 1.0.89 → 1.0.91
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 -2
- 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/{6ae8ea19-641b-4811-a4ef-e70ea6cb6339.vsidx → 0f447c8e-f707-40c3-aa4c-30bfeab10f57.vsidx} +0 -0
- package/.vs/sync/FileContentIndex/b3821e23-fbe8-43ca-9167-2deeb211602b.vsidx +0 -0
- package/.vs/sync/v17/.wsuo +0 -0
- package/.vs/sync/v17/DocumentLayout.backup.json +52 -2
- package/.vs/sync/v17/DocumentLayout.json +73 -22
- 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 +4214 -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 +20 -12
- package/{index.ts → src/index.ts} +206 -148
- package/tsconfig.json +11 -14
- package/vite.config.ts +31 -0
- package/.vs/sync/FileContentIndex/9d767116-a2e8-4565-8920-26919169781d.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,60 @@
|
|
|
1
|
+
declare const _default: [
|
|
2
|
+
{
|
|
3
|
+
"type": "mg",
|
|
4
|
+
"resource": "Tenant Root Group",
|
|
5
|
+
"cost": 0,
|
|
6
|
+
"expanded": true,
|
|
7
|
+
"resources": [
|
|
8
|
+
{
|
|
9
|
+
"type": "sub",
|
|
10
|
+
"resource": "Applications",
|
|
11
|
+
"cost": 16677.52,
|
|
12
|
+
"expanded": true,
|
|
13
|
+
"resources": [
|
|
14
|
+
{
|
|
15
|
+
"type": "rg",
|
|
16
|
+
"resource": "ssfdev",
|
|
17
|
+
"cost": 7500.08,
|
|
18
|
+
"expanded": true,
|
|
19
|
+
"resources": [
|
|
20
|
+
{
|
|
21
|
+
"type": "resources",
|
|
22
|
+
"resource": "SSFServices",
|
|
23
|
+
"cost": 0,
|
|
24
|
+
"expanded": false,
|
|
25
|
+
"resources": [
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"type": "sub",
|
|
34
|
+
"resource": "Infrastructure",
|
|
35
|
+
"cost": 8737.58,
|
|
36
|
+
"expanded": true,
|
|
37
|
+
"resources": [
|
|
38
|
+
{
|
|
39
|
+
"type": "rg",
|
|
40
|
+
"resource": "SFFA_Prod_Mgmt_Shared_Resources_RG",
|
|
41
|
+
"cost": 7500.08,
|
|
42
|
+
"expanded": true,
|
|
43
|
+
"resources": [
|
|
44
|
+
{
|
|
45
|
+
"type": "resources",
|
|
46
|
+
"resource": "SSFA-Prod-UTIL-01",
|
|
47
|
+
"cost": 0,
|
|
48
|
+
"expanded": false,
|
|
49
|
+
"resources": [
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
];
|
|
59
|
+
|
|
60
|
+
export default _default;
|