Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.1.4 Release #178

Merged
merged 12 commits into from
Jan 27, 2023
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