@rh-support/api
Advanced tools
Comparing version 0.0.8 to 0.0.10
export * from "./account/account"; | ||
export * from "./case"; | ||
export * from "./feedbackForm/feesdbackForm"; | ||
export * from "./languageDetection/languageDetection"; | ||
export * from "./metadata/metadata"; | ||
@@ -5,0 +6,0 @@ export * from "./recommendations"; |
@@ -1014,2 +1014,7 @@ import get from 'lodash/get'; | ||
function detectLanguage(body) { | ||
var uri = Env.apiHostName.clone().setPath(Env.hydraPathPrefix + "/detectLang"); | ||
return postUri(uri, body); | ||
} | ||
function getCaseTypes() { | ||
@@ -1108,3 +1113,3 @@ var uri = Env.apiHostName.clone().setPath(Env.securedSupport.pathPrefix + "/rs/values/case/types"); | ||
export { addNotifiedUser, addQueryParamsToUri, createBasicAuth, createCase, defaultAdditionalOptions, deleteUri, deleteUriWithBody, getAccountDetails, getAccountUsers, getCaseGroupsForSSO, getCaseTypes, getEdmundAbbottV2, getEntitelments, getEntitelmentsForContact, getGuid, getRecommendations, getSEProductsList, getSeverities, getStrataHeaders, getStrataUser, getTopContent, getUri, getUriWithBody, patchUri, postFormUri, postUri, putUri, sendFeedbackForm, sendTrackingData, setSecuredSupport, setStrataHeaders }; | ||
export { addNotifiedUser, addQueryParamsToUri, createBasicAuth, createCase, defaultAdditionalOptions, deleteUri, deleteUriWithBody, detectLanguage, getAccountDetails, getAccountUsers, getCaseGroupsForSSO, getCaseTypes, getEdmundAbbottV2, getEntitelments, getEntitelmentsForContact, getGuid, getRecommendations, getSEProductsList, getSeverities, getStrataHeaders, getStrataUser, getTopContent, getUri, getUriWithBody, patchUri, postFormUri, postUri, putUri, sendFeedbackForm, sendTrackingData, setSecuredSupport, setStrataHeaders }; | ||
//# sourceMappingURL=index.es.js.map |
export * from "./account/account"; | ||
export * from "./case"; | ||
export * from "./feedbackForm/feesdbackForm"; | ||
export * from "./languageDetection/languageDetection"; | ||
export * from "./metadata/metadata"; | ||
@@ -5,0 +6,0 @@ export * from "./recommendations"; |
@@ -52,4 +52,6 @@ var __assign = (this && this.__assign) || function () { | ||
if (s != null && typeof Object.getOwnPropertySymbols === "function") | ||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0) | ||
t[p[i]] = s[p[i]]; | ||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { | ||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) | ||
t[p[i]] = s[p[i]]; | ||
} | ||
return t; | ||
@@ -56,0 +58,0 @@ }; |
{ | ||
"name": "@rh-support/api", | ||
"version": "0.0.8", | ||
"description": "> TODO: description", | ||
"version": "0.0.10", | ||
"description": "Contains all the backend API calls", | ||
"author": "Vikas Rathee <vrathee@redhat.com>", | ||
"homepage": "", | ||
"license": "ISC", | ||
@@ -28,4 +27,4 @@ "main": "lib/index.js", | ||
"scripts": { | ||
"build:watch": "rollup -c ./node_modules/@rh-support/configs/rollup.config.js --watch & tsc -w", | ||
"build": "rimraf lib && rollup -c ./node_modules/@rh-support/configs/rollup.config.js && tsc", | ||
"build:watch": "rollup -c ./node_modules/@rh-support/configs/packages/rollup.config.js --watch & tsc -w", | ||
"build": "rimraf lib && rollup -c ./node_modules/@rh-support/configs/packages/rollup.config.js && tsc", | ||
"prepublishOnly": "npm run build" | ||
@@ -35,14 +34,16 @@ }, | ||
"btoa-lite": "^1.0.0", | ||
"jsuri": "^1.3.1" | ||
"jsuri": "^1.3.1", | ||
"whatwg-fetch": "^3.0.0" | ||
}, | ||
"peerDependencies": { | ||
"lodash": ">=4.17.15" | ||
"lodash": ">=4.17.15", | ||
"whatwg-fetch": ">=3.0.0" | ||
}, | ||
"devDependencies": { | ||
"@rh-support/configs": "^0.0.8", | ||
"@rh-support/configs": "^0.0.10", | ||
"lodash": "^4.17.15", | ||
"rimraf": "^2.6.3", | ||
"rollup": "^1.17.0" | ||
"rollup": "^1.20.1" | ||
}, | ||
"gitHead": "434a54c8fc85ac1bad32f63cb96b403cd66a3ab7" | ||
"gitHead": "b1f9a08b5628c861baa538b36b38f54c7c866438" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
192237
58
2148
5
+ Addedwhatwg-fetch@^3.0.0
+ Addedwhatwg-fetch@3.6.20(transitive)