Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: pong response & chunked upload #59

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

fix: pong response & chunked upload #59

wants to merge 2 commits into from

Conversation

loks0n
Copy link
Member

@loks0n loks0n commented Jan 29, 2025

Automated SDK update

@@ -55,7 +55,7 @@ Dictionary<string, object> data
createdAt: map["$createdAt"].ToString(),
updatedAt: map["$updatedAt"].ToString(),
permissions: ((JArray)map["$permissions"]).ToObject<List<string>>(),
data: map
, data: map
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm this doesnt look right

@@ -19,7 +19,7 @@ Dictionary<string, object> data
}

public static Preferences From(Dictionary<string, object> map) => new Preferences(
data: map
, data: map
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here

@@ -718,7 +718,7 @@ static Models.User Convert(Dictionary<string, object> it) =>
/// Delete an authenticator app.
/// </para>
/// </summary>
public Task<Models.User> DeleteMfaAuthenticator(string userId, Appwrite.Enums.AuthenticatorType type)
public Task<object> DeleteMfaAuthenticator(string userId, Appwrite.Enums.AuthenticatorType type)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this be object? this endpoint returns no content 🤔

min: map["min"] == null ? null : Convert.ToDouble(map["min"]),
max: map["max"] == null ? null : Convert.ToDouble(map["max"]),
xdefault: map["default"] == null ? null : Convert.ToDouble(map["default"])
min: map["min"] == null ? null :Convert.ToDouble(map["min"]),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe the space was useful for readability

min: map["min"] == null ? null : Convert.ToInt64(map["min"]),
max: map["max"] == null ? null : Convert.ToInt64(map["max"]),
xdefault: map["default"] == null ? null : Convert.ToInt64(map["default"])
min: map["min"] == null ? null :Convert.ToInt64(map["min"]),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here

Copy link
Member

@christyjacob4 christyjacob4 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

some issues / bugs, but rest looks okay

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants