Skip to content

Commit 655963a

Browse files
committed
feat: add ssh and password type
1 parent 39ae900 commit 655963a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtron-labs/devtron-fe-common-lib",
3-
"version": "0.0.86-beta-3",
3+
"version": "0.0.86-beta-12",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Shared/types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,13 +312,15 @@ export type AggregationKeysType = keyof typeof AggregationKeys
312312
export enum GitOpsAuthModeType {
313313
SSH = 'SSH',
314314
PASSWORD = 'PASSWORD',
315+
SSH_AND_PASSWORD = 'PAT_AND_SSH',
315316
}
316317

317318
export interface BaseGitOpsType {
318319
authMode: GitOpsAuthModeType
319320
sshKey: string
320321
sshHost: string
321322
username: string
323+
token: string
322324
}
323325

324326
export type GitOpsFieldKeyType =

0 commit comments

Comments
 (0)