-
Notifications
You must be signed in to change notification settings - Fork 188
Salesforce and Google Drive mappings #3613
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
Changes from 4 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
9f4fe92
Added initial baseline mappings for Salesforce and GDrive
mattnowzari 3ed9c41
Cleaned up and added some metadata to Salesforce mapping
mattnowzari 0279ed2
Added another semantic_text field
mattnowzari d46261a
Update NOTICE.txt
elasticmachine b3f2652
Shortened meta field that exceeded 50 chars
mattnowzari e81e814
Merge branch 'main' into workchat_tangibles
mattnowzari b3e348e
Temporarily reverting Feeds.Body and Feeds.CommentBody back to text
mattnowzari baf38bf
Improvements and cleanup, still WIP
mattnowzari 0cbbae3
Improvements to mapping + ingest pipelines
mattnowzari f50f7f1
Added a base pipeline definition, for updating a connector's pipeline
mattnowzari 0b0c48f
undo change to NOTICE.txt
mattnowzari 50236d4
Update NOTICE.txt
elasticmachine 733f14c
Merge branch 'main' into workchat_tangibles
mattnowzari 24fb67a
Fixed indent in gdrive mapping + added more detail to the Salesforce …
mattnowzari 4464e74
Remove .python-version from PR
mattnowzari 9a72984
Update NOTICE.txt
elasticmachine d36342d
Fixed base.json
mattnowzari 5acde3a
Fixed gdrive pipeline
mattnowzari 3f85c67
add ignore_missing to Salesforce pipeline
mattnowzari 7419b7b
remove base.json, as we don't actually need to update a connector's p…
mattnowzari 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 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
3.11.11 | ||
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
mattnowzari marked this conversation as resolved.
Show resolved
Hide resolved
|
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 |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
mattnowzari marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"mappings": { | ||
"_meta": { | ||
"briefing": "This index contains data from Google Drive." | ||
}, | ||
"properties": { | ||
"_timestamp": { | ||
"type": "date" | ||
}, | ||
"body": { | ||
"type": "semantic_text", | ||
"meta": { | ||
"description": "This is the main content of the document." | ||
} | ||
}, | ||
"created_at": { | ||
"type": "date" | ||
}, | ||
"file_extension": { | ||
"type": "keyword" | ||
}, | ||
"id": { | ||
"type": "keyword" | ||
}, | ||
"last_updated": { | ||
"type": "date" | ||
}, | ||
"mime_type": { | ||
"type": "keyword" | ||
}, | ||
"name": { | ||
mattnowzari marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"type": "text", | ||
"meta": { | ||
"description": "This is the name of a document." | ||
mattnowzari marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
} | ||
}, | ||
"path": { | ||
"fields": { | ||
"keyword": { | ||
"ignore_above": 256, | ||
"type": "keyword" | ||
} | ||
}, | ||
"type": "text", | ||
"meta": { | ||
"description": "This is the Google Drive path of the document." | ||
} | ||
}, | ||
"shared_drive": { | ||
"fields": { | ||
"keyword": { | ||
"ignore_above": 256, | ||
"type": "keyword" | ||
} | ||
}, | ||
"type": "text", | ||
"meta": { | ||
"description": "A document with this field is from a shared drive" | ||
mattnowzari marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
} | ||
}, | ||
"size": { | ||
"type": "text" | ||
}, | ||
"trashed": { | ||
"type": "boolean" | ||
}, | ||
"type": { | ||
"fields": { | ||
"keyword": { | ||
"ignore_above": 256, | ||
"type": "keyword" | ||
} | ||
}, | ||
"type": "text" | ||
}, | ||
"url": { | ||
"type": "text" | ||
} | ||
} | ||
} | ||
} |
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.