We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de95f65 commit 48ecdc7Copy full SHA for 48ecdc7
src/lib/picker.ts
@@ -736,6 +736,11 @@ export interface PickerOptions {
736
* Enable/Disable possibility to multiple file upload
737
*/
738
multipleFileUpload?: boolean;
739
+ /**
740
+ * Set your own Google Drive Picker App ID. Defaults to Filestack's.
741
+ * This is your Project Number from the Google Cloud console.
742
+ */
743
+ googleDriveAppID?: string;
744
}
745
746
export interface PickerCropOptions {
src/schema/picker.schema.ts
@@ -473,5 +473,8 @@ export const PickerParamsSchema = {
473
multipleFileUpload: {
474
type: 'boolean',
475
},
476
+ googleDriveAppID: {
477
+ type: 'string',
478
+ },
479
480
};
0 commit comments