Skip to content
Merged
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
4 changes: 4 additions & 0 deletions src/bitdrift_public/protobuf/client/v1/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,10 @@ message UploadArtifactIntentRequest {

// The timestamp associated with the artifact being uploaded. This allows us to possibly reject the upload of very old artifacts.
google.protobuf.Timestamp time = 5 [(validate.rules).message = {required: true}];

// The session ID associated with the artifact. This allows correlating the intent with a specific user session.
// This may not be set for all kinds of artifacts, such as state snapshots.
optional string session_id = 7;
}

message UploadArtifactIntentResponse {
Expand Down
Loading