trycourier 4.18.1 → 4.19.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 +17 -0
- data/lib/courier/models/message_resend_params.rb +20 -0
- data/lib/courier/models/message_resend_response.rb +21 -0
- data/lib/courier/models/publish_preferences_request.rb +40 -0
- data/lib/courier/models/users/bulk_preference_topic.rb +59 -0
- data/lib/courier/models/users/preference_bulk_replace_params.rb +93 -0
- data/lib/courier/models/users/preference_bulk_replace_response.rb +27 -0
- data/lib/courier/models/users/preference_bulk_update_params.rb +92 -0
- data/lib/courier/models/users/preference_bulk_update_response.rb +48 -0
- data/lib/courier/models/workspace_preference_create_request.rb +9 -1
- data/lib/courier/models/workspace_preference_get_response.rb +9 -1
- data/lib/courier/models/workspace_preference_publish_params.rb +1 -1
- data/lib/courier/models/workspace_preference_replace_request.rb +13 -1
- data/lib/courier/models/workspace_preference_topic_create_request.rb +9 -1
- data/lib/courier/models/workspace_preference_topic_get_response.rb +9 -1
- data/lib/courier/models/workspace_preference_topic_replace_request.rb +13 -1
- data/lib/courier/models.rb +4 -0
- data/lib/courier/resources/messages.rb +27 -0
- data/lib/courier/resources/users/preferences.rb +96 -0
- data/lib/courier/resources/workspace_preferences/topics.rb +6 -2
- data/lib/courier/resources/workspace_preferences.rb +22 -4
- data/lib/courier/version.rb +1 -1
- data/lib/courier.rb +8 -0
- data/rbi/courier/models/message_resend_params.rbi +35 -0
- data/rbi/courier/models/message_resend_response.rbi +32 -0
- data/rbi/courier/models/publish_preferences_request.rbi +58 -0
- data/rbi/courier/models/users/bulk_preference_topic.rbi +99 -0
- data/rbi/courier/models/users/preference_bulk_replace_params.rbi +188 -0
- data/rbi/courier/models/users/preference_bulk_replace_response.rbi +50 -0
- data/rbi/courier/models/users/preference_bulk_update_params.rbi +186 -0
- data/rbi/courier/models/users/preference_bulk_update_response.rbi +94 -0
- data/rbi/courier/models/workspace_preference_create_request.rbi +8 -0
- data/rbi/courier/models/workspace_preference_get_response.rbi +8 -0
- data/rbi/courier/models/workspace_preference_publish_params.rbi +1 -1
- data/rbi/courier/models/workspace_preference_replace_request.rbi +10 -0
- data/rbi/courier/models/workspace_preference_topic_create_request.rbi +8 -0
- data/rbi/courier/models/workspace_preference_topic_get_response.rbi +8 -0
- data/rbi/courier/models/workspace_preference_topic_replace_request.rbi +10 -0
- data/rbi/courier/models.rbi +4 -0
- data/rbi/courier/resources/messages.rbi +19 -0
- data/rbi/courier/resources/users/preferences.rbi +83 -0
- data/rbi/courier/resources/workspace_preferences/topics.rbi +7 -0
- data/rbi/courier/resources/workspace_preferences.rbi +23 -4
- data/sig/courier/models/message_resend_params.rbs +23 -0
- data/sig/courier/models/message_resend_response.rbs +13 -0
- data/sig/courier/models/publish_preferences_request.rbs +26 -0
- data/sig/courier/models/users/bulk_preference_topic.rbs +48 -0
- data/sig/courier/models/users/preference_bulk_replace_params.rbs +87 -0
- data/sig/courier/models/users/preference_bulk_replace_response.rbs +27 -0
- data/sig/courier/models/users/preference_bulk_update_params.rbs +87 -0
- data/sig/courier/models/users/preference_bulk_update_response.rbs +39 -0
- data/sig/courier/models/workspace_preference_create_request.rbs +5 -0
- data/sig/courier/models/workspace_preference_get_response.rbs +5 -0
- data/sig/courier/models/workspace_preference_publish_params.rbs +1 -1
- data/sig/courier/models/workspace_preference_replace_request.rbs +5 -0
- data/sig/courier/models/workspace_preference_topic_create_request.rbs +5 -0
- data/sig/courier/models/workspace_preference_topic_get_response.rbs +5 -0
- data/sig/courier/models/workspace_preference_topic_replace_request.rbs +5 -0
- data/sig/courier/models.rbs +4 -0
- data/sig/courier/resources/messages.rbs +5 -0
- data/sig/courier/resources/users/preferences.rbs +14 -0
- data/sig/courier/resources/workspace_preferences/topics.rbs +2 -0
- data/sig/courier/resources/workspace_preferences.rbs +5 -0
- metadata +26 -2
|
@@ -3,6 +3,7 @@ module Courier
|
|
|
3
3
|
type workspace_preference_create_request =
|
|
4
4
|
{
|
|
5
5
|
name: String,
|
|
6
|
+
description: String?,
|
|
6
7
|
has_custom_routing: bool?,
|
|
7
8
|
routing_options: ::Array[Courier::Models::channel_classification]?
|
|
8
9
|
}
|
|
@@ -10,18 +11,22 @@ module Courier
|
|
|
10
11
|
class WorkspacePreferenceCreateRequest < Courier::Internal::Type::BaseModel
|
|
11
12
|
attr_accessor name: String
|
|
12
13
|
|
|
14
|
+
attr_accessor description: String?
|
|
15
|
+
|
|
13
16
|
attr_accessor has_custom_routing: bool?
|
|
14
17
|
|
|
15
18
|
attr_accessor routing_options: ::Array[Courier::Models::channel_classification]?
|
|
16
19
|
|
|
17
20
|
def initialize: (
|
|
18
21
|
name: String,
|
|
22
|
+
?description: String?,
|
|
19
23
|
?has_custom_routing: bool?,
|
|
20
24
|
?routing_options: ::Array[Courier::Models::channel_classification]?
|
|
21
25
|
) -> void
|
|
22
26
|
|
|
23
27
|
def to_hash: -> {
|
|
24
28
|
name: String,
|
|
29
|
+
description: String?,
|
|
25
30
|
has_custom_routing: bool?,
|
|
26
31
|
routing_options: ::Array[Courier::Models::channel_classification]?
|
|
27
32
|
}
|
|
@@ -9,6 +9,7 @@ module Courier
|
|
|
9
9
|
routing_options: ::Array[Courier::Models::channel_classification],
|
|
10
10
|
topics: ::Array[Courier::WorkspacePreferenceTopicGetResponse],
|
|
11
11
|
creator: String?,
|
|
12
|
+
description: String?,
|
|
12
13
|
updated: String?,
|
|
13
14
|
updater: String?
|
|
14
15
|
}
|
|
@@ -28,6 +29,8 @@ module Courier
|
|
|
28
29
|
|
|
29
30
|
attr_accessor creator: String?
|
|
30
31
|
|
|
32
|
+
attr_accessor description: String?
|
|
33
|
+
|
|
31
34
|
attr_accessor updated: String?
|
|
32
35
|
|
|
33
36
|
attr_accessor updater: String?
|
|
@@ -40,6 +43,7 @@ module Courier
|
|
|
40
43
|
routing_options: ::Array[Courier::Models::channel_classification],
|
|
41
44
|
topics: ::Array[Courier::WorkspacePreferenceTopicGetResponse],
|
|
42
45
|
?creator: String?,
|
|
46
|
+
?description: String?,
|
|
43
47
|
?updated: String?,
|
|
44
48
|
?updater: String?
|
|
45
49
|
) -> void
|
|
@@ -52,6 +56,7 @@ module Courier
|
|
|
52
56
|
routing_options: ::Array[Courier::Models::channel_classification],
|
|
53
57
|
topics: ::Array[Courier::WorkspacePreferenceTopicGetResponse],
|
|
54
58
|
creator: String?,
|
|
59
|
+
description: String?,
|
|
55
60
|
updated: String?,
|
|
56
61
|
updater: String?
|
|
57
62
|
}
|
|
@@ -3,7 +3,7 @@ module Courier
|
|
|
3
3
|
type workspace_preference_publish_params =
|
|
4
4
|
{ } & Courier::Internal::Type::request_parameters
|
|
5
5
|
|
|
6
|
-
class WorkspacePreferencePublishParams < Courier::
|
|
6
|
+
class WorkspacePreferencePublishParams < Courier::Models::PublishPreferencesRequest
|
|
7
7
|
extend Courier::Internal::Type::RequestParameters::Converter
|
|
8
8
|
include Courier::Internal::Type::RequestParameters
|
|
9
9
|
|
|
@@ -3,6 +3,7 @@ module Courier
|
|
|
3
3
|
type workspace_preference_replace_request =
|
|
4
4
|
{
|
|
5
5
|
name: String,
|
|
6
|
+
description: String?,
|
|
6
7
|
has_custom_routing: bool?,
|
|
7
8
|
routing_options: ::Array[Courier::Models::channel_classification]?
|
|
8
9
|
}
|
|
@@ -10,18 +11,22 @@ module Courier
|
|
|
10
11
|
class WorkspacePreferenceReplaceRequest < Courier::Internal::Type::BaseModel
|
|
11
12
|
attr_accessor name: String
|
|
12
13
|
|
|
14
|
+
attr_accessor description: String?
|
|
15
|
+
|
|
13
16
|
attr_accessor has_custom_routing: bool?
|
|
14
17
|
|
|
15
18
|
attr_accessor routing_options: ::Array[Courier::Models::channel_classification]?
|
|
16
19
|
|
|
17
20
|
def initialize: (
|
|
18
21
|
name: String,
|
|
22
|
+
?description: String?,
|
|
19
23
|
?has_custom_routing: bool?,
|
|
20
24
|
?routing_options: ::Array[Courier::Models::channel_classification]?
|
|
21
25
|
) -> void
|
|
22
26
|
|
|
23
27
|
def to_hash: -> {
|
|
24
28
|
name: String,
|
|
29
|
+
description: String?,
|
|
25
30
|
has_custom_routing: bool?,
|
|
26
31
|
routing_options: ::Array[Courier::Models::channel_classification]?
|
|
27
32
|
}
|
|
@@ -5,6 +5,7 @@ module Courier
|
|
|
5
5
|
default_status: Courier::Models::WorkspacePreferenceTopicCreateRequest::default_status,
|
|
6
6
|
name: String,
|
|
7
7
|
allowed_preferences: ::Array[Courier::Models::WorkspacePreferenceTopicCreateRequest::allowed_preference]?,
|
|
8
|
+
description: String?,
|
|
8
9
|
include_unsubscribe_header: bool?,
|
|
9
10
|
routing_options: ::Array[Courier::Models::channel_classification]?,
|
|
10
11
|
topic_data: ::Hash[Symbol, top]?
|
|
@@ -17,6 +18,8 @@ module Courier
|
|
|
17
18
|
|
|
18
19
|
attr_accessor allowed_preferences: ::Array[Courier::Models::WorkspacePreferenceTopicCreateRequest::allowed_preference]?
|
|
19
20
|
|
|
21
|
+
attr_accessor description: String?
|
|
22
|
+
|
|
20
23
|
attr_accessor include_unsubscribe_header: bool?
|
|
21
24
|
|
|
22
25
|
attr_accessor routing_options: ::Array[Courier::Models::channel_classification]?
|
|
@@ -27,6 +30,7 @@ module Courier
|
|
|
27
30
|
default_status: Courier::Models::WorkspacePreferenceTopicCreateRequest::default_status,
|
|
28
31
|
name: String,
|
|
29
32
|
?allowed_preferences: ::Array[Courier::Models::WorkspacePreferenceTopicCreateRequest::allowed_preference]?,
|
|
33
|
+
?description: String?,
|
|
30
34
|
?include_unsubscribe_header: bool?,
|
|
31
35
|
?routing_options: ::Array[Courier::Models::channel_classification]?,
|
|
32
36
|
?topic_data: ::Hash[Symbol, top]?
|
|
@@ -36,6 +40,7 @@ module Courier
|
|
|
36
40
|
default_status: Courier::Models::WorkspacePreferenceTopicCreateRequest::default_status,
|
|
37
41
|
name: String,
|
|
38
42
|
allowed_preferences: ::Array[Courier::Models::WorkspacePreferenceTopicCreateRequest::allowed_preference]?,
|
|
43
|
+
description: String?,
|
|
39
44
|
include_unsubscribe_header: bool?,
|
|
40
45
|
routing_options: ::Array[Courier::Models::channel_classification]?,
|
|
41
46
|
topic_data: ::Hash[Symbol, top]?
|
|
@@ -12,6 +12,7 @@ module Courier
|
|
|
12
12
|
topic_data: ::Hash[Symbol, top],
|
|
13
13
|
updated: String,
|
|
14
14
|
creator: String?,
|
|
15
|
+
description: String?,
|
|
15
16
|
updater: String?
|
|
16
17
|
}
|
|
17
18
|
|
|
@@ -36,6 +37,8 @@ module Courier
|
|
|
36
37
|
|
|
37
38
|
attr_accessor creator: String?
|
|
38
39
|
|
|
40
|
+
attr_accessor description: String?
|
|
41
|
+
|
|
39
42
|
attr_accessor updater: String?
|
|
40
43
|
|
|
41
44
|
def initialize: (
|
|
@@ -49,6 +52,7 @@ module Courier
|
|
|
49
52
|
topic_data: ::Hash[Symbol, top],
|
|
50
53
|
updated: String,
|
|
51
54
|
?creator: String?,
|
|
55
|
+
?description: String?,
|
|
52
56
|
?updater: String?
|
|
53
57
|
) -> void
|
|
54
58
|
|
|
@@ -63,6 +67,7 @@ module Courier
|
|
|
63
67
|
topic_data: ::Hash[Symbol, top],
|
|
64
68
|
updated: String,
|
|
65
69
|
creator: String?,
|
|
70
|
+
description: String?,
|
|
66
71
|
updater: String?
|
|
67
72
|
}
|
|
68
73
|
|
|
@@ -5,6 +5,7 @@ module Courier
|
|
|
5
5
|
default_status: Courier::Models::WorkspacePreferenceTopicReplaceRequest::default_status,
|
|
6
6
|
name: String,
|
|
7
7
|
allowed_preferences: ::Array[Courier::Models::WorkspacePreferenceTopicReplaceRequest::allowed_preference]?,
|
|
8
|
+
description: String?,
|
|
8
9
|
include_unsubscribe_header: bool?,
|
|
9
10
|
routing_options: ::Array[Courier::Models::channel_classification]?,
|
|
10
11
|
topic_data: ::Hash[Symbol, top]?
|
|
@@ -17,6 +18,8 @@ module Courier
|
|
|
17
18
|
|
|
18
19
|
attr_accessor allowed_preferences: ::Array[Courier::Models::WorkspacePreferenceTopicReplaceRequest::allowed_preference]?
|
|
19
20
|
|
|
21
|
+
attr_accessor description: String?
|
|
22
|
+
|
|
20
23
|
attr_accessor include_unsubscribe_header: bool?
|
|
21
24
|
|
|
22
25
|
attr_accessor routing_options: ::Array[Courier::Models::channel_classification]?
|
|
@@ -27,6 +30,7 @@ module Courier
|
|
|
27
30
|
default_status: Courier::Models::WorkspacePreferenceTopicReplaceRequest::default_status,
|
|
28
31
|
name: String,
|
|
29
32
|
?allowed_preferences: ::Array[Courier::Models::WorkspacePreferenceTopicReplaceRequest::allowed_preference]?,
|
|
33
|
+
?description: String?,
|
|
30
34
|
?include_unsubscribe_header: bool?,
|
|
31
35
|
?routing_options: ::Array[Courier::Models::channel_classification]?,
|
|
32
36
|
?topic_data: ::Hash[Symbol, top]?
|
|
@@ -36,6 +40,7 @@ module Courier
|
|
|
36
40
|
default_status: Courier::Models::WorkspacePreferenceTopicReplaceRequest::default_status,
|
|
37
41
|
name: String,
|
|
38
42
|
allowed_preferences: ::Array[Courier::Models::WorkspacePreferenceTopicReplaceRequest::allowed_preference]?,
|
|
43
|
+
description: String?,
|
|
39
44
|
include_unsubscribe_header: bool?,
|
|
40
45
|
routing_options: ::Array[Courier::Models::channel_classification]?,
|
|
41
46
|
topic_data: ::Hash[Symbol, top]?
|
data/sig/courier/models.rbs
CHANGED
|
@@ -289,6 +289,8 @@ module Courier
|
|
|
289
289
|
|
|
290
290
|
class MessageProvidersType = Courier::Models::MessageProvidersType
|
|
291
291
|
|
|
292
|
+
class MessageResendParams = Courier::Models::MessageResendParams
|
|
293
|
+
|
|
292
294
|
class MessageRetrieveParams = Courier::Models::MessageRetrieveParams
|
|
293
295
|
|
|
294
296
|
class MessageRouting = Courier::Models::MessageRouting
|
|
@@ -401,6 +403,8 @@ module Courier
|
|
|
401
403
|
|
|
402
404
|
class ProviderUpdateParams = Courier::Models::ProviderUpdateParams
|
|
403
405
|
|
|
406
|
+
class PublishPreferencesRequest = Courier::Models::PublishPreferencesRequest
|
|
407
|
+
|
|
404
408
|
class PublishPreferencesResponse = Courier::Models::PublishPreferencesResponse
|
|
405
409
|
|
|
406
410
|
class PutSubscriptionsRecipient = Courier::Models::PutSubscriptionsRecipient
|
|
@@ -40,6 +40,11 @@ module Courier
|
|
|
40
40
|
?request_options: Courier::request_opts
|
|
41
41
|
) -> Courier::Models::MessageHistoryResponse
|
|
42
42
|
|
|
43
|
+
def resend: (
|
|
44
|
+
String message_id,
|
|
45
|
+
?request_options: Courier::request_opts
|
|
46
|
+
) -> Courier::Models::MessageResendResponse
|
|
47
|
+
|
|
43
48
|
def initialize: (client: Courier::Client) -> void
|
|
44
49
|
end
|
|
45
50
|
end
|
|
@@ -8,6 +8,20 @@ module Courier
|
|
|
8
8
|
?request_options: Courier::request_opts
|
|
9
9
|
) -> Courier::Models::Users::PreferenceRetrieveResponse
|
|
10
10
|
|
|
11
|
+
def bulk_replace: (
|
|
12
|
+
String user_id,
|
|
13
|
+
topics: ::Array[Courier::Users::PreferenceBulkReplaceParams::Topic],
|
|
14
|
+
?tenant_id: String?,
|
|
15
|
+
?request_options: Courier::request_opts
|
|
16
|
+
) -> Courier::Models::Users::PreferenceBulkReplaceResponse
|
|
17
|
+
|
|
18
|
+
def bulk_update: (
|
|
19
|
+
String user_id,
|
|
20
|
+
topics: ::Array[Courier::Users::PreferenceBulkUpdateParams::Topic],
|
|
21
|
+
?tenant_id: String?,
|
|
22
|
+
?request_options: Courier::request_opts
|
|
23
|
+
) -> Courier::Models::Users::PreferenceBulkUpdateResponse
|
|
24
|
+
|
|
11
25
|
def delete_topic: (
|
|
12
26
|
String topic_id,
|
|
13
27
|
user_id: String,
|
|
@@ -7,6 +7,7 @@ module Courier
|
|
|
7
7
|
default_status: Courier::Models::WorkspacePreferenceTopicCreateRequest::default_status,
|
|
8
8
|
name: String,
|
|
9
9
|
?allowed_preferences: ::Array[Courier::Models::WorkspacePreferenceTopicCreateRequest::allowed_preference]?,
|
|
10
|
+
?description: String?,
|
|
10
11
|
?include_unsubscribe_header: bool?,
|
|
11
12
|
?routing_options: ::Array[Courier::Models::channel_classification]?,
|
|
12
13
|
?topic_data: ::Hash[Symbol, top]?,
|
|
@@ -36,6 +37,7 @@ module Courier
|
|
|
36
37
|
default_status: Courier::Models::WorkspacePreferenceTopicReplaceRequest::default_status,
|
|
37
38
|
name: String,
|
|
38
39
|
?allowed_preferences: ::Array[Courier::Models::WorkspacePreferenceTopicReplaceRequest::allowed_preference]?,
|
|
40
|
+
?description: String?,
|
|
39
41
|
?include_unsubscribe_header: bool?,
|
|
40
42
|
?routing_options: ::Array[Courier::Models::channel_classification]?,
|
|
41
43
|
?topic_data: ::Hash[Symbol, top]?,
|
|
@@ -5,6 +5,7 @@ module Courier
|
|
|
5
5
|
|
|
6
6
|
def create: (
|
|
7
7
|
name: String,
|
|
8
|
+
?description: String?,
|
|
8
9
|
?has_custom_routing: bool?,
|
|
9
10
|
?routing_options: ::Array[Courier::Models::channel_classification]?,
|
|
10
11
|
?request_options: Courier::request_opts
|
|
@@ -25,12 +26,16 @@ module Courier
|
|
|
25
26
|
) -> nil
|
|
26
27
|
|
|
27
28
|
def publish: (
|
|
29
|
+
?brand_id: String?,
|
|
30
|
+
?description: String?,
|
|
31
|
+
?heading: String?,
|
|
28
32
|
?request_options: Courier::request_opts
|
|
29
33
|
) -> Courier::PublishPreferencesResponse
|
|
30
34
|
|
|
31
35
|
def replace: (
|
|
32
36
|
String section_id,
|
|
33
37
|
name: String,
|
|
38
|
+
?description: String?,
|
|
34
39
|
?has_custom_routing: bool?,
|
|
35
40
|
?routing_options: ::Array[Courier::Models::channel_classification]?,
|
|
36
41
|
?request_options: Courier::request_opts
|
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.19.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-07-
|
|
11
|
+
date: 2026-07-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -244,6 +244,8 @@ files:
|
|
|
244
244
|
- lib/courier/models/message_list_response.rb
|
|
245
245
|
- lib/courier/models/message_providers.rb
|
|
246
246
|
- lib/courier/models/message_providers_type.rb
|
|
247
|
+
- lib/courier/models/message_resend_params.rb
|
|
248
|
+
- lib/courier/models/message_resend_response.rb
|
|
247
249
|
- lib/courier/models/message_retrieve_params.rb
|
|
248
250
|
- lib/courier/models/message_retrieve_response.rb
|
|
249
251
|
- lib/courier/models/message_routing.rb
|
|
@@ -317,6 +319,7 @@ files:
|
|
|
317
319
|
- lib/courier/models/providers/catalog_list_params.rb
|
|
318
320
|
- lib/courier/models/providers/catalog_list_response.rb
|
|
319
321
|
- lib/courier/models/providers_catalog_entry.rb
|
|
322
|
+
- lib/courier/models/publish_preferences_request.rb
|
|
320
323
|
- lib/courier/models/publish_preferences_response.rb
|
|
321
324
|
- lib/courier/models/put_subscriptions_recipient.rb
|
|
322
325
|
- lib/courier/models/put_tenant_template_request.rb
|
|
@@ -381,6 +384,11 @@ files:
|
|
|
381
384
|
- lib/courier/models/user_profile.rb
|
|
382
385
|
- lib/courier/models/user_profile_firebase_token.rb
|
|
383
386
|
- lib/courier/models/user_recipient.rb
|
|
387
|
+
- lib/courier/models/users/bulk_preference_topic.rb
|
|
388
|
+
- lib/courier/models/users/preference_bulk_replace_params.rb
|
|
389
|
+
- lib/courier/models/users/preference_bulk_replace_response.rb
|
|
390
|
+
- lib/courier/models/users/preference_bulk_update_params.rb
|
|
391
|
+
- lib/courier/models/users/preference_bulk_update_response.rb
|
|
384
392
|
- lib/courier/models/users/preference_delete_topic_params.rb
|
|
385
393
|
- lib/courier/models/users/preference_retrieve_params.rb
|
|
386
394
|
- lib/courier/models/users/preference_retrieve_response.rb
|
|
@@ -665,6 +673,8 @@ files:
|
|
|
665
673
|
- rbi/courier/models/message_list_response.rbi
|
|
666
674
|
- rbi/courier/models/message_providers.rbi
|
|
667
675
|
- rbi/courier/models/message_providers_type.rbi
|
|
676
|
+
- rbi/courier/models/message_resend_params.rbi
|
|
677
|
+
- rbi/courier/models/message_resend_response.rbi
|
|
668
678
|
- rbi/courier/models/message_retrieve_params.rbi
|
|
669
679
|
- rbi/courier/models/message_retrieve_response.rbi
|
|
670
680
|
- rbi/courier/models/message_routing.rbi
|
|
@@ -738,6 +748,7 @@ files:
|
|
|
738
748
|
- rbi/courier/models/providers/catalog_list_params.rbi
|
|
739
749
|
- rbi/courier/models/providers/catalog_list_response.rbi
|
|
740
750
|
- rbi/courier/models/providers_catalog_entry.rbi
|
|
751
|
+
- rbi/courier/models/publish_preferences_request.rbi
|
|
741
752
|
- rbi/courier/models/publish_preferences_response.rbi
|
|
742
753
|
- rbi/courier/models/put_subscriptions_recipient.rbi
|
|
743
754
|
- rbi/courier/models/put_tenant_template_request.rbi
|
|
@@ -802,6 +813,11 @@ files:
|
|
|
802
813
|
- rbi/courier/models/user_profile.rbi
|
|
803
814
|
- rbi/courier/models/user_profile_firebase_token.rbi
|
|
804
815
|
- rbi/courier/models/user_recipient.rbi
|
|
816
|
+
- rbi/courier/models/users/bulk_preference_topic.rbi
|
|
817
|
+
- rbi/courier/models/users/preference_bulk_replace_params.rbi
|
|
818
|
+
- rbi/courier/models/users/preference_bulk_replace_response.rbi
|
|
819
|
+
- rbi/courier/models/users/preference_bulk_update_params.rbi
|
|
820
|
+
- rbi/courier/models/users/preference_bulk_update_response.rbi
|
|
805
821
|
- rbi/courier/models/users/preference_delete_topic_params.rbi
|
|
806
822
|
- rbi/courier/models/users/preference_retrieve_params.rbi
|
|
807
823
|
- rbi/courier/models/users/preference_retrieve_response.rbi
|
|
@@ -1085,6 +1101,8 @@ files:
|
|
|
1085
1101
|
- sig/courier/models/message_list_response.rbs
|
|
1086
1102
|
- sig/courier/models/message_providers.rbs
|
|
1087
1103
|
- sig/courier/models/message_providers_type.rbs
|
|
1104
|
+
- sig/courier/models/message_resend_params.rbs
|
|
1105
|
+
- sig/courier/models/message_resend_response.rbs
|
|
1088
1106
|
- sig/courier/models/message_retrieve_params.rbs
|
|
1089
1107
|
- sig/courier/models/message_retrieve_response.rbs
|
|
1090
1108
|
- sig/courier/models/message_routing.rbs
|
|
@@ -1158,6 +1176,7 @@ files:
|
|
|
1158
1176
|
- sig/courier/models/providers/catalog_list_params.rbs
|
|
1159
1177
|
- sig/courier/models/providers/catalog_list_response.rbs
|
|
1160
1178
|
- sig/courier/models/providers_catalog_entry.rbs
|
|
1179
|
+
- sig/courier/models/publish_preferences_request.rbs
|
|
1161
1180
|
- sig/courier/models/publish_preferences_response.rbs
|
|
1162
1181
|
- sig/courier/models/put_subscriptions_recipient.rbs
|
|
1163
1182
|
- sig/courier/models/put_tenant_template_request.rbs
|
|
@@ -1222,6 +1241,11 @@ files:
|
|
|
1222
1241
|
- sig/courier/models/user_profile.rbs
|
|
1223
1242
|
- sig/courier/models/user_profile_firebase_token.rbs
|
|
1224
1243
|
- sig/courier/models/user_recipient.rbs
|
|
1244
|
+
- sig/courier/models/users/bulk_preference_topic.rbs
|
|
1245
|
+
- sig/courier/models/users/preference_bulk_replace_params.rbs
|
|
1246
|
+
- sig/courier/models/users/preference_bulk_replace_response.rbs
|
|
1247
|
+
- sig/courier/models/users/preference_bulk_update_params.rbs
|
|
1248
|
+
- sig/courier/models/users/preference_bulk_update_response.rbs
|
|
1225
1249
|
- sig/courier/models/users/preference_delete_topic_params.rbs
|
|
1226
1250
|
- sig/courier/models/users/preference_retrieve_params.rbs
|
|
1227
1251
|
- sig/courier/models/users/preference_retrieve_response.rbs
|