zyphr 0.1.9 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c623be268e21a0b9a6f02574620b8bad04a0f46376eebc87fd07169141048fea
4
- data.tar.gz: eec0d29ed64024e54a7b919c953c63e454b166331a73bc705cdd394a7dbc8707
3
+ metadata.gz: 7f20ac2c64eb37be6c9a926654b72f74ce736f270422a5fc2ade85262f385823
4
+ data.tar.gz: 06bc6b7da62665cdb46cfb2c1663d554dd546c0829a8ec7da55222629db1dab5
5
5
  SHA512:
6
- metadata.gz: a55b94c7d240d37497f0ad581f039b444d86e4d39138d8fc5cbfcc99219cee0c6e198ea015f6c50e5b6d802f7f340ce6aa88119e4b3baad922ffddfd08a69e04
7
- data.tar.gz: cdfd6a51d14ed424e26be47da5a5e472aead6019e40e9dd6fdebf0bb3b417d95ec783781e9a32e166a6deb4c61923accf17f213cf0460afcaa450ad1b399d609
6
+ metadata.gz: 7f8f097e1b0d041b5e38d7cf875b65ba7da4f50ba91b0e04f9ca4c3e7a3e84b3349f399cce5b7e1e6f044e3538a9b818adeb73bfd3aa5a8ed50f7312f959b5aa
7
+ data.tar.gz: 9425fad896e2418f26aa2864f39bb9b0e900e3ad48d24f1ae280ace3541ec9eca4073fe1081acd46228be3314050b72bc3bcff5b090f5735be884655ec11e825
data/README.md CHANGED
@@ -187,15 +187,24 @@ Class | Method | HTTP request | Description
187
187
  *Zyphr::EmailsApi* | [**send_batch_email**](docs/EmailsApi.md#send_batch_email) | **POST** /emails/batch | Send batch emails
188
188
  *Zyphr::EmailsApi* | [**send_email**](docs/EmailsApi.md#send_email) | **POST** /emails | Send an email
189
189
  *Zyphr::InboxApi* | [**archive_inbox_notification**](docs/InboxApi.md#archive_inbox_notification) | **POST** /inbox/{id}/archive | Archive a notification
190
+ *Zyphr::InboxApi* | [**archive_subscriber_notification**](docs/InboxApi.md#archive_subscriber_notification) | **POST** /subscriber-inbox/{id}/archive | Archive a notification
190
191
  *Zyphr::InboxApi* | [**delete_inbox_notification**](docs/InboxApi.md#delete_inbox_notification) | **DELETE** /inbox/{id} | Delete a notification
192
+ *Zyphr::InboxApi* | [**delete_subscriber_notification**](docs/InboxApi.md#delete_subscriber_notification) | **DELETE** /subscriber-inbox/{id} | Delete a notification
191
193
  *Zyphr::InboxApi* | [**generate_subscriber_token**](docs/InboxApi.md#generate_subscriber_token) | **POST** /subscriber-inbox/token | Generate a subscriber token
192
194
  *Zyphr::InboxApi* | [**get_inbox_notification**](docs/InboxApi.md#get_inbox_notification) | **GET** /inbox/{id} | Get a notification
195
+ *Zyphr::InboxApi* | [**get_subscriber_inbox_preferences**](docs/InboxApi.md#get_subscriber_inbox_preferences) | **GET** /subscriber-inbox/preferences | Get subscriber preferences
196
+ *Zyphr::InboxApi* | [**get_subscriber_notification**](docs/InboxApi.md#get_subscriber_notification) | **GET** /subscriber-inbox/{id} | Get a notification
197
+ *Zyphr::InboxApi* | [**get_subscriber_unread_count**](docs/InboxApi.md#get_subscriber_unread_count) | **GET** /subscriber-inbox/unread-count | Get unread count
193
198
  *Zyphr::InboxApi* | [**get_unread_count**](docs/InboxApi.md#get_unread_count) | **GET** /inbox/unread-count | Get unread notification count
194
199
  *Zyphr::InboxApi* | [**list_inbox**](docs/InboxApi.md#list_inbox) | **GET** /inbox | List inbox notifications
200
+ *Zyphr::InboxApi* | [**list_subscriber_notifications**](docs/InboxApi.md#list_subscriber_notifications) | **GET** /subscriber-inbox | List subscriber notifications
195
201
  *Zyphr::InboxApi* | [**mark_all_inbox_read**](docs/InboxApi.md#mark_all_inbox_read) | **POST** /inbox/read-all | Mark all notifications as read
202
+ *Zyphr::InboxApi* | [**mark_all_subscriber_notifications_read**](docs/InboxApi.md#mark_all_subscriber_notifications_read) | **POST** /subscriber-inbox/read-all | Mark all notifications as read
196
203
  *Zyphr::InboxApi* | [**mark_inbox_read**](docs/InboxApi.md#mark_inbox_read) | **POST** /inbox/{id}/read | Mark notification as read
204
+ *Zyphr::InboxApi* | [**mark_subscriber_notification_read**](docs/InboxApi.md#mark_subscriber_notification_read) | **POST** /subscriber-inbox/{id}/read | Mark notification as read
197
205
  *Zyphr::InboxApi* | [**send_batch_in_app**](docs/InboxApi.md#send_batch_in_app) | **POST** /inbox/send/batch | Send batch in-app notifications
198
206
  *Zyphr::InboxApi* | [**send_in_app**](docs/InboxApi.md#send_in_app) | **POST** /inbox/send | Send an in-app notification
207
+ *Zyphr::InboxApi* | [**update_subscriber_preferences**](docs/InboxApi.md#update_subscriber_preferences) | **PUT** /subscriber-inbox/preferences | Update subscriber preferences
199
208
  *Zyphr::PushApi* | [**get_push**](docs/PushApi.md#get_push) | **GET** /push/{id} | Get push notification details
200
209
  *Zyphr::PushApi* | [**get_push_stats**](docs/PushApi.md#get_push_stats) | **GET** /push/stats | Get push notification statistics
201
210
  *Zyphr::PushApi* | [**list_device_push_topics**](docs/PushApi.md#list_device_push_topics) | **GET** /push/devices/{id}/topics | List topics for a device
@@ -393,6 +402,7 @@ Class | Method | HTTP request | Description
393
402
  - [Zyphr::MarkAllInboxReadRequest](docs/MarkAllInboxReadRequest.md)
394
403
  - [Zyphr::MarkAllReadData](docs/MarkAllReadData.md)
395
404
  - [Zyphr::MarkAllReadResponse](docs/MarkAllReadResponse.md)
405
+ - [Zyphr::MarkAllSubscriberNotificationsReadRequest](docs/MarkAllSubscriberNotificationsReadRequest.md)
396
406
  - [Zyphr::MarkInboxReadRequest](docs/MarkInboxReadRequest.md)
397
407
  - [Zyphr::MfaBackupCodesResponse](docs/MfaBackupCodesResponse.md)
398
408
  - [Zyphr::MfaBackupCodesResponseData](docs/MfaBackupCodesResponseData.md)
@@ -558,6 +568,8 @@ Class | Method | HTTP request | Description
558
568
  - [Zyphr::UnsubscribeResponse](docs/UnsubscribeResponse.md)
559
569
  - [Zyphr::UpdateCategoryRequest](docs/UpdateCategoryRequest.md)
560
570
  - [Zyphr::UpdateEndUserRequest](docs/UpdateEndUserRequest.md)
571
+ - [Zyphr::UpdateSubscriberPreferencesRequest](docs/UpdateSubscriberPreferencesRequest.md)
572
+ - [Zyphr::UpdateSubscriberPreferencesRequestPreferencesInner](docs/UpdateSubscriberPreferencesRequestPreferencesInner.md)
561
573
  - [Zyphr::UpdateSubscriberRequest](docs/UpdateSubscriberRequest.md)
562
574
  - [Zyphr::UpdateTemplateRequest](docs/UpdateTemplateRequest.md)
563
575
  - [Zyphr::UpdateTopicRequest](docs/UpdateTopicRequest.md)