diff --git a/packages/types/src/sdk/licensing/quota.ts b/packages/types/src/sdk/licensing/quota.ts index 74777d4590..86a092c6f5 100644 --- a/packages/types/src/sdk/licensing/quota.ts +++ b/packages/types/src/sdk/licensing/quota.ts @@ -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 = {