This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04f7685
commit cc9b388
Showing
18 changed files
with
187 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,37 @@ | ||
name: Authentication | ||
description: Authenticate users with multiple authentication methods. | ||
icon: key | ||
tags: | ||
- core | ||
- auth | ||
- user | ||
authors: | ||
- rivet-gg | ||
- NathanFlurry | ||
status: stable | ||
dependencies: | ||
email: {} | ||
users: {} | ||
rate_limit: {} | ||
scripts: | ||
auth_email_passwordless: | ||
name: Authenticate Email Passwordless | ||
description: Send a one-time verification code to a user's email address to authenticate them. | ||
public: true | ||
verify_email_passwordless: | ||
name: Verify Email Passwordless | ||
description: Verify a user's email address with a one-time verification code. | ||
public: true | ||
errors: | ||
PROVIDER_DISABLED: {} | ||
VERIFICATION_CODE_INVALID: {} | ||
VERIFICATION_CODE_ATTEMPT_LIMIT: {} | ||
VERIFICATION_CODE_EXPIRED: {} | ||
VERIFICATION_CODE_ALREADY_USED: {} | ||
EMAIL_ALREADY_USED: {} | ||
provider_disabled: | ||
name: Provider Disabled | ||
verification_code_invalid: | ||
name: Verification Code Invalid | ||
verification_code_attempt_limit: | ||
name: Verification Code Attempt Limit | ||
verification_code_expired: | ||
name: Verification Code Expired | ||
verification_code_already_used: | ||
name: Verification Code Already Used | ||
email_already_used: | ||
name: Email Already Used |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,32 @@ | ||
status: preview | ||
name: Currency | ||
description: Track user balances and allow them to deposit and withdraw. | ||
icon: coin | ||
tags: | ||
- economy | ||
authors: | ||
- ABCxFF | ||
status: preview | ||
dependencies: | ||
rate_limit: {} | ||
users: {} | ||
scripts: | ||
# Maybe deposit? | ||
deposit: {} | ||
deposit: | ||
name: Deposit | ||
# Maybe withdraw? | ||
withdraw: {} | ||
get_balance: {} | ||
set_balance: {} | ||
withdraw: | ||
name: Withdraw | ||
get_balance: | ||
name: Get Balance | ||
set_balance: | ||
name: Set Balance | ||
get_balance_by_token: | ||
name: Get Balance by Token | ||
public: true | ||
errors: | ||
INVALID_USER: {} | ||
INVALID_AMOUNT: {} | ||
NOT_ENOUGH_FUNDS: {} | ||
invalid_user: | ||
name: Invalid User | ||
invalid_amount: | ||
name: Invalid Amount | ||
not_enough_funds: | ||
name: Not Enough Funds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
name: Email | ||
description: Send emails using multiple providers. | ||
icon: envelope | ||
tags: | ||
authors: | ||
- rivet-gg | ||
- NathanFlurry | ||
status: stable | ||
scripts: | ||
send_email: {} | ||
send_email: | ||
name: Send Email | ||
errors: | ||
EMAIL_MISSING_CONTENT: | ||
email_missing_content: | ||
name: Email Missing Content | ||
description: Email must have `html` and/or `text` | ||
SENDGRID_ERROR: {} | ||
sendgrid_error: | ||
name: SendGrid Error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,56 @@ | ||
status: preview | ||
name: Friends | ||
description: Allow users to send and accept friend requests. | ||
icon: user-group | ||
tags: | ||
- social | ||
authors: | ||
- rivet-gg | ||
- NathanFlurry | ||
status: beta | ||
dependencies: | ||
rate_limit: {} | ||
users: {} | ||
scripts: | ||
send_request: | ||
name: Send Request | ||
description: Send a friend request to another user. | ||
public: true | ||
accept_request: | ||
name: Accept Request | ||
description: Accept a friend request from another user. | ||
public: true | ||
decline_request: | ||
name: Decline Request | ||
description: Decline a friend request from another user. | ||
public: true | ||
remove_friend: | ||
name: Remove Friend | ||
description: Remove a friend from your friends list. | ||
public: true | ||
list_friends: | ||
name: List Friends | ||
description: List all friends of a user. | ||
public: true | ||
list_outgoing_friend_requests: | ||
name: List Outgoing Friend Requests | ||
description: List all friend requests sent by a user. | ||
public: true | ||
list_incoming_friend_requests: | ||
name: List Incoming Friend Requests | ||
description: List all friend requests received by a user. | ||
public: true | ||
errors: | ||
ALREADY_FRIENDS: {} | ||
FRIEND_REQUEST_NOT_FOUND: {} | ||
FRIEND_REQUEST_ALREADY_EXISTS: {} | ||
NOT_FRIEND_REQUEST_RECIPIENT: {} | ||
FRIEND_REQUEST_ALREADY_ACCEPTED: {} | ||
FRIEND_REQUEST_ALREADY_DECLINED: {} | ||
CANNOT_SEND_TO_SELF: {} | ||
already_friends: | ||
name: Already Friends | ||
friend_request_not_found: | ||
name: Friend Request Not Found | ||
friend_request_already_exists: | ||
name: Friend Request Already Exists | ||
not_friend_request_recipient: | ||
name: Not Friend Request Recipient | ||
friend_request_already_accepted: | ||
name: Friend Request Already Accepted | ||
friend_request_already_declined: | ||
name: Friend Request Already Declined | ||
cannot_send_to_self: | ||
name: Cannot Send to Self |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,20 @@ | ||
status: preview | ||
name: Rate Limit | ||
description: Prevent abuse by limiting request rate. | ||
icon: gauge-circle-minus | ||
tags: | ||
- core | ||
- utility | ||
authors: | ||
- rivet-gg | ||
- NathanFlurry | ||
status: stable | ||
scripts: | ||
throttle: {} | ||
throttle_public: {} | ||
throttle: | ||
name: Throttle | ||
description: Limit the amount of times an request can be made by a given key. | ||
throttle_public: | ||
name: Throttle Public | ||
description: Limit the amount of times a public request can be made by a given key. This will rate limit based off the user's IP address. | ||
errors: | ||
RATE_LIMIT_EXCEEDED: {} | ||
rate_limit_exceeded: | ||
name: Rate Limit Exceeded |
Oops, something went wrong.