@das-fed/utils 7.0.7-hot.22 → 7.0.7-hot.23
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/api-services/index.js +840 -826
- package/api-services/index.js.gz +0 -0
- package/api-services/modules/app-manage/index.js +725 -743
- package/api-services/modules/app-manage/index.js.gz +0 -0
- package/api-services/modules/authentication/index.js +646 -650
- package/api-services/modules/authentication/index.js.gz +0 -0
- package/api-services/modules/duty-manage/index.js +723 -741
- package/api-services/modules/duty-manage/index.js.gz +0 -0
- package/api-services/modules/file/index.js +764 -750
- package/api-services/modules/file/index.js.gz +0 -0
- package/api-services/modules/gateway-edge/index.js +743 -725
- package/api-services/modules/gateway-edge/index.js.gz +0 -0
- package/api-services/modules/iot/index.js +724 -706
- package/api-services/modules/iot/index.js.gz +0 -0
- package/api-services/modules/permission/index.js +743 -725
- package/api-services/modules/permission/index.js.gz +0 -0
- package/api-services/modules/platformManage/index.js +644 -648
- package/api-services/modules/platformManage/index.js.gz +0 -0
- package/api-services/modules/portal/index.js +625 -621
- package/api-services/modules/portal/index.js.gz +0 -0
- package/api-services/src/create-service/index.js +699 -717
- package/api-services/src/create-service/index.js.gz +0 -0
- package/create-api-service/index.js +717 -699
- package/create-api-service/index.js.gz +0 -0
- package/create-api-service/sso/index.js +71 -68
- package/create-api-service/sso/index.js.gz +0 -0
- package/package.json +4 -4
|
Binary file
|
|
@@ -130,7 +130,7 @@ const un = (e, t, n, { allOwnKeys: r } = {}) => (K(t, (o, i) => {
|
|
|
130
130
|
let s;
|
|
131
131
|
(s = t(o, i, e)) !== !1 && (r[i] = s || o);
|
|
132
132
|
}), Object.defineProperties(e, r);
|
|
133
|
-
},
|
|
133
|
+
}, Rn = (e) => {
|
|
134
134
|
dt(e, (t, n) => {
|
|
135
135
|
if (A(e) && ["arguments", "caller", "callee"].indexOf(n) !== -1)
|
|
136
136
|
return !1;
|
|
@@ -145,7 +145,7 @@ const un = (e, t, n, { allOwnKeys: r } = {}) => (K(t, (o, i) => {
|
|
|
145
145
|
});
|
|
146
146
|
}
|
|
147
147
|
});
|
|
148
|
-
},
|
|
148
|
+
}, Sn = (e, t) => {
|
|
149
149
|
const n = {}, r = (o) => {
|
|
150
150
|
o.forEach((i) => {
|
|
151
151
|
n[i] = !0;
|
|
@@ -227,8 +227,8 @@ const _n = (e) => {
|
|
|
227
227
|
hasOwnProp: De,
|
|
228
228
|
// an alias to avoid ESLint no-prototype-builtins detection
|
|
229
229
|
reduceDescriptors: dt,
|
|
230
|
-
freezeMethods:
|
|
231
|
-
toObjectSet:
|
|
230
|
+
freezeMethods: Rn,
|
|
231
|
+
toObjectSet: Sn,
|
|
232
232
|
toCamelCase: bn,
|
|
233
233
|
noop: Tn,
|
|
234
234
|
toFiniteNumber: On,
|
|
@@ -340,11 +340,11 @@ function ue(e, t, n) {
|
|
|
340
340
|
if (a.endsWith(m, "{}"))
|
|
341
341
|
m = r ? m : m.slice(0, -2), p = JSON.stringify(p);
|
|
342
342
|
else if (a.isArray(p) && Un(p) || (a.isFileList(p) || a.endsWith(m, "[]")) && (E = a.toArray(p)))
|
|
343
|
-
return m = yt(m), E.forEach(function(
|
|
344
|
-
!(a.isUndefined(
|
|
343
|
+
return m = yt(m), E.forEach(function(S, C) {
|
|
344
|
+
!(a.isUndefined(S) || S === null) && t.append(
|
|
345
345
|
// eslint-disable-next-line no-nested-ternary
|
|
346
346
|
s === !0 ? Fe([m], C, i) : s === null ? m : m + "[]",
|
|
347
|
-
u(
|
|
347
|
+
u(S)
|
|
348
348
|
);
|
|
349
349
|
}), !1;
|
|
350
350
|
}
|
|
@@ -359,14 +359,14 @@ function ue(e, t, n) {
|
|
|
359
359
|
if (!a.isUndefined(p)) {
|
|
360
360
|
if (d.indexOf(p) !== -1)
|
|
361
361
|
throw Error("Circular reference detected in " + m.join("."));
|
|
362
|
-
d.push(p), a.forEach(p, function(E,
|
|
362
|
+
d.push(p), a.forEach(p, function(E, R) {
|
|
363
363
|
(!(a.isUndefined(E) || E === null) && o.call(
|
|
364
364
|
t,
|
|
365
365
|
E,
|
|
366
|
-
a.isString(
|
|
366
|
+
a.isString(R) ? R.trim() : R,
|
|
367
367
|
m,
|
|
368
368
|
w
|
|
369
|
-
)) === !0 && g(E, m ? m.concat(
|
|
369
|
+
)) === !0 && g(E, m ? m.concat(R) : [R]);
|
|
370
370
|
}), d.pop();
|
|
371
371
|
}
|
|
372
372
|
}
|
|
@@ -821,7 +821,7 @@ function he(e, t) {
|
|
|
821
821
|
i = c.call(n, i, o.normalize(), t ? t.status : void 0);
|
|
822
822
|
}), o.normalize(), i;
|
|
823
823
|
}
|
|
824
|
-
function
|
|
824
|
+
function Rt(e) {
|
|
825
825
|
return !!(e && e.__CANCEL__);
|
|
826
826
|
}
|
|
827
827
|
function M(e, t, n) {
|
|
@@ -830,7 +830,7 @@ function M(e, t, n) {
|
|
|
830
830
|
a.inherits(M, y, {
|
|
831
831
|
__CANCEL__: !0
|
|
832
832
|
});
|
|
833
|
-
function
|
|
833
|
+
function St(e, t, n) {
|
|
834
834
|
const r = n.config.validateStatus;
|
|
835
835
|
!n.status || !r || r(n.status) ? e(n) : t(new y(
|
|
836
836
|
"Request failed with status code " + n.status,
|
|
@@ -1038,17 +1038,17 @@ const Ot = (e) => {
|
|
|
1038
1038
|
function E() {
|
|
1039
1039
|
if (!h)
|
|
1040
1040
|
return;
|
|
1041
|
-
const
|
|
1041
|
+
const S = _.from(
|
|
1042
1042
|
"getAllResponseHeaders" in h && h.getAllResponseHeaders()
|
|
1043
1043
|
), O = {
|
|
1044
1044
|
data: !c || c === "text" || c === "json" ? h.responseText : h.response,
|
|
1045
1045
|
status: h.status,
|
|
1046
1046
|
statusText: h.statusText,
|
|
1047
|
-
headers:
|
|
1047
|
+
headers: S,
|
|
1048
1048
|
config: e,
|
|
1049
1049
|
request: h
|
|
1050
1050
|
};
|
|
1051
|
-
|
|
1051
|
+
St(function(N) {
|
|
1052
1052
|
n(N), m();
|
|
1053
1053
|
}, function(N) {
|
|
1054
1054
|
r(N), m();
|
|
@@ -1071,12 +1071,12 @@ const Ot = (e) => {
|
|
|
1071
1071
|
)), h = null;
|
|
1072
1072
|
}, i === void 0 && s.setContentType(null), "setRequestHeader" in h && a.forEach(s.toJSON(), function(C, O) {
|
|
1073
1073
|
h.setRequestHeader(O, C);
|
|
1074
|
-
}), a.isUndefined(o.withCredentials) || (h.withCredentials = !!o.withCredentials), c && c !== "json" && (h.responseType = o.responseType), u && ([w, p] = re(u, !0), h.addEventListener("progress", w)), f && h.upload && ([d, g] = re(f), h.upload.addEventListener("progress", d), h.upload.addEventListener("loadend", g)), (o.cancelToken || o.signal) && (l = (
|
|
1075
|
-
h && (r(!
|
|
1074
|
+
}), a.isUndefined(o.withCredentials) || (h.withCredentials = !!o.withCredentials), c && c !== "json" && (h.responseType = o.responseType), u && ([w, p] = re(u, !0), h.addEventListener("progress", w)), f && h.upload && ([d, g] = re(f), h.upload.addEventListener("progress", d), h.upload.addEventListener("loadend", g)), (o.cancelToken || o.signal) && (l = (S) => {
|
|
1075
|
+
h && (r(!S || S.type ? new M(null, e, h) : S), h.abort(), h = null);
|
|
1076
1076
|
}, o.cancelToken && o.cancelToken.subscribe(l), o.signal && (o.signal.aborted ? l() : o.signal.addEventListener("abort", l)));
|
|
1077
|
-
const
|
|
1078
|
-
if (
|
|
1079
|
-
r(new y("Unsupported protocol " +
|
|
1077
|
+
const R = Yn(o.url);
|
|
1078
|
+
if (R && T.protocols.indexOf(R) === -1) {
|
|
1079
|
+
r(new y("Unsupported protocol " + R + ":", y.ERR_BAD_REQUEST, e));
|
|
1080
1080
|
return;
|
|
1081
1081
|
}
|
|
1082
1082
|
h.send(i || null);
|
|
@@ -1251,32 +1251,32 @@ const hr = async (e) => {
|
|
|
1251
1251
|
duplex: "half",
|
|
1252
1252
|
credentials: E ? d : void 0
|
|
1253
1253
|
});
|
|
1254
|
-
let
|
|
1255
|
-
const
|
|
1256
|
-
if (Ee && (c ||
|
|
1254
|
+
let R = await fetch(p, w);
|
|
1255
|
+
const S = Ee && (u === "stream" || u === "response");
|
|
1256
|
+
if (Ee && (c || S && m)) {
|
|
1257
1257
|
const O = {};
|
|
1258
1258
|
["status", "statusText", "headers"].forEach((Ne) => {
|
|
1259
|
-
O[Ne] =
|
|
1259
|
+
O[Ne] = R[Ne];
|
|
1260
1260
|
});
|
|
1261
|
-
const P = a.toFiniteNumber(
|
|
1261
|
+
const P = a.toFiniteNumber(R.headers.get("content-length")), [N, X] = c && je(
|
|
1262
1262
|
P,
|
|
1263
1263
|
re(qe(c), !0)
|
|
1264
1264
|
) || [];
|
|
1265
|
-
|
|
1266
|
-
Me(
|
|
1265
|
+
R = new Response(
|
|
1266
|
+
Me(R.body, $e, N, () => {
|
|
1267
1267
|
X && X(), m && m();
|
|
1268
1268
|
}),
|
|
1269
1269
|
O
|
|
1270
1270
|
);
|
|
1271
1271
|
}
|
|
1272
1272
|
u = u || "text";
|
|
1273
|
-
let C = await oe[a.findKey(oe, u) || "text"](
|
|
1274
|
-
return !
|
|
1275
|
-
|
|
1273
|
+
let C = await oe[a.findKey(oe, u) || "text"](R, e);
|
|
1274
|
+
return !S && m && m(), await new Promise((O, P) => {
|
|
1275
|
+
St(O, P, {
|
|
1276
1276
|
data: C,
|
|
1277
|
-
headers: _.from(
|
|
1278
|
-
status:
|
|
1279
|
-
statusText:
|
|
1277
|
+
headers: _.from(R.headers),
|
|
1278
|
+
status: R.status,
|
|
1279
|
+
statusText: R.statusText,
|
|
1280
1280
|
config: e,
|
|
1281
1281
|
request: p
|
|
1282
1282
|
});
|
|
@@ -1289,12 +1289,12 @@ const hr = async (e) => {
|
|
|
1289
1289
|
}
|
|
1290
1290
|
) : y.from(E, E && E.code, e, p);
|
|
1291
1291
|
}
|
|
1292
|
-
}),
|
|
1292
|
+
}), Re = {
|
|
1293
1293
|
http: Ln,
|
|
1294
1294
|
xhr: ar,
|
|
1295
1295
|
fetch: yr
|
|
1296
1296
|
};
|
|
1297
|
-
a.forEach(
|
|
1297
|
+
a.forEach(Re, (e, t) => {
|
|
1298
1298
|
if (e) {
|
|
1299
1299
|
try {
|
|
1300
1300
|
Object.defineProperty(e, "name", { value: t });
|
|
@@ -1312,7 +1312,7 @@ const ze = (e) => `- ${e}`, wr = (e) => a.isFunction(e) || e === null || e === !
|
|
|
1312
1312
|
for (let i = 0; i < t; i++) {
|
|
1313
1313
|
n = e[i];
|
|
1314
1314
|
let s;
|
|
1315
|
-
if (r = n, !wr(n) && (r =
|
|
1315
|
+
if (r = n, !wr(n) && (r = Re[(s = String(n)).toLowerCase()], r === void 0))
|
|
1316
1316
|
throw new y(`Unknown adapter '${s}'`);
|
|
1317
1317
|
if (r)
|
|
1318
1318
|
break;
|
|
@@ -1332,7 +1332,7 @@ const ze = (e) => `- ${e}`, wr = (e) => a.isFunction(e) || e === null || e === !
|
|
|
1332
1332
|
}
|
|
1333
1333
|
return r;
|
|
1334
1334
|
},
|
|
1335
|
-
adapters:
|
|
1335
|
+
adapters: Re
|
|
1336
1336
|
};
|
|
1337
1337
|
function me(e) {
|
|
1338
1338
|
if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)
|
|
@@ -1349,7 +1349,7 @@ function Je(e) {
|
|
|
1349
1349
|
r
|
|
1350
1350
|
), r.headers = _.from(r.headers), r;
|
|
1351
1351
|
}, function(r) {
|
|
1352
|
-
return
|
|
1352
|
+
return Rt(r) || (me(e), r && r.response && (r.response.data = he.call(
|
|
1353
1353
|
e,
|
|
1354
1354
|
e.transformResponse,
|
|
1355
1355
|
r.response
|
|
@@ -1607,10 +1607,10 @@ function Er(e) {
|
|
|
1607
1607
|
return e.apply(null, n);
|
|
1608
1608
|
};
|
|
1609
1609
|
}
|
|
1610
|
-
function
|
|
1610
|
+
function Rr(e) {
|
|
1611
1611
|
return a.isObject(e) && e.isAxiosError === !0;
|
|
1612
1612
|
}
|
|
1613
|
-
const
|
|
1613
|
+
const Se = {
|
|
1614
1614
|
Continue: 100,
|
|
1615
1615
|
SwitchingProtocols: 101,
|
|
1616
1616
|
Processing: 102,
|
|
@@ -1675,8 +1675,8 @@ const Re = {
|
|
|
1675
1675
|
NotExtended: 510,
|
|
1676
1676
|
NetworkAuthenticationRequired: 511
|
|
1677
1677
|
};
|
|
1678
|
-
Object.entries(
|
|
1679
|
-
|
|
1678
|
+
Object.entries(Se).forEach(([e, t]) => {
|
|
1679
|
+
Se[t] = e;
|
|
1680
1680
|
});
|
|
1681
1681
|
function Pt(e) {
|
|
1682
1682
|
const t = new I(e), n = it(I.prototype.request, t);
|
|
@@ -1688,7 +1688,7 @@ const b = Pt(Q);
|
|
|
1688
1688
|
b.Axios = I;
|
|
1689
1689
|
b.CanceledError = M;
|
|
1690
1690
|
b.CancelToken = br;
|
|
1691
|
-
b.isCancel =
|
|
1691
|
+
b.isCancel = Rt;
|
|
1692
1692
|
b.VERSION = xt;
|
|
1693
1693
|
b.toFormData = ue;
|
|
1694
1694
|
b.AxiosError = y;
|
|
@@ -1697,12 +1697,12 @@ b.all = function(t) {
|
|
|
1697
1697
|
return Promise.all(t);
|
|
1698
1698
|
};
|
|
1699
1699
|
b.spread = Er;
|
|
1700
|
-
b.isAxiosError =
|
|
1700
|
+
b.isAxiosError = Rr;
|
|
1701
1701
|
b.mergeConfig = B;
|
|
1702
1702
|
b.AxiosHeaders = _;
|
|
1703
1703
|
b.formToJSON = (e) => Et(a.isHTMLForm(e) ? new FormData(e) : e);
|
|
1704
1704
|
b.getAdapter = kt.getAdapter;
|
|
1705
|
-
b.HttpStatusCode =
|
|
1705
|
+
b.HttpStatusCode = Se;
|
|
1706
1706
|
b.default = b;
|
|
1707
1707
|
const {
|
|
1708
1708
|
Axios: to,
|
|
@@ -1731,7 +1731,7 @@ function G(e) {
|
|
|
1731
1731
|
}
|
|
1732
1732
|
return e;
|
|
1733
1733
|
}
|
|
1734
|
-
var
|
|
1734
|
+
var Sr = {
|
|
1735
1735
|
read: function(e) {
|
|
1736
1736
|
return e[0] === '"' && (e = e.slice(1, -1)), e.replace(/(%[\dA-F]{2})+/gi, decodeURIComponent);
|
|
1737
1737
|
},
|
|
@@ -1792,7 +1792,7 @@ function Te(e, t) {
|
|
|
1792
1792
|
}
|
|
1793
1793
|
);
|
|
1794
1794
|
}
|
|
1795
|
-
var Tr = Te(
|
|
1795
|
+
var Tr = Te(Sr, { path: "/" }), We;
|
|
1796
1796
|
const Lt = typeof window < "u", Or = (e) => typeof e == "string", Ke = () => +Date.now(), Oe = () => {
|
|
1797
1797
|
};
|
|
1798
1798
|
Lt && ((We = window == null ? void 0 : window.navigator) != null && We.userAgent) && /iP(ad|hone|od)/.test(window.navigator.userAgent);
|
|
@@ -1951,61 +1951,63 @@ const F = (e) => new URL(location.href).searchParams.get(e), _e = (e) => {
|
|
|
1951
1951
|
}, qr = async () => {
|
|
1952
1952
|
const e = F("authorizer") || "";
|
|
1953
1953
|
if (console.log("authorizer====", e), _e(["authorizer"]), e === "feishu") {
|
|
1954
|
-
if (
|
|
1955
|
-
const
|
|
1956
|
-
const
|
|
1954
|
+
if (!window.tt) return "";
|
|
1955
|
+
const t = async () => {
|
|
1956
|
+
const n = nt.feishu.ssoParam;
|
|
1957
|
+
return (await b.create().get(n, {
|
|
1957
1958
|
baseURL: tt,
|
|
1958
1959
|
params: {
|
|
1959
1960
|
source: "feishu",
|
|
1960
1961
|
fieldKey: "appId"
|
|
1961
1962
|
}
|
|
1962
|
-
});
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
const o = async (s) => {
|
|
1963
|
+
})).data || "";
|
|
1964
|
+
};
|
|
1965
|
+
return new Promise(async (n) => {
|
|
1966
|
+
const r = async (s) => {
|
|
1967
1967
|
try {
|
|
1968
1968
|
const c = nt.feishu.login, f = await b.create().post(
|
|
1969
1969
|
c,
|
|
1970
1970
|
{},
|
|
1971
1971
|
{
|
|
1972
1972
|
baseURL: tt,
|
|
1973
|
-
params: {}
|
|
1973
|
+
params: { code: s }
|
|
1974
1974
|
}
|
|
1975
|
-
)
|
|
1975
|
+
);
|
|
1976
|
+
console.log("login success", f.data);
|
|
1977
|
+
const { access_token: u = "", expires_in: l = 0, refresh_token: d = "" } = f.data, w = {
|
|
1976
1978
|
accessToken: u,
|
|
1977
1979
|
accessTokenExpiredAt: +/* @__PURE__ */ new Date() + Number(l) * 1e3,
|
|
1978
1980
|
refreshToken: d,
|
|
1979
1981
|
info: f.data
|
|
1980
1982
|
};
|
|
1981
|
-
q().save(w), await xe(u),
|
|
1983
|
+
q().save(w), await xe(u), n(u);
|
|
1982
1984
|
} catch (c) {
|
|
1983
|
-
console.error(c), v({ ...U, redirect_uri: L }),
|
|
1985
|
+
console.error(c), v({ ...U, redirect_uri: L }), n("");
|
|
1984
1986
|
}
|
|
1985
|
-
}, i = () => {
|
|
1987
|
+
}, o = await t(), i = () => {
|
|
1986
1988
|
window.tt.requestAuthCode({
|
|
1987
|
-
appId:
|
|
1989
|
+
appId: o,
|
|
1988
1990
|
success: (s) => {
|
|
1989
1991
|
const { code: c } = s;
|
|
1990
|
-
|
|
1992
|
+
r(c);
|
|
1991
1993
|
},
|
|
1992
1994
|
fail: (s) => {
|
|
1993
|
-
console.error("requestAuthCode fail", s), v({ ...U, redirect_uri: L }),
|
|
1995
|
+
console.error("requestAuthCode fail", s), v({ ...U, redirect_uri: L }), n("");
|
|
1994
1996
|
}
|
|
1995
1997
|
});
|
|
1996
1998
|
};
|
|
1997
|
-
window.tt.requestAccess ? window.tt.requestAccess({
|
|
1998
|
-
appID:
|
|
1999
|
+
window.tt.requestAccess ? (console.log("appId===", o), window.tt.requestAccess({
|
|
2000
|
+
appID: o,
|
|
1999
2001
|
scopeList: [],
|
|
2000
2002
|
success: (s) => {
|
|
2001
2003
|
const { code: c } = s;
|
|
2002
|
-
|
|
2004
|
+
console.log("requestAccess success", s), r(c);
|
|
2003
2005
|
},
|
|
2004
2006
|
fail: (s) => {
|
|
2005
2007
|
const { errno: c } = s;
|
|
2006
|
-
c === 103 ? i() : (console.error("requestAccess fail", s), v({ ...U, redirect_uri: L }),
|
|
2008
|
+
c === 103 ? i() : (console.error("requestAccess fail", s), v({ ...U, redirect_uri: L }), n(""));
|
|
2007
2009
|
}
|
|
2008
|
-
}) : i();
|
|
2010
|
+
})) : i();
|
|
2009
2011
|
});
|
|
2010
2012
|
}
|
|
2011
2013
|
return "";
|
|
@@ -2035,6 +2037,7 @@ const F = (e) => new URL(location.href).searchParams.get(e), _e = (e) => {
|
|
|
2035
2037
|
localStorage.getItem("idelTime") && It(Number(localStorage.getItem("idelTime")));
|
|
2036
2038
|
let ot = "";
|
|
2037
2039
|
const Mr = async () => {
|
|
2040
|
+
debugger;
|
|
2038
2041
|
const e = F("code") || "", t = F("redirect_url") || "/", n = F("kingdee_token") || "", r = F("loginType") || "";
|
|
2039
2042
|
if (r && localStorage.setItem("loginType", r), !e) return z();
|
|
2040
2043
|
if (e === ot)
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@das-fed/utils",
|
|
3
|
-
"version": "7.0.7-hot.
|
|
3
|
+
"version": "7.0.7-hot.23",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"license": "ISC",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@antv/x6": "^2.18.1",
|
|
12
|
-
"@das-fed/utils": "7.0.7-hot.
|
|
12
|
+
"@das-fed/utils": "7.0.7-hot.23",
|
|
13
13
|
"@vue/shared": "^3.4.21",
|
|
14
14
|
"@vueuse/core": "^9.6.0",
|
|
15
15
|
"axios": "^1.6.7",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"vue": "^3.4.21"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@das-fed/cli": "7.0.7-hot.
|
|
25
|
-
"@das-fed/web": "7.0.7-hot.
|
|
24
|
+
"@das-fed/cli": "7.0.7-hot.23",
|
|
25
|
+
"@das-fed/web": "7.0.7-hot.23",
|
|
26
26
|
"@types/js-cookie": "^3.0.6",
|
|
27
27
|
"@types/lodash-es": "^4.17.12",
|
|
28
28
|
"@types/qs": "^6.9.15",
|