Skip to content

Commit 8efe008

Browse files
committed
Major version 1.0.0 release
1 parent fb06d47 commit 8efe008

36 files changed

+47
-71
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check [existing open](https://github.com/alexa-labs/alexa-apis-for-python/issues), or [recently closed](https://github.com/alexa-labs/alexa-apis-for-python/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/alexa/alexa-apis-for-python/issues), or [recently closed](https://github.com/alexa/alexa-apis-for-python/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

17-
* A reproducible test case or series of steps, using the [Alexa Skills Kit Python SDK](https://github.com/alexa-labs/alexa-skills-kit-sdk-for-python)
17+
* A reproducible test case or series of steps, using the [Alexa Skills Kit Python SDK](https://github.com/alexa/alexa-skills-kit-sdk-for-python)
1818
* The version of our code being used
1919
* Any modifications you've made relevant to the bug
2020
* Anything unusual about your environment or deployment
@@ -39,6 +39,6 @@ If you discover a potential security issue in this project we ask that you notif
3939

4040
## Licensing
4141

42-
See the [LICENSE](https://github.com/alexa-labs/alexa-apis-for-python/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
42+
See the [LICENSE](https://github.com/alexa/alexa-apis-for-python/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
4343

4444
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Alexa APIs for Python
55

66
The **Alexa APIs for Python** consists of python classes that represent the
77
request and response JSON of Alexa services. These models act as a core
8-
dependency for the `Alexa Skills Kit Python SDK (Beta) <https://github.com/alexa-labs/alexa-skills-kit-sdk-for-python>`__.
8+
dependency for the `Alexa Skills Kit Python SDK <https://github.com/alexa/alexa-skills-kit-sdk-for-python>`__.
99

1010
These model classes are auto-generated using the `JSON schemas <https://developer.amazon.com/docs/custom-skills/request-and-response-json-reference.html>`__
1111
in the developer documentation.
@@ -18,7 +18,7 @@ in the developer documentation.
1818
:target: https://pypi.python.org/pypi/ask-sdk-model/
1919
:alt: Version
2020
.. |License| image:: http://img.shields.io/pypi/l/ask-sdk-core.svg?style=flat
21-
:target: https://github.com/alexa-labs/alexa-apis-for-python/blob/master/LICENSE
21+
:target: https://github.com/alexa/alexa-apis-for-python/blob/master/LICENSE
2222
:alt: License
2323

2424
==================================== =======
@@ -31,14 +31,14 @@ ask-sdk-model |Model Version|
3131
Following are some resources that can help you get started quickly with
3232
models and SDK:
3333

34-
* `Alexa Skills Kit Python SDK (Beta) <https://github.com/alexa-labs/alexa-skills-kit-sdk-for-python>`__
34+
* `Alexa Skills Kit Python SDK <https://github.com/alexa/alexa-skills-kit-sdk-for-python>`__
3535
* `API Documentation <https://alexa-skills-kit-python-sdk.readthedocs.io/en/latest/models/ask_sdk_model.html>`__
3636

3737
Got Feedback?
3838
-------------
3939

4040
- We would like to hear about your bugs, feature requests, questions or quick feedback.
41-
Please search for `existing issues <https://github.com/alexa-labs/alexa-apis-for-python/issues>`_
41+
Please search for `existing issues <https://github.com/alexa/alexa-apis-for-python/issues>`_
4242
before opening a new one. It would also be helpful if you follow the
4343
templates for issue creation. Please follow the
4444
`contributing guidelines <CONTRIBUTING.md>`__!!

ask-sdk-model/CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,9 @@ CHANGELOG
2626
~~~~~
2727

2828
* APIs for getting device timezone, distance measurement, temperature measurement
29+
30+
1.0.0
31+
-----
32+
33+
* Production release of ASK Models Package.
34+

ask-sdk-model/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ The model definitions in this package are auto-generated. The issues and pull re
1414
on the repository are not monitored and may get closed without investigation. Please use
1515
these community resources for getting help:
1616

17-
* Use the `ASK SDK <https://github.com/alexa-labs/alexa-skills-kit-sdk-for-python>`_ for building skills and filing bugs.
17+
* Use the `ASK SDK <https://github.com/alexa/alexa-skills-kit-sdk-for-python>`_ for building skills and filing bugs.
1818
* Request and vote for `Alexa features <https://alexa.uservoice.com/forums/906892-alexa-skills-developer-voice-and-vote>`_!

ask-sdk-model/ask_sdk_model/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
__pip_package_name__ = 'ask-sdk-model'
1515
__description__ = 'The ASK SDK Model package provides model definitions, for building Alexa Skills.'
16-
__url__ = 'http://developer.amazon.com/ask'
17-
__version__ = '0.3.0'
16+
__url__ = 'https://github.com/alexa/alexa-apis-for-python'
17+
__version__ = '1.0.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/dialog_state.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,11 @@ class DialogState(Enum):
3131
3232
3333
34-
Allowed enum values: [STARTED, IN_PROGRESS, COMPLETED, ]
34+
Allowed enum values: [STARTED, IN_PROGRESS, COMPLETED]
3535
"""
3636
STARTED = "STARTED"
3737
IN_PROGRESS = "IN_PROGRESS"
3838
COMPLETED = "COMPLETED"
39-
4039
def to_dict(self):
4140
# type: () -> Dict[str, object]
4241
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/intent_confirmation_status.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,11 @@ class IntentConfirmationStatus(Enum):
3131
3232
3333
34-
Allowed enum values: [NONE, DENIED, CONFIRMED, ]
34+
Allowed enum values: [NONE, DENIED, CONFIRMED]
3535
"""
3636
NONE = "NONE"
3737
DENIED = "DENIED"
3838
CONFIRMED = "CONFIRMED"
39-
4039
def to_dict(self):
4140
# type: () -> Dict[str, object]
4241
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/amazonpay/model/v1/billing_agreement_status.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,13 @@ class BillingAgreementStatus(Enum):
3131
3232
3333
34-
Allowed enum values: [CANCELED, CLOSED, DRAFT, OPEN, SUSPENDED, ]
34+
Allowed enum values: [CANCELED, CLOSED, DRAFT, OPEN, SUSPENDED]
3535
"""
3636
CANCELED = "CANCELED"
3737
CLOSED = "CLOSED"
3838
DRAFT = "DRAFT"
3939
OPEN = "OPEN"
4040
SUSPENDED = "SUSPENDED"
41-
4241
def to_dict(self):
4342
# type: () -> Dict[str, object]
4443
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/amazonpay/model/v1/payment_action.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ class PaymentAction(Enum):
3131
3232
3333
34-
Allowed enum values: [Authorize, AuthorizeAndCapture, ]
34+
Allowed enum values: [Authorize, AuthorizeAndCapture]
3535
"""
3636
Authorize = "Authorize"
3737
AuthorizeAndCapture = "AuthorizeAndCapture"
38-
3938
def to_dict(self):
4039
# type: () -> Dict[str, object]
4140
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/amazonpay/model/v1/release_environment.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ class ReleaseEnvironment(Enum):
3131
3232
3333
34-
Allowed enum values: [LIVE, SANDBOX, ]
34+
Allowed enum values: [LIVE, SANDBOX]
3535
"""
3636
LIVE = "LIVE"
3737
SANDBOX = "SANDBOX"
38-
3938
def to_dict(self):
4039
# type: () -> Dict[str, object]
4140
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/amazonpay/model/v1/state.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,13 @@ class State(Enum):
3131
3232
3333
34-
Allowed enum values: [Pending, Open, Declined, Closed, Completed, ]
34+
Allowed enum values: [Pending, Open, Declined, Closed, Completed]
3535
"""
3636
Pending = "Pending"
3737
Open = "Open"
3838
Declined = "Declined"
3939
Closed = "Closed"
4040
Completed = "Completed"
41-
4241
def to_dict(self):
4342
# type: () -> Dict[str, object]
4443
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/audioplayer/clear_behavior.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,10 @@ class ClearBehavior(Enum):
2929
"""
3030
3131
32-
Allowed enum values: [CLEAR_ALL, CLEAR_ENQUEUED, ]
32+
Allowed enum values: [CLEAR_ALL, CLEAR_ENQUEUED]
3333
"""
3434
CLEAR_ALL = "CLEAR_ALL"
3535
CLEAR_ENQUEUED = "CLEAR_ENQUEUED"
36-
3736
def to_dict(self):
3837
# type: () -> Dict[str, object]
3938
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/audioplayer/error_type.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@ class ErrorType(Enum):
2929
"""
3030
3131
32-
Allowed enum values: [MEDIA_ERROR_INTERNAL_DEVICE_ERROR, MEDIA_ERROR_INTERNAL_SERVER_ERROR, MEDIA_ERROR_INVALID_REQUEST, MEDIA_ERROR_SERVICE_UNAVAILABLE, MEDIA_ERROR_UNKNOWN, ]
32+
Allowed enum values: [MEDIA_ERROR_INTERNAL_DEVICE_ERROR, MEDIA_ERROR_INTERNAL_SERVER_ERROR, MEDIA_ERROR_INVALID_REQUEST, MEDIA_ERROR_SERVICE_UNAVAILABLE, MEDIA_ERROR_UNKNOWN]
3333
"""
3434
MEDIA_ERROR_INTERNAL_DEVICE_ERROR = "MEDIA_ERROR_INTERNAL_DEVICE_ERROR"
3535
MEDIA_ERROR_INTERNAL_SERVER_ERROR = "MEDIA_ERROR_INTERNAL_SERVER_ERROR"
3636
MEDIA_ERROR_INVALID_REQUEST = "MEDIA_ERROR_INVALID_REQUEST"
3737
MEDIA_ERROR_SERVICE_UNAVAILABLE = "MEDIA_ERROR_SERVICE_UNAVAILABLE"
3838
MEDIA_ERROR_UNKNOWN = "MEDIA_ERROR_UNKNOWN"
39-
4039
def to_dict(self):
4140
# type: () -> Dict[str, object]
4241
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/audioplayer/play_behavior.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@ class PlayBehavior(Enum):
2929
"""
3030
3131
32-
Allowed enum values: [ENQUEUE, REPLACE_ALL, REPLACE_ENQUEUED, ]
32+
Allowed enum values: [ENQUEUE, REPLACE_ALL, REPLACE_ENQUEUED]
3333
"""
3434
ENQUEUE = "ENQUEUE"
3535
REPLACE_ALL = "REPLACE_ALL"
3636
REPLACE_ENQUEUED = "REPLACE_ENQUEUED"
37-
3837
def to_dict(self):
3938
# type: () -> Dict[str, object]
4039
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/audioplayer/player_activity.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,14 @@ class PlayerActivity(Enum):
2929
"""
3030
3131
32-
Allowed enum values: [PLAYING, PAUSED, FINISHED, BUFFER_UNDERRUN, IDLE, STOPPED, ]
32+
Allowed enum values: [PLAYING, PAUSED, FINISHED, BUFFER_UNDERRUN, IDLE, STOPPED]
3333
"""
3434
PLAYING = "PLAYING"
3535
PAUSED = "PAUSED"
3636
FINISHED = "FINISHED"
3737
BUFFER_UNDERRUN = "BUFFER_UNDERRUN"
3838
IDLE = "IDLE"
3939
STOPPED = "STOPPED"
40-
4140
def to_dict(self):
4241
# type: () -> Dict[str, object]
4342
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/display/back_button_behavior.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,10 @@ class BackButtonBehavior(Enum):
2929
"""
3030
3131
32-
Allowed enum values: [HIDDEN, VISIBLE, ]
32+
Allowed enum values: [HIDDEN, VISIBLE]
3333
"""
3434
HIDDEN = "HIDDEN"
3535
VISIBLE = "VISIBLE"
36-
3736
def to_dict(self):
3837
# type: () -> Dict[str, object]
3938
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/display/image_size.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@ class ImageSize(Enum):
2929
"""
3030
3131
32-
Allowed enum values: [X_SMALL, SMALL, MEDIUM, LARGE, X_LARGE, ]
32+
Allowed enum values: [X_SMALL, SMALL, MEDIUM, LARGE, X_LARGE]
3333
"""
3434
X_SMALL = "X_SMALL"
3535
SMALL = "SMALL"
3636
MEDIUM = "MEDIUM"
3737
LARGE = "LARGE"
3838
X_LARGE = "X_LARGE"
39-
4039
def to_dict(self):
4140
# type: () -> Dict[str, object]
4241
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/monetization/v1/purchase_result.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,13 @@ class PurchaseResult(Enum):
3131
3232
3333
34-
Allowed enum values: [ACCEPTED, DECLINED, NOT_ENTITLED, ERROR, ALREADY_PURCHASED, ]
34+
Allowed enum values: [ACCEPTED, DECLINED, NOT_ENTITLED, ERROR, ALREADY_PURCHASED]
3535
"""
3636
ACCEPTED = "ACCEPTED"
3737
DECLINED = "DECLINED"
3838
NOT_ENTITLED = "NOT_ENTITLED"
3939
ERROR = "ERROR"
4040
ALREADY_PURCHASED = "ALREADY_PURCHASED"
41-
4241
def to_dict(self):
4342
# type: () -> Dict[str, object]
4443
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/interfaces/system/error_type.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@ class ErrorType(Enum):
2929
"""
3030
3131
32-
Allowed enum values: [INVALID_RESPONSE, DEVICE_COMMUNICATION_ERROR, INTERNAL_SERVICE_ERROR, ]
32+
Allowed enum values: [INVALID_RESPONSE, DEVICE_COMMUNICATION_ERROR, INTERNAL_SERVICE_ERROR]
3333
"""
3434
INVALID_RESPONSE = "INVALID_RESPONSE"
3535
DEVICE_COMMUNICATION_ERROR = "DEVICE_COMMUNICATION_ERROR"
3636
INTERNAL_SERVICE_ERROR = "INTERNAL_SERVICE_ERROR"
37-
3837
def to_dict(self):
3938
# type: () -> Dict[str, object]
4039
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/services/gadget_controller/trigger_event_type.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,11 @@ class TriggerEventType(Enum):
3131
3232
3333
34-
Allowed enum values: [buttonDown, buttonUp, none, ]
34+
Allowed enum values: [buttonDown, buttonUp, none]
3535
"""
3636
buttonDown = "buttonDown"
3737
buttonUp = "buttonUp"
3838
none = "none"
39-
4039
def to_dict(self):
4140
# type: () -> Dict[str, object]
4241
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/services/game_engine/event_reporting_type.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ class EventReportingType(Enum):
3131
3232
3333
34-
Allowed enum values: [history, matches, ]
34+
Allowed enum values: [history, matches]
3535
"""
3636
history = "history"
3737
matches = "matches"
38-
3938
def to_dict(self):
4039
# type: () -> Dict[str, object]
4140
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/services/game_engine/input_event_action_type.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ class InputEventActionType(Enum):
3131
3232
3333
34-
Allowed enum values: [down, up, ]
34+
Allowed enum values: [down, up]
3535
"""
3636
down = "down"
3737
up = "up"
38-
3938
def to_dict(self):
4039
# type: () -> Dict[str, object]
4140
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/services/game_engine/pattern_recognizer_anchor_type.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,11 @@ class PatternRecognizerAnchorType(Enum):
3131
3232
3333
34-
Allowed enum values: [start, end, anywhere, ]
34+
Allowed enum values: [start, end, anywhere]
3535
"""
3636
start = "start"
3737
end = "end"
3838
anywhere = "anywhere"
39-
4039
def to_dict(self):
4140
# type: () -> Dict[str, object]
4241
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/services/list_management/list_item_state.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,10 @@ class ListItemState(Enum):
2929
"""
3030
3131
32-
Allowed enum values: [active, completed, ]
32+
Allowed enum values: [active, completed]
3333
"""
3434
active = "active"
3535
completed = "completed"
36-
3736
def to_dict(self):
3837
# type: () -> Dict[str, object]
3938
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/services/list_management/list_state.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,10 @@ class ListState(Enum):
2929
"""
3030
3131
32-
Allowed enum values: [active, archived, ]
32+
Allowed enum values: [active, archived]
3333
"""
3434
active = "active"
3535
archived = "archived"
36-
3736
def to_dict(self):
3837
# type: () -> Dict[str, object]
3938
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/services/monetization/entitled_state.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ class EntitledState(Enum):
3131
3232
3333
34-
Allowed enum values: [ENTITLED, NOT_ENTITLED, ]
34+
Allowed enum values: [ENTITLED, NOT_ENTITLED]
3535
"""
3636
ENTITLED = "ENTITLED"
3737
NOT_ENTITLED = "NOT_ENTITLED"
38-
3938
def to_dict(self):
4039
# type: () -> Dict[str, object]
4140
"""Returns the model properties as a dict"""

ask-sdk-model/ask_sdk_model/services/monetization/product_type.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ class ProductType(Enum):
3131
3232
3333
34-
Allowed enum values: [SUBSCRIPTION, ENTITLEMENT, ]
34+
Allowed enum values: [SUBSCRIPTION, ENTITLEMENT]
3535
"""
3636
SUBSCRIPTION = "SUBSCRIPTION"
3737
ENTITLEMENT = "ENTITLEMENT"
38-
3938
def to_dict(self):
4039
# type: () -> Dict[str, object]
4140
"""Returns the model properties as a dict"""

0 commit comments

Comments
 (0)