Skip to content

Commit

Permalink
Make time_to_live_attribute optional in ManifestDatastoreSchema
Browse files Browse the repository at this point in the history
  • Loading branch information
mniemer committed Feb 21, 2024
1 parent a73dd48 commit a5d1fc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manifest/manifest_schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a5d1fc3

Please sign in to comment.