From a5d1fc3c6b369198d453b4c7fa44f262640a2126 Mon Sep 17 00:00:00 2001 From: Matthew Niemer Date: Wed, 21 Feb 2024 11:21:32 -0600 Subject: [PATCH] Make time_to_live_attribute optional in ManifestDatastoreSchema --- src/manifest/manifest_schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manifest/manifest_schema.ts b/src/manifest/manifest_schema.ts index 7d22e78d..66450c04 100644 --- a/src/manifest/manifest_schema.ts +++ b/src/manifest/manifest_schema.ts @@ -273,7 +273,7 @@ export type ManifestCustomTypesSchema = { export type ManifestDatastore = ISlackDatastore; export type ManifestDatastoreSchema = { primary_key: string; - time_to_live_attribute: string; + time_to_live_attribute?: string; attributes: { [key: string]: { type: string | ICustomType;