@devtron-labs/devtron-fe-common-lib 1.0.3 → 1.0.4-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.
Files changed (32) hide show
  1. package/dist/Common/Common.service.d.ts +7 -0
  2. package/dist/Common/Constants.d.ts +15 -0
  3. package/dist/Common/ErrorScreenManager.d.ts +1 -1
  4. package/dist/Common/Helper.d.ts +8 -0
  5. package/dist/Common/Types.d.ts +1 -0
  6. package/dist/Pages/Applications/DevtronApps/Details/AppConfigurations/utils.d.ts +1 -1
  7. package/dist/Shared/Components/CICDHistory/CiPipelineSourceConfig.d.ts +2 -11
  8. package/dist/Shared/Components/CICDHistory/types.d.ts +11 -0
  9. package/dist/Shared/Components/GitCommitInfoGeneric/GitCommitInfoGeneric.d.ts +1 -1
  10. package/dist/Shared/Components/Security/SecurityModal/utils.d.ts +1 -1
  11. package/dist/Shared/Helpers.d.ts +14 -0
  12. package/dist/Shared/Services/app.types.d.ts +2 -1
  13. package/dist/Shared/constants.d.ts +3 -0
  14. package/dist/assets/index.css +1 -1
  15. package/dist/{cssMode-DqgoAsfz.js → cssMode-BpnPKF0v.js} +1 -1
  16. package/dist/{freemarker2-CEpnHSz-.js → freemarker2-C713p__x.js} +1 -1
  17. package/dist/{handlebars-CqEeLRD2.js → handlebars-BrfskXEM.js} +1 -1
  18. package/dist/{html-DFTHYjce.js → html-C5TTKndk.js} +1 -1
  19. package/dist/{htmlMode-DgaO5fic.js → htmlMode-CSrdf07c.js} +1 -1
  20. package/dist/{index-ri-cQmfI.js → index-3k1VpblC.js} +19344 -19370
  21. package/dist/index.js +453 -444
  22. package/dist/{javascript-B4BGuvGB.js → javascript-BQgFNTPZ.js} +1 -1
  23. package/dist/{jsonMode-CoC90oe8.js → jsonMode-CkeZ2WsI.js} +1 -1
  24. package/dist/{liquid-Du6Lnlrg.js → liquid-DkPC2-w3.js} +1 -1
  25. package/dist/{mdx-CW6spHTf.js → mdx-5tLcc7Sm.js} +1 -1
  26. package/dist/{python-rKDYUtSh.js → python-CYCYGeGg.js} +1 -1
  27. package/dist/{razor-B3aspFSw.js → razor-Lp_B33C_.js} +1 -1
  28. package/dist/{tsMode-Ch11Nli2.js → tsMode-TVipA5lw.js} +1 -1
  29. package/dist/{typescript-C01AH-qj.js → typescript-D3ME0apQ.js} +1 -1
  30. package/dist/{xml-DTUVGyRD.js → xml-SUawu1e7.js} +1 -1
  31. package/dist/{yaml-DjxWRzgQ.js → yaml-DvUhRau_.js} +1 -1
  32. package/package.json +1 -1
@@ -27,4 +27,11 @@ export declare function getClusterListMin(): Promise<ResponseType<any>>;
27
27
  export declare const getResourceGroupListRaw: (clusterId: string) => Promise<ResponseType<ApiResourceType>>;
28
28
  export declare function getNamespaceListMin(clusterIdsCsv: string): Promise<EnvironmentListHelmResponse>;
29
29
  export declare function getWebhookEventsForEventId(eventId: string | number): Promise<ResponseType<any>>;
30
+ /**
31
+ *
32
+ * @param gitUrl Git URL of the repository
33
+ * @param branchName Branch name
34
+ * @returns URL to the branch in the Git repository
35
+ */
36
+ export declare const getGitBranchUrl: (gitUrl: string, branchName: string) => string | null;
30
37
  export {};
@@ -255,6 +255,7 @@ export declare const API_STATUS_CODES: {
255
255
  PERMISSION_DENIED: number;
256
256
  NOT_FOUND: number;
257
257
  EXPECTATION_FAILED: number;
258
+ UNPROCESSABLE_ENTITY: number;
258
259
  LOCKED: number;
259
260
  };
260
261
  export declare enum SERVER_MODE {
@@ -293,3 +294,17 @@ export declare const VULNERABILITIES_SORT_PRIORITY: {
293
294
  unknown: number;
294
295
  };
295
296
  export declare const IS_PLATFORM_MAC_OS: boolean;
297
+ /**
298
+ * Git provider types
299
+ */
300
+ export declare enum GitProviderType {
301
+ GITHUB = "github",
302
+ GITLAB = "gitlab",
303
+ BITBUCKET = "bitbucket",
304
+ AZURE = "azure",
305
+ GITEA = "gitea"
306
+ }
307
+ /**
308
+ * Formats the schema removing any irregularity in the existing schema
309
+ */
310
+ export declare const getFormattedSchema: (schema?: string) => string;
@@ -1,3 +1,3 @@
1
1
  import { ErrorScreenManagerProps } from './Types';
2
- declare const ErrorScreenManager: ({ code, reload, subtitle, reloadClass, heightToDeduct, redirectURL, }: ErrorScreenManagerProps) => JSX.Element;
2
+ declare const ErrorScreenManager: ({ code, reload, subtitle, reloadClass, heightToDeduct, redirectURL, imageType, }: ErrorScreenManagerProps) => JSX.Element;
3
3
  export default ErrorScreenManager;
@@ -121,6 +121,14 @@ export declare function mapByKey<T = Map<any, any>>(arr: any[], id: string): T;
121
121
  export declare function asyncWrap(promise: any): any[];
122
122
  export declare const prefixZeroIfSingleDigit: (value?: number) => string | number;
123
123
  export declare const throttle: <T extends (...args: unknown[]) => unknown>(func: T, delay?: number) => ((...args: Parameters<T>) => void);
124
+ /**
125
+ *
126
+ * @param sourceType - SourceTypeMap
127
+ * @param _isRegex - boolean
128
+ * @param webhookEventName - WebhookEventNameType
129
+ * @returns - Icon
130
+ */
131
+ export declare const getBranchIcon: (sourceType: any, _isRegex?: boolean, webhookEventName?: string) => string;
124
132
  export declare const getSanitizedIframe: (iframeString: string) => string;
125
133
  /**
126
134
  * This method adds default attributes to iframe - title, loading ="lazy", width="100%", height="100%"
@@ -124,6 +124,7 @@ export interface ErrorPageType extends Pick<GenericEmptyStateType, 'image' | 'ti
124
124
  }
125
125
  export interface ErrorScreenManagerProps {
126
126
  code?: number;
127
+ imageType?: ImageType;
127
128
  reload?: (...args: any[]) => any;
128
129
  subtitle?: React.ReactChild;
129
130
  reloadClass?: string;
@@ -1,2 +1,2 @@
1
1
  import { DeploymentStageType } from '../../../../../Shared/constants';
2
- export declare const getDeploymentStageTitle: (stage: DeploymentStageType) => "-" | "deployment" | "pre-deployment" | "post-deployment";
2
+ export declare const getDeploymentStageTitle: (stage: DeploymentStageType) => "deployment" | "pre-deployment" | "post-deployment" | "-";
@@ -1,11 +1,2 @@
1
- export interface CIPipelineSourceConfigInterface {
2
- sourceType: any;
3
- sourceValue: any;
4
- showTooltip?: boolean;
5
- showIcons?: boolean;
6
- baseText?: string;
7
- regex?: any;
8
- isRegex?: boolean;
9
- primaryBranchAfterRegex?: string;
10
- }
11
- export declare const CiPipelineSourceConfig: ({ sourceType, sourceValue, showTooltip, showIcons, baseText, regex, isRegex, primaryBranchAfterRegex, }: CIPipelineSourceConfigInterface) => JSX.Element;
1
+ import { CIPipelineSourceConfigInterface } from './types';
2
+ export declare const CiPipelineSourceConfig: ({ sourceType, sourceValue, showTooltip, showIcons, baseText, regex, isRegex, primaryBranchAfterRegex, rootClassName, }: CIPipelineSourceConfigInterface) => JSX.Element;
@@ -666,4 +666,15 @@ export type CreateMarkupPropsType = {
666
666
  export type TriggerHistoryFilterCriteriaType = `${string}|${string}|${string}`[];
667
667
  export declare const terminalStatus: Set<string>;
668
668
  export declare const statusSet: Set<string>;
669
+ export interface CIPipelineSourceConfigInterface {
670
+ sourceType: string;
671
+ sourceValue: any;
672
+ showTooltip?: boolean;
673
+ showIcons?: boolean;
674
+ baseText?: string;
675
+ regex?: any;
676
+ isRegex?: boolean;
677
+ primaryBranchAfterRegex?: string;
678
+ rootClassName?: string;
679
+ }
669
680
  export {};
@@ -1,3 +1,3 @@
1
1
  import { GitCommitInfoGenericProps } from './types';
2
- declare const GitCommitInfoGeneric: ({ materialSourceType, materialSourceValue, commitInfo, selectedCommitInfo, materialUrl, showMaterialInfoHeader, canTriggerBuild, index, isExcluded, }: GitCommitInfoGenericProps) => JSX.Element;
2
+ declare const GitCommitInfoGeneric: ({ materialSourceType, materialSourceValue, commitInfo, selectedCommitInfo, materialUrl, showMaterialInfoHeader, index, isExcluded, }: GitCommitInfoGenericProps) => JSX.Element;
3
3
  export default GitCommitInfoGeneric;
@@ -2,7 +2,7 @@ import { ApiResponseResultType, SeveritiesDTO, GetResourceScanDetailsResponseTyp
2
2
  import { SEVERITIES } from './constants';
3
3
  export declare const mapSeveritiesToSegmentedBarChartEntities: (severities: Partial<Record<keyof typeof SEVERITIES, number>>) => {
4
4
  color: "#B1B7BC" | "#B21212" | "#F33E3E" | "#FF7E5B" | "#FFB549" | "#1DAD70";
5
- label: "Critical" | "High" | "Medium" | "Low" | "Unknown" | "Failures" | "Successes" | "Exceptions";
5
+ label: "Unknown" | "Critical" | "High" | "Medium" | "Low" | "Failures" | "Successes" | "Exceptions";
6
6
  value: number;
7
7
  }[];
8
8
  export declare const stringifySeverities: (severities: Partial<Record<keyof typeof SEVERITIES, number>>) => string;
@@ -1,5 +1,6 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { Pair } from 'yaml';
3
+ import { MaterialHistoryType } from '@Shared/Services/app.types';
3
4
  import { MaterialInfo, SortingOrder, UserApprovalConfigType } from '../Common';
4
5
  import { GitTriggers, IntersectionChangeHandler, IntersectionOptions, WebhookEventNameType } from './types';
5
6
  import { AggregatedNodes, DeploymentStatusDetailsBreakdownDataType, DeploymentStatusDetailsType, PodMetadatum } from './Components';
@@ -63,4 +64,17 @@ export declare const getDefaultValueFromType: (value: unknown) => {};
63
64
  * and the values are arrays of objects that share the same key value.
64
65
  */
65
66
  export declare const groupArrayByObjectKey: <T extends Record<string, any>, K extends keyof T>(array: T[], key: K) => Record<string, T[]>;
67
+ /**
68
+ * @description - Function to get the lower case object
69
+ * @param input - The input object
70
+ * @returns Record<string, any>
71
+ */
72
+ export declare const getLowerCaseObject: (input: any) => Record<string, any>;
73
+ /**
74
+ * @description - Function to get the webhook date
75
+ * @param materialSourceType - The type of material source (e.g., WEBHOOK)
76
+ * @param history - The history object containing commit information
77
+ * @returns - Formatted webhook date if available, otherwise an empty string
78
+ */
79
+ export declare const getWebhookDate: (materialSourceType: string, history: MaterialHistoryType) => string;
66
80
  export {};
@@ -12,7 +12,7 @@ interface MaterialHistoryDTO {
12
12
  Changes: unknown[];
13
13
  WebhookData: WebhookDataType;
14
14
  }
15
- interface MaterialHistoryType {
15
+ export interface MaterialHistoryType {
16
16
  commitURL: string;
17
17
  commit: MaterialHistoryDTO['Commit'];
18
18
  author: MaterialHistoryDTO['Author'];
@@ -56,6 +56,7 @@ export interface CIMaterialType extends Pick<CIMaterialDTO, 'id' | 'gitMaterialI
56
56
  gitURL: CIMaterialDTO['url'];
57
57
  history: MaterialHistoryType[];
58
58
  isSelected: boolean;
59
+ gitMaterialUrl?: string;
59
60
  }
60
61
  interface ImageCommentDTO {
61
62
  id: number;
@@ -414,3 +414,6 @@ export declare const TRIGGER_STATUS_PROGRESSING: string[];
414
414
  export declare const CONFIGURATION_TYPE_VALUES: ConfigurationType[];
415
415
  export declare const DEFAULT_LOCKED_KEYS_CONFIG: Readonly<ConfigKeysWithLockType>;
416
416
  export declare const ALL_RESOURCE_KIND_FILTER = "all";
417
+ export declare const OPEN_NEW_TICKET = "https://enterprise.devtron.ai/portal/en/newticket";
418
+ export declare const VIEW_ALL_TICKETS = "https://enterprise.devtron.ai/portal/en/myarea";
419
+ export declare const RAISE_ISSUE = "https://github.com/devtron-labs/devtron/issues/new/choose";