sendmux-management 1.0.0__tar.gz

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.
Files changed (132) hide show
  1. sendmux_management-1.0.0/.gitignore +14 -0
  2. sendmux_management-1.0.0/CHANGELOG.md +8 -0
  3. sendmux_management-1.0.0/PKG-INFO +17 -0
  4. sendmux_management-1.0.0/README.md +4 -0
  5. sendmux_management-1.0.0/pyproject.toml +27 -0
  6. sendmux_management-1.0.0/sendmux_management/__init__.py +289 -0
  7. sendmux_management-1.0.0/sendmux_management/api/__init__.py +13 -0
  8. sendmux_management-1.0.0/sendmux_management/api/billing_api.py +864 -0
  9. sendmux_management-1.0.0/sendmux_management/api/domain_filters_api.py +642 -0
  10. sendmux_management-1.0.0/sendmux_management/api/domains_api.py +1704 -0
  11. sendmux_management-1.0.0/sendmux_management/api/emails_api.py +1036 -0
  12. sendmux_management-1.0.0/sendmux_management/api/inboxes_api.py +680 -0
  13. sendmux_management-1.0.0/sendmux_management/api/mailbox_filters_api.py +642 -0
  14. sendmux_management-1.0.0/sendmux_management/api/mailboxes_api.py +2683 -0
  15. sendmux_management-1.0.0/sendmux_management/api/sending_accounts_api.py +3905 -0
  16. sendmux_management-1.0.0/sendmux_management/api/webhooks_api.py +2691 -0
  17. sendmux_management-1.0.0/sendmux_management/api_client.py +804 -0
  18. sendmux_management-1.0.0/sendmux_management/api_response.py +21 -0
  19. sendmux_management-1.0.0/sendmux_management/client.py +46 -0
  20. sendmux_management-1.0.0/sendmux_management/configuration.py +606 -0
  21. sendmux_management-1.0.0/sendmux_management/exceptions.py +218 -0
  22. sendmux_management-1.0.0/sendmux_management/models/__init__.py +125 -0
  23. sendmux_management-1.0.0/sendmux_management/models/api_error.py +100 -0
  24. sendmux_management-1.0.0/sendmux_management/models/api_error_detail.py +92 -0
  25. sendmux_management-1.0.0/sendmux_management/models/api_error_error.py +113 -0
  26. sendmux_management-1.0.0/sendmux_management/models/api_error_meta.py +88 -0
  27. sendmux_management-1.0.0/sendmux_management/models/balance.py +107 -0
  28. sendmux_management-1.0.0/sendmux_management/models/balance_auto_topup.py +111 -0
  29. sendmux_management-1.0.0/sendmux_management/models/balance_response.py +100 -0
  30. sendmux_management-1.0.0/sendmux_management/models/cursor_pagination.py +90 -0
  31. sendmux_management-1.0.0/sendmux_management/models/delivery_log_item.py +171 -0
  32. sendmux_management-1.0.0/sendmux_management/models/delivery_log_item_cursor_list_response.py +110 -0
  33. sendmux_management-1.0.0/sendmux_management/models/delivery_log_item_response.py +100 -0
  34. sendmux_management-1.0.0/sendmux_management/models/domain_deleted_response.py +100 -0
  35. sendmux_management-1.0.0/sendmux_management/models/domain_deleted_response_all_of_data.py +90 -0
  36. sendmux_management-1.0.0/sendmux_management/models/domain_item_cursor_list_response.py +110 -0
  37. sendmux_management-1.0.0/sendmux_management/models/domain_item_response.py +100 -0
  38. sendmux_management-1.0.0/sendmux_management/models/domain_verify_response.py +100 -0
  39. sendmux_management-1.0.0/sendmux_management/models/email_metrics.py +108 -0
  40. sendmux_management-1.0.0/sendmux_management/models/email_metrics_comparison.py +102 -0
  41. sendmux_management-1.0.0/sendmux_management/models/email_metrics_comparison_change_pct.py +96 -0
  42. sendmux_management-1.0.0/sendmux_management/models/email_metrics_response.py +100 -0
  43. sendmux_management-1.0.0/sendmux_management/models/email_metrics_summary.py +96 -0
  44. sendmux_management-1.0.0/sendmux_management/models/email_metrics_timeseries_inner.py +98 -0
  45. sendmux_management-1.0.0/sendmux_management/models/filter_rule.py +105 -0
  46. sendmux_management-1.0.0/sendmux_management/models/filter_state.py +105 -0
  47. sendmux_management-1.0.0/sendmux_management/models/filter_state_response.py +100 -0
  48. sendmux_management-1.0.0/sendmux_management/models/incoming_log_item.py +158 -0
  49. sendmux_management-1.0.0/sendmux_management/models/incoming_log_item_cursor_list_response.py +110 -0
  50. sendmux_management-1.0.0/sendmux_management/models/incoming_log_item_response.py +100 -0
  51. sendmux_management-1.0.0/sendmux_management/models/mailbox.py +119 -0
  52. sendmux_management-1.0.0/sendmux_management/models/mailbox_app_password_result.py +92 -0
  53. sendmux_management-1.0.0/sendmux_management/models/mailbox_app_password_result_credential.py +102 -0
  54. sendmux_management-1.0.0/sendmux_management/models/mailbox_app_password_result_response.py +100 -0
  55. sendmux_management-1.0.0/sendmux_management/models/mailbox_create_result.py +110 -0
  56. sendmux_management-1.0.0/sendmux_management/models/mailbox_create_result_response.py +100 -0
  57. sendmux_management-1.0.0/sendmux_management/models/mailbox_credential.py +102 -0
  58. sendmux_management-1.0.0/sendmux_management/models/mailbox_deleted_response.py +100 -0
  59. sendmux_management-1.0.0/sendmux_management/models/mailbox_domain.py +124 -0
  60. sendmux_management-1.0.0/sendmux_management/models/mailbox_domain_dns_records.py +121 -0
  61. sendmux_management-1.0.0/sendmux_management/models/mailbox_domain_mx_record.py +90 -0
  62. sendmux_management-1.0.0/sendmux_management/models/mailbox_domain_name_value_record.py +90 -0
  63. sendmux_management-1.0.0/sendmux_management/models/mailbox_domain_verify_checks.py +94 -0
  64. sendmux_management-1.0.0/sendmux_management/models/mailbox_domain_verify_result.py +103 -0
  65. sendmux_management-1.0.0/sendmux_management/models/mailbox_item_cursor_list_response.py +110 -0
  66. sendmux_management-1.0.0/sendmux_management/models/mailbox_item_response.py +100 -0
  67. sendmux_management-1.0.0/sendmux_management/models/mailbox_key_deleted_response.py +100 -0
  68. sendmux_management-1.0.0/sendmux_management/models/mailbox_send_scope.py +99 -0
  69. sendmux_management-1.0.0/sendmux_management/models/management_create_domain_request.py +88 -0
  70. sendmux_management-1.0.0/sendmux_management/models/management_create_mailbox_key_request.py +89 -0
  71. sendmux_management-1.0.0/sendmux_management/models/management_create_mailbox_request.py +99 -0
  72. sendmux_management-1.0.0/sendmux_management/models/management_create_mailbox_request_send_scope.py +100 -0
  73. sendmux_management-1.0.0/sendmux_management/models/management_test_webhook200_response.py +100 -0
  74. sendmux_management-1.0.0/sendmux_management/models/provider_allowed_actions.py +96 -0
  75. sendmux_management-1.0.0/sendmux_management/models/provider_create_body.py +149 -0
  76. sendmux_management-1.0.0/sendmux_management/models/provider_create_body_quotas.py +107 -0
  77. sendmux_management-1.0.0/sendmux_management/models/provider_create_body_quotas_per_day.py +137 -0
  78. sendmux_management-1.0.0/sendmux_management/models/provider_create_body_quotas_per_day_any_of.py +91 -0
  79. sendmux_management-1.0.0/sendmux_management/models/provider_deleted.py +90 -0
  80. sendmux_management-1.0.0/sendmux_management/models/provider_deleted_response.py +100 -0
  81. sendmux_management-1.0.0/sendmux_management/models/provider_item.py +232 -0
  82. sendmux_management-1.0.0/sendmux_management/models/provider_item_cursor_list_response.py +110 -0
  83. sendmux_management-1.0.0/sendmux_management/models/provider_item_response.py +100 -0
  84. sendmux_management-1.0.0/sendmux_management/models/provider_limits.py +98 -0
  85. sendmux_management-1.0.0/sendmux_management/models/provider_limits_response.py +100 -0
  86. sendmux_management-1.0.0/sendmux_management/models/provider_quota_range.py +91 -0
  87. sendmux_management-1.0.0/sendmux_management/models/provider_quotas.py +127 -0
  88. sendmux_management-1.0.0/sendmux_management/models/provider_stats.py +108 -0
  89. sendmux_management-1.0.0/sendmux_management/models/provider_stats_response.py +100 -0
  90. sendmux_management-1.0.0/sendmux_management/models/provider_status_counts.py +94 -0
  91. sendmux_management-1.0.0/sendmux_management/models/provider_test_result.py +95 -0
  92. sendmux_management-1.0.0/sendmux_management/models/provider_test_result_response.py +100 -0
  93. sendmux_management-1.0.0/sendmux_management/models/provider_type_counts.py +94 -0
  94. sendmux_management-1.0.0/sendmux_management/models/provider_update_body.py +152 -0
  95. sendmux_management-1.0.0/sendmux_management/models/provider_usage.py +105 -0
  96. sendmux_management-1.0.0/sendmux_management/models/provider_usage_item.py +101 -0
  97. sendmux_management-1.0.0/sendmux_management/models/provider_usage_response.py +100 -0
  98. sendmux_management-1.0.0/sendmux_management/models/resource_limit_snapshot.py +112 -0
  99. sendmux_management-1.0.0/sendmux_management/models/response_meta.py +88 -0
  100. sendmux_management-1.0.0/sendmux_management/models/sending_account_limit_request.py +94 -0
  101. sendmux_management-1.0.0/sendmux_management/models/sending_account_limit_request_response.py +100 -0
  102. sendmux_management-1.0.0/sendmux_management/models/set_filter_state_body.py +106 -0
  103. sendmux_management-1.0.0/sendmux_management/models/shared_amazon_ses_limit.py +128 -0
  104. sendmux_management-1.0.0/sendmux_management/models/shared_amazon_ses_limit_request.py +125 -0
  105. sendmux_management-1.0.0/sendmux_management/models/shared_amazon_ses_limit_request_create.py +98 -0
  106. sendmux_management-1.0.0/sendmux_management/models/shared_amazon_ses_limit_request_create_request.py +125 -0
  107. sendmux_management-1.0.0/sendmux_management/models/shared_amazon_ses_limit_request_create_response.py +100 -0
  108. sendmux_management-1.0.0/sendmux_management/models/shared_amazon_ses_limit_request_page.py +103 -0
  109. sendmux_management-1.0.0/sendmux_management/models/shared_amazon_ses_limit_request_page_response.py +100 -0
  110. sendmux_management-1.0.0/sendmux_management/models/spend_summary.py +103 -0
  111. sendmux_management-1.0.0/sendmux_management/models/spend_summary_response.py +100 -0
  112. sendmux_management-1.0.0/sendmux_management/models/success_envelope.py +90 -0
  113. sendmux_management-1.0.0/sendmux_management/models/transaction.py +124 -0
  114. sendmux_management-1.0.0/sendmux_management/models/transaction_cursor_list_response.py +110 -0
  115. sendmux_management-1.0.0/sendmux_management/models/update_mailbox_body.py +102 -0
  116. sendmux_management-1.0.0/sendmux_management/models/webhook_create_body.py +109 -0
  117. sendmux_management-1.0.0/sendmux_management/models/webhook_deleted_response.py +100 -0
  118. sendmux_management-1.0.0/sendmux_management/models/webhook_delivery_attempt.py +158 -0
  119. sendmux_management-1.0.0/sendmux_management/models/webhook_delivery_attempt_cursor_list_response.py +110 -0
  120. sendmux_management-1.0.0/sendmux_management/models/webhook_delivery_payload.py +112 -0
  121. sendmux_management-1.0.0/sendmux_management/models/webhook_delivery_payload_response.py +100 -0
  122. sendmux_management-1.0.0/sendmux_management/models/webhook_event_data.py +206 -0
  123. sendmux_management-1.0.0/sendmux_management/models/webhook_event_payload.py +107 -0
  124. sendmux_management-1.0.0/sendmux_management/models/webhook_filters.py +88 -0
  125. sendmux_management-1.0.0/sendmux_management/models/webhook_subscription.py +121 -0
  126. sendmux_management-1.0.0/sendmux_management/models/webhook_subscription_cursor_list_response.py +110 -0
  127. sendmux_management-1.0.0/sendmux_management/models/webhook_subscription_response.py +100 -0
  128. sendmux_management-1.0.0/sendmux_management/models/webhook_subscription_with_secret.py +123 -0
  129. sendmux_management-1.0.0/sendmux_management/models/webhook_subscription_with_secret_response.py +100 -0
  130. sendmux_management-1.0.0/sendmux_management/models/webhook_test_response.py +88 -0
  131. sendmux_management-1.0.0/sendmux_management/models/webhook_update_body.py +117 -0
  132. sendmux_management-1.0.0/sendmux_management/rest.py +263 -0
@@ -0,0 +1,14 @@
1
+ node_modules/
2
+ dist/
3
+ .tmp/
4
+ coverage/
5
+ .DS_Store
6
+ *.log
7
+ *.codegen.json
8
+ .codegen/
9
+ *.tsbuildinfo
10
+ .phpunit.result.cache
11
+ __pycache__/
12
+ *.py[cod]
13
+ vendor/
14
+ .bundle/
@@ -0,0 +1,8 @@
1
+ # Changelog
2
+
3
+ ## 1.0.0 (2026-06-01)
4
+
5
+
6
+ ### Features
7
+
8
+ * **python-sdk:** add generated Python packages ([82c4a84](https://github.com/Sendmux/sendmux-sdk/commit/82c4a84976b4d9802f993b07302430546a323543))
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: sendmux-management
3
+ Version: 1.0.0
4
+ Summary: Generated Python client for the Sendmux Management API.
5
+ Project-URL: Repository, https://github.com/Sendmux/sendmux-sdk
6
+ Requires-Python: >=3.10
7
+ Requires-Dist: pydantic<3,>=2
8
+ Requires-Dist: python-dateutil>=2.8.2
9
+ Requires-Dist: sendmux-core<2.0.0,>=1.0.0
10
+ Requires-Dist: typing-extensions>=4.7.1
11
+ Requires-Dist: urllib3<3,>=2.3.0
12
+ Description-Content-Type: text/markdown
13
+
14
+ # sendmux-management
15
+
16
+ Generated Python client for the Sendmux Management API.
17
+
@@ -0,0 +1,4 @@
1
+ # sendmux-management
2
+
3
+ Generated Python client for the Sendmux Management API.
4
+
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.27"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "sendmux-management"
7
+ version = "1.0.0"
8
+ description = "Generated Python client for the Sendmux Management API."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ dependencies = [
12
+ "pydantic>=2,<3",
13
+ "python-dateutil>=2.8.2",
14
+ "sendmux-core>=1.0.0,<2.0.0",
15
+ "typing-extensions>=4.7.1",
16
+ "urllib3>=2.3.0,<3",
17
+ ]
18
+
19
+ [project.urls]
20
+ Repository = "https://github.com/Sendmux/sendmux-sdk"
21
+
22
+ [tool.hatch.build.targets.sdist]
23
+ core-metadata-version = "2.4"
24
+
25
+ [tool.hatch.build.targets.wheel]
26
+ core-metadata-version = "2.4"
27
+ packages = ["sendmux_management"]
@@ -0,0 +1,289 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Sendmux API
7
+
8
+ Programmatic access to your Sendmux email infrastructure.
9
+
10
+ The version of the OpenAPI document: 1.0.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "1.0.0"
18
+
19
+ # Define package exports
20
+ __all__ = [
21
+ "BillingApi",
22
+ "DomainFiltersApi",
23
+ "DomainsApi",
24
+ "EmailsApi",
25
+ "InboxesApi",
26
+ "MailboxFiltersApi",
27
+ "MailboxesApi",
28
+ "SendingAccountsApi",
29
+ "WebhooksApi",
30
+ "ApiResponse",
31
+ "ApiClient",
32
+ "Configuration",
33
+ "OpenApiException",
34
+ "ApiTypeError",
35
+ "ApiValueError",
36
+ "ApiKeyError",
37
+ "ApiAttributeError",
38
+ "ApiException",
39
+ "ApiError",
40
+ "ApiErrorDetail",
41
+ "ApiErrorError",
42
+ "ApiErrorMeta",
43
+ "Balance",
44
+ "BalanceAutoTopup",
45
+ "BalanceResponse",
46
+ "CursorPagination",
47
+ "DeliveryLogItem",
48
+ "DeliveryLogItemCursorListResponse",
49
+ "DeliveryLogItemResponse",
50
+ "DomainDeletedResponse",
51
+ "DomainDeletedResponseAllOfData",
52
+ "DomainItemCursorListResponse",
53
+ "DomainItemResponse",
54
+ "DomainVerifyResponse",
55
+ "EmailMetrics",
56
+ "EmailMetricsComparison",
57
+ "EmailMetricsComparisonChangePct",
58
+ "EmailMetricsResponse",
59
+ "EmailMetricsSummary",
60
+ "EmailMetricsTimeseriesInner",
61
+ "FilterRule",
62
+ "FilterState",
63
+ "FilterStateResponse",
64
+ "IncomingLogItem",
65
+ "IncomingLogItemCursorListResponse",
66
+ "IncomingLogItemResponse",
67
+ "Mailbox",
68
+ "MailboxAppPasswordResult",
69
+ "MailboxAppPasswordResultCredential",
70
+ "MailboxAppPasswordResultResponse",
71
+ "MailboxCreateResult",
72
+ "MailboxCreateResultResponse",
73
+ "MailboxCredential",
74
+ "MailboxDeletedResponse",
75
+ "MailboxDomain",
76
+ "MailboxDomainDnsRecords",
77
+ "MailboxDomainMxRecord",
78
+ "MailboxDomainNameValueRecord",
79
+ "MailboxDomainVerifyChecks",
80
+ "MailboxDomainVerifyResult",
81
+ "MailboxItemCursorListResponse",
82
+ "MailboxItemResponse",
83
+ "MailboxKeyDeletedResponse",
84
+ "MailboxSendScope",
85
+ "ManagementCreateDomainRequest",
86
+ "ManagementCreateMailboxKeyRequest",
87
+ "ManagementCreateMailboxRequest",
88
+ "ManagementCreateMailboxRequestSendScope",
89
+ "ManagementTestWebhook200Response",
90
+ "ProviderAllowedActions",
91
+ "ProviderCreateBody",
92
+ "ProviderCreateBodyQuotas",
93
+ "ProviderCreateBodyQuotasPerDay",
94
+ "ProviderCreateBodyQuotasPerDayAnyOf",
95
+ "ProviderDeleted",
96
+ "ProviderDeletedResponse",
97
+ "ProviderItem",
98
+ "ProviderItemCursorListResponse",
99
+ "ProviderItemResponse",
100
+ "ProviderLimits",
101
+ "ProviderLimitsResponse",
102
+ "ProviderQuotaRange",
103
+ "ProviderQuotas",
104
+ "ProviderStats",
105
+ "ProviderStatsResponse",
106
+ "ProviderStatusCounts",
107
+ "ProviderTestResult",
108
+ "ProviderTestResultResponse",
109
+ "ProviderTypeCounts",
110
+ "ProviderUpdateBody",
111
+ "ProviderUsage",
112
+ "ProviderUsageItem",
113
+ "ProviderUsageResponse",
114
+ "ResourceLimitSnapshot",
115
+ "ResponseMeta",
116
+ "SendingAccountLimitRequest",
117
+ "SendingAccountLimitRequestResponse",
118
+ "SetFilterStateBody",
119
+ "SharedAmazonSesLimit",
120
+ "SharedAmazonSesLimitRequest",
121
+ "SharedAmazonSesLimitRequestCreate",
122
+ "SharedAmazonSesLimitRequestCreateRequest",
123
+ "SharedAmazonSesLimitRequestCreateResponse",
124
+ "SharedAmazonSesLimitRequestPage",
125
+ "SharedAmazonSesLimitRequestPageResponse",
126
+ "SpendSummary",
127
+ "SpendSummaryResponse",
128
+ "SuccessEnvelope",
129
+ "Transaction",
130
+ "TransactionCursorListResponse",
131
+ "UpdateMailboxBody",
132
+ "WebhookCreateBody",
133
+ "WebhookDeletedResponse",
134
+ "WebhookDeliveryAttempt",
135
+ "WebhookDeliveryAttemptCursorListResponse",
136
+ "WebhookDeliveryPayload",
137
+ "WebhookDeliveryPayloadResponse",
138
+ "WebhookEventData",
139
+ "WebhookEventPayload",
140
+ "WebhookFilters",
141
+ "WebhookSubscription",
142
+ "WebhookSubscriptionCursorListResponse",
143
+ "WebhookSubscriptionResponse",
144
+ "WebhookSubscriptionWithSecret",
145
+ "WebhookSubscriptionWithSecretResponse",
146
+ "WebhookTestResponse",
147
+ "WebhookUpdateBody",
148
+ ]
149
+
150
+ # import apis into sdk package
151
+ from sendmux_management.api.billing_api import BillingApi as BillingApi
152
+ from sendmux_management.api.domain_filters_api import DomainFiltersApi as DomainFiltersApi
153
+ from sendmux_management.api.domains_api import DomainsApi as DomainsApi
154
+ from sendmux_management.api.emails_api import EmailsApi as EmailsApi
155
+ from sendmux_management.api.inboxes_api import InboxesApi as InboxesApi
156
+ from sendmux_management.api.mailbox_filters_api import MailboxFiltersApi as MailboxFiltersApi
157
+ from sendmux_management.api.mailboxes_api import MailboxesApi as MailboxesApi
158
+ from sendmux_management.api.sending_accounts_api import SendingAccountsApi as SendingAccountsApi
159
+ from sendmux_management.api.webhooks_api import WebhooksApi as WebhooksApi
160
+
161
+ # import ApiClient
162
+ from sendmux_management.api_response import ApiResponse as ApiResponse
163
+ from sendmux_management.api_client import ApiClient as ApiClient
164
+ from sendmux_management.configuration import Configuration as Configuration
165
+ from sendmux_management.exceptions import OpenApiException as OpenApiException
166
+ from sendmux_management.exceptions import ApiTypeError as ApiTypeError
167
+ from sendmux_management.exceptions import ApiValueError as ApiValueError
168
+ from sendmux_management.exceptions import ApiKeyError as ApiKeyError
169
+ from sendmux_management.exceptions import ApiAttributeError as ApiAttributeError
170
+ from sendmux_management.exceptions import ApiException as ApiException
171
+
172
+ # import models into sdk package
173
+ from sendmux_management.models.api_error import ApiError as ApiError
174
+ from sendmux_management.models.api_error_detail import ApiErrorDetail as ApiErrorDetail
175
+ from sendmux_management.models.api_error_error import ApiErrorError as ApiErrorError
176
+ from sendmux_management.models.api_error_meta import ApiErrorMeta as ApiErrorMeta
177
+ from sendmux_management.models.balance import Balance as Balance
178
+ from sendmux_management.models.balance_auto_topup import BalanceAutoTopup as BalanceAutoTopup
179
+ from sendmux_management.models.balance_response import BalanceResponse as BalanceResponse
180
+ from sendmux_management.models.cursor_pagination import CursorPagination as CursorPagination
181
+ from sendmux_management.models.delivery_log_item import DeliveryLogItem as DeliveryLogItem
182
+ from sendmux_management.models.delivery_log_item_cursor_list_response import DeliveryLogItemCursorListResponse as DeliveryLogItemCursorListResponse
183
+ from sendmux_management.models.delivery_log_item_response import DeliveryLogItemResponse as DeliveryLogItemResponse
184
+ from sendmux_management.models.domain_deleted_response import DomainDeletedResponse as DomainDeletedResponse
185
+ from sendmux_management.models.domain_deleted_response_all_of_data import DomainDeletedResponseAllOfData as DomainDeletedResponseAllOfData
186
+ from sendmux_management.models.domain_item_cursor_list_response import DomainItemCursorListResponse as DomainItemCursorListResponse
187
+ from sendmux_management.models.domain_item_response import DomainItemResponse as DomainItemResponse
188
+ from sendmux_management.models.domain_verify_response import DomainVerifyResponse as DomainVerifyResponse
189
+ from sendmux_management.models.email_metrics import EmailMetrics as EmailMetrics
190
+ from sendmux_management.models.email_metrics_comparison import EmailMetricsComparison as EmailMetricsComparison
191
+ from sendmux_management.models.email_metrics_comparison_change_pct import EmailMetricsComparisonChangePct as EmailMetricsComparisonChangePct
192
+ from sendmux_management.models.email_metrics_response import EmailMetricsResponse as EmailMetricsResponse
193
+ from sendmux_management.models.email_metrics_summary import EmailMetricsSummary as EmailMetricsSummary
194
+ from sendmux_management.models.email_metrics_timeseries_inner import EmailMetricsTimeseriesInner as EmailMetricsTimeseriesInner
195
+ from sendmux_management.models.filter_rule import FilterRule as FilterRule
196
+ from sendmux_management.models.filter_state import FilterState as FilterState
197
+ from sendmux_management.models.filter_state_response import FilterStateResponse as FilterStateResponse
198
+ from sendmux_management.models.incoming_log_item import IncomingLogItem as IncomingLogItem
199
+ from sendmux_management.models.incoming_log_item_cursor_list_response import IncomingLogItemCursorListResponse as IncomingLogItemCursorListResponse
200
+ from sendmux_management.models.incoming_log_item_response import IncomingLogItemResponse as IncomingLogItemResponse
201
+ from sendmux_management.models.mailbox import Mailbox as Mailbox
202
+ from sendmux_management.models.mailbox_app_password_result import MailboxAppPasswordResult as MailboxAppPasswordResult
203
+ from sendmux_management.models.mailbox_app_password_result_credential import MailboxAppPasswordResultCredential as MailboxAppPasswordResultCredential
204
+ from sendmux_management.models.mailbox_app_password_result_response import MailboxAppPasswordResultResponse as MailboxAppPasswordResultResponse
205
+ from sendmux_management.models.mailbox_create_result import MailboxCreateResult as MailboxCreateResult
206
+ from sendmux_management.models.mailbox_create_result_response import MailboxCreateResultResponse as MailboxCreateResultResponse
207
+ from sendmux_management.models.mailbox_credential import MailboxCredential as MailboxCredential
208
+ from sendmux_management.models.mailbox_deleted_response import MailboxDeletedResponse as MailboxDeletedResponse
209
+ from sendmux_management.models.mailbox_domain import MailboxDomain as MailboxDomain
210
+ from sendmux_management.models.mailbox_domain_dns_records import MailboxDomainDnsRecords as MailboxDomainDnsRecords
211
+ from sendmux_management.models.mailbox_domain_mx_record import MailboxDomainMxRecord as MailboxDomainMxRecord
212
+ from sendmux_management.models.mailbox_domain_name_value_record import MailboxDomainNameValueRecord as MailboxDomainNameValueRecord
213
+ from sendmux_management.models.mailbox_domain_verify_checks import MailboxDomainVerifyChecks as MailboxDomainVerifyChecks
214
+ from sendmux_management.models.mailbox_domain_verify_result import MailboxDomainVerifyResult as MailboxDomainVerifyResult
215
+ from sendmux_management.models.mailbox_item_cursor_list_response import MailboxItemCursorListResponse as MailboxItemCursorListResponse
216
+ from sendmux_management.models.mailbox_item_response import MailboxItemResponse as MailboxItemResponse
217
+ from sendmux_management.models.mailbox_key_deleted_response import MailboxKeyDeletedResponse as MailboxKeyDeletedResponse
218
+ from sendmux_management.models.mailbox_send_scope import MailboxSendScope as MailboxSendScope
219
+ from sendmux_management.models.management_create_domain_request import ManagementCreateDomainRequest as ManagementCreateDomainRequest
220
+ from sendmux_management.models.management_create_mailbox_key_request import ManagementCreateMailboxKeyRequest as ManagementCreateMailboxKeyRequest
221
+ from sendmux_management.models.management_create_mailbox_request import ManagementCreateMailboxRequest as ManagementCreateMailboxRequest
222
+ from sendmux_management.models.management_create_mailbox_request_send_scope import ManagementCreateMailboxRequestSendScope as ManagementCreateMailboxRequestSendScope
223
+ from sendmux_management.models.management_test_webhook200_response import ManagementTestWebhook200Response as ManagementTestWebhook200Response
224
+ from sendmux_management.models.provider_allowed_actions import ProviderAllowedActions as ProviderAllowedActions
225
+ from sendmux_management.models.provider_create_body import ProviderCreateBody as ProviderCreateBody
226
+ from sendmux_management.models.provider_create_body_quotas import ProviderCreateBodyQuotas as ProviderCreateBodyQuotas
227
+ from sendmux_management.models.provider_create_body_quotas_per_day import ProviderCreateBodyQuotasPerDay as ProviderCreateBodyQuotasPerDay
228
+ from sendmux_management.models.provider_create_body_quotas_per_day_any_of import ProviderCreateBodyQuotasPerDayAnyOf as ProviderCreateBodyQuotasPerDayAnyOf
229
+ from sendmux_management.models.provider_deleted import ProviderDeleted as ProviderDeleted
230
+ from sendmux_management.models.provider_deleted_response import ProviderDeletedResponse as ProviderDeletedResponse
231
+ from sendmux_management.models.provider_item import ProviderItem as ProviderItem
232
+ from sendmux_management.models.provider_item_cursor_list_response import ProviderItemCursorListResponse as ProviderItemCursorListResponse
233
+ from sendmux_management.models.provider_item_response import ProviderItemResponse as ProviderItemResponse
234
+ from sendmux_management.models.provider_limits import ProviderLimits as ProviderLimits
235
+ from sendmux_management.models.provider_limits_response import ProviderLimitsResponse as ProviderLimitsResponse
236
+ from sendmux_management.models.provider_quota_range import ProviderQuotaRange as ProviderQuotaRange
237
+ from sendmux_management.models.provider_quotas import ProviderQuotas as ProviderQuotas
238
+ from sendmux_management.models.provider_stats import ProviderStats as ProviderStats
239
+ from sendmux_management.models.provider_stats_response import ProviderStatsResponse as ProviderStatsResponse
240
+ from sendmux_management.models.provider_status_counts import ProviderStatusCounts as ProviderStatusCounts
241
+ from sendmux_management.models.provider_test_result import ProviderTestResult as ProviderTestResult
242
+ from sendmux_management.models.provider_test_result_response import ProviderTestResultResponse as ProviderTestResultResponse
243
+ from sendmux_management.models.provider_type_counts import ProviderTypeCounts as ProviderTypeCounts
244
+ from sendmux_management.models.provider_update_body import ProviderUpdateBody as ProviderUpdateBody
245
+ from sendmux_management.models.provider_usage import ProviderUsage as ProviderUsage
246
+ from sendmux_management.models.provider_usage_item import ProviderUsageItem as ProviderUsageItem
247
+ from sendmux_management.models.provider_usage_response import ProviderUsageResponse as ProviderUsageResponse
248
+ from sendmux_management.models.resource_limit_snapshot import ResourceLimitSnapshot as ResourceLimitSnapshot
249
+ from sendmux_management.models.response_meta import ResponseMeta as ResponseMeta
250
+ from sendmux_management.models.sending_account_limit_request import SendingAccountLimitRequest as SendingAccountLimitRequest
251
+ from sendmux_management.models.sending_account_limit_request_response import SendingAccountLimitRequestResponse as SendingAccountLimitRequestResponse
252
+ from sendmux_management.models.set_filter_state_body import SetFilterStateBody as SetFilterStateBody
253
+ from sendmux_management.models.shared_amazon_ses_limit import SharedAmazonSesLimit as SharedAmazonSesLimit
254
+ from sendmux_management.models.shared_amazon_ses_limit_request import SharedAmazonSesLimitRequest as SharedAmazonSesLimitRequest
255
+ from sendmux_management.models.shared_amazon_ses_limit_request_create import SharedAmazonSesLimitRequestCreate as SharedAmazonSesLimitRequestCreate
256
+ from sendmux_management.models.shared_amazon_ses_limit_request_create_request import SharedAmazonSesLimitRequestCreateRequest as SharedAmazonSesLimitRequestCreateRequest
257
+ from sendmux_management.models.shared_amazon_ses_limit_request_create_response import SharedAmazonSesLimitRequestCreateResponse as SharedAmazonSesLimitRequestCreateResponse
258
+ from sendmux_management.models.shared_amazon_ses_limit_request_page import SharedAmazonSesLimitRequestPage as SharedAmazonSesLimitRequestPage
259
+ from sendmux_management.models.shared_amazon_ses_limit_request_page_response import SharedAmazonSesLimitRequestPageResponse as SharedAmazonSesLimitRequestPageResponse
260
+ from sendmux_management.models.spend_summary import SpendSummary as SpendSummary
261
+ from sendmux_management.models.spend_summary_response import SpendSummaryResponse as SpendSummaryResponse
262
+ from sendmux_management.models.success_envelope import SuccessEnvelope as SuccessEnvelope
263
+ from sendmux_management.models.transaction import Transaction as Transaction
264
+ from sendmux_management.models.transaction_cursor_list_response import TransactionCursorListResponse as TransactionCursorListResponse
265
+ from sendmux_management.models.update_mailbox_body import UpdateMailboxBody as UpdateMailboxBody
266
+ from sendmux_management.models.webhook_create_body import WebhookCreateBody as WebhookCreateBody
267
+ from sendmux_management.models.webhook_deleted_response import WebhookDeletedResponse as WebhookDeletedResponse
268
+ from sendmux_management.models.webhook_delivery_attempt import WebhookDeliveryAttempt as WebhookDeliveryAttempt
269
+ from sendmux_management.models.webhook_delivery_attempt_cursor_list_response import WebhookDeliveryAttemptCursorListResponse as WebhookDeliveryAttemptCursorListResponse
270
+ from sendmux_management.models.webhook_delivery_payload import WebhookDeliveryPayload as WebhookDeliveryPayload
271
+ from sendmux_management.models.webhook_delivery_payload_response import WebhookDeliveryPayloadResponse as WebhookDeliveryPayloadResponse
272
+ from sendmux_management.models.webhook_event_data import WebhookEventData as WebhookEventData
273
+ from sendmux_management.models.webhook_event_payload import WebhookEventPayload as WebhookEventPayload
274
+ from sendmux_management.models.webhook_filters import WebhookFilters as WebhookFilters
275
+ from sendmux_management.models.webhook_subscription import WebhookSubscription as WebhookSubscription
276
+ from sendmux_management.models.webhook_subscription_cursor_list_response import WebhookSubscriptionCursorListResponse as WebhookSubscriptionCursorListResponse
277
+ from sendmux_management.models.webhook_subscription_response import WebhookSubscriptionResponse as WebhookSubscriptionResponse
278
+ from sendmux_management.models.webhook_subscription_with_secret import WebhookSubscriptionWithSecret as WebhookSubscriptionWithSecret
279
+ from sendmux_management.models.webhook_subscription_with_secret_response import WebhookSubscriptionWithSecretResponse as WebhookSubscriptionWithSecretResponse
280
+ from sendmux_management.models.webhook_test_response import WebhookTestResponse as WebhookTestResponse
281
+ from sendmux_management.models.webhook_update_body import WebhookUpdateBody as WebhookUpdateBody
282
+
283
+
284
+ from sendmux_management.client import (
285
+ DEFAULT_BASE_URL,
286
+ SendmuxManagementApiClient,
287
+ configure_management,
288
+ create_management_client,
289
+ )
@@ -0,0 +1,13 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from sendmux_management.api.billing_api import BillingApi
5
+ from sendmux_management.api.domain_filters_api import DomainFiltersApi
6
+ from sendmux_management.api.domains_api import DomainsApi
7
+ from sendmux_management.api.emails_api import EmailsApi
8
+ from sendmux_management.api.inboxes_api import InboxesApi
9
+ from sendmux_management.api.mailbox_filters_api import MailboxFiltersApi
10
+ from sendmux_management.api.mailboxes_api import MailboxesApi
11
+ from sendmux_management.api.sending_accounts_api import SendingAccountsApi
12
+ from sendmux_management.api.webhooks_api import WebhooksApi
13
+