Skip to content

Commit 031d996

Browse files
author
ask-pyth
committed
Release 1.10.1. For changelog, check CHANGELOG.rst
1 parent dd22f52 commit 031d996

File tree

260 files changed

+272
-263
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+272
-263
lines changed

ask-sdk-model/CHANGELOG.rst

Lines changed: 9 additions & 0 deletions

ask-sdk-model/ask_sdk_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-sdk-model'
1515
__description__ = 'The ASK SDK Model package provides model definitions, for building Alexa Skills.'
1616
__url__ = 'https://github.com/alexa/alexa-apis-for-python'
17-
__version__ = '1.10.0'
17+
__version__ = '1.10.1'
1818
__author__ = 'Alexa Skills Kit'
1919
__author_email__ = 'ask-sdk-dynamic@amazon.com'
2020
__license__ = 'Apache 2.0'

ask-sdk-model/ask_sdk_model/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Application(object):
4040

4141
attribute_map = {
4242
'application_id': 'applicationId'
43-
} # type: Dict
43+
} # type: Dict
4444

4545
def __init__(self, application_id=None):
4646
# type: (Optional[str]) -> None

ask-sdk-model/ask_sdk_model/canfulfill/can_fulfill_intent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class CanFulfillIntent(object):
4646
attribute_map = {
4747
'can_fulfill': 'canFulfill',
4848
'slots': 'slots'
49-
} # type: Dict
49+
} # type: Dict
5050

5151
def __init__(self, can_fulfill=None, slots=None):
5252
# type: (Optional[CanFulfillIntentValues], Optional[Dict[str, CanFulfillSlot]]) -> None

ask-sdk-model/ask_sdk_model/canfulfill/can_fulfill_intent_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class CanFulfillIntentRequest(Request):
6161
'locale': 'locale',
6262
'dialog_state': 'dialogState',
6363
'intent': 'intent'
64-
} # type: Dict
64+
} # type: Dict
6565

6666
def __init__(self, request_id=None, timestamp=None, locale=None, dialog_state=None, intent=None):
6767
# type: (Optional[str], Optional[datetime], Optional[str], Optional[DialogState], Optional[Intent]) -> None

ask-sdk-model/ask_sdk_model/canfulfill/can_fulfill_slot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class CanFulfillSlot(object):
4646
attribute_map = {
4747
'can_understand': 'canUnderstand',
4848
'can_fulfill': 'canFulfill'
49-
} # type: Dict
49+
} # type: Dict
5050

5151
def __init__(self, can_understand=None, can_fulfill=None):
5252
# type: (Optional[CanUnderstandSlotValues], Optional[CanFulfillSlotValues]) -> None

ask-sdk-model/ask_sdk_model/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class Context(object):
6464
'display': 'Display',
6565
'geolocation': 'Geolocation',
6666
'viewport': 'Viewport'
67-
} # type: Dict
67+
} # type: Dict
6868

6969
def __init__(self, system=None, audio_player=None, automotive=None, display=None, geolocation=None, viewport=None):
7070
# type: (Optional[SystemState], Optional[AudioPlayerState], Optional[AutomotiveState], Optional[DisplayState], Optional[GeolocationState], Optional[ViewportState]) -> None

ask-sdk-model/ask_sdk_model/device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class Device(object):
4545
attribute_map = {
4646
'device_id': 'deviceId',
4747
'supported_interfaces': 'supportedInterfaces'
48-
} # type: Dict
48+
} # type: Dict
4949

5050
def __init__(self, device_id=None, supported_interfaces=None):
5151
# type: (Optional[str], Optional[SupportedInterfaces]) -> None

ask-sdk-model/ask_sdk_model/dialog/confirm_intent_directive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class ConfirmIntentDirective(Directive):
4242
attribute_map = {
4343
'object_type': 'type',
4444
'updated_intent': 'updatedIntent'
45-
} # type: Dict
45+
} # type: Dict
4646

4747
def __init__(self, updated_intent=None):
4848
# type: (Optional[Intent]) -> None

ask-sdk-model/ask_sdk_model/dialog/confirm_slot_directive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ConfirmSlotDirective(Directive):
4646
'object_type': 'type',
4747
'updated_intent': 'updatedIntent',
4848
'slot_to_confirm': 'slotToConfirm'
49-
} # type: Dict
49+
} # type: Dict
5050

5151
def __init__(self, updated_intent=None, slot_to_confirm=None):
5252
# type: (Optional[Intent], Optional[str]) -> None

0 commit comments

Comments
 (0)