Skip to content

Commit

Permalink
Merge pull request #145 from authzed/remove-streaming-bulk-check
Browse files Browse the repository at this point in the history
remove streaming bulk check
  • Loading branch information
vroldanbet committed Aug 30, 2023
2 parents 9d18e67 + 9b0a6a7 commit e1e7da6
Show file tree
Hide file tree
Showing 10 changed files with 235 additions and 1,407 deletions.
2 changes: 1 addition & 1 deletion magefiles/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func (g Gen) All() error {
const (
ProtoPath = "proto/authzed/api"
BufRepository = "buf.build/authzed/api"
BufTag = "db5973903229de2db0038f1d641ebcc541dab186"
BufTag = "352257977a8fd299fcc3a4a6fdbdb2311b2e8f22"
)

// Proto runs proto codegen
Expand Down
71 changes: 0 additions & 71 deletions proto/apidocs.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,47 +80,6 @@
]
}
},
"/v1/experimental/permissions/streamingbulkcheckpermission": {
"post": {
"operationId": "ExperimentalService_StreamingBulkCheckPermission",
"responses": {
"200": {
"description": "A successful response.(streaming responses)",
"schema": {
"type": "object",
"properties": {
"result": {
"$ref": "#/definitions/v1StreamingBulkCheckPermissionResponse"
},
"error": {
"$ref": "#/definitions/rpcStatus"
}
},
"title": "Stream result of v1StreamingBulkCheckPermissionResponse"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/rpcStatus"
}
}
},
"parameters": [
{
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/v1StreamingBulkCheckPermissionRequest"
}
}
],
"tags": [
"ExperimentalService"
]
}
},
"/v1/experimental/relationships/bulkexport": {
"post": {
"summary": "BulkExportRelationships is the fastest path available to exporting\nrelationships from the server. It is resumable, and will return results\nin an order determined by the server.",
Expand Down Expand Up @@ -1657,36 +1616,6 @@
},
"description": "ResolvedSubject is a single subject resolved within LookupSubjects."
},
"v1StreamingBulkCheckPermissionRequest": {
"type": "object",
"properties": {
"consistency": {
"$ref": "#/definitions/v1Consistency"
},
"items": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/v1BulkCheckPermissionRequestItem"
}
}
}
},
"v1StreamingBulkCheckPermissionResponse": {
"type": "object",
"properties": {
"checkedAt": {
"$ref": "#/definitions/v1ZedToken"
},
"pairs": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/v1BulkCheckPermissionPair"
}
}
}
},
"v1SubjectFilter": {
"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion proto/authzed/api/v0/zz_generated.version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package v0

const (
BufRepository = "buf.build/authzed/api"
BufTag = "db5973903229de2db0038f1d641ebcc541dab186"
BufTag = "352257977a8fd299fcc3a4a6fdbdb2311b2e8f22"
)

0 comments on commit e1e7da6

Please sign in to comment.