mailslurp_client 12.1.29 → 12.2.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a427bb5e49835296ad621a84d617d327449fe99c38aa75413dd030973b5fb5d
|
4
|
+
data.tar.gz: 7c7d311d0f3cce375656e224c7e1bffc0a196ae654a08b6ef34994cc995471f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ce2d37cd2a1fdcf6c1eb971269e8ba0e192cb11e352e9c7fcccc0524d61dfc5dac6e9a29118408e9024046b88b07c24672b3ace6c81223ab321f8495cb68836
|
7
|
+
data.tar.gz: acd8e736eedf69e94eb3d1323fa7fd32a187a9846db01bc3c3cc7418e9dd5468af2a13cca58f0160ea55a4752980d0a9fa461ba77a14a9c5755a4df9b0bea5db
|
@@ -932,6 +932,7 @@ module MailSlurpClient
|
|
932
932
|
# @param [Hash] opts the optional parameters
|
933
933
|
# @option opts [Array<String>] :inbox_id Optional inbox ids to filter by. Can be repeated. By default will use all inboxes belonging to your account.
|
934
934
|
# @option opts [Integer] :page Optional page index in email list pagination (default to 0)
|
935
|
+
# @option opts [String] :search_filter Optional search filter. Searches email recipients, sender, subject, email address and ID. Does not search email body (default to 'false')
|
935
936
|
# @option opts [Integer] :size Optional page size in email list pagination. Maximum size is 100. Use page index and sort to page through larger results (default to 20)
|
936
937
|
# @option opts [String] :sort Optional createdAt sort direction ASC or DESC (default to 'ASC')
|
937
938
|
# @option opts [Boolean] :unread_only Optional filter for unread emails only. All emails are considered unread until they are viewed in the dashboard or requested directly (default to false)
|
@@ -946,6 +947,7 @@ module MailSlurpClient
|
|
946
947
|
# @param [Hash] opts the optional parameters
|
947
948
|
# @option opts [Array<String>] :inbox_id Optional inbox ids to filter by. Can be repeated. By default will use all inboxes belonging to your account.
|
948
949
|
# @option opts [Integer] :page Optional page index in email list pagination
|
950
|
+
# @option opts [String] :search_filter Optional search filter. Searches email recipients, sender, subject, email address and ID. Does not search email body
|
949
951
|
# @option opts [Integer] :size Optional page size in email list pagination. Maximum size is 100. Use page index and sort to page through larger results
|
950
952
|
# @option opts [String] :sort Optional createdAt sort direction ASC or DESC
|
951
953
|
# @option opts [Boolean] :unread_only Optional filter for unread emails only. All emails are considered unread until they are viewed in the dashboard or requested directly
|
@@ -965,6 +967,7 @@ module MailSlurpClient
|
|
965
967
|
query_params = opts[:query_params] || {}
|
966
968
|
query_params[:'inboxId'] = @api_client.build_collection_param(opts[:'inbox_id'], :multi) if !opts[:'inbox_id'].nil?
|
967
969
|
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
970
|
+
query_params[:'searchFilter'] = opts[:'search_filter'] if !opts[:'search_filter'].nil?
|
968
971
|
query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
|
969
972
|
query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
|
970
973
|
query_params[:'unreadOnly'] = opts[:'unread_only'] if !opts[:'unread_only'].nil?
|
@@ -1125,6 +1128,7 @@ module MailSlurpClient
|
|
1125
1128
|
# @param [Hash] opts the optional parameters
|
1126
1129
|
# @option opts [Array<String>] :inbox_id Optional inbox ids to filter by. Can be repeated. By default will use all inboxes belonging to your account.
|
1127
1130
|
# @option opts [Integer] :page Optional page index in email list pagination (default to 0)
|
1131
|
+
# @option opts [String] :search_filter Optional search filter search filter for emails.
|
1128
1132
|
# @option opts [Integer] :size Optional page size in email list pagination. Maximum size is 100. Use page index and sort to page through larger results (default to 20)
|
1129
1133
|
# @option opts [String] :sort Optional createdAt sort direction ASC or DESC (default to 'ASC')
|
1130
1134
|
# @option opts [Boolean] :unread_only Optional filter for unread emails only. All emails are considered unread until they are viewed in the dashboard or requested directly (default to false)
|
@@ -1139,6 +1143,7 @@ module MailSlurpClient
|
|
1139
1143
|
# @param [Hash] opts the optional parameters
|
1140
1144
|
# @option opts [Array<String>] :inbox_id Optional inbox ids to filter by. Can be repeated. By default will use all inboxes belonging to your account.
|
1141
1145
|
# @option opts [Integer] :page Optional page index in email list pagination
|
1146
|
+
# @option opts [String] :search_filter Optional search filter search filter for emails.
|
1142
1147
|
# @option opts [Integer] :size Optional page size in email list pagination. Maximum size is 100. Use page index and sort to page through larger results
|
1143
1148
|
# @option opts [String] :sort Optional createdAt sort direction ASC or DESC
|
1144
1149
|
# @option opts [Boolean] :unread_only Optional filter for unread emails only. All emails are considered unread until they are viewed in the dashboard or requested directly
|
@@ -1158,6 +1163,7 @@ module MailSlurpClient
|
|
1158
1163
|
query_params = opts[:query_params] || {}
|
1159
1164
|
query_params[:'inboxId'] = @api_client.build_collection_param(opts[:'inbox_id'], :multi) if !opts[:'inbox_id'].nil?
|
1160
1165
|
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
1166
|
+
query_params[:'searchFilter'] = opts[:'search_filter'] if !opts[:'search_filter'].nil?
|
1161
1167
|
query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
|
1162
1168
|
query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
|
1163
1169
|
query_params[:'unreadOnly'] = opts[:'unread_only'] if !opts[:'unread_only'].nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mailslurp_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 12.
|
4
|
+
version: 12.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mailslurp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-06-
|
11
|
+
date: 2021-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Create emails addresses in Ruby then send and receive real emails and
|
14
14
|
attachments. See https://www.mailslurp.com/docs/ruby/ for full Ruby documentation.
|