Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

fix(alexa): use the correct SkillId field #613

Merged
merged 1 commit into from
Aug 11, 2023
Merged
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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions generate/sam-2016-10-31.json
Original file line number Diff line number Diff line change
Expand Up @@ -1459,11 +1459,10 @@
"AWS::Serverless::Function.AlexaSkillEvent": {
"Documentation": "https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#alexaskill",
"Properties": {
"Variables": {
"SkillId": {
"Documentation": "https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#alexaskill",
"Required": false,
"Type": "Map",
"PrimitiveItemType": "String",
"PrimitiveType": "String",
"UpdateType": "Immutable"
}
}
Expand Down
10 changes: 2 additions & 8 deletions schema/sam.go
Original file line number Diff line number Diff line change
Expand Up @@ -183599,14 +183599,8 @@ var SamSchema = `{
"AWS::Serverless::Function.AlexaSkillEvent": {
"additionalProperties": false,
"properties": {
"Variables": {
"additionalProperties": true,
"patternProperties": {
"^[a-zA-Z0-9]+$": {
"type": "string"
}
},
"type": "object"
"SkillId": {
"type": "string"
}
},
"type": "object"
Expand Down
10 changes: 2 additions & 8 deletions schema/sam.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -183594,14 +183594,8 @@
"AWS::Serverless::Function.AlexaSkillEvent": {
"additionalProperties": false,
"properties": {
"Variables": {
"additionalProperties": true,
"patternProperties": {
"^[a-zA-Z0-9]+$": {
"type": "string"
}
},
"type": "object"
"SkillId": {
"type": "string"
}
},
"type": "object"
Expand Down