@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/types/sdk.d.ts
CHANGED
|
@@ -291,22 +291,18 @@ export interface IConnectSDK {
|
|
|
291
291
|
nextPageCursor: string | null;
|
|
292
292
|
}>;
|
|
293
293
|
getDataSourceOptions(integrationName: string, action: string): Promise<DataSource | undefined>;
|
|
294
|
-
setCustomDropdownOptions(action: string, dropdowns: Record<string, CustomDropdownField[] | CustomDropdownOptions>, options?: {
|
|
295
|
-
selectedCredentialId: string;
|
|
296
|
-
selectedConfigurationId?: string;
|
|
297
|
-
}): void;
|
|
298
294
|
getCustomDropdownOptions(action: string, fieldKey?: string, options?: {
|
|
299
295
|
selectedCredentialId: string;
|
|
300
296
|
selectedConfigurationId?: string;
|
|
301
297
|
}): Record<string, CustomDropdownField[] | CustomDropdownOptions> | CustomDropdownField[] | CustomDropdownOptions;
|
|
302
|
-
setFieldMappingOptions(action: string, fieldMappings: Record<string, FieldMappingConfig>, options?: {
|
|
303
|
-
selectedCredentialId: string;
|
|
304
|
-
selectedConfigurationId?: string;
|
|
305
|
-
}): void;
|
|
306
298
|
getFieldMappingOptions(action: string, mappingKey?: string, options?: {
|
|
307
299
|
selectedCredentialId: string;
|
|
308
300
|
selectedConfigurationId?: string;
|
|
309
301
|
}): Record<string, FieldMappingConfig> | FieldMappingConfig;
|
|
302
|
+
setDataSources(action: string, dropdowns?: Record<string, CustomDropdownField[] | CustomDropdownOptions>, fieldMappings?: Record<string, FieldMappingConfig>, options?: {
|
|
303
|
+
selectedCredentialId: string;
|
|
304
|
+
selectedConfigurationId?: string;
|
|
305
|
+
}): void;
|
|
310
306
|
installFlow: InstallFlow;
|
|
311
307
|
getAssetUrl(name: string): string;
|
|
312
308
|
}
|
package/package.json
CHANGED