-
Notifications
You must be signed in to change notification settings - Fork 12
feat(data-fabric): add folderKey support to entities.getAll and ChoiceSets surface #504
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 all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
899502d
feat(data-fabric): add folderKey support to entities.getAll and Choic…
AditiGoyalUipath dd49734
fix: address review comments — JSDoc sync, single afterAll, folderKey…
AditiGoyalUipath 1c01d28
feat(data-fabric): cross-folder reference support + folder-scoped int…
AditiGoyalUipath 831553f
revert: roll tests/.env.integration.example back to template
AditiGoyalUipath fc04d3e
ci: add DATA_FABRIC_TEST_FOLDER_ENTITY_ID to integration test config
Sarath1018 e6ee264
refactor(data-fabric): extract ChoiceSet entityType/Id to module-leve…
AditiGoyalUipath a3f83ae
feat(data-fabric): add includeAllFolders option to entities.getAll (#…
amrit-agarwal-1 321987e
refactor(data-fabric): rename includeAllFolders to includeAllScopes o…
AditiGoyalUipath 19093c2
docs(data-fabric): inline tenant folder UUID literal in referenceFold…
AditiGoyalUipath 5e605fb
feat(data-fabric): add includeFolderChoiceSets opt-in + address Sarat…
AditiGoyalUipath 2f13c3a
refactor(data-fabric): rename entities.getAll option includeAllScopes…
AditiGoyalUipath c92063a
test(data-fabric): skip includeFolderEntities CI test that requires O…
AditiGoyalUipath 2c33c16
test(data-fabric): re-enable includeFolderEntities integration test
AditiGoyalUipath f5b277e
fix(data-fabric): address SonarCloud issues on PR #504
AditiGoyalUipath 1e6f6ab
docs(data-fabric): mark folder scope as experimental across Entities
AditiGoyalUipath bdf6e98
docs(data-fabric): clarify choicesets.getAll JSDoc per PR review
AditiGoyalUipath 9e77c91
docs(data-fabric): apply same JSDoc clarifications to entities.getAll
AditiGoyalUipath 4ca6879
docs(data-fabric): add @experimental tag to folderKey-bearing methods
AditiGoyalUipath c6aa0d5
docs(data-fabric): drop OR.Users OAuth scope mentions from JSDoc
AditiGoyalUipath 1bffc19
docs(data-fabric): scope experimental marker to folderKey argument only
AditiGoyalUipath 5aba6cc
docs(data-fabric): drop OR.Users folder-scope blockquotes from oauth-…
AditiGoyalUipath ef5bf97
docs(data-fabric): address PR review comments
AditiGoyalUipath bae2fba
chore(data-fabric): tighten ReferenceEntityPayload.entityType + scrub…
AditiGoyalUipath 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
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
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,18 @@ | ||
| /** | ||
| * Shared types for the Data Fabric domain — used by both Entities and ChoiceSets. | ||
| * Lives here (not in either service's `*.types.ts`) to avoid cross-domain coupling | ||
| * between sibling services. | ||
| */ | ||
|
|
||
| /** | ||
| * Common shape for every folder-scoped Data Fabric operation. | ||
| * Forwarded on the wire as the `X-UIPATH-FolderKey` header. | ||
| */ | ||
| export interface EntityFolderScopedOptions { | ||
| /** | ||
| * Key identifying the folder the entity belongs to. Omit for tenant-level entities. | ||
| * | ||
| * @experimental Folder-scoped Data Fabric is in preview — the contract may change. | ||
| */ | ||
| folderKey?: string; | ||
| } |
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.
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.