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

Extracted Media event types from the event types suggested to be used in sendEvent action #381

Merged
merged 3 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 12 additions & 24 deletions src/view/actions/constants/eventTypes.js
@@ -1,3 +1,15 @@
/*
Copyright 2023 Adobe. All rights reserved.
This file is licensed to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
*/

export default {
"advertising.completes": "Advertising Completes",
"advertising.timePlayed": "Advertising Time Played",
Expand Down Expand Up @@ -72,30 +84,6 @@ export default {
"inappmessageTracking.dismiss": "inapp message was dimissed",
"inappmessageTracking.display": "inapp message was displayed",
"inappmessageTracking.interact": "inapp message was interacted with",
"media.ping": "Media ping",
"media.sessionStart": "Media sessionStart",
"media.play": "Media play",
"media.bufferStart": "Media bufferStart",
"media.pauseStart": "Media pauseStart",
"media.chapterStart": "Media chapterStart",
"media.chapterSkip": "Media chapterSkip",
"media.chapterComplete": "Media chapterComplete",
"media.adStart": "Media adStart",
"media.adSkip": "Media adSkip",
"media.adComplete": "Media adComplete",
"media.adBreakStart": "Media adBreakStart",
"media.adBreakComplete": "Media adBreakComplete",
"media.bitrateChange": "Media bitrateChange",
"media.error": "Media error",
"media.sessionComplete": "Media sessionComplete",
"media.sessionEnd": "Media sessionEnd",
"media.statesUpdate": "Media statesUpdate",
"media.downloaded": "Media downloaded content",
"media.reporting.sessionStart": "Media reporting sessionStart",
"media.reporting.sessionClose": "Media reporting sessionClose",
"media.reporting.adStart": "Media reporting adStart",
"media.reporting.adClose": "Media reporting adClose",
"media.reporting.chapterClose": "Media reporting chapterClose",
"location.entry": "Location entry",
"location.exit": "Location exit"
};
31 changes: 31 additions & 0 deletions src/view/actions/constants/mediaEventTypes.js
@@ -0,0 +1,31 @@
/*
Copyright 2023 Adobe. All rights reserved.
This file is licensed to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
*/
export default {
"media.ping": "Ping",
"media.sessionStart": "Session start",
"media.play": "Play",
"media.bufferStart": "Buffer start",
"media.pauseStart": "Pause start",
"media.chapterStart": "Chapter start",
"media.chapterSkip": "Chapter skip",
"media.chapterComplete": "Chapter complete",
"media.adStart": "Ad start",
"media.adSkip": "Sd skip",
"media.adComplete": "Ad complete",
"media.adBreakStart": "Ad break start",
"media.adBreakComplete": "Ad break complete",
"media.bitrateChange": "Bitrate change",
"media.error": "Error",
"media.sessionComplete": "Session complete",
"media.sessionEnd": "Session end",
"media.statesUpdate": "States update"
};