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

@W-17405592 - DataCloud Events in PWA #2229

Open
wants to merge 16 commits into
base: feature/datacloud-events
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1,669 changes: 1,259 additions & 410 deletions package-lock.json

Large diffs are not rendered by default.

1,035 changes: 685 additions & 350 deletions packages/commerce-sdk-react/package-lock.json

Large diffs are not rendered by default.

4,820 changes: 2,033 additions & 2,787 deletions packages/internal-lib-build/package-lock.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ module.exports = {
// By setting this to true, the Einstein activities generated by the environment will appear
// in production environment reports
isProduction: false
},
// Datacloud api config
dataCloudAPI: {
appSourceId: '',
tenantId: '',
}
},
// This list contains server-side only libraries that you don't want to be compiled by webpack
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ const {handler} = runtime.createHandler(options, (app) => {
],
'connect-src': [
// Connect to Einstein APIs
'api.cquotient.com'
'api.cquotient.com',
'*.c360a.salesforce.com'
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ const {handler} = runtime.createHandler(options, (app) => {
],
'connect-src': [
// Connect to Einstein APIs
'api.cquotient.com'
'api.cquotient.com',
'*.c360a.salesforce.com'
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ module.exports = {
// By setting this to true, the Einstein activities generated by the environment will appear
// in production environment reports
isProduction: false
},
// Datacloud api config
dataCloudAPI: {
appSourceId: '',
tenantId: '',
}
},
// This list contains server-side only libraries that you don't want to be compiled by webpack
Expand Down
Loading
Loading