@malloydata/db-publisher 0.0.317 → 0.0.319

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.
@@ -55,11 +55,18 @@ export interface AttachedDatabase {
55
55
  * @memberof AttachedDatabase
56
56
  */
57
57
  'postgresConnection'?: PostgresConnection;
58
+ /**
59
+ *
60
+ * @type {MotherDuckConnection}
61
+ * @memberof AttachedDatabase
62
+ */
63
+ 'motherDuckConnection'?: MotherDuckConnection;
58
64
  }
59
65
  export declare const AttachedDatabaseTypeEnum: {
60
66
  readonly Bigquery: "bigquery";
61
67
  readonly Snowflake: "snowflake";
62
68
  readonly Postgres: "postgres";
69
+ readonly Motherduck: "motherduck";
63
70
  };
64
71
  export type AttachedDatabaseTypeEnum = typeof AttachedDatabaseTypeEnum[keyof typeof AttachedDatabaseTypeEnum];
65
72
  /**
@@ -440,6 +447,25 @@ export interface ModelError {
440
447
  */
441
448
  'details'?: string;
442
449
  }
450
+ /**
451
+ * MotherDuck database connection configuration
452
+ * @export
453
+ * @interface MotherDuckConnection
454
+ */
455
+ export interface MotherDuckConnection {
456
+ /**
457
+ * MotherDuck access token
458
+ * @type {string}
459
+ * @memberof MotherDuckConnection
460
+ */
461
+ 'accessToken'?: string;
462
+ /**
463
+ * MotherDuck database name
464
+ * @type {string}
465
+ * @memberof MotherDuckConnection
466
+ */
467
+ 'database'?: string;
468
+ }
443
469
  /**
444
470
  * MySQL database connection configuration
445
471
  * @export
@@ -923,6 +949,12 @@ export interface Table {
923
949
  * @memberof Table
924
950
  */
925
951
  'resource'?: string;
952
+ /**
953
+ * Table source as a JSON string.
954
+ * @type {string}
955
+ * @memberof Table
956
+ */
957
+ 'source'?: string;
926
958
  /**
927
959
  * Table fields
928
960
  * @type {Array<Column>}
@@ -1492,7 +1524,7 @@ export declare class ConnectionsApi extends BaseAPI {
1492
1524
  * @throws {RequiredError}
1493
1525
  * @memberof ConnectionsApi
1494
1526
  */
1495
- getConnection(projectName: string, connectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Connection, any>>;
1527
+ getConnection(projectName: string, connectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Connection, any, {}>>;
1496
1528
  /**
1497
1529
  * **DEPRECATED**: This endpoint is deprecated and may be removed in future versions. Use the POST version instead for better security and functionality. Executes a SQL statement against the specified database connection and returns the results. The query results include data, metadata, and execution information.
1498
1530
  * @summary Execute SQL query (deprecated)
@@ -1505,7 +1537,7 @@ export declare class ConnectionsApi extends BaseAPI {
1505
1537
  * @throws {RequiredError}
1506
1538
  * @memberof ConnectionsApi
1507
1539
  */
1508
- getQuerydata(projectName: string, connectionName: string, sqlStatement?: string, _options?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QueryData, any>>;
1540
+ getQuerydata(projectName: string, connectionName: string, sqlStatement?: string, _options?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QueryData, any, {}>>;
1509
1541
  /**
1510
1542
  * **DEPRECATED**: This endpoint is deprecated and may be removed in future versions. Use the POST version instead for better security and functionality. Creates a Malloy source from a SQL statement using the specified connection. The SQL statement is executed to generate a source definition that can be used in Malloy models.
1511
1543
  * @summary Get SQL source (deprecated)
@@ -1517,7 +1549,7 @@ export declare class ConnectionsApi extends BaseAPI {
1517
1549
  * @throws {RequiredError}
1518
1550
  * @memberof ConnectionsApi
1519
1551
  */
1520
- getSqlsource(projectName: string, connectionName: string, sqlStatement?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SqlSource, any>>;
1552
+ getSqlsource(projectName: string, connectionName: string, sqlStatement?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SqlSource, any, {}>>;
1521
1553
  /**
1522
1554
  * Retrieves a table from the specified database schema. This endpoint is useful for discovering available data sources and exploring the database structure. The schema must exist in the connection for this operation to succeed. The tablePath is the full path to the table, including the schema name.
1523
1555
  * @summary Get table details from database
@@ -1529,7 +1561,7 @@ export declare class ConnectionsApi extends BaseAPI {
1529
1561
  * @throws {RequiredError}
1530
1562
  * @memberof ConnectionsApi
1531
1563
  */
1532
- getTable(projectName: string, connectionName: string, schemaName: string, tablePath: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Table, any>>;
1564
+ getTable(projectName: string, connectionName: string, schemaName: string, tablePath: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Table, any, {}>>;
1533
1565
  /**
1534
1566
  * Retrieves information about a specific table or view from the database connection. This includes table schema, column definitions, and metadata. The table can be specified by either tableKey or tablePath parameters, depending on the database type.
1535
1567
  * @summary Get table source information
@@ -1542,7 +1574,7 @@ export declare class ConnectionsApi extends BaseAPI {
1542
1574
  * @throws {RequiredError}
1543
1575
  * @memberof ConnectionsApi
1544
1576
  */
1545
- getTablesource(projectName: string, connectionName: string, tableKey?: string, tablePath?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TableSource, any>>;
1577
+ getTablesource(projectName: string, connectionName: string, tableKey?: string, tablePath?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TableSource, any, {}>>;
1546
1578
  /**
1547
1579
  * **DEPRECATED**: This endpoint is deprecated and may be removed in future versions. Use the POST version instead for better security and functionality. Creates a temporary table from a SQL statement using the specified connection. Temporary tables are useful for storing intermediate results during complex queries.
1548
1580
  * @summary Create temporary table (deprecated)
@@ -1554,7 +1586,7 @@ export declare class ConnectionsApi extends BaseAPI {
1554
1586
  * @throws {RequiredError}
1555
1587
  * @memberof ConnectionsApi
1556
1588
  */
1557
- getTemporarytable(projectName: string, connectionName: string, sqlStatement?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TemporaryTable, any>>;
1589
+ getTemporarytable(projectName: string, connectionName: string, sqlStatement?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TemporaryTable, any, {}>>;
1558
1590
  /**
1559
1591
  * Retrieves a list of all database connections configured for the specified project. Each connection includes its configuration, type, and status information. This endpoint is useful for discovering available data sources within a project.
1560
1592
  * @summary List project database connections
@@ -1563,7 +1595,7 @@ export declare class ConnectionsApi extends BaseAPI {
1563
1595
  * @throws {RequiredError}
1564
1596
  * @memberof ConnectionsApi
1565
1597
  */
1566
- listConnections(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Connection[], any>>;
1598
+ listConnections(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Connection[], any, {}>>;
1567
1599
  /**
1568
1600
  * Retrieves a list of all schemas (databases) available in the specified connection. Each schema includes metadata such as name, description, and whether it\'s the default schema. This endpoint is useful for exploring the database structure and discovering available data sources.
1569
1601
  * @summary List database schemas
@@ -1573,7 +1605,7 @@ export declare class ConnectionsApi extends BaseAPI {
1573
1605
  * @throws {RequiredError}
1574
1606
  * @memberof ConnectionsApi
1575
1607
  */
1576
- listSchemas(projectName: string, connectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Schema[], any>>;
1608
+ listSchemas(projectName: string, connectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Schema[], any, {}>>;
1577
1609
  /**
1578
1610
  * Retrieves a list of all tables and views available in the specified database schema. This endpoint is useful for discovering available data sources and exploring the database structure. The schema must exist in the connection for this operation to succeed.
1579
1611
  * @summary List tables in database
@@ -1584,7 +1616,7 @@ export declare class ConnectionsApi extends BaseAPI {
1584
1616
  * @throws {RequiredError}
1585
1617
  * @memberof ConnectionsApi
1586
1618
  */
1587
- listTables(projectName: string, connectionName: string, schemaName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Table[], any>>;
1619
+ listTables(projectName: string, connectionName: string, schemaName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Table[], any, {}>>;
1588
1620
  /**
1589
1621
  * Executes a SQL statement against the specified database connection and returns the results. The results include data, metadata, and execution information.
1590
1622
  * @summary Execute SQL query
@@ -1596,7 +1628,7 @@ export declare class ConnectionsApi extends BaseAPI {
1596
1628
  * @throws {RequiredError}
1597
1629
  * @memberof ConnectionsApi
1598
1630
  */
1599
- postQuerydata(projectName: string, connectionName: string, postSqlsourceRequest: PostSqlsourceRequest, _options?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QueryData, any>>;
1631
+ postQuerydata(projectName: string, connectionName: string, postSqlsourceRequest: PostSqlsourceRequest, _options?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QueryData, any, {}>>;
1600
1632
  /**
1601
1633
  * Creates a Malloy source from a SQL statement using the specified database connection. The SQL statement is executed to generate a source definition that can be used in Malloy models.
1602
1634
  * @summary Create SQL source from statement
@@ -1607,7 +1639,7 @@ export declare class ConnectionsApi extends BaseAPI {
1607
1639
  * @throws {RequiredError}
1608
1640
  * @memberof ConnectionsApi
1609
1641
  */
1610
- postSqlsource(projectName: string, connectionName: string, postSqlsourceRequest: PostSqlsourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SqlSource, any>>;
1642
+ postSqlsource(projectName: string, connectionName: string, postSqlsourceRequest: PostSqlsourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SqlSource, any, {}>>;
1611
1643
  /**
1612
1644
  * Creates a temporary table from a SQL statement using the specified database connection. Temporary tables are useful for storing intermediate results during complex queries and data processing workflows.
1613
1645
  * @summary Create temporary table
@@ -1618,7 +1650,7 @@ export declare class ConnectionsApi extends BaseAPI {
1618
1650
  * @throws {RequiredError}
1619
1651
  * @memberof ConnectionsApi
1620
1652
  */
1621
- postTemporarytable(projectName: string, connectionName: string, postSqlsourceRequest: PostSqlsourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TemporaryTable, any>>;
1653
+ postTemporarytable(projectName: string, connectionName: string, postSqlsourceRequest: PostSqlsourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TemporaryTable, any, {}>>;
1622
1654
  }
1623
1655
  /**
1624
1656
  * ConnectionsTestApi - axios parameter creator
@@ -1677,7 +1709,7 @@ export declare class ConnectionsTestApi extends BaseAPI {
1677
1709
  * @throws {RequiredError}
1678
1710
  * @memberof ConnectionsTestApi
1679
1711
  */
1680
- testConnectionConfiguration(connection: Connection, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectionStatus, any>>;
1712
+ testConnectionConfiguration(connection: Connection, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectionStatus, any, {}>>;
1681
1713
  }
1682
1714
  /**
1683
1715
  * DatabasesApi - axios parameter creator
@@ -1744,7 +1776,7 @@ export declare class DatabasesApi extends BaseAPI {
1744
1776
  * @throws {RequiredError}
1745
1777
  * @memberof DatabasesApi
1746
1778
  */
1747
- listDatabases(projectName: string, packageName: string, versionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Database[], any>>;
1779
+ listDatabases(projectName: string, packageName: string, versionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Database[], any, {}>>;
1748
1780
  }
1749
1781
  /**
1750
1782
  * ModelsApi - axios parameter creator
@@ -1878,7 +1910,7 @@ export declare class ModelsApi extends BaseAPI {
1878
1910
  * @throws {RequiredError}
1879
1911
  * @memberof ModelsApi
1880
1912
  */
1881
- executeQueryModel(projectName: string, packageName: string, path: string, queryRequest: QueryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QueryResult, any>>;
1913
+ executeQueryModel(projectName: string, packageName: string, path: string, queryRequest: QueryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QueryResult, any, {}>>;
1882
1914
  /**
1883
1915
  * Retrieves a compiled Malloy model with its source information, queries, and metadata. The model is compiled using the specified version of the Malloy compiler. This endpoint provides access to the model\'s structure, sources, and named queries for use in applications.
1884
1916
  * @summary Get compiled Malloy model
@@ -1890,7 +1922,7 @@ export declare class ModelsApi extends BaseAPI {
1890
1922
  * @throws {RequiredError}
1891
1923
  * @memberof ModelsApi
1892
1924
  */
1893
- getModel(projectName: string, packageName: string, path: string, versionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompiledModel, any>>;
1925
+ getModel(projectName: string, packageName: string, path: string, versionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompiledModel, any, {}>>;
1894
1926
  /**
1895
1927
  * Retrieves a list of all Malloy models within the specified package. Each model entry includes the relative path, package name, and any compilation errors. This endpoint is useful for discovering available models and checking their status.
1896
1928
  * @summary List package models
@@ -1901,7 +1933,7 @@ export declare class ModelsApi extends BaseAPI {
1901
1933
  * @throws {RequiredError}
1902
1934
  * @memberof ModelsApi
1903
1935
  */
1904
- listModels(projectName: string, packageName: string, versionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Model[], any>>;
1936
+ listModels(projectName: string, packageName: string, versionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Model[], any, {}>>;
1905
1937
  }
1906
1938
  /**
1907
1939
  * NotebooksApi - axios parameter creator
@@ -2002,7 +2034,7 @@ export declare class NotebooksApi extends BaseAPI {
2002
2034
  * @throws {RequiredError}
2003
2035
  * @memberof NotebooksApi
2004
2036
  */
2005
- getNotebook(projectName: string, packageName: string, path: string, versionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompiledNotebook, any>>;
2037
+ getNotebook(projectName: string, packageName: string, path: string, versionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompiledNotebook, any, {}>>;
2006
2038
  /**
2007
2039
  * Retrieves a list of all Malloy notebooks within the specified package. Each notebook entry includes the relative path, package name, and any compilation errors. This endpoint is useful for discovering available notebooks and checking their status.
2008
2040
  * @summary List package notebooks
@@ -2013,7 +2045,7 @@ export declare class NotebooksApi extends BaseAPI {
2013
2045
  * @throws {RequiredError}
2014
2046
  * @memberof NotebooksApi
2015
2047
  */
2016
- listNotebooks(projectName: string, packageName: string, versionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Notebook[], any>>;
2048
+ listNotebooks(projectName: string, packageName: string, versionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Notebook[], any, {}>>;
2017
2049
  }
2018
2050
  /**
2019
2051
  * PackagesApi - axios parameter creator
@@ -2190,7 +2222,7 @@ export declare class PackagesApi extends BaseAPI {
2190
2222
  * @throws {RequiredError}
2191
2223
  * @memberof PackagesApi
2192
2224
  */
2193
- createPackage(projectName: string, _package: Package, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package, any>>;
2225
+ createPackage(projectName: string, _package: Package, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package, any, {}>>;
2194
2226
  /**
2195
2227
  * Permanently deletes a package and all its associated resources including models, notebooks, databases, and metadata. This operation cannot be undone, so use with caution. The package must exist and be accessible for deletion.
2196
2228
  * @summary Delete a package
@@ -2200,7 +2232,7 @@ export declare class PackagesApi extends BaseAPI {
2200
2232
  * @throws {RequiredError}
2201
2233
  * @memberof PackagesApi
2202
2234
  */
2203
- deletePackage(projectName: string, packageName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package, any>>;
2235
+ deletePackage(projectName: string, packageName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package, any, {}>>;
2204
2236
  /**
2205
2237
  * Retrieves detailed information about a specific package, including its models, notebooks, databases, and metadata. The reload parameter can be used to refresh the package state from disk before returning the information. The versionId parameter allows access to specific package versions.
2206
2238
  * @summary Get package details and metadata
@@ -2212,7 +2244,7 @@ export declare class PackagesApi extends BaseAPI {
2212
2244
  * @throws {RequiredError}
2213
2245
  * @memberof PackagesApi
2214
2246
  */
2215
- getPackage(projectName: string, packageName: string, versionId?: string, reload?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package, any>>;
2247
+ getPackage(projectName: string, packageName: string, versionId?: string, reload?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package, any, {}>>;
2216
2248
  /**
2217
2249
  * Retrieves a list of all Malloy packages within the specified project. Each package contains models, notebooks, databases, and other resources. This endpoint is useful for discovering available packages and their basic metadata.
2218
2250
  * @summary List project packages
@@ -2221,7 +2253,7 @@ export declare class PackagesApi extends BaseAPI {
2221
2253
  * @throws {RequiredError}
2222
2254
  * @memberof PackagesApi
2223
2255
  */
2224
- listPackages(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package[], any>>;
2256
+ listPackages(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package[], any, {}>>;
2225
2257
  /**
2226
2258
  * Updates the configuration and metadata of an existing package. This allows you to modify package settings, update the description, change the location, or update other package-level properties. The package must exist and be accessible.
2227
2259
  * @summary Update package configuration
@@ -2232,7 +2264,7 @@ export declare class PackagesApi extends BaseAPI {
2232
2264
  * @throws {RequiredError}
2233
2265
  * @memberof PackagesApi
2234
2266
  */
2235
- updatePackage(projectName: string, packageName: string, _package: Package, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package, any>>;
2267
+ updatePackage(projectName: string, packageName: string, _package: Package, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package, any, {}>>;
2236
2268
  }
2237
2269
  /**
2238
2270
  * ProjectsApi - axios parameter creator
@@ -2390,7 +2422,7 @@ export declare class ProjectsApi extends BaseAPI {
2390
2422
  * @throws {RequiredError}
2391
2423
  * @memberof ProjectsApi
2392
2424
  */
2393
- createProject(project: Project, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
2425
+ createProject(project: Project, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
2394
2426
  /**
2395
2427
  * Permanently deletes a project and all its associated resources including packages, connections, and metadata. This operation cannot be undone, so use with caution. The project must exist and be accessible for deletion.
2396
2428
  * @summary Delete a project
@@ -2399,7 +2431,7 @@ export declare class ProjectsApi extends BaseAPI {
2399
2431
  * @throws {RequiredError}
2400
2432
  * @memberof ProjectsApi
2401
2433
  */
2402
- deleteProject(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
2434
+ deleteProject(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
2403
2435
  /**
2404
2436
  * Retrieves detailed information about a specific project, including its packages, connections, configuration, and metadata. The reload parameter can be used to refresh the project state from disk before returning the information.
2405
2437
  * @summary Get project details and metadata
@@ -2409,7 +2441,7 @@ export declare class ProjectsApi extends BaseAPI {
2409
2441
  * @throws {RequiredError}
2410
2442
  * @memberof ProjectsApi
2411
2443
  */
2412
- getProject(projectName: string, reload?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
2444
+ getProject(projectName: string, reload?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
2413
2445
  /**
2414
2446
  * Retrieves a list of all projects currently hosted on this Malloy Publisher server. Each project contains metadata about its packages, connections, and configuration. This endpoint is typically used to discover available projects and their basic information.
2415
2447
  * @summary List all available projects
@@ -2417,7 +2449,7 @@ export declare class ProjectsApi extends BaseAPI {
2417
2449
  * @throws {RequiredError}
2418
2450
  * @memberof ProjectsApi
2419
2451
  */
2420
- listProjects(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project[], any>>;
2452
+ listProjects(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project[], any, {}>>;
2421
2453
  /**
2422
2454
  * Updates the configuration and metadata of an existing project. This allows you to modify project settings, update the README, change the location, or update other project-level properties. The project must exist and be accessible.
2423
2455
  * @summary Update project configuration
@@ -2427,7 +2459,7 @@ export declare class ProjectsApi extends BaseAPI {
2427
2459
  * @throws {RequiredError}
2428
2460
  * @memberof ProjectsApi
2429
2461
  */
2430
- updateProject(projectName: string, project: Project, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
2462
+ updateProject(projectName: string, project: Project, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
2431
2463
  }
2432
2464
  /**
2433
2465
  * PublisherApi - axios parameter creator
@@ -2482,7 +2514,7 @@ export declare class PublisherApi extends BaseAPI {
2482
2514
  * @throws {RequiredError}
2483
2515
  * @memberof PublisherApi
2484
2516
  */
2485
- getStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerStatus, any>>;
2517
+ getStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerStatus, any, {}>>;
2486
2518
  }
2487
2519
  /**
2488
2520
  * WatchModeApi - axios parameter creator
@@ -2582,7 +2614,7 @@ export declare class WatchModeApi extends BaseAPI {
2582
2614
  * @throws {RequiredError}
2583
2615
  * @memberof WatchModeApi
2584
2616
  */
2585
- getWatchStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchStatus, any>>;
2617
+ getWatchStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchStatus, any, {}>>;
2586
2618
  /**
2587
2619
  * Initiates file watching for the specified project. This enables real-time monitoring of file changes within the project directory, allowing for automatic reloading and updates during development. Only one project can be watched at a time.
2588
2620
  * @summary Start file watching
@@ -2591,7 +2623,7 @@ export declare class WatchModeApi extends BaseAPI {
2591
2623
  * @throws {RequiredError}
2592
2624
  * @memberof WatchModeApi
2593
2625
  */
2594
- startWatching(startWatchRequest: StartWatchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2626
+ startWatching(startWatchRequest: StartWatchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2595
2627
  /**
2596
2628
  * Stops the current file watching session. This disables real-time monitoring of file changes and releases system resources. Use this when development is complete or when switching to a different project.
2597
2629
  * @summary Stop file watching
@@ -2599,5 +2631,5 @@ export declare class WatchModeApi extends BaseAPI {
2599
2631
  * @throws {RequiredError}
2600
2632
  * @memberof WatchModeApi
2601
2633
  */
2602
- stopWatching(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2634
+ stopWatching(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2603
2635
  }
@@ -26,7 +26,8 @@ const base_1 = require("./base");
26
26
  exports.AttachedDatabaseTypeEnum = {
27
27
  Bigquery: 'bigquery',
28
28
  Snowflake: 'snowflake',
29
- Postgres: 'postgres'
29
+ Postgres: 'postgres',
30
+ Motherduck: 'motherduck'
30
31
  };
31
32
  exports.ConnectionTypeEnum = {
32
33
  Postgres: 'postgres',