@base44-preview/sdk 0.8.26-pr.163.555a7df → 0.8.26-pr.164.f8d1b0e
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.
|
@@ -58,11 +58,15 @@ export interface AppUserConnectorConnectionResponse {
|
|
|
58
58
|
* | Service | Type identifier |
|
|
59
59
|
* |---|---|
|
|
60
60
|
* | Airtable | `airtable` |
|
|
61
|
+
* | BambooHR | `bamboohr` |
|
|
61
62
|
* | Box | `box` |
|
|
63
|
+
* | Calendly | `calendly` |
|
|
62
64
|
* | ClickUp | `clickup` |
|
|
65
|
+
* | Contentful | `contentful` |
|
|
63
66
|
* | Discord | `discord` |
|
|
64
67
|
* | Dropbox | `dropbox` |
|
|
65
68
|
* | GitHub | `github` |
|
|
69
|
+
* | GitLab | `gitlab` |
|
|
66
70
|
* | Gmail | `gmail` |
|
|
67
71
|
* | Google Analytics | `google_analytics` |
|
|
68
72
|
* | Google BigQuery | `googlebigquery` |
|
|
@@ -70,10 +74,14 @@ export interface AppUserConnectorConnectionResponse {
|
|
|
70
74
|
* | Google Classroom | `google_classroom` |
|
|
71
75
|
* | Google Docs | `googledocs` |
|
|
72
76
|
* | Google Drive | `googledrive` |
|
|
77
|
+
* | Google Meet | `googlemeet` |
|
|
73
78
|
* | Google Search Console | `google_search_console` |
|
|
74
79
|
* | Google Sheets | `googlesheets` |
|
|
75
80
|
* | Google Slides | `googleslides` |
|
|
81
|
+
* | Google Tasks | `googletasks` |
|
|
76
82
|
* | HubSpot | `hubspot` |
|
|
83
|
+
* | Hugging Face | `hugging_face` |
|
|
84
|
+
* | Instagram | `instagram` |
|
|
77
85
|
* | Linear | `linear` |
|
|
78
86
|
* | LinkedIn | `linkedin` |
|
|
79
87
|
* | Microsoft Teams | `microsoft_teams` |
|
|
@@ -85,6 +93,7 @@ export interface AppUserConnectorConnectionResponse {
|
|
|
85
93
|
* | Slack User | `slack` |
|
|
86
94
|
* | Slack Bot | `slackbot` |
|
|
87
95
|
* | Splitwise | `splitwise` |
|
|
96
|
+
* | Supabase | `supabase` |
|
|
88
97
|
* | TikTok | `tiktok` |
|
|
89
98
|
* | Typeform | `typeform` |
|
|
90
99
|
* | Wix | `wix` |
|
|
@@ -43,9 +43,9 @@ export interface InvokeLLMParams {
|
|
|
43
43
|
prompt: string;
|
|
44
44
|
/** Optionally specify a model to override the app-level model setting for this specific call.
|
|
45
45
|
*
|
|
46
|
-
* Options: `"gpt_5_mini"`, `"gemini_3_flash"`, `"gpt_5"`, `"gpt_5_4"`, `"
|
|
46
|
+
* Options: `"gpt_5_mini"`, `"gemini_3_flash"`, `"gpt_5"`, `"gpt_5_4"`, `"gemini_3_1_pro"`, `"claude_sonnet_4_6"`, `"claude_opus_4_6"`
|
|
47
47
|
*/
|
|
48
|
-
model?: 'gpt_5_mini' | 'gemini_3_flash' | 'gpt_5' | 'gpt_5_4' | '
|
|
48
|
+
model?: 'gpt_5_mini' | 'gemini_3_flash' | 'gpt_5' | 'gpt_5_4' | 'gemini_3_1_pro' | 'claude_sonnet_4_6' | 'claude_opus_4_6';
|
|
49
49
|
/** If set to `true`, the LLM will use Google Search, Maps, and News to gather real-time context before answering.
|
|
50
50
|
* @default false
|
|
51
51
|
*/
|