@malloy-publisher/sdk 0.0.181 → 0.0.183-dev
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/ServerProvider-lOQXDlqB.cjs.js +1 -0
- package/dist/{ServerProvider-DN2wSIAZ.es.js → ServerProvider-on-8FH5Z.es.js} +1259 -764
- package/dist/client/api.d.ts +674 -20
- package/dist/client/index.cjs.js +1 -1
- package/dist/client/index.es.js +57 -44
- package/dist/core-CjeTkq8O.es.js +7515 -0
- package/dist/core-YNpOLuB1.cjs.js +148 -0
- package/dist/engine-oniguruma-BkproSVE.cjs.js +1 -0
- package/dist/engine-oniguruma-C4vnmooL.es.js +272 -0
- package/dist/github-light-BFTOhCbz.cjs.js +1 -0
- package/dist/github-light-JYsPkUQd.es.js +4 -0
- package/dist/hooks/useDimensionFilters.d.ts +2 -0
- package/dist/hooks/useDimensionalFilterRangeData.d.ts +19 -5
- package/dist/index-BOLBP6_i.cjs.js +233 -0
- package/dist/index-DRDu9kIV.es.js +53627 -0
- package/dist/index.cjs.js +1 -244
- package/dist/index.es.js +48 -58039
- package/dist/json-71t8ZF9g.es.js +6 -0
- package/dist/json-y-J1j5EW.cjs.js +1 -0
- package/dist/sql-BqWZrLHB.cjs.js +1 -0
- package/dist/sql-DCkt643-.es.js +6 -0
- package/dist/typescript-BqvpT6pB.cjs.js +1 -0
- package/dist/typescript-buWNZFwO.es.js +6 -0
- package/package.json +6 -8
- package/src/components/Notebook/Notebook.tsx +162 -108
- package/src/components/ServerProvider.tsx +8 -0
- package/src/components/filter/DimensionFilter.tsx +68 -39
- package/src/components/highlighter.ts +54 -32
- package/src/hooks/useDimensionFilters.ts +2 -0
- package/src/hooks/useDimensionalFilterRangeData.ts +27 -13
- package/src/index.ts +0 -5
- package/dist/ServerProvider-DSeOLGfV.cjs.js +0 -1
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
-
import {
|
|
3
|
-
import { createOnigurumaEngine } from "shiki/engine/oniguruma";
|
|
4
|
-
|
|
5
|
-
// Fine-grained imports - only the languages and theme we actually need
|
|
6
|
-
import langJson from "@shikijs/langs/json";
|
|
7
|
-
import langSql from "@shikijs/langs/sql";
|
|
8
|
-
import langTypescript from "@shikijs/langs/typescript";
|
|
9
|
-
import themeGithubLight from "@shikijs/themes/github-light";
|
|
2
|
+
import type { HighlighterCore } from "shiki/core";
|
|
10
3
|
|
|
11
4
|
const malloyTMGrammar = {
|
|
12
5
|
scopeName: "source.malloy",
|
|
@@ -625,33 +618,62 @@ const malloySQLTMGrammar = {
|
|
|
625
618
|
};
|
|
626
619
|
|
|
627
620
|
const THEME = "github-light";
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
621
|
+
|
|
622
|
+
// Lazy, cached highlighter factory. The heavy Shiki WASM engine, grammars, and
|
|
623
|
+
// themes are only pulled into the module graph the first time `highlight()` is
|
|
624
|
+
// actually called, so consumers that import the SDK but never render Malloy
|
|
625
|
+
// code don't pay for the ~600KB Oniguruma WASM chunk.
|
|
626
|
+
let highlighterPromise: Promise<HighlighterCore> | undefined;
|
|
627
|
+
|
|
628
|
+
function getHighlighter(): Promise<HighlighterCore> {
|
|
629
|
+
if (!highlighterPromise) {
|
|
630
|
+
highlighterPromise = (async () => {
|
|
631
|
+
const [
|
|
632
|
+
{ createHighlighterCore },
|
|
633
|
+
{ createOnigurumaEngine },
|
|
634
|
+
{ default: langSql },
|
|
635
|
+
{ default: langJson },
|
|
636
|
+
{ default: langTypescript },
|
|
637
|
+
{ default: themeGithubLight },
|
|
638
|
+
] = await Promise.all([
|
|
639
|
+
import("shiki/core"),
|
|
640
|
+
import("shiki/engine/oniguruma"),
|
|
641
|
+
import("@shikijs/langs/sql"),
|
|
642
|
+
import("@shikijs/langs/json"),
|
|
643
|
+
import("@shikijs/langs/typescript"),
|
|
644
|
+
import("@shikijs/themes/github-light"),
|
|
645
|
+
]);
|
|
646
|
+
|
|
647
|
+
return createHighlighterCore({
|
|
648
|
+
engine: createOnigurumaEngine(import("shiki/wasm")),
|
|
649
|
+
themes: [themeGithubLight],
|
|
650
|
+
langs: [
|
|
651
|
+
langSql,
|
|
652
|
+
langJson,
|
|
653
|
+
langTypescript,
|
|
654
|
+
{
|
|
655
|
+
name: "malloy",
|
|
656
|
+
scopeName: "source.malloy",
|
|
657
|
+
embeddedLangs: ["sql"],
|
|
658
|
+
...(malloyDocsTMGrammar as any),
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
name: "malloysql",
|
|
662
|
+
scopeName: "source.malloy-sql",
|
|
663
|
+
embeddedLangs: ["sql"],
|
|
664
|
+
...(malloySQLTMGrammar as any),
|
|
665
|
+
},
|
|
666
|
+
],
|
|
667
|
+
});
|
|
668
|
+
})();
|
|
669
|
+
}
|
|
670
|
+
return highlighterPromise;
|
|
671
|
+
}
|
|
649
672
|
|
|
650
673
|
export async function highlight(code: string, lang: string): Promise<string> {
|
|
651
|
-
const highlighter = await
|
|
652
|
-
|
|
674
|
+
const highlighter = await getHighlighter();
|
|
675
|
+
return highlighter.codeToHtml(code, {
|
|
653
676
|
lang: lang,
|
|
654
677
|
theme: THEME,
|
|
655
678
|
});
|
|
656
|
-
return highlightedRaw;
|
|
657
679
|
}
|
|
@@ -34,6 +34,8 @@ export interface FilterSelection {
|
|
|
34
34
|
dimensionName: string;
|
|
35
35
|
/** Source name - required to uniquely identify filters when same dimension name exists in multiple sources */
|
|
36
36
|
source: string;
|
|
37
|
+
/** Server-side filter name. Used as the unique key and the API param key. */
|
|
38
|
+
filterName?: string;
|
|
37
39
|
matchType: MatchType;
|
|
38
40
|
value: FilterValue;
|
|
39
41
|
value2?: FilterValuePrimitive; // For "Between" match type
|
|
@@ -28,28 +28,39 @@ export interface DimensionSpec {
|
|
|
28
28
|
model: string;
|
|
29
29
|
/** Label to display in the UI (derived from # label="..." annotation) */
|
|
30
30
|
label?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Server-side filter identifier used as the API param key.
|
|
33
|
+
* Defaults to dimensionName when not set. Needed when the #(filter)
|
|
34
|
+
* annotation specifies name=X where X differs from the dimension field name.
|
|
35
|
+
*/
|
|
36
|
+
filterName?: string;
|
|
31
37
|
/** Minimum similarity score for Retrieval filter type (default: 0.1) */
|
|
32
38
|
minSimilarityScore?: number;
|
|
33
39
|
/** Optional list of static values to use for the dropdown instead of querying */
|
|
34
40
|
values?: string[];
|
|
41
|
+
/** Preferred initial match type (e.g. "After" for date greater_than filters) */
|
|
42
|
+
defaultMatchType?: import("./useDimensionFilters").MatchType;
|
|
43
|
+
/** Whether a value must be provided before queries execute */
|
|
44
|
+
required?: boolean;
|
|
35
45
|
}
|
|
36
46
|
|
|
37
47
|
/**
|
|
38
|
-
* Generates a unique key from source and
|
|
39
|
-
*
|
|
48
|
+
* Generates a unique key from source and an identifier string.
|
|
49
|
+
* Used to prevent collisions across sources and across multiple
|
|
50
|
+
* filters that target the same dimension.
|
|
40
51
|
*/
|
|
41
|
-
export function makeDimensionKey(
|
|
42
|
-
source
|
|
43
|
-
dimensionName: string,
|
|
44
|
-
): string {
|
|
45
|
-
return `${source}:${dimensionName}`;
|
|
52
|
+
export function makeDimensionKey(source: string, identifier: string): string {
|
|
53
|
+
return `${source}:${identifier}`;
|
|
46
54
|
}
|
|
47
55
|
|
|
48
56
|
/**
|
|
49
|
-
* Generates a unique key for a
|
|
57
|
+
* Generates a unique key for a DimensionSpec.
|
|
58
|
+
* Prefers filterName (unique per filter) over dimensionName so that
|
|
59
|
+
* two filters on the same dimension (e.g. date before/after) get
|
|
60
|
+
* distinct keys.
|
|
50
61
|
*/
|
|
51
62
|
export function getDimensionKey(spec: DimensionSpec): string {
|
|
52
|
-
return makeDimensionKey(spec.source, spec.dimensionName);
|
|
63
|
+
return makeDimensionKey(spec.source, spec.filterName ?? spec.dimensionName);
|
|
53
64
|
}
|
|
54
65
|
|
|
55
66
|
/**
|
|
@@ -247,10 +258,12 @@ function buildDimensionalIndexQuery(
|
|
|
247
258
|
return "";
|
|
248
259
|
}
|
|
249
260
|
|
|
250
|
-
// Build list of dimensions to index
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
.
|
|
261
|
+
// Build list of dimensions to index (deduplicate when multiple filters
|
|
262
|
+
// target the same dimension, e.g. date before & after)
|
|
263
|
+
const uniqueDimensions = [
|
|
264
|
+
...new Set(specsToFetch.map((spec) => spec.dimensionName)),
|
|
265
|
+
];
|
|
266
|
+
const dimensionsToIndex = uniqueDimensions.map((d) => `\`${d}\``).join(", ");
|
|
254
267
|
|
|
255
268
|
// Filter activeFilters to only include those for this source
|
|
256
269
|
const filtersForSource =
|
|
@@ -709,6 +722,7 @@ export function useDimensionalFilterRangeData(
|
|
|
709
722
|
{
|
|
710
723
|
query: config.query,
|
|
711
724
|
versionId: versionId,
|
|
725
|
+
bypassFilters: true,
|
|
712
726
|
},
|
|
713
727
|
);
|
|
714
728
|
return {
|
package/src/index.ts
CHANGED
|
@@ -4,8 +4,3 @@ export { useServer } from "./components/ServerProvider";
|
|
|
4
4
|
export * from "./hooks";
|
|
5
5
|
export { useRawQueryData } from "./hooks/useRawQueryData";
|
|
6
6
|
export * from "./utils/formatting";
|
|
7
|
-
import axios from "axios";
|
|
8
|
-
|
|
9
|
-
// There's a bug in the OpenAPI generator that causes it to ignore baseURL in the
|
|
10
|
-
// axios request if defaults.baseURL is not set.
|
|
11
|
-
axios.defaults.baseURL = "IfYouAreSeeingThis_baseURL_IsNotSet";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const F=require("react/jsx-runtime"),q=require("@tanstack/react-query"),u=require("axios"),k=require("react"),m="http://localhost/api/v0".replace(/\/+$/,"");class A{constructor(a,e=m,r=u){this.basePath=e,this.axios=r,a&&(this.configuration=a,this.basePath=a.basePath??e)}configuration}class se extends Error{constructor(a,e){super(e),this.field=a,this.name="RequiredError"}}const P={},V="https://example.com",d=function(c,a,e){if(e==null)throw new se(a,`Required parameter ${a} was null or undefined when calling ${c}.`)};function w(c,a,e=""){a!=null&&(typeof a=="object"?Array.isArray(a)?a.forEach(r=>w(c,r,e)):Object.keys(a).forEach(r=>w(c,a[r],`${e}${e!==""?".":""}${r}`)):c.has(e)?c.append(e,a):c.set(e,a))}const b=function(c,...a){const e=new URLSearchParams(c.search);w(e,a),c.search=e.toString()},y=function(c,a,e){const r=typeof c!="string";return(r&&e&&e.isJsonMime?e.isJsonMime(a.headers["Content-Type"]):r)?JSON.stringify(c!==void 0?c:{}):c||""},O=function(c){return c.pathname+c.search+c.hash},g=function(c,a,e,r){return(t=a,o=e)=>{const s={...c.options,url:(t.defaults.baseURL?"":r?.basePath??o)+c.url};return t.request(s)}},ne={Bigquery:"bigquery",Snowflake:"snowflake",Postgres:"postgres",Gcs:"gcs",S3:"s3",Azure:"azure"},ce={ServicePrincipal:"service_principal",SasToken:"sas_token"},le={Error:"error",Warn:"warn",Debug:"debug"},ie={Success:"success",Error:"error"},pe={Postgres:"postgres",Bigquery:"bigquery",Snowflake:"snowflake",Trino:"trino",Mysql:"mysql",Duckdb:"duckdb",Motherduck:"motherduck",Ducklake:"ducklake"},de={Ok:"ok",Failed:"failed"},he={Embedded:"embedded",Materialized:"materialized"},ue={Debug:"debug",Info:"info",Warn:"warn",Error:"error"},me={Markdown:"markdown",Code:"code"},Pe={Markdown:"markdown",Code:"code"},Ve={Initializing:"initializing",Serving:"serving",Draining:"draining"},B=function(c){return{createConnection:async(a,e,r,t={})=>{d("createConnection","projectName",a),d("createConnection","connectionName",e),d("createConnection","connection",r);const o="/projects/{projectName}/connections/{connectionName}".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))),s=new URL(o,V);let n;c&&(n=c.baseOptions);const l={method:"POST",...n,...t},i={},p={};i["Content-Type"]="application/json",b(s,p);let h=n&&n.headers?n.headers:{};return l.headers={...i,...h,...t.headers},l.data=y(r,l,c),{url:O(s),options:l}},deleteConnection:async(a,e,r={})=>{d("deleteConnection","projectName",a),d("deleteConnection","connectionName",e);const t="/projects/{projectName}/connections/{connectionName}".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))),o=new URL(t,V);let s;c&&(s=c.baseOptions);const n={method:"DELETE",...s,...r},l={};b(o,{});let p=s&&s.headers?s.headers:{};return n.headers={...l,...p,...r.headers},{url:O(o),options:n}},getConnection:async(a,e,r={})=>{d("getConnection","projectName",a),d("getConnection","connectionName",e);const t="/projects/{projectName}/connections/{connectionName}".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))),o=new URL(t,V);let s;c&&(s=c.baseOptions);const n={method:"GET",...s,...r},l={};b(o,{});let p=s&&s.headers?s.headers:{};return n.headers={...l,...p,...r.headers},{url:O(o),options:n}},getQuerydata:async(a,e,r,t,o={})=>{d("getQuerydata","projectName",a),d("getQuerydata","connectionName",e);const s="/projects/{projectName}/connections/{connectionName}/queryData".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))),n=new URL(s,V);let l;c&&(l=c.baseOptions);const i={method:"GET",...l,...o},p={},h={};r!==void 0&&(h.sqlStatement=r),t!==void 0&&(h.options=t),b(n,h);let C=l&&l.headers?l.headers:{};return i.headers={...p,...C,...o.headers},{url:O(n),options:i}},getSqlsource:async(a,e,r,t={})=>{d("getSqlsource","projectName",a),d("getSqlsource","connectionName",e);const o="/projects/{projectName}/connections/{connectionName}/sqlSource".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))),s=new URL(o,V);let n;c&&(n=c.baseOptions);const l={method:"GET",...n,...t},i={},p={};r!==void 0&&(p.sqlStatement=r),b(s,p);let h=n&&n.headers?n.headers:{};return l.headers={...i,...h,...t.headers},{url:O(s),options:l}},getTable:async(a,e,r,t,o={})=>{d("getTable","projectName",a),d("getTable","connectionName",e),d("getTable","schemaName",r),d("getTable","tablePath",t);const s="/projects/{projectName}/connections/{connectionName}/schemas/{schemaName}/tables/{tablePath}".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))).replace("{schemaName}",encodeURIComponent(String(r))).replace("{tablePath}",encodeURIComponent(String(t))),n=new URL(s,V);let l;c&&(l=c.baseOptions);const i={method:"GET",...l,...o},p={};b(n,{});let C=l&&l.headers?l.headers:{};return i.headers={...p,...C,...o.headers},{url:O(n),options:i}},getTemporarytable:async(a,e,r,t={})=>{d("getTemporarytable","projectName",a),d("getTemporarytable","connectionName",e);const o="/projects/{projectName}/connections/{connectionName}/temporaryTable".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))),s=new URL(o,V);let n;c&&(n=c.baseOptions);const l={method:"GET",...n,...t},i={},p={};r!==void 0&&(p.sqlStatement=r),b(s,p);let h=n&&n.headers?n.headers:{};return l.headers={...i,...h,...t.headers},{url:O(s),options:l}},listConnections:async(a,e={})=>{d("listConnections","projectName",a);const r="/projects/{projectName}/connections".replace("{projectName}",encodeURIComponent(String(a))),t=new URL(r,V);let o;c&&(o=c.baseOptions);const s={method:"GET",...o,...e},n={};b(t,{});let i=o&&o.headers?o.headers:{};return s.headers={...n,...i,...e.headers},{url:O(t),options:s}},listSchemas:async(a,e,r={})=>{d("listSchemas","projectName",a),d("listSchemas","connectionName",e);const t="/projects/{projectName}/connections/{connectionName}/schemas".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))),o=new URL(t,V);let s;c&&(s=c.baseOptions);const n={method:"GET",...s,...r},l={};b(o,{});let p=s&&s.headers?s.headers:{};return n.headers={...l,...p,...r.headers},{url:O(o),options:n}},listTables:async(a,e,r,t,o={})=>{d("listTables","projectName",a),d("listTables","connectionName",e),d("listTables","schemaName",r);const s="/projects/{projectName}/connections/{connectionName}/schemas/{schemaName}/tables".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))).replace("{schemaName}",encodeURIComponent(String(r))),n=new URL(s,V);let l;c&&(l=c.baseOptions);const i={method:"GET",...l,...o},p={},h={};t&&(h.tableNames=t),b(n,h);let C=l&&l.headers?l.headers:{};return i.headers={...p,...C,...o.headers},{url:O(n),options:i}},postQuerydata:async(a,e,r,t,o={})=>{d("postQuerydata","projectName",a),d("postQuerydata","connectionName",e),d("postQuerydata","postSqlsourceRequest",r);const s="/projects/{projectName}/connections/{connectionName}/sqlQuery".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))),n=new URL(s,V);let l;c&&(l=c.baseOptions);const i={method:"POST",...l,...o},p={},h={};t!==void 0&&(h.options=t),p["Content-Type"]="application/json",b(n,h);let C=l&&l.headers?l.headers:{};return i.headers={...p,...C,...o.headers},i.data=y(r,i,c),{url:O(n),options:i}},postSqlsource:async(a,e,r,t={})=>{d("postSqlsource","projectName",a),d("postSqlsource","connectionName",e),d("postSqlsource","postSqlsourceRequest",r);const o="/projects/{projectName}/connections/{connectionName}/sqlSource".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))),s=new URL(o,V);let n;c&&(n=c.baseOptions);const l={method:"POST",...n,...t},i={},p={};i["Content-Type"]="application/json",b(s,p);let h=n&&n.headers?n.headers:{};return l.headers={...i,...h,...t.headers},l.data=y(r,l,c),{url:O(s),options:l}},postTemporarytable:async(a,e,r,t={})=>{d("postTemporarytable","projectName",a),d("postTemporarytable","connectionName",e),d("postTemporarytable","postSqlsourceRequest",r);const o="/projects/{projectName}/connections/{connectionName}/sqlTemporaryTable".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))),s=new URL(o,V);let n;c&&(n=c.baseOptions);const l={method:"POST",...n,...t},i={},p={};i["Content-Type"]="application/json",b(s,p);let h=n&&n.headers?n.headers:{};return l.headers={...i,...h,...t.headers},l.data=y(r,l,c),{url:O(s),options:l}},updateConnection:async(a,e,r,t={})=>{d("updateConnection","projectName",a),d("updateConnection","connectionName",e),d("updateConnection","updateConnectionRequest",r);const o="/projects/{projectName}/connections/{connectionName}".replace("{projectName}",encodeURIComponent(String(a))).replace("{connectionName}",encodeURIComponent(String(e))),s=new URL(o,V);let n;c&&(n=c.baseOptions);const l={method:"PATCH",...n,...t},i={},p={};i["Content-Type"]="application/json",b(s,p);let h=n&&n.headers?n.headers:{};return l.headers={...i,...h,...t.headers},l.data=y(r,l,c),{url:O(s),options:l}}}},S=function(c){const a=B(c);return{async createConnection(e,r,t,o){const s=await a.createConnection(e,r,t,o),n=c?.serverIndex??0,l=P["ConnectionsApi.createConnection"]?.[n]?.url;return(i,p)=>g(s,u,m,c)(i,l||p)},async deleteConnection(e,r,t){const o=await a.deleteConnection(e,r,t),s=c?.serverIndex??0,n=P["ConnectionsApi.deleteConnection"]?.[s]?.url;return(l,i)=>g(o,u,m,c)(l,n||i)},async getConnection(e,r,t){const o=await a.getConnection(e,r,t),s=c?.serverIndex??0,n=P["ConnectionsApi.getConnection"]?.[s]?.url;return(l,i)=>g(o,u,m,c)(l,n||i)},async getQuerydata(e,r,t,o,s){const n=await a.getQuerydata(e,r,t,o,s),l=c?.serverIndex??0,i=P["ConnectionsApi.getQuerydata"]?.[l]?.url;return(p,h)=>g(n,u,m,c)(p,i||h)},async getSqlsource(e,r,t,o){const s=await a.getSqlsource(e,r,t,o),n=c?.serverIndex??0,l=P["ConnectionsApi.getSqlsource"]?.[n]?.url;return(i,p)=>g(s,u,m,c)(i,l||p)},async getTable(e,r,t,o,s){const n=await a.getTable(e,r,t,o,s),l=c?.serverIndex??0,i=P["ConnectionsApi.getTable"]?.[l]?.url;return(p,h)=>g(n,u,m,c)(p,i||h)},async getTemporarytable(e,r,t,o){const s=await a.getTemporarytable(e,r,t,o),n=c?.serverIndex??0,l=P["ConnectionsApi.getTemporarytable"]?.[n]?.url;return(i,p)=>g(s,u,m,c)(i,l||p)},async listConnections(e,r){const t=await a.listConnections(e,r),o=c?.serverIndex??0,s=P["ConnectionsApi.listConnections"]?.[o]?.url;return(n,l)=>g(t,u,m,c)(n,s||l)},async listSchemas(e,r,t){const o=await a.listSchemas(e,r,t),s=c?.serverIndex??0,n=P["ConnectionsApi.listSchemas"]?.[s]?.url;return(l,i)=>g(o,u,m,c)(l,n||i)},async listTables(e,r,t,o,s){const n=await a.listTables(e,r,t,o,s),l=c?.serverIndex??0,i=P["ConnectionsApi.listTables"]?.[l]?.url;return(p,h)=>g(n,u,m,c)(p,i||h)},async postQuerydata(e,r,t,o,s){const n=await a.postQuerydata(e,r,t,o,s),l=c?.serverIndex??0,i=P["ConnectionsApi.postQuerydata"]?.[l]?.url;return(p,h)=>g(n,u,m,c)(p,i||h)},async postSqlsource(e,r,t,o){const s=await a.postSqlsource(e,r,t,o),n=c?.serverIndex??0,l=P["ConnectionsApi.postSqlsource"]?.[n]?.url;return(i,p)=>g(s,u,m,c)(i,l||p)},async postTemporarytable(e,r,t,o){const s=await a.postTemporarytable(e,r,t,o),n=c?.serverIndex??0,l=P["ConnectionsApi.postTemporarytable"]?.[n]?.url;return(i,p)=>g(s,u,m,c)(i,l||p)},async updateConnection(e,r,t,o){const s=await a.updateConnection(e,r,t,o),n=c?.serverIndex??0,l=P["ConnectionsApi.updateConnection"]?.[n]?.url;return(i,p)=>g(s,u,m,c)(i,l||p)}}},be=function(c,a,e){const r=S(c);return{createConnection(t,o,s,n){return r.createConnection(t,o,s,n).then(l=>l(e,a))},deleteConnection(t,o,s){return r.deleteConnection(t,o,s).then(n=>n(e,a))},getConnection(t,o,s){return r.getConnection(t,o,s).then(n=>n(e,a))},getQuerydata(t,o,s,n,l){return r.getQuerydata(t,o,s,n,l).then(i=>i(e,a))},getSqlsource(t,o,s,n){return r.getSqlsource(t,o,s,n).then(l=>l(e,a))},getTable(t,o,s,n,l){return r.getTable(t,o,s,n,l).then(i=>i(e,a))},getTemporarytable(t,o,s,n){return r.getTemporarytable(t,o,s,n).then(l=>l(e,a))},listConnections(t,o){return r.listConnections(t,o).then(s=>s(e,a))},listSchemas(t,o,s){return r.listSchemas(t,o,s).then(n=>n(e,a))},listTables(t,o,s,n,l){return r.listTables(t,o,s,n,l).then(i=>i(e,a))},postQuerydata(t,o,s,n,l){return r.postQuerydata(t,o,s,n,l).then(i=>i(e,a))},postSqlsource(t,o,s,n){return r.postSqlsource(t,o,s,n).then(l=>l(e,a))},postTemporarytable(t,o,s,n){return r.postTemporarytable(t,o,s,n).then(l=>l(e,a))},updateConnection(t,o,s,n){return r.updateConnection(t,o,s,n).then(l=>l(e,a))}}};class $ extends A{createConnection(a,e,r,t){return S(this.configuration).createConnection(a,e,r,t).then(o=>o(this.axios,this.basePath))}deleteConnection(a,e,r){return S(this.configuration).deleteConnection(a,e,r).then(t=>t(this.axios,this.basePath))}getConnection(a,e,r){return S(this.configuration).getConnection(a,e,r).then(t=>t(this.axios,this.basePath))}getQuerydata(a,e,r,t,o){return S(this.configuration).getQuerydata(a,e,r,t,o).then(s=>s(this.axios,this.basePath))}getSqlsource(a,e,r,t){return S(this.configuration).getSqlsource(a,e,r,t).then(o=>o(this.axios,this.basePath))}getTable(a,e,r,t,o){return S(this.configuration).getTable(a,e,r,t,o).then(s=>s(this.axios,this.basePath))}getTemporarytable(a,e,r,t){return S(this.configuration).getTemporarytable(a,e,r,t).then(o=>o(this.axios,this.basePath))}listConnections(a,e){return S(this.configuration).listConnections(a,e).then(r=>r(this.axios,this.basePath))}listSchemas(a,e,r){return S(this.configuration).listSchemas(a,e,r).then(t=>t(this.axios,this.basePath))}listTables(a,e,r,t,o){return S(this.configuration).listTables(a,e,r,t,o).then(s=>s(this.axios,this.basePath))}postQuerydata(a,e,r,t,o){return S(this.configuration).postQuerydata(a,e,r,t,o).then(s=>s(this.axios,this.basePath))}postSqlsource(a,e,r,t){return S(this.configuration).postSqlsource(a,e,r,t).then(o=>o(this.axios,this.basePath))}postTemporarytable(a,e,r,t){return S(this.configuration).postTemporarytable(a,e,r,t).then(o=>o(this.axios,this.basePath))}updateConnection(a,e,r,t){return S(this.configuration).updateConnection(a,e,r,t).then(o=>o(this.axios,this.basePath))}}const E=function(c){return{testConnectionConfiguration:async(a,e={})=>{d("testConnectionConfiguration","connection",a);const r="/connections/test",t=new URL(r,V);let o;c&&(o=c.baseOptions);const s={method:"POST",...o,...e},n={},l={};n["Content-Type"]="application/json",b(t,l);let i=o&&o.headers?o.headers:{};return s.headers={...n,...i,...e.headers},s.data=y(a,s,c),{url:O(t),options:s}}}},T=function(c){const a=E(c);return{async testConnectionConfiguration(e,r){const t=await a.testConnectionConfiguration(e,r),o=c?.serverIndex??0,s=P["ConnectionsTestApi.testConnectionConfiguration"]?.[o]?.url;return(n,l)=>g(t,u,m,c)(n,s||l)}}},Oe=function(c,a,e){const r=T(c);return{testConnectionConfiguration(t,o){return r.testConnectionConfiguration(t,o).then(s=>s(e,a))}}};class ge extends A{testConnectionConfiguration(a,e){return T(this.configuration).testConnectionConfiguration(a,e).then(r=>r(this.axios,this.basePath))}}const L=function(c){return{listDatabases:async(a,e,r,t={})=>{d("listDatabases","projectName",a),d("listDatabases","packageName",e);const o="/projects/{projectName}/packages/{packageName}/databases".replace("{projectName}",encodeURIComponent(String(a))).replace("{packageName}",encodeURIComponent(String(e))),s=new URL(o,V);let n;c&&(n=c.baseOptions);const l={method:"GET",...n,...t},i={},p={};r!==void 0&&(p.versionId=r),b(s,p);let h=n&&n.headers?n.headers:{};return l.headers={...i,...h,...t.headers},{url:O(s),options:l}}}},Q=function(c){const a=L(c);return{async listDatabases(e,r,t,o){const s=await a.listDatabases(e,r,t,o),n=c?.serverIndex??0,l=P["DatabasesApi.listDatabases"]?.[n]?.url;return(i,p)=>g(s,u,m,c)(i,l||p)}}},Ce=function(c,a,e){const r=Q(c);return{listDatabases(t,o,s,n){return r.listDatabases(t,o,s,n).then(l=>l(e,a))}}};class H extends A{listDatabases(a,e,r,t){return Q(this.configuration).listDatabases(a,e,r,t).then(o=>o(this.axios,this.basePath))}}const W=function(c){return{compileModelSource:async(a,e,r,t,o={})=>{d("compileModelSource","projectName",a),d("compileModelSource","packageName",e),d("compileModelSource","path",r),d("compileModelSource","compileRequest",t);const s="/projects/{projectName}/packages/{packageName}/models/{path}/compile".replace("{projectName}",encodeURIComponent(String(a))).replace("{packageName}",encodeURIComponent(String(e))).replace("{path}",encodeURIComponent(String(r))),n=new URL(s,V);let l;c&&(l=c.baseOptions);const i={method:"POST",...l,...o},p={},h={};p["Content-Type"]="application/json",b(n,h);let C=l&&l.headers?l.headers:{};return i.headers={...p,...C,...o.headers},i.data=y(t,i,c),{url:O(n),options:i}},executeQueryModel:async(a,e,r,t,o={})=>{d("executeQueryModel","projectName",a),d("executeQueryModel","packageName",e),d("executeQueryModel","path",r),d("executeQueryModel","queryRequest",t);const s="/projects/{projectName}/packages/{packageName}/models/{path}/query".replace("{projectName}",encodeURIComponent(String(a))).replace("{packageName}",encodeURIComponent(String(e))).replace("{path}",encodeURIComponent(String(r))),n=new URL(s,V);let l;c&&(l=c.baseOptions);const i={method:"POST",...l,...o},p={},h={};p["Content-Type"]="application/json",b(n,h);let C=l&&l.headers?l.headers:{};return i.headers={...p,...C,...o.headers},i.data=y(t,i,c),{url:O(n),options:i}},getModel:async(a,e,r,t,o={})=>{d("getModel","projectName",a),d("getModel","packageName",e),d("getModel","path",r);const s="/projects/{projectName}/packages/{packageName}/models/{path}".replace("{projectName}",encodeURIComponent(String(a))).replace("{packageName}",encodeURIComponent(String(e))).replace("{path}",encodeURIComponent(String(r))),n=new URL(s,V);let l;c&&(l=c.baseOptions);const i={method:"GET",...l,...o},p={},h={};t!==void 0&&(h.versionId=t),b(n,h);let C=l&&l.headers?l.headers:{};return i.headers={...p,...C,...o.headers},{url:O(n),options:i}},listModels:async(a,e,r,t={})=>{d("listModels","projectName",a),d("listModels","packageName",e);const o="/projects/{projectName}/packages/{packageName}/models".replace("{projectName}",encodeURIComponent(String(a))).replace("{packageName}",encodeURIComponent(String(e))),s=new URL(o,V);let n;c&&(n=c.baseOptions);const l={method:"GET",...n,...t},i={},p={};r!==void 0&&(p.versionId=r),b(s,p);let h=n&&n.headers?n.headers:{};return l.headers={...i,...h,...t.headers},{url:O(s),options:l}}}},N=function(c){const a=W(c);return{async compileModelSource(e,r,t,o,s){const n=await a.compileModelSource(e,r,t,o,s),l=c?.serverIndex??0,i=P["ModelsApi.compileModelSource"]?.[l]?.url;return(p,h)=>g(n,u,m,c)(p,i||h)},async executeQueryModel(e,r,t,o,s){const n=await a.executeQueryModel(e,r,t,o,s),l=c?.serverIndex??0,i=P["ModelsApi.executeQueryModel"]?.[l]?.url;return(p,h)=>g(n,u,m,c)(p,i||h)},async getModel(e,r,t,o,s){const n=await a.getModel(e,r,t,o,s),l=c?.serverIndex??0,i=P["ModelsApi.getModel"]?.[l]?.url;return(p,h)=>g(n,u,m,c)(p,i||h)},async listModels(e,r,t,o){const s=await a.listModels(e,r,t,o),n=c?.serverIndex??0,l=P["ModelsApi.listModels"]?.[n]?.url;return(i,p)=>g(s,u,m,c)(i,l||p)}}},Se=function(c,a,e){const r=N(c);return{compileModelSource(t,o,s,n,l){return r.compileModelSource(t,o,s,n,l).then(i=>i(e,a))},executeQueryModel(t,o,s,n,l){return r.executeQueryModel(t,o,s,n,l).then(i=>i(e,a))},getModel(t,o,s,n,l){return r.getModel(t,o,s,n,l).then(i=>i(e,a))},listModels(t,o,s,n){return r.listModels(t,o,s,n).then(l=>l(e,a))}}};class D extends A{compileModelSource(a,e,r,t,o){return N(this.configuration).compileModelSource(a,e,r,t,o).then(s=>s(this.axios,this.basePath))}executeQueryModel(a,e,r,t,o){return N(this.configuration).executeQueryModel(a,e,r,t,o).then(s=>s(this.axios,this.basePath))}getModel(a,e,r,t,o){return N(this.configuration).getModel(a,e,r,t,o).then(s=>s(this.axios,this.basePath))}listModels(a,e,r,t){return N(this.configuration).listModels(a,e,r,t).then(o=>o(this.axios,this.basePath))}}const f=function(c){return{executeNotebookCell:async(a,e,r,t,o,s={})=>{d("executeNotebookCell","projectName",a),d("executeNotebookCell","packageName",e),d("executeNotebookCell","path",r),d("executeNotebookCell","cellIndex",t);const n="/projects/{projectName}/packages/{packageName}/notebooks/{path}/cells/{cellIndex}".replace("{projectName}",encodeURIComponent(String(a))).replace("{packageName}",encodeURIComponent(String(e))).replace("{path}",encodeURIComponent(String(r))).replace("{cellIndex}",encodeURIComponent(String(t))),l=new URL(n,V);let i;c&&(i=c.baseOptions);const p={method:"GET",...i,...s},h={},C={};o!==void 0&&(C.versionId=o),b(l,C);let v=i&&i.headers?i.headers:{};return p.headers={...h,...v,...s.headers},{url:O(l),options:p}},getNotebook:async(a,e,r,t,o={})=>{d("getNotebook","projectName",a),d("getNotebook","packageName",e),d("getNotebook","path",r);const s="/projects/{projectName}/packages/{packageName}/notebooks/{path}".replace("{projectName}",encodeURIComponent(String(a))).replace("{packageName}",encodeURIComponent(String(e))).replace("{path}",encodeURIComponent(String(r))),n=new URL(s,V);let l;c&&(l=c.baseOptions);const i={method:"GET",...l,...o},p={},h={};t!==void 0&&(h.versionId=t),b(n,h);let C=l&&l.headers?l.headers:{};return i.headers={...p,...C,...o.headers},{url:O(n),options:i}},listNotebooks:async(a,e,r,t={})=>{d("listNotebooks","projectName",a),d("listNotebooks","packageName",e);const o="/projects/{projectName}/packages/{packageName}/notebooks".replace("{projectName}",encodeURIComponent(String(a))).replace("{packageName}",encodeURIComponent(String(e))),s=new URL(o,V);let n;c&&(n=c.baseOptions);const l={method:"GET",...n,...t},i={},p={};r!==void 0&&(p.versionId=r),b(s,p);let h=n&&n.headers?n.headers:{};return l.headers={...i,...h,...t.headers},{url:O(s),options:l}}}},R=function(c){const a=f(c);return{async executeNotebookCell(e,r,t,o,s,n){const l=await a.executeNotebookCell(e,r,t,o,s,n),i=c?.serverIndex??0,p=P["NotebooksApi.executeNotebookCell"]?.[i]?.url;return(h,C)=>g(l,u,m,c)(h,p||C)},async getNotebook(e,r,t,o,s){const n=await a.getNotebook(e,r,t,o,s),l=c?.serverIndex??0,i=P["NotebooksApi.getNotebook"]?.[l]?.url;return(p,h)=>g(n,u,m,c)(p,i||h)},async listNotebooks(e,r,t,o){const s=await a.listNotebooks(e,r,t,o),n=c?.serverIndex??0,l=P["NotebooksApi.listNotebooks"]?.[n]?.url;return(i,p)=>g(s,u,m,c)(i,l||p)}}},ye=function(c,a,e){const r=R(c);return{executeNotebookCell(t,o,s,n,l,i){return r.executeNotebookCell(t,o,s,n,l,i).then(p=>p(e,a))},getNotebook(t,o,s,n,l){return r.getNotebook(t,o,s,n,l).then(i=>i(e,a))},listNotebooks(t,o,s,n){return r.listNotebooks(t,o,s,n).then(l=>l(e,a))}}};class G extends A{executeNotebookCell(a,e,r,t,o,s){return R(this.configuration).executeNotebookCell(a,e,r,t,o,s).then(n=>n(this.axios,this.basePath))}getNotebook(a,e,r,t,o){return R(this.configuration).getNotebook(a,e,r,t,o).then(s=>s(this.axios,this.basePath))}listNotebooks(a,e,r,t){return R(this.configuration).listNotebooks(a,e,r,t).then(o=>o(this.axios,this.basePath))}}const z=function(c){return{createPackage:async(a,e,r={})=>{d("createPackage","projectName",a),d("createPackage","_package",e);const t="/projects/{projectName}/packages".replace("{projectName}",encodeURIComponent(String(a))),o=new URL(t,V);let s;c&&(s=c.baseOptions);const n={method:"POST",...s,...r},l={},i={};l["Content-Type"]="application/json",b(o,i);let p=s&&s.headers?s.headers:{};return n.headers={...l,...p,...r.headers},n.data=y(e,n,c),{url:O(o),options:n}},deletePackage:async(a,e,r={})=>{d("deletePackage","projectName",a),d("deletePackage","packageName",e);const t="/projects/{projectName}/packages/{packageName}".replace("{projectName}",encodeURIComponent(String(a))).replace("{packageName}",encodeURIComponent(String(e))),o=new URL(t,V);let s;c&&(s=c.baseOptions);const n={method:"DELETE",...s,...r},l={};b(o,{});let p=s&&s.headers?s.headers:{};return n.headers={...l,...p,...r.headers},{url:O(o),options:n}},getPackage:async(a,e,r,t,o={})=>{d("getPackage","projectName",a),d("getPackage","packageName",e);const s="/projects/{projectName}/packages/{packageName}".replace("{projectName}",encodeURIComponent(String(a))).replace("{packageName}",encodeURIComponent(String(e))),n=new URL(s,V);let l;c&&(l=c.baseOptions);const i={method:"GET",...l,...o},p={},h={};r!==void 0&&(h.versionId=r),t!==void 0&&(h.reload=t),b(n,h);let C=l&&l.headers?l.headers:{};return i.headers={...p,...C,...o.headers},{url:O(n),options:i}},listPackages:async(a,e={})=>{d("listPackages","projectName",a);const r="/projects/{projectName}/packages".replace("{projectName}",encodeURIComponent(String(a))),t=new URL(r,V);let o;c&&(o=c.baseOptions);const s={method:"GET",...o,...e},n={};b(t,{});let i=o&&o.headers?o.headers:{};return s.headers={...n,...i,...e.headers},{url:O(t),options:s}},updatePackage:async(a,e,r,t={})=>{d("updatePackage","projectName",a),d("updatePackage","packageName",e),d("updatePackage","_package",r);const o="/projects/{projectName}/packages/{packageName}".replace("{projectName}",encodeURIComponent(String(a))).replace("{packageName}",encodeURIComponent(String(e))),s=new URL(o,V);let n;c&&(n=c.baseOptions);const l={method:"PATCH",...n,...t},i={},p={};i["Content-Type"]="application/json",b(s,p);let h=n&&n.headers?n.headers:{};return l.headers={...i,...h,...t.headers},l.data=y(r,l,c),{url:O(s),options:l}}}},j=function(c){const a=z(c);return{async createPackage(e,r,t){const o=await a.createPackage(e,r,t),s=c?.serverIndex??0,n=P["PackagesApi.createPackage"]?.[s]?.url;return(l,i)=>g(o,u,m,c)(l,n||i)},async deletePackage(e,r,t){const o=await a.deletePackage(e,r,t),s=c?.serverIndex??0,n=P["PackagesApi.deletePackage"]?.[s]?.url;return(l,i)=>g(o,u,m,c)(l,n||i)},async getPackage(e,r,t,o,s){const n=await a.getPackage(e,r,t,o,s),l=c?.serverIndex??0,i=P["PackagesApi.getPackage"]?.[l]?.url;return(p,h)=>g(n,u,m,c)(p,i||h)},async listPackages(e,r){const t=await a.listPackages(e,r),o=c?.serverIndex??0,s=P["PackagesApi.listPackages"]?.[o]?.url;return(n,l)=>g(t,u,m,c)(n,s||l)},async updatePackage(e,r,t,o){const s=await a.updatePackage(e,r,t,o),n=c?.serverIndex??0,l=P["PackagesApi.updatePackage"]?.[n]?.url;return(i,p)=>g(s,u,m,c)(i,l||p)}}},Ae=function(c,a,e){const r=j(c);return{createPackage(t,o,s){return r.createPackage(t,o,s).then(n=>n(e,a))},deletePackage(t,o,s){return r.deletePackage(t,o,s).then(n=>n(e,a))},getPackage(t,o,s,n,l){return r.getPackage(t,o,s,n,l).then(i=>i(e,a))},listPackages(t,o){return r.listPackages(t,o).then(s=>s(e,a))},updatePackage(t,o,s,n){return r.updatePackage(t,o,s,n).then(l=>l(e,a))}}};class J extends A{createPackage(a,e,r){return j(this.configuration).createPackage(a,e,r).then(t=>t(this.axios,this.basePath))}deletePackage(a,e,r){return j(this.configuration).deletePackage(a,e,r).then(t=>t(this.axios,this.basePath))}getPackage(a,e,r,t,o){return j(this.configuration).getPackage(a,e,r,t,o).then(s=>s(this.axios,this.basePath))}listPackages(a,e){return j(this.configuration).listPackages(a,e).then(r=>r(this.axios,this.basePath))}updatePackage(a,e,r,t){return j(this.configuration).updatePackage(a,e,r,t).then(o=>o(this.axios,this.basePath))}}const _=function(c){return{createProject:async(a,e={})=>{d("createProject","project",a);const r="/projects",t=new URL(r,V);let o;c&&(o=c.baseOptions);const s={method:"POST",...o,...e},n={},l={};n["Content-Type"]="application/json",b(t,l);let i=o&&o.headers?o.headers:{};return s.headers={...n,...i,...e.headers},s.data=y(a,s,c),{url:O(t),options:s}},deleteProject:async(a,e={})=>{d("deleteProject","projectName",a);const r="/projects/{projectName}".replace("{projectName}",encodeURIComponent(String(a))),t=new URL(r,V);let o;c&&(o=c.baseOptions);const s={method:"DELETE",...o,...e},n={};b(t,{});let i=o&&o.headers?o.headers:{};return s.headers={...n,...i,...e.headers},{url:O(t),options:s}},getProject:async(a,e,r={})=>{d("getProject","projectName",a);const t="/projects/{projectName}".replace("{projectName}",encodeURIComponent(String(a))),o=new URL(t,V);let s;c&&(s=c.baseOptions);const n={method:"GET",...s,...r},l={},i={};e!==void 0&&(i.reload=e),b(o,i);let p=s&&s.headers?s.headers:{};return n.headers={...l,...p,...r.headers},{url:O(o),options:n}},listProjects:async(a={})=>{const e="/projects",r=new URL(e,V);let t;c&&(t=c.baseOptions);const o={method:"GET",...t,...a},s={};b(r,{});let l=t&&t.headers?t.headers:{};return o.headers={...s,...l,...a.headers},{url:O(r),options:o}},updateProject:async(a,e,r={})=>{d("updateProject","projectName",a),d("updateProject","project",e);const t="/projects/{projectName}".replace("{projectName}",encodeURIComponent(String(a))),o=new URL(t,V);let s;c&&(s=c.baseOptions);const n={method:"PATCH",...s,...r},l={},i={};l["Content-Type"]="application/json",b(o,i);let p=s&&s.headers?s.headers:{};return n.headers={...l,...p,...r.headers},n.data=y(e,n,c),{url:O(o),options:n}}}},x=function(c){const a=_(c);return{async createProject(e,r){const t=await a.createProject(e,r),o=c?.serverIndex??0,s=P["ProjectsApi.createProject"]?.[o]?.url;return(n,l)=>g(t,u,m,c)(n,s||l)},async deleteProject(e,r){const t=await a.deleteProject(e,r),o=c?.serverIndex??0,s=P["ProjectsApi.deleteProject"]?.[o]?.url;return(n,l)=>g(t,u,m,c)(n,s||l)},async getProject(e,r,t){const o=await a.getProject(e,r,t),s=c?.serverIndex??0,n=P["ProjectsApi.getProject"]?.[s]?.url;return(l,i)=>g(o,u,m,c)(l,n||i)},async listProjects(e){const r=await a.listProjects(e),t=c?.serverIndex??0,o=P["ProjectsApi.listProjects"]?.[t]?.url;return(s,n)=>g(r,u,m,c)(s,o||n)},async updateProject(e,r,t){const o=await a.updateProject(e,r,t),s=c?.serverIndex??0,n=P["ProjectsApi.updateProject"]?.[s]?.url;return(l,i)=>g(o,u,m,c)(l,n||i)}}},je=function(c,a,e){const r=x(c);return{createProject(t,o){return r.createProject(t,o).then(s=>s(e,a))},deleteProject(t,o){return r.deleteProject(t,o).then(s=>s(e,a))},getProject(t,o,s){return r.getProject(t,o,s).then(n=>n(e,a))},listProjects(t){return r.listProjects(t).then(o=>o(e,a))},updateProject(t,o,s){return r.updateProject(t,o,s).then(n=>n(e,a))}}};class K extends A{createProject(a,e){return x(this.configuration).createProject(a,e).then(r=>r(this.axios,this.basePath))}deleteProject(a,e){return x(this.configuration).deleteProject(a,e).then(r=>r(this.axios,this.basePath))}getProject(a,e,r){return x(this.configuration).getProject(a,e,r).then(t=>t(this.axios,this.basePath))}listProjects(a){return x(this.configuration).listProjects(a).then(e=>e(this.axios,this.basePath))}updateProject(a,e,r){return x(this.configuration).updateProject(a,e,r).then(t=>t(this.axios,this.basePath))}}const Y=function(c){return{getStatus:async(a={})=>{const e="/status",r=new URL(e,V);let t;c&&(t=c.baseOptions);const o={method:"GET",...t,...a},s={};b(r,{});let l=t&&t.headers?t.headers:{};return o.headers={...s,...l,...a.headers},{url:O(r),options:o}}}},M=function(c){const a=Y(c);return{async getStatus(e){const r=await a.getStatus(e),t=c?.serverIndex??0,o=P["PublisherApi.getStatus"]?.[t]?.url;return(s,n)=>g(r,u,m,c)(s,o||n)}}},xe=function(c,a,e){const r=M(c);return{getStatus(t){return r.getStatus(t).then(o=>o(e,a))}}};class X extends A{getStatus(a){return M(this.configuration).getStatus(a).then(e=>e(this.axios,this.basePath))}}const Z=function(c){return{getWatchStatus:async(a={})=>{const e="/watch-mode/status",r=new URL(e,V);let t;c&&(t=c.baseOptions);const o={method:"GET",...t,...a},s={};b(r,{});let l=t&&t.headers?t.headers:{};return o.headers={...s,...l,...a.headers},{url:O(r),options:o}},startWatching:async(a,e={})=>{d("startWatching","startWatchRequest",a);const r="/watch-mode/start",t=new URL(r,V);let o;c&&(o=c.baseOptions);const s={method:"POST",...o,...e},n={},l={};n["Content-Type"]="application/json",b(t,l);let i=o&&o.headers?o.headers:{};return s.headers={...n,...i,...e.headers},s.data=y(a,s,c),{url:O(t),options:s}},stopWatching:async(a={})=>{const e="/watch-mode/stop",r=new URL(e,V);let t;c&&(t=c.baseOptions);const o={method:"POST",...t,...a},s={};b(r,{});let l=t&&t.headers?t.headers:{};return o.headers={...s,...l,...a.headers},{url:O(r),options:o}}}},I=function(c){const a=Z(c);return{async getWatchStatus(e){const r=await a.getWatchStatus(e),t=c?.serverIndex??0,o=P["WatchModeApi.getWatchStatus"]?.[t]?.url;return(s,n)=>g(r,u,m,c)(s,o||n)},async startWatching(e,r){const t=await a.startWatching(e,r),o=c?.serverIndex??0,s=P["WatchModeApi.startWatching"]?.[o]?.url;return(n,l)=>g(t,u,m,c)(n,s||l)},async stopWatching(e){const r=await a.stopWatching(e),t=c?.serverIndex??0,o=P["WatchModeApi.stopWatching"]?.[t]?.url;return(s,n)=>g(r,u,m,c)(s,o||n)}}},ke=function(c,a,e){const r=I(c);return{getWatchStatus(t){return r.getWatchStatus(t).then(o=>o(e,a))},startWatching(t,o){return r.startWatching(t,o).then(s=>s(e,a))},stopWatching(t){return r.stopWatching(t).then(o=>o(e,a))}}};class ee extends A{getWatchStatus(a){return I(this.configuration).getWatchStatus(a).then(e=>e(this.axios,this.basePath))}startWatching(a,e){return I(this.configuration).startWatching(a,e).then(r=>r(this.axios,this.basePath))}stopWatching(a){return I(this.configuration).stopWatching(a).then(e=>e(this.axios,this.basePath))}}class te{apiKey;username;password;accessToken;basePath;serverIndex;baseOptions;formDataCtor;constructor(a={}){this.apiKey=a.apiKey,this.username=a.username,this.password=a.password,this.accessToken=a.accessToken,this.basePath=a.basePath,this.serverIndex=a.serverIndex,this.baseOptions={...a.baseOptions,headers:{...a.baseOptions?.headers}},this.formDataCtor=a.formDataCtor}isJsonMime(a){const e=new RegExp("^(application/json|[^;/ ]+/[^;/ ]+[+]json)[ ]*(;.*)?$","i");return a!==null&&(e.test(a)||a.toLowerCase()==="application/json-patch+json")}}const ae=new q.QueryClient({defaultOptions:{queries:{retry:!1,throwOnError:!1},mutations:{retry:!1,throwOnError:!1}}}),re=k.createContext(void 0),Ne=(c,a)=>{const e=`${window.location.protocol}//${window.location.host}/api/v0`,r=u.create({baseURL:c||e,withCredentials:!0,timeout:6e5});r.interceptors.request.use(async o=>{const s=await a?.();return o.headers.Authorization=s||"",o});const t=new te({basePath:e});return{models:new D(t,e,r),publisher:new X(t,e,r),projects:new K(t,e,r),packages:new J(t,e,r),notebooks:new G(t,e,r),connections:new $(t,e,r),databases:new H(t,e,r),watchMode:new ee(t,e,r)}},ve=({children:c,getAccessToken:a,baseURL:e,mutable:r})=>{const t=k.useMemo(()=>Ne(e,a),[e,a]),o=e||`${window.location.protocol}//${window.location.host}/api/v0`,[s,n]=k.useState(r),[l,i]=k.useState(!0);k.useEffect(()=>{let h=!0;return(async()=>{try{const v=await t.publisher.getStatus();if(h){const oe=v.data?.frozenConfig;let U;oe?U=!1:r===void 0?U=!0:U=r,n(U),i(!1)}}catch(v){console.error("Failed to fetch publisher status:",v),h&&(n(r),i(!1))}})(),()=>{h=!1}},[t,r]);const p={server:o,getAccessToken:a,apiClients:t,mutable:s,isLoadingStatus:l};return F.jsx(q.QueryClientProvider,{client:ae,children:F.jsx(re.Provider,{value:p,children:c})})},Re=()=>{const c=k.useContext(re);if(c===void 0)throw new Error("useServer must be used within a ServerProvider");return c};exports.AttachedDatabaseTypeEnum=ne;exports.AzureConnectionAuthTypeEnum=ce;exports.CompileProblemSeverityEnum=le;exports.CompileResultStatusEnum=ie;exports.Configuration=te;exports.ConnectionStatusStatusEnum=de;exports.ConnectionTypeEnum=pe;exports.ConnectionsApi=$;exports.ConnectionsApiAxiosParamCreator=B;exports.ConnectionsApiFactory=be;exports.ConnectionsApiFp=S;exports.ConnectionsTestApi=ge;exports.ConnectionsTestApiAxiosParamCreator=E;exports.ConnectionsTestApiFactory=Oe;exports.ConnectionsTestApiFp=T;exports.DatabaseTypeEnum=he;exports.DatabasesApi=H;exports.DatabasesApiAxiosParamCreator=L;exports.DatabasesApiFactory=Ce;exports.DatabasesApiFp=Q;exports.LogMessageSeverityEnum=ue;exports.ModelsApi=D;exports.ModelsApiAxiosParamCreator=W;exports.ModelsApiFactory=Se;exports.ModelsApiFp=N;exports.NotebookCellResultTypeEnum=Pe;exports.NotebookCellTypeEnum=me;exports.NotebooksApi=G;exports.NotebooksApiAxiosParamCreator=f;exports.NotebooksApiFactory=ye;exports.NotebooksApiFp=R;exports.PackagesApi=J;exports.PackagesApiAxiosParamCreator=z;exports.PackagesApiFactory=Ae;exports.PackagesApiFp=j;exports.ProjectsApi=K;exports.ProjectsApiAxiosParamCreator=_;exports.ProjectsApiFactory=je;exports.ProjectsApiFp=x;exports.PublisherApi=X;exports.PublisherApiAxiosParamCreator=Y;exports.PublisherApiFactory=xe;exports.PublisherApiFp=M;exports.ServerProvider=ve;exports.ServerStatusOperationalStateEnum=Ve;exports.WatchModeApi=ee;exports.WatchModeApiAxiosParamCreator=Z;exports.WatchModeApiFactory=ke;exports.WatchModeApiFp=I;exports.globalQueryClient=ae;exports.useServer=Re;
|