@unito/integrations-platform-client 1.1.1 → 1.1.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/api.d.ts CHANGED
@@ -552,6 +552,10 @@ export declare function getCredentials({ pagination, filters, }?: {
552
552
  unitoUserId?: string;
553
553
  /** The id of the credential account for which this credential belongs to. */
554
554
  credentialAccountId?: string;
555
+ /** The last access to the credential account occured before the provided date. */
556
+ lastCredentialAccountAccessAtBefore?: string;
557
+ /** The first failure to access the credential account occured after the provided date. */
558
+ firstFailedCredentialAccountAccessAtAfter?: string;
555
559
  };
556
560
  }, opts?: Oazapfts.RequestOpts): Promise<Oazapfts.WithHeaders<{
557
561
  status: 200;
@@ -726,7 +730,7 @@ export declare function getCredentialAccount(xUnitoCredentialId: string, { xUnit
726
730
  */
727
731
  export declare function postTrack(body: {
728
732
  jwtToken: string;
729
- event: 'AUTH_START' | 'AUTH_SUBMIT' | 'AUTH_ACTION' | 'AUTH_BLOCKED' | 'USER_SUCCEEDS_CONNECTION' | 'USER_FAILED_CONNECTION';
733
+ event: 'AUTH_START' | 'AUTH_SUBMIT' | 'AUTH_ACTION' | 'AUTH_BLOCKED' | 'USER_SUCCEEDS_CONNECTION' | 'USER_FAILED_CONNECTION' | 'AUTH_CHOOSE_CONNECTION_SUBMIT';
730
734
  payload?: {
731
735
  [key: string]: any;
732
736
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integrations-platform-client",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "The Unito Integrations Platform Client",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",