@arkyn/server 1.3.21 → 1.3.23
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/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/package.json +3 -5
- package/src/index.ts +0 -1
- package/src/helpers/uuid.ts +0 -7
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,5 @@ export { UnprocessableEntityError } from "./httpBadResponses/unprocessableEntity
|
|
|
8
8
|
export { formParse } from "./helpers/formParse";
|
|
9
9
|
export { getScopedParams } from "./helpers/getScopedParams";
|
|
10
10
|
export { globalErrorHandler } from "./helpers/globalErrorHandler";
|
|
11
|
-
export { uuid } from "./helpers/uuid";
|
|
12
11
|
export { validateCPF } from "./helpers/validateCPF";
|
|
13
12
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAC7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAE,wBAAwB,EAAE,MAAM,wCAAwC,CAAC;AAGlF,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAC7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAE,wBAAwB,EAAE,MAAM,wCAAwC,CAAC;AAGlF,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -10,5 +10,4 @@ export { UnprocessableEntityError } from "./httpBadResponses/unprocessableEntity
|
|
|
10
10
|
export { formParse } from "./helpers/formParse";
|
|
11
11
|
export { getScopedParams } from "./helpers/getScopedParams";
|
|
12
12
|
export { globalErrorHandler } from "./helpers/globalErrorHandler";
|
|
13
|
-
export { uuid } from "./helpers/uuid";
|
|
14
13
|
export { validateCPF } from "./helpers/validateCPF";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkyn/server",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.23",
|
|
4
4
|
"main": "./dist/bundle.js",
|
|
5
5
|
"module": "./src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -10,12 +10,10 @@
|
|
|
10
10
|
"typecheck": "bunx tsc --project tsconfig.json --noEmit"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@remix-run/node": ">=2.9.2"
|
|
14
|
-
"uuid": "^10.0.0"
|
|
13
|
+
"@remix-run/node": ">=2.9.2"
|
|
15
14
|
},
|
|
16
15
|
"devDependencies": {
|
|
17
16
|
"bun-types": "latest",
|
|
18
|
-
"typescript": "^5.5.2"
|
|
19
|
-
"@types/uuid": "^10.0.0"
|
|
17
|
+
"typescript": "^5.5.2"
|
|
20
18
|
}
|
|
21
19
|
}
|
package/src/index.ts
CHANGED
|
@@ -11,5 +11,4 @@ export { UnprocessableEntityError } from "./httpBadResponses/unprocessableEntity
|
|
|
11
11
|
export { formParse } from "./helpers/formParse";
|
|
12
12
|
export { getScopedParams } from "./helpers/getScopedParams";
|
|
13
13
|
export { globalErrorHandler } from "./helpers/globalErrorHandler";
|
|
14
|
-
export { uuid } from "./helpers/uuid";
|
|
15
14
|
export { validateCPF } from "./helpers/validateCPF";
|