@ywfe/fe-tools 1.2.1-beta.0 → 1.2.1-beta.1
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/lib/userInputToJson.d.ts +1 -1
- package/lib/ywfe-tools.cjs +14 -8
- package/lib/ywfe-tools.cjs.map +1 -1
- package/lib/ywfe-tools.esm.js +14 -8
- package/lib/ywfe-tools.esm.js.map +1 -1
- package/package.json +1 -1
- package/request.ts +1 -1
- package/userInputToJson.ts +8 -7
package/lib/ywfe-tools.esm.js
CHANGED
@@ -8755,16 +8755,22 @@ function request(_a) {
|
|
8755
8755
|
|
8756
8756
|
function userInputToJson(_a) {
|
8757
8757
|
return __awaiter(this, arguments, void 0, function (_b) {
|
8758
|
+
var res;
|
8758
8759
|
var input = _b.input;
|
8759
8760
|
return __generator(this, function (_c) {
|
8760
|
-
|
8761
|
-
|
8762
|
-
|
8763
|
-
|
8764
|
-
|
8765
|
-
|
8766
|
-
|
8767
|
-
|
8761
|
+
switch (_c.label) {
|
8762
|
+
case 0:
|
8763
|
+
input.userInput, input.rules;
|
8764
|
+
return [4 /*yield*/, feTools.request({
|
8765
|
+
input: {
|
8766
|
+
url: "https://fc-typechat.ywwl.com/userInputToJson",
|
8767
|
+
method: "GET"
|
8768
|
+
}
|
8769
|
+
})];
|
8770
|
+
case 1:
|
8771
|
+
res = _c.sent();
|
8772
|
+
return [2 /*return*/, res];
|
8773
|
+
}
|
8768
8774
|
});
|
8769
8775
|
});
|
8770
8776
|
}
|