@malloy-publisher/sdk 0.0.85 → 0.0.87

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.
@@ -1554,6 +1554,24 @@ export declare class NotebooksApi extends BaseAPI {
1554
1554
  * @export
1555
1555
  */
1556
1556
  export declare const PackagesApiAxiosParamCreator: (configuration?: Configuration) => {
1557
+ /**
1558
+ *
1559
+ * @summary Creates a new package.
1560
+ * @param {string} projectName Name of project
1561
+ * @param {object} body
1562
+ * @param {*} [options] Override http request option.
1563
+ * @throws {RequiredError}
1564
+ */
1565
+ createPackage: (projectName: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1566
+ /**
1567
+ *
1568
+ * @summary Deletes a package.
1569
+ * @param {string} projectName Name of project
1570
+ * @param {string} packageName Name of package
1571
+ * @param {*} [options] Override http request option.
1572
+ * @throws {RequiredError}
1573
+ */
1574
+ deletePackage: (projectName: string, packageName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1557
1575
  /**
1558
1576
  *
1559
1577
  * @summary Returns the package metadata.
@@ -1573,12 +1591,40 @@ export declare const PackagesApiAxiosParamCreator: (configuration?: Configuratio
1573
1591
  * @throws {RequiredError}
1574
1592
  */
1575
1593
  listPackages: (projectName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1594
+ /**
1595
+ *
1596
+ * @summary Updates a package.
1597
+ * @param {string} projectName Name of project
1598
+ * @param {string} packageName Name of package
1599
+ * @param {object} body
1600
+ * @param {*} [options] Override http request option.
1601
+ * @throws {RequiredError}
1602
+ */
1603
+ updatePackage: (projectName: string, packageName: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1576
1604
  };
1577
1605
  /**
1578
1606
  * PackagesApi - functional programming interface
1579
1607
  * @export
1580
1608
  */
1581
1609
  export declare const PackagesApiFp: (configuration?: Configuration) => {
1610
+ /**
1611
+ *
1612
+ * @summary Creates a new package.
1613
+ * @param {string} projectName Name of project
1614
+ * @param {object} body
1615
+ * @param {*} [options] Override http request option.
1616
+ * @throws {RequiredError}
1617
+ */
1618
+ createPackage(projectName: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Package>>;
1619
+ /**
1620
+ *
1621
+ * @summary Deletes a package.
1622
+ * @param {string} projectName Name of project
1623
+ * @param {string} packageName Name of package
1624
+ * @param {*} [options] Override http request option.
1625
+ * @throws {RequiredError}
1626
+ */
1627
+ deletePackage(projectName: string, packageName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Package>>;
1582
1628
  /**
1583
1629
  *
1584
1630
  * @summary Returns the package metadata.
@@ -1598,12 +1644,40 @@ export declare const PackagesApiFp: (configuration?: Configuration) => {
1598
1644
  * @throws {RequiredError}
1599
1645
  */
1600
1646
  listPackages(projectName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Package>>>;
1647
+ /**
1648
+ *
1649
+ * @summary Updates a package.
1650
+ * @param {string} projectName Name of project
1651
+ * @param {string} packageName Name of package
1652
+ * @param {object} body
1653
+ * @param {*} [options] Override http request option.
1654
+ * @throws {RequiredError}
1655
+ */
1656
+ updatePackage(projectName: string, packageName: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Package>>;
1601
1657
  };
1602
1658
  /**
1603
1659
  * PackagesApi - factory interface
1604
1660
  * @export
1605
1661
  */
1606
1662
  export declare const PackagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1663
+ /**
1664
+ *
1665
+ * @summary Creates a new package.
1666
+ * @param {string} projectName Name of project
1667
+ * @param {object} body
1668
+ * @param {*} [options] Override http request option.
1669
+ * @throws {RequiredError}
1670
+ */
1671
+ createPackage(projectName: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<Package>;
1672
+ /**
1673
+ *
1674
+ * @summary Deletes a package.
1675
+ * @param {string} projectName Name of project
1676
+ * @param {string} packageName Name of package
1677
+ * @param {*} [options] Override http request option.
1678
+ * @throws {RequiredError}
1679
+ */
1680
+ deletePackage(projectName: string, packageName: string, options?: RawAxiosRequestConfig): AxiosPromise<Package>;
1607
1681
  /**
1608
1682
  *
1609
1683
  * @summary Returns the package metadata.
@@ -1623,6 +1697,16 @@ export declare const PackagesApiFactory: (configuration?: Configuration, basePat
1623
1697
  * @throws {RequiredError}
1624
1698
  */
1625
1699
  listPackages(projectName: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Package>>;
1700
+ /**
1701
+ *
1702
+ * @summary Updates a package.
1703
+ * @param {string} projectName Name of project
1704
+ * @param {string} packageName Name of package
1705
+ * @param {object} body
1706
+ * @param {*} [options] Override http request option.
1707
+ * @throws {RequiredError}
1708
+ */
1709
+ updatePackage(projectName: string, packageName: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<Package>;
1626
1710
  };
1627
1711
  /**
1628
1712
  * PackagesApi - object-oriented interface
@@ -1631,6 +1715,26 @@ export declare const PackagesApiFactory: (configuration?: Configuration, basePat
1631
1715
  * @extends {BaseAPI}
1632
1716
  */
1633
1717
  export declare class PackagesApi extends BaseAPI {
1718
+ /**
1719
+ *
1720
+ * @summary Creates a new package.
1721
+ * @param {string} projectName Name of project
1722
+ * @param {object} body
1723
+ * @param {*} [options] Override http request option.
1724
+ * @throws {RequiredError}
1725
+ * @memberof PackagesApi
1726
+ */
1727
+ createPackage(projectName: string, body: object, options?: RawAxiosRequestConfig): Promise< AxiosResponse<Package, any>>;
1728
+ /**
1729
+ *
1730
+ * @summary Deletes a package.
1731
+ * @param {string} projectName Name of project
1732
+ * @param {string} packageName Name of package
1733
+ * @param {*} [options] Override http request option.
1734
+ * @throws {RequiredError}
1735
+ * @memberof PackagesApi
1736
+ */
1737
+ deletePackage(projectName: string, packageName: string, options?: RawAxiosRequestConfig): Promise< AxiosResponse<Package, any>>;
1634
1738
  /**
1635
1739
  *
1636
1740
  * @summary Returns the package metadata.
@@ -1652,12 +1756,39 @@ export declare class PackagesApi extends BaseAPI {
1652
1756
  * @memberof PackagesApi
1653
1757
  */
1654
1758
  listPackages(projectName: string, options?: RawAxiosRequestConfig): Promise< AxiosResponse<Package[], any>>;
1759
+ /**
1760
+ *
1761
+ * @summary Updates a package.
1762
+ * @param {string} projectName Name of project
1763
+ * @param {string} packageName Name of package
1764
+ * @param {object} body
1765
+ * @param {*} [options] Override http request option.
1766
+ * @throws {RequiredError}
1767
+ * @memberof PackagesApi
1768
+ */
1769
+ updatePackage(projectName: string, packageName: string, body: object, options?: RawAxiosRequestConfig): Promise< AxiosResponse<Package, any>>;
1655
1770
  }
1656
1771
  /**
1657
1772
  * ProjectsApi - axios parameter creator
1658
1773
  * @export
1659
1774
  */
1660
1775
  export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuration) => {
1776
+ /**
1777
+ *
1778
+ * @summary Creates a new project.
1779
+ * @param {object} body
1780
+ * @param {*} [options] Override http request option.
1781
+ * @throws {RequiredError}
1782
+ */
1783
+ createProject: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1784
+ /**
1785
+ *
1786
+ * @summary Deletes a project.
1787
+ * @param {string} projectName Name of project
1788
+ * @param {*} [options] Override http request option.
1789
+ * @throws {RequiredError}
1790
+ */
1791
+ deleteProject: (projectName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1661
1792
  /**
1662
1793
  *
1663
1794
  * @summary Returns metadata about the project.
@@ -1674,12 +1805,37 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
1674
1805
  * @throws {RequiredError}
1675
1806
  */
1676
1807
  listProjects: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1808
+ /**
1809
+ *
1810
+ * @summary Updates a project.
1811
+ * @param {string} projectName Name of project
1812
+ * @param {object} body
1813
+ * @param {*} [options] Override http request option.
1814
+ * @throws {RequiredError}
1815
+ */
1816
+ updateProject: (projectName: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1677
1817
  };
1678
1818
  /**
1679
1819
  * ProjectsApi - functional programming interface
1680
1820
  * @export
1681
1821
  */
1682
1822
  export declare const ProjectsApiFp: (configuration?: Configuration) => {
1823
+ /**
1824
+ *
1825
+ * @summary Creates a new project.
1826
+ * @param {object} body
1827
+ * @param {*} [options] Override http request option.
1828
+ * @throws {RequiredError}
1829
+ */
1830
+ createProject(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Project>>;
1831
+ /**
1832
+ *
1833
+ * @summary Deletes a project.
1834
+ * @param {string} projectName Name of project
1835
+ * @param {*} [options] Override http request option.
1836
+ * @throws {RequiredError}
1837
+ */
1838
+ deleteProject(projectName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Project>>;
1683
1839
  /**
1684
1840
  *
1685
1841
  * @summary Returns metadata about the project.
@@ -1696,12 +1852,37 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
1696
1852
  * @throws {RequiredError}
1697
1853
  */
1698
1854
  listProjects(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Project>>>;
1855
+ /**
1856
+ *
1857
+ * @summary Updates a project.
1858
+ * @param {string} projectName Name of project
1859
+ * @param {object} body
1860
+ * @param {*} [options] Override http request option.
1861
+ * @throws {RequiredError}
1862
+ */
1863
+ updateProject(projectName: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Project>>;
1699
1864
  };
1700
1865
  /**
1701
1866
  * ProjectsApi - factory interface
1702
1867
  * @export
1703
1868
  */
1704
1869
  export declare const ProjectsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1870
+ /**
1871
+ *
1872
+ * @summary Creates a new project.
1873
+ * @param {object} body
1874
+ * @param {*} [options] Override http request option.
1875
+ * @throws {RequiredError}
1876
+ */
1877
+ createProject(body: object, options?: RawAxiosRequestConfig): AxiosPromise<Project>;
1878
+ /**
1879
+ *
1880
+ * @summary Deletes a project.
1881
+ * @param {string} projectName Name of project
1882
+ * @param {*} [options] Override http request option.
1883
+ * @throws {RequiredError}
1884
+ */
1885
+ deleteProject(projectName: string, options?: RawAxiosRequestConfig): AxiosPromise<Project>;
1705
1886
  /**
1706
1887
  *
1707
1888
  * @summary Returns metadata about the project.
@@ -1718,6 +1899,15 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
1718
1899
  * @throws {RequiredError}
1719
1900
  */
1720
1901
  listProjects(options?: RawAxiosRequestConfig): AxiosPromise<Array<Project>>;
1902
+ /**
1903
+ *
1904
+ * @summary Updates a project.
1905
+ * @param {string} projectName Name of project
1906
+ * @param {object} body
1907
+ * @param {*} [options] Override http request option.
1908
+ * @throws {RequiredError}
1909
+ */
1910
+ updateProject(projectName: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<Project>;
1721
1911
  };
1722
1912
  /**
1723
1913
  * ProjectsApi - object-oriented interface
@@ -1726,6 +1916,24 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
1726
1916
  * @extends {BaseAPI}
1727
1917
  */
1728
1918
  export declare class ProjectsApi extends BaseAPI {
1919
+ /**
1920
+ *
1921
+ * @summary Creates a new project.
1922
+ * @param {object} body
1923
+ * @param {*} [options] Override http request option.
1924
+ * @throws {RequiredError}
1925
+ * @memberof ProjectsApi
1926
+ */
1927
+ createProject(body: object, options?: RawAxiosRequestConfig): Promise< AxiosResponse<Project, any>>;
1928
+ /**
1929
+ *
1930
+ * @summary Deletes a project.
1931
+ * @param {string} projectName Name of project
1932
+ * @param {*} [options] Override http request option.
1933
+ * @throws {RequiredError}
1934
+ * @memberof ProjectsApi
1935
+ */
1936
+ deleteProject(projectName: string, options?: RawAxiosRequestConfig): Promise< AxiosResponse<Project, any>>;
1729
1937
  /**
1730
1938
  *
1731
1939
  * @summary Returns metadata about the project.
@@ -1744,6 +1952,16 @@ export declare class ProjectsApi extends BaseAPI {
1744
1952
  * @memberof ProjectsApi
1745
1953
  */
1746
1954
  listProjects(options?: RawAxiosRequestConfig): Promise< AxiosResponse<Project[], any>>;
1955
+ /**
1956
+ *
1957
+ * @summary Updates a project.
1958
+ * @param {string} projectName Name of project
1959
+ * @param {object} body
1960
+ * @param {*} [options] Override http request option.
1961
+ * @throws {RequiredError}
1962
+ * @memberof ProjectsApi
1963
+ */
1964
+ updateProject(projectName: string, body: object, options?: RawAxiosRequestConfig): Promise< AxiosResponse<Project, any>>;
1747
1965
  }
1748
1966
  /**
1749
1967
  * QueryresultsApi - axios parameter creator
@@ -1,5 +1,6 @@
1
1
  interface ConnectionExplorerProps {
2
2
  connectionName: string;
3
+ schema?: string;
3
4
  }
4
- export default function ConnectionExplorer({ connectionName, }: ConnectionExplorerProps): import("react/jsx-runtime").JSX.Element;
5
+ export default function ConnectionExplorer({ connectionName, schema, }: ConnectionExplorerProps): import("react/jsx-runtime").JSX.Element;
5
6
  export {};