@lark-apaas/fullstack-nestjs-core 1.1.6-alpha.0 → 1.1.6-alpha.1
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.cjs +3 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -742,7 +742,6 @@ var PlatformModule = class _PlatformModule {
|
|
|
742
742
|
return {
|
|
743
743
|
module: _PlatformModule,
|
|
744
744
|
imports: [
|
|
745
|
-
HttpInterceptorService,
|
|
746
745
|
import_config2.ConfigModule.forRoot({
|
|
747
746
|
isGlobal: true,
|
|
748
747
|
envFilePath: [
|
|
@@ -807,20 +806,21 @@ var PlatformModule = class _PlatformModule {
|
|
|
807
806
|
provide: import_nestjs_common3.OBSERVABLE_SERVICE,
|
|
808
807
|
useClass: import_nestjs_observable.Observable
|
|
809
808
|
},
|
|
809
|
+
PlatformHttpClientService,
|
|
810
810
|
{
|
|
811
811
|
provide: import_nestjs_common4.PLATFORM_HTTP_CLIENT,
|
|
812
812
|
useFactory: /* @__PURE__ */ __name((svc) => svc.instance, "useFactory"),
|
|
813
813
|
inject: [
|
|
814
814
|
PlatformHttpClientService
|
|
815
815
|
]
|
|
816
|
-
}
|
|
816
|
+
},
|
|
817
|
+
HttpInterceptorService
|
|
817
818
|
],
|
|
818
819
|
exports: [
|
|
819
820
|
import_config2.ConfigModule,
|
|
820
821
|
import_nestjs_logger2.LoggerModule,
|
|
821
822
|
import_nestjs_common3.CommonModule,
|
|
822
823
|
import_nestjs_common3.OBSERVABLE_SERVICE,
|
|
823
|
-
PlatformHttpClientService,
|
|
824
824
|
import_nestjs_common4.PLATFORM_HTTP_CLIENT
|
|
825
825
|
]
|
|
826
826
|
};
|
package/dist/index.js
CHANGED
|
@@ -700,7 +700,6 @@ var PlatformModule = class _PlatformModule {
|
|
|
700
700
|
return {
|
|
701
701
|
module: _PlatformModule,
|
|
702
702
|
imports: [
|
|
703
|
-
HttpInterceptorService,
|
|
704
703
|
ConfigModule.forRoot({
|
|
705
704
|
isGlobal: true,
|
|
706
705
|
envFilePath: [
|
|
@@ -765,20 +764,21 @@ var PlatformModule = class _PlatformModule {
|
|
|
765
764
|
provide: OBSERVABLE_SERVICE,
|
|
766
765
|
useClass: Observable
|
|
767
766
|
},
|
|
767
|
+
PlatformHttpClientService,
|
|
768
768
|
{
|
|
769
769
|
provide: PLATFORM_HTTP_CLIENT2,
|
|
770
770
|
useFactory: /* @__PURE__ */ __name((svc) => svc.instance, "useFactory"),
|
|
771
771
|
inject: [
|
|
772
772
|
PlatformHttpClientService
|
|
773
773
|
]
|
|
774
|
-
}
|
|
774
|
+
},
|
|
775
|
+
HttpInterceptorService
|
|
775
776
|
],
|
|
776
777
|
exports: [
|
|
777
778
|
ConfigModule,
|
|
778
779
|
LoggerModule,
|
|
779
780
|
CommonModule,
|
|
780
781
|
OBSERVABLE_SERVICE,
|
|
781
|
-
PlatformHttpClientService,
|
|
782
782
|
PLATFORM_HTTP_CLIENT2
|
|
783
783
|
]
|
|
784
784
|
};
|