@useparagon/connect 2.2.8-experimental.3 → 2.2.8
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 +18 -2
- package/dist/src/ConnectSDK.js +1 -1
- package/dist/src/entities/connectCredential.interface.d.ts +7 -0
- package/dist/src/index.js +1 -1
- package/dist/src/types/connect.d.ts +12 -1
- package/dist/src/types/sdk.d.ts +23 -3
- package/dist/src/utils/generic.d.ts +6 -0
- package/package.json +1 -1
|
@@ -32,6 +32,13 @@ export interface IConnectCredential {
|
|
|
32
32
|
* accountAuth contains the decrypted oauth access token. This property will only be available for some of integrations
|
|
33
33
|
*/
|
|
34
34
|
accountAuth?: Record<string, string>;
|
|
35
|
+
/**
|
|
36
|
+
* A customer-supplied external identifier for this credential, set at install time
|
|
37
|
+
* via `InstallOptions.externalId`. Distinct from `IConnectCredentialConfig.externalId`,
|
|
38
|
+
* which identifies a credential config.
|
|
39
|
+
* Accessible via `paragon.getUser().integrations[x].allCredentials[i].externalId`.
|
|
40
|
+
*/
|
|
41
|
+
externalId?: string;
|
|
35
42
|
}
|
|
36
43
|
export type ConnectCredentialProviderData = Record<string, string | number | boolean>;
|
|
37
44
|
export declare enum CredentialStatus {
|