@useparagon/connect 2.2.7-experimental-18875.2 → 2.2.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.
@@ -175,9 +175,6 @@ export default class ConnectSDK extends SDKEventEmitter implements IConnectSDK {
175
175
  }): Promise<IntegrationInstallEvent | undefined>;
176
176
  _oauthErrorCallback(errorMessage: string | object, event?: MessageEvent): Promise<void>;
177
177
  customDropdownOptionsLoaders: Record<string, (cursor?: string | undefined, search?: string | undefined) => LoadCustomDropdownOptionsResult>;
178
- /**
179
- * Display the Paragon Connect modal
180
- */
181
178
  _loadCustomDropdownOptions(key: string, cursor?: string | undefined, search?: string | undefined): LoadCustomDropdownOptionsResult;
182
179
  /**
183
180
  * Send a Connect API request. Automatically handles authorization and errors.
@@ -344,7 +341,7 @@ export default class ConnectSDK extends SDKEventEmitter implements IConnectSDK {
344
341
  * @param userSettingsUpdate - A partial map of input IDs <> values to update the workflow's settings
345
342
  * @param settings - Optional object with selectedCredentialId or selectedConfigurationId
346
343
  * @returns Promise with the new user state and an array of errors, if any were found
347
- * @throws Error if the workflow is not enabled or if the integration is not found
344
+ * @throws Error if the workflow ID is not found in the configuration
348
345
  */
349
346
  updateWorkflowUserSettings(integration: string, workflowId: string, userSettingsUpdate: Record<string, any>, settings?: CredentialConfigOptions): Promise<{
350
347
  userState: AuthenticatedConnectUser;