Skip to content

Commit 4557a1f

Browse files
authored
feat: add Orb WASM FDW (#425)
1 parent c97d09e commit 4557a1f

File tree

12 files changed

+1629
-3
lines changed

12 files changed

+1629
-3
lines changed

Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ exclude = [
1010
"wasm-wrappers/fdw/cfd1_fdw",
1111
"wasm-wrappers/fdw/clerk_fdw",
1212
"wasm-wrappers/fdw/helloworld_fdw",
13-
"wasm-wrappers/fdw/snowflake_fdw",
14-
"wasm-wrappers/fdw/paddle_fdw",
1513
"wasm-wrappers/fdw/notion_fdw",
14+
"wasm-wrappers/fdw/orb_fdw",
15+
"wasm-wrappers/fdw/paddle_fdw",
16+
"wasm-wrappers/fdw/snowflake_fdw",
1617
]
1718
resolver = "2"
1819

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
| [Cal.com](./wasm-wrappers/fdw/cal_fdw) | A Wasm FDW for [Cal.com](https://www.cal.com/) |||
2626
| [Clerk](./wasm-wrappers/fdw/clerk_fdw) | A Wasm FDW for [Clerk](https://www.clerk.com/) |||
2727
| [Cloudflare D1](./wasm-wrappers/fdw/cfd1_fdw) | A Wasm FDW for [Cloudflare D1](https://developers.cloudflare.com/d1/) |||
28+
| [Orb](./wasm-wrappers/fdw/orb_fdw) | A Wasm FDW for [Orb](https://www.withorb.com/) |||
2829

2930
### Warning
3031

docs/catalog/index.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Each FDW documentation includes a detailed "Limitations" section that describes
2323
| Firebase |||||||
2424
| Logflare |||||||
2525
| Notion |||||||
26+
| Orb |||||||
2627
| Paddle |||||||
2728
| Redis |||||||
2829
| S3 |||||||
@@ -40,8 +41,9 @@ See [Developing a Wasm Wrapper](../guides/create-wasm-wrapper.md) for instructio
4041
| :-----------: | :------------------------------: | :------------------: | :------------------------------------------------------------------------------------: |
4142
| Cal.com | [Supabase](https://supabase.com) | [Link](cal.md) | [Link](https://github.com/supabase/wrappers/tree/main/wasm-wrappers/fdw/cal_fdw) |
4243
| Calendly | [Supabase](https://supabase.com) | [Link](calendly.md) | [Link](https://github.com/supabase/wrappers/tree/main/wasm-wrappers/fdw/calendly_fdw) |
43-
| Clerk | [Supabase](https://supabase.com) | [Link](clerk.md) | [Link](https://github.com/supabase/wrappers/tree/main/wasm-wrappers/fdw/clerk_fdw) |
44+
| Clerk | [Supabase](https://supabase.com) | [Link](clerk.md) | [Link](https://github.com/supabase/wrappers/tree/main/wasm-wrappers/fdw/clerk_fdw) |
4445
| Cloudflare D1 | [Supabase](https://supabase.com) | [Link](cfd1.md) | [Link](https://github.com/supabase/wrappers/tree/main/wasm-wrappers/fdw/cfd1_fdw) |
4546
| Notion | [Supabase](https://supabase.com) | [Link](notion.md) | [Link](https://github.com/supabase/wrappers/tree/main/wasm-wrappers/fdw/notion_fdw) |
47+
| Orb | [Supabase](https://supabase.com) | [Link](orb.md) | [Link](https://github.com/supabase/wrappers/tree/main/wasm-wrappers/fdw/orb_fdw) |
4648
| Paddle | [Supabase](https://supabase.com) | [Link](paddle.md) | [Link](https://github.com/supabase/wrappers/tree/main/wasm-wrappers/fdw/paddle_fdw) |
4749
| Snowflake | [Supabase](https://supabase.com) | [Link](snowflake.md) | [Link](https://github.com/supabase/wrappers/tree/main/wasm-wrappers/fdw/snowflake_fdw) |

0 commit comments

Comments
 (0)