Skip to content

Commit

Permalink
chore(wasm): update Cal.com and Calendly wasm fdw checksum (#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
burmecia authored Nov 26, 2024
1 parent 59d7ff4 commit 25d6050
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/catalog/cal.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The Cal.com API uses JSON formatted data, please refer to [Cal.com API docs](htt

| Version | Wasm Package URL | Checksum |
| ------- | ----------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
| 0.1.0 | `https://github.com/supabase/wrappers/releases/download/wasm_cal_fdw_v0.1.0/cal_fdw.wasm` | `tbd` |
| 0.1.0 | `https://github.com/supabase/wrappers/releases/download/wasm_cal_fdw_v0.1.0/cal_fdw.wasm` | `bca8a82d6c5f8da0aa58011940c4ddb40bb2c909c02dd89b488289c4fff890c1` |

## Preparation

Expand Down Expand Up @@ -82,7 +82,7 @@ We need to provide Postgres with the credentials to access Cal.com and any addit
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/wasm_cal_fdw_v0.1.0/cal_fdw.wasm',
fdw_package_name 'supabase:cal-fdw',
fdw_package_version '0.1.0',
fdw_package_checksum 'tbd',
fdw_package_checksum 'bca8a82d6c5f8da0aa58011940c4ddb40bb2c909c02dd89b488289c4fff890c1',
api_url 'https://api.cal.com/v2', -- optional
api_key_id '<key_ID>' -- The Key ID from above.
);
Expand All @@ -97,7 +97,7 @@ We need to provide Postgres with the credentials to access Cal.com and any addit
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/wasm_cal_fdw_v0.1.0/cal_fdw.wasm',
fdw_package_name 'supabase:cal-fdw',
fdw_package_version '0.1.0',
fdw_package_checksum 'tbd',
fdw_package_checksum 'bca8a82d6c5f8da0aa58011940c4ddb40bb2c909c02dd89b488289c4fff890c1',
api_url 'https://api.cal.com/v2', -- optional
api_key 'cal_live_1234...' -- Cal.com API key
);
Expand Down
6 changes: 3 additions & 3 deletions docs/catalog/calendly.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The Calendly API uses JSON formatted data, please refer to [Calendly API docs](h

| Version | Wasm Package URL | Checksum |
| ------- | ----------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
| 0.1.0 | `https://github.com/supabase/wrappers/releases/download/wasm_calendly_fdw_v0.1.0/calendly_fdw.wasm` | `tbd` |
| 0.1.0 | `https://github.com/supabase/wrappers/releases/download/wasm_calendly_fdw_v0.1.0/calendly_fdw.wasm` | `aa17f1ce2b48b5d8d6cee4f61df4d6b23e9a333c3e5c7a10cec9aae619c156b9` |

## Preparation

Expand Down Expand Up @@ -80,7 +80,7 @@ We need to provide Postgres with the credentials to access Calendly and any addi
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/wasm_calendly_fdw_v0.1.0/calendly_fdw.wasm',
fdw_package_name 'supabase:calendly-fdw',
fdw_package_version '0.1.0',
fdw_package_checksum 'tbd',
fdw_package_checksum 'aa17f1ce2b48b5d8d6cee4f61df4d6b23e9a333c3e5c7a10cec9aae619c156b9',
-- find your organization uri using foreign table 'calendly.current_user', see below example for details
organization 'https://api.calendly.com/organizations/81da9c7f-3e19-434a-c3d2-0325e375cdef',
api_url 'https://api.calendly.com', -- optional
Expand All @@ -97,7 +97,7 @@ We need to provide Postgres with the credentials to access Calendly and any addi
fdw_package_url 'https://github.com/supabase/wrappers/releases/download/wasm_calendly_fdw_v0.1.0/calendly_fdw.wasm',
fdw_package_name 'supabase:calendly-fdw',
fdw_package_version '0.1.0',
fdw_package_checksum 'tbd',
fdw_package_checksum 'aa17f1ce2b48b5d8d6cee4f61df4d6b23e9a333c3e5c7a10cec9aae619c156b9',
-- find your organization uri using foreign table 'calendly.current_user', see below example for details
organization 'https://api.calendly.com/organizations/81da9c7f-3e19-434a-c3d2-0325e375cdef',
api_url 'https://api.calendly.com', -- optional
Expand Down

0 comments on commit 25d6050

Please sign in to comment.