@bytescale/sdk 3.38.0 → 3.38.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -538,7 +538,7 @@ UrlBuilder.url({
|
|
|
538
538
|
|
|
539
539
|
#### Antivirus
|
|
540
540
|
|
|
541
|
-
To scan the file `
|
|
541
|
+
To scan the file `example.zip` for viruses:
|
|
542
542
|
|
|
543
543
|
```javascript
|
|
544
544
|
// Returns: "https://upcdn.io/1234abc/antivirus/example.zip"
|
|
@@ -546,8 +546,7 @@ UrlBuilder.url({
|
|
|
546
546
|
accountId: "1234abc",
|
|
547
547
|
filePath: "/example.zip",
|
|
548
548
|
options: {
|
|
549
|
-
transformation: "antivirus"
|
|
550
|
-
artifact: "/document.docx"
|
|
549
|
+
transformation: "antivirus"
|
|
551
550
|
}
|
|
552
551
|
});
|
|
553
552
|
```
|