Merge branch 'manuel-rw-gridstack' into gridstack-wip-meierschlumpf

This commit is contained in:
Meierschlumpf
2023-01-07 17:59:43 +01:00
56 changed files with 962 additions and 785 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';