-
Notifications
You must be signed in to change notification settings - Fork 30
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
Tdl 12262 add ticket fields stream #52
Open
prijendev
wants to merge
13
commits into
TDL-20356-update-function-based-to-class-based
Choose a base branch
from
TDL-12262-add-ticket_fields-stream
base: TDL-20356-update-function-based-to-class-based
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
8cb74e1
Added `ticket_fields` stream.
prijendev 0e60569
Merge branch 'TDL-20356-update-function-based-to-class-based' into TD…
prijendev 7941d05
Merge branch 'TDL-20356-update-function-based-to-class-based' into TD…
prijendev 4d9da2f
Merge branch 'TDL-20356-update-function-based-to-class-based' into TD…
prijendev efa6da6
Updated tap-tester test cases.
prijendev a371559
Updated pagination test.
prijendev 4c47ce5
Updated pagination test case.
prijendev 8d802e8
Merge branch 'TDL-20356-update-function-based-to-class-based' into TD…
prijendev 097ae83
Merge branch 'TDL-20356-update-function-based-to-class-based' into TD…
prijendev 8077833
Updated ReadME.md
prijendev d484fc9
Updated pagination test for ticket_fields stream.
prijendev c670ff1
Updated package_data to include all schemas in setup.py
prijendev 5ba0889
Enhanced tap tester test cases.
prijendev 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
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,79 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"default": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"description": { | ||
"type": ["null", "string"] | ||
}, | ||
"label": { | ||
"type": ["null", "string"] | ||
}, | ||
"name": { | ||
"type": ["null", "string"] | ||
}, | ||
"position": { | ||
"type": ["null", "integer"] | ||
}, | ||
"required_for_closure": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"type": { | ||
"type": ["null", "string"] | ||
}, | ||
"required_for_agents": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"required_for_customers": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"label_for_customers": { | ||
"type": ["null", "string"] | ||
}, | ||
"customers_can_edit": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"displayed_to_customers": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"portal_cc": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"portal_cc_to": { | ||
"type": ["null", "string"] | ||
}, | ||
"choices": {}, | ||
"is_fsm": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"field_update_in_progress": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"dependent_fields": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": ["null", "object"], | ||
"properties": {} | ||
} | ||
}, | ||
"section_mappings": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": ["null", "object"], | ||
"properties": {} | ||
} | ||
}, | ||
"created_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"updated_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
} | ||
} | ||
} |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the type is not mentioned for
choices
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As per the Freshdesk API documentation,
choices
is the list of values. But, in the actual response, we observed different types of values including alist of strings
,plain object(dict),
anobject of the list
, etc. That's why due to uncertainty in the value of this field, we kept{}
as datatype and generally we keep{}
in such cases.