updated api spec to support permission mode and access grans (#432)

This commit is contained in:
Michael Quigley
2024-03-04 11:59:32 -05:00
parent 1e73f185d8
commit dce32b58d2
5 changed files with 147 additions and 1 deletions

View File

@ -1562,6 +1562,12 @@ func init() {
"shareRequest": {
"type": "object",
"properties": {
"accessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"authScheme": {
"type": "string"
},
@ -1611,6 +1617,13 @@ func init() {
"google"
]
},
"permissionMode": {
"type": "string",
"enum": [
"open",
"closed"
]
},
"reserved": {
"type": "boolean"
},
@ -3289,6 +3302,12 @@ func init() {
"shareRequest": {
"type": "object",
"properties": {
"accessGrants": {
"type": "array",
"items": {
"type": "string"
}
},
"authScheme": {
"type": "string"
},
@ -3338,6 +3357,13 @@ func init() {
"google"
]
},
"permissionMode": {
"type": "string",
"enum": [
"open",
"closed"
]
},
"reserved": {
"type": "boolean"
},