autoql-fe-utils 1.0.86 → 1.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +2 -1
package/dist/index.d.ts CHANGED
@@ -124,7 +124,8 @@ declare class AggType {
124
124
  symbol?: string;
125
125
  fn?: Function;
126
126
  icon?: string;
127
- constructor({ type, displayName, tooltip, unit, icon, supportsStrings, symbol, fn, }: AggTypeParams);
127
+ sqlFn?: Function;
128
+ constructor({ type, displayName, tooltip, unit, icon, supportsStrings, symbol, sqlFn, fn, }: AggTypeParams);
128
129
  }
129
130
 
130
131
  declare class DataExplorerSubject {
@@ -2084,13 +2085,12 @@ declare const fetchNotificationCount: ({ domain, apiKey, token, unacknowledged }
2084
2085
  token: any;
2085
2086
  unacknowledged?: number;
2086
2087
  }) => Promise<axios.AxiosResponse<any, any>>;
2087
- declare const fetchNotificationFeed: ({ domain, apiKey, token, offset, limit, enableFetchAllNotificationFeedAcrossProjects, }: {
2088
+ declare const fetchNotificationFeed: ({ domain, apiKey, token, offset, limit }: {
2088
2089
  domain: any;
2089
2090
  apiKey: any;
2090
2091
  token: any;
2091
2092
  offset: any;
2092
2093
  limit: any;
2093
- enableFetchAllNotificationFeedAcrossProjects: any;
2094
2094
  }) => Promise<any>;
2095
2095
  declare const fetchNotificationChannels: ({ domain, apiKey, token, channelType }: {
2096
2096
  domain: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autoql-fe-utils",
3
- "version": "1.0.86",
3
+ "version": "1.0.87",
4
4
  "description": "Utility library for AutoQL",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -33,6 +33,7 @@
33
33
  "@swc/core": "^1.4.2",
34
34
  "@swc/jest": "^0.2.36",
35
35
  "babel-jest": "^29.7.0",
36
+ "esbuild": "^0.20.1",
36
37
  "jest": "^29.7.0",
37
38
  "jest-environment-jsdom": "^29.7.0",
38
39
  "ts-jest": "^29.1.2",