Skip to content

Commit 5dc5730

Browse files
authored
add session_id to artifact intent (#110)
1 parent 7f60f34 commit 5dc5730

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

  • src/bitdrift_public/protobuf/client/v1

src/bitdrift_public/protobuf/client/v1/api.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,10 @@ message UploadArtifactIntentRequest {
268268

269269
// The timestamp associated with the artifact being uploaded. This allows us to possibly reject the upload of very old artifacts.
270270
google.protobuf.Timestamp time = 5 [(validate.rules).message = {required: true}];
271+
272+
// The session ID associated with the artifact. This allows correlating the intent with a specific user session.
273+
// This may not be set for all kinds of artifacts, such as state snapshots.
274+
optional string session_id = 7;
271275
}
272276

273277
message UploadArtifactIntentResponse {

0 commit comments

Comments
 (0)