1
0
Fork 0
mirror of synced 2024-06-14 08:24:48 +12:00

Adding in retention days for app backups.

This commit is contained in:
mike12345567 2022-10-24 15:43:48 +01:00
parent 4d0f5f22ac
commit efedc50f4b

View file

@ -25,6 +25,7 @@ export enum MonthlyQuotaName {
export enum ConstantQuotaName {
AUTOMATION_LOG_RETENTION_DAYS = "automationLogRetentionDays",
APP_BACKUPS_RETENTION_DAYS = "appBackupRetentionDays",
}
export type MeteredQuotaName = StaticQuotaName | MonthlyQuotaName
@ -76,6 +77,7 @@ export type StaticQuotas = {
export type ConstantQuotas = {
[ConstantQuotaName.AUTOMATION_LOG_RETENTION_DAYS]: Quota
[ConstantQuotaName.APP_BACKUPS_RETENTION_DAYS]: Quota
}
export type Quotas = {