8000 [Librarian] Regenerated @ 09a1ab1da70c180f61d4cf900865abf7d89eaa32 · mfreed420/twilio-python@0fb019d · GitHub
[go: up one dir, main page]

Skip to content

Commit 0fb019d

Browse files
committed
[Librarian] Regenerated @ 09a1ab1da70c180f61d4cf900865abf7d89eaa32
1 parent ea3b70e commit 0fb019d

File tree

8 files changed

+72
-73
lines changed

8 files changed

+72
-73
lines changed

CHANGES.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@ twilio-python Changelog
33

44
Here you can see the full list of changes between each twilio-python release.
55

6+
[2023-04-19] Version 8.1.0
7+
--------------------------
8+
**Library - Chore**
9+
- [PR #709](https://github.com/twilio/twilio-python/pull/709): Drop `asyncio` from requirements. Thanks to [@setu4993](https://github.com/setu4993)!
10+
11+
**Library - Docs**
12+
- [PR #705](https://github.com/twilio/twilio-python/pull/705): consolidate. Thanks to [@stern-shawn](https://github.com/stern-shawn)!
13+
14+
**Messaging**
15+
- Remove `messaging_service_sids` and `messaging_service_sid_action` from domain config endpoint **(breaking change)**
16+
- Add error_code and rejection_reason properties to tollfree verification API response
17+
18+
**Numbers**
19+
- Added the new Eligibility API under version `/v1`.
20+
21+
622
[2023-04-05] Version 8.0.0
723
--------------------------
824
**Note:** This release contains breaking changes, check our [upgrade guide](./UPGRADE.md###-2023-04-05-7xx-to-8xx) for detailed migration notes.

twilio/rest/conversations/v1/conversation/__init__.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -682,8 +682,8 @@ def stream(
682682
is reached.
683683
The results are returned as a generator, so this operation is memory efficient.
684684
685-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
686-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
685+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
686+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
687687
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
688688
:param limit: Upper limit for the number of records to return. stream()
689689
guarantees to never return more than limit. Default is no limit
@@ -718,8 +718,8 @@ async def stream_async(
718718
is reached.
719719
The results are returned as a generator, so this operation is memory efficient.
720720
721-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
722-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
721+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
722+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
723723
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
724724
:param limit: Upper limit for the number of records to return. stream()
725725
guarantees to never return more than limit. Default is no limit
@@ -753,8 +753,8 @@ def list(
753753
Unlike stream(), this operation is eager and will load `limit` records into
754754
memory before returning.
755755
756-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
757-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
756+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
757+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
758758
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
759759
:param limit: Upper limit for the number of records to return. list() guarantees
760760
never to return more than limit. Default is no limit
@@ -788,8 +788,8 @@ async def list_async(
788788
Unlike stream(), this operation is eager and will load `limit` records into
789789
memory before returning.
790790
791-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
792-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
791+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
792+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
793793
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
794794
:param limit: Upper limit for the number of records to return. list() guarantees
795795
never to return more than limit. Default is no limit
@@ -824,8 +824,8 @@ def page(
824824
Retrieve a single page of ConversationInstance records from the API.
825825
Request is executed immediately
826826
827-
:param start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
828-
:param end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
827+
:param start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
828+
:param end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
829829
:param state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
830830
:param page_token: PageToken provided by the API
831831
:param page_number: Page Number, this value is simply for client state
@@ -860,8 +860,8 @@ async def page_async(
860860
Asynchronously retrieve a single page of ConversationInstance records from the API.
861861
Request is executed immediately
862862
863-
:param start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
864-
:param end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
863+
:param start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
864+
:param end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
865865
:param state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
866866
:param page_token: PageToken provided by the API
867867
:param page_number: Page Number, this value is simply for client state

twilio/rest/conversations/v1/service/conversation/__init__.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -722,8 +722,8 @@ def stream(
722722
is reached.
723723
The results are returned as a generator, so this operation is memory efficient.
724724
725-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
726-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
725+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
726+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
727727
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
728728
:param limit: Upper limit for the number of records to return. stream()
729729
guarantees to never return more than limit. Default is no limit
@@ -758,8 +758,8 @@ async def stream_async(
758758
is reached.
759759
The results are returned as a generator, so this operation is memory efficient.
760760
761-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
762-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
761+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
762+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
763763
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
764764
:param limit: Upper limit for the number of records to return. stream()
765765
guarantees to never return more than limit. Default is no limit
@@ -793,8 +793,8 @@ def list(
793793
Unlike stream(), this operation is eager and will load `limit` records into
794794
memory before returning.
795795
796-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
797-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
796+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
797+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
798798
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
799799
:param limit: Upper limit for the number of records to return. list() guarantees
800800
never to return more than limit. Default is no limit
@@ -828,8 +828,8 @@ async def list_async(
828828
Unlike stream(), this operation is eager and will load `limit` records into
829829
memory before returning.
830830
831-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
832-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
831+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
832+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
833833
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
834834
:param limit: Upper limit for the number of records to return. list() guarantees
835835
never to return more than limit. Default is no limit
@@ -864,8 +864,8 @@ def page(
864864
Retrieve a single page of ConversationInstance records from the API.
865865
Request is executed immediately
866866
867-
:param start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
868-
:param end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
867+
:param start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
868+
:param end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
869869
:param state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
870870
:param page_token: PageToken provided by the API
871871
:param page_number: Page Number, this value is simply for client state
@@ -900,8 +900,8 @@ async def page_async(
900900
Asynchronously retrieve a single page of ConversationInstance records from the API.
901901
Request is executed immediately
902902
903< 5DA1 /td>-
:param start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
904-
:param end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
903+
:param start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
904+
:param end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
905905
:param state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
906906
:param page_token: PageToken provided by the API
907907
:param page_number: Page Number, this value is simply for client state

0 commit comments

Comments
 (0)
0