-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2735868
commit b38c24d
Showing
24 changed files
with
2,343 additions
and
741 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
syntax = "proto3"; | ||
|
||
import "whisk/api/shared/v1/custom.proto"; | ||
|
||
enum App { | ||
APP_UNSPECIFIED = 0; | ||
APP_WEB = 1 [ (entry_name) = "web" ]; | ||
APP_ANDROID = 2 [ (entry_name) = "android" ]; | ||
APP_IOS = 3 [ (entry_name) = "ios" ]; | ||
} | ||
|
||
message SendMessage { | ||
option (event_name) = "Recipe Viewed"; | ||
string id = 1; | ||
} |
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,11 @@ | ||
syntax = "proto3"; | ||
|
||
import "google/protobuf/descriptor.proto"; | ||
|
||
extend google.protobuf.EnumValueOptions { | ||
string entry_name = 50000; | ||
} | ||
|
||
extend google.protobuf.MessageOptions { | ||
string event_name = 50001; | ||
} |
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,6 @@ | ||
syntax = "proto3"; | ||
|
||
message Message { | ||
SendMessage id = 1; | ||
App type = 2; | ||
} |
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,8 @@ | ||
syntax = "proto3"; | ||
|
||
package whisk.local; | ||
|
||
message Message { | ||
SendMessage id = 1; | ||
App type = 2; | ||
} |
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,63 @@ | ||
{ | ||
"syntax": 3, | ||
"imports": [ | ||
"whisk/api/shared/v1/custom.proto" | ||
], | ||
"enums": [ | ||
{ | ||
"name": "App", | ||
"values": { | ||
"APP_UNSPECIFIED": { | ||
"value": 0, | ||
"options": {} | ||
}, | ||
"APP_WEB": { | ||
"value": 1, | ||
"options": { | ||
"entry_name": "web" | ||
} | ||
}, | ||
"APP_ANDROID": { | ||
"value": 2, | ||
"options": { | ||
"entry_name": "android" | ||
} | ||
}, | ||
"APP_IOS": { | ||
"value": 3, | ||
"options": { | ||
"entry_name": "ios" | ||
} | ||
} | ||
}, | ||
"options": {} | ||
} | ||
], | ||
"messages": [ | ||
{ | ||
"name": "SendMessage", | ||
"enums": [], | ||
"options": { | ||
"event_name": "Recipe Viewed" | ||
}, | ||
"messages": [], | ||
"fields": [ | ||
{ | ||
"name": "id", | ||
"type": "string", | ||
"tag": 1, | ||
"required": false, | ||
"repeated": false, | ||
"optional": false, | ||
"options": {} | ||
} | ||
], | ||
"extends": [], | ||
"extensions": [], | ||
"reserved": [] | ||
} | ||
], | ||
"options": {}, | ||
"extends": [], | ||
"services": [] | ||
} |
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,58 @@ | ||
{ | ||
"syntax": 3, | ||
"imports": [ | ||
"google/protobuf/descriptor.proto" | ||
], | ||
"enums": [], | ||
"messages": [], | ||
"options": {}, | ||
"extends": [ | ||
{ | ||
"name": "google.protobuf.EnumValueOptions", | ||
"message": { | ||
"name": "google.protobuf.EnumValueOptions", | ||
"enums": [], | ||
"options": {}, | ||
"messages": [], | ||
"fields": [ | ||
{ | ||
"name": "entry_name", | ||
"type": "string", | ||
"tag": 50000, | ||
"required": false, | ||
"repeated": false, | ||
"optional": false, | ||
"options": {} | ||
} | ||
], | ||
"extends": [], | ||
"extensions": [], | ||
"reserved": [] | ||
} | ||
}, | ||
{ | ||
"name": "google.protobuf.MessageOptions", | ||
"message": { | ||
"name": "google.protobuf.MessageOptions", | ||
"enums": [], | ||
"options": {}, | ||
"messages": [], | ||
"fields": [ | ||
{ | ||
"name": "event_name", | ||
"type": "string", | ||
"tag": 50001, | ||
"required": false, | ||
"repeated": false, | ||
"optional": false, | ||
"options": {} | ||
} | ||
], | ||
"extends": [], | ||
"extensions": [], | ||
"reserved": [] | ||
} | ||
} | ||
], | ||
"services": [] | ||
} |
Oops, something went wrong.