@useparagon/connect 2.2.3-experimental.1 → 2.2.3-experimental.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.
@@ -18,8 +18,6 @@ export type IConnectIntegration = {
18
18
  };
19
19
  export interface IConnectIntegrationWithCredentialInfo extends IConnectIntegration {
20
20
  hasCredential: boolean;
21
- connectedUserLimitOnDevCred: number;
22
- connectedUserLimitReached: boolean;
23
21
  }
24
22
  export interface IntegrationMetadata {
25
23
  type: string;
@@ -31,8 +29,6 @@ export declare function getIntegrationTypeName(integration: IConnectIntegration)
31
29
  export declare function isCustomIntegrationTypeName(type: string): boolean;
32
30
  export interface IConnectIntegrationWithCredentialInfo extends IConnectIntegration {
33
31
  hasCredential: boolean;
34
- connectedUserLimitOnDevCred: number;
35
- connectedUserLimitReached: boolean;
36
32
  needPreOauthInputs: boolean;
37
33
  name: string;
38
34
  brandColor: string;
@@ -1,8 +1,6 @@
1
1
  import ConnectSDK from './ConnectSDK';
2
- import { InstallFlow } from './InstallFlow';
3
2
  import { ExternalFilePickerConstruct, IConnectSDK } from './types';
4
3
  export * from './types/index';
5
- export { InstallFlow };
6
4
  export declare const connectSingleton: ConnectSDK;
7
5
  export declare const paragon: IConnectSDK & {
8
6
  ExternalFilePicker: ExternalFilePickerConstruct;