@base44-preview/cli 0.0.17-pr.104.ad47aa8 → 0.0.17-pr.108.0a81bed

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.
package/README.md CHANGED
@@ -92,60 +92,6 @@ base44 link --projectId <app-id>
92
92
  |---------|-------------|
93
93
  | `base44 site deploy` | Deploy built site files to Base44 hosting |
94
94
 
95
- ### Connectors
96
-
97
- Manage OAuth integrations to connect your app with external services. Connectors are stored in the `connectors` property of your project's `config.jsonc` file.
98
-
99
- | Command | Description |
100
- |---------|-------------|
101
- | `base44 connectors add [type]` | Add and connect an OAuth integration |
102
- | `base44 connectors list` | List all connectors (local and connected) |
103
- | `base44 connectors push` | Sync connectors with backend (connect new, remove missing) |
104
- | `base44 connectors remove [type]` | Remove an integration |
105
- | `base44 connectors remove [type] --hard` | Permanently remove an integration |
106
-
107
- **Supported integrations:** Slack, Google Calendar, Google Drive, Gmail, Google Sheets, Google Docs, Google Slides, Notion, Salesforce, HubSpot, LinkedIn, TikTok
108
-
109
- **Example workflow:**
110
- ```bash
111
- # Add a connector interactively (saves to config.jsonc and opens OAuth)
112
- base44 connectors add slack
113
-
114
- # List connectors showing local vs connected status
115
- base44 connectors list
116
- # Output:
117
- # ● Slack - user@example.com
118
- # ○ Google Calendar (not connected)
119
-
120
- # Sync all connectors (connects new, removes missing from config)
121
- base44 connectors push
122
- # Output:
123
- # 1 connector to connect:
124
- # + Google Calendar
125
- # 1 connector to remove:
126
- # - Notion (user@example.com)
127
- # Apply 2 changes? (Y/n)
128
-
129
- # Remove a single connector
130
- base44 connectors remove slack
131
- ```
132
-
133
- **Configuration** (`base44/config.jsonc`):
134
- ```jsonc
135
- {
136
- "name": "my-app",
137
- "connectors": {
138
- "slack": {},
139
- "googlecalendar": { "scopes": ["calendar.readonly"] }
140
- }
141
- }
142
- ```
143
-
144
- Once connected, use the SDK's `connectors.getAccessToken()` to retrieve tokens:
145
- ```javascript
146
- const token = await base44.connectors.getAccessToken("slack");
147
- ```
148
-
149
95
  ## Configuration
150
96
 
151
97
  ### Project Configuration