Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

chore!: Remove ttlInSeconds #69

Merged
merged 15 commits into from
Aug 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export interface BatchReadWriteRequest {
id: string;
vid?: string;
resource: any;
ttlInSeconds?: number; // archive timestamp in Unix epoch time format in seconds
// GET requests, only contains the URL of the resource
fullUrl?: string;
references?: Reference[];
Expand Down
3 changes: 0 additions & 3 deletions src/persistence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export interface CreateResourceRequest {
resource: any;
id?: string;
tenantId?: string;
ttlInSeconds?: number; // archive timestamp in Unix epoch time format in seconds
}

export interface UpdateResourceRequest {
Expand All @@ -19,7 +18,6 @@ export interface UpdateResourceRequest {
resource: any;
vid?: string; // used in version aware update
tenantId?: string;
ttlInSeconds?: number; // archive timestamp in Unix epoch time format in seconds
}

export interface PatchResourceRequest {
Expand All @@ -28,7 +26,6 @@ export interface PatchResourceRequest {
resource: any;
vid?: string; // used in version aware patch
tenantId?: string;
ttlInSeconds?: number; // archive timestamp in Unix epoch time format in seconds
}

export interface ReadResourceRequest {
Expand Down