mailslurp_client 8.2.15 → 8.4.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/README.md +31 -2
- data/lib/mailslurp_client.rb +11 -2
- data/lib/mailslurp_client/api/alias_controller_api.rb +94 -80
- data/lib/mailslurp_client/api/domain_controller_api.rb +7 -5
- data/lib/mailslurp_client/api/email_controller_api.rb +72 -2
- data/lib/mailslurp_client/api/form_controller_api.rb +4 -7
- data/lib/mailslurp_client/api/inbox_controller_api.rb +87 -10
- data/lib/mailslurp_client/api/mail_server_controller_api.rb +123 -0
- data/lib/mailslurp_client/models/alias_dto.rb +276 -0
- data/lib/mailslurp_client/models/alias_projection.rb +276 -0
- data/lib/mailslurp_client/models/alias_verification_result.rb +234 -0
- data/lib/mailslurp_client/models/{create_owned_alias_options.rb → create_alias_options.rb} +13 -13
- data/lib/mailslurp_client/models/create_inbox_dto.rb +259 -0
- data/lib/mailslurp_client/models/dns_lookup_options.rb +252 -0
- data/lib/mailslurp_client/models/dns_lookup_result.rb +288 -0
- data/lib/mailslurp_client/models/dns_lookup_results.rb +214 -0
- data/lib/mailslurp_client/models/domain_dto.rb +16 -16
- data/lib/mailslurp_client/models/email.rb +11 -1
- data/lib/mailslurp_client/models/html_validation_result.rb +3 -15
- data/lib/mailslurp_client/models/inbox.rb +5 -5
- data/lib/mailslurp_client/models/ip_address_result.rb +226 -0
- data/lib/mailslurp_client/models/model_alias.rb +36 -22
- data/lib/mailslurp_client/models/page_alias.rb +1 -1
- data/lib/mailslurp_client/models/reply_to_email_options.rb +313 -0
- data/lib/mailslurp_client/models/{create_anonymous_alias_options.rb → update_alias_options.rb} +12 -12
- data/lib/mailslurp_client/models/update_inbox_options.rb +2 -2
- data/lib/mailslurp_client/version.rb +1 -1
- metadata +13 -4
data/lib/mailslurp_client/models/{create_anonymous_alias_options.rb → update_alias_options.rb}
RENAMED
@@ -13,22 +13,22 @@ OpenAPI Generator version: 4.3.1
|
|
13
13
|
require 'date'
|
14
14
|
|
15
15
|
module MailSlurpClient
|
16
|
-
#
|
17
|
-
class
|
18
|
-
#
|
19
|
-
attr_accessor :
|
16
|
+
# Update an email alias
|
17
|
+
class UpdateAliasOptions
|
18
|
+
# Optional name for alias
|
19
|
+
attr_accessor :name
|
20
20
|
|
21
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
22
|
def self.attribute_map
|
23
23
|
{
|
24
|
-
:'
|
24
|
+
:'name' => :'name'
|
25
25
|
}
|
26
26
|
end
|
27
27
|
|
28
28
|
# Attribute type mapping.
|
29
29
|
def self.openapi_types
|
30
30
|
{
|
31
|
-
:'
|
31
|
+
:'name' => :'String'
|
32
32
|
}
|
33
33
|
end
|
34
34
|
|
@@ -42,19 +42,19 @@ module MailSlurpClient
|
|
42
42
|
# @param [Hash] attributes Model attributes in the form of hash
|
43
43
|
def initialize(attributes = {})
|
44
44
|
if (!attributes.is_a?(Hash))
|
45
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `MailSlurpClient::
|
45
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `MailSlurpClient::UpdateAliasOptions` initialize method"
|
46
46
|
end
|
47
47
|
|
48
48
|
# check to see if the attribute exists and convert string to symbol for hash key
|
49
49
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
50
50
|
if (!self.class.attribute_map.key?(k.to_sym))
|
51
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `MailSlurpClient::
|
51
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `MailSlurpClient::UpdateAliasOptions`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
52
52
|
end
|
53
53
|
h[k.to_sym] = v
|
54
54
|
}
|
55
55
|
|
56
|
-
if attributes.key?(:'
|
57
|
-
self.
|
56
|
+
if attributes.key?(:'name')
|
57
|
+
self.name = attributes[:'name']
|
58
58
|
end
|
59
59
|
end
|
60
60
|
|
@@ -76,7 +76,7 @@ module MailSlurpClient
|
|
76
76
|
def ==(o)
|
77
77
|
return true if self.equal?(o)
|
78
78
|
self.class == o.class &&
|
79
|
-
|
79
|
+
name == o.name
|
80
80
|
end
|
81
81
|
|
82
82
|
# @see the `==` method
|
@@ -88,7 +88,7 @@ module MailSlurpClient
|
|
88
88
|
# Calculates hash code according to all attributes.
|
89
89
|
# @return [Integer] Hash code
|
90
90
|
def hash
|
91
|
-
[
|
91
|
+
[name].hash
|
92
92
|
end
|
93
93
|
|
94
94
|
# Builds the object from hash
|
@@ -21,13 +21,13 @@ module MailSlurpClient
|
|
21
21
|
# When, if ever, will the inbox expire and be deleted. If null then this inbox is permanent and the emails in it won't be deleted. Timestamp passed as string.
|
22
22
|
attr_accessor :expires_at
|
23
23
|
|
24
|
-
# Is the inbox
|
24
|
+
# Is the inbox favorited. Favouriting inboxes is typically done in the dashboard for quick access
|
25
25
|
attr_accessor :favourite
|
26
26
|
|
27
27
|
# Optional name of the inbox. Displayed in the dashboard for easier search
|
28
28
|
attr_accessor :name
|
29
29
|
|
30
|
-
# Tags that inbox has been tagged with
|
30
|
+
# Tags that inbox has been tagged with. Tags can be added to inboxes to group different inboxes within an account. You can also search for inboxes by tag in the dashboard UI.
|
31
31
|
attr_accessor :tags
|
32
32
|
|
33
33
|
# Attribute mapping from ruby-style variable name to JSON key.
|
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: 8.
|
4
|
+
version: 8.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mailslurp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-12 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.
|
@@ -41,21 +41,27 @@ files:
|
|
41
41
|
- lib/mailslurp_client/api_client.rb
|
42
42
|
- lib/mailslurp_client/api_error.rb
|
43
43
|
- lib/mailslurp_client/configuration.rb
|
44
|
+
- lib/mailslurp_client/models/alias_dto.rb
|
45
|
+
- lib/mailslurp_client/models/alias_projection.rb
|
46
|
+
- lib/mailslurp_client/models/alias_verification_result.rb
|
44
47
|
- lib/mailslurp_client/models/attachment_meta_data.rb
|
45
48
|
- lib/mailslurp_client/models/basic_auth_options.rb
|
46
49
|
- lib/mailslurp_client/models/bulk_send_email_options.rb
|
47
50
|
- lib/mailslurp_client/models/contact_dto.rb
|
48
51
|
- lib/mailslurp_client/models/contact_projection.rb
|
49
52
|
- lib/mailslurp_client/models/content_match_options.rb
|
50
|
-
- lib/mailslurp_client/models/
|
53
|
+
- lib/mailslurp_client/models/create_alias_options.rb
|
51
54
|
- lib/mailslurp_client/models/create_contact_options.rb
|
52
55
|
- lib/mailslurp_client/models/create_domain_options.rb
|
53
56
|
- lib/mailslurp_client/models/create_group_options.rb
|
54
|
-
- lib/mailslurp_client/models/
|
57
|
+
- lib/mailslurp_client/models/create_inbox_dto.rb
|
55
58
|
- lib/mailslurp_client/models/create_template_options.rb
|
56
59
|
- lib/mailslurp_client/models/create_webhook_options.rb
|
57
60
|
- lib/mailslurp_client/models/describe_domain_options.rb
|
58
61
|
- lib/mailslurp_client/models/describe_mail_server_domain_result.rb
|
62
|
+
- lib/mailslurp_client/models/dns_lookup_options.rb
|
63
|
+
- lib/mailslurp_client/models/dns_lookup_result.rb
|
64
|
+
- lib/mailslurp_client/models/dns_lookup_results.rb
|
59
65
|
- lib/mailslurp_client/models/domain_dto.rb
|
60
66
|
- lib/mailslurp_client/models/domain_preview.rb
|
61
67
|
- lib/mailslurp_client/models/download_attachment_dto.rb
|
@@ -72,6 +78,7 @@ files:
|
|
72
78
|
- lib/mailslurp_client/models/html_validation_result.rb
|
73
79
|
- lib/mailslurp_client/models/inbox.rb
|
74
80
|
- lib/mailslurp_client/models/inbox_projection.rb
|
81
|
+
- lib/mailslurp_client/models/ip_address_result.rb
|
75
82
|
- lib/mailslurp_client/models/match_option.rb
|
76
83
|
- lib/mailslurp_client/models/match_options.rb
|
77
84
|
- lib/mailslurp_client/models/model_alias.rb
|
@@ -87,6 +94,7 @@ files:
|
|
87
94
|
- lib/mailslurp_client/models/page_webhook_projection.rb
|
88
95
|
- lib/mailslurp_client/models/pageable.rb
|
89
96
|
- lib/mailslurp_client/models/raw_email_json.rb
|
97
|
+
- lib/mailslurp_client/models/reply_to_email_options.rb
|
90
98
|
- lib/mailslurp_client/models/send_email_options.rb
|
91
99
|
- lib/mailslurp_client/models/sent_email_dto.rb
|
92
100
|
- lib/mailslurp_client/models/sent_email_projection.rb
|
@@ -97,6 +105,7 @@ files:
|
|
97
105
|
- lib/mailslurp_client/models/template_projection.rb
|
98
106
|
- lib/mailslurp_client/models/template_variable.rb
|
99
107
|
- lib/mailslurp_client/models/unread_count.rb
|
108
|
+
- lib/mailslurp_client/models/update_alias_options.rb
|
100
109
|
- lib/mailslurp_client/models/update_group_contacts.rb
|
101
110
|
- lib/mailslurp_client/models/update_inbox_options.rb
|
102
111
|
- lib/mailslurp_client/models/upload_attachment_options.rb
|