@devtron-labs/devtron-fe-common-lib 1.2.2 → 1.2.3-beta-1

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.
@@ -2,7 +2,7 @@ import { j as n, J as A } from "./@vendor-RU8AW1bK.js";
2
2
  import E, { forwardRef as $ } from "react";
3
3
  import L, { getDefaultRegistry as k } from "@rjsf/core";
4
4
  import D from "@rjsf/validator-ajv8";
5
- import { T as y, c as H, a as J, d as w } from "./@code-editor-B8BypC-E.js";
5
+ import { T as y, c as H, a as J, d as w } from "./@code-editor-DHk1T-mO.js";
6
6
  import M, { components as O } from "react-select";
7
7
  import { getUiOptions as B, getTemplate as I, getSubmitButtonOptions as U, ADDITIONAL_PROPERTY_FLAG as P, errorId as W, englishStringTranslator as V, TranslatableString as q, titleId as K, canExpand as Y, deepEquals as z } from "@rjsf/utils";
8
8
  import { ReactComponent as G } from "./assets/ic-chevron-down.fc70d7a7.svg";
@@ -1,5 +1,5 @@
1
1
  import { RuntimeParamsAPIResponseType, RuntimeParamsListItemType } from '../Shared/types';
2
- import { TeamList, ResponseType, DeploymentNodeType, CDMaterialServiceEnum, CDMaterialServiceQueryParams, CDMaterialResponseType, CDMaterialFilterQuery, EnvironmentListHelmResponse } from './Types';
2
+ import { TeamList, ResponseType, DeploymentNodeType, CDMaterialServiceEnum, CDMaterialServiceQueryParams, CDMaterialResponseType, CDMaterialFilterQuery, EnvironmentListHelmResponse, UserApprovalMetadataType } from './Types';
3
3
  import { ApiResourceType } from '../Pages';
4
4
  export declare const getTeamListMin: () => Promise<TeamList>;
5
5
  interface UserRole extends ResponseType {
@@ -15,6 +15,7 @@ export declare const SourceTypeMap: {
15
15
  };
16
16
  export declare function getUserRole(appName?: string): Promise<UserRole>;
17
17
  export declare function setImageTags(request: any, pipelineId: number, artifactId: number): Promise<ResponseType<any>>;
18
+ export declare const sanitizeUserApprovalMetadata: (userApprovalMetadata: UserApprovalMetadataType) => UserApprovalMetadataType;
18
19
  export declare const parseRuntimeParams: (response: RuntimeParamsAPIResponseType) => RuntimeParamsListItemType[];
19
20
  export declare const processCDMaterialServiceResponse: (cdMaterialsResult: any, stage: DeploymentNodeType, offset: number, filter: CDMaterialFilterQuery, disableDefaultSelection?: boolean) => CDMaterialResponseType;
20
21
  export declare const genericCDMaterialsService: (serviceType: CDMaterialServiceEnum, cdMaterialID: number, stage: DeploymentNodeType, signal: AbortSignal, queryParams?: CDMaterialServiceQueryParams) => Promise<CDMaterialResponseType>;
@@ -9,7 +9,7 @@ interface ConditionalWrapper<T> {
9
9
  children: T;
10
10
  }
11
11
  export declare const ConditionalWrap: React.FC<ConditionalWrapper<any>>;
12
- export declare function sortCallback(key: string, a: any, b: any, isCaseSensitive?: boolean): 0 | 1 | -1;
12
+ export declare function sortCallback(key: string, a: any, b: any, isCaseSensitive?: boolean): 1 | -1 | 0;
13
13
  export declare const stopPropagation: (event: any) => void;
14
14
  export declare const preventDefault: (event: SyntheticEvent) => void;
15
15
  export declare function useThrottledEffect(callback: any, delay: any, deps?: any[]): void;
@@ -1,5 +1,5 @@
1
1
  import { default as React, ReactNode, CSSProperties, ReactElement, MutableRefObject } from 'react';
2
- import { Placement } from 'tippy.js';
2
+ import { TippyProps } from '@tippyjs/react';
3
3
  import { UserGroupDTO } from '../Pages/GlobalConfigurations';
4
4
  import { ImageComment, ReleaseTag } from './ImageTags.Types';
5
5
  import { MandatoryPluginBaseStateType, RegistryType, RuntimeParamsListItemType, Severity } from '../Shared';
@@ -65,7 +65,7 @@ export interface CheckboxProps {
65
65
  id?: string;
66
66
  dataTestId?: string;
67
67
  }
68
- export interface TippyCustomizedProps {
68
+ export interface TippyCustomizedProps extends Pick<TippyProps, 'appendTo'> {
69
69
  theme: TippyTheme;
70
70
  visible?: boolean;
71
71
  heading?: ReactNode | string;
@@ -73,7 +73,7 @@ export interface TippyCustomizedProps {
73
73
  noHeadingBorder?: boolean;
74
74
  infoTextHeading?: string;
75
75
  hideHeading?: boolean;
76
- placement?: Placement;
76
+ placement?: TippyProps['placement'];
77
77
  className?: string;
78
78
  Icon?: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
79
79
  iconPath?: string;
@@ -273,21 +273,6 @@ export declare enum ManualApprovalType {
273
273
  any = "ANY",
274
274
  notConfigured = "NOT_CONFIGURED"
275
275
  }
276
- export interface UserGroupApproverType {
277
- email: string;
278
- hasAccess: boolean;
279
- }
280
- export interface ImageApprovalPolicyUserGroupDataType {
281
- dataStore: Record<string, UserGroupApproverType>;
282
- requiredCount: number;
283
- emails: string[];
284
- }
285
- export interface ImageApprovalPolicyType {
286
- isPolicyConfigured: boolean;
287
- specificUsersData: ImageApprovalPolicyUserGroupDataType;
288
- userGroupData: Record<string, ImageApprovalPolicyUserGroupDataType>;
289
- validGroups: string[];
290
- }
291
276
  export type ImageApprovalUsersInfoDTO = Record<string, Pick<UserGroupDTO, 'identifier' | 'name'>[]>;
292
277
  export interface UserApprovalConfigType {
293
278
  type: ManualApprovalType;
@@ -300,13 +285,6 @@ export interface UserApprovalConfigType {
300
285
  requiredCount: number;
301
286
  })[];
302
287
  }
303
- export type UserApprovalConfigPayloadType = ({
304
- type: ManualApprovalType.any;
305
- } & Pick<UserApprovalConfigType, 'requiredCount'>) | ({
306
- type: ManualApprovalType.specific;
307
- } & Pick<UserApprovalConfigType, 'userGroups' | 'specificUsers'>) | {
308
- type: ManualApprovalType.notConfigured;
309
- };
310
288
  interface ApprovalUserDataType {
311
289
  dataId: number;
312
290
  userActionTime: string;
@@ -316,12 +294,44 @@ interface ApprovalUserDataType {
316
294
  userResponse: number;
317
295
  userGroups?: Pick<UserGroupDTO, 'identifier' | 'name'>[];
318
296
  }
297
+ export interface UserApprovalInfo {
298
+ requiredCount: number;
299
+ currentCount: number;
300
+ approverList: {
301
+ hasApproved: boolean;
302
+ canApprove: boolean;
303
+ identifier: string;
304
+ }[];
305
+ }
306
+ export declare enum ApprovalConfigDataKindType {
307
+ configMap = "CM",
308
+ configSecret = "CS",
309
+ deploymentTemplate = "DEPLOYMENT_TEMPLATE"
310
+ }
311
+ export interface ApprovalConfigDataType extends Pick<UserApprovalInfo, 'currentCount' | 'requiredCount'> {
312
+ kind: ApprovalConfigDataKindType | null;
313
+ anyUserApprovedInfo: UserApprovalInfo;
314
+ specificUsersApprovedInfo: UserApprovalInfo;
315
+ userGroupsApprovedInfo: Pick<UserApprovalInfo, 'currentCount' | 'requiredCount'> & {
316
+ userGroups: (UserApprovalInfo & {
317
+ groupIdentifier: UserGroupDTO['identifier'];
318
+ groupName: UserGroupDTO['name'];
319
+ })[];
320
+ };
321
+ }
322
+ export declare enum ApprovalRuntimeStateType {
323
+ init = 0,
324
+ requested = 1,
325
+ approved = 2,
326
+ consumed = 3
327
+ }
319
328
  export interface UserApprovalMetadataType {
320
329
  approvalRequestId: number;
321
- approvalRuntimeState: number;
322
- approvedUsersData: ApprovalUserDataType[];
330
+ approvalRuntimeState: ApprovalRuntimeStateType;
323
331
  requestedUserData: ApprovalUserDataType;
324
- approvalConfig?: UserApprovalConfigType;
332
+ hasCurrentUserApproved: boolean;
333
+ canCurrentUserApprove: boolean;
334
+ approvalConfigData: ApprovalConfigDataType;
325
335
  }
326
336
  export declare enum FilterStates {
327
337
  ALLOWED = 0,
@@ -378,7 +388,6 @@ export interface CDMaterialListModalServiceUtilProps {
378
388
  artifactId?: number;
379
389
  artifactStatus?: string;
380
390
  disableDefaultSelection?: boolean;
381
- userApprovalConfig?: UserApprovalConfigType;
382
391
  }
383
392
  export interface CDMaterialType {
384
393
  index: number;
@@ -514,8 +523,7 @@ export interface CommonNodeAttr extends Pick<MandatoryPluginBaseStateType, 'isTr
514
523
  primaryBranchAfterRegex?: string;
515
524
  storageConfigured?: boolean;
516
525
  deploymentAppDeleteRequest?: boolean;
517
- approvalUsers?: string[];
518
- userApprovalConfig?: UserApprovalConfigType;
526
+ approvalConfigData: ApprovalConfigDataType;
519
527
  requestedUserId?: number;
520
528
  showPluginWarning: boolean;
521
529
  helmPackageName?: string;
@@ -572,14 +580,17 @@ export interface FilterConditionsListType {
572
580
  description: string;
573
581
  conditions: FilterConditionsInfo[];
574
582
  }
583
+ export interface DeploymentApprovalInfoType {
584
+ eligibleApprovers: {
585
+ specificUsers: Pick<UserApprovalInfo, 'approverList'>;
586
+ anyUsers: Pick<UserApprovalInfo, 'approverList'>;
587
+ userGroups: (Pick<ApprovalConfigDataType['userGroupsApprovedInfo']['userGroups'][number], 'groupIdentifier' | 'groupName'> & Pick<UserApprovalInfo, 'approverList'>)[];
588
+ };
589
+ approvalConfigData: ApprovalConfigDataType;
590
+ }
575
591
  export interface CDMaterialsApprovalInfo {
576
- approvalUsers: string[];
577
- userApprovalConfig: UserApprovalConfigType;
578
592
  canApproverDeploy: boolean;
579
- /**
580
- * Only available incase of approvals do'nt use in cd materials or any other flow since approvalUsers are not present there
581
- */
582
- imageApprovalPolicyDetails: ImageApprovalPolicyType;
593
+ deploymentApprovalInfo: DeploymentApprovalInfoType;
583
594
  }
584
595
  export interface CDMaterialsMetaInfo {
585
596
  tagsEditable: boolean;
@@ -658,7 +669,6 @@ export interface AppEnvironment {
658
669
  appStatus?: string;
659
670
  deploymentAppDeleteRequest?: boolean;
660
671
  isVirtualEnvironment?: boolean;
661
- isProtected?: boolean;
662
672
  pipelineId?: number;
663
673
  latestCdWorkflowRunnerId?: number;
664
674
  commits?: string[];
@@ -709,7 +719,6 @@ export interface CdPipeline {
709
719
  parentPipelineType?: string;
710
720
  deploymentAppDeleteRequest?: boolean;
711
721
  deploymentAppCreated?: boolean;
712
- userApprovalConfig?: UserApprovalConfigType;
713
722
  isVirtualEnvironment?: boolean;
714
723
  deploymentAppType: DeploymentAppTypes;
715
724
  helmPackageName?: string;
@@ -718,6 +727,7 @@ export interface CdPipeline {
718
727
  isProdEnv?: boolean;
719
728
  isGitOpsRepoNotConfigured?: boolean;
720
729
  isDeploymentBlocked?: boolean;
730
+ approvalConfigData: ApprovalConfigDataType;
721
731
  }
722
732
  export interface ExternalCiConfig {
723
733
  id: number;
@@ -819,12 +829,11 @@ export interface Point {
819
829
  export interface EdgeNodeType {
820
830
  height: number;
821
831
  width: number;
822
- userApprovalConfig?: UserApprovalConfigType;
823
832
  type?: any;
824
833
  id?: number | string;
825
834
  }
826
835
  export interface EdgeEndNodeType extends EdgeNodeType {
827
- userApprovalConfig?: UserApprovalConfigType;
836
+ approvalConfigData: ApprovalConfigDataType;
828
837
  }
829
838
  /**
830
839
  * Search params for sorting configuration
@@ -1,5 +1,5 @@
1
1
  import { BuildStageType, FormType } from '../../../../../Common/CIPipeline.Types';
2
- import { DeploymentAppTypes, UserApprovalConfigType } from '../../../../../Common/Types';
2
+ import { DeploymentAppTypes } from '../../../../../Common/Types';
3
3
  import { DeploymentStrategy } from '../../../../../Shared/Components';
4
4
  import { EnvListMinDTO } from '../../../../../Shared/types';
5
5
  interface ConfigSecretType {
@@ -53,7 +53,6 @@ export interface CDFormType {
53
53
  secrets: ConfigSecretType[];
54
54
  };
55
55
  requiredApprovals: string;
56
- userApprovalConfig?: UserApprovalConfigType;
57
56
  isClusterCdActive: boolean;
58
57
  deploymentAppCreated: boolean;
59
58
  clusterId: string;
@@ -1,2 +1,2 @@
1
1
  import { FeatureDescriptionModalProps } from './types';
2
- export declare const FeatureDescriptionModal: ({ title, renderDescriptionContent, closeModalText, docLink, closeModal, imageVariant, SVGImage, imageStyles, }: FeatureDescriptionModalProps) => JSX.Element;
2
+ export declare const FeatureDescriptionModal: ({ title, renderDescriptionContent, closeModalText, docLink, closeModal, imageVariant, SVGImage, imageStyles, tabsConfig, }: FeatureDescriptionModalProps) => JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import { DescriptorProps } from './types';
2
- declare const FeatureTitleWithInfo: ({ additionalContainerClasses, breadCrumbs, children, iconClassName, title, renderDescriptionContent, closeModalText, docLink, SVGImage, showInfoIconTippy, docLinkText, dataTestId, additionalContent, showInfoIcon, }: DescriptorProps) => JSX.Element;
2
+ declare const FeatureTitleWithInfo: ({ additionalContainerClasses, breadCrumbs, children, iconClassName, title, renderDescriptionContent, closeModalText, docLink, SVGImage, showInfoIconTippy, docLinkText, dataTestId, additionalContent, showInfoIcon, tabsConfig, }: DescriptorProps) => JSX.Element;
3
3
  export default FeatureTitleWithInfo;
@@ -1,17 +1,44 @@
1
1
  import { default as React, ReactNode } from 'react';
2
2
  import { ImageType } from '../../../Common';
3
3
  import { Breadcrumb } from '../../../Common/BreadCrumb/Types';
4
- export interface FeatureDescriptionModalProps {
5
- title: string;
4
+ interface BaseFeatureDescriptionModalProps {
6
5
  renderDescriptionContent?: () => ReactNode;
7
- closeModalText?: string;
8
6
  docLink?: string;
9
- closeModal?: () => void;
10
7
  imageVariant?: ImageType;
11
8
  SVGImage?: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
12
9
  imageStyles?: React.CSSProperties;
13
10
  }
14
- export interface DescriptorProps extends FeatureDescriptionModalProps {
11
+ type FeatureDescriptionModalWithTabsConfig = {
12
+ /**
13
+ * If provided, tabs are shown and have higher precedence over normal modal
14
+ */
15
+ tabsConfig: ({
16
+ /**
17
+ * Unique id of the tab
18
+ */
19
+ id: string;
20
+ /**
21
+ * Title for the tab
22
+ */
23
+ title: string;
24
+ } & BaseFeatureDescriptionModalProps)[];
25
+ } & {
26
+ renderDescriptionContent?: never;
27
+ docLink?: never;
28
+ imageVariant?: never;
29
+ SVGImage?: never;
30
+ imageStyles?: never;
31
+ };
32
+ export type FeatureDescriptionModalProps = {
33
+ title: string;
34
+ closeModalText?: string;
35
+ closeModal?: () => void;
36
+ } & ((BaseFeatureDescriptionModalProps & {
37
+ tabsConfig?: never;
38
+ }) | FeatureDescriptionModalWithTabsConfig);
39
+ export type DescriptorProps = ((Omit<FeatureDescriptionModalProps, 'tabsConfig'> & {
40
+ tabsConfig?: never;
41
+ }) | (Pick<FeatureDescriptionModalProps, 'title' | 'closeModalText' | 'closeModal'> & FeatureDescriptionModalWithTabsConfig)) & {
15
42
  breadCrumbs?: Breadcrumb[];
16
43
  additionalContainerClasses?: string;
17
44
  iconClassName?: string;
@@ -26,4 +53,5 @@ export interface DescriptorProps extends FeatureDescriptionModalProps {
26
53
  * @default false
27
54
  */
28
55
  showInfoIcon?: boolean;
29
- }
56
+ };
57
+ export {};
@@ -1,7 +1,7 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { Pair } from 'yaml';
3
3
  import { MaterialHistoryType } from '@Shared/Services/app.types';
4
- import { MaterialInfo, SortingOrder, UserApprovalConfigType } from '../Common';
4
+ import { MaterialInfo, SortingOrder, UserApprovalConfigType, ApprovalConfigDataType, UserApprovalInfo } from '../Common';
5
5
  import { GitTriggers, IntersectionChangeHandler, IntersectionOptions, PreventOutsideFocusProps, WebhookEventNameType } from './types';
6
6
  import { AggregatedNodes, DeploymentStatusDetailsBreakdownDataType, DeploymentStatusDetailsType, PodMetadatum } from './Components';
7
7
  interface HighlightSearchTextProps {
@@ -40,12 +40,13 @@ export declare const decode: (data: any, isEncoded?: boolean) => {};
40
40
  export declare const isTimeStringAvailable: (time: string) => boolean;
41
41
  export declare const getTimeDifference: (startTime: string, endTime: string) => string;
42
42
  export declare const getFileNameFromHeaders: (headers: Headers) => string;
43
- export declare const sanitizeUserApprovalConfig: (userApprovalConfig: UserApprovalConfigType) => UserApprovalConfigType;
43
+ export declare const sanitizeUserApprovalList: (approverList: UserApprovalInfo["approverList"]) => UserApprovalInfo["approverList"];
44
+ export declare const sanitizeApprovalConfigData: (approvalConfigData: ApprovalConfigDataType | null) => ApprovalConfigDataType;
44
45
  /**
45
46
  * Manual approval is considered configured only if the type is not notConfigured
46
47
  */
47
48
  export declare const getIsManualApprovalConfigured: (userApprovalConfig?: Pick<UserApprovalConfigType, "type">) => boolean;
48
- export declare const getIsManualApprovalSpecific: (userApprovalConfig?: Pick<UserApprovalConfigType, "type">) => boolean;
49
+ export declare const getIsApprovalPolicyConfigured: (approvalConfigData: ApprovalConfigDataType) => boolean;
49
50
  /**
50
51
  * @description - Function to open a new tab with the given url
51
52
  * @param url - url to be opened in new tab
@@ -1,4 +1,4 @@
1
- import { ReleaseTag } from '../../Common';
1
+ import { ReleaseTag, UserApprovalMetadataType } from '../../Common';
2
2
  interface WebhookDataType {
3
3
  id: number;
4
4
  eventActionType: string;
@@ -132,6 +132,7 @@ export interface DraftMetadataDTO {
132
132
  commentsCount: number;
133
133
  dataEncrypted: boolean;
134
134
  isAppAdmin: boolean;
135
+ userApprovalMetadata: UserApprovalMetadataType;
135
136
  }
136
137
  export declare enum CMSecretExternalType {
137
138
  Internal = "",
@@ -417,4 +417,11 @@ export declare const ALL_RESOURCE_KIND_FILTER = "all";
417
417
  export declare const OPEN_NEW_TICKET = "https://enterprise.devtron.ai/portal/en/newticket";
418
418
  export declare const VIEW_ALL_TICKETS = "https://enterprise.devtron.ai/portal/en/myarea";
419
419
  export declare const RAISE_ISSUE = "https://github.com/devtron-labs/devtron/issues/new/choose";
420
+ export declare const TARGET_IDS: {
421
+ WORKFLOW_EDITOR_CONTAINER: string;
422
+ };
423
+ /**
424
+ * Env ID to get the data for base configuration
425
+ */
426
+ export declare const BASE_CONFIGURATION_ENV_ID = -1;
420
427
  export declare const DEVTRON_BASE_MAIN_ID = "devtron-base-main-identifier";
@@ -1,7 +1,8 @@
1
1
  import { Dayjs } from 'dayjs';
2
- import { OptionType, CommonNodeAttr, ResponseType, UserApprovalConfigType, VulnerabilityType, DeploymentAppTypes, ServerErrors, SortingParams } from '../Common';
2
+ import { ApprovalConfigDataType } from '../Common/Types';
3
+ import { OptionType, CommonNodeAttr, ResponseType, VulnerabilityType, DeploymentAppTypes, ServerErrors, SortingParams } from '../Common';
3
4
  import { KeyValueListType } from './Components';
4
- import { EnvironmentTypeEnum, PatchOperationType } from './constants';
5
+ import { BASE_CONFIGURATION_ENV_ID, EnvironmentTypeEnum, PatchOperationType } from './constants';
5
6
  export declare enum EnvType {
6
7
  CHART = "helm_charts",
7
8
  APPLICATION = "apps"
@@ -186,7 +187,7 @@ export interface AppDetails {
186
187
  clusterName?: string;
187
188
  dockerRegistryId?: string;
188
189
  deploymentAppDeleteRequest?: boolean;
189
- userApprovalConfig?: string;
190
+ approvalConfigData?: ApprovalConfigDataType;
190
191
  isVirtualEnvironment?: boolean;
191
192
  imageTag?: string;
192
193
  helmPackageName?: string;
@@ -246,7 +247,7 @@ export interface WorkflowType {
246
247
  showTippy?: boolean;
247
248
  appId?: number;
248
249
  isSelected?: boolean;
249
- approvalConfiguredIdsMap?: Record<number, UserApprovalConfigType>;
250
+ approvalConfiguredIdsMap?: Record<number, ApprovalConfigDataType>;
250
251
  imageReleaseTags: string[];
251
252
  appReleaseTags?: string[];
252
253
  tagsEditable?: boolean;
@@ -403,7 +404,8 @@ export interface SeverityCount {
403
404
  export declare enum PolicyKindType {
404
405
  lockConfiguration = "lock-configuration",
405
406
  imagePromotion = "image-promotion",
406
- plugins = "plugin"
407
+ plugins = "plugin",
408
+ approval = "approval"
407
409
  }
408
410
  export interface LastExecutionResultType {
409
411
  lastExecution: string;
@@ -735,6 +737,16 @@ export interface DynamicTabType extends CommonTabArgsType {
735
737
  */
736
738
  lastActiveTabId: string | null;
737
739
  }
740
+ export interface ResourceApprovalPolicyConfigDTO {
741
+ appId: number;
742
+ envId: number;
743
+ approvalConfigurations: ApprovalConfigDataType[];
744
+ }
745
+ export interface ResourceApprovalPolicyConfigType extends Omit<ResourceApprovalPolicyConfigDTO, 'state' | 'approvalConfigurations'> {
746
+ isApprovalApplicable: boolean;
747
+ approvalConfigurationMap: Record<ApprovalConfigDataType['kind'], ApprovalConfigDataType>;
748
+ }
749
+ export type ResourceIdToResourceApprovalPolicyConfigMapType = Record<ResourceApprovalPolicyConfigType['envId'] | typeof BASE_CONFIGURATION_ENV_ID, Pick<ResourceApprovalPolicyConfigType, 'isApprovalApplicable' | 'approvalConfigurationMap'>>;
738
750
  export interface PreventOutsideFocusProps {
739
751
  identifier: string;
740
752
  preventFocus: boolean;
package/dist/index.d.ts CHANGED
@@ -3,6 +3,12 @@ export interface customEnv {
3
3
  SENTRY_ERROR_ENABLED?: boolean;
4
4
  SENTRY_PERFORMANCE_ENABLED?: boolean;
5
5
  SENTRY_DSN?: string;
6
+ /**
7
+ * Release version for sentry
8
+ *
9
+ * @default 'dashboard@${SHORT_GIT_HASH}'
10
+ */
11
+ SENTRY_RELEASE_VERSION?: string;
6
12
  SENTRY_TRACES_SAMPLE_RATE?: number;
7
13
  HOTJAR_ENABLED?: boolean;
8
14
  CLUSTER_NAME?: boolean;