feat: add baseos contracts

This commit is contained in:
2026-05-07 15:53:16 +00:00
parent 33643e83f7
commit ff144e2826
5 changed files with 118 additions and 1 deletions
+4 -1
View File
@@ -8,6 +8,9 @@ export interface ICloudlySettings {
// Cloud Provider Tokens
hetznerToken?: string;
cloudflareToken?: string;
// BaseOS enrollment
baseosJoinToken?: string;
// AWS Credentials
awsAccessKey?: string;
@@ -53,4 +56,4 @@ export interface ICloudlySettings {
*/
export type ICloudlySettingsMasked = {
[K in keyof ICloudlySettings]: string | undefined;
};
};