Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: prefix and suffixes were not being applied to to/fromTimestamp resulting in compile error #1118

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions integration/affixes/affixes.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
syntax = "proto3";
import "google/protobuf/wrappers.proto";
import "google/protobuf/timestamp.proto";

package affixes;

Expand All @@ -15,3 +17,8 @@ enum AwesomeEnum {

service AwesomeService {
}

message Google {
google.protobuf.UInt64Value guint64 = 13;
google.protobuf.Timestamp timestamp = 14;
}
109 changes: 109 additions & 0 deletions integration/affixes/affixes.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

226 changes: 226 additions & 0 deletions integration/suffix-type/google/protobuf/timestamp.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions integration/suffix-type/parameters.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
typeSuffix=GRPCS,typePrefix=GRPCP
Loading
Loading