Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,7 @@
- Resolving issues from breaking changes in VS Code 1.62 (#162)
- Refactor RestFS to use Axios
- Bug fixes with jBASE syntax highlighting

### 2.1.4

- Blowing the dust off with some package updates
38 changes: 19 additions & 19 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mvbasic",
"displayName": "MV Basic",
"description": "MV Basic",
"version": "2.1.3",
"version": "2.1.4",
"publisher": "mvextensions",
"license": "MIT",
"icon": "../images/mvbasic-logo.png",
Expand Down Expand Up @@ -30,12 +30,12 @@
},
"dependencies": {
"axios": "^0.24.0",
"minimatch": "^3.0.4",
"minimatch": "^3.0.5",
"vscode-languageclient": "^7.0.0"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/vscode": "^1.52.0",
"vscode-test": "^1.4.1"
}
}
}
16 changes: 16 additions & 0 deletions doc/MV REST File System API.md
Original file line number Diff line number Diff line change
Expand Up @@ -1382,6 +1382,22 @@ curl --location --request POST 'http://localhost:3181/mvsvr/restfs/call/FTFSDBG'

ATTR_DATAONLY is not a true attribute. For MultiValue systems using the AccuTerm RestFS connector, it is used to limit the response from a 'dir' request to items in a data level file. Items in the account (MD or VOC) or a dictionary level file are skipped.

## **Error Codes**

Common error codes returned by the AccuTerm RestFS connector were inspired by D3 error message numbers. These codes typically are returned when the request status is one of the 4xx codes.

| Code | Description |
|------|-----------------------------------------|
| 200 | File name missing |
| 201 | Invalid file name |
| 202 | Item not found |
| 203 | Item ID missing |
| 223 | Item exists |
| 235 | Record is locked |
| 260 | Failed to lock record |
| 261 | Update failed |


## **Resources**

A Postman collection containing examples for each of the API functions:
Expand Down
Loading