@qrvey/utils 1.16.1-17 → 1.16.1-19
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/cjs/globalization/labels/chart_builder/I18N_CHART_BUILDER_STYLE_OPTIONS.js +1 -1
- package/dist/cjs/services/api/platformConfig.api.js +1 -0
- package/dist/cjs/services/helpers/Request.js +2 -1
- package/dist/cjs/services/interfaces/IEndpointConfig.d.ts +1 -0
- package/dist/globalization/labels/chart_builder/I18N_CHART_BUILDER_STYLE_OPTIONS.js +1 -1
- package/dist/services/api/platformConfig.api.js +1 -0
- package/dist/services/helpers/Request.js +2 -1
- package/dist/services/interfaces/IEndpointConfig.d.ts +1 -0
- package/package.json +1 -1
|
@@ -270,7 +270,7 @@ exports.I18N_CHART_BUILDER_STYLE_OPTIONS = {
|
|
|
270
270
|
title: "Body",
|
|
271
271
|
alternate_color: "Alternate Color",
|
|
272
272
|
alternate_bg_color: "Alternate BG Color",
|
|
273
|
-
text_wrapping: "Text
|
|
273
|
+
text_wrapping: "Text Wrapping",
|
|
274
274
|
text_wrapping_normal: "Normal",
|
|
275
275
|
text_wrapping_wrap: "Text Wrap",
|
|
276
276
|
repeatable_rows: "Repeatable Rows",
|
|
@@ -51,7 +51,8 @@ class Request {
|
|
|
51
51
|
const admin = endpoint.admin ? "/admin" : "";
|
|
52
52
|
const api = Request.getApiUrl(config);
|
|
53
53
|
const user = Request.getUserUrl(config);
|
|
54
|
-
const
|
|
54
|
+
const apiAdmin = !endpoint.adminApiInverted ? `${api}${admin}` : `${admin}${api}`;
|
|
55
|
+
const base = `${apiAdmin}${version}${user}`;
|
|
55
56
|
_url = (config.domain || "") + base + endpoint.uri + _url;
|
|
56
57
|
}
|
|
57
58
|
return this.parseUrl(_url, config);
|
|
@@ -267,7 +267,7 @@ export const I18N_CHART_BUILDER_STYLE_OPTIONS = {
|
|
|
267
267
|
title: "Body",
|
|
268
268
|
alternate_color: "Alternate Color",
|
|
269
269
|
alternate_bg_color: "Alternate BG Color",
|
|
270
|
-
text_wrapping: "Text
|
|
270
|
+
text_wrapping: "Text Wrapping",
|
|
271
271
|
text_wrapping_normal: "Normal",
|
|
272
272
|
text_wrapping_wrap: "Text Wrap",
|
|
273
273
|
repeatable_rows: "Repeatable Rows",
|
|
@@ -48,7 +48,8 @@ export class Request {
|
|
|
48
48
|
const admin = endpoint.admin ? "/admin" : "";
|
|
49
49
|
const api = Request.getApiUrl(config);
|
|
50
50
|
const user = Request.getUserUrl(config);
|
|
51
|
-
const
|
|
51
|
+
const apiAdmin = !endpoint.adminApiInverted ? `${api}${admin}` : `${admin}${api}`;
|
|
52
|
+
const base = `${apiAdmin}${version}${user}`;
|
|
52
53
|
_url = (config.domain || "") + base + endpoint.uri + _url;
|
|
53
54
|
}
|
|
54
55
|
return this.parseUrl(_url, config);
|