@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.
- package/dist/index.js +2 -5
- 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 `
|
|
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
|
-
|
|
866
|
+
tenantId?: string;
|
|
870
867
|
}
|
|
871
868
|
}
|
|
872
869
|
`;
|