@useparagon/connect 2.3.2-experimental.20187.1 → 2.3.2-experimental.20500.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/dist/src/ConnectSDK.d.ts +1 -1
- package/dist/src/ConnectSDK.js +1 -1
- package/dist/src/bundledMode.d.ts +1 -0
- package/dist/src/file-picker/helpers/microsoftPicker.d.ts +2 -0
- package/dist/src/file-picker/vendor/box/runtime.d.ts +2 -0
- package/dist/src/file-picker/vendor/box/runtime.stub.d.ts +1 -0
- package/dist/src/file-picker/vendor/google/runtime.d.ts +2 -0
- package/dist/src/file-picker/vendor/google/runtime.stub.d.ts +1 -0
- package/dist/src/index.bundled.d.ts +5 -0
- package/dist/src/index.js +1 -1
- package/dist/src/report.bundled.html +39 -0
- package/dist/src/types/action.d.ts +1 -1
- package/dist/src/types/sdk.d.ts +4 -4
- package/dist/src/utils/connect.d.ts +11 -0
- package/dist/src/utils/generic.d.ts +0 -6
- package/dist/src/with-third-party-scripts.js +2 -0
- package/dist/src/with-third-party-scripts.js.LICENSE.txt +179 -0
- package/package.json +11 -9
- package/src/types/assets.d.ts +12 -0
- package/.eslintignore +0 -1
- package/dist/src/ConnectSDK.mjs +0 -2
- package/dist/src/ConnectSDK.mjs.LICENSE.txt +0 -44
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const isBundledBuild: () => boolean;
|
|
@@ -59,6 +59,7 @@ export declare abstract class MicrosoftPicker extends BaseFilePicker {
|
|
|
59
59
|
protected dependencyStatus: FilePickerStatus;
|
|
60
60
|
protected accessToken: string;
|
|
61
61
|
protected baseUrl: string;
|
|
62
|
+
protected selectedCredentialId?: string;
|
|
62
63
|
/**
|
|
63
64
|
* Abstract method to get the picker options.
|
|
64
65
|
* @returns {Partial<LaunchPickersOptions>} Picker options.
|
|
@@ -145,5 +146,6 @@ export declare abstract class MicrosoftPicker extends BaseFilePicker {
|
|
|
145
146
|
id: string;
|
|
146
147
|
items: Record<string, unknown>[];
|
|
147
148
|
}, pickerWindow: Window, port?: MessagePort): void;
|
|
149
|
+
private respondToAuthenticateCommand;
|
|
148
150
|
}
|
|
149
151
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ensureBundledBoxStyles: () => void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const installBundledGoogleScriptInterceptors: () => void;
|