Socket
Socket
Sign inDemoInstall

@cubejs-client/core

Package Overview
Dependencies
Maintainers
3
Versions
223
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cubejs-client/core - npm Package Compare versions

Comparing version 0.31.0 to 0.31.8

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [0.31.8](https://github.com/cube-js/cube.js/compare/v0.31.7...v0.31.8) (2022-10-30)
**Note:** Version bump only for package @cubejs-client/core
# [0.31.0](https://github.com/cube-js/cube.js/compare/v0.30.75...v0.31.0) (2022-10-03)

@@ -8,0 +16,0 @@

18

index.d.ts

@@ -846,2 +846,10 @@ /**

export interface UnsubscribeObj {
/**
* Allows to stop requests in-flight in long polling or web socket subscribe loops.
* It doesn't cancel any submitted requests to the underlying databases.
*/
unsubscribe(): Promise<void>;
}
export type SqlQueryTuple = [string, any[], any];

@@ -1049,3 +1057,3 @@

callback?: LoadMethodCallback<ResultSet<QueryRecordType<QueryType>>>,
): void;
): UnsubscribeObj;

@@ -1087,3 +1095,3 @@ load<QueryType extends DeeplyReadonly<Query | Query[]>>(

callback: LoadMethodCallback<ResultSet<QueryRecordType<QueryType>>>,
): void;
): UnsubscribeObj;

@@ -1095,3 +1103,3 @@ sql(query: DeeplyReadonly<Query | Query[]>, options?: LoadMethodOptions): Promise<SqlQuery>;

*/
sql(query: DeeplyReadonly<Query | Query[]>, options?: LoadMethodOptions, callback?: LoadMethodCallback<SqlQuery>): void;
sql(query: DeeplyReadonly<Query | Query[]>, options?: LoadMethodOptions, callback?: LoadMethodCallback<SqlQuery>): UnsubscribeObj;

@@ -1102,3 +1110,3 @@ meta(options?: LoadMethodOptions): Promise<Meta>;

*/
meta(options?: LoadMethodOptions, callback?: LoadMethodCallback<Meta>): void;
meta(options?: LoadMethodOptions, callback?: LoadMethodCallback<Meta>): UnsubscribeObj;

@@ -1109,3 +1117,3 @@ dryRun(query: DeeplyReadonly<Query | Query[]>, options?: LoadMethodOptions): Promise<DryRunResponse>;

*/
dryRun(query: DeeplyReadonly<Query | Query[]>, options: LoadMethodOptions, callback?: LoadMethodCallback<DryRunResponse>): void;
dryRun(query: DeeplyReadonly<Query | Query[]>, options: LoadMethodOptions, callback?: LoadMethodCallback<DryRunResponse>): UnsubscribeObj;
}

@@ -1112,0 +1120,0 @@

{
"name": "@cubejs-client/core",
"version": "0.31.0",
"version": "0.31.8",
"engines": {},

@@ -48,3 +48,3 @@ "repository": {

},
"gitHead": "8cdec759f298fb20c48194254ccc04b6fdad46bf"
"gitHead": "2c2eba41d75ddc3aeb81631ecd1157080162ba81"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc