Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

@uppy/transloadit

Package Overview
Dependencies
Maintainers
5
Versions
137
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uppy/transloadit - npm Package Compare versions

Comparing version 0.30.3 to 0.30.4

14

package.json
{
"name": "@uppy/transloadit",
"description": "The Transloadit plugin can be used to upload files to Transloadit for all kinds of processing, such as transcoding video, resizing images, zipping/unzipping, and more",
"version": "0.30.3",
"version": "0.30.4",
"license": "MIT",

@@ -30,6 +30,6 @@ "main": "lib/index.js",

"dependencies": {
"@uppy/companion-client": "0.28.3",
"@uppy/provider-views": "0.30.3",
"@uppy/tus": "0.30.3",
"@uppy/utils": "0.30.3",
"@uppy/companion-client": "0.28.4",
"@uppy/provider-views": "0.30.4",
"@uppy/tus": "0.30.4",
"@uppy/utils": "0.30.4",
"component-emitter": "^1.2.1",

@@ -39,3 +39,3 @@ "socket.io-client": "^2.1.1"

"devDependencies": {
"@uppy/core": "0.30.3"
"@uppy/core": "0.30.4"
},

@@ -45,3 +45,3 @@ "peerDependencies": {

},
"gitHead": "27899d944f0ffb551d0473955236734c24eb4fff"
"gitHead": "7ae8af44abdd42eef71c46b831b2e3dadb00237f"
}

@@ -1,9 +0,9 @@

import Uppy, { UppyFile } from '@uppy/core';
import Transloadit from '../';
import Uppy = require('@uppy/core')
import Transloadit = require('../')
{
const uppy = Uppy();
const uppy = Uppy()
uppy.use(Transloadit, {
getAssemblyOptions(file) {
file // $ExpectType UppyFile
file // $ExpectType Uppy.UppyFile
},

@@ -17,19 +17,19 @@ waitForEncoding: false,

}
});
})
}
{
const uppy = Uppy();
const uppy = Uppy()
// $ExpectError
uppy.use(Transloadit, { waitForEncoding: null });
uppy.use(Transloadit, { waitForEncoding: null })
// $ExpectError
uppy.use(Transloadit, { waitForMetadata: null });
uppy.use(Transloadit, { waitForMetadata: null })
}
{
const uppy = Uppy();
const uppy = Uppy()
// $ExpectError
uppy.use(Transloadit, { params: {} });
uppy.use(Transloadit, { params: {} })
// $ExpectError
uppy.use(Transloadit, { params: { auth: {} } });
uppy.use(Transloadit, { params: { auth: {} } })
// $ExpectError

@@ -40,3 +40,3 @@ uppy.use(Transloadit, {

}
});
})
// $ExpectError

@@ -48,3 +48,3 @@ uppy.use(Transloadit, {

}
});
})
uppy.use(Transloadit, {

@@ -55,3 +55,3 @@ params: {

}
});
})
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc