@useparagon/connect 2.2.0 → 2.2.1-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.
- package/dist/src/ConnectSDK.d.ts +7 -0
- package/dist/src/ConnectSDK.js +1 -1
- package/dist/src/entities/integration.interface.d.ts +2 -2
- package/dist/src/entities/workflow.interface.d.ts +4 -0
- package/dist/src/index.js +1 -1
- package/dist/src/types/connect.d.ts +1 -0
- package/dist/src/types/sdk.d.ts +7 -1
- package/package.json +1 -1
package/dist/src/ConnectSDK.d.ts
CHANGED
|
@@ -301,6 +301,13 @@ export default class ConnectSDK extends SDKEventEmitter implements IConnectSDK {
|
|
|
301
301
|
destroyConfiguration({ id, credentialId }: DeleteConfigurationOptions): Promise<void>;
|
|
302
302
|
updateConfiguration({ id, credentialId, meta, }: UpdateConfigurationOptions): Promise<IConnectCredentialConfig>;
|
|
303
303
|
private pollForCredential;
|
|
304
|
+
/**
|
|
305
|
+
* get custom webhook trigger url
|
|
306
|
+
* @param workflowId
|
|
307
|
+
* @param connectCredentialId
|
|
308
|
+
* @returns custom webhook trigger url for user level + manual
|
|
309
|
+
*/
|
|
310
|
+
getCustomWebhookUserManualUrl(workflowId: string, connectCredentialId?: string): Promise<string>;
|
|
304
311
|
/**
|
|
305
312
|
* Returns integration config
|
|
306
313
|
* @param integration
|