1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
//! `supabase-js-rs` is a Rust bindings for Supabase JavaScript library via WebAssembly.
//!
use wasm_bindgen::prelude::*;
/// Sign in with email and password credentials
#[wasm_bindgen(getter_with_clone)]
pub struct Credentials {
pub email: String,
pub password: String,
}
#[wasm_bindgen(getter_with_clone)]
pub struct SignInWithOAuthCredentials {
pub provider: String,
pub options: JsValue,
}
#[wasm_bindgen(getter_with_clone)]
pub struct CurrentSession {
pub access_token: String,
pub refresh_token: String,
}
/*
#[wasm_bindgen(getter_with_clone)]
pub struct MFAChallengeParams {
pub factor_id: String,
}
*/
/*
#[wasm_bindgen(getter_with_clone)]
pub struct MFAVerifyParams {
pub factor_id: String,
pub challenge_id: String,
pub code: String,
}
*/
#[wasm_bindgen]
extern "C" {
#[derive(Debug, Clone, PartialEq)]
pub type SupabaseClient;
/// # Create client
///
#[wasm_bindgen(js_namespace = ["supabase"], js_name = createClient)]
pub fn create_client(supabase_url: &str, supabase_key: &str) -> SupabaseClient;
#[wasm_bindgen(method, js_name = from)]
pub fn from(this: &SupabaseClient, table: &str) -> Database;
pub type Database;
#[wasm_bindgen(method, catch, js_name = select)]
pub async fn select(this: &Database, columns: Option<&str>) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = select)]
pub fn select_(this: &Database, columns: Option<&str>) -> Database;
/// # Order the query
///
/// Order query result by column.
///
/// ```ignore
/// #[derive(Serialize, Deserialize)]
/// #[serde(rename_all = "camelCase")]
/// struct OrderOptions {
/// foreign_table: String,
/// nulls_first: bool,
/// ascending: bool,
/// }
/// let data: JsValue = client
/// .get()
/// .from("countries")
/// .select_(Some("name, cities ( name )"))
/// .order(
/// "name",
/// serde_wasm_bindgen::to_value(&OrderOptions {
/// foreign_table: "cities".to_string(),
/// nulls_first: false,
/// ascending: true,
/// }).unwrap(),
/// )
/// .await.unwrap();
/// ```
///
#[wasm_bindgen(method, catch, js_name = order)]
pub async fn order(this: &Database, column: &str, options: JsValue)
-> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = order)]
pub fn order_(this: &Database, column: &str, options: JsValue) -> Database;
/// # Limit the query
///
/// Limit the query result by count.
///
#[wasm_bindgen(method, catch, js_name = limit)]
pub async fn limit(this: &Database, count: u32) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = limit)]
pub fn limit_(this: &Database, count: u32) -> Database;
/// # Limit the query to a range
///
/// Limit the query result by from and to inclusively.
///
#[wasm_bindgen(method, catch, js_name = range)]
pub async fn range(this: &Database, from: u32, to: u32) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = range)]
pub fn range_(this: &Database, from: u32, to: u32) -> Database;
/// # Retrieve the query as one row
///
/// Return data as a single object instead of an array of objects.
///
#[wasm_bindgen(method, catch, js_name = single)]
pub async fn single(this: &Database) -> Result<JsValue, JsValue>;
/// # Retrieve the query as 0-1 rows
///
/// Return data as a single object instead of an array of objects.
///
#[wasm_bindgen(method, catch, js_name = maybeSingle)]
pub async fn maybe_single(this: &Database) -> Result<JsValue, JsValue>;
/// # Retrieve the query as a CSV string
///
/// Return data as a string in CSV format.
///
/// ```ignore
/// let csv = client.get().from("countries").select_(Some("*")).csv().await.unwrap();
/// ```
///
#[wasm_bindgen(method, catch, js_name = csv)]
pub async fn csv(this: &Database) -> Result<JsValue, JsValue>;
/// # Column is equal to a value
///
/// Match only rows where column is equal to value.
///
#[wasm_bindgen(method, catch, js_name = eq)]
pub async fn eq(this: &Database, column: &str, value: &JsValue) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = eq)]
pub fn eq_(this: &Database, column: &str, value: &JsValue) -> Database;
/// # Column is not equal to a value
///
/// Match only rows where column is not equal to value.
///
#[wasm_bindgen(method, catch, js_name = neq)]
pub async fn neq(this: &Database, column: &str, value: &JsValue) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = neq)]
pub fn neq_(this: &Database, column: &str, value: &JsValue) -> Database;
/// # Column is greater than a value
///
/// Match only rows where column is greater than value.
///
#[wasm_bindgen(method, catch, js_name = gt)]
pub async fn gt(this: &Database, column: &str, value: &JsValue) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = gt)]
pub fn gt_(this: &Database, column: &str, value: &JsValue) -> Database;
/// # Column is greater than or equal to a value
///
/// Match only rows where column is greater than or equal to value.
///
#[wasm_bindgen(method, catch, js_name = gte)]
pub async fn gte(this: &Database, column: &str, value: &JsValue) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = gte)]
pub fn gte_(this: &Database, column: &str, value: &JsValue) -> Database;
/// # Column is less than a value
///
/// Match only rows where column is less than value.
///
#[wasm_bindgen(method, catch, js_name = lt)]
pub async fn lt(this: &Database, column: &str, value: &JsValue) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = lt)]
pub fn lt_(this: &Database, column: &str, value: &JsValue) -> Database;
/// # Column is less than or equal to a value
///
/// Match only rows where column is less than or equal to value.
///
#[wasm_bindgen(method, catch, js_name = lte)]
pub async fn lte(this: &Database, column: &str, value: &JsValue) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = lte)]
pub fn lte_(this: &Database, column: &str, value: &JsValue) -> Database;
/// # Column matches a pattern
///
/// Match only rows where column matches pattern case-sensitively.
///
#[wasm_bindgen(method, catch, js_name = like)]
pub async fn like(this: &Database, column: &str, pattern: &str) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = like)]
pub fn like_(this: &Database, column: &str, pattern: &str) -> Database;
/// # Column matches a case-insensitive pattern
///
/// Match only rows where column matches pattern case-insensitively.
///
/// ```ignore
/// client.from("countries").select(None).ilike(&"name", &"%alba%").await;
/// ```
///
#[wasm_bindgen(method, catch, js_name = ilike)]
pub async fn ilike(this: &Database, column: &str, pattern: &str) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = ilike)]
pub fn ilike_(this: &Database, column: &str, pattern: &str) -> Database;
/// # Column is a value
///
/// Match only rows where column IS value.
///
/// ```ignore
/// // check for nullness
/// client.from("countries").select(None).is("name", JsValue::NULL);
/// // or check for true of false
/// client.from("countries").select(None).is("name", JsValue::TRUE);
/// ```
///
#[wasm_bindgen(method, catch, js_name = is)]
pub async fn is(this: &Database, column: &str, value: &JsValue) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = is)]
pub fn is_(this: &Database, column: &str, value: &JsValue) -> Database;
/// # Column is in an array
///
/// Match only rows where column is included in the values array.
///
#[wasm_bindgen(method, catch, js_name = in)]
pub async fn r#in(
this: &Database,
column: &str,
values: Vec<JsValue>,
) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = in)]
pub fn r#in_(this: &Database, column: &str, values: Vec<JsValue>) -> Database;
/// # Column contains every element in a value
///
/// Only relevant for jsonb, array, and range columns. Match only rows where column contains every element appearing in value.
///
#[wasm_bindgen(method, catch, js_name = contains)]
pub async fn contains(
this: &Database,
column: &str,
value: JsValue,
) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = contains)]
pub fn contains_(this: &Database, column: &str, value: JsValue) -> Database;
/// # Contained by value
///
/// Only relevant for jsonb, array, and range columns. Match only rows where every element appearing in column is contained by value.
///
#[wasm_bindgen(method, catch, js_name = containedBy)]
pub async fn contained_by(
this: &Database,
column: &str,
value: JsValue,
) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = containedBy)]
pub fn contained_by_(this: &Database, column: &str, value: JsValue) -> Database;
/// # Greater than a range
///
/// Only relevant for range columns. Match only rows where every element in column is greater than any element in range.
///
#[wasm_bindgen(method, catch, js_name = rangeGt)]
pub async fn range_gt(this: &Database, column: &str, range: &str) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = rangeGt)]
pub fn range_gt_(this: &Database, column: &str, range: &str) -> Database;
/// # Greater than or equal to a range
///
/// Only relevant for range columns. Match only rows where every element in column is either contained in range or greater than any element in range.
///
#[wasm_bindgen(method, catch, js_name = rangeGte)]
pub async fn range_gte(this: &Database, column: &str, range: &str) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = rangeGte)]
pub fn range_gte_(this: &Database, column: &str, range: &str) -> Database;
/// # Less than a range
///
/// Only relevant for range columns. Match only rows where every element in column is less than any element in range.
///
#[wasm_bindgen(method, catch, js_name = rangeLt)]
pub async fn range_lt(this: &Database, column: &str, range: &str) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = rangeLt)]
pub fn range_lt_(this: &Database, column: &str, range: &str) -> Database;
/// # Less than or equal to a range
///
/// Only relevant for range columns. Match only rows where every element in column is either contained in range or less than any element in range.
///
#[wasm_bindgen(method, catch, js_name = rangeLte)]
pub async fn range_lte(this: &Database, column: &str, range: &str) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = rangeLte)]
pub fn range_lte_(this: &Database, column: &str, range: &str) -> Database;
/// # Mutually exclusive to a range
///
/// Only relevant for range columns. Match only rows where column is mutually exclusive to range and there can be no element between the two ranges.
///
#[wasm_bindgen(method, catch, js_name = rangeAdjacent)]
pub async fn range_adjacent(
this: &Database,
column: &str,
range: &str,
) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = rangeAdjacent)]
pub fn range_adjacent_(this: &Database, column: &str, range: &str) -> Database;
/// # With a common element
///
/// Only relevant for array and range columns. Match only rows where column and value have an element in common.
///
#[wasm_bindgen(method, catch, js_name = overlaps)]
pub async fn overlaps(
this: &Database,
column: &str,
value: JsValue,
) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = overlaps)]
pub fn overlaps_(this: &Database, column: &str, value: JsValue) -> Database;
/// # Match a string
///
/// Only relevant for text and tsvector columns. Match only rows where column matches the query string in query.
///
#[wasm_bindgen(method, catch, js_name = textSearch)]
pub async fn text_search(
this: &Database,
column: &str,
query: &str,
options: JsValue,
) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = textSearch)]
pub fn text_search_(this: &Database, column: &str, query: &str, options: JsValue) -> Database;
/// # Update data
///
/// Perform an UPDATE on the table or view.
///
#[wasm_bindgen(method, catch, js_name = update)]
pub async fn update(this: &Database, values: &JsValue) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = update)]
pub fn update_(this: &Database, values: &JsValue) -> Database;
/// # Upsert data
///
/// Perform an UPSERT on the table or view.
///
#[wasm_bindgen(method, js_name = upsert)]
pub fn upsert(this: &Database, values: JsValue) -> Database;
/// # Delete data
///
/// Should always be combined with filters
///
/// ```ignore
/// let client = supabase_js_rs::create_client("https://xyzcompany.supabase.co", "public-anon-key");
/// let res: Result<JsValue, JsValue> = client.from("countries").delete().eq("id", 1.into_js_result().unwrap()).await;
/// ```
///
#[wasm_bindgen(method, js_name = delete)]
pub fn delete(this: &Database) -> Database;
/// # Insert data
///
/// Perform an INSERT into the table or view.
///
#[wasm_bindgen(method, catch, js_name = insert)]
pub async fn insert(this: &Database, values: JsValue) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, js_name = insert)]
pub fn insert_(this: &Database, values: JsValue) -> Database;
/// Auth methods
#[wasm_bindgen(method, getter = auth)]
pub fn auth(this: &SupabaseClient) -> Auth;
pub type Auth;
/// # Sign in anonymously
///
#[wasm_bindgen(method, catch, js_name = signInAnonymously)]
pub async fn sign_in_anonymously(this: &Auth) -> Result<JsValue, JsValue>;
/// # Create a new user
///
#[wasm_bindgen(method, catch, js_name = signUp)]
pub async fn sign_up(this: &Auth, credentials: Credentials) -> Result<JsValue, JsValue>;
/// # Sign in a user
///
#[wasm_bindgen(method, catch, js_name = signInWithPassword)]
pub async fn sign_in_with_password(
this: &Auth,
credentials: Credentials,
) -> Result<JsValue, JsValue>;
/// # Sign in a user through OTP
///
/// Log in a user using magiclink or a one-time password (OTP).
///
#[wasm_bindgen(method, catch, js_name = signInWithOtp)]
pub async fn sign_in_with_otp(this: &Auth, credentials: JsValue) -> Result<JsValue, JsValue>;
/// # Sign in a user through OAuth
///
/// Log in an existing user via a third-party provider.
///
#[wasm_bindgen(method, catch, js_name = signInWithOAuth)]
pub async fn sign_in_with_oauth(
this: &Auth,
credentials: SignInWithOAuthCredentials,
) -> Result<JsValue, JsValue>;
/// # Sign out a user
///
#[wasm_bindgen(method, catch, js_name = signOut)]
pub async fn sign_out(this: &Auth) -> Result<JsValue, JsValue>;
/// # Retrieve a session
///
/// Returns the session, refreshing it if necessary.
#[wasm_bindgen(method, catch, js_name = getSession)]
pub async fn get_session(this: &Auth) -> Result<JsValue, JsValue>;
/// # Retrieve a new session
///
/// Returns a new session, regardless of expiry status.
#[wasm_bindgen(method, catch, js_name = refreshSession)]
pub async fn refresh_session(this: &Auth) -> Result<JsValue, JsValue>;
/// # Retrieve a user
///
/// Takes in an optional access token jwt or get the jwt from the current session.
#[wasm_bindgen(method, catch, js_name = getUser)]
pub async fn get_user(this: &Auth, jwt: Option<&str>) -> Result<JsValue, JsValue>;
/// # Update user
///
/// Updates user data, if there is a logged in user.
///
#[wasm_bindgen(method, catch, js_name = updateUser)]
pub async fn update_user(this: &Auth, attributes: JsValue) -> Result<JsValue, JsValue>;
#[wasm_bindgen(method, catch, js_name = setSession)]
pub async fn set_session(
this: &Auth,
current_session: CurrentSession,
) -> Result<JsValue, JsValue>;
/// Listen to auth events
///
/// # Example
///
/// ```ignore
/// let client = supabase_js_rs::create_client("SUPABASE_URL", "SUPABASE_ANON_KEY");
/// let auth_event_callback: Closure<dyn FnMut(JsValue, JsValue)> = Closure::new(move |event: JsValue, session: JsValue| {
///
/// });
/// client.auth().on_auth_state_change(&auth_event_callback);
/// auth_event_callback.forget();
/// ```
#[wasm_bindgen(method, js_name = onAuthStateChange)]
pub fn on_auth_state_change(this: &Auth, callback: &Closure<dyn FnMut(JsValue, JsValue)>);
/// # Send a password reset request
///
/// Sends a password reset request to an email address.
///
#[wasm_bindgen(method, catch, js_name = resetPasswordForEmail)]
pub async fn reset_password_for_email(
this: &Auth,
email: &str,
options: JsValue,
) -> Result<JsValue, JsValue>;
/*
pub type Mfa;
#[wasm_bindgen(method, getter = mfa)]
pub fn mfa(this: &Auth) -> Mfa;
/// Create a challenge
#[wasm_bindgen(method, catch, js_name = challenge)]
pub fn challenge(this: &Mfa, params: MFAChallengeParams) -> Result<JsValue, JsValue>;
/// Verify a challenge
#[wasm_bindgen(method, catch, js_name = verify)]
pub fn verify(this: &Mfa, params: MFAVerifyParams) -> Result<JsValue, JsValue>;
*/
#[wasm_bindgen(method, js_name = channel)]
pub fn channel(this: &SupabaseClient, name: &str) -> RealtimeChannel;
/// # Unsubscribe from all channels
///
#[wasm_bindgen(method, js_name = removeAllChannels)]
pub fn remove_all_channels(this: &SupabaseClient);
/// # Retrieve all channels
///
#[wasm_bindgen(method, js_name = getChannels)]
pub fn get_channels(this: &SupabaseClient) -> JsValue;
pub type RealtimeChannel;
/// # Subscribe to database changes
///
#[wasm_bindgen(method, js_name = on)]
pub fn on(
this: &RealtimeChannel,
r#type: &str,
filter: &JsValue,
callback: &Closure<dyn Fn(JsValue)>,
) -> RealtimeChannel;
#[wasm_bindgen(method, js_name = subscribe)]
pub fn subscribe(
this: &RealtimeChannel,
callback: Option<&Closure<dyn FnMut(JsValue, JsValue)>>,
) -> RealtimeChannel;
#[wasm_bindgen(method, js_name = storage)]
pub fn storage(this: &SupabaseClient) -> Storage;
pub type Storage;
/// # Create a bucket
///
/// Creates a new Storage bucket
///
#[wasm_bindgen(method, catch, js_name = createBucket)]
pub async fn create_bucket(this: &Storage, id: &str) -> Result<JsValue, JsValue>;
/// # Retrieve a bucket
///
/// Retrieves the details of an existing Storage bucket.
///
#[wasm_bindgen(method, catch, js_name = getBucket)]
pub async fn get_bucket(this: &Storage, id: &str) -> Result<JsValue, JsValue>;
/// # List all buckets
///
/// Retrieves the details of all Storage buckets within an existing project.
///
#[wasm_bindgen(method, catch, js_name = listBuckets)]
pub async fn list_buckets(this: &Storage) -> Result<JsValue, JsValue>;
/// # Update a bucket
///
/// Updates a Storage bucket
///
#[wasm_bindgen(method, catch, js_name = updateBucket)]
pub async fn update_bucket(this: &Storage, options: JsValue) -> Result<JsValue, JsValue>;
/// # Empty a bucket
///
/// Removes all objects inside a single bucket.
///
#[wasm_bindgen(method, catch, js_name = emptyBucket)]
pub async fn empty_bucket(this: &Storage, id: &str) -> Result<JsValue, JsValue>;
/// # Delete a bucket
///
/// Deletes an existing bucket. A bucket can't be deleted with existing objects inside it.
///
#[wasm_bindgen(method, catch, js_name = deleteBucket)]
pub async fn delete_bucket(this: &Storage, id: &str) -> Result<JsValue, JsValue>;
}