Skip to content
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

fix: sharepoint resolve path twice #348

Closed
wants to merge 31 commits into from
Closed
Show file tree
Hide file tree
Changes from 30 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
317ca32
feat: add rum api calls to shared
alinarublea Dec 13, 2023
2ce1404
feat: merge main changes
alinarublea Jan 22, 2024
5c2390e
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Jan 24, 2024
641f735
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Jan 24, 2024
c9fc3d1
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Jan 29, 2024
f007a5f
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Jan 29, 2024
f09c2f6
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Jan 30, 2024
966d79d
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Feb 6, 2024
6136548
chore: merge main
alinarublea Feb 12, 2024
d7918e3
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Feb 13, 2024
78baaae
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Feb 26, 2024
cac54f9
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Feb 26, 2024
3a34590
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Feb 27, 2024
6073613
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Feb 27, 2024
ad0bb8b
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Feb 28, 2024
81204ae
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Mar 1, 2024
2594513
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Mar 1, 2024
f81d056
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Mar 19, 2024
5354fc8
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Apr 23, 2024
aaae74c
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea May 30, 2024
305a0a0
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Jun 21, 2024
4eb43c3
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Jul 9, 2024
835366c
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Jul 15, 2024
f68704f
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Jul 22, 2024
8371649
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Jul 22, 2024
a1dac87
fix: naming
alinarublea Jul 24, 2024
39f0a8d
Merge branch 'main' of github.com:adobe/spacecat-shared
alinarublea Aug 28, 2024
08586db
fix: docs and migration script
alinarublea Aug 28, 2024
6bcbbbe
fix: docs and migration script
alinarublea Aug 29, 2024
2308c79
fix: docs and migration script
alinarublea Aug 29, 2024
0b5d073
feat: redirects to content client
alinarublea Sep 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/spacecat-shared-content-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"dependencies": {
"@adobe/helix-universal": "5.0.5",
"@adobe/spacecat-helix-content-sdk": "1.1.2",
"@adobe/spacecat-helix-content-sdk": "1.1.3",
"@adobe/spacecat-shared-utils": "1.19.6"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export default class ContentClient {
this.log.info(`Updating page metadata for ${this.site.getId()} and path ${path}`);

const docPath = this.#resolveDocPath(path);
const originalMetadata = await this.getPageMetadata(docPath);
const originalMetadata = await this.getPageMetadata(path);

let mergedMetadata;
if (overwrite) {
Expand Down
Loading