Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39d45c80b9 | ||
|
|
c415912a0a | ||
|
|
868bf0dc53 | ||
|
|
94c10f13e9 |
5
dist/fastify.d.ts
vendored
Normal file
5
dist/fastify.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
export type ServiceResult = {
|
||||||
|
result: unknown;
|
||||||
|
succesful: boolean;
|
||||||
|
};
|
||||||
|
//# 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,EAAE,OAAO,CAAC;IAChB,SAAS,EAAE,OAAO,CAAC;CACpB,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.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@dpu/shared",
|
"name": "@dpu/shared",
|
||||||
"version": "1.0.14",
|
"version": "1.1.1",
|
||||||
"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.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
|
|||||||
4
src/fastify.ts
Normal file
4
src/fastify.ts
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
export type ServiceResult = {
|
||||||
|
result: unknown;
|
||||||
|
succesful: boolean;
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user