Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
868bf0dc53 | ||
|
|
94c10f13e9 |
6
dist/fastify.d.ts
vendored
Normal file
6
dist/fastify.d.ts
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
export type ServiceResult = {
|
||||||
|
result?: unknown;
|
||||||
|
error_message?: boolean;
|
||||||
|
error_code?: number;
|
||||||
|
};
|
||||||
|
//# sourceMappingURL=fastify.d.ts.map
|
||||||
1
dist/fastify.d.ts.map
vendored
Normal file
1
dist/fastify.d.ts.map
vendored
Normal file
@@ -0,0 +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"}
|
||||||
1
dist/fastify.js
vendored
Normal file
1
dist/fastify.js
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export {};
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@dpu/shared",
|
"name": "@dpu/shared",
|
||||||
"version": "1.0.14",
|
"version": "1.1.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@dpu/shared",
|
"name": "@dpu/shared",
|
||||||
"version": "1.0.14",
|
"version": "1.1.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.7.9",
|
"axios": "^1.7.9",
|
||||||
"chalk": "^5.6.2",
|
"chalk": "^5.6.2",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@dpu/shared",
|
"name": "@dpu/shared",
|
||||||
"version": "1.0.14",
|
"version": "1.1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
|
|||||||
5
src/fastify.ts
Normal file
5
src/fastify.ts
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
export type ServiceResult = {
|
||||||
|
result?: unknown;
|
||||||
|
error_message?: boolean;
|
||||||
|
error_code?: number;
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user