@voyantjs/facilities-react 0.2.0
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/dist/client.d.ts +14 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +58 -0
- package/dist/hooks/index.d.ts +16 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/index.js +15 -0
- package/dist/hooks/use-facilities.d.ts +31 -0
- package/dist/hooks/use-facilities.d.ts.map +1 -0
- package/dist/hooks/use-facilities.js +12 -0
- package/dist/hooks/use-facility-feature-mutation.d.ts +37 -0
- package/dist/hooks/use-facility-feature-mutation.d.ts.map +1 -0
- package/dist/hooks/use-facility-feature-mutation.js +38 -0
- package/dist/hooks/use-facility-features.d.ts +21 -0
- package/dist/hooks/use-facility-features.d.ts.map +1 -0
- package/dist/hooks/use-facility-features.js +12 -0
- package/dist/hooks/use-facility-mutation.d.ts +74 -0
- package/dist/hooks/use-facility-mutation.d.ts.map +1 -0
- package/dist/hooks/use-facility-mutation.js +45 -0
- package/dist/hooks/use-facility-operation-schedule-mutation.d.ts +37 -0
- package/dist/hooks/use-facility-operation-schedule-mutation.d.ts.map +1 -0
- package/dist/hooks/use-facility-operation-schedule-mutation.js +44 -0
- package/dist/hooks/use-facility-operation-schedules.d.ts +21 -0
- package/dist/hooks/use-facility-operation-schedules.d.ts.map +1 -0
- package/dist/hooks/use-facility-operation-schedules.js +12 -0
- package/dist/hooks/use-facility.d.ts +25 -0
- package/dist/hooks/use-facility.d.ts.map +1 -0
- package/dist/hooks/use-facility.js +12 -0
- package/dist/hooks/use-properties.d.ts +23 -0
- package/dist/hooks/use-properties.d.ts.map +1 -0
- package/dist/hooks/use-properties.js +12 -0
- package/dist/hooks/use-property-group-member-mutation.d.ts +41 -0
- package/dist/hooks/use-property-group-member-mutation.d.ts.map +1 -0
- package/dist/hooks/use-property-group-member-mutation.js +38 -0
- package/dist/hooks/use-property-group-members.d.ts +20 -0
- package/dist/hooks/use-property-group-members.d.ts.map +1 -0
- package/dist/hooks/use-property-group-members.js +12 -0
- package/dist/hooks/use-property-group-mutation.d.ts +50 -0
- package/dist/hooks/use-property-group-mutation.d.ts.map +1 -0
- package/dist/hooks/use-property-group-mutation.js +39 -0
- package/dist/hooks/use-property-group.d.ts +17 -0
- package/dist/hooks/use-property-group.d.ts.map +1 -0
- package/dist/hooks/use-property-group.js +12 -0
- package/dist/hooks/use-property-groups.d.ts +23 -0
- package/dist/hooks/use-property-groups.d.ts.map +1 -0
- package/dist/hooks/use-property-groups.js +12 -0
- package/dist/hooks/use-property-mutation.d.ts +50 -0
- package/dist/hooks/use-property-mutation.d.ts.map +1 -0
- package/dist/hooks/use-property-mutation.js +40 -0
- package/dist/hooks/use-property.d.ts +17 -0
- package/dist/hooks/use-property.d.ts.map +1 -0
- package/dist/hooks/use-property.js +12 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6 -0
- package/dist/provider.d.ts +2 -0
- package/dist/provider.d.ts.map +1 -0
- package/dist/provider.js +1 -0
- package/dist/query-keys.d.ts +68 -0
- package/dist/query-keys.d.ts.map +1 -0
- package/dist/query-keys.js +21 -0
- package/dist/query-options.d.ts +808 -0
- package/dist/query-options.d.ts.map +1 -0
- package/dist/query-options.js +126 -0
- package/dist/schemas.d.ts +461 -0
- package/dist/schemas.d.ts.map +1 -0
- package/dist/schemas.js +84 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@voyantjs/facilities-react",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"license": "FSL-1.1-Apache-2.0",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/voyantjs/voyant.git",
|
|
8
|
+
"directory": "packages/facilities-react"
|
|
9
|
+
},
|
|
10
|
+
"type": "module",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": "./src/index.ts",
|
|
13
|
+
"./provider": "./src/provider.tsx",
|
|
14
|
+
"./hooks": "./src/hooks/index.ts",
|
|
15
|
+
"./client": "./src/client.ts",
|
|
16
|
+
"./query-keys": "./src/query-keys.ts"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc -p tsconfig.json",
|
|
20
|
+
"clean": "rm -rf dist",
|
|
21
|
+
"prepack": "pnpm run build",
|
|
22
|
+
"typecheck": "tsc --noEmit",
|
|
23
|
+
"lint": "biome check src/",
|
|
24
|
+
"test": "vitest run --passWithNoTests"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"@voyantjs/facilities": "workspace:*",
|
|
28
|
+
"@tanstack/react-query": "^5.0.0",
|
|
29
|
+
"react": "^19.0.0",
|
|
30
|
+
"react-dom": "^19.0.0",
|
|
31
|
+
"zod": "^4.0.0"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@tanstack/react-query": "^5.96.2",
|
|
35
|
+
"@types/react": "^19.2.14",
|
|
36
|
+
"@types/react-dom": "^19.2.3",
|
|
37
|
+
"@voyantjs/facilities": "workspace:*",
|
|
38
|
+
"@voyantjs/react": "workspace:*",
|
|
39
|
+
"@voyantjs/voyant-typescript-config": "workspace:*",
|
|
40
|
+
"react": "^19.2.4",
|
|
41
|
+
"react-dom": "^19.2.4",
|
|
42
|
+
"typescript": "^6.0.2",
|
|
43
|
+
"vitest": "^4.1.2",
|
|
44
|
+
"zod": "^4.3.6"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@voyantjs/react": "workspace:*"
|
|
48
|
+
},
|
|
49
|
+
"files": [
|
|
50
|
+
"dist"
|
|
51
|
+
],
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"access": "public",
|
|
54
|
+
"exports": {
|
|
55
|
+
".": {
|
|
56
|
+
"types": "./dist/index.d.ts",
|
|
57
|
+
"import": "./dist/index.js"
|
|
58
|
+
},
|
|
59
|
+
"./provider": {
|
|
60
|
+
"types": "./dist/provider.d.ts",
|
|
61
|
+
"import": "./dist/provider.js"
|
|
62
|
+
},
|
|
63
|
+
"./hooks": {
|
|
64
|
+
"types": "./dist/hooks/index.d.ts",
|
|
65
|
+
"import": "./dist/hooks/index.js"
|
|
66
|
+
},
|
|
67
|
+
"./client": {
|
|
68
|
+
"types": "./dist/client.d.ts",
|
|
69
|
+
"import": "./dist/client.js"
|
|
70
|
+
},
|
|
71
|
+
"./query-keys": {
|
|
72
|
+
"types": "./dist/query-keys.d.ts",
|
|
73
|
+
"import": "./dist/query-keys.js"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"main": "./dist/index.js",
|
|
77
|
+
"types": "./dist/index.d.ts"
|
|
78
|
+
}
|
|
79
|
+
}
|