@unito/integrations-platform-client 0.47.0 → 0.48.0

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
@@ -308,6 +308,8 @@ export declare function getCredentials({ pagination, filters, }?: {
308
308
  authorizationId?: number;
309
309
  /** The integration id of the credential. */
310
310
  integrationId?: number;
311
+ /** List of credential ids. */
312
+ id?: number[];
311
313
  /** The scope of the credential. */
312
314
  credentialScope?: 'development' | 'compliance' | 'production' | 'service';
313
315
  /** The id of the Unito User for which this credential belongs to. */
@@ -356,7 +358,7 @@ export declare function deleteCredential(credentialId: number, opts?: Oazapfts.R
356
358
  */
357
359
  export declare function postTrack(body: {
358
360
  jwtToken: string;
359
- event: 'AUTH_START' | 'AUTH_SUBMIT';
361
+ event: 'AUTH_START' | 'AUTH_SUBMIT' | 'AUTH_ACTION' | 'AUTH_BLOCKED' | 'AUTH_CHOOSE_CONNECTION_START' | 'AUTH_CHOOSE_CONNECTION_SUBMIT';
360
362
  payload?: {
361
363
  [key: string]: any;
362
364
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integrations-platform-client",
3
- "version": "0.47.0",
3
+ "version": "0.48.0",
4
4
  "description": "The Unito Integrations Platform Client",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",