@useparagon/connect 2.2.4-experimental-17218.1 → 2.2.4-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.
@@ -367,12 +367,13 @@ export default class ConnectSDK extends SDKEventEmitter implements IConnectSDK {
367
367
  * @param parameters - Optional array of parameters to be used in the request.
368
368
  * @returns A promise that resolves with the field options or logs an error if the request fails.
369
369
  */
370
- getFieldOptions({ integration, action, search, cursor, parameters, }: {
370
+ getFieldOptions({ integration, action, search, cursor, parameters, selectedCredentialId, }: {
371
371
  integration: string;
372
372
  action: string;
373
373
  search?: string;
374
374
  cursor?: string | number | false;
375
375
  parameters?: KeyedSource<DataType.ANY>[];
376
+ selectedCredentialId?: string;
376
377
  }): Promise<{
377
378
  data: EnumInputValue<any>[];
378
379
  nestedData: DynamicDefaultInput[];