-
Notifications
You must be signed in to change notification settings - Fork 199
Use enum and SDK methods #771
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
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
f9a4f98
Use enums from the console SDK whenever possible
stnguyen90 c6c8679
Remove unnecessary backup
stnguyen90 a1cd316
Fix listInvoices() queries type
stnguyen90 ac8a9a9
Add messaging service to sdkForProject
stnguyen90 ec7ebd3
Replace client.call() with the respective SDK methods
stnguyen90 6b44873
Add support for SMTP provider
stnguyen90 44f48ba
Make some provider fields optional
stnguyen90 9182a5b
Fixes from design review
stnguyen90 5d35185
Add support for bulk deleting messages
stnguyen90 79886b4
Don't allow deleting processing message
stnguyen90 c66f5e7
Show topics in message details
stnguyen90 4f81e48
Show targets in message details
stnguyen90 0f9e6bd
Update messaging related text
stnguyen90 ef5b08c
Merge pull request #780 from appwrite/feat-messaging-consistent-terms
TorstenDittmann 7bda700
Merge pull request #774 from appwrite/feat-messaging-delete-messages
TorstenDittmann 213bb2b
Merge pull request #779 from appwrite/feat-messaging-topics-targets-i…
TorstenDittmann 63876f9
Merge pull request #773 from appwrite/feat-messaging-smtp-provider
TorstenDittmann 4cf5d3d
Merge branch '1.5.x' into feat-messaging-sdk
TorstenDittmann 04cb828
fix: link type for smtp provider store
TorstenDittmann d2ca2c3
fix: remove unused import
TorstenDittmann 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| export { default as ProxyRulesPage, ProxyTypes } from './index.svelte'; | ||
| export { default as ProxyRulesPage } from './index.svelte'; | ||
| export { default as Retry } from './wizard/retry.svelte'; |
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 |
|---|---|---|
| @@ -1,8 +1,7 @@ | ||
| import type { Models } from '@appwrite.io/console'; | ||
| import type { Models, ResourceType } from '@appwrite.io/console'; | ||
| import { writable } from 'svelte/store'; | ||
| import type { ProxyTypes } from '../index.svelte'; | ||
| import type { Dependencies } from '$lib/constants'; | ||
|
|
||
| export const domain = writable<Partial<Models.ProxyRule>>({ $id: '', domain: '' }); | ||
| export const typeStore = writable<ProxyTypes>(); | ||
| export const typeStore = writable<ResourceType>(); | ||
| export const dependencyStore = writable<Dependencies>(); |
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.
Uh oh!
There was an error while loading. Please reload this page.