@base44-preview/cli 0.0.15-pr.104.dcaa6b4 → 0.0.15-pr.106.8dd9e6e

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
@@ -70,60 +70,6 @@ base44 deploy
70
70
  |---------|-------------|
71
71
  | `base44 site deploy` | Deploy built site files to Base44 hosting |
72
72
 
73
- ### Connectors
74
-
75
- Manage OAuth integrations to connect your app with external services. Connectors are stored in the `connectors` property of your project's `config.jsonc` file.
76
-
77
- | Command | Description |
78
- |---------|-------------|
79
- | `base44 connectors add [type]` | Add and connect an OAuth integration |
80
- | `base44 connectors list` | List all connectors (local and connected) |
81
- | `base44 connectors push` | Sync connectors with backend (connect new, remove missing) |
82
- | `base44 connectors remove [type]` | Remove an integration |
83
- | `base44 connectors remove [type] --hard` | Permanently remove an integration |
84
-
85
- **Supported integrations:** Slack, Google Calendar, Google Drive, Gmail, Google Sheets, Google Docs, Google Slides, Notion, Salesforce, HubSpot, LinkedIn, TikTok
86
-
87
- **Example workflow:**
88
- ```bash
89
- # Add a connector interactively (saves to config.jsonc and opens OAuth)
90
- base44 connectors add slack
91
-
92
- # List connectors showing local vs connected status
93
- base44 connectors list
94
- # Output:
95
- # ● Slack - user@example.com
96
- # ○ Google Calendar (not connected)
97
-
98
- # Sync all connectors (connects new, removes missing from config)
99
- base44 connectors push
100
- # Output:
101
- # 1 connector to connect:
102
- # + Google Calendar
103
- # 1 connector to remove:
104
- # - Notion (user@example.com)
105
- # Apply 2 changes? (Y/n)
106
-
107
- # Remove a single connector
108
- base44 connectors remove slack
109
- ```
110
-
111
- **Configuration** (`base44/config.jsonc`):
112
- ```jsonc
113
- {
114
- "name": "my-app",
115
- "connectors": {
116
- "slack": {},
117
- "googlecalendar": { "scopes": ["calendar.readonly"] }
118
- }
119
- }
120
- ```
121
-
122
- Once connected, use the SDK's `connectors.getAccessToken()` to retrieve tokens:
123
- ```javascript
124
- const token = await base44.connectors.getAccessToken("slack");
125
- ```
126
-
127
73
  ## Configuration
128
74
 
129
75
  ### Project Configuration