Skip to content

Commit ff3e18a

Browse files
committed
Updates for new function names.
1 parent 2a60439 commit ff3e18a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/components/NeonEnvironment/NeonEnvironment.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export interface INeonEnvironment {
3535
getApiLdPath: Record<string, () => string>;
3636
getAuthApiPath: Record<string, () => string>;
3737
getDownloadApiPath: Record<string, () => string>;
38-
getDataProductsTaxonTypesPath: () => string;
38+
getDataProductTaxonTypesPath: () => string;
3939
getTaxonTypeDataProductsPath: () => string;
4040
getAuthPath: Record<string, () => string>;
4141
authTopics: Record<string, () => string>;

lib/components/NeonEnvironment/NeonEnvironment.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ var NeonEnvironment = {
157157
return '/consumer/topic/auth0';
158158
}
159159
},
160-
getDataProductsTaxonTypesPath: function getDataProductsTaxonTypesPath() {
161-
return "".concat(NeonEnvironment.getApiPath.taxonomy, "/types");
160+
getDataProductTaxonTypesPath: function getDataProductTaxonTypesPath() {
161+
return "".concat(NeonEnvironment.getFullApiPath('taxonomy'), "/types");
162162
},
163163
getTaxonTypeDataProductsPath: function getTaxonTypeDataProductsPath() {
164-
return "".concat(NeonEnvironment.getApiPath.taxonomy, "/products");
164+
return "".concat(NeonEnvironment.getFullApiPath('taxonomy'), "/products");
165165
},
166166
getVisusProductsBaseUrl: function getVisusProductsBaseUrl() {
167167
return process.env.REACT_APP_NEON_VISUS_PRODUCTS_BASE_URL;

0 commit comments

Comments
 (0)