@iankibetsh/shframework 1.9.0 → 1.9.2
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/dist/library.js +14 -0
- package/dist/library.mjs +14 -1
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -6510,6 +6510,19 @@ const ShFrontend = {
|
|
|
6510
6510
|
}
|
|
6511
6511
|
};
|
|
6512
6512
|
|
|
6513
|
+
const query = async qlQuery => {
|
|
6514
|
+
const result = await shApis.graphQlQuery(qlQuery);
|
|
6515
|
+
return result.data
|
|
6516
|
+
};
|
|
6517
|
+
const mutate = async mutation => {
|
|
6518
|
+
const result = await shApis.graphQlMutate(mutation);
|
|
6519
|
+
return result.data
|
|
6520
|
+
};
|
|
6521
|
+
var shGql = {
|
|
6522
|
+
query,
|
|
6523
|
+
mutate
|
|
6524
|
+
};
|
|
6525
|
+
|
|
6513
6526
|
exports.Countries = countries;
|
|
6514
6527
|
exports.ManagePermissions = script$9;
|
|
6515
6528
|
exports.ShAutoForm = script$n;
|
|
@@ -6531,6 +6544,7 @@ exports.ShSilentAction = script$f;
|
|
|
6531
6544
|
exports.ShTable = script$e;
|
|
6532
6545
|
exports.ShTabs = script$d;
|
|
6533
6546
|
exports.shApis = shApis;
|
|
6547
|
+
exports.shGql = shGql;
|
|
6534
6548
|
exports.shRepo = shRepo;
|
|
6535
6549
|
exports.shStorage = ShStorage;
|
|
6536
6550
|
exports.useUserStore = useUserStore;
|
package/dist/library.mjs
CHANGED
|
@@ -6480,4 +6480,17 @@ const ShFrontend = {
|
|
|
6480
6480
|
}
|
|
6481
6481
|
};
|
|
6482
6482
|
|
|
6483
|
-
|
|
6483
|
+
const query = async qlQuery => {
|
|
6484
|
+
const result = await shApis.graphQlQuery(qlQuery);
|
|
6485
|
+
return result.data
|
|
6486
|
+
};
|
|
6487
|
+
const mutate = async mutation => {
|
|
6488
|
+
const result = await shApis.graphQlMutate(mutation);
|
|
6489
|
+
return result.data
|
|
6490
|
+
};
|
|
6491
|
+
var shGql = {
|
|
6492
|
+
query,
|
|
6493
|
+
mutate
|
|
6494
|
+
};
|
|
6495
|
+
|
|
6496
|
+
export { countries as Countries, script$9 as ManagePermissions, script$n as ShAutoForm, script$i as ShCanvas, script$a as ShCanvasBtn, script$g as ShConfirmAction, script$m as ShDropDownForm, script$c as ShDynamicTabs, script$u as ShForm, ShFrontend, script$l as ShModal, script$b as ShModalBtn, script$k as ShModalForm, script$j as ShModalFormAuto, script$w as ShPhone, script$4 as ShPopups, script$3 as ShRange, script$f as ShSilentAction, script$e as ShTable, script$d as ShTabs, shApis, shGql, shRepo, ShStorage as shStorage, useUserStore };
|