File tree Expand file tree Collapse file tree
apps/docs/content/docs/en/cli
packages/sim-cli/src/contract Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -268,6 +268,7 @@ sim knowledge connectors delete <id> <connectorId> [options]
268268| --- | --- | --- |
269269| ` --delete-documents ` | No | Also permanently delete documents produced by this connector. |
270270| ` --no-delete-documents ` | No | Send --delete-documents as false. |
271+ | ` -y, --yes ` | Yes | Confirm this destructive operation. |
271272
272273</CommandTable >
273274
Original file line number Diff line number Diff line change @@ -1232,6 +1232,7 @@ sim knowledge connectors delete <id> <connectorId> [options]
12321232| --- | --- | --- |
12331233| ` --delete-documents ` | No | Also permanently delete documents produced by this connector. |
12341234| ` --no-delete-documents ` | No | Send --delete-documents as false. |
1235+ | ` -y, --yes ` | Yes | Confirm this destructive operation. |
12351236
12361237</CommandTable >
12371238
@@ -2202,6 +2203,7 @@ sim skills editors delete <id> [options]
22022203| Option | Required | Description |
22032204| --- | --- | --- |
22042205| ` --email <value> ` | Yes | Email address of a current workspace member. |
2206+ | ` -y, --yes ` | Yes | Confirm this destructive operation. |
22052207
22062208</CommandTable >
22072209
Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ sim skills editors delete <id> [options]
146146| Option | Required | Description |
147147| --- | --- | --- |
148148| ` --email <value> ` | Yes | Email address of a current workspace member. |
149+ | ` -y, --yes ` | Yes | Confirm this destructive operation. |
149150
150151</CommandTable >
151152
Original file line number Diff line number Diff line change @@ -176,11 +176,18 @@ export const CLI_CONTRACT: CliContract = {
176176 pathArgumentNames : KNOWLEDGE_BASE_PATH_ARGUMENT ,
177177 confirm : 'This deletes the document and its embeddings.' ,
178178 } ,
179+ deleteKnowledgeConnector : {
180+ confirm :
181+ 'This deletes the connector; --delete-documents also deletes its synchronized documents.' ,
182+ } ,
179183 deleteFile : { confirm : 'This archives the file.' } ,
180184 deleteCredential : {
181185 confirm : 'This disconnects the credential and removes its stored authentication.' ,
182186 } ,
183187 deleteSkill : { confirm : 'This deletes the skill.' } ,
188+ revokeSkillEditor : {
189+ confirm : 'This revokes the explicit skill editor grant for the selected email.' ,
190+ } ,
184191 deleteCustomTool : { confirm : 'This deletes the custom tool.' } ,
185192 deleteMcpServer : {
186193 confirm : 'This removes the MCP server and the tools it provides.' ,
You can’t perform that action at this time.
0 commit comments