@devtron-labs/devtron-fe-common-lib 1.4.6 → 1.4.8-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.
- package/dist/{@code-editor-CgHQxf33.js → @code-editor-BWAEapff.js} +2114 -2110
- package/dist/{@common-rjsf-DulF6J49.js → @common-rjsf-FNZhfeej.js} +2 -2
- package/dist/{@framer-motion-CdgdF0KV.js → @framer-motion-CK4h5UCd.js} +1 -1
- package/dist/{@react-dates-CtQV2TLr.js → @react-dates-CiugJpoJ.js} +20 -20
- package/dist/{@react-select-Cn3OpC9h.js → @react-select-4qT_kJ_5.js} +1 -1
- package/dist/{@react-virtualized-sticky-tree-CVJYfMx0.js → @react-virtualized-sticky-tree-CyO-wztE.js} +1 -1
- package/dist/{@vendor-CwAQS8iU.js → @vendor-Begv3w6F.js} +3290 -3329
- package/dist/Pages/Applications/DevtronApps/Details/CDPipeline/services.d.ts +1 -1
- package/dist/Pages/Applications/DevtronApps/Details/CDPipeline/types.d.ts +2 -0
- package/dist/Shared/Components/DeploymentConfigDiff/DeploymentConfigDiff.constants.d.ts +1 -0
- package/dist/index.js +563 -562
- package/package.json +1 -1
@@ -6,4 +6,4 @@ export declare const uploadCDPipelineFile: ({ file, appId, envId, allowedExtensi
|
|
6
6
|
envId: number;
|
7
7
|
abortControllerRef?: MutableRefObject<AbortController>;
|
8
8
|
}) => Promise<UploadFileDTO>;
|
9
|
-
export declare const triggerCDNode: ({ pipelineId, ciArtifactId, appId, stageType, deploymentWithConfig, wfrId, runtimeParamsPayload, abortControllerRef, }: TriggerCDNodeServiceProps) => Promise<import('../../../../../Common/Types').ResponseType<any>>;
|
9
|
+
export declare const triggerCDNode: ({ pipelineId, ciArtifactId, appId, stageType, deploymentWithConfig, wfrId, runtimeParamsPayload, abortControllerRef, isRollbackTrigger, }: TriggerCDNodeServiceProps) => Promise<import('../../../../../Common/Types').ResponseType<any>>;
|
@@ -106,9 +106,11 @@ export interface TriggerCDNodeServiceProps extends Pick<APIOptions, 'abortContro
|
|
106
106
|
* Would be available only case of PRE/POST CD
|
107
107
|
*/
|
108
108
|
runtimeParamsPayload?: RuntimeParamsTriggerPayloadType;
|
109
|
+
isRollbackTrigger?: boolean;
|
109
110
|
}
|
110
111
|
export interface TriggerCDPipelinePayloadType extends Pick<TriggerCDNodeServiceProps, 'pipelineId' | 'appId' | 'ciArtifactId' | 'runtimeParamsPayload' | 'deploymentWithConfig'> {
|
111
112
|
cdWorkflowType: (typeof STAGE_MAP)[keyof typeof STAGE_MAP];
|
113
|
+
isRollbackDeployment: boolean;
|
112
114
|
wfrIdForDeploymentWithSpecificTrigger?: number;
|
113
115
|
}
|
114
116
|
export {};
|
@@ -4,3 +4,4 @@ export declare const diffStateTextMap: Record<DeploymentConfigDiffState, string>
|
|
4
4
|
export declare const diffStateIconMap: Record<DeploymentConfigDiffState, FunctionComponent<SVGProps<SVGSVGElement>>>;
|
5
5
|
export declare const diffStateTooltipTextMap: Record<DeploymentConfigDiffState, string>;
|
6
6
|
export declare const diffStateTextColorMap: Record<DeploymentConfigDiffState, `c${string}`>;
|
7
|
+
export declare const DEPLOYMENT_CONFIG_DIFF_SORT_KEY = "sort-config";
|