trycourier 4.16.0 → 4.17.0
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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/courier/client.rb +4 -0
- data/lib/courier/models/preference_section_archive_params.rb +20 -0
- data/lib/courier/models/preference_section_create_params.rb +14 -0
- data/lib/courier/models/preference_section_create_request.rb +36 -0
- data/lib/courier/models/preference_section_get_response.rb +83 -0
- data/lib/courier/models/preference_section_list_params.rb +14 -0
- data/lib/courier/models/preference_section_list_response.rb +18 -0
- data/lib/courier/models/preference_section_publish_params.rb +14 -0
- data/lib/courier/models/preference_section_replace_params.rb +20 -0
- data/lib/courier/models/preference_section_replace_request.rb +37 -0
- data/lib/courier/models/preference_section_retrieve_params.rb +20 -0
- data/lib/courier/models/preference_sections/topic_archive_params.rb +28 -0
- data/lib/courier/models/preference_sections/topic_create_params.rb +22 -0
- data/lib/courier/models/preference_sections/topic_list_params.rb +22 -0
- data/lib/courier/models/preference_sections/topic_replace_params.rb +28 -0
- data/lib/courier/models/preference_sections/topic_retrieve_params.rb +28 -0
- data/lib/courier/models/preference_topic_create_request.rb +93 -0
- data/lib/courier/models/preference_topic_get_response.rb +124 -0
- data/lib/courier/models/preference_topic_list_response.rb +17 -0
- data/lib/courier/models/preference_topic_replace_request.rb +90 -0
- data/lib/courier/models/publish_preferences_response.rb +51 -0
- data/lib/courier/models.rb +32 -0
- data/lib/courier/resources/preference_sections/topics.rb +173 -0
- data/lib/courier/resources/preference_sections.rb +155 -0
- data/lib/courier/version.rb +1 -1
- data/lib/courier.rb +22 -0
- data/rbi/courier/client.rbi +3 -0
- data/rbi/courier/models/preference_section_archive_params.rbi +38 -0
- data/rbi/courier/models/preference_section_create_params.rbi +30 -0
- data/rbi/courier/models/preference_section_create_request.rbi +61 -0
- data/rbi/courier/models/preference_section_get_response.rbi +106 -0
- data/rbi/courier/models/preference_section_list_params.rbi +30 -0
- data/rbi/courier/models/preference_section_list_response.rbi +35 -0
- data/rbi/courier/models/preference_section_publish_params.rbi +30 -0
- data/rbi/courier/models/preference_section_replace_params.rbi +38 -0
- data/rbi/courier/models/preference_section_replace_request.rbi +62 -0
- data/rbi/courier/models/preference_section_retrieve_params.rbi +38 -0
- data/rbi/courier/models/preference_sections/topic_archive_params.rbi +48 -0
- data/rbi/courier/models/preference_sections/topic_create_params.rbi +40 -0
- data/rbi/courier/models/preference_sections/topic_list_params.rbi +40 -0
- data/rbi/courier/models/preference_sections/topic_replace_params.rbi +48 -0
- data/rbi/courier/models/preference_sections/topic_retrieve_params.rbi +48 -0
- data/rbi/courier/models/preference_topic_create_request.rbi +181 -0
- data/rbi/courier/models/preference_topic_get_response.rbi +209 -0
- data/rbi/courier/models/preference_topic_list_response.rbi +35 -0
- data/rbi/courier/models/preference_topic_replace_request.rbi +180 -0
- data/rbi/courier/models/publish_preferences_response.rbi +70 -0
- data/rbi/courier/models.rbi +38 -0
- data/rbi/courier/resources/preference_sections/topics.rbi +149 -0
- data/rbi/courier/resources/preference_sections.rbi +113 -0
- data/sig/courier/client.rbs +2 -0
- data/sig/courier/models/preference_section_archive_params.rbs +23 -0
- data/sig/courier/models/preference_section_create_params.rbs +15 -0
- data/sig/courier/models/preference_section_create_request.rbs +30 -0
- data/sig/courier/models/preference_section_get_response.rbs +60 -0
- data/sig/courier/models/preference_section_list_params.rbs +15 -0
- data/sig/courier/models/preference_section_list_response.rbs +18 -0
- data/sig/courier/models/preference_section_publish_params.rbs +15 -0
- data/sig/courier/models/preference_section_replace_params.rbs +25 -0
- data/sig/courier/models/preference_section_replace_request.rbs +30 -0
- data/sig/courier/models/preference_section_retrieve_params.rbs +23 -0
- data/sig/courier/models/preference_sections/topic_archive_params.rbs +30 -0
- data/sig/courier/models/preference_sections/topic_create_params.rbs +27 -0
- data/sig/courier/models/preference_sections/topic_list_params.rbs +25 -0
- data/sig/courier/models/preference_sections/topic_replace_params.rbs +34 -0
- data/sig/courier/models/preference_sections/topic_retrieve_params.rbs +30 -0
- data/sig/courier/models/preference_topic_create_request.rbs +68 -0
- data/sig/courier/models/preference_topic_get_response.rbs +93 -0
- data/sig/courier/models/preference_topic_list_response.rbs +16 -0
- data/sig/courier/models/preference_topic_replace_request.rbs +68 -0
- data/sig/courier/models/publish_preferences_response.rbs +40 -0
- data/sig/courier/models.rbs +32 -0
- data/sig/courier/resources/preference_sections/topics.rbs +49 -0
- data/sig/courier/resources/preference_sections.rbs +42 -0
- metadata +68 -2
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trycourier
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.17.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Courier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -287,7 +287,26 @@ files:
|
|
|
287
287
|
- lib/courier/models/post_tenant_template_publish_request.rb
|
|
288
288
|
- lib/courier/models/post_tenant_template_publish_response.rb
|
|
289
289
|
- lib/courier/models/preference.rb
|
|
290
|
+
- lib/courier/models/preference_section_archive_params.rb
|
|
291
|
+
- lib/courier/models/preference_section_create_params.rb
|
|
292
|
+
- lib/courier/models/preference_section_create_request.rb
|
|
293
|
+
- lib/courier/models/preference_section_get_response.rb
|
|
294
|
+
- lib/courier/models/preference_section_list_params.rb
|
|
295
|
+
- lib/courier/models/preference_section_list_response.rb
|
|
296
|
+
- lib/courier/models/preference_section_publish_params.rb
|
|
297
|
+
- lib/courier/models/preference_section_replace_params.rb
|
|
298
|
+
- lib/courier/models/preference_section_replace_request.rb
|
|
299
|
+
- lib/courier/models/preference_section_retrieve_params.rb
|
|
300
|
+
- lib/courier/models/preference_sections/topic_archive_params.rb
|
|
301
|
+
- lib/courier/models/preference_sections/topic_create_params.rb
|
|
302
|
+
- lib/courier/models/preference_sections/topic_list_params.rb
|
|
303
|
+
- lib/courier/models/preference_sections/topic_replace_params.rb
|
|
304
|
+
- lib/courier/models/preference_sections/topic_retrieve_params.rb
|
|
290
305
|
- lib/courier/models/preference_status.rb
|
|
306
|
+
- lib/courier/models/preference_topic_create_request.rb
|
|
307
|
+
- lib/courier/models/preference_topic_get_response.rb
|
|
308
|
+
- lib/courier/models/preference_topic_list_response.rb
|
|
309
|
+
- lib/courier/models/preference_topic_replace_request.rb
|
|
291
310
|
- lib/courier/models/profile_create_params.rb
|
|
292
311
|
- lib/courier/models/profile_create_response.rb
|
|
293
312
|
- lib/courier/models/profile_delete_params.rb
|
|
@@ -312,6 +331,7 @@ files:
|
|
|
312
331
|
- lib/courier/models/providers/catalog_list_params.rb
|
|
313
332
|
- lib/courier/models/providers/catalog_list_response.rb
|
|
314
333
|
- lib/courier/models/providers_catalog_entry.rb
|
|
334
|
+
- lib/courier/models/publish_preferences_response.rb
|
|
315
335
|
- lib/courier/models/put_subscriptions_recipient.rb
|
|
316
336
|
- lib/courier/models/put_tenant_template_request.rb
|
|
317
337
|
- lib/courier/models/put_tenant_template_response.rb
|
|
@@ -425,6 +445,8 @@ files:
|
|
|
425
445
|
- lib/courier/resources/messages.rb
|
|
426
446
|
- lib/courier/resources/notifications.rb
|
|
427
447
|
- lib/courier/resources/notifications/checks.rb
|
|
448
|
+
- lib/courier/resources/preference_sections.rb
|
|
449
|
+
- lib/courier/resources/preference_sections/topics.rb
|
|
428
450
|
- lib/courier/resources/profiles.rb
|
|
429
451
|
- lib/courier/resources/profiles/lists.rb
|
|
430
452
|
- lib/courier/resources/providers.rb
|
|
@@ -681,7 +703,26 @@ files:
|
|
|
681
703
|
- rbi/courier/models/post_tenant_template_publish_request.rbi
|
|
682
704
|
- rbi/courier/models/post_tenant_template_publish_response.rbi
|
|
683
705
|
- rbi/courier/models/preference.rbi
|
|
706
|
+
- rbi/courier/models/preference_section_archive_params.rbi
|
|
707
|
+
- rbi/courier/models/preference_section_create_params.rbi
|
|
708
|
+
- rbi/courier/models/preference_section_create_request.rbi
|
|
709
|
+
- rbi/courier/models/preference_section_get_response.rbi
|
|
710
|
+
- rbi/courier/models/preference_section_list_params.rbi
|
|
711
|
+
- rbi/courier/models/preference_section_list_response.rbi
|
|
712
|
+
- rbi/courier/models/preference_section_publish_params.rbi
|
|
713
|
+
- rbi/courier/models/preference_section_replace_params.rbi
|
|
714
|
+
- rbi/courier/models/preference_section_replace_request.rbi
|
|
715
|
+
- rbi/courier/models/preference_section_retrieve_params.rbi
|
|
716
|
+
- rbi/courier/models/preference_sections/topic_archive_params.rbi
|
|
717
|
+
- rbi/courier/models/preference_sections/topic_create_params.rbi
|
|
718
|
+
- rbi/courier/models/preference_sections/topic_list_params.rbi
|
|
719
|
+
- rbi/courier/models/preference_sections/topic_replace_params.rbi
|
|
720
|
+
- rbi/courier/models/preference_sections/topic_retrieve_params.rbi
|
|
684
721
|
- rbi/courier/models/preference_status.rbi
|
|
722
|
+
- rbi/courier/models/preference_topic_create_request.rbi
|
|
723
|
+
- rbi/courier/models/preference_topic_get_response.rbi
|
|
724
|
+
- rbi/courier/models/preference_topic_list_response.rbi
|
|
725
|
+
- rbi/courier/models/preference_topic_replace_request.rbi
|
|
685
726
|
- rbi/courier/models/profile_create_params.rbi
|
|
686
727
|
- rbi/courier/models/profile_create_response.rbi
|
|
687
728
|
- rbi/courier/models/profile_delete_params.rbi
|
|
@@ -706,6 +747,7 @@ files:
|
|
|
706
747
|
- rbi/courier/models/providers/catalog_list_params.rbi
|
|
707
748
|
- rbi/courier/models/providers/catalog_list_response.rbi
|
|
708
749
|
- rbi/courier/models/providers_catalog_entry.rbi
|
|
750
|
+
- rbi/courier/models/publish_preferences_response.rbi
|
|
709
751
|
- rbi/courier/models/put_subscriptions_recipient.rbi
|
|
710
752
|
- rbi/courier/models/put_tenant_template_request.rbi
|
|
711
753
|
- rbi/courier/models/put_tenant_template_response.rbi
|
|
@@ -819,6 +861,8 @@ files:
|
|
|
819
861
|
- rbi/courier/resources/messages.rbi
|
|
820
862
|
- rbi/courier/resources/notifications.rbi
|
|
821
863
|
- rbi/courier/resources/notifications/checks.rbi
|
|
864
|
+
- rbi/courier/resources/preference_sections.rbi
|
|
865
|
+
- rbi/courier/resources/preference_sections/topics.rbi
|
|
822
866
|
- rbi/courier/resources/profiles.rbi
|
|
823
867
|
- rbi/courier/resources/profiles/lists.rbi
|
|
824
868
|
- rbi/courier/resources/providers.rbi
|
|
@@ -1074,7 +1118,26 @@ files:
|
|
|
1074
1118
|
- sig/courier/models/post_tenant_template_publish_request.rbs
|
|
1075
1119
|
- sig/courier/models/post_tenant_template_publish_response.rbs
|
|
1076
1120
|
- sig/courier/models/preference.rbs
|
|
1121
|
+
- sig/courier/models/preference_section_archive_params.rbs
|
|
1122
|
+
- sig/courier/models/preference_section_create_params.rbs
|
|
1123
|
+
- sig/courier/models/preference_section_create_request.rbs
|
|
1124
|
+
- sig/courier/models/preference_section_get_response.rbs
|
|
1125
|
+
- sig/courier/models/preference_section_list_params.rbs
|
|
1126
|
+
- sig/courier/models/preference_section_list_response.rbs
|
|
1127
|
+
- sig/courier/models/preference_section_publish_params.rbs
|
|
1128
|
+
- sig/courier/models/preference_section_replace_params.rbs
|
|
1129
|
+
- sig/courier/models/preference_section_replace_request.rbs
|
|
1130
|
+
- sig/courier/models/preference_section_retrieve_params.rbs
|
|
1131
|
+
- sig/courier/models/preference_sections/topic_archive_params.rbs
|
|
1132
|
+
- sig/courier/models/preference_sections/topic_create_params.rbs
|
|
1133
|
+
- sig/courier/models/preference_sections/topic_list_params.rbs
|
|
1134
|
+
- sig/courier/models/preference_sections/topic_replace_params.rbs
|
|
1135
|
+
- sig/courier/models/preference_sections/topic_retrieve_params.rbs
|
|
1077
1136
|
- sig/courier/models/preference_status.rbs
|
|
1137
|
+
- sig/courier/models/preference_topic_create_request.rbs
|
|
1138
|
+
- sig/courier/models/preference_topic_get_response.rbs
|
|
1139
|
+
- sig/courier/models/preference_topic_list_response.rbs
|
|
1140
|
+
- sig/courier/models/preference_topic_replace_request.rbs
|
|
1078
1141
|
- sig/courier/models/profile_create_params.rbs
|
|
1079
1142
|
- sig/courier/models/profile_create_response.rbs
|
|
1080
1143
|
- sig/courier/models/profile_delete_params.rbs
|
|
@@ -1099,6 +1162,7 @@ files:
|
|
|
1099
1162
|
- sig/courier/models/providers/catalog_list_params.rbs
|
|
1100
1163
|
- sig/courier/models/providers/catalog_list_response.rbs
|
|
1101
1164
|
- sig/courier/models/providers_catalog_entry.rbs
|
|
1165
|
+
- sig/courier/models/publish_preferences_response.rbs
|
|
1102
1166
|
- sig/courier/models/put_subscriptions_recipient.rbs
|
|
1103
1167
|
- sig/courier/models/put_tenant_template_request.rbs
|
|
1104
1168
|
- sig/courier/models/put_tenant_template_response.rbs
|
|
@@ -1212,6 +1276,8 @@ files:
|
|
|
1212
1276
|
- sig/courier/resources/messages.rbs
|
|
1213
1277
|
- sig/courier/resources/notifications.rbs
|
|
1214
1278
|
- sig/courier/resources/notifications/checks.rbs
|
|
1279
|
+
- sig/courier/resources/preference_sections.rbs
|
|
1280
|
+
- sig/courier/resources/preference_sections/topics.rbs
|
|
1215
1281
|
- sig/courier/resources/profiles.rbs
|
|
1216
1282
|
- sig/courier/resources/profiles/lists.rbs
|
|
1217
1283
|
- sig/courier/resources/providers.rbs
|