Skip to content

Commit

Permalink
version and default label fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aditee-accenture committed Oct 23, 2024
1 parent 47ae4d1 commit b8bcd4b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/utils/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
*/

import { requestAPI } from '../handler/handler';
export const VERSION_DETAIL = '0.1.78';
const { version } = require('../../package.json');
export const VERSION_DETAIL = version;
export const CREATE_CLUSTER_URL =
'https://console.cloud.google.com/dataproc/clusters';
export const CREATE_BATCH_URL =
Expand Down Expand Up @@ -170,7 +171,7 @@ export const DCU_HOURS = 3600000;
export const GB_MONTHS = 2592000;
export const TITLE_LAUNCHER_CATEGORY = 'Google Cloud Resources';
export const SPARK_HISTORY_SERVER = 'Spark History Server';
export const DEFAULT_LABEL_DETAIL = 'client:dataproc-jupyter-plugin';
export const DEFAULT_LABEL_DETAIL = 'client:bigquery-jupyter-plugin';
export const JOB_FIELDS_EXCLUDED = ['queryList', 'properties', 'args'];
export const BATCH_FIELDS_EXCLUDED = ['queryList', 'properties'];
export const KEY_MESSAGE =
Expand Down

0 comments on commit b8bcd4b

Please sign in to comment.