Skip to content

Commit

Permalink
Fix type in audienceManager solution name
Browse files Browse the repository at this point in the history
  • Loading branch information
jfkhoury committed May 13, 2024
1 parent f617d96 commit 3eb3702
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/helpers/createExtensionManifest.mjs
Expand Up @@ -1043,7 +1043,7 @@ const createExtensionManifest = ({ version }) => {
type: "array",
minItems: 1,
items: {
enum: ["analytics", "target", "audienceManager"]
enum: ["analytics", "target", "audiencemanager"]
},
required: ["name"],
additionalProperties: false
Expand Down
2 changes: 1 addition & 1 deletion src/view/constants/solutions.js
Expand Up @@ -16,4 +16,4 @@ governing permissions and limitations under the License.
*/
export const ADOBE_ANALYTICS = "analytics";
export const ADOBE_TARGET = "target";
export const ADOBE_AUDIENCE_MANAGER = "audienceManager";
export const ADOBE_AUDIENCE_MANAGER = "audiencemanager";
2 changes: 1 addition & 1 deletion test/functional/helpers/endpointMocks/dataElementMocks.js
Expand Up @@ -58,7 +58,7 @@ const testSolutionsVariable1 = {
delegate_descriptor_id: "adobe-alloy::dataElements::variable",
settings: JSON.stringify({
cacheId: "7b2c068c-6c4c-44bd-b9ad-35a15b7c1959",
solutions: ["analytics", "target", "audienceManager"]
solutions: ["analytics", "target", "audiencemanager"]
})
}
};
Expand Down
2 changes: 1 addition & 1 deletion test/functional/helpers/endpointMocks/dataElementsMocks.js
Expand Up @@ -136,7 +136,7 @@ const testSolutionsVariable1 = {
delegate_descriptor_id: "adobe-alloy::dataElements::variable",
settings: JSON.stringify({
cacheId: "7b2c068c-6c4c-44bd-b9ad-35a15b7c1959",
solutions: ["analytics", "target", "audienceManager"]
solutions: ["analytics", "target", "audiencemanager"]
})
}
};
Expand Down

0 comments on commit 3eb3702

Please sign in to comment.