NOTE: BulkCheckPermission has been promoted to the stable API as "CheckBulkPermission" and the API will be removed from experimental in a future release.
This MR exports pieces of the new stable API at the top level of this package, allowing cleaner access via
from authzed.api.v1 import CheckBulkPermissionsRequest, WriteRelationshipsRequest
rather than
from authzed.api.v1.permission_service_pb2 import CheckBulkPermissionsRequest
from authzed.api.v1 import WriteRelationshipsRequest
The experimental BulkCheckPermission has been deprecated, with this message shown in the gRPC docs:
This MR exports pieces of the new stable API at the top level of this package, allowing cleaner access via
rather than