@voyantjs/facilities 0.28.3 → 0.29.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/routes.d.ts
CHANGED
|
@@ -57,8 +57,8 @@ export declare const facilitiesRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
57
57
|
latitude: number | null;
|
|
58
58
|
longitude: number | null;
|
|
59
59
|
address: string | null;
|
|
60
|
-
id: string;
|
|
61
60
|
name: string;
|
|
61
|
+
id: string;
|
|
62
62
|
createdAt: string;
|
|
63
63
|
updatedAt: string;
|
|
64
64
|
status: "active" | "inactive" | "archived";
|
|
@@ -551,8 +551,8 @@ export declare const facilitiesRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
551
551
|
metadata: {
|
|
552
552
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
553
553
|
} | null;
|
|
554
|
-
id: string;
|
|
555
554
|
name: string;
|
|
555
|
+
id: string;
|
|
556
556
|
createdAt: string;
|
|
557
557
|
updatedAt: string;
|
|
558
558
|
email: string | null;
|
|
@@ -685,8 +685,8 @@ export declare const facilitiesRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
685
685
|
output: {
|
|
686
686
|
data: {
|
|
687
687
|
category: "service" | "other" | "amenity" | "accessibility" | "security" | "policy";
|
|
688
|
-
id: string;
|
|
689
688
|
name: string;
|
|
689
|
+
id: string;
|
|
690
690
|
createdAt: string;
|
|
691
691
|
updatedAt: string;
|
|
692
692
|
description: string | null;
|
|
@@ -1098,8 +1098,8 @@ export declare const facilitiesRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
1098
1098
|
metadata: {
|
|
1099
1099
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
1100
1100
|
} | null;
|
|
1101
|
-
id: string;
|
|
1102
1101
|
name: string;
|
|
1102
|
+
id: string;
|
|
1103
1103
|
createdAt: string;
|
|
1104
1104
|
updatedAt: string;
|
|
1105
1105
|
status: "active" | "inactive" | "archived";
|
package/dist/service-core.d.ts
CHANGED
|
@@ -65,8 +65,8 @@ export declare function createFacility(db: PostgresJsDatabase, data: CreateFacil
|
|
|
65
65
|
latitude: number | null;
|
|
66
66
|
longitude: number | null;
|
|
67
67
|
address: string | null;
|
|
68
|
-
id: string;
|
|
69
68
|
name: string;
|
|
69
|
+
id: string;
|
|
70
70
|
createdAt: Date;
|
|
71
71
|
updatedAt: Date;
|
|
72
72
|
status: "active" | "inactive" | "archived";
|
|
@@ -134,8 +134,8 @@ export declare function listFacilityContacts(db: PostgresJsDatabase, query: Faci
|
|
|
134
134
|
}>;
|
|
135
135
|
export declare function createFacilityContact(db: PostgresJsDatabase, facilityId: string, data: CreateFacilityContactInput): Promise<{
|
|
136
136
|
metadata: Record<string, unknown> | null;
|
|
137
|
-
id: string;
|
|
138
137
|
name: string;
|
|
138
|
+
id: string;
|
|
139
139
|
createdAt: Date;
|
|
140
140
|
updatedAt: Date;
|
|
141
141
|
email: string | null;
|
|
@@ -20,8 +20,8 @@ export declare function listFacilityFeatures(db: PostgresJsDatabase, query: Faci
|
|
|
20
20
|
}>;
|
|
21
21
|
export declare function createFacilityFeature(db: PostgresJsDatabase, facilityId: string, data: CreateFacilityFeatureInput): Promise<{
|
|
22
22
|
category: "service" | "other" | "amenity" | "accessibility" | "security" | "policy";
|
|
23
|
-
id: string;
|
|
24
23
|
name: string;
|
|
24
|
+
id: string;
|
|
25
25
|
createdAt: Date;
|
|
26
26
|
updatedAt: Date;
|
|
27
27
|
description: string | null;
|
|
@@ -105,8 +105,8 @@ export declare function getPropertyGroupById(db: PostgresJsDatabase, id: string)
|
|
|
105
105
|
} | null>;
|
|
106
106
|
export declare function createPropertyGroup(db: PostgresJsDatabase, data: CreatePropertyGroupInput): Promise<{
|
|
107
107
|
metadata: Record<string, unknown> | null;
|
|
108
|
-
id: string;
|
|
109
108
|
name: string;
|
|
109
|
+
id: string;
|
|
110
110
|
createdAt: Date;
|
|
111
111
|
updatedAt: Date;
|
|
112
112
|
status: "active" | "inactive" | "archived";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/facilities",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"drizzle-orm": "^0.45.2",
|
|
30
30
|
"hono": "^4.12.10",
|
|
31
31
|
"zod": "^4.3.6",
|
|
32
|
-
"@voyantjs/core": "0.
|
|
33
|
-
"@voyantjs/db": "0.
|
|
34
|
-
"@voyantjs/hono": "0.
|
|
35
|
-
"@voyantjs/identity": "0.
|
|
32
|
+
"@voyantjs/core": "0.29.0",
|
|
33
|
+
"@voyantjs/db": "0.29.0",
|
|
34
|
+
"@voyantjs/hono": "0.29.0",
|
|
35
|
+
"@voyantjs/identity": "0.29.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"typescript": "^6.0.2",
|