telnyx 3.5.0a0__py3-none-any.whl → 3.6.0a0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of telnyx might be problematic. Click here for more details.
- telnyx/_client.py +53 -2
- telnyx/_version.py +1 -1
- telnyx/resources/__init__.py +70 -0
- telnyx/resources/ai/conversations/conversations.py +137 -3
- telnyx/resources/ai/conversations/messages.py +1 -134
- telnyx/resources/calls/actions.py +146 -146
- telnyx/resources/calls/calls.py +4 -10
- telnyx/resources/conferences/actions.py +8 -24
- telnyx/resources/conferences/conferences.py +2 -6
- telnyx/resources/legacy/__init__.py +33 -0
- telnyx/resources/legacy/legacy.py +102 -0
- telnyx/resources/legacy/reporting/__init__.py +47 -0
- telnyx/resources/legacy/reporting/batch_detail_records/__init__.py +61 -0
- telnyx/resources/legacy/reporting/batch_detail_records/batch_detail_records.py +166 -0
- telnyx/resources/legacy/reporting/batch_detail_records/messaging.py +481 -0
- telnyx/resources/legacy/reporting/batch_detail_records/speech_to_text.py +399 -0
- telnyx/resources/legacy/reporting/batch_detail_records/voice.py +538 -0
- telnyx/resources/legacy/reporting/reporting.py +134 -0
- telnyx/resources/legacy/reporting/usage_reports/__init__.py +61 -0
- telnyx/resources/legacy/reporting/usage_reports/messaging.py +471 -0
- telnyx/resources/legacy/reporting/usage_reports/number_lookup.py +464 -0
- telnyx/resources/legacy/reporting/usage_reports/usage_reports.py +288 -0
- telnyx/resources/legacy/reporting/usage_reports/voice.py +493 -0
- telnyx/resources/oauth.py +855 -0
- telnyx/resources/oauth_clients.py +711 -0
- telnyx/resources/oauth_grants.py +349 -0
- telnyx/resources/phone_numbers/jobs.py +12 -0
- telnyx/resources/porting_orders/porting_orders.py +20 -8
- telnyx/resources/sim_cards/sim_cards.py +3 -2
- telnyx/resources/verifications/verifications.py +10 -0
- telnyx/resources/verify_profiles.py +183 -1
- telnyx/resources/well_known.py +198 -0
- telnyx/types/__init__.py +40 -0
- telnyx/types/ai/__init__.py +1 -0
- telnyx/types/ai/{conversations/message_create_params.py → conversation_add_message_params.py} +4 -4
- telnyx/types/ai/conversations/__init__.py +0 -1
- telnyx/types/ai/inference_embedding_webhook_tool_params.py +2 -0
- telnyx/types/ai/inference_embedding_webhook_tool_params_param.py +2 -0
- telnyx/types/call_dial_params.py +2 -3
- telnyx/types/calls/action_answer_params.py +1 -2
- telnyx/types/calls/action_gather_using_ai_params.py +5 -8
- telnyx/types/calls/action_start_streaming_params.py +4 -2
- telnyx/types/calls/action_transfer_params.py +50 -0
- telnyx/types/campaign_submit_appeal_response.py +0 -3
- telnyx/types/legacy/__init__.py +3 -0
- telnyx/types/legacy/reporting/__init__.py +10 -0
- telnyx/types/legacy/reporting/batch_detail_records/__init__.py +20 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_create_params.py +77 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_create_response.py +68 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_delete_response.py +68 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_list_response.py +80 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_retrieve_response.py +68 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_params.py +19 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_delete_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_list_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_retrieve_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_create_params.py +79 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_create_response.py +91 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_delete_response.py +91 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_list_response.py +102 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_fields_response.py +23 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_response.py +91 -0
- telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_params.py +17 -0
- telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_response.py +11 -0
- telnyx/types/legacy/reporting/usage_reports/__init__.py +18 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_create_params.py +29 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_create_response.py +43 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_delete_response.py +43 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_list_params.py +15 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_list_response.py +54 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_retrieve_response.py +43 -0
- telnyx/types/legacy/reporting/usage_reports/number_lookup_create_params.py +26 -0
- telnyx/types/legacy/reporting/usage_reports/number_lookup_list_params.py +13 -0
- telnyx/types/legacy/reporting/usage_reports/voice_create_params.py +40 -0
- telnyx/types/legacy/reporting/usage_reports/voice_create_response.py +48 -0
- telnyx/types/legacy/reporting/usage_reports/voice_delete_response.py +48 -0
- telnyx/types/legacy/reporting/usage_reports/voice_list_params.py +15 -0
- telnyx/types/legacy/reporting/usage_reports/voice_list_response.py +59 -0
- telnyx/types/legacy/reporting/usage_reports/voice_retrieve_response.py +48 -0
- telnyx/types/number_order_status_update_webhook_event.py +30 -4
- telnyx/types/oauth_client_create_params.py +39 -0
- telnyx/types/oauth_client_create_response.py +63 -0
- telnyx/types/oauth_client_list_params.py +38 -0
- telnyx/types/oauth_client_list_response.py +79 -0
- telnyx/types/oauth_client_retrieve_response.py +63 -0
- telnyx/types/oauth_client_update_params.py +36 -0
- telnyx/types/oauth_client_update_response.py +63 -0
- telnyx/types/oauth_grant_delete_response.py +33 -0
- telnyx/types/oauth_grant_list_params.py +17 -0
- telnyx/types/oauth_grant_list_response.py +49 -0
- telnyx/types/oauth_grant_retrieve_response.py +33 -0
- telnyx/types/oauth_grants_params.py +15 -0
- telnyx/types/oauth_grants_response.py +10 -0
- telnyx/types/oauth_introspect_params.py +12 -0
- telnyx/types/oauth_introspect_response.py +30 -0
- telnyx/types/oauth_register_params.py +39 -0
- telnyx/types/oauth_register_response.py +45 -0
- telnyx/types/oauth_retrieve_authorize_params.py +30 -0
- telnyx/types/oauth_retrieve_jwks_response.py +25 -0
- telnyx/types/oauth_retrieve_response.py +47 -0
- telnyx/types/oauth_token_params.py +33 -0
- telnyx/types/oauth_token_response.py +25 -0
- telnyx/types/phone_number_delete_response.py +7 -0
- telnyx/types/phone_number_detailed.py +7 -0
- telnyx/types/phone_number_list_params.py +6 -0
- telnyx/types/phone_numbers/job_update_batch_params.py +7 -0
- telnyx/types/porting_order.py +3 -0
- telnyx/types/porting_order_create_params.py +3 -0
- telnyx/types/porting_order_list_params.py +52 -31
- telnyx/types/porting_order_update_params.py +2 -0
- telnyx/types/porting_orders/phone_number_configuration_list_params.py +19 -19
- telnyx/types/shared/simple_sim_card.py +15 -0
- telnyx/types/sim_card.py +12 -0
- telnyx/types/sim_card_update_params.py +2 -1
- telnyx/types/stream_bidirectional_codec.py +1 -1
- telnyx/types/stream_codec.py +1 -1
- telnyx/types/verification_trigger_call_params.py +7 -0
- telnyx/types/verify_profile_create_template_params.py +12 -0
- telnyx/types/verify_profile_create_template_response.py +17 -0
- telnyx/types/verify_profile_update_template_params.py +12 -0
- telnyx/types/verify_profile_update_template_response.py +17 -0
- telnyx/types/well_known_retrieve_authorization_server_metadata_response.py +42 -0
- telnyx/types/well_known_retrieve_protected_resource_metadata_response.py +15 -0
- {telnyx-3.5.0a0.dist-info → telnyx-3.6.0a0.dist-info}/METADATA +1 -1
- {telnyx-3.5.0a0.dist-info → telnyx-3.6.0a0.dist-info}/RECORD +128 -46
- {telnyx-3.5.0a0.dist-info → telnyx-3.6.0a0.dist-info}/WHEEL +0 -0
- {telnyx-3.5.0a0.dist-info → telnyx-3.6.0a0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
from typing_extensions import Literal
|
|
6
|
+
|
|
7
|
+
from ....._models import BaseModel
|
|
8
|
+
|
|
9
|
+
__all__ = ["SpeechToTextRetrieveResponse", "Data"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Data(BaseModel):
|
|
13
|
+
id: Optional[str] = None
|
|
14
|
+
"""Identifies the resource"""
|
|
15
|
+
|
|
16
|
+
created_at: Optional[datetime] = None
|
|
17
|
+
|
|
18
|
+
download_link: Optional[str] = None
|
|
19
|
+
"""URL to download the report"""
|
|
20
|
+
|
|
21
|
+
end_date: Optional[datetime] = None
|
|
22
|
+
|
|
23
|
+
record_type: Optional[str] = None
|
|
24
|
+
|
|
25
|
+
start_date: Optional[datetime] = None
|
|
26
|
+
|
|
27
|
+
status: Optional[Literal["PENDING", "COMPLETE", "FAILED", "EXPIRED"]] = None
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class SpeechToTextRetrieveResponse(BaseModel):
|
|
31
|
+
data: Optional[Data] = None
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Union, Iterable
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
from typing_extensions import Literal, Required, Annotated, TypedDict
|
|
8
|
+
|
|
9
|
+
from ....._types import SequenceNotStr
|
|
10
|
+
from ....._utils import PropertyInfo
|
|
11
|
+
|
|
12
|
+
__all__ = ["VoiceCreateParams", "Filter"]
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class VoiceCreateParams(TypedDict, total=False):
|
|
16
|
+
end_time: Required[Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]]
|
|
17
|
+
"""End time in ISO format"""
|
|
18
|
+
|
|
19
|
+
start_time: Required[Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]]
|
|
20
|
+
"""Start time in ISO format"""
|
|
21
|
+
|
|
22
|
+
call_types: Iterable[int]
|
|
23
|
+
"""List of call types to filter by (Inbound = 1, Outbound = 2)"""
|
|
24
|
+
|
|
25
|
+
connections: Iterable[int]
|
|
26
|
+
"""List of connections to filter by"""
|
|
27
|
+
|
|
28
|
+
fields: SequenceNotStr[str]
|
|
29
|
+
"""Set of fields to include in the report"""
|
|
30
|
+
|
|
31
|
+
filters: Iterable[Filter]
|
|
32
|
+
"""List of filters to apply"""
|
|
33
|
+
|
|
34
|
+
include_all_metadata: bool
|
|
35
|
+
"""Whether to include all metadata"""
|
|
36
|
+
|
|
37
|
+
managed_accounts: SequenceNotStr[str]
|
|
38
|
+
"""List of managed accounts to include"""
|
|
39
|
+
|
|
40
|
+
record_types: Iterable[int]
|
|
41
|
+
"""List of record types to filter by (Complete = 1, Incomplete = 2, Errors = 3)"""
|
|
42
|
+
|
|
43
|
+
report_name: str
|
|
44
|
+
"""Name of the report"""
|
|
45
|
+
|
|
46
|
+
select_all_managed_accounts: bool
|
|
47
|
+
"""Whether to select all managed accounts"""
|
|
48
|
+
|
|
49
|
+
source: str
|
|
50
|
+
"""Source of the report.
|
|
51
|
+
|
|
52
|
+
Valid values: calls (default), call-control, fax-api, webrtc
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
timezone: str
|
|
56
|
+
"""Timezone for the report"""
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
class Filter(TypedDict, total=False):
|
|
60
|
+
billing_group: str
|
|
61
|
+
"""Billing group UUID to filter by"""
|
|
62
|
+
|
|
63
|
+
cld: str
|
|
64
|
+
"""Called line identification (destination number)"""
|
|
65
|
+
|
|
66
|
+
cld_filter: Literal["contains", "starts_with", "ends_with"]
|
|
67
|
+
"""Filter type for CLD matching"""
|
|
68
|
+
|
|
69
|
+
cli: str
|
|
70
|
+
"""Calling line identification (caller ID)"""
|
|
71
|
+
|
|
72
|
+
cli_filter: Literal["contains", "starts_with", "ends_with"]
|
|
73
|
+
"""Filter type for CLI matching"""
|
|
74
|
+
|
|
75
|
+
filter_type: Literal["and", "or"]
|
|
76
|
+
"""Logical operator for combining filters"""
|
|
77
|
+
|
|
78
|
+
tags_list: str
|
|
79
|
+
"""Tag name to filter by"""
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
5
|
+
|
|
6
|
+
from ....._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["VoiceCreateResponse", "Data", "DataFilter"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class DataFilter(BaseModel):
|
|
12
|
+
billing_group: Optional[str] = None
|
|
13
|
+
"""Billing group UUID to filter by"""
|
|
14
|
+
|
|
15
|
+
cld: Optional[str] = None
|
|
16
|
+
"""Called line identification (destination number)"""
|
|
17
|
+
|
|
18
|
+
cld_filter: Optional[Literal["contains", "starts_with", "ends_with"]] = None
|
|
19
|
+
"""Filter type for CLD matching"""
|
|
20
|
+
|
|
21
|
+
cli: Optional[str] = None
|
|
22
|
+
"""Calling line identification (caller ID)"""
|
|
23
|
+
|
|
24
|
+
cli_filter: Optional[Literal["contains", "starts_with", "ends_with"]] = None
|
|
25
|
+
"""Filter type for CLI matching"""
|
|
26
|
+
|
|
27
|
+
filter_type: Optional[Literal["and", "or"]] = None
|
|
28
|
+
"""Logical operator for combining filters"""
|
|
29
|
+
|
|
30
|
+
tags_list: Optional[str] = None
|
|
31
|
+
"""Tag name to filter by"""
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class Data(BaseModel):
|
|
35
|
+
id: Optional[str] = None
|
|
36
|
+
"""Unique identifier for the report"""
|
|
37
|
+
|
|
38
|
+
call_types: Optional[List[int]] = None
|
|
39
|
+
"""List of call types (Inbound = 1, Outbound = 2)"""
|
|
40
|
+
|
|
41
|
+
connections: Optional[List[int]] = None
|
|
42
|
+
"""List of connections"""
|
|
43
|
+
|
|
44
|
+
created_at: Optional[str] = None
|
|
45
|
+
"""Creation date of the report"""
|
|
46
|
+
|
|
47
|
+
end_time: Optional[str] = None
|
|
48
|
+
"""End time in ISO format"""
|
|
49
|
+
|
|
50
|
+
filters: Optional[List[DataFilter]] = None
|
|
51
|
+
"""List of filters"""
|
|
52
|
+
|
|
53
|
+
managed_accounts: Optional[List[str]] = None
|
|
54
|
+
"""List of managed accounts"""
|
|
55
|
+
|
|
56
|
+
record_type: Optional[str] = None
|
|
57
|
+
|
|
58
|
+
record_types: Optional[List[int]] = None
|
|
59
|
+
"""List of record types (Complete = 1, Incomplete = 2, Errors = 3)"""
|
|
60
|
+
|
|
61
|
+
report_name: Optional[str] = None
|
|
62
|
+
"""Name of the report"""
|
|
63
|
+
|
|
64
|
+
report_url: Optional[str] = None
|
|
65
|
+
"""URL to download the report"""
|
|
66
|
+
|
|
67
|
+
retry: Optional[int] = None
|
|
68
|
+
"""Number of retries"""
|
|
69
|
+
|
|
70
|
+
source: Optional[str] = None
|
|
71
|
+
"""Source of the report.
|
|
72
|
+
|
|
73
|
+
Valid values: calls (default), call-control, fax-api, webrtc
|
|
74
|
+
"""
|
|
75
|
+
|
|
76
|
+
start_time: Optional[str] = None
|
|
77
|
+
"""Start time in ISO format"""
|
|
78
|
+
|
|
79
|
+
status: Optional[int] = None
|
|
80
|
+
"""Status of the report (Pending = 1, Complete = 2, Failed = 3, Expired = 4)"""
|
|
81
|
+
|
|
82
|
+
timezone: Optional[str] = None
|
|
83
|
+
"""Timezone for the report"""
|
|
84
|
+
|
|
85
|
+
updated_at: Optional[str] = None
|
|
86
|
+
"""Last update date of the report"""
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
class VoiceCreateResponse(BaseModel):
|
|
90
|
+
data: Optional[Data] = None
|
|
91
|
+
"""Response object for CDR detailed report"""
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
5
|
+
|
|
6
|
+
from ....._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["VoiceDeleteResponse", "Data", "DataFilter"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class DataFilter(BaseModel):
|
|
12
|
+
billing_group: Optional[str] = None
|
|
13
|
+
"""Billing group UUID to filter by"""
|
|
14
|
+
|
|
15
|
+
cld: Optional[str] = None
|
|
16
|
+
"""Called line identification (destination number)"""
|
|
17
|
+
|
|
18
|
+
cld_filter: Optional[Literal["contains", "starts_with", "ends_with"]] = None
|
|
19
|
+
"""Filter type for CLD matching"""
|
|
20
|
+
|
|
21
|
+
cli: Optional[str] = None
|
|
22
|
+
"""Calling line identification (caller ID)"""
|
|
23
|
+
|
|
24
|
+
cli_filter: Optional[Literal["contains", "starts_with", "ends_with"]] = None
|
|
25
|
+
"""Filter type for CLI matching"""
|
|
26
|
+
|
|
27
|
+
filter_type: Optional[Literal["and", "or"]] = None
|
|
28
|
+
"""Logical operator for combining filters"""
|
|
29
|
+
|
|
30
|
+
tags_list: Optional[str] = None
|
|
31
|
+
"""Tag name to filter by"""
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class Data(BaseModel):
|
|
35
|
+
id: Optional[str] = None
|
|
36
|
+
"""Unique identifier for the report"""
|
|
37
|
+
|
|
38
|
+
call_types: Optional[List[int]] = None
|
|
39
|
+
"""List of call types (Inbound = 1, Outbound = 2)"""
|
|
40
|
+
|
|
41
|
+
connections: Optional[List[int]] = None
|
|
42
|
+
"""List of connections"""
|
|
43
|
+
|
|
44
|
+
created_at: Optional[str] = None
|
|
45
|
+
"""Creation date of the report"""
|
|
46
|
+
|
|
47
|
+
end_time: Optional[str] = None
|
|
48
|
+
"""End time in ISO format"""
|
|
49
|
+
|
|
50
|
+
filters: Optional[List[DataFilter]] = None
|
|
51
|
+
"""List of filters"""
|
|
52
|
+
|
|
53
|
+
managed_accounts: Optional[List[str]] = None
|
|
54
|
+
"""List of managed accounts"""
|
|
55
|
+
|
|
56
|
+
record_type: Optional[str] = None
|
|
57
|
+
|
|
58
|
+
record_types: Optional[List[int]] = None
|
|
59
|
+
"""List of record types (Complete = 1, Incomplete = 2, Errors = 3)"""
|
|
60
|
+
|
|
61
|
+
report_name: Optional[str] = None
|
|
62
|
+
"""Name of the report"""
|
|
63
|
+
|
|
64
|
+
report_url: Optional[str] = None
|
|
65
|
+
"""URL to download the report"""
|
|
66
|
+
|
|
67
|
+
retry: Optional[int] = None
|
|
68
|
+
"""Number of retries"""
|
|
69
|
+
|
|
70
|
+
source: Optional[str] = None
|
|
71
|
+
"""Source of the report.
|
|
72
|
+
|
|
73
|
+
Valid values: calls (default), call-control, fax-api, webrtc
|
|
74
|
+
"""
|
|
75
|
+
|
|
76
|
+
start_time: Optional[str] = None
|
|
77
|
+
"""Start time in ISO format"""
|
|
78
|
+
|
|
79
|
+
status: Optional[int] = None
|
|
80
|
+
"""Status of the report (Pending = 1, Complete = 2, Failed = 3, Expired = 4)"""
|
|
81
|
+
|
|
82
|
+
timezone: Optional[str] = None
|
|
83
|
+
"""Timezone for the report"""
|
|
84
|
+
|
|
85
|
+
updated_at: Optional[str] = None
|
|
86
|
+
"""Last update date of the report"""
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
class VoiceDeleteResponse(BaseModel):
|
|
90
|
+
data: Optional[Data] = None
|
|
91
|
+
"""Response object for CDR detailed report"""
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
5
|
+
|
|
6
|
+
from ....._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["VoiceListResponse", "Data", "DataFilter", "Meta"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class DataFilter(BaseModel):
|
|
12
|
+
billing_group: Optional[str] = None
|
|
13
|
+
"""Billing group UUID to filter by"""
|
|
14
|
+
|
|
15
|
+
cld: Optional[str] = None
|
|
16
|
+
"""Called line identification (destination number)"""
|
|
17
|
+
|
|
18
|
+
cld_filter: Optional[Literal["contains", "starts_with", "ends_with"]] = None
|
|
19
|
+
"""Filter type for CLD matching"""
|
|
20
|
+
|
|
21
|
+
cli: Optional[str] = None
|
|
22
|
+
"""Calling line identification (caller ID)"""
|
|
23
|
+
|
|
24
|
+
cli_filter: Optional[Literal["contains", "starts_with", "ends_with"]] = None
|
|
25
|
+
"""Filter type for CLI matching"""
|
|
26
|
+
|
|
27
|
+
filter_type: Optional[Literal["and", "or"]] = None
|
|
28
|
+
"""Logical operator for combining filters"""
|
|
29
|
+
|
|
30
|
+
tags_list: Optional[str] = None
|
|
31
|
+
"""Tag name to filter by"""
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class Data(BaseModel):
|
|
35
|
+
id: Optional[str] = None
|
|
36
|
+
"""Unique identifier for the report"""
|
|
37
|
+
|
|
38
|
+
call_types: Optional[List[int]] = None
|
|
39
|
+
"""List of call types (Inbound = 1, Outbound = 2)"""
|
|
40
|
+
|
|
41
|
+
connections: Optional[List[int]] = None
|
|
42
|
+
"""List of connections"""
|
|
43
|
+
|
|
44
|
+
created_at: Optional[str] = None
|
|
45
|
+
"""Creation date of the report"""
|
|
46
|
+
|
|
47
|
+
end_time: Optional[str] = None
|
|
48
|
+
"""End time in ISO format"""
|
|
49
|
+
|
|
50
|
+
filters: Optional[List[DataFilter]] = None
|
|
51
|
+
"""List of filters"""
|
|
52
|
+
|
|
53
|
+
managed_accounts: Optional[List[str]] = None
|
|
54
|
+
"""List of managed accounts"""
|
|
55
|
+
|
|
56
|
+
record_type: Optional[str] = None
|
|
57
|
+
|
|
58
|
+
record_types: Optional[List[int]] = None
|
|
59
|
+
"""List of record types (Complete = 1, Incomplete = 2, Errors = 3)"""
|
|
60
|
+
|
|
61
|
+
report_name: Optional[str] = None
|
|
62
|
+
"""Name of the report"""
|
|
63
|
+
|
|
64
|
+
report_url: Optional[str] = None
|
|
65
|
+
"""URL to download the report"""
|
|
66
|
+
|
|
67
|
+
retry: Optional[int] = None
|
|
68
|
+
"""Number of retries"""
|
|
69
|
+
|
|
70
|
+
source: Optional[str] = None
|
|
71
|
+
"""Source of the report.
|
|
72
|
+
|
|
73
|
+
Valid values: calls (default), call-control, fax-api, webrtc
|
|
74
|
+
"""
|
|
75
|
+
|
|
76
|
+
start_time: Optional[str] = None
|
|
77
|
+
"""Start time in ISO format"""
|
|
78
|
+
|
|
79
|
+
status: Optional[int] = None
|
|
80
|
+
"""Status of the report (Pending = 1, Complete = 2, Failed = 3, Expired = 4)"""
|
|
81
|
+
|
|
82
|
+
timezone: Optional[str] = None
|
|
83
|
+
"""Timezone for the report"""
|
|
84
|
+
|
|
85
|
+
updated_at: Optional[str] = None
|
|
86
|
+
"""Last update date of the report"""
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
class Meta(BaseModel):
|
|
90
|
+
page_number: Optional[int] = None
|
|
91
|
+
|
|
92
|
+
page_size: Optional[int] = None
|
|
93
|
+
|
|
94
|
+
total_pages: Optional[int] = None
|
|
95
|
+
|
|
96
|
+
total_results: Optional[int] = None
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
class VoiceListResponse(BaseModel):
|
|
100
|
+
data: Optional[List[Data]] = None
|
|
101
|
+
|
|
102
|
+
meta: Optional[Meta] = None
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
|
|
5
|
+
from pydantic import Field as FieldInfo
|
|
6
|
+
|
|
7
|
+
from ....._models import BaseModel
|
|
8
|
+
|
|
9
|
+
__all__ = ["VoiceRetrieveFieldsResponse"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class VoiceRetrieveFieldsResponse(BaseModel):
|
|
13
|
+
billing: Optional[List[str]] = FieldInfo(alias="Billing", default=None)
|
|
14
|
+
"""Cost and billing related information"""
|
|
15
|
+
|
|
16
|
+
interaction_data: Optional[List[str]] = FieldInfo(alias="Interaction Data", default=None)
|
|
17
|
+
"""Fields related to call interaction and basic call information"""
|
|
18
|
+
|
|
19
|
+
number_information: Optional[List[str]] = FieldInfo(alias="Number Information", default=None)
|
|
20
|
+
"""Geographic and routing information for phone numbers"""
|
|
21
|
+
|
|
22
|
+
telephony_data: Optional[List[str]] = FieldInfo(alias="Telephony Data", default=None)
|
|
23
|
+
"""Technical telephony and call control information"""
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
5
|
+
|
|
6
|
+
from ....._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["VoiceRetrieveResponse", "Data", "DataFilter"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class DataFilter(BaseModel):
|
|
12
|
+
billing_group: Optional[str] = None
|
|
13
|
+
"""Billing group UUID to filter by"""
|
|
14
|
+
|
|
15
|
+
cld: Optional[str] = None
|
|
16
|
+
"""Called line identification (destination number)"""
|
|
17
|
+
|
|
18
|
+
cld_filter: Optional[Literal["contains", "starts_with", "ends_with"]] = None
|
|
19
|
+
"""Filter type for CLD matching"""
|
|
20
|
+
|
|
21
|
+
cli: Optional[str] = None
|
|
22
|
+
"""Calling line identification (caller ID)"""
|
|
23
|
+
|
|
24
|
+
cli_filter: Optional[Literal["contains", "starts_with", "ends_with"]] = None
|
|
25
|
+
"""Filter type for CLI matching"""
|
|
26
|
+
|
|
27
|
+
filter_type: Optional[Literal["and", "or"]] = None
|
|
28
|
+
"""Logical operator for combining filters"""
|
|
29
|
+
|
|
30
|
+
tags_list: Optional[str] = None
|
|
31
|
+
"""Tag name to filter by"""
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class Data(BaseModel):
|
|
35
|
+
id: Optional[str] = None
|
|
36
|
+
"""Unique identifier for the report"""
|
|
37
|
+
|
|
38
|
+
call_types: Optional[List[int]] = None
|
|
39
|
+
"""List of call types (Inbound = 1, Outbound = 2)"""
|
|
40
|
+
|
|
41
|
+
connections: Optional[List[int]] = None
|
|
42
|
+
"""List of connections"""
|
|
43
|
+
|
|
44
|
+
created_at: Optional[str] = None
|
|
45
|
+
"""Creation date of the report"""
|
|
46
|
+
|
|
47
|
+
end_time: Optional[str] = None
|
|
48
|
+
"""End time in ISO format"""
|
|
49
|
+
|
|
50
|
+
filters: Optional[List[DataFilter]] = None
|
|
51
|
+
"""List of filters"""
|
|
52
|
+
|
|
53
|
+
managed_accounts: Optional[List[str]] = None
|
|
54
|
+
"""List of managed accounts"""
|
|
55
|
+
|
|
56
|
+
record_type: Optional[str] = None
|
|
57
|
+
|
|
58
|
+
record_types: Optional[List[int]] = None
|
|
59
|
+
"""List of record types (Complete = 1, Incomplete = 2, Errors = 3)"""
|
|
60
|
+
|
|
61
|
+
report_name: Optional[str] = None
|
|
62
|
+
"""Name of the report"""
|
|
63
|
+
|
|
64
|
+
report_url: Optional[str] = None
|
|
65
|
+
"""URL to download the report"""
|
|
66
|
+
|
|
67
|
+
retry: Optional[int] = None
|
|
68
|
+
"""Number of retries"""
|
|
69
|
+
|
|
70
|
+
source: Optional[str] = None
|
|
71
|
+
"""Source of the report.
|
|
72
|
+
|
|
73
|
+
Valid values: calls (default), call-control, fax-api, webrtc
|
|
74
|
+
"""
|
|
75
|
+
|
|
76
|
+
start_time: Optional[str] = None
|
|
77
|
+
"""Start time in ISO format"""
|
|
78
|
+
|
|
79
|
+
status: Optional[int] = None
|
|
80
|
+
"""Status of the report (Pending = 1, Complete = 2, Failed = 3, Expired = 4)"""
|
|
81
|
+
|
|
82
|
+
timezone: Optional[str] = None
|
|
83
|
+
"""Timezone for the report"""
|
|
84
|
+
|
|
85
|
+
updated_at: Optional[str] = None
|
|
86
|
+
"""Last update date of the report"""
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
class VoiceRetrieveResponse(BaseModel):
|
|
90
|
+
data: Optional[Data] = None
|
|
91
|
+
"""Response object for CDR detailed report"""
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Union
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
from typing_extensions import Annotated, TypedDict
|
|
8
|
+
|
|
9
|
+
from ...._utils import PropertyInfo
|
|
10
|
+
|
|
11
|
+
__all__ = ["UsageReportRetrieveSpeechToTextParams"]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class UsageReportRetrieveSpeechToTextParams(TypedDict, total=False):
|
|
15
|
+
end_date: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
16
|
+
|
|
17
|
+
start_date: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
|
|
5
|
+
from ...._models import BaseModel
|
|
6
|
+
|
|
7
|
+
__all__ = ["UsageReportRetrieveSpeechToTextResponse"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class UsageReportRetrieveSpeechToTextResponse(BaseModel):
|
|
11
|
+
data: Optional[object] = None
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from .voice_list_params import VoiceListParams as VoiceListParams
|
|
6
|
+
from .voice_create_params import VoiceCreateParams as VoiceCreateParams
|
|
7
|
+
from .voice_list_response import VoiceListResponse as VoiceListResponse
|
|
8
|
+
from .messaging_list_params import MessagingListParams as MessagingListParams
|
|
9
|
+
from .voice_create_response import VoiceCreateResponse as VoiceCreateResponse
|
|
10
|
+
from .voice_delete_response import VoiceDeleteResponse as VoiceDeleteResponse
|
|
11
|
+
from .messaging_create_params import MessagingCreateParams as MessagingCreateParams
|
|
12
|
+
from .messaging_list_response import MessagingListResponse as MessagingListResponse
|
|
13
|
+
from .voice_retrieve_response import VoiceRetrieveResponse as VoiceRetrieveResponse
|
|
14
|
+
from .messaging_create_response import MessagingCreateResponse as MessagingCreateResponse
|
|
15
|
+
from .messaging_delete_response import MessagingDeleteResponse as MessagingDeleteResponse
|
|
16
|
+
from .number_lookup_list_params import NumberLookupListParams as NumberLookupListParams
|
|
17
|
+
from .messaging_retrieve_response import MessagingRetrieveResponse as MessagingRetrieveResponse
|
|
18
|
+
from .number_lookup_create_params import NumberLookupCreateParams as NumberLookupCreateParams
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Union
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
from typing_extensions import Required, Annotated, TypedDict
|
|
8
|
+
|
|
9
|
+
from ....._types import SequenceNotStr
|
|
10
|
+
from ....._utils import PropertyInfo
|
|
11
|
+
|
|
12
|
+
__all__ = ["MessagingCreateParams"]
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class MessagingCreateParams(TypedDict, total=False):
|
|
16
|
+
aggregation_type: Required[int]
|
|
17
|
+
"""Aggregation type: No aggregation = 0, By Messaging Profile = 1, By Tags = 2"""
|
|
18
|
+
|
|
19
|
+
end_time: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
20
|
+
|
|
21
|
+
managed_accounts: SequenceNotStr[str]
|
|
22
|
+
"""List of managed accounts to include"""
|
|
23
|
+
|
|
24
|
+
profiles: SequenceNotStr[str]
|
|
25
|
+
"""List of messaging profile IDs to filter by"""
|
|
26
|
+
|
|
27
|
+
select_all_managed_accounts: bool
|
|
28
|
+
|
|
29
|
+
start_time: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
|
|
6
|
+
from ....._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["MessagingCreateResponse", "Data"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class Data(BaseModel):
|
|
12
|
+
id: Optional[str] = None
|
|
13
|
+
"""Identifies the resource"""
|
|
14
|
+
|
|
15
|
+
aggregation_type: Optional[int] = None
|
|
16
|
+
"""Aggregation type: No aggregation = 0, By Messaging Profile = 1, By Tags = 2"""
|
|
17
|
+
|
|
18
|
+
connections: Optional[List[int]] = None
|
|
19
|
+
|
|
20
|
+
created_at: Optional[datetime] = None
|
|
21
|
+
|
|
22
|
+
end_time: Optional[datetime] = None
|
|
23
|
+
|
|
24
|
+
profiles: Optional[List[str]] = None
|
|
25
|
+
"""List of messaging profile IDs"""
|
|
26
|
+
|
|
27
|
+
record_type: Optional[str] = None
|
|
28
|
+
|
|
29
|
+
report_url: Optional[str] = None
|
|
30
|
+
|
|
31
|
+
result: Optional[object] = None
|
|
32
|
+
|
|
33
|
+
start_time: Optional[datetime] = None
|
|
34
|
+
|
|
35
|
+
status: Optional[int] = None
|
|
36
|
+
"""Status of the report (Pending = 1, Complete = 2, Failed = 3, Expired = 4)"""
|
|
37
|
+
|
|
38
|
+
updated_at: Optional[datetime] = None
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class MessagingCreateResponse(BaseModel):
|
|
42
|
+
data: Optional[Data] = None
|
|
43
|
+
"""Legacy V2 MDR usage report response"""
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
|
|
6
|
+
from ....._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["MessagingDeleteResponse", "Data"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class Data(BaseModel):
|
|
12
|
+
id: Optional[str] = None
|
|
13
|
+
"""Identifies the resource"""
|
|
14
|
+
|
|
15
|
+
aggregation_type: Optional[int] = None
|
|
16
|
+
"""Aggregation type: No aggregation = 0, By Messaging Profile = 1, By Tags = 2"""
|
|
17
|
+
|
|
18
|
+
connections: Optional[List[int]] = None
|
|
19
|
+
|
|
20
|
+
created_at: Optional[datetime] = None
|
|
21
|
+
|
|
22
|
+
end_time: Optional[datetime] = None
|
|
23
|
+
|
|
24
|
+
profiles: Optional[List[str]] = None
|
|
25
|
+
"""List of messaging profile IDs"""
|
|
26
|
+
|
|
27
|
+
record_type: Optional[str] = None
|
|
28
|
+
|
|
29
|
+
report_url: Optional[str] = None
|
|
30
|
+
|
|
31
|
+
result: Optional[object] = None
|
|
32
|
+
|
|
33
|
+
start_time: Optional[datetime] = None
|
|
34
|
+
|
|
35
|
+
status: Optional[int] = None
|
|
36
|
+
"""Status of the report (Pending = 1, Complete = 2, Failed = 3, Expired = 4)"""
|
|
37
|
+
|
|
38
|
+
updated_at: Optional[datetime] = None
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class MessagingDeleteResponse(BaseModel):
|
|
42
|
+
data: Optional[Data] = None
|
|
43
|
+
"""Legacy V2 MDR usage report response"""
|