@useparagon/connect 2.0.7-experimental.2 → 2.0.7
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/types/sdk.d.ts +2 -2
- package/package.json +1 -1
package/dist/src/types/sdk.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export type SDKFunctionErrorMessage = {
|
|
|
49
49
|
id: string;
|
|
50
50
|
};
|
|
51
51
|
export type SDKReceivedMessage = SDKFunctionInvocationMessage;
|
|
52
|
-
export type InstallIntegrationOptions = Partial<Omit<InstallOptions, 'isApiInstallation'> & Omit<CallbackMap, 'onOpen' | 'onClose'
|
|
52
|
+
export type InstallIntegrationOptions = Partial<Omit<InstallOptions, 'isApiInstallation'> & Omit<CallbackMap, 'onOpen' | 'onClose'> & UserProvidedIntegrationConfig>;
|
|
53
53
|
export type CompleteInstallOptions = {
|
|
54
54
|
authorizationCode: string;
|
|
55
55
|
showPortalAfterInstall?: boolean;
|
|
@@ -360,7 +360,7 @@ export type UserProvidedIntegrationConfig = {
|
|
|
360
360
|
* This will allow users to provide dynamic fields options for object mapping inputs
|
|
361
361
|
*/
|
|
362
362
|
mapObjectFields?: {
|
|
363
|
-
[objectName: string]: DynamicMappingField[] | DynamicMappingOptions;
|
|
363
|
+
[objectName: string]: DynamicMappingField[] | DynamicMappingOptions | DynamicFieldMappingConfig;
|
|
364
364
|
};
|
|
365
365
|
};
|
|
366
366
|
export type ConnectParams = CallbackMap & UserProvidedIntegrationConfig & InstallOptions & CredentialConfigOptions;
|