Skip to content

Commit e2da6fe

Browse files
author
mailslurp-sdk-bot
committed
15.19.22 - add-imap-methods
0 parents  commit e2da6fe

File tree

335 files changed

+15610
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

335 files changed

+15610
-0
lines changed

.openapi-generator-ignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

.openapi-generator/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.3.1

LICENSE

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2024 MailSlurp Email API (Provided by Pettman OÜ, Estonia)
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# gPRC for
2+
3+
MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more.
4+
5+
## Resources
6+
7+
- [Homepage](https://www.mailslurp.com)
8+
- Get an [API KEY](https://app.mailslurp.com/sign-up/)
9+
- Generated [SDK Clients](https://docs.mailslurp.com/)
10+
- [Examples](https://github.com/mailslurp/examples) repository
11+
12+
## Overview
13+
These files were generated by the [OpenAPI Generator](https://openapi-generator.tech) project.
14+
15+
- API version: 6.5.2
16+
- Package version:
17+
- Build package: org.openapitools.codegen.languages.ProtobufSchemaCodegen
18+
For more information, please visit [https://www.mailslurp.com/contact/](https://www.mailslurp.com/contact/)
19+
20+
## Usage
21+
22+
Below are some usage examples for Go and Ruby. For other languages, please refer to https://grpc.io/docs/quickstart/.
23+
24+
### Go
25+
```
26+
# assuming `protoc-gen-go` has been installed with `go get -u github.com/golang/protobuf/protoc-gen-go`
27+
mkdir /var/tmp/go/
28+
protoc --go_out=/var/tmp/go/ services/*
29+
protoc --go_out=/var/tmp/go/ models/*
30+
```
31+
32+
### Ruby
33+
```
34+
# assuming `grpc_tools_ruby_protoc` has been installed via `gem install grpc-tools`
35+
RUBY_OUTPUT_DIR="/var/tmp/ruby/"
36+
mkdir $RUBY_OUTPUT_DIR
37+
grpc_tools_ruby_protoc --ruby_out=$RUBY_OUTPUT_DIR --grpc_out=$RUBY_OUTPUT_DIR/lib services/*
38+
grpc_tools_ruby_protoc --ruby_out=$RUBY_OUTPUT_DIR --grpc_out=$RUBY_OUTPUT_DIR/lib models/*
39+
```

SECURITY.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Security
2+
3+
This client calls the MailSlurp API endpoints. Connections should be made over secure HTTPS using your secure API Token. Do not share or commit the token if you can avoid doing so.
4+
To report security issues or talk with MailSlurp support please email [[email protected]](mailto:[email protected]).

SUPPORT.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Support
2+
3+
To report issues or talk with MailSlurp support please email [[email protected]](mailto:[email protected]).
4+
Alternatively you can visit our [support portal](https://www.mailslurp.com/support/) or open a ticket in the corresponding [Github repository](https://www.github.com/mailslurp).

docs/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# MailSlurp Email API Protobuf definitions
2+
Protobuf definitions / schemas for the MailSlurp REST email API.
3+
4+
[See github for source code](https://www.github.com/mailslurp/mailslurp-client-profobuf).

models/abstract_webhook_payload.proto

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
MailSlurp API
3+
4+
MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
5+
6+
The version of the OpenAPI document: 6.5.2
7+
8+
Generated by OpenAPI Generator: https://openapi-generator.tech
9+
*/
10+
11+
syntax = "proto3";
12+
13+
package ;
14+
15+
16+
message AbstractWebhookPayload {
17+
18+
enum eventName {
19+
EMAIL_RECEIVED = 0;
20+
NEW_EMAIL = 1;
21+
NEW_CONTACT = 2;
22+
NEW_ATTACHMENT = 3;
23+
EMAIL_OPENED = 4;
24+
EMAIL_READ = 5;
25+
DELIVERY_STATUS = 6;
26+
BOUNCE = 7;
27+
BOUNCE_RECIPIENT = 8;
28+
NEW_SMS = 9;
29+
}
30+
31+
string messageId = 2;
32+
33+
string webhookId = 3;
34+
35+
string webhookName = 4;
36+
37+
}

models/account_bounce_block_dto.proto

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/*
2+
MailSlurp API
3+
4+
MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
5+
6+
The version of the OpenAPI document: 6.5.2
7+
8+
Generated by OpenAPI Generator: https://openapi-generator.tech
9+
*/
10+
11+
syntax = "proto3";
12+
13+
package ;
14+
15+
16+
message AccountBounceBlockDto {
17+
18+
bool isSendingBlocked = 1;
19+
20+
int64 bounceCount = 2;
21+
22+
int64 bounceCountToday = 3;
23+
24+
int64 maximumDailyBounces = 4;
25+
26+
int64 maximumAccountBounces = 5;
27+
28+
}

models/alias_dto.proto

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/*
2+
MailSlurp API
3+
4+
MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
5+
6+
The version of the OpenAPI document: 6.5.2
7+
8+
Generated by OpenAPI Generator: https://openapi-generator.tech
9+
*/
10+
11+
syntax = "proto3";
12+
13+
package ;
14+
15+
16+
message AliasDto {
17+
18+
string id = 1;
19+
20+
// The alias's email address for receiving email
21+
string emailAddress = 2;
22+
23+
// The underlying email address that is hidden and will received forwarded email
24+
string maskedEmailAddress = 3;
25+
26+
string userId = 4;
27+
28+
// Inbox that is associated with the alias
29+
string inboxId = 5;
30+
31+
string name = 6;
32+
33+
// If alias will generate response threads or not when email are received by it
34+
bool useThreads = 7;
35+
36+
// Has the alias been verified. You must verify an alias if the masked email address has not yet been verified by your account
37+
bool isVerified = 8;
38+
39+
// Domain ID associated with the alias
40+
string domainId = 9;
41+
42+
string createdAt = 10;
43+
44+
string updatedAt = 11;
45+
46+
}

models/alias_projection.proto

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/*
2+
MailSlurp API
3+
4+
MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
5+
6+
The version of the OpenAPI document: 6.5.2
7+
8+
Generated by OpenAPI Generator: https://openapi-generator.tech
9+
*/
10+
11+
syntax = "proto3";
12+
13+
package ;
14+
15+
16+
message AliasProjection {
17+
18+
string createdAt = 1;
19+
20+
string updatedAt = 2;
21+
22+
string inboxId = 3;
23+
24+
string emailAddress = 4;
25+
26+
string userId = 5;
27+
28+
bool useThreads = 6;
29+
30+
string name = 7;
31+
32+
string id = 8;
33+
34+
}

models/attachment_entity.proto

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
MailSlurp API
3+
4+
MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
5+
6+
The version of the OpenAPI document: 6.5.2
7+
8+
Generated by OpenAPI Generator: https://openapi-generator.tech
9+
*/
10+
11+
syntax = "proto3";
12+
13+
package ;
14+
15+
16+
message AttachmentEntity {
17+
18+
string id = 1;
19+
20+
string attachmentId = 2;
21+
22+
string bucket = 3;
23+
24+
string userId = 4;
25+
26+
string contentType = 5;
27+
28+
int64 contentLength = 6;
29+
30+
string contentId = 7;
31+
32+
string name = 8;
33+
34+
string inboxId = 9;
35+
36+
string createdAt = 10;
37+
38+
string updatedAt = 11;
39+
40+
}

models/attachment_meta_data.proto

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*
2+
MailSlurp API
3+
4+
MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
5+
6+
The version of the OpenAPI document: 6.5.2
7+
8+
Generated by OpenAPI Generator: https://openapi-generator.tech
9+
*/
10+
11+
syntax = "proto3";
12+
13+
package ;
14+
15+
16+
message AttachmentMetaData {
17+
18+
// Name of attachment if given
19+
string name = 1;
20+
21+
// Content type of attachment such as `image/png`
22+
string contentType = 2;
23+
24+
// Size of attachment in bytes
25+
int64 contentLength = 3;
26+
27+
// ID of attachment. Can be used to with attachment controller endpoints to download attachment or with sending methods to attach to an email.
28+
string id = 4;
29+
30+
// CID of attachment
31+
string contentId = 5;
32+
33+
}

models/attachment_projection.proto

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*
2+
MailSlurp API
3+
4+
MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
5+
6+
The version of the OpenAPI document: 6.5.2
7+
8+
Generated by OpenAPI Generator: https://openapi-generator.tech
9+
*/
10+
11+
syntax = "proto3";
12+
13+
package ;
14+
15+
16+
message AttachmentProjection {
17+
18+
string createdAt = 1;
19+
20+
string updatedAt = 2;
21+
22+
string userId = 3;
23+
24+
// Content ID of attachment.
25+
string contentId = 4;
26+
27+
// Attachment ID
28+
string attachmentId = 5;
29+
30+
string name = 6;
31+
32+
// Content length of attachment in bytes
33+
int64 contentLength = 7;
34+
35+
// Content type of attachment.
36+
string contentType = 8;
37+
38+
}

models/basic_auth_options.proto

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
MailSlurp API
3+
4+
MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
5+
6+
The version of the OpenAPI document: 6.5.2
7+
8+
Generated by OpenAPI Generator: https://openapi-generator.tech
9+
*/
10+
11+
syntax = "proto3";
12+
13+
package ;
14+
15+
16+
message BasicAuthOptions {
17+
18+
string username = 1;
19+
20+
string password = 2;
21+
22+
}

0 commit comments

Comments
 (0)