@useparagon/connect 2.2.5 → 2.2.6-experimental.1
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 +6 -2
- package/dist/src/ConnectSDK.js +1 -1
- package/dist/src/index.js +1 -1
- package/package.json +1 -1
package/dist/src/ConnectSDK.d.ts
CHANGED
|
@@ -251,8 +251,12 @@ export default class ConnectSDK extends SDKEventEmitter implements IConnectSDK {
|
|
|
251
251
|
private getIntegrationForWorkflow;
|
|
252
252
|
private updateLocalState;
|
|
253
253
|
/**
|
|
254
|
-
*
|
|
255
|
-
|
|
254
|
+
* Sends user metadata to the API via PATCH /sdk/me (request body supports non-ASCII).
|
|
255
|
+
*/
|
|
256
|
+
private patchUserMetadata;
|
|
257
|
+
/**
|
|
258
|
+
* Gets the user data from api `/sdk/me`.
|
|
259
|
+
* User metadata is set via PATCH after this succeeds when provided in authenticate (see updateLocalState).
|
|
256
260
|
*/
|
|
257
261
|
private fetchUserData;
|
|
258
262
|
/**
|