@useparagon/connect 2.4.3 → 2.4.4-experimental.22191.1
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.js +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/types/sdk.d.ts +6 -0
- package/package.json +1 -1
package/dist/src/types/sdk.d.ts
CHANGED
|
@@ -522,6 +522,12 @@ export type FilePickerInitOptions = {
|
|
|
522
522
|
appId?: string;
|
|
523
523
|
folderId?: string;
|
|
524
524
|
selectedCredentialId?: string;
|
|
525
|
+
/**
|
|
526
|
+
* Optional SharePoint site URL override (e.g. https://contoso.sharepoint.com/sites/MySite).
|
|
527
|
+
* When provided, takes precedence over the connected credential's providerData.webUrl.
|
|
528
|
+
* Useful when a single connected account has access to multiple SharePoint sites.
|
|
529
|
+
*/
|
|
530
|
+
siteUrl?: string;
|
|
525
531
|
};
|
|
526
532
|
export declare enum FilePickerStatus {
|
|
527
533
|
LOADING = "loading",
|