@taujs/create-taujs 0.1.7 → 0.1.8

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 (2) hide show
  1. package/dist/index.js +2 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -861,12 +861,9 @@ export type ServiceRegistry = typeof serviceRegistry;
861
861
  `;
862
862
  }
863
863
  function generateServiceTypesAugmentation() {
864
- return `import type { RegistryCaller } from '@taujs/server/config';
865
- import type { serviceRegistry } from './registry';
866
-
867
- declare module '@taujs/server/config' {
864
+ return `declare module '@taujs/server/config' {
868
865
  interface ServiceContext {
869
- call: RegistryCaller<typeof serviceRegistry>;
866
+ tenantId?: string;
870
867
  }
871
868
  }
872
869
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taujs/create-taujs",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Scaffold a new τjs application",
5
5
  "author": "Aoede <taujs@aoede.uk.net> (https://www.aoede.uk.net)",
6
6
  "homepage": "https://taujs.dev/",