Skip to content

Commit 3b02613

Browse files
author
ask-pyth
committed
Release 1.19.0. For changelog, check CHANGELOG.rst
1 parent 2749b29 commit 3b02613

File tree

350 files changed

+1475
-6
lines changed

Some content is hidden

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

350 files changed

+1475
-6
lines changed

ask-sdk-model/CHANGELOG.rst

Lines changed: 10 additions & 0 deletions

ask-sdk-model/ask_sdk_model/__version__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
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.18.1'
17+
__version__ = '1.19.0'
1818
__author__ = 'Alexa Skills Kit'
1919
__author_email__ = '[email protected]'
2020
__license__ = 'Apache 2.0'
2121
__keywords__ = ['ASK SDK', 'Alexa Skills Kit', 'Alexa', 'Models']
22-

ask-sdk-model/ask_sdk_model/application.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class Application(object):
4141
attribute_map = {
4242
'application_id': 'applicationId'
4343
} # type: Dict
44+
supports_multiple_types = False
4445

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ class CanFulfillIntent(object):
4747
'can_fulfill': 'canFulfill',
4848
'slots': 'slots'
4949
} # type: Dict
50+
supports_multiple_types = False
5051

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ class CanFulfillIntentRequest(Request):
6262
'dialog_state': 'dialogState',
6363
'intent': 'intent'
6464
} # type: Dict
65+
supports_multiple_types = False
6566

6667
def __init__(self, request_id=None, timestamp=None, locale=None, dialog_state=None, intent=None):
6768
# 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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ class CanFulfillSlot(object):
4747
'can_understand': 'canUnderstand',
4848
'can_fulfill': 'canFulfill'
4949
} # type: Dict
50+
supports_multiple_types = False
5051

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

ask-sdk-model/ask_sdk_model/cause.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ class Cause(object):
4949
attribute_map = {
5050
'object_type': 'type'
5151
} # type: Dict
52+
supports_multiple_types = False
5253

5354
discriminator_value_class_map = {
5455
'ConnectionCompleted': 'ask_sdk_model.connection_completed.ConnectionCompleted'

ask-sdk-model/ask_sdk_model/connection_completed.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ class ConnectionCompleted(Cause):
5353
'status': 'status',
5454
'result': 'result'
5555
} # type: Dict
56+
supports_multiple_types = False
5657

5758
def __init__(self, token=None, status=None, result=None):
5859
# type: (Optional[str], Optional[Status], Optional[object]) -> None

ask-sdk-model/ask_sdk_model/context.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ class Context(object):
7575
'viewport': 'Viewport',
7676
'viewports': 'Viewports'
7777
} # type: Dict
78+
supports_multiple_types = False
7879

7980
def __init__(self, system=None, alexa_presentation_apl=None, audio_player=None, automotive=None, display=None, geolocation=None, viewport=None, viewports=None):
8081
# type: (Optional[SystemState], Optional[RenderedDocumentState], Optional[AudioPlayerState], Optional[AutomotiveState], Optional[DisplayState], Optional[GeolocationState], Optional[ViewportState], Optional[List[TypedViewportState]]) -> None

ask-sdk-model/ask_sdk_model/device.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ class Device(object):
4646
'device_id': 'deviceId',
4747
'supported_interfaces': 'supportedInterfaces'
4848
} # type: Dict
49+
supports_multiple_types = False
4950

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

0 commit comments

Comments
 (0)