@malloydata/db-publisher 0.0.318 → 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.
@@ -1524,7 +1524,7 @@ export declare class ConnectionsApi extends BaseAPI {
1524
1524
  * @throws {RequiredError}
1525
1525
  * @memberof ConnectionsApi
1526
1526
  */
1527
- 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, {}>>;
1528
1528
  /**
1529
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.
1530
1530
  * @summary Execute SQL query (deprecated)
@@ -1537,7 +1537,7 @@ export declare class ConnectionsApi extends BaseAPI {
1537
1537
  * @throws {RequiredError}
1538
1538
  * @memberof ConnectionsApi
1539
1539
  */
1540
- 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, {}>>;
1541
1541
  /**
1542
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.
1543
1543
  * @summary Get SQL source (deprecated)
@@ -1549,7 +1549,7 @@ export declare class ConnectionsApi extends BaseAPI {
1549
1549
  * @throws {RequiredError}
1550
1550
  * @memberof ConnectionsApi
1551
1551
  */
1552
- 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, {}>>;
1553
1553
  /**
1554
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.
1555
1555
  * @summary Get table details from database
@@ -1561,7 +1561,7 @@ export declare class ConnectionsApi extends BaseAPI {
1561
1561
  * @throws {RequiredError}
1562
1562
  * @memberof ConnectionsApi
1563
1563
  */
1564
- 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, {}>>;
1565
1565
  /**
1566
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.
1567
1567
  * @summary Get table source information
@@ -1574,7 +1574,7 @@ export declare class ConnectionsApi extends BaseAPI {
1574
1574
  * @throws {RequiredError}
1575
1575
  * @memberof ConnectionsApi
1576
1576
  */
1577
- 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, {}>>;
1578
1578
  /**
1579
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.
1580
1580
  * @summary Create temporary table (deprecated)
@@ -1586,7 +1586,7 @@ export declare class ConnectionsApi extends BaseAPI {
1586
1586
  * @throws {RequiredError}
1587
1587
  * @memberof ConnectionsApi
1588
1588
  */
1589
- 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, {}>>;
1590
1590
  /**
1591
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.
1592
1592
  * @summary List project database connections
@@ -1595,7 +1595,7 @@ export declare class ConnectionsApi extends BaseAPI {
1595
1595
  * @throws {RequiredError}
1596
1596
  * @memberof ConnectionsApi
1597
1597
  */
1598
- listConnections(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Connection[], any>>;
1598
+ listConnections(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Connection[], any, {}>>;
1599
1599
  /**
1600
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.
1601
1601
  * @summary List database schemas
@@ -1605,7 +1605,7 @@ export declare class ConnectionsApi extends BaseAPI {
1605
1605
  * @throws {RequiredError}
1606
1606
  * @memberof ConnectionsApi
1607
1607
  */
1608
- 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, {}>>;
1609
1609
  /**
1610
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.
1611
1611
  * @summary List tables in database
@@ -1616,7 +1616,7 @@ export declare class ConnectionsApi extends BaseAPI {
1616
1616
  * @throws {RequiredError}
1617
1617
  * @memberof ConnectionsApi
1618
1618
  */
1619
- 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, {}>>;
1620
1620
  /**
1621
1621
  * Executes a SQL statement against the specified database connection and returns the results. The results include data, metadata, and execution information.
1622
1622
  * @summary Execute SQL query
@@ -1628,7 +1628,7 @@ export declare class ConnectionsApi extends BaseAPI {
1628
1628
  * @throws {RequiredError}
1629
1629
  * @memberof ConnectionsApi
1630
1630
  */
1631
- 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, {}>>;
1632
1632
  /**
1633
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.
1634
1634
  * @summary Create SQL source from statement
@@ -1639,7 +1639,7 @@ export declare class ConnectionsApi extends BaseAPI {
1639
1639
  * @throws {RequiredError}
1640
1640
  * @memberof ConnectionsApi
1641
1641
  */
1642
- 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, {}>>;
1643
1643
  /**
1644
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.
1645
1645
  * @summary Create temporary table
@@ -1650,7 +1650,7 @@ export declare class ConnectionsApi extends BaseAPI {
1650
1650
  * @throws {RequiredError}
1651
1651
  * @memberof ConnectionsApi
1652
1652
  */
1653
- 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, {}>>;
1654
1654
  }
1655
1655
  /**
1656
1656
  * ConnectionsTestApi - axios parameter creator
@@ -1709,7 +1709,7 @@ export declare class ConnectionsTestApi extends BaseAPI {
1709
1709
  * @throws {RequiredError}
1710
1710
  * @memberof ConnectionsTestApi
1711
1711
  */
1712
- testConnectionConfiguration(connection: Connection, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectionStatus, any>>;
1712
+ testConnectionConfiguration(connection: Connection, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConnectionStatus, any, {}>>;
1713
1713
  }
1714
1714
  /**
1715
1715
  * DatabasesApi - axios parameter creator
@@ -1776,7 +1776,7 @@ export declare class DatabasesApi extends BaseAPI {
1776
1776
  * @throws {RequiredError}
1777
1777
  * @memberof DatabasesApi
1778
1778
  */
1779
- 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, {}>>;
1780
1780
  }
1781
1781
  /**
1782
1782
  * ModelsApi - axios parameter creator
@@ -1910,7 +1910,7 @@ export declare class ModelsApi extends BaseAPI {
1910
1910
  * @throws {RequiredError}
1911
1911
  * @memberof ModelsApi
1912
1912
  */
1913
- 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, {}>>;
1914
1914
  /**
1915
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.
1916
1916
  * @summary Get compiled Malloy model
@@ -1922,7 +1922,7 @@ export declare class ModelsApi extends BaseAPI {
1922
1922
  * @throws {RequiredError}
1923
1923
  * @memberof ModelsApi
1924
1924
  */
1925
- 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, {}>>;
1926
1926
  /**
1927
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.
1928
1928
  * @summary List package models
@@ -1933,7 +1933,7 @@ export declare class ModelsApi extends BaseAPI {
1933
1933
  * @throws {RequiredError}
1934
1934
  * @memberof ModelsApi
1935
1935
  */
1936
- 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, {}>>;
1937
1937
  }
1938
1938
  /**
1939
1939
  * NotebooksApi - axios parameter creator
@@ -2034,7 +2034,7 @@ export declare class NotebooksApi extends BaseAPI {
2034
2034
  * @throws {RequiredError}
2035
2035
  * @memberof NotebooksApi
2036
2036
  */
2037
- 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, {}>>;
2038
2038
  /**
2039
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.
2040
2040
  * @summary List package notebooks
@@ -2045,7 +2045,7 @@ export declare class NotebooksApi extends BaseAPI {
2045
2045
  * @throws {RequiredError}
2046
2046
  * @memberof NotebooksApi
2047
2047
  */
2048
- 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, {}>>;
2049
2049
  }
2050
2050
  /**
2051
2051
  * PackagesApi - axios parameter creator
@@ -2222,7 +2222,7 @@ export declare class PackagesApi extends BaseAPI {
2222
2222
  * @throws {RequiredError}
2223
2223
  * @memberof PackagesApi
2224
2224
  */
2225
- 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, {}>>;
2226
2226
  /**
2227
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.
2228
2228
  * @summary Delete a package
@@ -2232,7 +2232,7 @@ export declare class PackagesApi extends BaseAPI {
2232
2232
  * @throws {RequiredError}
2233
2233
  * @memberof PackagesApi
2234
2234
  */
2235
- 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, {}>>;
2236
2236
  /**
2237
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.
2238
2238
  * @summary Get package details and metadata
@@ -2244,7 +2244,7 @@ export declare class PackagesApi extends BaseAPI {
2244
2244
  * @throws {RequiredError}
2245
2245
  * @memberof PackagesApi
2246
2246
  */
2247
- 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, {}>>;
2248
2248
  /**
2249
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.
2250
2250
  * @summary List project packages
@@ -2253,7 +2253,7 @@ export declare class PackagesApi extends BaseAPI {
2253
2253
  * @throws {RequiredError}
2254
2254
  * @memberof PackagesApi
2255
2255
  */
2256
- listPackages(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package[], any>>;
2256
+ listPackages(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Package[], any, {}>>;
2257
2257
  /**
2258
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.
2259
2259
  * @summary Update package configuration
@@ -2264,7 +2264,7 @@ export declare class PackagesApi extends BaseAPI {
2264
2264
  * @throws {RequiredError}
2265
2265
  * @memberof PackagesApi
2266
2266
  */
2267
- 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, {}>>;
2268
2268
  }
2269
2269
  /**
2270
2270
  * ProjectsApi - axios parameter creator
@@ -2422,7 +2422,7 @@ export declare class ProjectsApi extends BaseAPI {
2422
2422
  * @throws {RequiredError}
2423
2423
  * @memberof ProjectsApi
2424
2424
  */
2425
- createProject(project: Project, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
2425
+ createProject(project: Project, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
2426
2426
  /**
2427
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.
2428
2428
  * @summary Delete a project
@@ -2431,7 +2431,7 @@ export declare class ProjectsApi extends BaseAPI {
2431
2431
  * @throws {RequiredError}
2432
2432
  * @memberof ProjectsApi
2433
2433
  */
2434
- deleteProject(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
2434
+ deleteProject(projectName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any, {}>>;
2435
2435
  /**
2436
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.
2437
2437
  * @summary Get project details and metadata
@@ -2441,7 +2441,7 @@ export declare class ProjectsApi extends BaseAPI {
2441
2441
  * @throws {RequiredError}
2442
2442
  * @memberof ProjectsApi
2443
2443
  */
2444
- 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, {}>>;
2445
2445
  /**
2446
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.
2447
2447
  * @summary List all available projects
@@ -2449,7 +2449,7 @@ export declare class ProjectsApi extends BaseAPI {
2449
2449
  * @throws {RequiredError}
2450
2450
  * @memberof ProjectsApi
2451
2451
  */
2452
- listProjects(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project[], any>>;
2452
+ listProjects(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project[], any, {}>>;
2453
2453
  /**
2454
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.
2455
2455
  * @summary Update project configuration
@@ -2459,7 +2459,7 @@ export declare class ProjectsApi extends BaseAPI {
2459
2459
  * @throws {RequiredError}
2460
2460
  * @memberof ProjectsApi
2461
2461
  */
2462
- 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, {}>>;
2463
2463
  }
2464
2464
  /**
2465
2465
  * PublisherApi - axios parameter creator
@@ -2514,7 +2514,7 @@ export declare class PublisherApi extends BaseAPI {
2514
2514
  * @throws {RequiredError}
2515
2515
  * @memberof PublisherApi
2516
2516
  */
2517
- getStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerStatus, any>>;
2517
+ getStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerStatus, any, {}>>;
2518
2518
  }
2519
2519
  /**
2520
2520
  * WatchModeApi - axios parameter creator
@@ -2614,7 +2614,7 @@ export declare class WatchModeApi extends BaseAPI {
2614
2614
  * @throws {RequiredError}
2615
2615
  * @memberof WatchModeApi
2616
2616
  */
2617
- getWatchStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchStatus, any>>;
2617
+ getWatchStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WatchStatus, any, {}>>;
2618
2618
  /**
2619
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.
2620
2620
  * @summary Start file watching
@@ -2623,7 +2623,7 @@ export declare class WatchModeApi extends BaseAPI {
2623
2623
  * @throws {RequiredError}
2624
2624
  * @memberof WatchModeApi
2625
2625
  */
2626
- startWatching(startWatchRequest: StartWatchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2626
+ startWatching(startWatchRequest: StartWatchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2627
2627
  /**
2628
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.
2629
2629
  * @summary Stop file watching
@@ -2631,5 +2631,5 @@ export declare class WatchModeApi extends BaseAPI {
2631
2631
  * @throws {RequiredError}
2632
2632
  * @memberof WatchModeApi
2633
2633
  */
2634
- stopWatching(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2634
+ stopWatching(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2635
2635
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-publisher",
3
- "version": "0.0.318",
3
+ "version": "0.0.319",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -23,7 +23,7 @@
23
23
  "generate-api-types": "openapi-generator-cli generate -i publisher-api-doc.yaml -g typescript-axios -o src/client/"
24
24
  },
25
25
  "dependencies": {
26
- "@malloydata/malloy": "0.0.318",
26
+ "@malloydata/malloy": "0.0.319",
27
27
  "axios": "^1.6.7"
28
28
  },
29
29
  "devDependencies": {