diff --git a/.github/workflows/project.yml b/.github/workflows/project.yml index 69960fe..e6d4603 100644 --- a/.github/workflows/project.yml +++ b/.github/workflows/project.yml @@ -14,4 +14,4 @@ jobs: with: # SDK Server Project project-url: https://github.com/orgs/OneSignal/projects/11 - github-token: ${{ secrets.GH_PROJECTS_TOKEN }} + github-token: ${{ secrets.GH_PUSH_TOKEN }} diff --git a/README.md b/README.md index 679d42c..30620cd 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com -- API version: 5.4.0 -- Package version: 5.4.0 +- API version: 5.5.0 +- Package version: 5.5.0 ## Requirements diff --git a/docs/BasicNotification.md b/docs/BasicNotification.md index 1b4edd6..ac837cc 100644 --- a/docs/BasicNotification.md +++ b/docs/BasicNotification.md @@ -109,6 +109,7 @@ Name | Type | Description | Notes **email_preheader** | **str, none_type** | Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. | [optional] **disable_email_click_tracking** | **bool, none_type** | Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked. | [optional] **include_unsubscribed** | **bool** | Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared. | [optional] +**email_bcc** | **[str], none_type** | Channel: Email BCC recipients for the email. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email. | [optional] **sms_from** | **str, none_type** | Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. | [optional] **sms_media_urls** | **[str], none_type** | Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. | [optional] **filters** | [**[FilterExpression], none_type**](FilterExpression.md) | | [optional] diff --git a/docs/BasicNotificationAllOf.md b/docs/BasicNotificationAllOf.md index 6b9507d..c1a66da 100644 --- a/docs/BasicNotificationAllOf.md +++ b/docs/BasicNotificationAllOf.md @@ -96,6 +96,7 @@ Name | Type | Description | Notes **email_preheader** | **str, none_type** | Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. | [optional] **disable_email_click_tracking** | **bool, none_type** | Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked. | [optional] **include_unsubscribed** | **bool** | Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared. | [optional] +**email_bcc** | **[str], none_type** | Channel: Email BCC recipients for the email. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email. | [optional] **sms_from** | **str, none_type** | Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. | [optional] **sms_media_urls** | **[str], none_type** | Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. | [optional] **filters** | [**[FilterExpression], none_type**](FilterExpression.md) | | [optional] diff --git a/docs/CreateTemplateRequest.md b/docs/CreateTemplateRequest.md index dbb5d27..868dc16 100644 --- a/docs/CreateTemplateRequest.md +++ b/docs/CreateTemplateRequest.md @@ -12,6 +12,7 @@ Name | Type | Description | Notes **is_email** | **bool** | Set true for an Email template. | [optional] **email_subject** | **str, none_type** | Subject of the email. | [optional] **email_body** | **str, none_type** | Body of the email (HTML supported). | [optional] +**email_bcc** | **[str], none_type** | BCC recipients for the email template. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email. | [optional] **is_sms** | **bool** | Set true for an SMS template. | [optional] **dynamic_content** | **str, none_type** | JSON string for dynamic content personalization. | [optional] **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] diff --git a/docs/DefaultApi.md b/docs/DefaultApi.md index 2701d4d..e1e4fa9 100644 --- a/docs/DefaultApi.md +++ b/docs/DefaultApi.md @@ -1082,6 +1082,9 @@ with onesignal.ApiClient(configuration) as api_client: is_email=True, email_subject="email_subject_example", email_body="email_body_example", + email_bcc=[ + "email_bcc_example", + ], is_sms=True, dynamic_content="dynamic_content_example", ) @@ -3838,6 +3841,9 @@ with onesignal.ApiClient(configuration) as api_client: is_email=True, email_subject="email_subject_example", email_body="email_body_example", + email_bcc=[ + "email_bcc_example", + ], is_sms=True, dynamic_content="dynamic_content_example", ) diff --git a/docs/Notification.md b/docs/Notification.md index c1e28c6..8420521 100644 --- a/docs/Notification.md +++ b/docs/Notification.md @@ -109,6 +109,7 @@ Name | Type | Description | Notes **email_preheader** | **str, none_type** | Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. | [optional] **disable_email_click_tracking** | **bool, none_type** | Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked. | [optional] **include_unsubscribed** | **bool** | Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared. | [optional] +**email_bcc** | **[str], none_type** | Channel: Email BCC recipients for the email. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email. | [optional] **sms_from** | **str, none_type** | Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. | [optional] **sms_media_urls** | **[str], none_type** | Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. | [optional] **filters** | [**[FilterExpression], none_type**](FilterExpression.md) | | [optional] diff --git a/docs/NotificationWithMeta.md b/docs/NotificationWithMeta.md index 68b27d3..46def70 100644 --- a/docs/NotificationWithMeta.md +++ b/docs/NotificationWithMeta.md @@ -109,6 +109,7 @@ Name | Type | Description | Notes **email_preheader** | **str, none_type** | Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. | [optional] **disable_email_click_tracking** | **bool, none_type** | Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked. | [optional] **include_unsubscribed** | **bool** | Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared. | [optional] +**email_bcc** | **[str], none_type** | BCC recipients that were set on this email notification. | [optional] **sms_from** | **str, none_type** | Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. | [optional] **sms_media_urls** | **[str], none_type** | Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. | [optional] **filters** | [**[FilterExpression], none_type**](FilterExpression.md) | | [optional] @@ -130,6 +131,7 @@ Name | Type | Description | Notes **completed_at** | **int, none_type** | Unix timestamp indicating when notification delivery completed. The delivery duration from start to finish can be calculated with completed_at - send_after. | [optional] **platform_delivery_stats** | [**PlatformDeliveryData**](PlatformDeliveryData.md) | | [optional] **canceled** | **bool** | Indicates whether the notification was canceled before it could be sent. | [optional] +**bcc_sent** | **int, none_type** | Number of BCC copies successfully sent for this notification. | [optional] **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] [[Back to API list]](https://github.com/OneSignal/onesignal-python-api#full-api-reference) [[Back to README]](https://github.com/OneSignal/onesignal-python-api) diff --git a/docs/NotificationWithMetaAllOf.md b/docs/NotificationWithMetaAllOf.md index d8c96d7..8fe7a06 100644 --- a/docs/NotificationWithMetaAllOf.md +++ b/docs/NotificationWithMetaAllOf.md @@ -16,6 +16,8 @@ Name | Type | Description | Notes **received** | **int, none_type** | Confirmed Deliveries number of devices that received the push notification. Paid Feature Only. Free accounts will see 0. | [optional] **throttle_rate_per_minute** | **int, none_type** | number of push notifications sent per minute. Paid Feature Only. If throttling is not enabled for the app or the notification, and for free accounts, null is returned. Refer to Throttling for more details. | [optional] **canceled** | **bool** | Indicates whether the notification was canceled before it could be sent. | [optional] +**email_bcc** | **[str], none_type** | BCC recipients that were set on this email notification. | [optional] +**bcc_sent** | **int, none_type** | Number of BCC copies successfully sent for this notification. | [optional] **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] [[Back to API list]](https://github.com/OneSignal/onesignal-python-api#full-api-reference) [[Back to README]](https://github.com/OneSignal/onesignal-python-api) diff --git a/docs/UpdateTemplateRequest.md b/docs/UpdateTemplateRequest.md index 96e92f5..ee7ea5f 100644 --- a/docs/UpdateTemplateRequest.md +++ b/docs/UpdateTemplateRequest.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **is_email** | **bool** | Set true for an Email template. | [optional] **email_subject** | **str, none_type** | Subject of the email. | [optional] **email_body** | **str, none_type** | Body of the email (HTML supported). | [optional] +**email_bcc** | **[str], none_type** | BCC recipients for the email template. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email. | [optional] **is_sms** | **bool** | Set true for an SMS template. | [optional] **dynamic_content** | **str, none_type** | JSON string for dynamic content personalization. | [optional] **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] diff --git a/onesignal/__init__.py b/onesignal/__init__.py index d941af6..7ffe725 100644 --- a/onesignal/__init__.py +++ b/onesignal/__init__.py @@ -5,13 +5,13 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ -__version__ = "5.4.0" +__version__ = "5.5.0" # import ApiClient from onesignal.api_client import ApiClient diff --git a/onesignal/api/default_api.py b/onesignal/api/default_api.py index 24b62fe..26cd0b0 100644 --- a/onesignal/api/default_api.py +++ b/onesignal/api/default_api.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/api_client.py b/onesignal/api_client.py index f31ec31..d202119 100644 --- a/onesignal/api_client.py +++ b/onesignal/api_client.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ @@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/5.4.0/python' + self.user_agent = 'OpenAPI-Generator/5.5.0/python' def __enter__(self): return self @@ -142,7 +142,7 @@ def __call_api( # header parameters header_params = header_params or {} header_params.update(self.default_headers) - header_params['OS-Usage-Data'] = "kind=sdk, sdk-name=onesignal-python, version=5.4.0" + header_params['OS-Usage-Data'] = "kind=sdk, sdk-name=onesignal-python, version=5.5.0" if self.cookie: header_params['Cookie'] = self.cookie if header_params: diff --git a/onesignal/configuration.py b/onesignal/configuration.py index 4f1eb7a..de6f29d 100644 --- a/onesignal/configuration.py +++ b/onesignal/configuration.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ @@ -399,8 +399,8 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 5.4.0\n"\ - "SDK Package Version: 5.4.0".\ + "Version of the API: 5.5.0\n"\ + "SDK Package Version: 5.5.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/onesignal/exceptions.py b/onesignal/exceptions.py index 7657bd9..c9f35d5 100644 --- a/onesignal/exceptions.py +++ b/onesignal/exceptions.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/api_key_token.py b/onesignal/model/api_key_token.py index 49fbca9..fa5148a 100644 --- a/onesignal/model/api_key_token.py +++ b/onesignal/model/api_key_token.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/api_key_tokens_list_response.py b/onesignal/model/api_key_tokens_list_response.py index e33c103..049179a 100644 --- a/onesignal/model/api_key_tokens_list_response.py +++ b/onesignal/model/api_key_tokens_list_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/app.py b/onesignal/model/app.py index 820094a..e9cd34e 100644 --- a/onesignal/model/app.py +++ b/onesignal/model/app.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/apps.py b/onesignal/model/apps.py index dc81008..1326f0e 100644 --- a/onesignal/model/apps.py +++ b/onesignal/model/apps.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/basic_notification.py b/onesignal/model/basic_notification.py index 7177aec..6559b98 100644 --- a/onesignal/model/basic_notification.py +++ b/onesignal/model/basic_notification.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ @@ -101,6 +101,9 @@ class BasicNotification(ModelComposed): } validations = { + ('email_bcc',): { + 'max_items': 5, + }, } @cached_property @@ -231,6 +234,7 @@ def openapi_types(): 'email_preheader': (str, none_type,), # noqa: E501 'disable_email_click_tracking': (bool, none_type,), # noqa: E501 'include_unsubscribed': (bool,), # noqa: E501 + 'email_bcc': ([str], none_type,), # noqa: E501 'sms_from': (str, none_type,), # noqa: E501 'sms_media_urls': ([str], none_type,), # noqa: E501 'filters': ([FilterExpression], none_type,), # noqa: E501 @@ -353,6 +357,7 @@ def discriminator(): 'email_preheader': 'email_preheader', # noqa: E501 'disable_email_click_tracking': 'disable_email_click_tracking', # noqa: E501 'include_unsubscribed': 'include_unsubscribed', # noqa: E501 + 'email_bcc': 'email_bcc', # noqa: E501 'sms_from': 'sms_from', # noqa: E501 'sms_media_urls': 'sms_media_urls', # noqa: E501 'filters': 'filters', # noqa: E501 @@ -510,6 +515,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 email_preheader (str, none_type): Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. . [optional] # noqa: E501 disable_email_click_tracking (bool, none_type): Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked.. [optional] # noqa: E501 include_unsubscribed (bool): Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared.. [optional] # noqa: E501 + email_bcc ([str], none_type): Channel: Email BCC recipients for the email. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email. . [optional] # noqa: E501 sms_from (str, none_type): Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. . [optional] # noqa: E501 sms_media_urls ([str], none_type): Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. . [optional] # noqa: E501 filters ([FilterExpression], none_type): [optional] # noqa: E501 @@ -727,6 +733,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 email_preheader (str, none_type): Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. . [optional] # noqa: E501 disable_email_click_tracking (bool, none_type): Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked.. [optional] # noqa: E501 include_unsubscribed (bool): Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared.. [optional] # noqa: E501 + email_bcc ([str], none_type): Channel: Email BCC recipients for the email. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email. . [optional] # noqa: E501 sms_from (str, none_type): Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. . [optional] # noqa: E501 sms_media_urls ([str], none_type): Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. . [optional] # noqa: E501 filters ([FilterExpression], none_type): [optional] # noqa: E501 diff --git a/onesignal/model/basic_notification_all_of.py b/onesignal/model/basic_notification_all_of.py index f20b68e..8fac7b7 100644 --- a/onesignal/model/basic_notification_all_of.py +++ b/onesignal/model/basic_notification_all_of.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ @@ -90,6 +90,9 @@ class BasicNotificationAllOf(ModelNormal): } validations = { + ('email_bcc',): { + 'max_items': 5, + }, } @cached_property @@ -207,6 +210,7 @@ def openapi_types(): 'email_preheader': (str, none_type,), # noqa: E501 'disable_email_click_tracking': (bool, none_type,), # noqa: E501 'include_unsubscribed': (bool,), # noqa: E501 + 'email_bcc': ([str], none_type,), # noqa: E501 'sms_from': (str, none_type,), # noqa: E501 'sms_media_urls': ([str], none_type,), # noqa: E501 'filters': ([FilterExpression], none_type,), # noqa: E501 @@ -316,6 +320,7 @@ def discriminator(): 'email_preheader': 'email_preheader', # noqa: E501 'disable_email_click_tracking': 'disable_email_click_tracking', # noqa: E501 'include_unsubscribed': 'include_unsubscribed', # noqa: E501 + 'email_bcc': 'email_bcc', # noqa: E501 'sms_from': 'sms_from', # noqa: E501 'sms_media_urls': 'sms_media_urls', # noqa: E501 'filters': 'filters', # noqa: E501 @@ -462,6 +467,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 email_preheader (str, none_type): Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. . [optional] # noqa: E501 disable_email_click_tracking (bool, none_type): Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked.. [optional] # noqa: E501 include_unsubscribed (bool): Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared.. [optional] # noqa: E501 + email_bcc ([str], none_type): Channel: Email BCC recipients for the email. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email. . [optional] # noqa: E501 sms_from (str, none_type): Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. . [optional] # noqa: E501 sms_media_urls ([str], none_type): Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. . [optional] # noqa: E501 filters ([FilterExpression], none_type): [optional] # noqa: E501 @@ -648,6 +654,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 email_preheader (str, none_type): Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. . [optional] # noqa: E501 disable_email_click_tracking (bool, none_type): Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked.. [optional] # noqa: E501 include_unsubscribed (bool): Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared.. [optional] # noqa: E501 + email_bcc ([str], none_type): Channel: Email BCC recipients for the email. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email. . [optional] # noqa: E501 sms_from (str, none_type): Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. . [optional] # noqa: E501 sms_media_urls ([str], none_type): Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. . [optional] # noqa: E501 filters ([FilterExpression], none_type): [optional] # noqa: E501 diff --git a/onesignal/model/basic_notification_all_of_android_background_layout.py b/onesignal/model/basic_notification_all_of_android_background_layout.py index a1931e8..7505aad 100644 --- a/onesignal/model/basic_notification_all_of_android_background_layout.py +++ b/onesignal/model/basic_notification_all_of_android_background_layout.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/button.py b/onesignal/model/button.py index 3a5f754..77ae571 100644 --- a/onesignal/model/button.py +++ b/onesignal/model/button.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/copy_template_request.py b/onesignal/model/copy_template_request.py index 32d8e02..635ca24 100644 --- a/onesignal/model/copy_template_request.py +++ b/onesignal/model/copy_template_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/create_api_key_request.py b/onesignal/model/create_api_key_request.py index a0b8f2b..19f2c56 100644 --- a/onesignal/model/create_api_key_request.py +++ b/onesignal/model/create_api_key_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/create_api_key_response.py b/onesignal/model/create_api_key_response.py index 8d02181..e772ca6 100644 --- a/onesignal/model/create_api_key_response.py +++ b/onesignal/model/create_api_key_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/create_notification_success_response.py b/onesignal/model/create_notification_success_response.py index 5de3676..37187ac 100644 --- a/onesignal/model/create_notification_success_response.py +++ b/onesignal/model/create_notification_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/create_segment_conflict_response.py b/onesignal/model/create_segment_conflict_response.py index 4bdca99..80283bd 100644 --- a/onesignal/model/create_segment_conflict_response.py +++ b/onesignal/model/create_segment_conflict_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/create_segment_success_response.py b/onesignal/model/create_segment_success_response.py index 1da3bf3..a10361f 100644 --- a/onesignal/model/create_segment_success_response.py +++ b/onesignal/model/create_segment_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/create_template_request.py b/onesignal/model/create_template_request.py index f108d8b..8800174 100644 --- a/onesignal/model/create_template_request.py +++ b/onesignal/model/create_template_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ @@ -63,6 +63,9 @@ class CreateTemplateRequest(ModelNormal): } validations = { + ('email_bcc',): { + 'max_items': 5, + }, } @cached_property @@ -96,6 +99,7 @@ def openapi_types(): 'is_email': (bool,), # noqa: E501 'email_subject': (str, none_type,), # noqa: E501 'email_body': (str, none_type,), # noqa: E501 + 'email_bcc': ([str], none_type,), # noqa: E501 'is_sms': (bool,), # noqa: E501 'dynamic_content': (str, none_type,), # noqa: E501 } @@ -114,6 +118,7 @@ def discriminator(): 'is_email': 'isEmail', # noqa: E501 'email_subject': 'email_subject', # noqa: E501 'email_body': 'email_body', # noqa: E501 + 'email_bcc': 'email_bcc', # noqa: E501 'is_sms': 'isSMS', # noqa: E501 'dynamic_content': 'dynamic_content', # noqa: E501 } @@ -169,6 +174,7 @@ def _from_openapi_data(cls, app_id, name, contents, *args, **kwargs): # noqa: E is_email (bool): Set true for an Email template.. [optional] # noqa: E501 email_subject (str, none_type): Subject of the email.. [optional] # noqa: E501 email_body (str, none_type): Body of the email (HTML supported).. [optional] # noqa: E501 + email_bcc ([str], none_type): BCC recipients for the email template. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email.. [optional] # noqa: E501 is_sms (bool): Set true for an SMS template.. [optional] # noqa: E501 dynamic_content (str, none_type): JSON string for dynamic content personalization.. [optional] # noqa: E501 """ @@ -269,6 +275,7 @@ def __init__(self, app_id, name, contents, *args, **kwargs): # noqa: E501 is_email (bool): Set true for an Email template.. [optional] # noqa: E501 email_subject (str, none_type): Subject of the email.. [optional] # noqa: E501 email_body (str, none_type): Body of the email (HTML supported).. [optional] # noqa: E501 + email_bcc ([str], none_type): BCC recipients for the email template. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email.. [optional] # noqa: E501 is_sms (bool): Set true for an SMS template.. [optional] # noqa: E501 dynamic_content (str, none_type): JSON string for dynamic content personalization.. [optional] # noqa: E501 """ diff --git a/onesignal/model/create_user_conflict_response.py b/onesignal/model/create_user_conflict_response.py index 1698f03..96b3da7 100644 --- a/onesignal/model/create_user_conflict_response.py +++ b/onesignal/model/create_user_conflict_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/create_user_conflict_response_errors_inner.py b/onesignal/model/create_user_conflict_response_errors_inner.py index 5f6de6c..070a29a 100644 --- a/onesignal/model/create_user_conflict_response_errors_inner.py +++ b/onesignal/model/create_user_conflict_response_errors_inner.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/create_user_conflict_response_errors_items_meta.py b/onesignal/model/create_user_conflict_response_errors_items_meta.py index 7282908..48cc42e 100644 --- a/onesignal/model/create_user_conflict_response_errors_items_meta.py +++ b/onesignal/model/create_user_conflict_response_errors_items_meta.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/custom_event.py b/onesignal/model/custom_event.py index 6126590..425d922 100644 --- a/onesignal/model/custom_event.py +++ b/onesignal/model/custom_event.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/custom_events_request.py b/onesignal/model/custom_events_request.py index d097d4c..34d3964 100644 --- a/onesignal/model/custom_events_request.py +++ b/onesignal/model/custom_events_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/delivery_data.py b/onesignal/model/delivery_data.py index e1a784a..6020cef 100644 --- a/onesignal/model/delivery_data.py +++ b/onesignal/model/delivery_data.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/export_events_success_response.py b/onesignal/model/export_events_success_response.py index e12b30c..80a7efa 100644 --- a/onesignal/model/export_events_success_response.py +++ b/onesignal/model/export_events_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/export_subscriptions_request_body.py b/onesignal/model/export_subscriptions_request_body.py index 47dc050..f760d36 100644 --- a/onesignal/model/export_subscriptions_request_body.py +++ b/onesignal/model/export_subscriptions_request_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/export_subscriptions_success_response.py b/onesignal/model/export_subscriptions_success_response.py index aaab0ae..92b9452 100644 --- a/onesignal/model/export_subscriptions_success_response.py +++ b/onesignal/model/export_subscriptions_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/filter.py b/onesignal/model/filter.py index 0867a95..3e52389 100644 --- a/onesignal/model/filter.py +++ b/onesignal/model/filter.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/filter_expression.py b/onesignal/model/filter_expression.py index 7e89302..3c6c8e7 100644 --- a/onesignal/model/filter_expression.py +++ b/onesignal/model/filter_expression.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/generic_error.py b/onesignal/model/generic_error.py index eb084f6..637ce4f 100644 --- a/onesignal/model/generic_error.py +++ b/onesignal/model/generic_error.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/generic_success_bool_response.py b/onesignal/model/generic_success_bool_response.py index e3f2371..c12a50e 100644 --- a/onesignal/model/generic_success_bool_response.py +++ b/onesignal/model/generic_success_bool_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/get_notification_history_request_body.py b/onesignal/model/get_notification_history_request_body.py index 3ceec6b..a0a5046 100644 --- a/onesignal/model/get_notification_history_request_body.py +++ b/onesignal/model/get_notification_history_request_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/get_segments_success_response.py b/onesignal/model/get_segments_success_response.py index f64497f..d01a1d9 100644 --- a/onesignal/model/get_segments_success_response.py +++ b/onesignal/model/get_segments_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/identity_object.py b/onesignal/model/identity_object.py index 1cf6401..4ced5d7 100644 --- a/onesignal/model/identity_object.py +++ b/onesignal/model/identity_object.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/include_aliases.py b/onesignal/model/include_aliases.py index 4d07708..e47bdf8 100644 --- a/onesignal/model/include_aliases.py +++ b/onesignal/model/include_aliases.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/language_string_map.py b/onesignal/model/language_string_map.py index 9305cbb..18d6d41 100644 --- a/onesignal/model/language_string_map.py +++ b/onesignal/model/language_string_map.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/notification.py b/onesignal/model/notification.py index 67c06e3..4ed8f32 100644 --- a/onesignal/model/notification.py +++ b/onesignal/model/notification.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ @@ -101,6 +101,9 @@ class Notification(ModelComposed): } validations = { + ('email_bcc',): { + 'max_items': 5, + }, } @cached_property @@ -231,6 +234,7 @@ def openapi_types(): 'email_preheader': (str, none_type,), # noqa: E501 'disable_email_click_tracking': (bool, none_type,), # noqa: E501 'include_unsubscribed': (bool,), # noqa: E501 + 'email_bcc': ([str], none_type,), # noqa: E501 'sms_from': (str, none_type,), # noqa: E501 'sms_media_urls': ([str], none_type,), # noqa: E501 'filters': ([FilterExpression], none_type,), # noqa: E501 @@ -354,6 +358,7 @@ def discriminator(): 'email_preheader': 'email_preheader', # noqa: E501 'disable_email_click_tracking': 'disable_email_click_tracking', # noqa: E501 'include_unsubscribed': 'include_unsubscribed', # noqa: E501 + 'email_bcc': 'email_bcc', # noqa: E501 'sms_from': 'sms_from', # noqa: E501 'sms_media_urls': 'sms_media_urls', # noqa: E501 'filters': 'filters', # noqa: E501 @@ -512,6 +517,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 email_preheader (str, none_type): Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. . [optional] # noqa: E501 disable_email_click_tracking (bool, none_type): Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked.. [optional] # noqa: E501 include_unsubscribed (bool): Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared.. [optional] # noqa: E501 + email_bcc ([str], none_type): Channel: Email BCC recipients for the email. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email. . [optional] # noqa: E501 sms_from (str, none_type): Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. . [optional] # noqa: E501 sms_media_urls ([str], none_type): Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. . [optional] # noqa: E501 filters ([FilterExpression], none_type): [optional] # noqa: E501 @@ -730,6 +736,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 email_preheader (str, none_type): Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. . [optional] # noqa: E501 disable_email_click_tracking (bool, none_type): Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked.. [optional] # noqa: E501 include_unsubscribed (bool): Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared.. [optional] # noqa: E501 + email_bcc ([str], none_type): Channel: Email BCC recipients for the email. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email. . [optional] # noqa: E501 sms_from (str, none_type): Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. . [optional] # noqa: E501 sms_media_urls ([str], none_type): Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. . [optional] # noqa: E501 filters ([FilterExpression], none_type): [optional] # noqa: E501 diff --git a/onesignal/model/notification_all_of.py b/onesignal/model/notification_all_of.py index 663fb89..d04c112 100644 --- a/onesignal/model/notification_all_of.py +++ b/onesignal/model/notification_all_of.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/notification_history_success_response.py b/onesignal/model/notification_history_success_response.py index 6d9bae8..490ad5d 100644 --- a/onesignal/model/notification_history_success_response.py +++ b/onesignal/model/notification_history_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/notification_slice.py b/onesignal/model/notification_slice.py index 0405ec1..965c846 100644 --- a/onesignal/model/notification_slice.py +++ b/onesignal/model/notification_slice.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/notification_target.py b/onesignal/model/notification_target.py index 8cbcba9..532dff9 100644 --- a/onesignal/model/notification_target.py +++ b/onesignal/model/notification_target.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/notification_with_meta.py b/onesignal/model/notification_with_meta.py index 68df7f8..3c234af 100644 --- a/onesignal/model/notification_with_meta.py +++ b/onesignal/model/notification_with_meta.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ @@ -239,6 +239,7 @@ def openapi_types(): 'email_preheader': (str, none_type,), # noqa: E501 'disable_email_click_tracking': (bool, none_type,), # noqa: E501 'include_unsubscribed': (bool,), # noqa: E501 + 'email_bcc': ([str], none_type,), # noqa: E501 'sms_from': (str, none_type,), # noqa: E501 'sms_media_urls': ([str], none_type,), # noqa: E501 'filters': ([FilterExpression], none_type,), # noqa: E501 @@ -260,6 +261,7 @@ def openapi_types(): 'completed_at': (int, none_type,), # noqa: E501 'platform_delivery_stats': (PlatformDeliveryData,), # noqa: E501 'canceled': (bool,), # noqa: E501 + 'bcc_sent': (int, none_type,), # noqa: E501 } @cached_property @@ -373,6 +375,7 @@ def discriminator(): 'email_preheader': 'email_preheader', # noqa: E501 'disable_email_click_tracking': 'disable_email_click_tracking', # noqa: E501 'include_unsubscribed': 'include_unsubscribed', # noqa: E501 + 'email_bcc': 'email_bcc', # noqa: E501 'sms_from': 'sms_from', # noqa: E501 'sms_media_urls': 'sms_media_urls', # noqa: E501 'filters': 'filters', # noqa: E501 @@ -394,6 +397,7 @@ def discriminator(): 'completed_at': 'completed_at', # noqa: E501 'platform_delivery_stats': 'platform_delivery_stats', # noqa: E501 'canceled': 'canceled', # noqa: E501 + 'bcc_sent': 'bcc_sent', # noqa: E501 } read_only_vars = { @@ -542,6 +546,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 email_preheader (str, none_type): Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. . [optional] # noqa: E501 disable_email_click_tracking (bool, none_type): Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked.. [optional] # noqa: E501 include_unsubscribed (bool): Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared.. [optional] # noqa: E501 + email_bcc ([str], none_type): BCC recipients that were set on this email notification.. [optional] # noqa: E501 sms_from (str, none_type): Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. . [optional] # noqa: E501 sms_media_urls ([str], none_type): Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. . [optional] # noqa: E501 filters ([FilterExpression], none_type): [optional] # noqa: E501 @@ -563,6 +568,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 completed_at (int, none_type): Unix timestamp indicating when notification delivery completed. The delivery duration from start to finish can be calculated with completed_at - send_after.. [optional] # noqa: E501 platform_delivery_stats (PlatformDeliveryData): [optional] # noqa: E501 canceled (bool): Indicates whether the notification was canceled before it could be sent.. [optional] # noqa: E501 + bcc_sent (int, none_type): Number of BCC copies successfully sent for this notification.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -771,6 +777,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 email_preheader (str, none_type): Channel: Email The preheader text of the email. Preheader is the preview text displayed immediately after an email subject that provides additional context about the email content. If not specified, will default to null. . [optional] # noqa: E501 disable_email_click_tracking (bool, none_type): Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked.. [optional] # noqa: E501 include_unsubscribed (bool): Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP's list of unsubscribed emails to be cleared.. [optional] # noqa: E501 + email_bcc ([str], none_type): BCC recipients that were set on this email notification.. [optional] # noqa: E501 sms_from (str, none_type): Channel: SMS Phone Number used to send SMS. Should be a registered Twilio phone number in E.164 format. . [optional] # noqa: E501 sms_media_urls ([str], none_type): Channel: SMS URLs for the media files to be attached to the SMS content. Limit: 10 media urls with a total max. size of 5MBs. . [optional] # noqa: E501 filters ([FilterExpression], none_type): [optional] # noqa: E501 @@ -792,6 +799,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 completed_at (int, none_type): Unix timestamp indicating when notification delivery completed. The delivery duration from start to finish can be calculated with completed_at - send_after.. [optional] # noqa: E501 platform_delivery_stats (PlatformDeliveryData): [optional] # noqa: E501 canceled (bool): Indicates whether the notification was canceled before it could be sent.. [optional] # noqa: E501 + bcc_sent (int, none_type): Number of BCC copies successfully sent for this notification.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/onesignal/model/notification_with_meta_all_of.py b/onesignal/model/notification_with_meta_all_of.py index 0ba6556..6a0896f 100644 --- a/onesignal/model/notification_with_meta_all_of.py +++ b/onesignal/model/notification_with_meta_all_of.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ @@ -100,6 +100,8 @@ def openapi_types(): 'received': (int, none_type,), # noqa: E501 'throttle_rate_per_minute': (int, none_type,), # noqa: E501 'canceled': (bool,), # noqa: E501 + 'email_bcc': ([str], none_type,), # noqa: E501 + 'bcc_sent': (int, none_type,), # noqa: E501 } @cached_property @@ -120,6 +122,8 @@ def discriminator(): 'received': 'received', # noqa: E501 'throttle_rate_per_minute': 'throttle_rate_per_minute', # noqa: E501 'canceled': 'canceled', # noqa: E501 + 'email_bcc': 'email_bcc', # noqa: E501 + 'bcc_sent': 'bcc_sent', # noqa: E501 } read_only_vars = { @@ -175,6 +179,8 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 received (int, none_type): Confirmed Deliveries number of devices that received the push notification. Paid Feature Only. Free accounts will see 0.. [optional] # noqa: E501 throttle_rate_per_minute (int, none_type): number of push notifications sent per minute. Paid Feature Only. If throttling is not enabled for the app or the notification, and for free accounts, null is returned. Refer to Throttling for more details.. [optional] # noqa: E501 canceled (bool): Indicates whether the notification was canceled before it could be sent.. [optional] # noqa: E501 + email_bcc ([str], none_type): BCC recipients that were set on this email notification.. [optional] # noqa: E501 + bcc_sent (int, none_type): Number of BCC copies successfully sent for this notification.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -272,6 +278,8 @@ def __init__(self, *args, **kwargs): # noqa: E501 received (int, none_type): Confirmed Deliveries number of devices that received the push notification. Paid Feature Only. Free accounts will see 0.. [optional] # noqa: E501 throttle_rate_per_minute (int, none_type): number of push notifications sent per minute. Paid Feature Only. If throttling is not enabled for the app or the notification, and for free accounts, null is returned. Refer to Throttling for more details.. [optional] # noqa: E501 canceled (bool): Indicates whether the notification was canceled before it could be sent.. [optional] # noqa: E501 + email_bcc ([str], none_type): BCC recipients that were set on this email notification.. [optional] # noqa: E501 + bcc_sent (int, none_type): Number of BCC copies successfully sent for this notification.. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/onesignal/model/operator.py b/onesignal/model/operator.py index 6d93d1c..667e861 100644 --- a/onesignal/model/operator.py +++ b/onesignal/model/operator.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/outcome_data.py b/onesignal/model/outcome_data.py index 481562c..c56ec11 100644 --- a/onesignal/model/outcome_data.py +++ b/onesignal/model/outcome_data.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/outcomes_data.py b/onesignal/model/outcomes_data.py index 6ed0251..829a330 100644 --- a/onesignal/model/outcomes_data.py +++ b/onesignal/model/outcomes_data.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/platform_delivery_data.py b/onesignal/model/platform_delivery_data.py index 3e5eb1a..04bcdf8 100644 --- a/onesignal/model/platform_delivery_data.py +++ b/onesignal/model/platform_delivery_data.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/platform_delivery_data_email_all_of.py b/onesignal/model/platform_delivery_data_email_all_of.py index 5e01cf0..ff1a3ea 100644 --- a/onesignal/model/platform_delivery_data_email_all_of.py +++ b/onesignal/model/platform_delivery_data_email_all_of.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/platform_delivery_data_sms_all_of.py b/onesignal/model/platform_delivery_data_sms_all_of.py index 97f19aa..08e5b58 100644 --- a/onesignal/model/platform_delivery_data_sms_all_of.py +++ b/onesignal/model/platform_delivery_data_sms_all_of.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/properties_body.py b/onesignal/model/properties_body.py index 6734e24..4436d6f 100644 --- a/onesignal/model/properties_body.py +++ b/onesignal/model/properties_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/properties_deltas.py b/onesignal/model/properties_deltas.py index 003a5eb..c0e3942 100644 --- a/onesignal/model/properties_deltas.py +++ b/onesignal/model/properties_deltas.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/properties_object.py b/onesignal/model/properties_object.py index 4c9aa0c..89e4315 100644 --- a/onesignal/model/properties_object.py +++ b/onesignal/model/properties_object.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/purchase.py b/onesignal/model/purchase.py index eb12d0e..8997b57 100644 --- a/onesignal/model/purchase.py +++ b/onesignal/model/purchase.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/rate_limit_error.py b/onesignal/model/rate_limit_error.py index 9098138..e850a7c 100644 --- a/onesignal/model/rate_limit_error.py +++ b/onesignal/model/rate_limit_error.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/segment.py b/onesignal/model/segment.py index 2b11b32..d4c7a44 100644 --- a/onesignal/model/segment.py +++ b/onesignal/model/segment.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/segment_data.py b/onesignal/model/segment_data.py index 2b12d7b..c97d705 100644 --- a/onesignal/model/segment_data.py +++ b/onesignal/model/segment_data.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/segment_notification_target.py b/onesignal/model/segment_notification_target.py index ec34a79..560d6a0 100644 --- a/onesignal/model/segment_notification_target.py +++ b/onesignal/model/segment_notification_target.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/start_live_activity_request.py b/onesignal/model/start_live_activity_request.py index f0f30ab..89f222e 100644 --- a/onesignal/model/start_live_activity_request.py +++ b/onesignal/model/start_live_activity_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/start_live_activity_success_response.py b/onesignal/model/start_live_activity_success_response.py index 36e5b67..f9fe4a3 100644 --- a/onesignal/model/start_live_activity_success_response.py +++ b/onesignal/model/start_live_activity_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/subscription.py b/onesignal/model/subscription.py index 5f3d7fa..449b5f9 100644 --- a/onesignal/model/subscription.py +++ b/onesignal/model/subscription.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/subscription_body.py b/onesignal/model/subscription_body.py index ddb8cd1..34821a6 100644 --- a/onesignal/model/subscription_body.py +++ b/onesignal/model/subscription_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/subscription_notification_target.py b/onesignal/model/subscription_notification_target.py index a7dfef2..e14b5f7 100644 --- a/onesignal/model/subscription_notification_target.py +++ b/onesignal/model/subscription_notification_target.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/template_resource.py b/onesignal/model/template_resource.py index 9ba37e0..6f11601 100644 --- a/onesignal/model/template_resource.py +++ b/onesignal/model/template_resource.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/templates_list_response.py b/onesignal/model/templates_list_response.py index d38db51..93b5897 100644 --- a/onesignal/model/templates_list_response.py +++ b/onesignal/model/templates_list_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/transfer_subscription_request_body.py b/onesignal/model/transfer_subscription_request_body.py index 37132e1..dba116b 100644 --- a/onesignal/model/transfer_subscription_request_body.py +++ b/onesignal/model/transfer_subscription_request_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/update_api_key_request.py b/onesignal/model/update_api_key_request.py index 4fcf785..da30302 100644 --- a/onesignal/model/update_api_key_request.py +++ b/onesignal/model/update_api_key_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/update_live_activity_request.py b/onesignal/model/update_live_activity_request.py index 8665e26..4d99cd4 100644 --- a/onesignal/model/update_live_activity_request.py +++ b/onesignal/model/update_live_activity_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/update_live_activity_success_response.py b/onesignal/model/update_live_activity_success_response.py index ff98180..f6b83d8 100644 --- a/onesignal/model/update_live_activity_success_response.py +++ b/onesignal/model/update_live_activity_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/update_template_request.py b/onesignal/model/update_template_request.py index a924641..ec916e0 100644 --- a/onesignal/model/update_template_request.py +++ b/onesignal/model/update_template_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ @@ -63,6 +63,9 @@ class UpdateTemplateRequest(ModelNormal): } validations = { + ('email_bcc',): { + 'max_items': 5, + }, } @cached_property @@ -95,6 +98,7 @@ def openapi_types(): 'is_email': (bool,), # noqa: E501 'email_subject': (str, none_type,), # noqa: E501 'email_body': (str, none_type,), # noqa: E501 + 'email_bcc': ([str], none_type,), # noqa: E501 'is_sms': (bool,), # noqa: E501 'dynamic_content': (str, none_type,), # noqa: E501 } @@ -112,6 +116,7 @@ def discriminator(): 'is_email': 'isEmail', # noqa: E501 'email_subject': 'email_subject', # noqa: E501 'email_body': 'email_body', # noqa: E501 + 'email_bcc': 'email_bcc', # noqa: E501 'is_sms': 'isSMS', # noqa: E501 'dynamic_content': 'dynamic_content', # noqa: E501 } @@ -164,6 +169,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 is_email (bool): Set true for an Email template.. [optional] # noqa: E501 email_subject (str, none_type): Subject of the email.. [optional] # noqa: E501 email_body (str, none_type): Body of the email (HTML supported).. [optional] # noqa: E501 + email_bcc ([str], none_type): BCC recipients for the email template. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email.. [optional] # noqa: E501 is_sms (bool): Set true for an SMS template.. [optional] # noqa: E501 dynamic_content (str, none_type): JSON string for dynamic content personalization.. [optional] # noqa: E501 """ @@ -258,6 +264,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 is_email (bool): Set true for an Email template.. [optional] # noqa: E501 email_subject (str, none_type): Subject of the email.. [optional] # noqa: E501 email_body (str, none_type): Body of the email (HTML supported).. [optional] # noqa: E501 + email_bcc ([str], none_type): BCC recipients for the email template. Maximum 5 addresses. Only supported when the email service provider is OneSignal Email.. [optional] # noqa: E501 is_sms (bool): Set true for an SMS template.. [optional] # noqa: E501 dynamic_content (str, none_type): JSON string for dynamic content personalization.. [optional] # noqa: E501 """ diff --git a/onesignal/model/update_user_request.py b/onesignal/model/update_user_request.py index 8ac31eb..070769a 100644 --- a/onesignal/model/update_user_request.py +++ b/onesignal/model/update_user_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/user.py b/onesignal/model/user.py index d4b4957..eb33d73 100644 --- a/onesignal/model/user.py +++ b/onesignal/model/user.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/user_identity_body.py b/onesignal/model/user_identity_body.py index 82da64b..b8e5a76 100644 --- a/onesignal/model/user_identity_body.py +++ b/onesignal/model/user_identity_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model/web_button.py b/onesignal/model/web_button.py index a4b4e8c..94e961b 100644 --- a/onesignal/model/web_button.py +++ b/onesignal/model/web_button.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/model_utils.py b/onesignal/model_utils.py index 4b0526e..72d4034 100644 --- a/onesignal/model_utils.py +++ b/onesignal/model_utils.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/onesignal/rest.py b/onesignal/rest.py index 19341e6..2533227 100644 --- a/onesignal/rest.py +++ b/onesignal/rest.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/setup.py b/setup.py index a1d01ff..20a0da6 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ @@ -12,7 +12,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "onesignal_python_api" -VERSION = "5.4.0" +VERSION = "5.5.0" # To install the library, run the following # # python setup.py install diff --git a/test/test_api_key_token.py b/test/test_api_key_token.py index 1b6bc01..0ef7180 100644 --- a/test/test_api_key_token.py +++ b/test/test_api_key_token.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_key_tokens_list_response.py b/test/test_api_key_tokens_list_response.py index 1689ac6..9bbe148 100644 --- a/test/test_api_key_tokens_list_response.py +++ b/test/test_api_key_tokens_list_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_app.py b/test/test_app.py index d591061..57dd7bd 100644 --- a/test/test_app.py +++ b/test/test_app.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_apps.py b/test/test_apps.py index 4f5a30d..aa1c7ec 100644 --- a/test/test_apps.py +++ b/test/test_apps.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_basic_notification.py b/test/test_basic_notification.py index eab2ec6..19c8fc2 100644 --- a/test/test_basic_notification.py +++ b/test/test_basic_notification.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_basic_notification_all_of.py b/test/test_basic_notification_all_of.py index 0001b70..67bf56a 100644 --- a/test/test_basic_notification_all_of.py +++ b/test/test_basic_notification_all_of.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_basic_notification_all_of_android_background_layout.py b/test/test_basic_notification_all_of_android_background_layout.py index b77508e..298936d 100644 --- a/test/test_basic_notification_all_of_android_background_layout.py +++ b/test/test_basic_notification_all_of_android_background_layout.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_button.py b/test/test_button.py index 407bf69..9aa97ca 100644 --- a/test/test_button.py +++ b/test/test_button.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_copy_template_request.py b/test/test_copy_template_request.py index 500ca5b..729f848 100644 --- a/test/test_copy_template_request.py +++ b/test/test_copy_template_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_create_api_key_request.py b/test/test_create_api_key_request.py index 2f13a96..e1bb33a 100644 --- a/test/test_create_api_key_request.py +++ b/test/test_create_api_key_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_create_api_key_response.py b/test/test_create_api_key_response.py index fbfb792..cd317fe 100644 --- a/test/test_create_api_key_response.py +++ b/test/test_create_api_key_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_create_notification_success_response.py b/test/test_create_notification_success_response.py index 183a3e2..94417c9 100644 --- a/test/test_create_notification_success_response.py +++ b/test/test_create_notification_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_create_segment_conflict_response.py b/test/test_create_segment_conflict_response.py index 49150ec..22740cb 100644 --- a/test/test_create_segment_conflict_response.py +++ b/test/test_create_segment_conflict_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_create_segment_success_response.py b/test/test_create_segment_success_response.py index 0e343bf..a4c47dc 100644 --- a/test/test_create_segment_success_response.py +++ b/test/test_create_segment_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_create_template_request.py b/test/test_create_template_request.py index c2fda32..27ac02f 100644 --- a/test/test_create_template_request.py +++ b/test/test_create_template_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_create_user_conflict_response.py b/test/test_create_user_conflict_response.py index 9fb7002..5df1fd7 100644 --- a/test/test_create_user_conflict_response.py +++ b/test/test_create_user_conflict_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_create_user_conflict_response_errors_inner.py b/test/test_create_user_conflict_response_errors_inner.py index adfdf05..55a9203 100644 --- a/test/test_create_user_conflict_response_errors_inner.py +++ b/test/test_create_user_conflict_response_errors_inner.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_create_user_conflict_response_errors_items_meta.py b/test/test_create_user_conflict_response_errors_items_meta.py index 2d7088e..cb4425a 100644 --- a/test/test_create_user_conflict_response_errors_items_meta.py +++ b/test/test_create_user_conflict_response_errors_items_meta.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_custom_event.py b/test/test_custom_event.py index 3d4529d..87e1bc2 100644 --- a/test/test_custom_event.py +++ b/test/test_custom_event.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_custom_events_request.py b/test/test_custom_events_request.py index 876dc09..406d17f 100644 --- a/test/test_custom_events_request.py +++ b/test/test_custom_events_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_default_api.py b/test/test_default_api.py index 9c1c26a..e35a61c 100644 --- a/test/test_default_api.py +++ b/test/test_default_api.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_delivery_data.py b/test/test_delivery_data.py index 022093b..dec7174 100644 --- a/test/test_delivery_data.py +++ b/test/test_delivery_data.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_export_events_success_response.py b/test/test_export_events_success_response.py index f3e2a3f..9142dbd 100644 --- a/test/test_export_events_success_response.py +++ b/test/test_export_events_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_export_subscriptions_request_body.py b/test/test_export_subscriptions_request_body.py index 15e19c2..6d25719 100644 --- a/test/test_export_subscriptions_request_body.py +++ b/test/test_export_subscriptions_request_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_export_subscriptions_success_response.py b/test/test_export_subscriptions_success_response.py index 637a979..e4fb806 100644 --- a/test/test_export_subscriptions_success_response.py +++ b/test/test_export_subscriptions_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_filter.py b/test/test_filter.py index 1a099a1..ac76945 100644 --- a/test/test_filter.py +++ b/test/test_filter.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_filter_expression.py b/test/test_filter_expression.py index b635897..4d52bd7 100644 --- a/test/test_filter_expression.py +++ b/test/test_filter_expression.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_generic_error.py b/test/test_generic_error.py index f329488..bfc77b0 100644 --- a/test/test_generic_error.py +++ b/test/test_generic_error.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_generic_success_bool_response.py b/test/test_generic_success_bool_response.py index 9ed8fdc..fe4bf41 100644 --- a/test/test_generic_success_bool_response.py +++ b/test/test_generic_success_bool_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_get_notification_history_request_body.py b/test/test_get_notification_history_request_body.py index 4b2fa4f..8131fee 100644 --- a/test/test_get_notification_history_request_body.py +++ b/test/test_get_notification_history_request_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_get_segments_success_response.py b/test/test_get_segments_success_response.py index a1be35f..c9f9dec 100644 --- a/test/test_get_segments_success_response.py +++ b/test/test_get_segments_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_identity_object.py b/test/test_identity_object.py index e85e520..34f9c38 100644 --- a/test/test_identity_object.py +++ b/test/test_identity_object.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_include_aliases.py b/test/test_include_aliases.py index e1e4de3..47f74d5 100644 --- a/test/test_include_aliases.py +++ b/test/test_include_aliases.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_language_string_map.py b/test/test_language_string_map.py index 520a027..ab0eb8e 100644 --- a/test/test_language_string_map.py +++ b/test/test_language_string_map.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_notification.py b/test/test_notification.py index 2c3998d..f6f7186 100644 --- a/test/test_notification.py +++ b/test/test_notification.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_notification_all_of.py b/test/test_notification_all_of.py index c57b75a..96d652f 100644 --- a/test/test_notification_all_of.py +++ b/test/test_notification_all_of.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_notification_history_success_response.py b/test/test_notification_history_success_response.py index b3751b2..0b2fcd5 100644 --- a/test/test_notification_history_success_response.py +++ b/test/test_notification_history_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_notification_slice.py b/test/test_notification_slice.py index 1a4456a..4f016cf 100644 --- a/test/test_notification_slice.py +++ b/test/test_notification_slice.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_notification_target.py b/test/test_notification_target.py index 511c918..a439ae7 100644 --- a/test/test_notification_target.py +++ b/test/test_notification_target.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_notification_with_meta.py b/test/test_notification_with_meta.py index 650ed2b..79c71fe 100644 --- a/test/test_notification_with_meta.py +++ b/test/test_notification_with_meta.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_notification_with_meta_all_of.py b/test/test_notification_with_meta_all_of.py index 8d7d8ee..9daa3c0 100644 --- a/test/test_notification_with_meta_all_of.py +++ b/test/test_notification_with_meta_all_of.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_operator.py b/test/test_operator.py index 957c4dc..9e4ce4c 100644 --- a/test/test_operator.py +++ b/test/test_operator.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_outcome_data.py b/test/test_outcome_data.py index 2e1844e..d32f661 100644 --- a/test/test_outcome_data.py +++ b/test/test_outcome_data.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_outcomes_data.py b/test/test_outcomes_data.py index 8fab456..320f991 100644 --- a/test/test_outcomes_data.py +++ b/test/test_outcomes_data.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_platform_delivery_data.py b/test/test_platform_delivery_data.py index 0881f10..aa16e7f 100644 --- a/test/test_platform_delivery_data.py +++ b/test/test_platform_delivery_data.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_platform_delivery_data_email_all_of.py b/test/test_platform_delivery_data_email_all_of.py index 3c78930..32d1216 100644 --- a/test/test_platform_delivery_data_email_all_of.py +++ b/test/test_platform_delivery_data_email_all_of.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_platform_delivery_data_sms_all_of.py b/test/test_platform_delivery_data_sms_all_of.py index 070351f..bd6bda0 100644 --- a/test/test_platform_delivery_data_sms_all_of.py +++ b/test/test_platform_delivery_data_sms_all_of.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_properties_body.py b/test/test_properties_body.py index 808fc1f..61e2fca 100644 --- a/test/test_properties_body.py +++ b/test/test_properties_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_properties_deltas.py b/test/test_properties_deltas.py index ac4a2d4..791000f 100644 --- a/test/test_properties_deltas.py +++ b/test/test_properties_deltas.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_properties_object.py b/test/test_properties_object.py index abee1b2..802922d 100644 --- a/test/test_properties_object.py +++ b/test/test_properties_object.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_purchase.py b/test/test_purchase.py index 38b3813..50668c4 100644 --- a/test/test_purchase.py +++ b/test/test_purchase.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_rate_limit_error.py b/test/test_rate_limit_error.py index e4f6846..ddb7147 100644 --- a/test/test_rate_limit_error.py +++ b/test/test_rate_limit_error.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_segment.py b/test/test_segment.py index d46eb97..dd8ba29 100644 --- a/test/test_segment.py +++ b/test/test_segment.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_segment_data.py b/test/test_segment_data.py index b712bc7..68563ec 100644 --- a/test/test_segment_data.py +++ b/test/test_segment_data.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_segment_notification_target.py b/test/test_segment_notification_target.py index 0245f05..2bacb97 100644 --- a/test/test_segment_notification_target.py +++ b/test/test_segment_notification_target.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_start_live_activity_request.py b/test/test_start_live_activity_request.py index 46ddc42..176e747 100644 --- a/test/test_start_live_activity_request.py +++ b/test/test_start_live_activity_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_start_live_activity_success_response.py b/test/test_start_live_activity_success_response.py index 1720412..0cf0e54 100644 --- a/test/test_start_live_activity_success_response.py +++ b/test/test_start_live_activity_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription.py b/test/test_subscription.py index 7729414..5176f8a 100644 --- a/test/test_subscription.py +++ b/test/test_subscription.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_body.py b/test/test_subscription_body.py index f857b1f..7b45b67 100644 --- a/test/test_subscription_body.py +++ b/test/test_subscription_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_notification_target.py b/test/test_subscription_notification_target.py index e3240f3..bb88e18 100644 --- a/test/test_subscription_notification_target.py +++ b/test/test_subscription_notification_target.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_template_resource.py b/test/test_template_resource.py index f48746b..2c78a1a 100644 --- a/test/test_template_resource.py +++ b/test/test_template_resource.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_templates_list_response.py b/test/test_templates_list_response.py index 60cc369..c99c52c 100644 --- a/test/test_templates_list_response.py +++ b/test/test_templates_list_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_transfer_subscription_request_body.py b/test/test_transfer_subscription_request_body.py index 549ec30..283d22c 100644 --- a/test/test_transfer_subscription_request_body.py +++ b/test/test_transfer_subscription_request_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_update_api_key_request.py b/test/test_update_api_key_request.py index 2376008..c779457 100644 --- a/test/test_update_api_key_request.py +++ b/test/test_update_api_key_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_update_live_activity_request.py b/test/test_update_live_activity_request.py index 8ab445b..daef3e7 100644 --- a/test/test_update_live_activity_request.py +++ b/test/test_update_live_activity_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_update_live_activity_success_response.py b/test/test_update_live_activity_success_response.py index f8de337..a5fb043 100644 --- a/test/test_update_live_activity_success_response.py +++ b/test/test_update_live_activity_success_response.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_update_template_request.py b/test/test_update_template_request.py index 3ddb653..94b8523 100644 --- a/test/test_update_template_request.py +++ b/test/test_update_template_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_update_user_request.py b/test/test_update_user_request.py index 889c0e5..23cddc6 100644 --- a/test/test_update_user_request.py +++ b/test/test_update_user_request.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_user.py b/test/test_user.py index 9e41931..dc76feb 100644 --- a/test/test_user.py +++ b/test/test_user.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_identity_body.py b/test/test_user_identity_body.py index e956fd7..5409b28 100644 --- a/test/test_user_identity_body.py +++ b/test/test_user_identity_body.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_web_button.py b/test/test_web_button.py index a955857..5b411fc 100644 --- a/test/test_web_button.py +++ b/test/test_web_button.py @@ -3,7 +3,7 @@ A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com # noqa: E501 - The version of the OpenAPI document: 5.4.0 + The version of the OpenAPI document: 5.5.0 Contact: devrel@onesignal.com Generated by: https://openapi-generator.tech """