I'm attempting to copy the Github example. When I attempt to deploy, I receive the following errors:
Invalid in-skill product file: [ID] undefined [FILE] isps\entitlement\history_pack.json
Invalid in-skill product file: [ID] undefined [FILE] isps\entitlement\space_pack.json
Here's a snippet of the .ask/config file:
{
"deploy_settings": {
"default": {
"skill_id": "amzn1.ask.skill.0075094c-144e-4a63-8272-7a44e75672a6",
"was_cloned": false,
"merge": {
"manifest": {
"apis": {
"custom": {
"endpoint": {
"uri": "ask-custom-Premium_Facts_Sample-default"
}
}
}
}
},
"in_skill_products": [
{
"deploy_status": "Add",
"filePath": "isps\entitlement\history_pack.json"
},
{
"deploy_status": "Add",
"filePath": "isps\entitlement\space_pack.json"
},
{
"deploy_status": "Add",
"filePath": "isps\subscription\all_access.json"
},
{
"deploy_status": "Associate",
"filePath": "isps\entitlement\science_pack.json",
"productId": "amzn1.adg.product.808ee538-9a20-4e61-a1c3-79efda3b77e4"
}
]
}
}
}
The science_pack.json product updates without issue. Each "pack" looks identical, with a future release date the same in each. I get an error on deployment on the all_access.json file because I don't have images and the product name needs to be 2 to 50 characters, but I know those are easy fixes.