Skip to content

Commit e97c3bd

Browse files
committed
Merge remote-tracking branch 'origin/main' into expose-axios
2 parents c190c30 + 12db251 commit e97c3bd

2 files changed

Lines changed: 20 additions & 3 deletions

File tree

src/client.types.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,13 @@ export interface CreateClientOptions {
2727
*/
2828
export interface CreateClientConfig {
2929
/**
30-
* The Base44 server URL. Defaults to "https://base44.app".
31-
* @internal
30+
* The Base44 server URL.
31+
*
32+
* You don't need to set this for production use. The SDK defaults to `https://base44.app`.
33+
*
34+
* Set this when using a local development server to point SDK requests at your local machine instead of the hosted backend.
35+
*
36+
* @defaultValue `"https://base44.app"`
3237
*/
3338
serverUrl?: string;
3439
/**

src/modules/connectors.types.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,30 +61,42 @@ export interface ConnectorInitiateResponse {
6161
*
6262
* | Service | Type identifier |
6363
* |---|---|
64+
* | Airtable | `airtable` |
6465
* | Box | `box` |
6566
* | ClickUp | `clickup` |
6667
* | Discord | `discord` |
68+
* | Dropbox | `dropbox` |
6769
* | GitHub | `github` |
6870
* | Gmail | `gmail` |
6971
* | Google Analytics | `google_analytics` |
7072
* | Google BigQuery | `googlebigquery` |
7173
* | Google Calendar | `googlecalendar` |
74+
* | Google Classroom | `google_classroom` |
7275
* | Google Docs | `googledocs` |
7376
* | Google Drive | `googledrive` |
77+
* | Google Search Console | `google_search_console` |
7478
* | Google Sheets | `googlesheets` |
7579
* | Google Slides | `googleslides` |
7680
* | HubSpot | `hubspot` |
81+
* | Linear | `linear` |
7782
* | LinkedIn | `linkedin` |
83+
* | Microsoft Teams | `microsoft_teams` |
84+
* | Microsoft OneDrive | `one_drive` |
7885
* | Notion | `notion` |
86+
* | Outlook | `outlook` |
7987
* | Salesforce | `salesforce` |
88+
* | SharePoint | `share_point` |
8089
* | Slack User | `slack` |
8190
* | Slack Bot | `slackbot` |
91+
* | Splitwise | `splitwise` |
8292
* | TikTok | `tiktok` |
93+
* | Typeform | `typeform` |
94+
* | Wix | `wix` |
8395
* | Wrike | `wrike` |
8496
*
8597
* See the integration guides for more details:
8698
*
87-
* - **Scopes and permissions**: {@link https://docs.base44.com/Integrations/gmail-connector#gmail-scopes-and-permissions | Gmail}, {@link https://docs.base44.com/Integrations/linkedin-connector#linkedin-scopes-and-permissions | LinkedIn}, {@link https://docs.base44.com/Integrations/slack-connector#slack-scopes-and-permissions | Slack}
99+
* - **Scopes and permissions**: {@link https://docs.base44.com/Integrations/gmail-connector#gmail-scopes-and-permissions | Gmail}, {@link https://docs.base44.com/Integrations/linkedin-connector#linkedin-scopes-and-permissions | LinkedIn}, {@link https://docs.base44.com/Integrations/slack-connector#slack-scopes-and-permissions | Slack}, {@link https://docs.base44.com/Integrations/github-connector#github-scopes-and-permissions | GitHub}
88100
* - **Slack connector types**: {@link https://docs.base44.com/Integrations/slack-connector#about-the-slack-connectors | About the Slack connectors} explains the difference between `slack` and `slackbot`
89101
*
90102
* ## Authentication Modes

0 commit comments

Comments
 (0)