@spytecgps/lambda-utils 2.3.25 → 2.3.26

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.js CHANGED
@@ -169,7 +169,7 @@ const SpytecJoi = Joi__namespace.extend((joi) => ({
169
169
  const getAuthorizerValidator = (params = {}) => {
170
170
  return Joi__namespace.object({
171
171
  clientId: Joi__namespace.number().greater(0).required(),
172
- userId: Joi__namespace.string().guid({ version: 'uuidv4' }).required(),
172
+ userId: Joi__namespace.string().guid( /*{ version: 'uuidv4' }*/).required(),
173
173
  resources: json.object({}),
174
174
  scope: Joi__namespace.string().optional(),
175
175
  // .error(() => new UnauthorizedError(`missing scope ${scope}`))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/lambda-utils",
3
- "version": "2.3.25",
3
+ "version": "2.3.26",
4
4
  "description": "Lambda Utils",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -74,4 +74,4 @@
74
74
  "files": [
75
75
  "dist/**/*"
76
76
  ]
77
- }
77
+ }
@@ -1,2 +0,0 @@
1
- import { logger, withRequest } from '@spytecgps/sdk-logger';
2
- export { logger, withRequest };