@effect-app/vue 4.0.0-beta.272 → 4.0.0-beta.274
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/CHANGELOG.md +17 -0
- package/dist/atomQuery.d.ts +90 -0
- package/dist/atomQuery.d.ts.map +1 -0
- package/dist/atomQuery.js +275 -0
- package/dist/internal/tanstackQuery.d.ts +9 -0
- package/dist/internal/tanstackQuery.d.ts.map +1 -0
- package/dist/internal/tanstackQuery.js +155 -0
- package/dist/makeClient.d.ts +75 -13
- package/dist/makeClient.d.ts.map +1 -1
- package/dist/makeClient.js +205 -77
- package/dist/mutate.d.ts +20 -12
- package/dist/mutate.d.ts.map +1 -1
- package/dist/mutate.js +65 -64
- package/dist/query.d.ts +122 -13
- package/dist/query.d.ts.map +1 -1
- package/dist/query.js +291 -181
- package/docs/atom-query-api-redesign.md +191 -0
- package/package.json +2 -2
- package/src/atomQuery.ts +361 -0
- package/src/internal/tanstackQuery.ts +242 -0
- package/src/makeClient.ts +404 -92
- package/src/mutate.ts +101 -110
- package/src/query.ts +596 -247
- package/test/dist/stubs.d.ts +169 -2
- package/test/dist/stubs.d.ts.map +1 -1
- package/test/dist/stubs.js +11 -6
- package/test/makeClient.test.ts +110 -0
- package/test/stubs.ts +10 -5
- package/tsconfig.json.bak +72 -14
package/tsconfig.json.bak
CHANGED
|
@@ -1,15 +1,73 @@
|
|
|
1
1
|
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"strict": true,
|
|
4
|
+
"allowUnusedLabels": false,
|
|
5
|
+
"allowUnreachableCode": false,
|
|
6
|
+
"exactOptionalPropertyTypes": true,
|
|
7
|
+
"noFallthroughCasesInSwitch": true,
|
|
8
|
+
"noImplicitOverride": true,
|
|
9
|
+
"noImplicitReturns": false,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
11
|
+
"noUncheckedIndexedAccess": true,
|
|
12
|
+
"noUnusedLocals": true,
|
|
13
|
+
"noUnusedParameters": true,
|
|
14
|
+
"isolatedModules": true,
|
|
15
|
+
"esModuleInterop": true,
|
|
16
|
+
"skipLibCheck": true,
|
|
17
|
+
"plugins": [],
|
|
18
|
+
"module": "Node16",
|
|
19
|
+
"lib": [
|
|
20
|
+
"ES2023"
|
|
21
|
+
],
|
|
22
|
+
"target": "es2022",
|
|
23
|
+
"inlineSourceMap": true,
|
|
24
|
+
"incremental": true,
|
|
25
|
+
"composite": true,
|
|
26
|
+
"declarationMap": true,
|
|
27
|
+
"experimentalDecorators": true,
|
|
28
|
+
"emitDecoratorMetadata": true,
|
|
29
|
+
"noImplicitAny": true,
|
|
30
|
+
"useUnknownInCatchVariables": true,
|
|
31
|
+
"noImplicitThis": true,
|
|
32
|
+
"outDir": "build/dist",
|
|
33
|
+
"resolveJsonModule": true,
|
|
34
|
+
"moduleResolution": "Node16",
|
|
35
|
+
"noErrorTruncation": true,
|
|
36
|
+
"forceConsistentCasingInFileNames": true,
|
|
37
|
+
"erasableSyntaxOnly": true,
|
|
38
|
+
"rewriteRelativeImportExtensions": true,
|
|
39
|
+
"allowImportingTsExtensions": true,
|
|
40
|
+
"types": [
|
|
41
|
+
"node"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"$schema": "https://www.schemastore.org/tsconfig",
|
|
45
|
+
"_version": "2.0.0",
|
|
46
|
+
"watchOptions": {
|
|
47
|
+
"watchFile": "useFsEvents",
|
|
48
|
+
"watchDirectory": "useFsEvents",
|
|
49
|
+
"fallbackPolling": "dynamicPriority",
|
|
50
|
+
"excludeDirectories": [
|
|
51
|
+
"**/node_modules",
|
|
52
|
+
"**/dist",
|
|
53
|
+
"**/.build",
|
|
54
|
+
"**/.git",
|
|
55
|
+
"**/.data",
|
|
56
|
+
"**/.logs",
|
|
57
|
+
"**/.*"
|
|
58
|
+
],
|
|
59
|
+
"excludeFiles": [
|
|
60
|
+
"**/*.tmp",
|
|
61
|
+
"openapi.json",
|
|
62
|
+
"*.json"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
"include": [],
|
|
66
|
+
"exclude": [
|
|
67
|
+
"**/node_modules",
|
|
68
|
+
"**/build",
|
|
69
|
+
"**/dist",
|
|
70
|
+
"**/.*"
|
|
71
|
+
],
|
|
72
|
+
"references": []
|
|
73
|
+
}
|