We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eff3f81 commit 41a03fbCopy full SHA for 41a03fb
src/Shared/types.ts
@@ -292,3 +292,27 @@ export enum AggregationKeys {
292
Namespaces = 'Namespaces',
293
}
294
export type AggregationKeysType = keyof typeof AggregationKeys
295
+
296
+export enum GitOpsAuthModeType {
297
+ SSH = 'SSH',
298
+ PASSWORD = 'PASSWORD',
299
+}
300
301
+export interface BaseGitOpsType {
302
+ authMode: GitOpsAuthModeType
303
+ sshKey: string
304
+ sshHost: string
305
+ username: string
306
307
308
+export type GitOpsFieldKeyType =
309
+ | 'host'
310
+ | 'username'
311
+ | 'token'
312
+ | 'gitHubOrgId'
313
+ | 'azureProjectName'
314
+ | 'gitLabGroupId'
315
+ | 'bitBucketWorkspaceId'
316
+ | 'bitBucketProjectKey'
317
+ | 'sshHost'
318
+ | 'sshKey'
0 commit comments