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

Missing WEB_VIEW Display Capabilities #686

Closed
ShobhitAd opened this issue Jun 9, 2022 · 1 comment
Closed

Missing WEB_VIEW Display Capabilities #686

ShobhitAd opened this issue Jun 9, 2022 · 1 comment
Labels

Comments

@ShobhitAd
Copy link
Contributor

Currently, the textFields and imageFields params are missing from the display capabilites for WEB_VIEW. The following capabilities should be added for WEB_VIEW in display_capabilities.js

"WEB_VIEW": {
        "displayCapabilities": {
            ...
            "textFields": [
                {
                    "name": "templateTitle",
                    "characterSet": "UTF_8",
                    "width": 100,
                    "rows": 1
                },
                {
                    "name": "alertText1",
                    "characterSet": "UTF_8",
                    "width": 500,
                    "rows": 1
                },
                {
                    "name": "alertText2",
                    "characterSet": "UTF_8",
                    "width": 500,
                    "rows": 1
                },
                {
                    "name": "alertText3",
                    "characterSet": "UTF_8",
                    "width": 500,
                    "rows": 1
                },
                {
                    "name": "scrollableMessageBody",
                    "characterSet": "UTF_8",
                    "width": 500,
                    "rows": 1
                },
                {
                    "name": "initialInteractionText",
                    "characterSet": "UTF_8",
                    "width": 500,
                    "rows": 1
                },
                {
                    "name": "audioPassThruDisplayText1",
                    "characterSet": "UTF_8",
                    "width": 500,
                    "rows": 1
                },
                {
                    "name": "audioPassThruDisplayText2",
                    "characterSet": "UTF_8",
                    "width": 500,
                    "rows": 1
                },
                {
                    "name": "sliderHeader",
                    "characterSet": "UTF_8",
                    "width": 500,
                    "rows": 1
                },
                {
                    "name": "sliderFooter",
                    "characterSet": "UTF_8",
                    "width": 500,
                    "rows": 1
                }
            ],
            "imageFields": [
                {
                    "name": "alertIcon",
                    "imageTypeSupported": [
                        "GRAPHIC_BMP",
                        "GRAPHIC_JPEG",
                        "GRAPHIC_PNG"
                    ],
                    "imageResolution": {
                        "resolutionWidth": 105,
                        "resolutionHeight": 65
                    }
                },
                {
                    "name": "choiceImage",
                    "imageTypeSupported": [
                        "GRAPHIC_BMP",
                        "GRAPHIC_JPEG",
                        "GRAPHIC_PNG"
                    ],
                    "imageResolution": {
                        "resolutionWidth": 64,
                        "resolutionHeight": 64
                    }
                },
                {
                    "name": "choiceSecondaryImage",
                    "imageTypeSupported": [
                        "GRAPHIC_BMP",
                        "GRAPHIC_JPEG",
                        "GRAPHIC_PNG"
                    ],
                    "imageResolution": {
                        "resolutionWidth": 64,
                        "resolutionHeight": 64
                    }
                },
                {
                    "name": "cmdIcon",
                    "imageTypeSupported": [
                        "GRAPHIC_BMP",
                        "GRAPHIC_JPEG",
                        "GRAPHIC_PNG"
                    ],
                    "imageResolution": {
                        "resolutionWidth": 64,
                        "resolutionHeight": 64
                    }
                },
                {
                    "name": "subMenuIcon",
                    "imageTypeSupported": [
                      "GRAPHIC_BMP",
                      "GRAPHIC_JPEG",
                      "GRAPHIC_PNG"
                    ],
                    "imageResolution": {
                      "resolutionWidth": 64,
                      "resolutionHeight": 64
                    }
                },
                {
                    "name": "menuCommandSecondaryImage",
                    "imageTypeSupported": [
                      "GRAPHIC_BMP",
                      "GRAPHIC_JPEG",
                      "GRAPHIC_PNG"
                    ],
                    "imageResolution": {
                      "resolutionWidth": 105,
                      "resolutionHeight": 65
                    }
                  },
                  {
                    "name": "menuSubMenuSecondaryImage",
                    "imageTypeSupported": [
                      "GRAPHIC_BMP",
                      "GRAPHIC_JPEG",
                      "GRAPHIC_PNG"
                    ],
                    "imageResolution": {
                      "resolutionWidth": 105,
                      "resolutionHeight": 65
                    }
                  },
                  {
                    "name": "subtleAlertIcon",
                    "imageTypeSupported": [
                      "GRAPHIC_BMP",
                      "GRAPHIC_JPEG",
                      "GRAPHIC_PNG"
                    ],
                    "imageResolution": {
                      "resolutionWidth": 105,
                      "resolutionHeight": 65
                    }
                  }
            ],
            ...
        }
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants