@devtron-labs/devtron-fe-common-lib 1.2.4-beta-15 → 1.2.4-beta-16
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/Common/Types.d.ts +2 -1
- package/package.json +1 -1
package/dist/Common/Types.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { Placement } from 'tippy.js';
|
|
|
4
4
|
import { UserGroupDTO } from '../Pages/GlobalConfigurations';
|
|
5
5
|
import { ImageComment, ReleaseTag } from './ImageTags.Types';
|
|
6
6
|
import { MandatoryPluginBaseStateType, RegistryType, RuntimePluginVariables, Severity } from '../Shared';
|
|
7
|
-
import { ACTION_STATE, DEPLOYMENT_WINDOW_TYPE, DockerConfigOverrideType, SortingOrder, TaskErrorObj, VariableTypeFormat } from '.';
|
|
7
|
+
import { ACTION_STATE, DEPLOYMENT_WINDOW_TYPE, DockerConfigOverrideType, RefVariableType, SortingOrder, TaskErrorObj, VariableTypeFormat } from '.';
|
|
8
8
|
/**
|
|
9
9
|
* Generic response type object with support for overriding the result type
|
|
10
10
|
*
|
|
@@ -881,5 +881,6 @@ export interface GlobalVariableDTO {
|
|
|
881
881
|
export type GlobalVariableOptionType = Omit<GlobalVariableDTO, 'name'> & {
|
|
882
882
|
label: string;
|
|
883
883
|
value: string;
|
|
884
|
+
variableType: Extract<RefVariableType, RefVariableType.GLOBAL>;
|
|
884
885
|
};
|
|
885
886
|
export {};
|