mailslurp_client 8.7.1 → 9.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/lib/mailslurp_client.rb +4 -0
- data/lib/mailslurp_client/api/alias_controller_api.rb +2 -2
- data/lib/mailslurp_client/api/common_actions_controller_api.rb +20 -6
- data/lib/mailslurp_client/api/inbox_controller_api.rb +210 -14
- data/lib/mailslurp_client/models/create_inbox_dto.rb +19 -8
- data/lib/mailslurp_client/models/domain_dto.rb +15 -3
- data/lib/mailslurp_client/models/domain_name_record.rb +290 -0
- data/lib/mailslurp_client/models/expired_inbox_dto.rb +240 -0
- data/lib/mailslurp_client/models/expired_inbox_record_projection.rb +253 -0
- data/lib/mailslurp_client/models/inbox.rb +7 -7
- data/lib/mailslurp_client/models/page_expired_inbox_record_projection.rb +299 -0
- data/lib/mailslurp_client/models/set_inbox_favourited_options.rb +1 -1
- data/lib/mailslurp_client/models/simple_send_email_options.rb +1 -1
- data/lib/mailslurp_client/models/update_inbox_options.rb +4 -4
- data/lib/mailslurp_client/version.rb +1 -1
- metadata +6 -2
@@ -15,7 +15,7 @@ require 'date'
|
|
15
15
|
module MailSlurpClient
|
16
16
|
# Options for setting inbox favourite state
|
17
17
|
class SetInboxFavouritedOptions
|
18
|
-
#
|
18
|
+
# Is the inbox favorited. Favouriting inboxes is typically done in the dashboard for quick access or filtering
|
19
19
|
attr_accessor :state
|
20
20
|
|
21
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -17,7 +17,7 @@ module MailSlurpClient
|
|
17
17
|
# Body of the email message. Supports HTML
|
18
18
|
attr_accessor :body
|
19
19
|
|
20
|
-
# ID of inbox to send from
|
20
|
+
# ID of inbox to send from. If null an inbox will be created for sending
|
21
21
|
attr_accessor :sender_id
|
22
22
|
|
23
23
|
# Subject line of the email
|
@@ -15,16 +15,16 @@ require 'date'
|
|
15
15
|
module MailSlurpClient
|
16
16
|
# Options for updating inbox properties
|
17
17
|
class UpdateInboxOptions
|
18
|
-
#
|
18
|
+
# Description of an inbox for labelling and searching purposes
|
19
19
|
attr_accessor :description
|
20
20
|
|
21
|
-
# When, if ever,
|
21
|
+
# Inbox expiration time. When, if ever, the inbox should expire and be deleted. If null then this inbox is permanent and the emails in it won't be deleted. This is the default behavior unless expiration date is set. If an expiration date is set and the time is reached MailSlurp will expire the inbox and move it to an expired inbox entity. You can still access the emails belonging to it but it can no longer send or receive email.
|
22
22
|
attr_accessor :expires_at
|
23
23
|
|
24
|
-
# Is the inbox favorited. Favouriting inboxes is typically done in the dashboard for quick access
|
24
|
+
# Is the inbox favorited. Favouriting inboxes is typically done in the dashboard for quick access or filtering
|
25
25
|
attr_accessor :favourite
|
26
26
|
|
27
|
-
#
|
27
|
+
# Name of the inbox. Displayed in the dashboard for easier search
|
28
28
|
attr_accessor :name
|
29
29
|
|
30
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.
|
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:
|
4
|
+
version: 9.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mailslurp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-08 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.
|
@@ -62,6 +62,7 @@ files:
|
|
62
62
|
- lib/mailslurp_client/models/dns_lookup_result.rb
|
63
63
|
- lib/mailslurp_client/models/dns_lookup_results.rb
|
64
64
|
- lib/mailslurp_client/models/domain_dto.rb
|
65
|
+
- lib/mailslurp_client/models/domain_name_record.rb
|
65
66
|
- lib/mailslurp_client/models/domain_preview.rb
|
66
67
|
- lib/mailslurp_client/models/download_attachment_dto.rb
|
67
68
|
- lib/mailslurp_client/models/email.rb
|
@@ -70,6 +71,8 @@ files:
|
|
70
71
|
- lib/mailslurp_client/models/email_preview.rb
|
71
72
|
- lib/mailslurp_client/models/email_projection.rb
|
72
73
|
- lib/mailslurp_client/models/email_verification_result.rb
|
74
|
+
- lib/mailslurp_client/models/expired_inbox_dto.rb
|
75
|
+
- lib/mailslurp_client/models/expired_inbox_record_projection.rb
|
73
76
|
- lib/mailslurp_client/models/forward_email_options.rb
|
74
77
|
- lib/mailslurp_client/models/group_contacts_dto.rb
|
75
78
|
- lib/mailslurp_client/models/group_dto.rb
|
@@ -86,6 +89,7 @@ files:
|
|
86
89
|
- lib/mailslurp_client/models/page_contact_projection.rb
|
87
90
|
- lib/mailslurp_client/models/page_email_preview.rb
|
88
91
|
- lib/mailslurp_client/models/page_email_projection.rb
|
92
|
+
- lib/mailslurp_client/models/page_expired_inbox_record_projection.rb
|
89
93
|
- lib/mailslurp_client/models/page_group_projection.rb
|
90
94
|
- lib/mailslurp_client/models/page_inbox_projection.rb
|
91
95
|
- lib/mailslurp_client/models/page_sent_email_projection.rb
|