File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2840,7 +2840,7 @@ defmodule Nostrum.Api do
28402840 @ doc """
28412841 Retrieves the original message of a webhook.
28422842 """
2843- @ doc since: "0.6.2 "
2843+ @ doc since: "0.7.0 "
28442844 @ spec get_webhook_message ( Webhook . t ( ) , Message . id ( ) ) ::
28452845 error | { :ok , Message . t ( ) }
28462846 def get_webhook_message ( webhook , message_id ) do
@@ -3513,7 +3513,7 @@ defmodule Nostrum.Api do
35133513 @ doc """
35143514 Retrieves the original message of an interaction.
35153515 """
3516- @ doc since: "0.6.2 "
3516+ @ doc since: "0.7.0 "
35173517 @ spec get_original_interaction_response ( Interaction . t ( ) ) :: error | { :ok , Message . t ( ) }
35183518 def get_original_interaction_response ( interaction ) do
35193519 path = Constants . original_interaction_response ( interaction . application_id , interaction . token )
Original file line number Diff line number Diff line change @@ -58,10 +58,10 @@ defmodule Nostrum.Struct.Guild.Member do
5858 @ type roles :: [ Role . id ( ) ]
5959
6060 @ typedoc """
61- Date the member joined the guild.
61+ Date the member joined the guild, as a unix timestamp .
6262 If you dont request offline guild members this field will be `nil` for any members that come online.
6363 """
64- @ type joined_at :: String . t ( ) | nil
64+ @ type joined_at :: pos_integer ( ) | nil
6565
6666 @ typedoc """
6767 Whether the member is deafened.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ defmodule Nostrum.Mixfile do
55 def project do
66 [
77 app: :nostrum ,
8- version: "0.7.0" ,
8+ version: "0.7.0-rc1 " ,
99 elixir: "~> 1.11" ,
1010 elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
1111 build_embedded: Mix . env ( ) == :prod ,
You can’t perform that action at this time.
0 commit comments