Skip to content

Commit 4429ef8

Browse files
author
ask-pyth
committed
Release 1.7.0. For changelog, check CHANGELOG.rst
1 parent 51ecdee commit 4429ef8

File tree

316 files changed

+2206
-372
lines changed

Some content is hidden

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

316 files changed

+2206
-372
lines changed

ask-sdk-model/CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,12 @@ This release contains the following changes:
107107
This release contains the following :
108108

109109
- Updated enum values for APL components.
110+
111+
112+
1.7.0
113+
~~~~~~~
114+
115+
This release contains the following changes :
116+
117+
- Support for proactive event calls from out of skill session.
118+
- Remove delete reminders support.

ask-sdk-model/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
1+
Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22

33
Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
44
except in compliance with the License. A copy of the License is located at

ask-sdk-model/ask_sdk_model/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
55
# except in compliance with the License. A copy of the License is located at
@@ -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.6.2'
17+
__version__ = '1.7.0'
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
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
#
4-
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
77
# except in compliance with the License. A copy of the License is located at

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
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
#
4-
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
77
# except in compliance with the License. A copy of the License is located at

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
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
#
4-
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
77
# except in compliance with the License. A copy of the License is located at

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
#
4-
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
77
# except in compliance with the License. A copy of the License is located at
@@ -36,6 +36,7 @@ class CanFulfillIntentValues(Enum):
3636
YES = "YES"
3737
NO = "NO"
3838
MAYBE = "MAYBE"
39+
3940
def to_dict(self):
4041
# type: () -> Dict[str, object]
4142
"""Returns the model properties as a dict"""

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
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
#
4-
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
77
# except in compliance with the License. A copy of the License is located at

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
#
4-
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
77
# except in compliance with the License. A copy of the License is located at
@@ -35,6 +35,7 @@ class CanFulfillSlotValues(Enum):
3535
"""
3636
YES = "YES"
3737
NO = "NO"
38+
3839
def to_dict(self):
3940
# type: () -> Dict[str, object]
4041
"""Returns the model properties as a dict"""

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
#
4-
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
77
# except in compliance with the License. A copy of the License is located at
@@ -36,6 +36,7 @@ class CanUnderstandSlotValues(Enum):
3636
YES = "YES"
3737
NO = "NO"
3838
MAYBE = "MAYBE"
39+
3940
def to_dict(self):
4041
# type: () -> Dict[str, object]
4142
"""Returns the model properties as a dict"""

0 commit comments

Comments
 (0)