@infrab4a/connect-angular 4.18.1 → 4.18.2
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.
|
@@ -881,10 +881,10 @@ AngularHasuraGraphQLModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.
|
|
|
881
881
|
},
|
|
882
882
|
{
|
|
883
883
|
provide: ProductErrorsHasuraGraphQLRepository,
|
|
884
|
-
useFactory: (options) => {
|
|
885
|
-
return new ProductErrorsHasuraGraphQLRepository(options);
|
|
884
|
+
useFactory: (options, productRepository) => {
|
|
885
|
+
return new ProductErrorsHasuraGraphQLRepository(options, productRepository);
|
|
886
886
|
},
|
|
887
|
-
deps: ['HasuraConfig'],
|
|
887
|
+
deps: ['HasuraConfig', ProductHasuraGraphQLRepository],
|
|
888
888
|
},
|
|
889
889
|
{
|
|
890
890
|
provide: 'ProductErrorsRepository',
|
|
@@ -1039,10 +1039,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImpor
|
|
|
1039
1039
|
},
|
|
1040
1040
|
{
|
|
1041
1041
|
provide: ProductErrorsHasuraGraphQLRepository,
|
|
1042
|
-
useFactory: (options) => {
|
|
1043
|
-
return new ProductErrorsHasuraGraphQLRepository(options);
|
|
1042
|
+
useFactory: (options, productRepository) => {
|
|
1043
|
+
return new ProductErrorsHasuraGraphQLRepository(options, productRepository);
|
|
1044
1044
|
},
|
|
1045
|
-
deps: ['HasuraConfig'],
|
|
1045
|
+
deps: ['HasuraConfig', ProductHasuraGraphQLRepository],
|
|
1046
1046
|
},
|
|
1047
1047
|
{
|
|
1048
1048
|
provide: 'ProductErrorsRepository',
|