@useparagon/connect 2.2.3-experimental.2 → 2.2.4-experimental-15311.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.d.ts +11 -3
- package/dist/src/ConnectSDK.js +1 -1
- package/dist/src/entities/integration.interface.d.ts +4 -0
- package/dist/src/file-picker/integrations/googledrive.d.ts +4 -0
- package/dist/src/index.js +1 -1
- package/dist/src/types/connect.d.ts +8 -2
- package/dist/src/types/sdk.d.ts +20 -3
- package/package.json +1 -1
|
@@ -18,6 +18,8 @@ export type IConnectIntegration = {
|
|
|
18
18
|
};
|
|
19
19
|
export interface IConnectIntegrationWithCredentialInfo extends IConnectIntegration {
|
|
20
20
|
hasCredential: boolean;
|
|
21
|
+
connectedUserLimitOnDevCred: number;
|
|
22
|
+
connectedUserLimitReached: boolean;
|
|
21
23
|
}
|
|
22
24
|
export interface IntegrationMetadata {
|
|
23
25
|
type: string;
|
|
@@ -29,6 +31,8 @@ export declare function getIntegrationTypeName(integration: IConnectIntegration)
|
|
|
29
31
|
export declare function isCustomIntegrationTypeName(type: string): boolean;
|
|
30
32
|
export interface IConnectIntegrationWithCredentialInfo extends IConnectIntegration {
|
|
31
33
|
hasCredential: boolean;
|
|
34
|
+
connectedUserLimitOnDevCred: number;
|
|
35
|
+
connectedUserLimitReached: boolean;
|
|
32
36
|
needPreOauthInputs: boolean;
|
|
33
37
|
name: string;
|
|
34
38
|
brandColor: string;
|
|
@@ -17,6 +17,10 @@ export declare class GoogleDriveFilePicker extends BaseFilePicker {
|
|
|
17
17
|
* triggers when gapi.load('picker') loads picker successfully
|
|
18
18
|
* */
|
|
19
19
|
private onPickerLoaded;
|
|
20
|
+
/**
|
|
21
|
+
* Creates a DocsView with the common options applied
|
|
22
|
+
*/
|
|
23
|
+
private createDocsView;
|
|
20
24
|
/**
|
|
21
25
|
* triggers when user interacts with google file picker modal
|
|
22
26
|
* */
|