diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c708e62..4cef3a41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [4.1.0](https://github.com/box/boxcli/compare/v4.0.1...v4.1.0) (2025-05-15) + + +### New Features and Enhancements + +* Support AI Extract endpoints ([#574](https://github.com/box/boxcli/issues/574)) ([0b4ff6b](https://github.com/box/boxcli/commit/0b4ff6b63c8707c6842f3812d2a69071d195b799)) + +### Bug Fixes + +* Remove invalid `process.stderr.setEncoding` call ([486779e](https://github.com/box/boxcli/commit/486779ee3b8403805286b7ae6d3ab5c802c6f948)), closes [#571](https://github.com/box/boxcli/issues/571) + ### [4.0.1](https://github.com/box/boxcli/compare/v4.0.0...v4.0.1) (2025-03-07) diff --git a/docs/ai.md b/docs/ai.md index 5d2f50cd..749b8157 100644 --- a/docs/ai.md +++ b/docs/ai.md @@ -3,11 +3,10 @@ Sends an AI request to supported LLMs and returns an answer -- [`box ai`](#box-ai) - - [`box ai:ask`](#box-aiask) - - [`box ai:extract`](#box-aiextract) - - [`box ai:extract-structured`](#box-aiextract-structured) - - [`box ai:text-gen`](#box-aitext-gen) +* [`box ai:ask`](#box-aiask) +* [`box ai:extract`](#box-aiextract) +* [`box ai:extract-structured`](#box-aiextract-structured) +* [`box ai:text-gen`](#box-aitext-gen) ## `box ai:ask` @@ -42,7 +41,7 @@ EXAMPLES $ box ai:ask --items=id=12345,type=file --prompt "What is the status of this document?" ``` -_See code: [src/commands/ai/ask.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/ai/ask.js)_ +_See code: [src/commands/ai/ask.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/ai/ask.js)_ ## `box ai:extract` @@ -83,7 +82,7 @@ EXAMPLES $ box ai:extract --prompt "firstName, lastName, location, yearOfBirth, company" --items "id=12345,type=file" --ai-agent '{"type":"ai_agent_extract","basicText":{"llmEndpointParams":{"type":"openai_params","frequencyPenalty": 1.5,"presencePenalty": 1.5,"stop": "<|im_end|>","temperature": 0,"topP": 1},"model": "azure__openai__gpt_4o_mini","numTokensForCompletion": 8400,"promptTemplate": "It is, consider these travel options and answer the.","systemMessage": "You are a helpful travel assistant specialized in budget travel"}}}' ``` -_See code: [src/commands/ai/extract.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/ai/extract.js)_ +_See code: [src/commands/ai/extract.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/ai/extract.js)_ ## `box ai:extract-structured` @@ -127,7 +126,7 @@ EXAMPLES $ box ai:extract-structured --items="id=12345,type=file" --metadata-template="type=metadata_template,scope=enterprise,template_key=test" --ai-agent '{"type":"ai_agent_extract_structured","basicText":{"llmEndpointParams":{"type":"openai_params","frequencyPenalty": 1.5,"presencePenalty": 1.5,"stop": "<|im_end|>","temperature": 0,"topP": 1},"model": "azure__openai__gpt_4o_mini","numTokensForCompletion": 8400,"promptTemplate": "It is, consider these travel options and answer the.","systemMessage": "You are a helpful travel assistant specialized in budget travel"}}}' ``` -_See code: [src/commands/ai/extract-structured.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/ai/extract-structured.js)_ +_See code: [src/commands/ai/extract-structured.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/ai/extract-structured.js)_ ## `box ai:text-gen` @@ -165,4 +164,4 @@ EXAMPLES $ box ai:text-gen --dialogue-history=prompt="What is the status of this document?",answer="It is in review",created-at="2024-07-09T11:29:46.835Z" --items=id=12345,type=file --prompt="What is the status of this document?" ``` -_See code: [src/commands/ai/text-gen.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/ai/text-gen.js)_ +_See code: [src/commands/ai/text-gen.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/ai/text-gen.js)_ diff --git a/docs/collaboration-allowlist.md b/docs/collaboration-allowlist.md index 8eb90ee9..67ef3c5c 100644 --- a/docs/collaboration-allowlist.md +++ b/docs/collaboration-allowlist.md @@ -47,7 +47,7 @@ EXAMPLES $ box collaboration-allowlist ``` -_See code: [src/commands/collaboration-allowlist/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaboration-allowlist/index.js)_ +_See code: [src/commands/collaboration-allowlist/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaboration-allowlist/index.js)_ ## `box collaboration-allowlist:add DOMAIN` @@ -86,7 +86,7 @@ EXAMPLES $ box collaboration-allowlist:add example.com --direction outbound ``` -_See code: [src/commands/collaboration-allowlist/add.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaboration-allowlist/add.js)_ +_See code: [src/commands/collaboration-allowlist/add.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaboration-allowlist/add.js)_ ## `box collaboration-allowlist:delete ID` @@ -122,7 +122,7 @@ EXAMPLES $ box collaboration-allowlist:delete 12345 ``` -_See code: [src/commands/collaboration-allowlist/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaboration-allowlist/delete.js)_ +_See code: [src/commands/collaboration-allowlist/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaboration-allowlist/delete.js)_ ## `box collaboration-allowlist:exemptions` @@ -159,7 +159,7 @@ EXAMPLES $ box collaboration-allowlist:exemptions ``` -_See code: [src/commands/collaboration-allowlist/exemptions/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaboration-allowlist/exemptions/index.js)_ +_See code: [src/commands/collaboration-allowlist/exemptions/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaboration-allowlist/exemptions/index.js)_ ## `box collaboration-allowlist:exemptions:create USERID` @@ -195,7 +195,7 @@ EXAMPLES $ box collaboration-allowlist:exemptions:create 11111 ``` -_See code: [src/commands/collaboration-allowlist/exemptions/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaboration-allowlist/exemptions/create.js)_ +_See code: [src/commands/collaboration-allowlist/exemptions/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaboration-allowlist/exemptions/create.js)_ ## `box collaboration-allowlist:exemptions:delete ID` @@ -231,7 +231,7 @@ EXAMPLES $ box collaboration-allowlist:exemptions:delete 12345 ``` -_See code: [src/commands/collaboration-allowlist/exemptions/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaboration-allowlist/exemptions/delete.js)_ +_See code: [src/commands/collaboration-allowlist/exemptions/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaboration-allowlist/exemptions/delete.js)_ ## `box collaboration-allowlist:exemptions:get ID` @@ -267,7 +267,7 @@ EXAMPLES $ box collaboration-allowlist:exemptions:get 12345 ``` -_See code: [src/commands/collaboration-allowlist/exemptions/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaboration-allowlist/exemptions/get.js)_ +_See code: [src/commands/collaboration-allowlist/exemptions/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaboration-allowlist/exemptions/get.js)_ ## `box collaboration-allowlist:get ID` @@ -303,4 +303,4 @@ EXAMPLES $ box collaboration-allowlist:get 12345 ``` -_See code: [src/commands/collaboration-allowlist/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaboration-allowlist/get.js)_ +_See code: [src/commands/collaboration-allowlist/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaboration-allowlist/get.js)_ diff --git a/docs/collaborations.md b/docs/collaborations.md index 13a04bb8..1d7fe6d0 100644 --- a/docs/collaborations.md +++ b/docs/collaborations.md @@ -110,7 +110,7 @@ EXAMPLES $ box collaborations:create 22222 folder --role editor --user-id 33333 ``` -_See code: [src/commands/collaborations/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaborations/create.js)_ +_See code: [src/commands/collaborations/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaborations/create.js)_ ## `box collaborations:delete ID` @@ -150,7 +150,7 @@ EXAMPLES $ box collaborations:delete 12345 ``` -_See code: [src/commands/collaborations/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaborations/delete.js)_ +_See code: [src/commands/collaborations/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaborations/delete.js)_ ## `box collaborations:get ID` @@ -186,7 +186,7 @@ EXAMPLES $ box collaborations:get 12345 ``` -_See code: [src/commands/collaborations/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaborations/get.js)_ +_See code: [src/commands/collaborations/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaborations/get.js)_ ## `box collaborations:get-pending` @@ -302,7 +302,7 @@ EXAMPLES $ box collaborations:pending ``` -_See code: [src/commands/collaborations/pending.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaborations/pending.js)_ +_See code: [src/commands/collaborations/pending.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaborations/pending.js)_ ## `box collaborations:update ID` @@ -351,4 +351,4 @@ EXAMPLES $ box collaborations:update 12345 --role viewer ``` -_See code: [src/commands/collaborations/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collaborations/update.js)_ +_See code: [src/commands/collaborations/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collaborations/update.js)_ diff --git a/docs/collections.md b/docs/collections.md index c7725d12..6a1f4926 100644 --- a/docs/collections.md +++ b/docs/collections.md @@ -43,7 +43,7 @@ EXAMPLES $ box collections ``` -_See code: [src/commands/collections/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collections/index.js)_ +_See code: [src/commands/collections/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collections/index.js)_ ## `box collections:add ITEMTYPE ITEMID COLLECTIONID` @@ -81,7 +81,7 @@ EXAMPLES $ box collections:add file 11111 12345 ``` -_See code: [src/commands/collections/add.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collections/add.js)_ +_See code: [src/commands/collections/add.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collections/add.js)_ ## `box collections:items ID` @@ -121,7 +121,7 @@ EXAMPLES $ box collections:items 12345 ``` -_See code: [src/commands/collections/items.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collections/items.js)_ +_See code: [src/commands/collections/items.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collections/items.js)_ ## `box collections:list` @@ -193,4 +193,4 @@ EXAMPLES $ box collections:remove file 11111 12345 ``` -_See code: [src/commands/collections/remove.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/collections/remove.js)_ +_See code: [src/commands/collections/remove.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/collections/remove.js)_ diff --git a/docs/comments.md b/docs/comments.md index 4bf5332d..42110ab8 100644 --- a/docs/comments.md +++ b/docs/comments.md @@ -48,7 +48,7 @@ EXAMPLES $ box comments:create 11111 --message "Thanks for the update!" ``` -_See code: [src/commands/comments/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/comments/create.js)_ +_See code: [src/commands/comments/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/comments/create.js)_ ## `box comments:delete ID` @@ -84,7 +84,7 @@ EXAMPLES $ box comments:delete 12345 ``` -_See code: [src/commands/comments/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/comments/delete.js)_ +_See code: [src/commands/comments/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/comments/delete.js)_ ## `box comments:get ID` @@ -120,7 +120,7 @@ EXAMPLES $ box comments:get 12345 ``` -_See code: [src/commands/comments/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/comments/get.js)_ +_See code: [src/commands/comments/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/comments/get.js)_ ## `box comments:list ID` @@ -197,7 +197,7 @@ EXAMPLES $ box comments:reply 12345 --message "No problem!" ``` -_See code: [src/commands/comments/reply.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/comments/reply.js)_ +_See code: [src/commands/comments/reply.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/comments/reply.js)_ ## `box comments:update ID` @@ -236,4 +236,4 @@ EXAMPLES $ box comments:update 12345 --message "Thank you for the update!" ``` -_See code: [src/commands/comments/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/comments/update.js)_ +_See code: [src/commands/comments/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/comments/update.js)_ diff --git a/docs/configure.md b/docs/configure.md index c73b2f12..5a76769a 100644 --- a/docs/configure.md +++ b/docs/configure.md @@ -60,7 +60,7 @@ DESCRIPTION Add a new Box environment ``` -_See code: [src/commands/configure/environments/add.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/configure/environments/add.js)_ +_See code: [src/commands/configure/environments/add.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/configure/environments/add.js)_ ## `box configure:environments:delete [NAME]` @@ -83,7 +83,7 @@ DESCRIPTION Delete a Box environment ``` -_See code: [src/commands/configure/environments/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/configure/environments/delete.js)_ +_See code: [src/commands/configure/environments/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/configure/environments/delete.js)_ ## `box configure:environments:get` @@ -105,7 +105,7 @@ DESCRIPTION Get a Box environment ``` -_See code: [src/commands/configure/environments/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/configure/environments/get.js)_ +_See code: [src/commands/configure/environments/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/configure/environments/get.js)_ ## `box configure:environments:select [ID]` @@ -155,7 +155,7 @@ ALIASES $ box configure:environments:select ``` -_See code: [src/commands/configure/environments/set-current.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/configure/environments/set-current.js)_ +_See code: [src/commands/configure/environments/set-current.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/configure/environments/set-current.js)_ ## `box configure:environments:switch-user [USERID]` @@ -189,7 +189,7 @@ DESCRIPTION Switch the default Box user to run commands as ``` -_See code: [src/commands/configure/environments/switch-user.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/configure/environments/switch-user.js)_ +_See code: [src/commands/configure/environments/switch-user.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/configure/environments/switch-user.js)_ ## `box configure:environments:update [NAME]` @@ -221,7 +221,7 @@ DESCRIPTION Update a Box environment ``` -_See code: [src/commands/configure/environments/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/configure/environments/update.js)_ +_See code: [src/commands/configure/environments/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/configure/environments/update.js)_ ## `box configure:settings` @@ -256,4 +256,4 @@ DESCRIPTION View and update CLI configuration settings ``` -_See code: [src/commands/configure/settings.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/configure/settings.js)_ +_See code: [src/commands/configure/settings.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/configure/settings.js)_ diff --git a/docs/device-pins.md b/docs/device-pins.md index 3a2ee60c..6978a44c 100644 --- a/docs/device-pins.md +++ b/docs/device-pins.md @@ -45,7 +45,7 @@ EXAMPLES $ box device-pins ``` -_See code: [src/commands/device-pins/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/device-pins/index.js)_ +_See code: [src/commands/device-pins/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/device-pins/index.js)_ ## `box device-pins:delete ID` @@ -81,7 +81,7 @@ EXAMPLES $ box device-pins:delete 12345 ``` -_See code: [src/commands/device-pins/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/device-pins/delete.js)_ +_See code: [src/commands/device-pins/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/device-pins/delete.js)_ ## `box device-pins:get ID` @@ -117,4 +117,4 @@ EXAMPLES $ box device-pins:get 12345 ``` -_See code: [src/commands/device-pins/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/device-pins/get.js)_ +_See code: [src/commands/device-pins/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/device-pins/get.js)_ diff --git a/docs/events.md b/docs/events.md index dfc088d0..db4ae4e8 100644 --- a/docs/events.md +++ b/docs/events.md @@ -107,7 +107,7 @@ EXAMPLES $ box events --enterprise --created-after 2019-01-01 ``` -_See code: [src/commands/events/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/events/index.js)_ +_See code: [src/commands/events/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/events/index.js)_ ## `box events:get` @@ -246,4 +246,4 @@ DESCRIPTION Poll the event stream ``` -_See code: [src/commands/events/poll.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/events/poll.js)_ +_See code: [src/commands/events/poll.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/events/poll.js)_ diff --git a/docs/file-requests.md b/docs/file-requests.md index c5a6711e..4b0ed6d3 100644 --- a/docs/file-requests.md +++ b/docs/file-requests.md @@ -53,7 +53,7 @@ EXAMPLES $ box file-requests:copy 22222 44444 ``` -_See code: [src/commands/file-requests/copy.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/file-requests/copy.js)_ +_See code: [src/commands/file-requests/copy.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/file-requests/copy.js)_ ## `box file-requests:delete ID` @@ -89,7 +89,7 @@ EXAMPLES $ box file-requests:delete 12345 ``` -_See code: [src/commands/file-requests/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/file-requests/delete.js)_ +_See code: [src/commands/file-requests/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/file-requests/delete.js)_ ## `box file-requests:get ID` @@ -125,7 +125,7 @@ EXAMPLES $ box file-requests:get 12345 ``` -_See code: [src/commands/file-requests/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/file-requests/get.js)_ +_See code: [src/commands/file-requests/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/file-requests/get.js)_ ## `box file-requests:update ID` @@ -172,4 +172,4 @@ EXAMPLES $ box file-requests:update 12345 --description "New file request description!" ``` -_See code: [src/commands/file-requests/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/file-requests/update.js)_ +_See code: [src/commands/file-requests/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/file-requests/update.js)_ diff --git a/docs/files.md b/docs/files.md index 676d547f..5394e27a 100644 --- a/docs/files.md +++ b/docs/files.md @@ -85,7 +85,7 @@ EXAMPLES $ box files:collaborations 11111 ``` -_See code: [src/commands/files/collaborations/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/collaborations/index.js)_ +_See code: [src/commands/files/collaborations/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/collaborations/index.js)_ ## `box files:collaborations:add ID` @@ -132,7 +132,7 @@ EXAMPLES $ box files:collaborations:add 11111 --role editor --user-id 22222 ``` -_See code: [src/commands/files/collaborations/add.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/collaborations/add.js)_ +_See code: [src/commands/files/collaborations/add.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/collaborations/add.js)_ ## `box files:collaborations:delete ID` @@ -297,7 +297,7 @@ EXAMPLES $ box files:comments 11111 ``` -_See code: [src/commands/files/comments.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/comments.js)_ +_See code: [src/commands/files/comments.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/comments.js)_ ## `box files:copy ID PARENTID` @@ -338,7 +338,7 @@ EXAMPLES $ box files:copy 11111 22222 ``` -_See code: [src/commands/files/copy.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/copy.js)_ +_See code: [src/commands/files/copy.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/copy.js)_ ## `box files:delete ID` @@ -376,7 +376,7 @@ EXAMPLES $ box files:delete 11111 ``` -_See code: [src/commands/files/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/delete.js)_ +_See code: [src/commands/files/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/delete.js)_ ## `box files:download ID` @@ -418,7 +418,7 @@ EXAMPLES $ box files:download 11111 --destination /path/to/destinationFolder ``` -_See code: [src/commands/files/download.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/download.js)_ +_See code: [src/commands/files/download.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/download.js)_ ## `box files:get ID` @@ -454,7 +454,7 @@ EXAMPLES $ box files:get 11111 ``` -_See code: [src/commands/files/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/get.js)_ +_See code: [src/commands/files/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/get.js)_ ## `box files:lock ID` @@ -496,7 +496,7 @@ EXAMPLES $ box files:lock 11111 ``` -_See code: [src/commands/files/lock.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/lock.js)_ +_See code: [src/commands/files/lock.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/lock.js)_ ## `box files:metadata ID` @@ -535,7 +535,7 @@ EXAMPLES $ box files:metadata 11111 ``` -_See code: [src/commands/files/metadata/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/metadata/index.js)_ +_See code: [src/commands/files/metadata/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/metadata/index.js)_ ## `box files:metadata:add ID` @@ -581,7 +581,7 @@ EXAMPLES $ box files:metadata:add 22222 --template-key myTemplate --data "multiselectkey1=[option1A,option1B]" --data "multiselectkey2=[option2A]" ``` -_See code: [src/commands/files/metadata/add.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/metadata/add.js)_ +_See code: [src/commands/files/metadata/add.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/metadata/add.js)_ ## `box files:metadata:create ID` @@ -702,7 +702,7 @@ EXAMPLES $ box files:metadata:get 11111 --template-key employeeRecord ``` -_See code: [src/commands/files/metadata/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/metadata/get.js)_ +_See code: [src/commands/files/metadata/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/metadata/get.js)_ ## `box files:metadata:get-all ID` @@ -780,7 +780,7 @@ EXAMPLES $ box files:metadata:remove 11111 --scope global --template-key properties ``` -_See code: [src/commands/files/metadata/remove.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/metadata/remove.js)_ +_See code: [src/commands/files/metadata/remove.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/metadata/remove.js)_ ## `box files:metadata:set ID` @@ -823,7 +823,7 @@ EXAMPLES $ box files:metadata:set 22222 --template-key myTemplate --data "multiselectkey1=[option1A,option1B]" --data "multiselectkey2=[option2A]" ``` -_See code: [src/commands/files/metadata/set.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/metadata/set.js)_ +_See code: [src/commands/files/metadata/set.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/metadata/set.js)_ ## `box files:metadata:update ID` @@ -869,7 +869,7 @@ EXAMPLES $ box files:metadata:update 11111 --template-key employeeRecord --replace department=Finance ``` -_See code: [src/commands/files/metadata/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/metadata/update.js)_ +_See code: [src/commands/files/metadata/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/metadata/update.js)_ ## `box files:move ID PARENTID` @@ -907,7 +907,7 @@ EXAMPLES $ box files:move 11111 22222 ``` -_See code: [src/commands/files/move.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/move.js)_ +_See code: [src/commands/files/move.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/move.js)_ ## `box files:rename ID NAME` @@ -947,7 +947,7 @@ EXAMPLES $ box files:rename 11111 "New File Name.pdf" ``` -_See code: [src/commands/files/rename.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/rename.js)_ +_See code: [src/commands/files/rename.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/rename.js)_ ## `box files:share ID` @@ -997,7 +997,7 @@ EXAMPLES $ box files:share 11111 --access company --vanity-name my-custom-name-123 ``` -_See code: [src/commands/files/share.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/share.js)_ +_See code: [src/commands/files/share.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/share.js)_ ## `box files:shared-links:create ID` @@ -1169,7 +1169,7 @@ EXAMPLES $ box files:tasks 11111 ``` -_See code: [src/commands/files/tasks/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/tasks/index.js)_ +_See code: [src/commands/files/tasks/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/tasks/index.js)_ ## `box files:tasks:list ID` @@ -1242,7 +1242,7 @@ EXAMPLES $ box files:unlock 11111 ``` -_See code: [src/commands/files/unlock.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/unlock.js)_ +_See code: [src/commands/files/unlock.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/unlock.js)_ ## `box files:unshare ID` @@ -1281,7 +1281,7 @@ EXAMPLES $ box files:unshare 11111 ``` -_See code: [src/commands/files/unshare.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/unshare.js)_ +_See code: [src/commands/files/unshare.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/unshare.js)_ ## `box files:update ID` @@ -1324,7 +1324,7 @@ EXAMPLES $ box files:update 11111 --name "New File Name.pdf" ``` -_See code: [src/commands/files/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/update.js)_ +_See code: [src/commands/files/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/update.js)_ ## `box files:update-lock ID` @@ -1409,7 +1409,7 @@ EXAMPLES $ box files:upload /path/to/file.pdf --parent-id 22222 ``` -_See code: [src/commands/files/upload.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/upload.js)_ +_See code: [src/commands/files/upload.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/upload.js)_ ## `box files:versions FILEID` @@ -1452,7 +1452,7 @@ EXAMPLES $ box files:versions 11111 ``` -_See code: [src/commands/files/versions/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/versions/index.js)_ +_See code: [src/commands/files/versions/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/versions/index.js)_ ## `box files:versions:delete FILEID FILEVERSIONID` @@ -1490,7 +1490,7 @@ EXAMPLES $ box files:versions:delete 11111 55555 ``` -_See code: [src/commands/files/versions/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/versions/delete.js)_ +_See code: [src/commands/files/versions/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/versions/delete.js)_ ## `box files:versions:download FILEID FILEVERSIONID` @@ -1532,7 +1532,7 @@ EXAMPLES $ box files:versions:download 11111 55555 ``` -_See code: [src/commands/files/versions/download.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/versions/download.js)_ +_See code: [src/commands/files/versions/download.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/versions/download.js)_ ## `box files:versions:list FILEID` @@ -1610,7 +1610,7 @@ EXAMPLES $ box files:versions:promote 11111 55555 ``` -_See code: [src/commands/files/versions/promote.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/versions/promote.js)_ +_See code: [src/commands/files/versions/promote.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/versions/promote.js)_ ## `box files:versions:upload FILEID PATH` @@ -1651,7 +1651,7 @@ EXAMPLES $ box files:versions:upload 11111 /path/to/file.pdf ``` -_See code: [src/commands/files/versions/upload.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/versions/upload.js)_ +_See code: [src/commands/files/versions/upload.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/versions/upload.js)_ ## `box files:zip NAME` @@ -1692,4 +1692,4 @@ EXAMPLES $ box files:zip sample_file.zip --item=file:12421 --item=folder:48291 ``` -_See code: [src/commands/files/zip.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/files/zip.js)_ +_See code: [src/commands/files/zip.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/files/zip.js)_ diff --git a/docs/folders.md b/docs/folders.md index d276c911..a8f6bc3b 100644 --- a/docs/folders.md +++ b/docs/folders.md @@ -75,7 +75,7 @@ EXAMPLES $ box folders:collaborations 22222 ``` -_See code: [src/commands/folders/collaborations/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/collaborations/index.js)_ +_See code: [src/commands/folders/collaborations/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/collaborations/index.js)_ ## `box folders:collaborations:add ID` @@ -122,7 +122,7 @@ EXAMPLES $ box folders:collaborations:add 22222 --role editor --user-id 33333 ``` -_See code: [src/commands/folders/collaborations/add.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/collaborations/add.js)_ +_See code: [src/commands/folders/collaborations/add.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/collaborations/add.js)_ ## `box folders:collaborations:delete ID` @@ -284,7 +284,7 @@ EXAMPLES $ box folders:copy 22222 44444 ``` -_See code: [src/commands/folders/copy.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/copy.js)_ +_See code: [src/commands/folders/copy.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/copy.js)_ ## `box folders:create PARENTID NAME` @@ -324,7 +324,7 @@ EXAMPLES $ box folders:create 22222 "New Subfolder" ``` -_See code: [src/commands/folders/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/create.js)_ +_See code: [src/commands/folders/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/create.js)_ ## `box folders:delete ID` @@ -363,7 +363,7 @@ EXAMPLES $ box folders:delete 22222 ``` -_See code: [src/commands/folders/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/delete.js)_ +_See code: [src/commands/folders/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/delete.js)_ ## `box folders:download ID` @@ -405,7 +405,7 @@ EXAMPLES $ box folders:download 22222 ``` -_See code: [src/commands/folders/download.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/download.js)_ +_See code: [src/commands/folders/download.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/download.js)_ ## `box folders:get ID` @@ -441,7 +441,7 @@ EXAMPLES $ box folders:get 22222 ``` -_See code: [src/commands/folders/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/get.js)_ +_See code: [src/commands/folders/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/get.js)_ ## `box folders:items ID` @@ -489,7 +489,7 @@ EXAMPLES $ box folders:items 22222 ``` -_See code: [src/commands/folders/items.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/items.js)_ +_See code: [src/commands/folders/items.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/items.js)_ ## `box folders:list-items ID` @@ -574,7 +574,7 @@ EXAMPLES $ box folders:locks 22222 ``` -_See code: [src/commands/folders/locks/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/locks/index.js)_ +_See code: [src/commands/folders/locks/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/locks/index.js)_ ## `box folders:locks:create ID` @@ -610,7 +610,7 @@ EXAMPLES $ box folders:locks:create 22222 ``` -_See code: [src/commands/folders/locks/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/locks/create.js)_ +_See code: [src/commands/folders/locks/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/locks/create.js)_ ## `box folders:locks:delete ID` @@ -646,7 +646,7 @@ EXAMPLES $ box folders:locks:delete 22222 ``` -_See code: [src/commands/folders/locks/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/locks/delete.js)_ +_See code: [src/commands/folders/locks/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/locks/delete.js)_ ## `box folders:locks:list ID` @@ -722,7 +722,7 @@ EXAMPLES $ box folders:metadata 22222 ``` -_See code: [src/commands/folders/metadata/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/metadata/index.js)_ +_See code: [src/commands/folders/metadata/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/metadata/index.js)_ ## `box folders:metadata:add ID` @@ -768,7 +768,7 @@ EXAMPLES $ box folders:metadata:add 22222 --template-key myTemplate --data "multiselectkey1=[option1A,option1B]" --data "multiselectkey2=[option2A]" ``` -_See code: [src/commands/folders/metadata/add.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/metadata/add.js)_ +_See code: [src/commands/folders/metadata/add.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/metadata/add.js)_ ## `box folders:metadata:create ID` @@ -889,7 +889,7 @@ EXAMPLES $ box folders:metadata:get 22222 --template-key employeeRecord ``` -_See code: [src/commands/folders/metadata/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/metadata/get.js)_ +_See code: [src/commands/folders/metadata/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/metadata/get.js)_ ## `box folders:metadata:get-all ID` @@ -967,7 +967,7 @@ EXAMPLES $ box folders:metadata:remove 22222 --scope global --template-key properties ``` -_See code: [src/commands/folders/metadata/remove.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/metadata/remove.js)_ +_See code: [src/commands/folders/metadata/remove.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/metadata/remove.js)_ ## `box folders:metadata:set ID` @@ -1010,7 +1010,7 @@ EXAMPLES $ box folders:metadata:set 22222 --template-key myTemplate --data "multiselectkey1=[option1A,option1B]" --data "multiselectkey2=[option2A]" ``` -_See code: [src/commands/folders/metadata/set.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/metadata/set.js)_ +_See code: [src/commands/folders/metadata/set.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/metadata/set.js)_ ## `box folders:metadata:update ID` @@ -1056,7 +1056,7 @@ EXAMPLES $ box folders:metadata:update 22222 --template-key employeeRecord --replace department=Finance ``` -_See code: [src/commands/folders/metadata/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/metadata/update.js)_ +_See code: [src/commands/folders/metadata/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/metadata/update.js)_ ## `box folders:move ID PARENTID` @@ -1094,7 +1094,7 @@ EXAMPLES $ box folders:move 22222 44444 ``` -_See code: [src/commands/folders/move.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/move.js)_ +_See code: [src/commands/folders/move.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/move.js)_ ## `box folders:rename ID NAME` @@ -1134,7 +1134,7 @@ EXAMPLES $ box folders:rename 22222 "New Folder Name" ``` -_See code: [src/commands/folders/rename.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/rename.js)_ +_See code: [src/commands/folders/rename.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/rename.js)_ ## `box folders:share ID` @@ -1183,7 +1183,7 @@ EXAMPLES $ box folders:share 22222 --access company --vanity-name my-custom-name-123 ``` -_See code: [src/commands/folders/share.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/share.js)_ +_See code: [src/commands/folders/share.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/share.js)_ ## `box folders:shared-links:create ID` @@ -1353,7 +1353,7 @@ EXAMPLES $ box folders:unshare 22222 ``` -_See code: [src/commands/folders/unshare.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/unshare.js)_ +_See code: [src/commands/folders/unshare.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/unshare.js)_ ## `box folders:update ID` @@ -1405,7 +1405,7 @@ EXAMPLES $ box folders:update 22222 --name "New Folder Name" ``` -_See code: [src/commands/folders/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/update.js)_ +_See code: [src/commands/folders/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/update.js)_ ## `box folders:upload PATH` @@ -1445,4 +1445,4 @@ EXAMPLES $ box folders:upload /path/to/folder ``` -_See code: [src/commands/folders/upload.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/folders/upload.js)_ +_See code: [src/commands/folders/upload.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/folders/upload.js)_ diff --git a/docs/groups.md b/docs/groups.md index dd6b9210..34b7b4d2 100644 --- a/docs/groups.md +++ b/docs/groups.md @@ -62,7 +62,7 @@ EXAMPLES $ box groups ``` -_See code: [src/commands/groups/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/index.js)_ +_See code: [src/commands/groups/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/index.js)_ ## `box groups:collaborations ID` @@ -102,7 +102,7 @@ EXAMPLES $ box groups:collaborations 12345 ``` -_See code: [src/commands/groups/collaborations.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/collaborations.js)_ +_See code: [src/commands/groups/collaborations.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/collaborations.js)_ ## `box groups:create NAME` @@ -148,7 +148,7 @@ EXAMPLES $ box groups:create "US Employees" ``` -_See code: [src/commands/groups/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/create.js)_ +_See code: [src/commands/groups/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/create.js)_ ## `box groups:delete ID` @@ -184,7 +184,7 @@ EXAMPLES $ box groups:delete 12345 ``` -_See code: [src/commands/groups/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/delete.js)_ +_See code: [src/commands/groups/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/delete.js)_ ## `box groups:get ID` @@ -220,7 +220,7 @@ EXAMPLES $ box groups:get 12345 ``` -_See code: [src/commands/groups/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/get.js)_ +_See code: [src/commands/groups/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/get.js)_ ## `box groups:list` @@ -544,7 +544,7 @@ EXAMPLES $ box groups:memberships 12345 ``` -_See code: [src/commands/groups/memberships/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/memberships/index.js)_ +_See code: [src/commands/groups/memberships/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/memberships/index.js)_ ## `box groups:memberships:add USERID GROUPID` @@ -591,7 +591,7 @@ EXAMPLES $ box groups:memberships:add 33333 12345 ``` -_See code: [src/commands/groups/memberships/add.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/memberships/add.js)_ +_See code: [src/commands/groups/memberships/add.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/memberships/add.js)_ ## `box groups:memberships:get ID` @@ -630,7 +630,7 @@ EXAMPLES $ box groups:memberships:get 12345 ``` -_See code: [src/commands/groups/memberships/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/memberships/get.js)_ +_See code: [src/commands/groups/memberships/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/memberships/get.js)_ ## `box groups:memberships:remove ID` @@ -669,7 +669,7 @@ EXAMPLES $ box groups:memberships:remove 12345 ``` -_See code: [src/commands/groups/memberships/remove.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/memberships/remove.js)_ +_See code: [src/commands/groups/memberships/remove.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/memberships/remove.js)_ ## `box groups:memberships:update ID` @@ -715,7 +715,7 @@ EXAMPLES $ box groups:memberships:update ``` -_See code: [src/commands/groups/memberships/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/memberships/update.js)_ +_See code: [src/commands/groups/memberships/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/memberships/update.js)_ ## `box groups:terminate-session` @@ -752,7 +752,7 @@ EXAMPLES $ box groups:terminate-session --group-ids 123 345 ``` -_See code: [src/commands/groups/terminate-session.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/terminate-session.js)_ +_See code: [src/commands/groups/terminate-session.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/terminate-session.js)_ ## `box groups:update ID` @@ -798,4 +798,4 @@ EXAMPLES $ box groups:update 12345 --name "U.S. Employees" ``` -_See code: [src/commands/groups/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/groups/update.js)_ +_See code: [src/commands/groups/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/groups/update.js)_ diff --git a/docs/integration-mappings.md b/docs/integration-mappings.md index b2bd84c5..f49151cf 100644 --- a/docs/integration-mappings.md +++ b/docs/integration-mappings.md @@ -53,7 +53,7 @@ EXAMPLES $ box integration-mappings:slack --box-item-id 456 --no-manually-created ``` -_See code: [src/commands/integration-mappings/slack/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/integration-mappings/slack/index.js)_ +_See code: [src/commands/integration-mappings/slack/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/integration-mappings/slack/index.js)_ ## `box integration-mappings:slack:create BOXITEMID CHANNELID` @@ -98,7 +98,7 @@ EXAMPLES $ box integration-mappings:slack:create 123 AB89X56Y --slack-workspace-id 999 --disable-access-management ``` -_See code: [src/commands/integration-mappings/slack/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/integration-mappings/slack/create.js)_ +_See code: [src/commands/integration-mappings/slack/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/integration-mappings/slack/create.js)_ ## `box integration-mappings:slack:delete ID` @@ -134,7 +134,7 @@ EXAMPLES $ box integration-mappings:slack:delete 123 ``` -_See code: [src/commands/integration-mappings/slack/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/integration-mappings/slack/delete.js)_ +_See code: [src/commands/integration-mappings/slack/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/integration-mappings/slack/delete.js)_ ## `box integration-mappings:slack:list` @@ -219,4 +219,4 @@ EXAMPLES $ box integration-mappings:slack:update 123 --box-item-id 789 --disable-access-management ``` -_See code: [src/commands/integration-mappings/slack/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/integration-mappings/slack/update.js)_ +_See code: [src/commands/integration-mappings/slack/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/integration-mappings/slack/update.js)_ diff --git a/docs/legal-hold-policies.md b/docs/legal-hold-policies.md index 62800dbd..60d01043 100644 --- a/docs/legal-hold-policies.md +++ b/docs/legal-hold-policies.md @@ -52,7 +52,7 @@ EXAMPLES $ box legal-hold-policies ``` -_See code: [src/commands/legal-hold-policies/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/legal-hold-policies/index.js)_ +_See code: [src/commands/legal-hold-policies/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/legal-hold-policies/index.js)_ ## `box legal-hold-policies:assign POLICYID` @@ -92,7 +92,7 @@ EXAMPLES $ box legal-hold-policies:assign 99999 --assign-to-type folder --assign-to-id 22222 ``` -_See code: [src/commands/legal-hold-policies/assign.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/legal-hold-policies/assign.js)_ +_See code: [src/commands/legal-hold-policies/assign.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/legal-hold-policies/assign.js)_ ## `box legal-hold-policies:assignments ID` @@ -136,7 +136,7 @@ EXAMPLES $ box legal-hold-policies:assignments 99999 ``` -_See code: [src/commands/legal-hold-policies/assignments/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/legal-hold-policies/assignments/index.js)_ +_See code: [src/commands/legal-hold-policies/assignments/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/legal-hold-policies/assignments/index.js)_ ## `box legal-hold-policies:assignments:delete ID` @@ -172,7 +172,7 @@ EXAMPLES $ box legal-hold-policies:assignments:delete 99999 ``` -_See code: [src/commands/legal-hold-policies/assignments/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/legal-hold-policies/assignments/delete.js)_ +_See code: [src/commands/legal-hold-policies/assignments/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/legal-hold-policies/assignments/delete.js)_ ## `box legal-hold-policies:assignments:get ID` @@ -208,7 +208,7 @@ EXAMPLES $ box legal-hold-policies:assignments:get 99999 ``` -_See code: [src/commands/legal-hold-policies/assignments/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/legal-hold-policies/assignments/get.js)_ +_See code: [src/commands/legal-hold-policies/assignments/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/legal-hold-policies/assignments/get.js)_ ## `box legal-hold-policies:create POLICYNAME` @@ -252,7 +252,7 @@ EXAMPLES $ box legal-hold-policies:create "Class Action Suit" --ongoing ``` -_See code: [src/commands/legal-hold-policies/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/legal-hold-policies/create.js)_ +_See code: [src/commands/legal-hold-policies/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/legal-hold-policies/create.js)_ ## `box legal-hold-policies:delete ID` @@ -288,7 +288,7 @@ EXAMPLES $ box legal-hold-policies:delete 99999 ``` -_See code: [src/commands/legal-hold-policies/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/legal-hold-policies/delete.js)_ +_See code: [src/commands/legal-hold-policies/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/legal-hold-policies/delete.js)_ ## `box legal-hold-policies:file-version-holds ID` @@ -328,7 +328,7 @@ EXAMPLES $ box legal-hold-policies:file-version-holds 99999 ``` -_See code: [src/commands/legal-hold-policies/file-version-holds/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/legal-hold-policies/file-version-holds/index.js)_ +_See code: [src/commands/legal-hold-policies/file-version-holds/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/legal-hold-policies/file-version-holds/index.js)_ ## `box legal-hold-policies:file-version-holds:get ID` @@ -364,7 +364,7 @@ EXAMPLES $ box legal-hold-policies:file-version-holds:get 12345 ``` -_See code: [src/commands/legal-hold-policies/file-version-holds/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/legal-hold-policies/file-version-holds/get.js)_ +_See code: [src/commands/legal-hold-policies/file-version-holds/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/legal-hold-policies/file-version-holds/get.js)_ ## `box legal-hold-policies:get ID` @@ -400,7 +400,7 @@ EXAMPLES $ box legal-hold-policies:get 99999 ``` -_See code: [src/commands/legal-hold-policies/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/legal-hold-policies/get.js)_ +_See code: [src/commands/legal-hold-policies/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/legal-hold-policies/get.js)_ ## `box legal-hold-policies:update ID` @@ -440,4 +440,4 @@ EXAMPLES $ box legal-hold-policies:update 99999 --description "Files related to the ongoing class action suit" ``` -_See code: [src/commands/legal-hold-policies/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/legal-hold-policies/update.js)_ +_See code: [src/commands/legal-hold-policies/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/legal-hold-policies/update.js)_ diff --git a/docs/login.md b/docs/login.md index aa5f985a..60e774bb 100644 --- a/docs/login.md +++ b/docs/login.md @@ -28,4 +28,4 @@ DESCRIPTION Sign in with OAuth and set a new environment or update an existing if reauthorize flag is used ``` -_See code: [src/commands/login.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/login.js)_ +_See code: [src/commands/login.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/login.js)_ diff --git a/docs/metadata-cascade-policies.md b/docs/metadata-cascade-policies.md index c44bfca2..7c0f2146 100644 --- a/docs/metadata-cascade-policies.md +++ b/docs/metadata-cascade-policies.md @@ -49,7 +49,7 @@ EXAMPLES $ box metadata-cascade-policies 22222 ``` -_See code: [src/commands/metadata-cascade-policies/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/metadata-cascade-policies/index.js)_ +_See code: [src/commands/metadata-cascade-policies/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/metadata-cascade-policies/index.js)_ ## `box metadata-cascade-policies:create TEMPLATEKEY` @@ -126,7 +126,7 @@ EXAMPLES $ box metadata-cascade-policies:delete 12345 ``` -_See code: [src/commands/metadata-cascade-policies/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/metadata-cascade-policies/delete.js)_ +_See code: [src/commands/metadata-cascade-policies/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/metadata-cascade-policies/delete.js)_ ## `box metadata-cascade-policies:force-apply ID` @@ -164,7 +164,7 @@ EXAMPLES $ box metadata-cascade-policies:force-apply 12345 --conflict-resolution overwrite ``` -_See code: [src/commands/metadata-cascade-policies/force-apply.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/metadata-cascade-policies/force-apply.js)_ +_See code: [src/commands/metadata-cascade-policies/force-apply.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/metadata-cascade-policies/force-apply.js)_ ## `box metadata-cascade-policies:get ID` @@ -200,4 +200,4 @@ EXAMPLES $ box metadata-cascade-policies:get 12345 ``` -_See code: [src/commands/metadata-cascade-policies/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/metadata-cascade-policies/get.js)_ +_See code: [src/commands/metadata-cascade-policies/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/metadata-cascade-policies/get.js)_ diff --git a/docs/metadata-query.md b/docs/metadata-query.md index b18711c1..c3eb8a2e 100644 --- a/docs/metadata-query.md +++ b/docs/metadata-query.md @@ -51,4 +51,4 @@ EXAMPLES $ box metadata-query enterprise_12345.someTemplate 5555 --query "amount >= :minAmount AND amount <= :maxAmount" --query-params minAmount=100f,maxAmount=200f --use-index amountAsc --order-by amount=ASC --extra-fields created_at,metadata.enterprise_1234.contracts ``` -_See code: [src/commands/metadata-query.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/metadata-query.js)_ +_See code: [src/commands/metadata-query.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/metadata-query.js)_ diff --git a/docs/metadata-templates.md b/docs/metadata-templates.md index c7705bd9..f36b673a 100644 --- a/docs/metadata-templates.md +++ b/docs/metadata-templates.md @@ -45,7 +45,7 @@ EXAMPLES $ box metadata-templates ``` -_See code: [src/commands/metadata-templates/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/metadata-templates/index.js)_ +_See code: [src/commands/metadata-templates/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/metadata-templates/index.js)_ ## `box metadata-templates:cascade TEMPLATEKEY` @@ -88,7 +88,7 @@ EXAMPLES $ box metadata-templates:cascade employeeRecord --folder 22222 ``` -_See code: [src/commands/metadata-templates/cascade.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/metadata-templates/cascade.js)_ +_See code: [src/commands/metadata-templates/cascade.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/metadata-templates/cascade.js)_ ## `box metadata-templates:create` @@ -139,7 +139,7 @@ EXAMPLES $ box metadata-templates:create --display-name "Employee Record" --string Name --enum Department --option Sales ``` -_See code: [src/commands/metadata-templates/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/metadata-templates/create.js)_ +_See code: [src/commands/metadata-templates/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/metadata-templates/create.js)_ ## `box metadata-templates:delete TEMPLATEKEY` @@ -176,7 +176,7 @@ EXAMPLES $ box metadata-templates:delete employeeRecord ``` -_See code: [src/commands/metadata-templates/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/metadata-templates/delete.js)_ +_See code: [src/commands/metadata-templates/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/metadata-templates/delete.js)_ ## `box metadata-templates:get TEMPLATEKEY` @@ -213,7 +213,7 @@ EXAMPLES $ box metadata-templates:get employeeRecord ``` -_See code: [src/commands/metadata-templates/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/metadata-templates/get.js)_ +_See code: [src/commands/metadata-templates/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/metadata-templates/get.js)_ ## `box metadata-templates:list` @@ -312,4 +312,4 @@ EXAMPLES $ box metadata-templates:update employeeRecord --hidden ``` -_See code: [src/commands/metadata-templates/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/metadata-templates/update.js)_ +_See code: [src/commands/metadata-templates/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/metadata-templates/update.js)_ diff --git a/docs/oss.md b/docs/oss.md index e84fcdb3..e10e9d73 100644 --- a/docs/oss.md +++ b/docs/oss.md @@ -23,4 +23,4 @@ DESCRIPTION Print a list of open-source licensed packages used in the Box CLI ``` -_See code: [src/commands/oss.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/oss.js)_ +_See code: [src/commands/oss.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/oss.js)_ diff --git a/docs/recent-items.md b/docs/recent-items.md index 28a3d92e..d162768e 100644 --- a/docs/recent-items.md +++ b/docs/recent-items.md @@ -40,4 +40,4 @@ EXAMPLES $ box recent-items ``` -_See code: [src/commands/recent-items.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/recent-items.js)_ +_See code: [src/commands/recent-items.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/recent-items.js)_ diff --git a/docs/request.md b/docs/request.md index ecbc2ed5..8283bfec 100644 --- a/docs/request.md +++ b/docs/request.md @@ -42,4 +42,4 @@ DESCRIPTION Manually specify a Box API request ``` -_See code: [src/commands/request.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/request.js)_ +_See code: [src/commands/request.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/request.js)_ diff --git a/docs/retention-policies.md b/docs/retention-policies.md index 35e789ca..bb21c4ab 100644 --- a/docs/retention-policies.md +++ b/docs/retention-policies.md @@ -56,7 +56,7 @@ EXAMPLES $ box retention-policies ``` -_See code: [src/commands/retention-policies/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/index.js)_ +_See code: [src/commands/retention-policies/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/index.js)_ ## `box retention-policies:assign POLICYID` @@ -99,7 +99,7 @@ EXAMPLES $ box retention-policies:assign 12345 --assign-to-type folder --assign-to-id 22222 --filter-field=fieldName=fieldValue --start-date-field=upload_date ``` -_See code: [src/commands/retention-policies/assign.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/assign.js)_ +_See code: [src/commands/retention-policies/assign.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/assign.js)_ ## `box retention-policies:assignments ID` @@ -142,7 +142,7 @@ EXAMPLES $ box retention-policies:assignments 12345 ``` -_See code: [src/commands/retention-policies/assignments/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/assignments/index.js)_ +_See code: [src/commands/retention-policies/assignments/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/assignments/index.js)_ ## `box retention-policies:assignments:get ID` @@ -178,7 +178,7 @@ EXAMPLES $ box retention-policies:assignments:get 1235 ``` -_See code: [src/commands/retention-policies/assignments/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/assignments/get.js)_ +_See code: [src/commands/retention-policies/assignments/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/assignments/get.js)_ ## `box retention-policies:assignments:remove ID` @@ -214,7 +214,7 @@ EXAMPLES $ box retention-policies:assignments:remove 1235 ``` -_See code: [src/commands/retention-policies/assignments/remove.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/assignments/remove.js)_ +_See code: [src/commands/retention-policies/assignments/remove.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/assignments/remove.js)_ ## `box retention-policies:create POLICYNAME` @@ -265,7 +265,7 @@ EXAMPLES $ box retention-policies:create "Tax Documents" --retention-length 2555 --disposition-action=remove_retention --notify-owners --allow-extension --description "Tax documents for 2018" --custom-notification-recipient=id=12345,login=user@box.com ``` -_See code: [src/commands/retention-policies/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/create.js)_ +_See code: [src/commands/retention-policies/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/create.js)_ ## `box retention-policies:file-version-retentions` @@ -311,7 +311,7 @@ EXAMPLES $ box retention-policies:file-version-retentions ``` -_See code: [src/commands/retention-policies/file-version-retentions/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/file-version-retentions/index.js)_ +_See code: [src/commands/retention-policies/file-version-retentions/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/file-version-retentions/index.js)_ ## `box retention-policies:file-version-retentions:get ID` @@ -347,7 +347,7 @@ EXAMPLES $ box retention-policies:file-version-retentions:get 77777 ``` -_See code: [src/commands/retention-policies/file-version-retentions/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/file-version-retentions/get.js)_ +_See code: [src/commands/retention-policies/file-version-retentions/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/file-version-retentions/get.js)_ ## `box retention-policies:file-versions-under-retention:get ID` @@ -387,7 +387,7 @@ EXAMPLES $ box retention-policies:file-versions-under-retention:get 77777 ``` -_See code: [src/commands/retention-policies/file-versions-under-retention/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/file-versions-under-retention/get.js)_ +_See code: [src/commands/retention-policies/file-versions-under-retention/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/file-versions-under-retention/get.js)_ ## `box retention-policies:files-under-retention:get ID` @@ -427,7 +427,7 @@ EXAMPLES $ box retention-policies:files-under-retention:get 77777 ``` -_See code: [src/commands/retention-policies/files-under-retention/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/files-under-retention/get.js)_ +_See code: [src/commands/retention-policies/files-under-retention/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/files-under-retention/get.js)_ ## `box retention-policies:get ID` @@ -463,7 +463,7 @@ EXAMPLES $ box retention-policies:get 12345 ``` -_See code: [src/commands/retention-policies/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/get.js)_ +_See code: [src/commands/retention-policies/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/get.js)_ ## `box retention-policies:update ID` @@ -510,4 +510,4 @@ EXAMPLES $ box retention-policies:update 12345 ``` -_See code: [src/commands/retention-policies/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/retention-policies/update.js)_ +_See code: [src/commands/retention-policies/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/retention-policies/update.js)_ diff --git a/docs/search.md b/docs/search.md index 35e6f5e0..c4fd3e36 100644 --- a/docs/search.md +++ b/docs/search.md @@ -76,4 +76,4 @@ EXAMPLES $ box search --mdfilter "enterprise.employeeRecord.name=John Doe" ``` -_See code: [src/commands/search.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/search.js)_ +_See code: [src/commands/search.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/search.js)_ diff --git a/docs/shared-links.md b/docs/shared-links.md index 3e915ff3..baa6f8b8 100644 --- a/docs/shared-links.md +++ b/docs/shared-links.md @@ -56,7 +56,7 @@ EXAMPLES $ box shared-links:create 22222 folder --access company --vanity-name my-custom-name-123 ``` -_See code: [src/commands/shared-links/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/shared-links/create.js)_ +_See code: [src/commands/shared-links/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/shared-links/create.js)_ ## `box shared-links:delete ITEMID ITEMTYPE` @@ -93,7 +93,7 @@ EXAMPLES $ box shared-links:delete 22222 folder ``` -_See code: [src/commands/shared-links/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/shared-links/delete.js)_ +_See code: [src/commands/shared-links/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/shared-links/delete.js)_ ## `box shared-links:get URL` @@ -130,7 +130,7 @@ EXAMPLES $ box shared-links:get https://app.box.com/s/13ynxiqe3y4tup3j0yn4qairs5ebfxo3 ``` -_See code: [src/commands/shared-links/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/shared-links/get.js)_ +_See code: [src/commands/shared-links/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/shared-links/get.js)_ ## `box shared-links:update ITEMID ITEMTYPE` diff --git a/docs/sign-requests.md b/docs/sign-requests.md index 8efb6153..52662915 100644 --- a/docs/sign-requests.md +++ b/docs/sign-requests.md @@ -44,7 +44,7 @@ EXAMPLES $ box sign-requests ``` -_See code: [src/commands/sign-requests/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/sign-requests/index.js)_ +_See code: [src/commands/sign-requests/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/sign-requests/index.js)_ ## `box sign-requests:cancel ID` @@ -80,7 +80,7 @@ EXAMPLES $ box sign-requests:cancel 12345 ``` -_See code: [src/commands/sign-requests/cancel.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/sign-requests/cancel.js)_ +_See code: [src/commands/sign-requests/cancel.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/sign-requests/cancel.js)_ ## `box sign-requests:create` @@ -195,7 +195,7 @@ EXAMPLES $ box sign-requests:create --signer email=alice@example.com --source-files 12345 --parent-folder 23456 --prefill-tag id=1,value=Test ``` -_See code: [src/commands/sign-requests/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/sign-requests/create.js)_ +_See code: [src/commands/sign-requests/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/sign-requests/create.js)_ ## `box sign-requests:get ID` @@ -231,7 +231,7 @@ EXAMPLES $ box sign-requests:get 12345 ``` -_See code: [src/commands/sign-requests/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/sign-requests/get.js)_ +_See code: [src/commands/sign-requests/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/sign-requests/get.js)_ ## `box sign-requests:resend ID` @@ -267,4 +267,4 @@ EXAMPLES $ box sign-requests:resend 12345 ``` -_See code: [src/commands/sign-requests/resend.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/sign-requests/resend.js)_ +_See code: [src/commands/sign-requests/resend.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/sign-requests/resend.js)_ diff --git a/docs/sign-templates.md b/docs/sign-templates.md index 2c0fee9b..4944e403 100644 --- a/docs/sign-templates.md +++ b/docs/sign-templates.md @@ -41,7 +41,7 @@ EXAMPLES $ box sign-templates ``` -_See code: [src/commands/sign-templates/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/sign-templates/index.js)_ +_See code: [src/commands/sign-templates/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/sign-templates/index.js)_ ## `box sign-templates:get ID` @@ -77,4 +77,4 @@ EXAMPLES $ box sign-templates:get 12345 ``` -_See code: [src/commands/sign-templates/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/sign-templates/get.js)_ +_See code: [src/commands/sign-templates/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/sign-templates/get.js)_ diff --git a/docs/storage-policies.md b/docs/storage-policies.md index 6a7b1c4d..79b45f8f 100644 --- a/docs/storage-policies.md +++ b/docs/storage-policies.md @@ -49,7 +49,7 @@ EXAMPLES $ box storage-policies ``` -_See code: [src/commands/storage-policies/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/storage-policies/index.js)_ +_See code: [src/commands/storage-policies/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/storage-policies/index.js)_ ## `box storage-policies:assign STORAGEPOLICYID USERID` @@ -86,7 +86,7 @@ EXAMPLES $ box storage-policies:assign 12345 33333 ``` -_See code: [src/commands/storage-policies/assign.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/storage-policies/assign.js)_ +_See code: [src/commands/storage-policies/assign.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/storage-policies/assign.js)_ ## `box storage-policies:assignments:get ID` @@ -122,7 +122,7 @@ EXAMPLES $ box storage-policies:assignments:get 12345 ``` -_See code: [src/commands/storage-policies/assignments/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/storage-policies/assignments/get.js)_ +_See code: [src/commands/storage-policies/assignments/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/storage-policies/assignments/get.js)_ ## `box storage-policies:assignments:lookup ID` @@ -160,7 +160,7 @@ EXAMPLES $ box storage-policies:assignments:lookup 33333 ``` -_See code: [src/commands/storage-policies/assignments/lookup.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/storage-policies/assignments/lookup.js)_ +_See code: [src/commands/storage-policies/assignments/lookup.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/storage-policies/assignments/lookup.js)_ ## `box storage-policies:assignments:remove ID` @@ -196,7 +196,7 @@ EXAMPLES $ box storage-policies:assignments:remove 12345 ``` -_See code: [src/commands/storage-policies/assignments/remove.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/storage-policies/assignments/remove.js)_ +_See code: [src/commands/storage-policies/assignments/remove.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/storage-policies/assignments/remove.js)_ ## `box storage-policies:get ID` @@ -232,7 +232,7 @@ EXAMPLES $ box storage-policies:get 12345 ``` -_See code: [src/commands/storage-policies/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/storage-policies/get.js)_ +_See code: [src/commands/storage-policies/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/storage-policies/get.js)_ ## `box storage-policies:list` diff --git a/docs/tasks.md b/docs/tasks.md index 69ca33d9..3d46c70a 100644 --- a/docs/tasks.md +++ b/docs/tasks.md @@ -53,7 +53,7 @@ EXAMPLES $ box tasks:assign 88888 --assign-to-user-id 33333 ``` -_See code: [src/commands/tasks/assign.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tasks/assign.js)_ +_See code: [src/commands/tasks/assign.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tasks/assign.js)_ ## `box tasks:assignments ID` @@ -92,7 +92,7 @@ EXAMPLES $ box tasks:assignments 88888 ``` -_See code: [src/commands/tasks/assignments/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tasks/assignments/index.js)_ +_See code: [src/commands/tasks/assignments/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tasks/assignments/index.js)_ ## `box tasks:assignments:delete ID` @@ -131,7 +131,7 @@ EXAMPLES $ box tasks:assignments:delete 12345 ``` -_See code: [src/commands/tasks/assignments/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tasks/assignments/delete.js)_ +_See code: [src/commands/tasks/assignments/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tasks/assignments/delete.js)_ ## `box tasks:assignments:get ID` @@ -170,7 +170,7 @@ EXAMPLES $ box tasks:assignments:get 12345 ``` -_See code: [src/commands/tasks/assignments/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tasks/assignments/get.js)_ +_See code: [src/commands/tasks/assignments/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tasks/assignments/get.js)_ ## `box tasks:assignments:update ID` @@ -213,7 +213,7 @@ EXAMPLES $ box tasks:assignments:update 12345 --status approved ``` -_See code: [src/commands/tasks/assignments/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tasks/assignments/update.js)_ +_See code: [src/commands/tasks/assignments/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tasks/assignments/update.js)_ ## `box tasks:create FILEID` @@ -255,7 +255,7 @@ EXAMPLES $ box tasks:create 11111 --message "Please proofread this document" ``` -_See code: [src/commands/tasks/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tasks/create.js)_ +_See code: [src/commands/tasks/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tasks/create.js)_ ## `box tasks:delete ID` @@ -291,7 +291,7 @@ EXAMPLES $ box tasks:delete 88888 ``` -_See code: [src/commands/tasks/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tasks/delete.js)_ +_See code: [src/commands/tasks/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tasks/delete.js)_ ## `box tasks:get ID` @@ -327,7 +327,7 @@ EXAMPLES $ box tasks:get 88888 ``` -_See code: [src/commands/tasks/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tasks/get.js)_ +_See code: [src/commands/tasks/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tasks/get.js)_ ## `box tasks:update ID` @@ -368,4 +368,4 @@ EXAMPLES $ box tasks:update 88888 --due-at 1w ``` -_See code: [src/commands/tasks/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tasks/update.js)_ +_See code: [src/commands/tasks/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tasks/update.js)_ diff --git a/docs/terms-of-service.md b/docs/terms-of-service.md index 0ff7930b..db9cec52 100644 --- a/docs/terms-of-service.md +++ b/docs/terms-of-service.md @@ -43,7 +43,7 @@ EXAMPLES $ box terms-of-service ``` -_See code: [src/commands/terms-of-service/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/terms-of-service/index.js)_ +_See code: [src/commands/terms-of-service/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/terms-of-service/index.js)_ ## `box terms-of-service:create` @@ -82,7 +82,7 @@ EXAMPLES $ box terms-of-service:create --type external --status enabled --text "By using this service, you agree to...." ``` -_See code: [src/commands/terms-of-service/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/terms-of-service/create.js)_ +_See code: [src/commands/terms-of-service/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/terms-of-service/create.js)_ ## `box terms-of-service:get ID` @@ -118,7 +118,7 @@ EXAMPLES $ box terms-of-service:get 55555 ``` -_See code: [src/commands/terms-of-service/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/terms-of-service/get.js)_ +_See code: [src/commands/terms-of-service/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/terms-of-service/get.js)_ ## `box terms-of-service:get-user-status TOSID` @@ -155,7 +155,7 @@ EXAMPLES $ box terms-of-service:get-user-status 55555 ``` -_See code: [src/commands/terms-of-service/get-user-status.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/terms-of-service/get-user-status.js)_ +_See code: [src/commands/terms-of-service/get-user-status.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/terms-of-service/get-user-status.js)_ ## `box terms-of-service:set-user-status ID` @@ -194,7 +194,7 @@ EXAMPLES $ box terms-of-service:set-user-status 55555 --accept ``` -_See code: [src/commands/terms-of-service/set-user-status.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/terms-of-service/set-user-status.js)_ +_See code: [src/commands/terms-of-service/set-user-status.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/terms-of-service/set-user-status.js)_ ## `box terms-of-service:update ID` @@ -234,4 +234,4 @@ EXAMPLES $ box terms-of-service:update 55555 --status disabled ``` -_See code: [src/commands/terms-of-service/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/terms-of-service/update.js)_ +_See code: [src/commands/terms-of-service/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/terms-of-service/update.js)_ diff --git a/docs/tokens.md b/docs/tokens.md index 179ed30d..90885d98 100644 --- a/docs/tokens.md +++ b/docs/tokens.md @@ -33,7 +33,7 @@ DESCRIPTION Get a token. Returns the service account token by default ``` -_See code: [src/commands/tokens/exchange.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tokens/exchange.js)_ +_See code: [src/commands/tokens/exchange.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tokens/exchange.js)_ ## `box tokens:get` @@ -54,7 +54,7 @@ DESCRIPTION Get a token. Returns the service account token by default ``` -_See code: [src/commands/tokens/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tokens/get.js)_ +_See code: [src/commands/tokens/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tokens/get.js)_ ## `box tokens:revoke TOKEN` @@ -77,4 +77,4 @@ DESCRIPTION Revoke a token. The token will no longer be valid for making API calls. ``` -_See code: [src/commands/tokens/revoke.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/tokens/revoke.js)_ +_See code: [src/commands/tokens/revoke.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/tokens/revoke.js)_ diff --git a/docs/trash.md b/docs/trash.md index 08e3798b..d5a28b39 100644 --- a/docs/trash.md +++ b/docs/trash.md @@ -47,7 +47,7 @@ EXAMPLES $ box trash ``` -_See code: [src/commands/trash/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/trash/index.js)_ +_See code: [src/commands/trash/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/trash/index.js)_ ## `box trash:delete TYPE ID` @@ -84,7 +84,7 @@ EXAMPLES $ box trash:delete folder 22222 ``` -_See code: [src/commands/trash/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/trash/delete.js)_ +_See code: [src/commands/trash/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/trash/delete.js)_ ## `box trash:get TYPE ID` @@ -121,7 +121,7 @@ EXAMPLES $ box trash:get folder 22222 ``` -_See code: [src/commands/trash/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/trash/get.js)_ +_See code: [src/commands/trash/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/trash/get.js)_ ## `box trash:list` @@ -199,4 +199,4 @@ EXAMPLES $ box trash:restore folder 22222 ``` -_See code: [src/commands/trash/restore.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/trash/restore.js)_ +_See code: [src/commands/trash/restore.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/trash/restore.js)_ diff --git a/docs/users.md b/docs/users.md index 8c4f378d..983500c4 100644 --- a/docs/users.md +++ b/docs/users.md @@ -68,7 +68,7 @@ EXAMPLES $ box users ``` -_See code: [src/commands/users/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/index.js)_ +_See code: [src/commands/users/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/index.js)_ ## `box users:add-email-alias USERID EMAIL` @@ -171,7 +171,7 @@ EXAMPLES $ box users:create "John Doe" jdoe@example.com ``` -_See code: [src/commands/users/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/create.js)_ +_See code: [src/commands/users/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/create.js)_ ## `box users:delete ID` @@ -209,7 +209,7 @@ EXAMPLES $ box users:delete 33333 ``` -_See code: [src/commands/users/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/delete.js)_ +_See code: [src/commands/users/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/delete.js)_ ## `box users:delete-email-alias USERID ALIASID` @@ -286,7 +286,7 @@ EXAMPLES $ box users:email-aliases 33333 ``` -_See code: [src/commands/users/email-aliases/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/email-aliases/index.js)_ +_See code: [src/commands/users/email-aliases/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/email-aliases/index.js)_ ## `box users:email-aliases:add USERID EMAIL` @@ -328,7 +328,7 @@ EXAMPLES $ box users:email-aliases:add 33333 user+alias@example.com ``` -_See code: [src/commands/users/email-aliases/add.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/email-aliases/add.js)_ +_See code: [src/commands/users/email-aliases/add.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/email-aliases/add.js)_ ## `box users:email-aliases:remove USERID ALIASID` @@ -368,7 +368,7 @@ EXAMPLES $ box users:email-aliases:remove 33333 12345 ``` -_See code: [src/commands/users/email-aliases/remove.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/email-aliases/remove.js)_ +_See code: [src/commands/users/email-aliases/remove.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/email-aliases/remove.js)_ ## `box users:get [ID]` @@ -404,7 +404,7 @@ EXAMPLES $ box users:get 33333 ``` -_See code: [src/commands/users/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/get.js)_ +_See code: [src/commands/users/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/get.js)_ ## `box users:get-email-aliases USERID` @@ -484,7 +484,7 @@ EXAMPLES $ box users:groups 33333 ``` -_See code: [src/commands/users/groups.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/groups.js)_ +_See code: [src/commands/users/groups.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/groups.js)_ ## `box users:invite EMAIL ENTERPRISEID` @@ -524,7 +524,7 @@ EXAMPLES $ box users:invite user@example.com 12345 ``` -_See code: [src/commands/users/invite.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/invite.js)_ +_See code: [src/commands/users/invite.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/invite.js)_ ## `box users:invite-user EMAIL ENTERPRISEID` @@ -725,7 +725,7 @@ EXAMPLES $ box users:search "John Doe" ``` -_See code: [src/commands/users/search.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/search.js)_ +_See code: [src/commands/users/search.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/search.js)_ ## `box users:terminate-session` @@ -764,7 +764,7 @@ EXAMPLES $ box users:terminate-session --user-ids 123 345 --user-logins abc@example.com def@example.com ``` -_See code: [src/commands/users/terminate-session.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/terminate-session.js)_ +_See code: [src/commands/users/terminate-session.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/terminate-session.js)_ ## `box users:transfer-content USERID NEWUSERID` @@ -805,7 +805,7 @@ EXAMPLES $ box users:transfer-content 33333 44444 ``` -_See code: [src/commands/users/transfer-content.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/transfer-content.js)_ +_See code: [src/commands/users/transfer-content.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/transfer-content.js)_ ## `box users:update ID` @@ -869,4 +869,4 @@ EXAMPLES $ box users:update 33333 --status inactive ``` -_See code: [src/commands/users/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/users/update.js)_ +_See code: [src/commands/users/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/users/update.js)_ diff --git a/docs/watermarking.md b/docs/watermarking.md index 7dca2a71..0bc6b8f4 100644 --- a/docs/watermarking.md +++ b/docs/watermarking.md @@ -42,7 +42,7 @@ EXAMPLES $ box watermarking:apply folder 22222 ``` -_See code: [src/commands/watermarking/apply.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/watermarking/apply.js)_ +_See code: [src/commands/watermarking/apply.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/watermarking/apply.js)_ ## `box watermarking:get ITEMTYPE ITEMID` @@ -79,7 +79,7 @@ EXAMPLES $ box watermarking:get folder 22222 ``` -_See code: [src/commands/watermarking/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/watermarking/get.js)_ +_See code: [src/commands/watermarking/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/watermarking/get.js)_ ## `box watermarking:remove ITEMTYPE ITEMID` @@ -116,4 +116,4 @@ EXAMPLES $ box watermarking:remove folder 22222 ``` -_See code: [src/commands/watermarking/remove.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/watermarking/remove.js)_ +_See code: [src/commands/watermarking/remove.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/watermarking/remove.js)_ diff --git a/docs/web-links.md b/docs/web-links.md index c35bc76f..67211d31 100644 --- a/docs/web-links.md +++ b/docs/web-links.md @@ -47,7 +47,7 @@ EXAMPLES $ box web-links:create http://example.com --parent-id 0 ``` -_See code: [src/commands/web-links/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/web-links/create.js)_ +_See code: [src/commands/web-links/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/web-links/create.js)_ ## `box web-links:delete ID` @@ -83,7 +83,7 @@ EXAMPLES $ box web-links:delete 12345 ``` -_See code: [src/commands/web-links/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/web-links/delete.js)_ +_See code: [src/commands/web-links/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/web-links/delete.js)_ ## `box web-links:get ID` @@ -119,7 +119,7 @@ EXAMPLES $ box web-links:get 12345 ``` -_See code: [src/commands/web-links/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/web-links/get.js)_ +_See code: [src/commands/web-links/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/web-links/get.js)_ ## `box web-links:move ID PARENTID` @@ -156,7 +156,7 @@ EXAMPLES $ box web-links:move 12345 22222 ``` -_See code: [src/commands/web-links/move.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/web-links/move.js)_ +_See code: [src/commands/web-links/move.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/web-links/move.js)_ ## `box web-links:update ID` @@ -195,4 +195,4 @@ EXAMPLES $ box web-links:update 12345 --name "Example Site" ``` -_See code: [src/commands/web-links/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/web-links/update.js)_ +_See code: [src/commands/web-links/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/web-links/update.js)_ diff --git a/docs/webhooks.md b/docs/webhooks.md index 28c87eb2..6c1ec1fd 100644 --- a/docs/webhooks.md +++ b/docs/webhooks.md @@ -48,7 +48,7 @@ EXAMPLES $ box webhooks ``` -_See code: [src/commands/webhooks/index.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/webhooks/index.js)_ +_See code: [src/commands/webhooks/index.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/webhooks/index.js)_ ## `box webhooks:create TARGETTYPE TARGETID` @@ -90,7 +90,7 @@ EXAMPLES $ box webhooks:create folder 22222 --triggers FILE.DELETED --address https://example.com/webhook/deletion ``` -_See code: [src/commands/webhooks/create.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/webhooks/create.js)_ +_See code: [src/commands/webhooks/create.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/webhooks/create.js)_ ## `box webhooks:delete ID` @@ -126,7 +126,7 @@ EXAMPLES $ box webhooks:delete 12345 ``` -_See code: [src/commands/webhooks/delete.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/webhooks/delete.js)_ +_See code: [src/commands/webhooks/delete.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/webhooks/delete.js)_ ## `box webhooks:get ID` @@ -162,7 +162,7 @@ EXAMPLES $ box webhooks:get 12345 ``` -_See code: [src/commands/webhooks/get.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/webhooks/get.js)_ +_See code: [src/commands/webhooks/get.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/webhooks/get.js)_ ## `box webhooks:list` @@ -239,4 +239,4 @@ EXAMPLES $ box webhooks:update 12345 --triggers FILE.DELETED,FOLDER.DELETED ``` -_See code: [src/commands/webhooks/update.js](https://github.com/box/boxcli/blob/v4.0.1/src/commands/webhooks/update.js)_ +_See code: [src/commands/webhooks/update.js](https://github.com/box/boxcli/blob/v4.1.0/src/commands/webhooks/update.js)_ diff --git a/package-lock.json b/package-lock.json index 18f7ae43..8534dd65 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@box/cli", - "version": "4.0.1", + "version": "4.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@box/cli", - "version": "4.0.1", + "version": "4.1.0", "license": "Apache-2.0", "dependencies": { "@discoveryjs/json-ext": "^0.5.7", diff --git a/package.json b/package.json index 89ee0489..aaedef0a 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "upload", "download" ], - "version": "4.0.1", + "version": "4.1.0", "author": "Box ", "license": "Apache-2.0", "main": "src/index.js",