@feathersjs/generators 5.0.0-pre.35 → 5.0.0-pre.37

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.
Files changed (58) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/LICENSE +1 -1
  3. package/README.md +1 -1
  4. package/lib/app/templates/client.tpl.js +9 -4
  5. package/lib/app/templates/client.tpl.js.map +1 -1
  6. package/lib/app/templates/client.tpl.ts +9 -4
  7. package/lib/app/templates/configuration.tpl.js +1 -0
  8. package/lib/app/templates/configuration.tpl.js.map +1 -1
  9. package/lib/app/templates/configuration.tpl.ts +1 -0
  10. package/lib/app/templates/package.json.tpl.js +1 -1
  11. package/lib/app/templates/package.json.tpl.js.map +1 -1
  12. package/lib/app/templates/package.json.tpl.ts +1 -1
  13. package/lib/app/templates/validators.tpl.js +1 -2
  14. package/lib/app/templates/validators.tpl.js.map +1 -1
  15. package/lib/app/templates/validators.tpl.ts +1 -2
  16. package/lib/authentication/templates/knex.tpl.js +1 -9
  17. package/lib/authentication/templates/knex.tpl.js.map +1 -1
  18. package/lib/authentication/templates/knex.tpl.ts +5 -11
  19. package/lib/authentication/templates/schema.json.tpl.js +10 -4
  20. package/lib/authentication/templates/schema.json.tpl.js.map +1 -1
  21. package/lib/authentication/templates/schema.json.tpl.ts +12 -4
  22. package/lib/authentication/templates/schema.typebox.tpl.js +5 -4
  23. package/lib/authentication/templates/schema.typebox.tpl.js.map +1 -1
  24. package/lib/authentication/templates/schema.typebox.tpl.ts +5 -4
  25. package/lib/commons.d.ts +5 -0
  26. package/lib/commons.js +15 -1
  27. package/lib/commons.js.map +1 -1
  28. package/lib/commons.ts +17 -0
  29. package/lib/connection/templates/mongodb.tpl.js +7 -1
  30. package/lib/connection/templates/mongodb.tpl.js.map +1 -1
  31. package/lib/connection/templates/mongodb.tpl.ts +9 -1
  32. package/lib/service/templates/client.tpl.js +7 -16
  33. package/lib/service/templates/client.tpl.js.map +1 -1
  34. package/lib/service/templates/client.tpl.ts +14 -39
  35. package/lib/service/templates/schema.json.tpl.js +10 -3
  36. package/lib/service/templates/schema.json.tpl.js.map +1 -1
  37. package/lib/service/templates/schema.json.tpl.ts +12 -3
  38. package/lib/service/templates/schema.typebox.tpl.js +5 -4
  39. package/lib/service/templates/schema.typebox.tpl.js.map +1 -1
  40. package/lib/service/templates/schema.typebox.tpl.ts +5 -4
  41. package/lib/service/templates/service.tpl.d.ts +1 -1
  42. package/lib/service/templates/service.tpl.js +6 -5
  43. package/lib/service/templates/service.tpl.js.map +1 -1
  44. package/lib/service/templates/service.tpl.ts +5 -5
  45. package/lib/service/templates/shared.tpl.d.ts +2 -0
  46. package/lib/service/templates/shared.tpl.js +50 -0
  47. package/lib/service/templates/shared.tpl.js.map +1 -0
  48. package/lib/service/templates/shared.tpl.ts +61 -0
  49. package/lib/service/type/custom.tpl.js +16 -13
  50. package/lib/service/type/custom.tpl.js.map +1 -1
  51. package/lib/service/type/custom.tpl.ts +16 -13
  52. package/lib/service/type/knex.tpl.js +7 -9
  53. package/lib/service/type/knex.tpl.js.map +1 -1
  54. package/lib/service/type/knex.tpl.ts +8 -11
  55. package/lib/service/type/mongodb.tpl.js +6 -4
  56. package/lib/service/type/mongodb.tpl.js.map +1 -1
  57. package/lib/service/type/mongodb.tpl.ts +6 -4
  58. package/package.json +29 -24
@@ -22,13 +22,15 @@ ${
22
22
  } from './${fileName}.schema'
23
23
  `
24
24
  : `
25
- export type ${upperName} = any
26
- export type ${upperName}Data = any
27
- export type ${upperName}Patch = any
28
- export type ${upperName}Query = any
25
+ type ${upperName} = any
26
+ type ${upperName}Data = any
27
+ type ${upperName}Patch = any
28
+ type ${upperName}Query = any
29
29
  `
30
30
  }
31
31
 
32
+ export type { ${upperName}, ${upperName}Data, ${upperName}Patch, ${upperName}Query }
33
+
32
34
  export interface ${className}Options {
33
35
  app: Application
34
36
  }
@@ -38,24 +40,25 @@ export interface ${upperName}Params extends Params<${upperName}Query> {
38
40
  }
39
41
 
40
42
  // This is a skeleton for a custom service class. Remove or add the methods you need here
41
- export class ${className} implements ServiceInterface<${upperName}, ${upperName}Data, ${upperName}Params, ${upperName}Patch> {
43
+ export class ${className}<ServiceParams extends Params = ${upperName}Params>
44
+ implements ServiceInterface<${upperName}, ${upperName}Data, ServiceParams, ${upperName}Patch> {
42
45
  constructor (public options: ${className}Options) {
43
46
  }
44
47
 
45
- async find (_params?: ${upperName}Params): Promise<${upperName}[]> {
48
+ async find (_params?: ServiceParams): Promise<${upperName}[]> {
46
49
  return []
47
50
  }
48
51
 
49
- async get (id: Id, _params?: ${upperName}Params): Promise<${upperName}> {
52
+ async get (id: Id, _params?: ServiceParams): Promise<${upperName}> {
50
53
  return {
51
54
  id: 0,
52
55
  text: \`A new message with ID: \${id}!\`
53
56
  }
54
57
  }
55
58
 
56
- async create (data: ${upperName}Data, params?: ${upperName}Params): Promise<${upperName}>
57
- async create (data: ${upperName}Data[], params?: ${upperName}Params): Promise<${upperName}[]>
58
- async create (data: ${upperName}Data|${upperName}Data[], params?: ${upperName}Params): Promise<${upperName}|${upperName}[]> {
59
+ async create (data: ${upperName}Data, params?: ServiceParams): Promise<${upperName}>
60
+ async create (data: ${upperName}Data[], params?: ServiceParams): Promise<${upperName}[]>
61
+ async create (data: ${upperName}Data|${upperName}Data[], params?: ServiceParams): Promise<${upperName}|${upperName}[]> {
59
62
  if (Array.isArray(data)) {
60
63
  return Promise.all(data.map(current => this.create(current, params)));
61
64
  }
@@ -67,14 +70,14 @@ export class ${className} implements ServiceInterface<${upperName}, ${upperName}
67
70
  }
68
71
 
69
72
  // This method has to be added to the 'methods' option to make it available to clients
70
- async update (id: NullableId, data: ${upperName}Data, _params?: ${upperName}Params): Promise<${upperName}> {
73
+ async update (id: NullableId, data: ${upperName}Data, _params?: ServiceParams): Promise<${upperName}> {
71
74
  return {
72
75
  id: 0,
73
76
  ...data
74
77
  }
75
78
  }
76
79
 
77
- async patch (id: NullableId, data: ${upperName}Patch, _params?: ${upperName}Params): Promise<${upperName}> {
80
+ async patch (id: NullableId, data: ${upperName}Patch, _params?: ServiceParams): Promise<${upperName}> {
78
81
  return {
79
82
  id: 0,
80
83
  text: \`Fallback for \${id}\`,
@@ -82,7 +85,7 @@ export class ${className} implements ServiceInterface<${upperName}, ${upperName}
82
85
  }
83
86
  }
84
87
 
85
- async remove (id: NullableId, _params?: ${upperName}Params): Promise<${upperName}> {
88
+ async remove (id: NullableId, _params?: ServiceParams): Promise<${upperName}> {
86
89
  return {
87
90
  id: 0,
88
91
  text: 'removed'
@@ -32,12 +32,14 @@ ${schema
32
32
  } from './${fileName}.schema'
33
33
  `
34
34
  : `
35
- export type ${upperName} = any
36
- export type ${upperName}Data = any
37
- export type ${upperName}Patch = any
38
- export type ${upperName}Query = any
35
+ type ${upperName} = any
36
+ type ${upperName}Data = any
37
+ type ${upperName}Patch = any
38
+ type ${upperName}Query = any
39
39
  `}
40
40
 
41
+ export type { ${upperName}, ${upperName}Data, ${upperName}Patch, ${upperName}Query }
42
+
41
43
  export interface ${upperName}Params extends KnexAdapterParams<${upperName}Query> {
42
44
  }
43
45
 
@@ -62,10 +64,6 @@ const generate = (ctx) => (0, pinion_1.generator)(ctx)
62
64
  ...folder,
63
65
  `${fileName}.class`
64
66
  ])))
65
- .then((0, commons_1.renderSource)(migrationTemplate, (0, pinion_1.toFile)('migrations', ({ kebabName }) => {
66
- // Probably not great but it works to align with the Knex migration file format
67
- const migrationDate = new Date().toISOString().replace(/\D/g, '').substring(0, 14);
68
- return `${migrationDate}_${kebabName}`;
69
- })));
67
+ .then((0, commons_1.renderSource)(migrationTemplate, (0, pinion_1.toFile)('migrations', ({ kebabName }) => `${(0, commons_1.yyyymmddhhmmss)()}_${kebabName}`)));
70
68
  exports.generate = generate;
71
69
  //# sourceMappingURL=knex.tpl.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"knex.tpl.js","sourceRoot":"","sources":["../../../src/service/type/knex.tpl.ts"],"names":[],"mappings":";;;AAAA,+CAAsD;AACtD,2CAA4C;AAG5C,MAAM,iBAAiB,GAAG,CAAC,EACzB,SAAS,EACe,EAAE,EAAE,CAAC,QAAQ,CAAC;;;;mCAIL,SAAS;;;;;;;iCAOX,SAAS;;CAEzC,CAAA;AAEM,MAAM,QAAQ,GAAG,CAAC,EACvB,SAAS,EACT,SAAS,EACT,QAAQ,EACR,MAAM,EACN,QAAQ,EACR,QAAQ,EACgB,EAAE,EAAE,CAAC,QAAQ,CAAC;;;;;oCAKJ,QAAQ;EAE1C,MAAM;IACJ,CAAC,CAAC;IACF,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;YACD,QAAQ;CACnB;IACG,CAAC,CAAC;cACQ,SAAS;cACT,SAAS;cACT,SAAS;cACT,SAAS;CAEvB;;mBAEmB,SAAS,oCAAoC,SAAS;;;;eAI1D,SAAS,mCAAmC,SAAS;wBAC5C,SAAS,KAAK,SAAS,wBAAwB,SAAS;;;;;;sBAM1D,QAAQ,CAAC,QAAQ;aAC1B,QAAQ;;;CAGpB,CAAA;AA7CY,QAAA,QAAQ,YA6CpB;AAEM,MAAM,QAAQ,GAAG,CAAC,GAA4B,EAAE,EAAE,CACvD,IAAA,kBAAS,EAAC,GAAG,CAAC;KACX,IAAI,CACH,IAAA,sBAAY,EACV,gBAAQ,EACR,IAAA,eAAM,EAA0B,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;IAC7D,GAAG;IACH,UAAU;IACV,GAAG,MAAM;IACT,GAAG,QAAQ,QAAQ;CACpB,CAAC,CACH,CACF;KACA,IAAI,CACH,IAAA,sBAAY,EACV,iBAAiB,EACjB,IAAA,eAAM,EAA0B,YAAY,EAAE,CAAC,EAAE,SAAS,EAAE,EAAE,EAAE;IAC9D,+EAA+E;IAC/E,MAAM,aAAa,GAAG,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,EAAE,CAAC,CAAA;IAElF,OAAO,GAAG,aAAa,IAAI,SAAS,EAAE,CAAA;AACxC,CAAC,CAAC,CACH,CACF,CAAA;AAvBQ,QAAA,QAAQ,YAuBhB"}
1
+ {"version":3,"file":"knex.tpl.js","sourceRoot":"","sources":["../../../src/service/type/knex.tpl.ts"],"names":[],"mappings":";;;AAAA,+CAAsD;AACtD,2CAA4D;AAG5D,MAAM,iBAAiB,GAAG,CAAC,EACzB,SAAS,EACe,EAAE,EAAE,CAAC,QAAQ,CAAC;;;;mCAIL,SAAS;;;;;;;iCAOX,SAAS;;CAEzC,CAAA;AAEM,MAAM,QAAQ,GAAG,CAAC,EACvB,SAAS,EACT,SAAS,EACT,QAAQ,EACR,MAAM,EACN,QAAQ,EACR,QAAQ,EACgB,EAAE,EAAE,CAAC,QAAQ,CAAC;;;;;oCAKJ,QAAQ;EAE1C,MAAM;IACJ,CAAC,CAAC;IACF,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;YACD,QAAQ;CACnB;IACG,CAAC,CAAC;OACC,SAAS;OACT,SAAS;OACT,SAAS;OACT,SAAS;CAEhB;;gBAEgB,SAAS,KAAK,SAAS,SAAS,SAAS,UAAU,SAAS;;mBAEzD,SAAS,oCAAoC,SAAS;;;;eAI1D,SAAS,mCAAmC,SAAS;wBAC5C,SAAS,KAAK,SAAS,wBAAwB,SAAS;;;;;;sBAM1D,QAAQ,CAAC,QAAQ;aAC1B,QAAQ;;;CAGpB,CAAA;AA/CY,QAAA,QAAQ,YA+CpB;AAEM,MAAM,QAAQ,GAAG,CAAC,GAA4B,EAAE,EAAE,CACvD,IAAA,kBAAS,EAAC,GAAG,CAAC;KACX,IAAI,CACH,IAAA,sBAAY,EACV,gBAAQ,EACR,IAAA,eAAM,EAA0B,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;IAC7D,GAAG;IACH,UAAU;IACV,GAAG,MAAM;IACT,GAAG,QAAQ,QAAQ;CACpB,CAAC,CACH,CACF;KACA,IAAI,CACH,IAAA,sBAAY,EACV,iBAAiB,EACjB,IAAA,eAAM,EAA0B,YAAY,EAAE,CAAC,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC,GAAG,IAAA,wBAAc,GAAE,IAAI,SAAS,EAAE,CAAC,CACrG,CACF,CAAA;AAlBQ,QAAA,QAAQ,YAkBhB"}
@@ -1,5 +1,5 @@
1
1
  import { generator, toFile } from '@feathershq/pinion'
2
- import { renderSource } from '../../commons'
2
+ import { renderSource, yyyymmddhhmmss } from '../../commons'
3
3
  import { ServiceGeneratorContext } from '../index'
4
4
 
5
5
  const migrationTemplate = ({
@@ -42,13 +42,15 @@ ${
42
42
  } from './${fileName}.schema'
43
43
  `
44
44
  : `
45
- export type ${upperName} = any
46
- export type ${upperName}Data = any
47
- export type ${upperName}Patch = any
48
- export type ${upperName}Query = any
45
+ type ${upperName} = any
46
+ type ${upperName}Data = any
47
+ type ${upperName}Patch = any
48
+ type ${upperName}Query = any
49
49
  `
50
50
  }
51
51
 
52
+ export type { ${upperName}, ${upperName}Data, ${upperName}Patch, ${upperName}Query }
53
+
52
54
  export interface ${upperName}Params extends KnexAdapterParams<${upperName}Query> {
53
55
  }
54
56
 
@@ -82,11 +84,6 @@ export const generate = (ctx: ServiceGeneratorContext) =>
82
84
  .then(
83
85
  renderSource(
84
86
  migrationTemplate,
85
- toFile<ServiceGeneratorContext>('migrations', ({ kebabName }) => {
86
- // Probably not great but it works to align with the Knex migration file format
87
- const migrationDate = new Date().toISOString().replace(/\D/g, '').substring(0, 14)
88
-
89
- return `${migrationDate}_${kebabName}`
90
- })
87
+ toFile<ServiceGeneratorContext>('migrations', ({ kebabName }) => `${yyyymmddhhmmss()}_${kebabName}`)
91
88
  )
92
89
  )
@@ -18,12 +18,14 @@ ${schema
18
18
  } from './${fileName}.schema'
19
19
  `
20
20
  : `
21
- export type ${upperName} = any
22
- export type ${upperName}Data = any
23
- export type ${upperName}Patch = any
24
- export type ${upperName}Query = any
21
+ type ${upperName} = any
22
+ type ${upperName}Data = any
23
+ type ${upperName}Patch = any
24
+ type ${upperName}Query = any
25
25
  `}
26
26
 
27
+ export type { ${upperName}, ${upperName}Data, ${upperName}Patch, ${upperName}Query }
28
+
27
29
  export interface ${upperName}Params extends MongoDBAdapterParams<${upperName}Query> {
28
30
  }
29
31
 
@@ -1 +1 @@
1
- {"version":3,"file":"mongodb.tpl.js","sourceRoot":"","sources":["../../../src/service/type/mongodb.tpl.ts"],"names":[],"mappings":";;;AAAA,+CAAsD;AACtD,2CAA4C;AAGrC,MAAM,QAAQ,GAAG,CAAC,EACvB,SAAS,EACT,SAAS,EACT,MAAM,EACN,QAAQ,EACR,SAAS,EACT,QAAQ,EACgB,EAAE,EAAE,CAAC,QAAQ,CAAC;;;;;oCAKJ,QAAQ;EAE1C,MAAM;IACJ,CAAC,CAAC;IACF,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;YACD,QAAQ;CACnB;IACG,CAAC,CAAC;cACQ,SAAS;cACT,SAAS;cACT,SAAS;cACT,SAAS;CAEvB;;mBAEmB,SAAS,uCAAuC,SAAS;;;;eAI7D,SAAS,mCAAmC,SAAS;2BACzC,SAAS,KAAK,SAAS,wBAAwB,SAAS;;;;;;gEAMnB,SAAS;;;CAGxE,CAAA;AA5CY,QAAA,QAAQ,YA4CpB;AAEM,MAAM,QAAQ,GAAG,CAAC,GAA4B,EAAE,EAAE,CACvD,IAAA,kBAAS,EAAC,GAAG,CAAC,CAAC,IAAI,CACjB,IAAA,sBAAY,EACV,gBAAQ,EACR,IAAA,eAAM,EAA0B,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;IAC7D,GAAG;IACH,UAAU;IACV,GAAG,MAAM;IACT,GAAG,QAAQ,QAAQ;CACpB,CAAC,CACH,CACF,CAAA;AAXU,QAAA,QAAQ,YAWlB"}
1
+ {"version":3,"file":"mongodb.tpl.js","sourceRoot":"","sources":["../../../src/service/type/mongodb.tpl.ts"],"names":[],"mappings":";;;AAAA,+CAAsD;AACtD,2CAA4C;AAGrC,MAAM,QAAQ,GAAG,CAAC,EACvB,SAAS,EACT,SAAS,EACT,MAAM,EACN,QAAQ,EACR,SAAS,EACT,QAAQ,EACgB,EAAE,EAAE,CAAC,QAAQ,CAAC;;;;;oCAKJ,QAAQ;EAE1C,MAAM;IACJ,CAAC,CAAC;IACF,SAAS;IACT,SAAS;IACT,SAAS;IACT,SAAS;YACD,QAAQ;CACnB;IACG,CAAC,CAAC;OACC,SAAS;OACT,SAAS;OACT,SAAS;OACT,SAAS;CAEhB;;gBAEgB,SAAS,KAAK,SAAS,SAAS,SAAS,UAAU,SAAS;;mBAEzD,SAAS,uCAAuC,SAAS;;;;eAI7D,SAAS,mCAAmC,SAAS;2BACzC,SAAS,KAAK,SAAS,wBAAwB,SAAS;;;;;;gEAMnB,SAAS;;;CAGxE,CAAA;AA9CY,QAAA,QAAQ,YA8CpB;AAEM,MAAM,QAAQ,GAAG,CAAC,GAA4B,EAAE,EAAE,CACvD,IAAA,kBAAS,EAAC,GAAG,CAAC,CAAC,IAAI,CACjB,IAAA,sBAAY,EACV,gBAAQ,EACR,IAAA,eAAM,EAA0B,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;IAC7D,GAAG;IACH,UAAU;IACV,GAAG,MAAM;IACT,GAAG,QAAQ,QAAQ;CACpB,CAAC,CACH,CACF,CAAA;AAXU,QAAA,QAAQ,YAWlB"}
@@ -25,13 +25,15 @@ ${
25
25
  } from './${fileName}.schema'
26
26
  `
27
27
  : `
28
- export type ${upperName} = any
29
- export type ${upperName}Data = any
30
- export type ${upperName}Patch = any
31
- export type ${upperName}Query = any
28
+ type ${upperName} = any
29
+ type ${upperName}Data = any
30
+ type ${upperName}Patch = any
31
+ type ${upperName}Query = any
32
32
  `
33
33
  }
34
34
 
35
+ export type { ${upperName}, ${upperName}Data, ${upperName}Patch, ${upperName}Query }
36
+
35
37
  export interface ${upperName}Params extends MongoDBAdapterParams<${upperName}Query> {
36
38
  }
37
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feathersjs/generators",
3
- "version": "5.0.0-pre.35",
3
+ "version": "5.0.0-pre.37",
4
4
  "description": "Feathers CLI core generators, powered by Pinion",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "keywords": [
@@ -43,7 +43,7 @@
43
43
  "scripts": {
44
44
  "prepublish": "npm run compile",
45
45
  "compile": "shx rm -rf lib/ && tsc && shx cp -r src/. lib/",
46
- "test": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
46
+ "test": "npm run compile && mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
47
47
  },
48
48
  "directories": {
49
49
  "lib": "lib"
@@ -55,35 +55,40 @@
55
55
  "@feathershq/pinion": "^0.3.5",
56
56
  "chalk": "^4.0.1",
57
57
  "lodash": "^4.17.21",
58
- "prettier": "^2.8.1"
58
+ "prettier": "^2.8.3",
59
+ "typescript": "^4.9.5"
59
60
  },
60
61
  "devDependencies": {
61
- "@feathersjs/adapter-commons": "^5.0.0-pre.35",
62
- "@feathersjs/authentication": "^5.0.0-pre.35",
63
- "@feathersjs/authentication-client": "^5.0.0-pre.35",
64
- "@feathersjs/authentication-local": "^5.0.0-pre.35",
65
- "@feathersjs/authentication-oauth": "^5.0.0-pre.35",
66
- "@feathersjs/configuration": "^5.0.0-pre.35",
67
- "@feathersjs/errors": "^5.0.0-pre.35",
68
- "@feathersjs/express": "^5.0.0-pre.35",
69
- "@feathersjs/feathers": "^5.0.0-pre.35",
70
- "@feathersjs/knex": "^5.0.0-pre.35",
71
- "@feathersjs/koa": "^5.0.0-pre.35",
72
- "@feathersjs/mongodb": "^5.0.0-pre.35",
73
- "@feathersjs/rest-client": "^5.0.0-pre.35",
74
- "@feathersjs/schema": "^5.0.0-pre.35",
75
- "@feathersjs/socketio": "^5.0.0-pre.35",
76
- "@feathersjs/transport-commons": "^5.0.0-pre.35",
77
- "@feathersjs/typebox": "^5.0.0-pre.35",
62
+ "@feathersjs/adapter-commons": "^5.0.0-pre.37",
63
+ "@feathersjs/authentication": "^5.0.0-pre.37",
64
+ "@feathersjs/authentication-client": "^5.0.0-pre.37",
65
+ "@feathersjs/authentication-local": "^5.0.0-pre.37",
66
+ "@feathersjs/authentication-oauth": "^5.0.0-pre.37",
67
+ "@feathersjs/configuration": "^5.0.0-pre.37",
68
+ "@feathersjs/errors": "^5.0.0-pre.37",
69
+ "@feathersjs/express": "^5.0.0-pre.37",
70
+ "@feathersjs/feathers": "^5.0.0-pre.37",
71
+ "@feathersjs/knex": "^5.0.0-pre.37",
72
+ "@feathersjs/koa": "^5.0.0-pre.37",
73
+ "@feathersjs/mongodb": "^5.0.0-pre.37",
74
+ "@feathersjs/rest-client": "^5.0.0-pre.37",
75
+ "@feathersjs/schema": "^5.0.0-pre.37",
76
+ "@feathersjs/socketio": "^5.0.0-pre.37",
77
+ "@feathersjs/transport-commons": "^5.0.0-pre.37",
78
+ "@feathersjs/typebox": "^5.0.0-pre.37",
78
79
  "@types/mocha": "^10.0.1",
79
80
  "@types/node": "^18.11.18",
80
81
  "@types/prettier": "^2.7.2",
81
- "axios": "^1.2.2",
82
+ "axios": "^1.3.0",
82
83
  "mocha": "^10.2.0",
84
+ "mongodb": "^5.0.1",
85
+ "mssql": "^9.1.1",
86
+ "mysql": "^2.18.1",
87
+ "pg": "^8.9.0",
83
88
  "shx": "^0.3.4",
89
+ "sqlite3": "^5.1.4",
84
90
  "ts-node": "^10.9.1",
85
- "type-fest": "^3.5.0",
86
- "typescript": "^4.9.4"
91
+ "type-fest": "^3.5.4"
87
92
  },
88
- "gitHead": "c641598d9a4de3ceda10f56cf2af288a4236b15e"
93
+ "gitHead": "17a8b3b2614876772472d3cab3d96d45c01db6ed"
89
94
  }