-
Notifications
You must be signed in to change notification settings - Fork 21
feat: .NET SDK update for version 0.19.0 #72
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
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| using System; | ||
|
|
||
| namespace Appwrite.Enums | ||
| { | ||
| public class AttributeStatus : IEnum | ||
| { | ||
| public string Value { get; private set; } | ||
|
|
||
| public AttributeStatus(string value) | ||
| { | ||
| Value = value; | ||
| } | ||
|
|
||
| public static AttributeStatus Available => new AttributeStatus("available"); | ||
| public static AttributeStatus Processing => new AttributeStatus("processing"); | ||
| public static AttributeStatus Deleting => new AttributeStatus("deleting"); | ||
| public static AttributeStatus Stuck => new AttributeStatus("stuck"); | ||
| public static AttributeStatus Failed => new AttributeStatus("failed"); | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| using System; | ||
|
|
||
| namespace Appwrite.Enums | ||
| { | ||
| public class ColumnStatus : IEnum | ||
| { | ||
| public string Value { get; private set; } | ||
|
|
||
| public ColumnStatus(string value) | ||
| { | ||
| Value = value; | ||
| } | ||
|
|
||
| public static ColumnStatus Available => new ColumnStatus("available"); | ||
| public static ColumnStatus Processing => new ColumnStatus("processing"); | ||
| public static ColumnStatus Deleting => new ColumnStatus("deleting"); | ||
| public static ColumnStatus Stuck => new ColumnStatus("stuck"); | ||
| public static ColumnStatus Failed => new ColumnStatus("failed"); | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| using System; | ||
|
|
||
| namespace Appwrite.Enums | ||
| { | ||
| public class DatabaseType : IEnum | ||
| { | ||
| public string Value { get; private set; } | ||
|
|
||
| public DatabaseType(string value) | ||
| { | ||
| Value = value; | ||
| } | ||
|
|
||
| public static DatabaseType Legacy => new DatabaseType("legacy"); | ||
| public static DatabaseType Tablesdb => new DatabaseType("tablesdb"); | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| using System; | ||
|
|
||
| namespace Appwrite.Enums | ||
| { | ||
| public class DeploymentStatus : IEnum | ||
| { | ||
| public string Value { get; private set; } | ||
|
|
||
| public DeploymentStatus(string value) | ||
| { | ||
| Value = value; | ||
| } | ||
|
|
||
| public static DeploymentStatus Waiting => new DeploymentStatus("waiting"); | ||
| public static DeploymentStatus Processing => new DeploymentStatus("processing"); | ||
| public static DeploymentStatus Building => new DeploymentStatus("building"); | ||
| public static DeploymentStatus Ready => new DeploymentStatus("ready"); | ||
| public static DeploymentStatus Failed => new DeploymentStatus("failed"); | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| using System; | ||
|
|
||
| namespace Appwrite.Enums | ||
| { | ||
| public class ExecutionStatus : IEnum | ||
| { | ||
| public string Value { get; private set; } | ||
|
|
||
| public ExecutionStatus(string value) | ||
| { | ||
| Value = value; | ||
| } | ||
|
|
||
| public static ExecutionStatus Waiting => new ExecutionStatus("waiting"); | ||
| public static ExecutionStatus Processing => new ExecutionStatus("processing"); | ||
| public static ExecutionStatus Completed => new ExecutionStatus("completed"); | ||
| public static ExecutionStatus Failed => new ExecutionStatus("failed"); | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| using System; | ||
|
|
||
| namespace Appwrite.Enums | ||
| { | ||
| public class ExecutionTrigger : IEnum | ||
| { | ||
| public string Value { get; private set; } | ||
|
|
||
| public ExecutionTrigger(string value) | ||
| { | ||
| Value = value; | ||
| } | ||
|
|
||
| public static ExecutionTrigger Http => new ExecutionTrigger("http"); | ||
| public static ExecutionTrigger Schedule => new ExecutionTrigger("schedule"); | ||
| public static ExecutionTrigger Event => new ExecutionTrigger("event"); | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| using System; | ||
|
|
||
| namespace Appwrite.Enums | ||
| { | ||
| public class HealthAntivirusStatus : IEnum | ||
| { | ||
| public string Value { get; private set; } | ||
|
|
||
| public HealthAntivirusStatus(string value) | ||
| { | ||
| Value = value; | ||
| } | ||
|
|
||
| public static HealthAntivirusStatus Disabled => new HealthAntivirusStatus("disabled"); | ||
| public static HealthAntivirusStatus Offline => new HealthAntivirusStatus("offline"); | ||
| public static HealthAntivirusStatus Online => new HealthAntivirusStatus("online"); | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| using System; | ||
|
|
||
| namespace Appwrite.Enums | ||
| { | ||
| public class HealthCheckStatus : IEnum | ||
| { | ||
| public string Value { get; private set; } | ||
|
|
||
| public HealthCheckStatus(string value) | ||
| { | ||
| Value = value; | ||
| } | ||
|
|
||
| public static HealthCheckStatus Pass => new HealthCheckStatus("pass"); | ||
| public static HealthCheckStatus Fail => new HealthCheckStatus("fail"); | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| using System; | ||
|
|
||
| namespace Appwrite.Enums | ||
| { | ||
| public class IndexStatus : IEnum | ||
| { | ||
| public string Value { get; private set; } | ||
|
|
||
| public IndexStatus(string value) | ||
| { | ||
| Value = value; | ||
| } | ||
|
|
||
| public static IndexStatus Available => new IndexStatus("available"); | ||
| public static IndexStatus Processing => new IndexStatus("processing"); | ||
| public static IndexStatus Deleting => new IndexStatus("deleting"); | ||
| public static IndexStatus Stuck => new IndexStatus("stuck"); | ||
| public static IndexStatus Failed => new IndexStatus("failed"); | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| using System; | ||
|
|
||
| namespace Appwrite.Enums | ||
| { | ||
| public class MessageStatus : IEnum | ||
| { | ||
| public string Value { get; private set; } | ||
|
|
||
| public MessageStatus(string value) | ||
| { | ||
| Value = value; | ||
| } | ||
|
|
||
| public static MessageStatus Draft => new MessageStatus("draft"); | ||
| public static MessageStatus Processing => new MessageStatus("processing"); | ||
| public static MessageStatus Scheduled => new MessageStatus("scheduled"); | ||
| public static MessageStatus Sent => new MessageStatus("sent"); | ||
| public static MessageStatus Failed => new MessageStatus("failed"); | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still have the casing issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
forgot to update sdk gen