File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -402,10 +402,14 @@ message CreateSubAgentRequest {
402
402
TAB = 1 ;
403
403
}
404
404
405
- enum Share {
406
- OWNER = 0 ;
407
- AUTHENTICATED = 1 ;
408
- PUBLIC = 2 ;
405
+
406
+
407
+ enum SharingLevel {
408
+ SHARING_LEVEL_UNSPECIFIED = 0 ;
409
+ OWNER = 1 ;
410
+ AUTHENTICATED = 2 ;
411
+ PUBLIC = 3 ;
412
+ ORGANIZATION = 4 ;
409
413
}
410
414
411
415
string slug = 1 ;
@@ -418,7 +422,7 @@ message CreateSubAgentRequest {
418
422
optional string icon = 8 ;
419
423
optional OpenIn open_in = 9 ;
420
424
optional int32 order = 10 ;
421
- optional Share share = 11 ;
425
+ optional SharingLevel share = 11 ;
422
426
optional bool subdomain = 12 ;
423
427
optional string url = 13 ;
424
428
}
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ import (
55
55
// - Added support for CreateSubAgent RPC on the Agent API.
56
56
// - Added support for DeleteSubAgent RPC on the Agent API.
57
57
// - Added support for ListSubAgents RPC on the Agent API.
58
+ // - Add ORGANIZATION SharingLevel
58
59
const (
59
60
CurrentMajor = 2
60
61
CurrentMinor = 6
You can’t perform that action at this time.
0 commit comments