From eecbab167f79a7bbda5c010eac7ca0e1bac792b4 Mon Sep 17 00:00:00 2001 From: Stefano Scafiti Date: Tue, 11 Nov 2025 12:36:42 +0100 Subject: [PATCH] Add timestamp to DownloadPermissionSetsResponse --- authzed/api/materialize/v0/watchpermissionsets.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/authzed/api/materialize/v0/watchpermissionsets.proto b/authzed/api/materialize/v0/watchpermissionsets.proto index b13527c..41e2e59 100644 --- a/authzed/api/materialize/v0/watchpermissionsets.proto +++ b/authzed/api/materialize/v0/watchpermissionsets.proto @@ -2,6 +2,7 @@ syntax = "proto3"; package authzed.api.materialize.v0; import "authzed/api/v1/core.proto"; +import "google/protobuf/timestamp.proto"; option go_package = "github.com/authzed/authzed-go/proto/authzed/api/materialize/v0"; option java_multiple_files = true; @@ -209,4 +210,7 @@ message File { message DownloadPermissionSetsResponse { // files contains the list of downloadable files with their URLs repeated File files = 1; + + // timestamp represents the time associated with the returned data revision. + google.protobuf.Timestamp timestamp = 2; }