@zeroin.earth/appwrite-graphql 0.16.5 → 22.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -111
- package/dist/index.cjs +1072 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +17911 -0
- package/dist/index.d.ts +14470 -2559
- package/dist/index.js +738 -121
- package/dist/index.js.map +1 -1
- package/package.json +39 -23
- package/react-native/index.cjs +1071 -0
- package/react-native/index.d.cts +17911 -0
- package/dist/index.d.mts +0 -6000
- package/dist/index.mjs +0 -395
- package/dist/index.mjs.map +0 -1
- package/react-native/index.d.ts +0 -6000
- package/react-native/index.js +0 -453
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This is a GraphQL library for Appwrite, built with the power of [@tanstack/react
|
|
|
7
7
|
```bash
|
|
8
8
|
npm install --save @zeroin.earth/appwrite-graphql
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
bun add @zeroin.earth/appwrite-graphql
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
@@ -111,113 +111,3 @@ export function Profile() {
|
|
|
111
111
|
);
|
|
112
112
|
}
|
|
113
113
|
```
|
|
114
|
-
|
|
115
|
-
## Work in progress
|
|
116
|
-
|
|
117
|
-
We are working on matching parity with the current Appwrite SDK. After we do so, version numbers will match the currently supported version of the SDK. Until then, please feel free to use what we have finished so far!
|
|
118
|
-
|
|
119
|
-
Still left to do:
|
|
120
|
-
|
|
121
|
-
### Account ✔️
|
|
122
|
-
<details>
|
|
123
|
-
<summary>Done</summary>
|
|
124
|
-
|
|
125
|
-
- [x] Get account
|
|
126
|
-
- [x] Create account
|
|
127
|
-
- [x] Update email
|
|
128
|
-
- [x] List Identities
|
|
129
|
-
- [x] Delete Identity
|
|
130
|
-
- [x] Create JWT
|
|
131
|
-
- [x] List logs
|
|
132
|
-
- [x] Update name
|
|
133
|
-
- [x] Update password
|
|
134
|
-
- [x] Update phone
|
|
135
|
-
- [x] Get account preferences
|
|
136
|
-
- [x] Update preferences
|
|
137
|
-
- [x] Create password recovery
|
|
138
|
-
- [x] Create password recovery (confirmation)
|
|
139
|
-
- [x] List sessions
|
|
140
|
-
- [x] Delete sessions
|
|
141
|
-
- [x] Create anonymous session
|
|
142
|
-
- [x] Create email session
|
|
143
|
-
- [x] Create magic URL session
|
|
144
|
-
- [x] Create magic URL session (confirmation)
|
|
145
|
-
- [x] Create phone session
|
|
146
|
-
- [x] Create phone session (confirmation)
|
|
147
|
-
- [x] Get session
|
|
148
|
-
- [x] Update OAuth session (refresh tokens)
|
|
149
|
-
- [x] Delete session
|
|
150
|
-
- [x] Create email verification
|
|
151
|
-
- [x] Create email verification (confirmation)
|
|
152
|
-
- [x] Create phone verification
|
|
153
|
-
- [x] Create phone verification (confirmation)
|
|
154
|
-
</details>
|
|
155
|
-
|
|
156
|
-
### Teams
|
|
157
|
-
|
|
158
|
-
- [ ] List teams
|
|
159
|
-
- [ ] Create team
|
|
160
|
-
- [ ] Get team
|
|
161
|
-
- [ ] Update name
|
|
162
|
-
- [ ] Delete team
|
|
163
|
-
- [ ] List team memberships
|
|
164
|
-
- [ ] Create team membership
|
|
165
|
-
- [ ] Get team membership
|
|
166
|
-
- [ ] Update membership
|
|
167
|
-
- [ ] Delete team membership
|
|
168
|
-
- [ ] Update team membership status
|
|
169
|
-
- [ ] Get team preferences
|
|
170
|
-
- [ ] Update preferences
|
|
171
|
-
|
|
172
|
-
### Databases ✔️
|
|
173
|
-
|
|
174
|
-
<details>
|
|
175
|
-
<summary>Done</summary>
|
|
176
|
-
|
|
177
|
-
- [X] List documents
|
|
178
|
-
- [X] Create document
|
|
179
|
-
- [X] Get document
|
|
180
|
-
- [x] Update document
|
|
181
|
-
- [x] Delete document
|
|
182
|
-
</details>
|
|
183
|
-
|
|
184
|
-
### Storage
|
|
185
|
-
|
|
186
|
-
- [ ] List files
|
|
187
|
-
- [ ] Create file
|
|
188
|
-
- [ ] Get file
|
|
189
|
-
- [ ] Update file
|
|
190
|
-
- [ ] Delete File
|
|
191
|
-
- [ ] Get file for download
|
|
192
|
-
- [ ] Get file preview
|
|
193
|
-
- [ ] Get file for view
|
|
194
|
-
|
|
195
|
-
### Functions ✔️
|
|
196
|
-
|
|
197
|
-
<details>
|
|
198
|
-
<summary>Done</summary>
|
|
199
|
-
|
|
200
|
-
- [X] Create execution
|
|
201
|
-
- [X] Get execution
|
|
202
|
-
</details>
|
|
203
|
-
|
|
204
|
-
### Locale
|
|
205
|
-
|
|
206
|
-
- [ ] Get user locale
|
|
207
|
-
- [ ] List Locale Codes
|
|
208
|
-
- [ ] List continents
|
|
209
|
-
- [ ] List countries
|
|
210
|
-
- [ ] List EU countries
|
|
211
|
-
- [ ] List countries phone codes
|
|
212
|
-
- [ ] List currencies
|
|
213
|
-
- [ ] List languages
|
|
214
|
-
|
|
215
|
-
### Avatars
|
|
216
|
-
|
|
217
|
-
- [ ] Get browser icon
|
|
218
|
-
- [ ] Get credit card icon
|
|
219
|
-
- [ ] Get favicon
|
|
220
|
-
- [ ] Get country flag
|
|
221
|
-
- [ ] Get image from URL
|
|
222
|
-
- [ ] Get user initials
|
|
223
|
-
- [ ] Get QR code
|