@sisense/mcp-server 0.2.2 → 0.2.4
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/{ai-hspmgr2c.js → ai-qt2rw4p0.js} +999 -959
- package/dist/{index-29n08mw7.js → index-0rmh0qta.js} +5 -5
- package/dist/{index-er0yspcy.js → index-6vz3bc2n.js} +552 -385
- package/dist/{index-vx54d05h.js → index-7ztxzw1b.js} +9 -9
- package/dist/{index-tqba2rwh.js → index-86j7fyp7.js} +406 -245
- package/dist/{index-p1pxtmwn.js → index-bgbnagw5.js} +18 -20
- package/dist/{index-d6843g0v.js → index-jatbeegy.js} +9 -7
- package/dist/{index-dxfb3krz.js → index-jgdfekw7.js} +375 -539
- package/dist/{index-qdth51hx.js → index-k71wsmah.js} +8 -1
- package/dist/{index-atgbxy7h.js → index-mxkgxy04.js} +28981 -27209
- package/dist/{index-vrapm0b4.js → index-p5hr1cfd.js} +458 -331
- package/dist/{index-dcrjg3fk.js → index-z44fq2x1.js} +3 -2
- package/dist/sse-server-0d83pnkk.js +54 -0
- package/dist/{sse-server-brx9qtyd.js → sse-server-22mq7fhc.js} +880 -757
- package/dist/{sse-server-3e0efmg2.js → sse-server-d3yx2z0r.js} +1845 -1825
- package/dist/{sse-server-4jjec4fz.js → sse-server-gcjj2741.js} +2081 -1695
- package/dist/{sse-server-rr3dp62e.js → sse-server-kpkj0hbc.js} +22749 -22399
- package/dist/{sse-server-36t17nga.js → sse-server-qhqncg7f.js} +3555 -3657
- package/dist/{sse-server-txz5g5t0.js → sse-server-rrtgkg21.js} +414 -177
- package/dist/{sse-server-nwjjjz6x.js → sse-server-wb2h6nz7.js} +3 -52
- package/dist/{sse-server-qj4zxq0f.js → sse-server-zmcz2c17.js} +12 -24
- package/dist/sse-server.js +96 -52
- package/dist/view.html +609 -544
- package/dist/{widget-renderer-66ws3xtk.js → widget-renderer-wjrpnwpy.js} +12 -12
- package/package.json +4 -4
- package/dist/sse-server-4b60tg0c.js +0 -136
|
@@ -3,11 +3,12 @@ import {
|
|
|
3
3
|
require_dist_cjs5 as require_dist_cjs3,
|
|
4
4
|
require_dist_cjs7 as require_dist_cjs5,
|
|
5
5
|
require_tslib
|
|
6
|
-
} from "./sse-server-
|
|
6
|
+
} from "./sse-server-rrtgkg21.js";
|
|
7
7
|
import {
|
|
8
8
|
require_dist_cjs
|
|
9
9
|
} from "./sse-server-epd916s3.js";
|
|
10
10
|
import"./sse-server-5tmgacdx.js";
|
|
11
|
+
import"./sse-server-0d83pnkk.js";
|
|
11
12
|
import"./sse-server-4g9za0qq.js";
|
|
12
13
|
import {
|
|
13
14
|
require_client
|
|
@@ -138,7 +139,7 @@ var require_fromHttp = __commonJS((exports) => {
|
|
|
138
139
|
var client_1 = require_client();
|
|
139
140
|
var node_http_handler_1 = require_dist_cjs2();
|
|
140
141
|
var property_provider_1 = require_dist_cjs4();
|
|
141
|
-
var promises_1 = tslib_1.__importDefault(__require("fs/promises"));
|
|
142
|
+
var promises_1 = tslib_1.__importDefault(__require("node:fs/promises"));
|
|
142
143
|
var checkUrl_1 = require_checkUrl();
|
|
143
144
|
var requestHelpers_1 = require_requestHelpers();
|
|
144
145
|
var retry_wrapper_1 = require_retry_wrapper();
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import {
|
|
2
|
+
__commonJS
|
|
3
|
+
} from "./sse-server-7wcvyxyj.js";
|
|
4
|
+
|
|
5
|
+
// node_modules/@smithy/querystring-parser/dist-cjs/index.js
|
|
6
|
+
var require_dist_cjs = __commonJS((exports) => {
|
|
7
|
+
function parseQueryString(querystring) {
|
|
8
|
+
const query = {};
|
|
9
|
+
querystring = querystring.replace(/^\?/, "");
|
|
10
|
+
if (querystring) {
|
|
11
|
+
for (const pair of querystring.split("&")) {
|
|
12
|
+
let [key, value = null] = pair.split("=");
|
|
13
|
+
key = decodeURIComponent(key);
|
|
14
|
+
if (value) {
|
|
15
|
+
value = decodeURIComponent(value);
|
|
16
|
+
}
|
|
17
|
+
if (!(key in query)) {
|
|
18
|
+
query[key] = value;
|
|
19
|
+
} else if (Array.isArray(query[key])) {
|
|
20
|
+
query[key].push(value);
|
|
21
|
+
} else {
|
|
22
|
+
query[key] = [query[key], value];
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
return query;
|
|
27
|
+
}
|
|
28
|
+
exports.parseQueryString = parseQueryString;
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
// node_modules/@smithy/url-parser/dist-cjs/index.js
|
|
32
|
+
var require_dist_cjs2 = __commonJS((exports) => {
|
|
33
|
+
var querystringParser = require_dist_cjs();
|
|
34
|
+
var parseUrl = (url) => {
|
|
35
|
+
if (typeof url === "string") {
|
|
36
|
+
return parseUrl(new URL(url));
|
|
37
|
+
}
|
|
38
|
+
const { hostname, pathname, port, protocol, search } = url;
|
|
39
|
+
let query;
|
|
40
|
+
if (search) {
|
|
41
|
+
query = querystringParser.parseQueryString(search);
|
|
42
|
+
}
|
|
43
|
+
return {
|
|
44
|
+
hostname,
|
|
45
|
+
port: port ? parseInt(port) : undefined,
|
|
46
|
+
protocol,
|
|
47
|
+
path: pathname,
|
|
48
|
+
query
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
exports.parseUrl = parseUrl;
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
export { require_dist_cjs2 as require_dist_cjs };
|