Compare commits

..

4 Commits

Author SHA1 Message Date
Darius
5f9b97ca54 1.1.2 2025-11-21 16:07:03 +01:00
Darius
0103f73c39 Generic Commit; Most likely a fix or small feature 2025-11-21 16:07:01 +01:00
Darius
39d45c80b9 1.1.1 2025-11-21 15:57:56 +01:00
Darius
c415912a0a Generic Commit; Most likely a fix or small feature 2025-11-21 15:57:48 +01:00
5 changed files with 10 additions and 12 deletions

7
dist/fastify.d.ts vendored
View File

@@ -1,6 +1,5 @@
export type ServiceResult = {
result?: unknown;
error_message?: boolean;
error_code?: number;
export type ServiceResult<T = unknown> = {
result: T;
succesful: boolean;
};
//# sourceMappingURL=fastify.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"fastify.d.ts","sourceRoot":"","sources":["../src/fastify.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG;IAC1B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC"}
{"version":3,"file":"fastify.d.ts","sourceRoot":"","sources":["../src/fastify.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,CAAC,CAAC,GAAG,OAAO,IAAI;IACvC,MAAM,EAAE,CAAC,CAAC;IACV,SAAS,EAAE,OAAO,CAAC;CACpB,CAAC"}

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@dpu/shared",
"version": "1.1.0",
"version": "1.1.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@dpu/shared",
"version": "1.1.0",
"version": "1.1.2",
"dependencies": {
"axios": "^1.7.9",
"chalk": "^5.6.2",

View File

@@ -1,6 +1,6 @@
{
"name": "@dpu/shared",
"version": "1.1.0",
"version": "1.1.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -1,5 +1,4 @@
export type ServiceResult = {
result?: unknown;
error_message?: boolean;
error_code?: number;
export type ServiceResult<T = unknown> = {
result: T;
succesful: boolean;
};