@ywfe/fe-tools 1.2.1-beta.17 → 1.2.1-beta.19

Sign up to get free protection for your applications and to get access to all the features.
@@ -8704,29 +8704,29 @@ var require$$1 = /*@__PURE__*/getAugmentedNamespace(empty$1);
8704
8704
 
8705
8705
  function request(_a) {
8706
8706
  return __awaiter(this, arguments, void 0, function (_b) {
8707
- var method, basePathMap, getBasePath, isValidURL, prefix, requestUrl, fetchOption, response, message, result;
8707
+ var method, basePathMap, getBasePath, isValidURL, prefix, requestUrl, fetchOption, res;
8708
8708
  var input = _b.input;
8709
8709
  return __generator(this, function (_c) {
8710
8710
  switch (_c.label) {
8711
8711
  case 0:
8712
- method = input.method || "GET";
8712
+ method = input.method || 'GET';
8713
8713
  basePathMap = new Map([
8714
- ["prod", "https://gateway.ywwl.com"],
8715
- ["test", "https://test-gateway.ywwl.com"],
8716
- ["test2", "https://test2-gateway.ywwl.com"],
8717
- ["dev", "https://dev-gateway.ywwl.com"],
8714
+ ['prod', 'https://gateway.ywwl.com'],
8715
+ ['test', 'https://test-gateway.ywwl.com'],
8716
+ ['test2', 'https://test2-gateway.ywwl.com'],
8717
+ ['dev', 'https://dev-gateway.ywwl.com'],
8718
8718
  ]);
8719
8719
  getBasePath = function () {
8720
- var env = "{{env}}";
8720
+ var env = '{{env}}';
8721
8721
  return basePathMap.get(env);
8722
8722
  };
8723
8723
  isValidURL = function (url) {
8724
- var pattern = new RegExp("^(https?:\\/\\/)?" + // protocol
8725
- "((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|" + // domain name
8726
- "((\\d{1,3}\\.){3}\\d{1,3}))" + // OR ip (v4) address
8727
- "(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*" + // port and path
8728
- "(\\?[;&a-z\\d%_.~+=-]*)?" + // query string
8729
- "(\\#[-a-z\\d_]*)?$", "i"); // fragment locator
8724
+ var pattern = new RegExp('^(https?:\\/\\/)?' + // protocol
8725
+ '((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|' + // domain name
8726
+ '((\\d{1,3}\\.){3}\\d{1,3}))' + // OR ip (v4) address
8727
+ '(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*' + // port and path
8728
+ '(\\?[;&a-z\\d%_.~+=-]*)?' + // query string
8729
+ '(\\#[-a-z\\d_]*)?$', 'i'); // fragment locator
8730
8730
  return !!pattern.test(url);
8731
8731
  };
8732
8732
  prefix = getBasePath();
@@ -8734,31 +8734,40 @@ function request(_a) {
8734
8734
  fetchOption = {
8735
8735
  method: method,
8736
8736
  headers: {
8737
- "Content-type": "application/json",
8738
- "x-token": "{{token}}",
8737
+ 'Content-type': 'application/json',
8738
+ 'x-token': '{{token}}',
8739
8739
  },
8740
8740
  };
8741
- if (method.toUpperCase() === "POST") {
8741
+ if (method.toUpperCase() === 'POST') {
8742
8742
  fetchOption.body = JSON.stringify(input.params);
8743
8743
  }
8744
- else if (method.toUpperCase() === "GET") {
8744
+ else if (method.toUpperCase() === 'GET') {
8745
8745
  requestUrl = "".concat(requestUrl, "?").concat(ywfeUtils_esm.querystring.stringify(input.params || {}));
8746
8746
  }
8747
8747
  return [4 /*yield*/, fetch(requestUrl, fetchOption)];
8748
8748
  case 1:
8749
- response = _c.sent();
8750
- if (!response.ok) {
8751
- message = "An error has occured: ".concat(response.status);
8752
- return [2 /*return*/, { success: false, message: message }];
8753
- }
8754
- return [4 /*yield*/, response.json()];
8755
- case 2:
8756
- result = _c.sent();
8757
- return [2 /*return*/, result];
8749
+ res = _c.sent();
8750
+ return [2 /*return*/, res.json()];
8758
8751
  }
8759
8752
  });
8760
8753
  });
8761
8754
  }
8762
8755
 
8763
- export { request };
8756
+ function userInputToJson(_a) {
8757
+ return __awaiter(this, arguments, void 0, function (_b) {
8758
+ var input = _b.input;
8759
+ return __generator(this, function (_c) {
8760
+ input.userInput, input.rules;
8761
+ //const res = await fetools.request({
8762
+ //input:{
8763
+ //url:"https://fc-typechat.ywwl.com/userInputToJson",
8764
+ //method:"GET"
8765
+ //}
8766
+ //})
8767
+ return [2 /*return*/, "2"];
8768
+ });
8769
+ });
8770
+ }
8771
+
8772
+ export { request, userInputToJson };
8764
8773
  //# sourceMappingURL=ywfe-tools.esm.js.map