@useparagon/connect 2.2.4-experimental-15312.4 → 2.2.4-experimental-17004.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
CHANGED
|
@@ -380,22 +380,22 @@ export default class ConnectSDK extends SDKEventEmitter implements IConnectSDK {
|
|
|
380
380
|
}>;
|
|
381
381
|
getDataSourceOptions(integrationName: string, action: string): Promise<import("./types").DataSource | undefined>;
|
|
382
382
|
private getCredentialPair;
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
selectedConfigurationId?: string;
|
|
386
|
-
}): void;
|
|
383
|
+
private validateAndFilterCustomDropdownOptions;
|
|
384
|
+
private setCustomDropdownOptions;
|
|
387
385
|
getCustomDropdownOptions(action: string, fieldKey?: string, options?: {
|
|
388
386
|
selectedCredentialId: string;
|
|
389
387
|
selectedConfigurationId?: string;
|
|
390
388
|
}): Record<string, CustomDropdownField[] | CustomDropdownOptions> | CustomDropdownField[] | CustomDropdownOptions;
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
selectedConfigurationId?: string;
|
|
394
|
-
}): void;
|
|
389
|
+
private validateAndFilterFieldMappingOptions;
|
|
390
|
+
private setFieldMappingOptions;
|
|
395
391
|
getFieldMappingOptions(action: string, mappingKey?: string, options?: {
|
|
396
392
|
selectedCredentialId: string;
|
|
397
393
|
selectedConfigurationId?: string;
|
|
398
394
|
}): Record<string, FieldMappingConfig> | FieldMappingConfig;
|
|
395
|
+
setDataSources(action: string, dropdowns?: Record<string, CustomDropdownField[] | CustomDropdownOptions>, fieldMappings?: Record<string, FieldMappingConfig>, options?: {
|
|
396
|
+
selectedCredentialId: string;
|
|
397
|
+
selectedConfigurationId?: string;
|
|
398
|
+
}): void;
|
|
399
399
|
getAccountTypeOptions(integrationName: string): import("./types").AccountType[];
|
|
400
400
|
getPreOptions(integrationName: string, accountTypeId?: string): IntegrationConnectInput[];
|
|
401
401
|
getPostOptions(integrationName: string): IntegrationConnectInput[];
|