From efedc50f4bfbe22130e70f8e69f2f04db52d262d Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Mon, 24 Oct 2022 15:43:48 +0100 Subject: [PATCH] Adding in retention days for app backups. --- packages/types/src/sdk/licensing/quota.ts | 2 ++ 1 file changed, 2 insertions(+) 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 = {