@@ -67,7 +67,7 @@ service ExperimentalService {
67
67
}
68
68
69
69
// EXPERIMENTAL: ComputablePermissions is an API that allows clients to request the set of
70
- // permissions that compute based off a set of relations . For example, if a schema has a relation
70
+ // permissions that compute based off a relation . For example, if a schema has a relation
71
71
// `viewer` and a permission `view` defined as `permission view = viewer + editor`, then the
72
72
// computable permissions for the relation `viewer` will include `view`.
73
73
rpc ExperimentalComputablePermissions (ExperimentalComputablePermissionsRequest )
@@ -79,8 +79,8 @@ service ExperimentalService {
79
79
}
80
80
81
81
// EXPERIMENTAL: DependentRelations is an API that allows clients to request the set of
82
- // relations that used to compute a permission, recursively. It is the inverse of the
83
- // ComputablePermissions API.
82
+ // relations and permissions that used to compute a permission, recursively. It is the
83
+ // inverse of the ComputablePermissions API.
84
84
rpc ExperimentalDependentRelations (ExperimentalDependentRelationsRequest )
85
85
returns (ExperimentalDependentRelationsResponse ) {
86
86
option (google.api.http ) = {
@@ -296,36 +296,33 @@ message ExpPermission {
296
296
297
297
message ExperimentalComputablePermissionsRequest {
298
298
Consistency consistency = 1 ;
299
- repeated ExpRelationReference relations = 2 ;
299
+ string definition_name = 2 ;
300
+ string relation_name = 3 ;
300
301
301
302
// optional_definition_name_match is a prefix that is matched against the definition name(s)
302
303
// for the permissions returned.
303
304
// If not specified, will be ignored.
304
- string optional_definition_name_filter = 3 ;
305
+ string optional_definition_name_filter = 4 ;
305
306
}
306
307
307
- // ExpRelationReference is a reference to a relation in the schema.
308
+ // ExpRelationReference is a reference to a relation or permission in the schema.
308
309
message ExpRelationReference {
309
310
string definition_name = 1 ;
310
311
string relation_name = 2 ;
311
- }
312
-
313
- // ExpPermissionReference is a reference to a permission in the schema.
314
- message ExpPermissionReference {
315
- string definition_name = 1 ;
316
- string permission_name = 2 ;
312
+ bool is_permission = 3 ;
317
313
}
318
314
319
315
message ExperimentalComputablePermissionsResponse {
320
- repeated ExpPermissionReference permissions = 1 ;
316
+ repeated ExpRelationReference permissions = 1 ;
321
317
322
318
// read_at is the ZedToken at which the schema was read.
323
319
ZedToken read_at = 2 ;
324
320
}
325
321
326
322
message ExperimentalDependentRelationsRequest {
327
323
Consistency consistency = 1 ;
328
- ExpPermissionReference permission = 2 ;
324
+ string definition_name = 2 ;
325
+ string permission_name = 3 ;
329
326
}
330
327
331
328
message ExperimentalDependentRelationsResponse {
0 commit comments