ng-easycommerce-v18 0.2.4 → 0.2.6
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/README.md +4 -0
- package/esm2022/lib/constants/api.constants.service.mjs +15 -12
- package/esm2022/lib/interfaces/environment.mjs +1 -1
- package/fesm2022/ng-easycommerce-v18.mjs +14 -11
- package/fesm2022/ng-easycommerce-v18.mjs.map +1 -1
- package/lib/constants/api.constants.service.d.ts +3 -6
- package/package.json +1 -1
|
@@ -19,10 +19,6 @@ export declare class ApiConstantsService {
|
|
|
19
19
|
* Locale actual del frontend
|
|
20
20
|
*/
|
|
21
21
|
LOCALE: string;
|
|
22
|
-
/**
|
|
23
|
-
* URL del backend para realizar las peticiones
|
|
24
|
-
*/
|
|
25
|
-
readonly API_URL: string;
|
|
26
22
|
/**
|
|
27
23
|
* URL para las peticiones a shop-api
|
|
28
24
|
*/
|
|
@@ -31,10 +27,11 @@ export declare class ApiConstantsService {
|
|
|
31
27
|
* URL para las peticiones a cms
|
|
32
28
|
*/
|
|
33
29
|
readonly CMS_URL: string;
|
|
30
|
+
constructor();
|
|
34
31
|
/**
|
|
35
|
-
* URL
|
|
32
|
+
* URL del backend para realizar las peticiones
|
|
36
33
|
*/
|
|
37
|
-
|
|
34
|
+
get API_URL(): string;
|
|
38
35
|
/**
|
|
39
36
|
* Retorna la url base
|
|
40
37
|
* @returns {string}
|