@voyantjs/resources 0.6.8 → 0.7.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 +1 -1
- package/dist/service.d.ts +1 -1
- package/package.json +6 -6
package/dist/routes.d.ts
CHANGED
|
@@ -1057,12 +1057,12 @@ export declare const resourcesRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
1057
1057
|
data: {
|
|
1058
1058
|
id: string;
|
|
1059
1059
|
createdAt: string;
|
|
1060
|
+
createdBy: string | null;
|
|
1060
1061
|
resourceId: string;
|
|
1061
1062
|
dateLocal: string;
|
|
1062
1063
|
startsAt: string | null;
|
|
1063
1064
|
endsAt: string | null;
|
|
1064
1065
|
reason: string | null;
|
|
1065
|
-
createdBy: string | null;
|
|
1066
1066
|
} | undefined;
|
|
1067
1067
|
};
|
|
1068
1068
|
outputFormat: "json";
|
package/dist/service.d.ts
CHANGED
|
@@ -347,12 +347,12 @@ export declare const resourcesService: {
|
|
|
347
347
|
createCloseout(db: PostgresJsDatabase, data: CreateResourceCloseoutInput): Promise<{
|
|
348
348
|
id: string;
|
|
349
349
|
createdAt: Date;
|
|
350
|
+
createdBy: string | null;
|
|
350
351
|
resourceId: string;
|
|
351
352
|
dateLocal: string;
|
|
352
353
|
startsAt: Date | null;
|
|
353
354
|
endsAt: Date | null;
|
|
354
355
|
reason: string | null;
|
|
355
|
-
createdBy: string | null;
|
|
356
356
|
} | undefined>;
|
|
357
357
|
updateCloseout(db: PostgresJsDatabase, id: string, data: UpdateResourceCloseoutInput): Promise<{
|
|
358
358
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/resources",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"license": "FSL-1.1-Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"drizzle-orm": "^0.45.2",
|
|
26
26
|
"hono": "^4.12.10",
|
|
27
27
|
"zod": "^4.3.6",
|
|
28
|
-
"@voyantjs/core": "0.
|
|
29
|
-
"@voyantjs/db": "0.
|
|
30
|
-
"@voyantjs/hono": "0.
|
|
28
|
+
"@voyantjs/core": "0.7.0",
|
|
29
|
+
"@voyantjs/db": "0.7.0",
|
|
30
|
+
"@voyantjs/hono": "0.7.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"typescript": "^6.0.2",
|
|
34
|
-
"@voyantjs/availability": "0.
|
|
35
|
-
"@voyantjs/products": "0.
|
|
34
|
+
"@voyantjs/availability": "0.7.0",
|
|
35
|
+
"@voyantjs/products": "0.7.0",
|
|
36
36
|
"@voyantjs/voyant-typescript-config": "0.1.0"
|
|
37
37
|
},
|
|
38
38
|
"files": [
|