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

@uppy/google-drive

Package Overview
Dependencies
Maintainers
5
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uppy/google-drive - npm Package Compare versions

Comparing version 0.29.0 to 0.29.1

13

package.json
{
"name": "@uppy/google-drive",
"description": "The Google Drive plugin for Uppy lets users import files from their Google Drive account",
"version": "0.29.0",
"version": "0.29.1",
"license": "MIT",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"types": "types/index.d.ts",

@@ -25,9 +24,9 @@ "keywords": [

"dependencies": {
"@uppy/companion-client": "0.27.2",
"@uppy/provider-views": "0.29.0",
"@uppy/utils": "0.29.0",
"@uppy/companion-client": "0.27.3",
"@uppy/provider-views": "0.29.1",
"@uppy/utils": "0.29.1",
"preact": "^8.2.9"
},
"devDependencies": {
"@uppy/core": "0.29.0"
"@uppy/core": "0.29.1"
},

@@ -37,3 +36,3 @@ "peerDependencies": {

},
"gitHead": "c68f2c7e68d2c12f8a8fb7119f1dae4ca08e4174"
"gitHead": "3ddf4c7548766a0c522b9a45c03b1fd7d4e03d43"
}

@@ -1,17 +0,21 @@

import { Plugin, PluginOptions, Uppy } from '@uppy/core';
import { ProviderOptions } from '@uppy/companion-client';
import Uppy = require('@uppy/core');
import CompanionClient = require('@uppy/companion-client');
export interface GoogleDriveOptions extends PluginOptions, ProviderOptions {
serverUrl: string;
serverPattern: string | RegExp | Array<string | RegExp>;
declare module GoogleDrive {
interface GoogleDriveOptions extends Uppy.PluginOptions, CompanionClient.ProviderOptions {
serverUrl: string;
serverPattern: string | RegExp | Array<string | RegExp>;
}
}
export default class GoogleDrive extends Plugin {
constructor(uppy: Uppy, opts: Partial<GoogleDriveOptions>);
declare class GoogleDrive extends Uppy.Plugin {
constructor(uppy: Uppy.Uppy, opts: Partial<GoogleDrive.GoogleDriveOptions>);
}
export = GoogleDrive;
declare module '@uppy/core' {
export interface Uppy {
use(pluginClass: typeof GoogleDrive, opts: Partial<GoogleDriveOptions>): Uppy;
use(pluginClass: typeof GoogleDrive, opts: Partial<GoogleDrive.GoogleDriveOptions>): Uppy.Uppy;
}
}
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