forked from open-telemetry/opentelemetry-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[protobuf] - encode zipcode as a string (open-telemetry#587)
* encode zipcode as a string * encode zipcode as a string * encode zipcode as a string * add zip_code attribute * update zipCode to string type * update zipCode to string type * add address to shipping api call * add address to shipping api call * zipcode as string
- Loading branch information
Showing
13 changed files
with
51 additions
and
38 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
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 |
---|---|---|
|
@@ -50,7 +50,7 @@ | |
"email": "[email protected]", | ||
"address": { | ||
"streetAddress": "1600 Amphitheatre Parkway", | ||
"zipCode": 94043, | ||
"zipCode": "94043", | ||
"city": "Mountain View", | ||
"state": "CA", | ||
"country": "United States", | ||
|
@@ -67,7 +67,7 @@ | |
"email": "[email protected]", | ||
"address": { | ||
"streetAddress": "One Microsoft Way", | ||
"zipCode": 98052, | ||
"zipCode": "98052", | ||
"city": "Redmond", | ||
"state": "WA", | ||
"country": "United States", | ||
|
@@ -84,7 +84,7 @@ | |
"email": "[email protected]", | ||
"address": { | ||
"streetAddress": "One Apple Park Way", | ||
"zipCode": 95014, | ||
"zipCode": "95014", | ||
"city": "Cupertino", | ||
"state": "CA", | ||
"country": "United States", | ||
|
@@ -101,7 +101,7 @@ | |
"email": "[email protected]", | ||
"address": { | ||
"streetAddress": "1 Hacker Way", | ||
"zipCode": 94025, | ||
"zipCode": "94025", | ||
"city": "Menlo Park", | ||
"state": "CA", | ||
"country": "United States", | ||
|
@@ -118,7 +118,7 @@ | |
"email": "[email protected]", | ||
"address": { | ||
"streetAddress": "410 Terry Ave N", | ||
"zipCode": 98109, | ||
"zipCode": "98109", | ||
"city": "Seattle", | ||
"state": "WA", | ||
"country": "United States", | ||
|
@@ -135,7 +135,7 @@ | |
"email": "[email protected]", | ||
"address": { | ||
"streetAddress": "100 Winchester Circle", | ||
"zipCode": 95032, | ||
"zipCode": "95032", | ||
"city": "Los Gatos", | ||
"state": "CA", | ||
"country": "United States", | ||
|
@@ -152,7 +152,7 @@ | |
"email": "[email protected]", | ||
"address": { | ||
"streetAddress": "150 Elgin St", | ||
"zipCode": 214, | ||
"zipCode": "K2P1L4", | ||
"city": "Ottawa", | ||
"state": "ON", | ||
"country": "Canada", | ||
|
@@ -169,7 +169,7 @@ | |
"email": "[email protected]", | ||
"address": { | ||
"streetAddress": "1355 Market St", | ||
"zipCode": 94103, | ||
"zipCode": "94103", | ||
"city": "San Francisco", | ||
"state": "CA", | ||
"country": "United States", | ||
|
@@ -186,7 +186,7 @@ | |
"email": "[email protected]", | ||
"address": { | ||
"streetAddress": "2200 Mission College Blvd", | ||
"zipCode": 95054, | ||
"zipCode": "95054", | ||
"city": "Santa Clara", | ||
"state": "CA", | ||
"country": "United States", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
"city": "Seattle", | ||
"state": "Washington", | ||
"country": "United States", | ||
"zipCode": 98109 | ||
"zipCode": "98109" | ||
}, | ||
"email": "[email protected]", | ||
"creditCard": { | ||
|
@@ -50,7 +50,7 @@ | |
"city": "Mountain View", | ||
"state": "California", | ||
"country": "United States", | ||
"zipCode": 94043 | ||
"zipCode": "94043" | ||
}, | ||
"items": [ | ||
{ | ||
|
@@ -90,7 +90,7 @@ | |
"city": "Redmond", | ||
"state": "Washington", | ||
"country": "United States", | ||
"zipCode": 98052 | ||
"zipCode": "98052" | ||
}, | ||
"items": [ | ||
{ | ||
|