-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into lalvoeiro/do-merge
* main: chore(release): 1.168.0 [skip ci] feat: allow `$type` to be optional (#1013) chore(release): 1.167.9 [skip ci] fix: typescript errors for struct with optional=all (#1008)
- Loading branch information
Showing
35 changed files
with
1,531 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
outputTypeAnnotations=optional |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Adding a comment to the syntax will become the first | ||
// comment in the output source file. | ||
syntax = "proto3"; | ||
|
||
package simple; | ||
|
||
// This comment is separated by a blank non-comment line, and will detach from | ||
// the following comment on the message Simple. | ||
|
||
/** Example comment on the Simple message */ | ||
message Simple { | ||
// Name field | ||
string name = 1 [deprecated = true]; | ||
/** Age field */ | ||
int32 age = 2 [deprecated = true]; | ||
Child child = 3 [deprecated = true]; // This comment will also attach; | ||
string test_field = 4 [deprecated = true]; | ||
string test_not_deprecated = 5 [deprecated = false]; | ||
} | ||
|
||
message Child { | ||
string name = 1; | ||
} |
Oops, something went wrong.