@useparagon/connect 2.0.6-experimental.4 → 2.0.6
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
CHANGED
|
@@ -6,7 +6,7 @@ import { PersonaMeta } from './entities/persona.interface';
|
|
|
6
6
|
import { ExternalFilePicker } from './file-picker/types';
|
|
7
7
|
import SDKEventEmitter from './SDKEventEmitter';
|
|
8
8
|
import { ConnectSdkEnvironments } from './server.types';
|
|
9
|
-
import { AccountType, AuthenticateOptions, AuthenticatedConnectUser, CompleteInstallOptions, ConnectInputValue, Props as ConnectModalProps, ConnectParams, ConnectUser, CreateConfigurationOptions, CredentialConfigOptions, DataType, DeleteConfigurationOptions, DisableWorkflowOptions, DynamicDefaultInput,
|
|
9
|
+
import { AccountType, AuthenticateOptions, AuthenticatedConnectUser, CompleteInstallOptions, ConnectInputValue, Props as ConnectModalProps, ConnectParams, ConnectUser, CreateConfigurationOptions, CredentialConfigOptions, DataType, DeleteConfigurationOptions, DisableWorkflowOptions, DynamicDefaultInput, EnumInputValue, EventInfo, GetIntegrationAccountOptions, IConnectSDK, InstallIntegrationOptions, InstallOptions, IntegrationConfig, IntegrationConnectInput, IntegrationInstallEvent, KeyedSource, LoadCustomDropdownOptionsResult, TriggerWorkflowRequest, UninstallOptions, UpdateConfigurationOptions, UpdateWorkflowStateResponse } from './types';
|
|
10
10
|
export declare const PARAGON_OVERFLOW_EMPTY_VALUE = "PARAGON_OVERFLOW_EMPTY_VALUE";
|
|
11
11
|
export { ExternalFilePicker };
|
|
12
12
|
export default class ConnectSDK extends SDKEventEmitter implements IConnectSDK {
|
|
@@ -46,10 +46,6 @@ export default class ConnectSDK extends SDKEventEmitter implements IConnectSDK {
|
|
|
46
46
|
* so that we will be able to know whether style is added in body or not
|
|
47
47
|
*/
|
|
48
48
|
private originalBodyOverflow;
|
|
49
|
-
/**
|
|
50
|
-
* Dynamic field mapping loaders for handling dynamic object types and integration fields
|
|
51
|
-
*/
|
|
52
|
-
private dynamicFieldMappingLoaders;
|
|
53
49
|
installFlow: InstallFlow;
|
|
54
50
|
constructor(environmentsOrHost?: ConnectSdkEnvironments | string, flags?: {
|
|
55
51
|
skipBootstrapWithLastKnownState?: boolean;
|
|
@@ -361,14 +357,6 @@ export default class ConnectSDK extends SDKEventEmitter implements IConnectSDK {
|
|
|
361
357
|
getAccountTypeOptions(integrationName: string): AccountType[];
|
|
362
358
|
getPreOptions(integrationName: string, accountTypeId?: string): IntegrationConnectInput[];
|
|
363
359
|
getPostOptions(integrationName: string): IntegrationConnectInput[];
|
|
364
|
-
/**
|
|
365
|
-
* Load dynamic field mapping options (object types or integration fields)
|
|
366
|
-
*/
|
|
367
|
-
_loadDynamicFieldMappingOptions(mappingKey: string, type: DynamicFieldMappingLoaderType, params?: {
|
|
368
|
-
objectType?: string;
|
|
369
|
-
cursor?: string;
|
|
370
|
-
search?: string;
|
|
371
|
-
}): Promise<DynamicFieldMappingOptionsResult>;
|
|
372
360
|
}
|
|
373
361
|
export declare class InstallFlow {
|
|
374
362
|
private readonly paragon;
|