@veloceapps/api 2.0.3 → 2.0.5
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/bundles/veloce-api.umd.js +64 -52
- package/bundles/veloce-api.umd.js.map +1 -1
- package/esm2015/lib/api.module.js +4 -4
- package/esm2015/lib/services/configuration-api.service.js +7 -10
- package/esm2015/lib/services/configuration-settings-api.service.js +3 -3
- package/esm2015/lib/services/context-api.service.js +3 -3
- package/esm2015/lib/services/document-attachment-api.service.js +3 -3
- package/esm2015/lib/services/document-templates-api.service.js +3 -3
- package/esm2015/lib/services/price-api.service.js +3 -3
- package/esm2015/lib/services/product-model-api.service.js +3 -3
- package/esm2015/lib/services/quote-api.service.js +3 -3
- package/esm2015/lib/services/ramp-api.service.js +3 -3
- package/esm2015/lib/services/rule-groups-api.service.js +3 -3
- package/esm2015/lib/services/rules-api.service.js +3 -3
- package/esm2015/lib/services/salesforce-api.service.js +3 -3
- package/esm2015/lib/services/scripts-api.service.js +3 -3
- package/esm2015/lib/services/ui-templates-api.service.js +3 -3
- package/esm2015/lib/types/configuration-dto.types.js +16 -0
- package/fesm2015/veloce-api.js +63 -52
- package/fesm2015/veloce-api.js.map +1 -1
- package/lib/services/configuration-api.service.d.ts +2 -5
- package/lib/types/configuration-dto.types.d.ts +15 -0
- package/package.json +1 -1
@@ -690,6 +690,22 @@
|
|
690
690
|
return LineItemDTO;
|
691
691
|
}());
|
692
692
|
|
693
|
+
var ConfigurePriceDTO = /** @class */ (function () {
|
694
|
+
function ConfigurePriceDTO(lineItem, context, charges) {
|
695
|
+
this.lineItem = lineItem;
|
696
|
+
this.context = context;
|
697
|
+
this.charges = charges;
|
698
|
+
}
|
699
|
+
ConfigurePriceDTO.fromDTO = function (dto) {
|
700
|
+
return {
|
701
|
+
lineItem: LineItemDTO.fromDTO(dto.lineItem),
|
702
|
+
charges: dto.charges,
|
703
|
+
context: dto.context,
|
704
|
+
};
|
705
|
+
};
|
706
|
+
return ConfigurePriceDTO;
|
707
|
+
}());
|
708
|
+
|
693
709
|
var ConfigurationApiService = /** @class */ (function () {
|
694
710
|
function ConfigurationApiService(httpService) {
|
695
711
|
this.httpService = httpService;
|
@@ -723,12 +739,8 @@
|
|
723
739
|
body: configurationRequest,
|
724
740
|
errorHandler: function (e) { return rxjs.throwError(e); },
|
725
741
|
})
|
726
|
-
.pipe(operators.map(function (response) {
|
727
|
-
|
728
|
-
return {
|
729
|
-
lineItem: _this.updatePortDomains(lineItem, runtimeModel),
|
730
|
-
context: response.context,
|
731
|
-
};
|
742
|
+
.pipe(operators.map(function (response) { return ConfigurePriceDTO.fromDTO(response); }), operators.map(function (configurePrice) {
|
743
|
+
return Object.assign(Object.assign({}, configurePrice), { lineItem: _this.updatePortDomains(configurePrice.lineItem, runtimeModel) });
|
732
744
|
}));
|
733
745
|
};
|
734
746
|
ConfigurationApiService.prototype.getRuntimeDataByProductId = function (productId, offeringId) {
|
@@ -782,9 +794,9 @@
|
|
782
794
|
};
|
783
795
|
return ConfigurationApiService;
|
784
796
|
}());
|
785
|
-
ConfigurationApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
786
|
-
ConfigurationApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
787
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
797
|
+
ConfigurationApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ConfigurationApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
798
|
+
ConfigurationApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ConfigurationApiService });
|
799
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ConfigurationApiService, decorators: [{
|
788
800
|
type: i0.Injectable
|
789
801
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
790
802
|
|
@@ -870,9 +882,9 @@
|
|
870
882
|
};
|
871
883
|
return ConfigurationSettingsApiService;
|
872
884
|
}());
|
873
|
-
ConfigurationSettingsApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
874
|
-
ConfigurationSettingsApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
875
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
885
|
+
ConfigurationSettingsApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ConfigurationSettingsApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
886
|
+
ConfigurationSettingsApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ConfigurationSettingsApiService });
|
887
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ConfigurationSettingsApiService, decorators: [{
|
876
888
|
type: i0.Injectable
|
877
889
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
878
890
|
|
@@ -893,9 +905,9 @@
|
|
893
905
|
};
|
894
906
|
return ContextApiService;
|
895
907
|
}());
|
896
|
-
ContextApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
897
|
-
ContextApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
898
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
908
|
+
ContextApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ContextApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
909
|
+
ContextApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ContextApiService });
|
910
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ContextApiService, decorators: [{
|
899
911
|
type: i0.Injectable
|
900
912
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
901
913
|
|
@@ -956,9 +968,9 @@
|
|
956
968
|
};
|
957
969
|
return DocumentAttachmentApiService;
|
958
970
|
}());
|
959
|
-
DocumentAttachmentApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
960
|
-
DocumentAttachmentApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
961
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
971
|
+
DocumentAttachmentApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: DocumentAttachmentApiService, deps: [{ token: i1__namespace.BaseHttpService }, { token: i1__namespace.FileDownloadService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
972
|
+
DocumentAttachmentApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: DocumentAttachmentApiService });
|
973
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: DocumentAttachmentApiService, decorators: [{
|
962
974
|
type: i0.Injectable
|
963
975
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }, { type: i1__namespace.FileDownloadService }]; } });
|
964
976
|
|
@@ -1004,9 +1016,9 @@
|
|
1004
1016
|
};
|
1005
1017
|
return SalesforceApiService;
|
1006
1018
|
}());
|
1007
|
-
SalesforceApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
1008
|
-
SalesforceApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
1009
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
1019
|
+
SalesforceApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SalesforceApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
1020
|
+
SalesforceApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SalesforceApiService });
|
1021
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: SalesforceApiService, decorators: [{
|
1010
1022
|
type: i0.Injectable
|
1011
1023
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
1012
1024
|
|
@@ -1301,9 +1313,9 @@
|
|
1301
1313
|
};
|
1302
1314
|
return DocumentTemplatesApiService;
|
1303
1315
|
}());
|
1304
|
-
DocumentTemplatesApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
1305
|
-
DocumentTemplatesApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
1306
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
1316
|
+
DocumentTemplatesApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: DocumentTemplatesApiService, deps: [{ token: i1__namespace.BaseHttpService }, { token: SalesforceApiService }, { token: i1__namespace.FileDownloadService }, { token: DocumentAttachmentApiService }, { token: i4__namespace.HttpClient }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
1317
|
+
DocumentTemplatesApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: DocumentTemplatesApiService });
|
1318
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: DocumentTemplatesApiService, decorators: [{
|
1307
1319
|
type: i0.Injectable
|
1308
1320
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }, { type: SalesforceApiService }, { type: i1__namespace.FileDownloadService }, { type: DocumentAttachmentApiService }, { type: i4__namespace.HttpClient }]; } });
|
1309
1321
|
|
@@ -1385,9 +1397,9 @@
|
|
1385
1397
|
};
|
1386
1398
|
return PriceApiService;
|
1387
1399
|
}());
|
1388
|
-
PriceApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
1389
|
-
PriceApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
1390
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
1400
|
+
PriceApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: PriceApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
1401
|
+
PriceApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: PriceApiService });
|
1402
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: PriceApiService, decorators: [{
|
1391
1403
|
type: i0.Injectable
|
1392
1404
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
1393
1405
|
|
@@ -1615,9 +1627,9 @@
|
|
1615
1627
|
return ProductModelApiService;
|
1616
1628
|
}());
|
1617
1629
|
ProductModelApiService.MAX_RESULTS = 200;
|
1618
|
-
ProductModelApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
1619
|
-
ProductModelApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
1620
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
1630
|
+
ProductModelApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ProductModelApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
1631
|
+
ProductModelApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ProductModelApiService });
|
1632
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ProductModelApiService, decorators: [{
|
1621
1633
|
type: i0.Injectable
|
1622
1634
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
1623
1635
|
|
@@ -1649,9 +1661,9 @@
|
|
1649
1661
|
};
|
1650
1662
|
return QuoteApiService;
|
1651
1663
|
}());
|
1652
|
-
QuoteApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
1653
|
-
QuoteApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
1654
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
1664
|
+
QuoteApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: QuoteApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
1665
|
+
QuoteApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: QuoteApiService });
|
1666
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: QuoteApiService, decorators: [{
|
1655
1667
|
type: i0.Injectable
|
1656
1668
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
1657
1669
|
|
@@ -1689,9 +1701,9 @@
|
|
1689
1701
|
};
|
1690
1702
|
return RampApiService;
|
1691
1703
|
}());
|
1692
|
-
RampApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
1693
|
-
RampApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
1694
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
1704
|
+
RampApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RampApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
1705
|
+
RampApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RampApiService });
|
1706
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RampApiService, decorators: [{
|
1695
1707
|
type: i0.Injectable
|
1696
1708
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
1697
1709
|
|
@@ -1985,9 +1997,9 @@
|
|
1985
1997
|
};
|
1986
1998
|
return UITemplatesApiService;
|
1987
1999
|
}());
|
1988
|
-
UITemplatesApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
1989
|
-
UITemplatesApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
1990
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
2000
|
+
UITemplatesApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: UITemplatesApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
2001
|
+
UITemplatesApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: UITemplatesApiService });
|
2002
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: UITemplatesApiService, decorators: [{
|
1991
2003
|
type: i0.Injectable
|
1992
2004
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
1993
2005
|
|
@@ -2059,9 +2071,9 @@
|
|
2059
2071
|
}
|
2060
2072
|
return ScriptsApiService;
|
2061
2073
|
}());
|
2062
|
-
ScriptsApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
2063
|
-
ScriptsApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
2064
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
2074
|
+
ScriptsApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ScriptsApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
2075
|
+
ScriptsApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ScriptsApiService });
|
2076
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ScriptsApiService, decorators: [{
|
2065
2077
|
type: i0.Injectable
|
2066
2078
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
2067
2079
|
|
@@ -2117,9 +2129,9 @@
|
|
2117
2129
|
}
|
2118
2130
|
return RulesApiService;
|
2119
2131
|
}());
|
2120
|
-
RulesApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
2121
|
-
RulesApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
2122
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
2132
|
+
RulesApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RulesApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
2133
|
+
RulesApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RulesApiService });
|
2134
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RulesApiService, decorators: [{
|
2123
2135
|
type: i0.Injectable
|
2124
2136
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
2125
2137
|
|
@@ -2147,9 +2159,9 @@
|
|
2147
2159
|
}
|
2148
2160
|
return RuleGroupsApiService;
|
2149
2161
|
}());
|
2150
|
-
RuleGroupsApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
2151
|
-
RuleGroupsApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
2152
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
2162
|
+
RuleGroupsApiService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RuleGroupsApiService, deps: [{ token: i1__namespace.BaseHttpService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
2163
|
+
RuleGroupsApiService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RuleGroupsApiService });
|
2164
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: RuleGroupsApiService, decorators: [{
|
2153
2165
|
type: i0.Injectable
|
2154
2166
|
}], ctorParameters: function () { return [{ type: i1__namespace.BaseHttpService }]; } });
|
2155
2167
|
|
@@ -2158,9 +2170,9 @@
|
|
2158
2170
|
}
|
2159
2171
|
return ApiModule;
|
2160
2172
|
}());
|
2161
|
-
ApiModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
2162
|
-
ApiModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.
|
2163
|
-
ApiModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.
|
2173
|
+
ApiModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ApiModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
2174
|
+
ApiModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ApiModule, imports: [i4.HttpClientModule] });
|
2175
|
+
ApiModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ApiModule, providers: [
|
2164
2176
|
i1.BaseHttpService,
|
2165
2177
|
i1.XrayService,
|
2166
2178
|
ConfigurationApiService,
|
@@ -2178,7 +2190,7 @@
|
|
2178
2190
|
RulesApiService,
|
2179
2191
|
RuleGroupsApiService,
|
2180
2192
|
], imports: [[i4.HttpClientModule]] });
|
2181
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
2193
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: ApiModule, decorators: [{
|
2182
2194
|
type: i0.NgModule,
|
2183
2195
|
args: [{
|
2184
2196
|
imports: [i4.HttpClientModule],
|