Skip to content

Commit e96c9ba

Browse files
author
devexperience
committed
Generated version 1.3.0
This commit was automatically created by a GitHub Action to generate version 1.3.0 of this library.
1 parent b97639d commit e96c9ba

3 files changed

Lines changed: 45 additions & 13 deletions

File tree

api.ts

Lines changed: 43 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3618,25 +3618,31 @@ export interface MemberResponse {
36183618
* @type {string}
36193619
* @memberof MemberResponse
36203620
*/
3621-
'actionable_error'?: string | null;
3621+
'aggregated_at'?: string | null;
3622+
/**
3623+
*
3624+
* @type {boolean}
3625+
* @memberof MemberResponse
3626+
*/
3627+
'background_aggregation_is_disabled'?: boolean;
36223628
/**
36233629
*
36243630
* @type {string}
36253631
* @memberof MemberResponse
36263632
*/
3627-
'aggregated_at'?: string | null;
3633+
'connection_status'?: string | null;
36283634
/**
36293635
*
3630-
* @type {boolean}
3636+
* @type {string}
36313637
* @memberof MemberResponse
36323638
*/
3633-
'background_aggregation_is_disabled'?: boolean;
3639+
'connection_status_message'?: string | null;
36343640
/**
36353641
*
36363642
* @type {string}
36373643
* @memberof MemberResponse
36383644
*/
3639-
'connection_status'?: string | null;
3645+
'error'?: string | null;
36403646
/**
36413647
*
36423648
* @type {string}
@@ -3655,6 +3661,12 @@ export interface MemberResponse {
36553661
* @memberof MemberResponse
36563662
*/
36573663
'institution_code'?: string | null;
3664+
/**
3665+
*
3666+
* @type {string}
3667+
* @memberof MemberResponse
3668+
*/
3669+
'institution_guid'?: string;
36583670
/**
36593671
*
36603672
* @type {boolean}
@@ -3687,22 +3699,34 @@ export interface MemberResponse {
36873699
'metadata'?: string | null;
36883700
/**
36893701
*
3690-
* @type {string}
3702+
* @type {number}
36913703
* @memberof MemberResponse
36923704
*/
3693-
'most_recent_job_detail_code'?: string | null;
3705+
'most_recent_job_detail_code'?: number | null;
36943706
/**
36953707
*
3696-
* @type {string}
3708+
* @type {boolean}
3709+
* @memberof MemberResponse
3710+
*/
3711+
'most_recent_job_detail_text'?: boolean | null;
3712+
/**
3713+
*
3714+
* @type {boolean}
36973715
* @memberof MemberResponse
36983716
*/
3699-
'most_recent_job_detail_text'?: string | null;
3717+
'most_recent_job_guid'?: boolean | null;
37003718
/**
37013719
*
37023720
* @type {string}
37033721
* @memberof MemberResponse
37043722
*/
37053723
'name'?: string | null;
3724+
/**
3725+
*
3726+
* @type {boolean}
3727+
* @memberof MemberResponse
3728+
*/
3729+
'needs_updated_credentials'?: boolean | null;
37063730
/**
37073731
*
37083732
* @type {string}
@@ -3716,11 +3740,11 @@ export interface MemberResponse {
37163740
*/
37173741
'successfully_aggregated_at'?: string | null;
37183742
/**
3719-
*
3743+
* The use case associated with the member. Valid values are `PFM` and/or `MONEY_MOVEMENT`. Only set this if you\'ve met with MX and have opted in to using this field.
37203744
* @type {Array<string>}
37213745
* @memberof MemberResponse
37223746
*/
3723-
'use_cases'?: Array<string> | null;
3747+
'use_cases'?: Array<MemberResponseUseCasesEnum>;
37243748
/**
37253749
*
37263750
* @type {string}
@@ -3734,6 +3758,14 @@ export interface MemberResponse {
37343758
*/
37353759
'user_id'?: string | null;
37363760
}
3761+
3762+
export const MemberResponseUseCasesEnum = {
3763+
MoneyMovement: 'MONEY_MOVEMENT',
3764+
Pfm: 'PFM'
3765+
} as const;
3766+
3767+
export type MemberResponseUseCasesEnum = typeof MemberResponseUseCasesEnum[keyof typeof MemberResponseUseCasesEnum];
3768+
37373769
/**
37383770
*
37393771
* @export

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
22
npmName: mx-platform-node
3-
npmVersion: 1.2.0
3+
npmVersion: 1.3.0
44
supportsES6: true

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mx-platform-node",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "A Node library for the MX Platform API.",
55
"author": "MX",
66
"keywords": [

0 commit comments

Comments
 (0)