Skip to content

Commit 5a149d5

Browse files
author
ask-pyth
committed
Release 1.7.3. For changelog, check CHANGELOG.rst
1 parent 9a08e6f commit 5a149d5

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

ask-smapi-model/CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,11 @@ This release contains the following changes :
123123
This release contains the following changes :
124124

125125
- Added new metadata, removed requirements and updated descriptions for enabling save incomplete ASR annotation sets.
126+
127+
128+
1.7.3
129+
^^^^^
130+
131+
This release contains the following changes :
132+
133+
- minor bug fixes in existing models.

ask-smapi-model/ask_smapi_model/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
__pip_package_name__ = 'ask-smapi-model'
1515
__description__ = 'The SMAPI SDK Model package provides model definitions for making Skill Management API calls.'
1616
__url__ = 'https://github.com/alexa/alexa-apis-for-python'
17-
__version__ = '1.7.2'
17+
__version__ = '1.7.3'
1818
__author__ = 'Alexa Skills Kit'
1919
__author_email__ = 'ask-sdk-dynamic@amazon.com'
2020
__license__ = 'Apache 2.0'

ask-smapi-model/ask_smapi_model/v1/skill/manifest/music_apis.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ class MusicApis(object):
4242
:type endpoint: (optional) ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint
4343
:param capabilities: Defines the structure of music capabilities information in the skill manifest.
4444
:type capabilities: (optional) list[ask_smapi_model.v1.skill.manifest.music_capability.MusicCapability]
45-
:param interfaces:
46-
:type interfaces: (optional) ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces
45+
:param interfaces: A list of music skill interfaces that your skill supports.
46+
:type interfaces: (optional) list[ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces]
4747
:param locales: Defines the structure of locale specific music information in the skill manifest.
4848
:type locales: (optional) dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)
4949
:param content_types: List of the type of content to be provided by the music skill.
@@ -54,7 +54,7 @@ class MusicApis(object):
5454
'regions': 'dict(str, ask_smapi_model.v1.skill.manifest.lambda_region.LambdaRegion)',
5555
'endpoint': 'ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint',
5656
'capabilities': 'list[ask_smapi_model.v1.skill.manifest.music_capability.MusicCapability]',
57-
'interfaces': 'ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces',
57+
'interfaces': 'list[ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces]',
5858
'locales': 'dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)',
5959
'content_types': 'list[ask_smapi_model.v1.skill.manifest.music_content_type.MusicContentType]'
6060
} # type: Dict
@@ -70,7 +70,7 @@ class MusicApis(object):
7070
supports_multiple_types = False
7171

7272
def __init__(self, regions=None, endpoint=None, capabilities=None, interfaces=None, locales=None, content_types=None):
73-
# type: (Optional[Dict[str, LambdaRegionV1]], Optional[LambdaEndpointV1], Optional[List[MusicCapabilityV1]], Optional[MusicInterfacesV1], Optional[Dict[str, LocalizedMusicInfoV1]], Optional[List[MusicContentTypeV1]]) -> None
73+
# type: (Optional[Dict[str, LambdaRegionV1]], Optional[LambdaEndpointV1], Optional[List[MusicCapabilityV1]], Optional[List[MusicInterfacesV1]], Optional[Dict[str, LocalizedMusicInfoV1]], Optional[List[MusicContentTypeV1]]) -> None
7474
"""Defines the structure of music api in the skill manifest.
7575
7676
:param regions: Contains an array of the supported <region> Objects.
@@ -79,8 +79,8 @@ def __init__(self, regions=None, endpoint=None, capabilities=None, interfaces=No
7979
:type endpoint: (optional) ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint
8080
:param capabilities: Defines the structure of music capabilities information in the skill manifest.
8181
:type capabilities: (optional) list[ask_smapi_model.v1.skill.manifest.music_capability.MusicCapability]
82-
:param interfaces:
83-
:type interfaces: (optional) ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces
82+
:param interfaces: A list of music skill interfaces that your skill supports.
83+
:type interfaces: (optional) list[ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces]
8484
:param locales: Defines the structure of locale specific music information in the skill manifest.
8585
:type locales: (optional) dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)
8686
:param content_types: List of the type of content to be provided by the music skill.

0 commit comments

Comments
 (0)