-
Notifications
You must be signed in to change notification settings - Fork 0
Alias and Display #154
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
Merged
Merged
Alias and Display #154
Changes from 5 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
adf5634
feat: added alias and displayName for data-types
raphael-goetz 3a9e322
dependencies: updated tucana to 0.0.41
raphael-goetz 7441e3c
feat: added alias and displayMessage for FlowType
raphael-goetz 3e518df
feat: added alias and displayMessage for every function
raphael-goetz a10eead
ref: renamed all references of array to list
raphael-goetz 10f170c
ref: removed typos
raphael-goetz e4a391c
Update definitions/standard/data_type/type/text_encoding.proto.json
raphael-goetz bc95085
Update definitions/standard/runtime_definition/array/std_array_filter…
raphael-goetz fc93aa9
Update definitions/standard/runtime_definition/array/std_array_at.pro…
raphael-goetz fee2788
ref: fixed typos
raphael-goetz c3563ea
ref: removed trailing comma
raphael-goetz 5c3d23c
ref: fixed typos
raphael-goetz 4b97633
fix: requested grammer fixes
raphael-goetz 523b796
fix: requested grammar fixes
raphael-goetz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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
76 changes: 44 additions & 32 deletions
76
definitions/http/data_type/array/http_header_map.proto.json
This file contains hidden or 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 |
|---|---|---|
| @@ -1,33 +1,45 @@ | ||
| { | ||
| "variant": "ARRAY", | ||
| "identifier": "HTTP_HEADER_MAP", | ||
| "name": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "HTTP Headers" | ||
| } | ||
| ], | ||
| "rules": [ | ||
| { | ||
| "parentType": { | ||
| "parentType": { | ||
| "genericType": { | ||
| "dataTypeIdentifier": "ARRAY", | ||
| "genericMappers": [ | ||
| { | ||
| "source": [ | ||
| { | ||
| "dataTypeIdentifier": "HTTP_HEADER_ENTRY" | ||
| } | ||
| ], | ||
| "target": "T", | ||
| "genericCombinations": [] | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| } | ||
| } | ||
| ], | ||
| "genericKeys": [] | ||
| } | ||
| "variant": "ARRAY", | ||
| "identifier": "HTTP_HEADER_MAP", | ||
| "name": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "HTTP Headers" | ||
| } | ||
| ], | ||
| "alias": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "http;headers" | ||
| } | ||
| ], | ||
| "displayMessage": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "HTTP Headers" | ||
| } | ||
| ], | ||
| "rules": [ | ||
| { | ||
| "parentType": { | ||
| "parentType": { | ||
| "genericType": { | ||
| "dataTypeIdentifier": "LIST", | ||
| "genericMappers": [ | ||
| { | ||
| "source": [ | ||
| { | ||
| "dataTypeIdentifier": "HTTP_HEADER_ENTRY" | ||
| } | ||
| ], | ||
| "target": "T", | ||
| "genericCombinations": [] | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| } | ||
| } | ||
| ], | ||
| "genericKeys": [] | ||
| } |
This file contains hidden or 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
82 changes: 47 additions & 35 deletions
82
definitions/http/data_type/object/http_header_entry.proto.json
This file contains hidden or 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 |
|---|---|---|
| @@ -1,36 +1,48 @@ | ||
| { | ||
| "variant": "OBJECT", | ||
| "identifier": "HTTP_HEADER_ENTRY", | ||
| "name": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "HTTP Header Entry" | ||
| } | ||
| ], | ||
| "rules": [ | ||
| { | ||
| "containsKey": { | ||
| "key": "key", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "TEXT" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "containsKey": { | ||
| "key": "value", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "TEXT" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "parentType": { | ||
| "parentType": { | ||
| "dataTypeIdentifier": "OBJECT" | ||
| } | ||
| } | ||
| } | ||
| ], | ||
| "genericKeys": [] | ||
| } | ||
| "variant": "OBJECT", | ||
| "identifier": "HTTP_HEADER_ENTRY", | ||
| "name": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "HTTP Header Entry" | ||
| } | ||
| ], | ||
| "alias": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "http;header;entry" | ||
| } | ||
| ], | ||
| "displayMessage": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "HTTP Header Entry" | ||
| } | ||
| ], | ||
| "rules": [ | ||
| { | ||
| "containsKey": { | ||
| "key": "key", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "TEXT" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "containsKey": { | ||
| "key": "value", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "TEXT" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "parentType": { | ||
| "parentType": { | ||
| "dataTypeIdentifier": "OBJECT" | ||
| } | ||
| } | ||
| } | ||
| ], | ||
| "genericKeys": [] | ||
| } |
114 changes: 63 additions & 51 deletions
114
definitions/http/data_type/object/http_request.proto.json
This file contains hidden or 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 |
|---|---|---|
| @@ -1,52 +1,64 @@ | ||
| { | ||
| "variant": "OBJECT", | ||
| "identifier": "HTTP_REQUEST", | ||
| "name": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "HTTP Request" | ||
| } | ||
| ], | ||
| "rules": [ | ||
| { | ||
| "containsKey": { | ||
| "key": "method", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "HTTP_METHOD" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "containsKey": { | ||
| "key": "url", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "HTTP_URL" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "containsKey": { | ||
| "key": "body", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "OBJECT" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "containsKey": { | ||
| "key": "headers", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "HTTP_HEADER_MAP" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "parentType": { | ||
| "parentType": { | ||
| "dataTypeIdentifier": "OBJECT" | ||
| } | ||
| } | ||
| } | ||
| ], | ||
| "genericKeys": [] | ||
| } | ||
| "variant": "OBJECT", | ||
| "identifier": "HTTP_REQUEST", | ||
| "name": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "HTTP Request" | ||
| } | ||
| ], | ||
| "alias": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "http;request" | ||
| } | ||
| ], | ||
| "displayMessage": [ | ||
| { | ||
| "code": "en-US", | ||
| "content": "HTTP Request" | ||
| } | ||
| ], | ||
| "rules": [ | ||
| { | ||
| "containsKey": { | ||
| "key": "method", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "HTTP_METHOD" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "containsKey": { | ||
| "key": "url", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "HTTP_URL" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "containsKey": { | ||
| "key": "body", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "OBJECT" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "containsKey": { | ||
| "key": "headers", | ||
| "dataTypeIdentifier": { | ||
| "dataTypeIdentifier": "HTTP_HEADER_MAP" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "parentType": { | ||
| "parentType": { | ||
| "dataTypeIdentifier": "OBJECT" | ||
| } | ||
| } | ||
| } | ||
| ], | ||
| "genericKeys": [] | ||
| } |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.