Add visual hint for defined and undefined credentials

This commit is contained in:
Manuel Ruwe
2023-01-03 21:53:27 +01:00
parent 8a91edbd59
commit 6fd4608b22
4 changed files with 75 additions and 9 deletions

View File

@@ -52,12 +52,14 @@ export type ConfigAppIntegrationType = Omit<AppIntegrationType, 'properties'> &
};
export type AppIntegrationPropertyType = {
type: 'private' | 'public';
type: AppIntegrationPropertyAccessabilityType;
field: IntegrationField;
value?: string | null;
isDefined: boolean;
};
export type AppIntegrationPropertyAccessabilityType = 'private' | 'public';
type ConfigAppIntegrationPropertyType = Omit<AppIntegrationPropertyType, 'isDefined'>;
export type IntegrationField = 'apiKey' | 'password' | 'username';