@otr-app/shared-backend-generated-client 2.5.55 → 2.5.56

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.
@@ -12,6 +12,7 @@
12
12
 
13
13
 
14
14
  export interface UserHouseholdBeneficiaryModel {
15
+ emailAddress?: string;
15
16
  firstName?: string;
16
17
  joinDateUtc?: string;
17
18
  lastName?: string;
@@ -12,6 +12,7 @@
12
12
 
13
13
 
14
14
  export interface UserHouseholdBeneficiaryModelReq {
15
+ emailAddress?: string;
15
16
  firstName?: string;
16
17
  joinDateUtc?: string;
17
18
  lastName?: string;
@@ -12,6 +12,7 @@
12
12
 
13
13
 
14
14
  export interface UserHouseholdBeneficiaryModelRes {
15
+ emailAddress?: string;
15
16
  firstName?: string;
16
17
  joinDateUtc?: string;
17
18
  lastName?: string;
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  export interface UserHouseholdBeneficiaryModel {
13
+ "emailAddress"?: string;
13
14
  "firstName"?: string;
14
15
  "joinDateUtc"?: string;
15
16
  "lastName"?: string;
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  export interface UserHouseholdBeneficiaryModelReq {
13
+ "emailAddress"?: string;
13
14
  "firstName"?: string;
14
15
  "joinDateUtc"?: string;
15
16
  "lastName"?: string;
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  export interface UserHouseholdBeneficiaryModelRes {
13
+ "emailAddress"?: string;
13
14
  "firstName"?: string;
14
15
  "joinDateUtc"?: string;
15
16
  "lastName"?: string;
@@ -15,6 +15,12 @@
15
15
  * @interface UserHouseholdBeneficiaryModel
16
16
  */
17
17
  export interface UserHouseholdBeneficiaryModel {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UserHouseholdBeneficiaryModel
22
+ */
23
+ emailAddress?: string;
18
24
  /**
19
25
  *
20
26
  * @type {string}
@@ -20,6 +20,7 @@ export function UserHouseholdBeneficiaryModelFromJSONTyped(json, ignoreDiscrimin
20
20
  return json;
21
21
  }
22
22
  return {
23
+ 'emailAddress': !exists(json, 'emailAddress') ? undefined : json['emailAddress'],
23
24
  'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
24
25
  'joinDateUtc': !exists(json, 'joinDateUtc') ? undefined : (new Date(json['joinDateUtc'])),
25
26
  'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
@@ -36,6 +37,7 @@ export function UserHouseholdBeneficiaryModelToJSON(value) {
36
37
  return null;
37
38
  }
38
39
  return {
40
+ 'emailAddress': value.emailAddress,
39
41
  'firstName': value.firstName,
40
42
  'joinDateUtc': value.joinDateUtc === undefined ? undefined : (value.joinDateUtc.toISOString()),
41
43
  'lastName': value.lastName,
@@ -15,6 +15,12 @@
15
15
  * @interface UserHouseholdBeneficiaryModelReq
16
16
  */
17
17
  export interface UserHouseholdBeneficiaryModelReq {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UserHouseholdBeneficiaryModelReq
22
+ */
23
+ emailAddress?: string;
18
24
  /**
19
25
  *
20
26
  * @type {string}
@@ -20,6 +20,7 @@ export function UserHouseholdBeneficiaryModelReqFromJSONTyped(json, ignoreDiscri
20
20
  return json;
21
21
  }
22
22
  return {
23
+ 'emailAddress': !exists(json, 'emailAddress') ? undefined : json['emailAddress'],
23
24
  'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
24
25
  'joinDateUtc': !exists(json, 'joinDateUtc') ? undefined : (new Date(json['joinDateUtc'])),
25
26
  'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
@@ -36,6 +37,7 @@ export function UserHouseholdBeneficiaryModelReqToJSON(value) {
36
37
  return null;
37
38
  }
38
39
  return {
40
+ 'emailAddress': value.emailAddress,
39
41
  'firstName': value.firstName,
40
42
  'joinDateUtc': value.joinDateUtc === undefined ? undefined : (value.joinDateUtc.toISOString()),
41
43
  'lastName': value.lastName,
@@ -15,6 +15,12 @@
15
15
  * @interface UserHouseholdBeneficiaryModelRes
16
16
  */
17
17
  export interface UserHouseholdBeneficiaryModelRes {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UserHouseholdBeneficiaryModelRes
22
+ */
23
+ emailAddress?: string;
18
24
  /**
19
25
  *
20
26
  * @type {string}
@@ -20,6 +20,7 @@ export function UserHouseholdBeneficiaryModelResFromJSONTyped(json, ignoreDiscri
20
20
  return json;
21
21
  }
22
22
  return {
23
+ 'emailAddress': !exists(json, 'emailAddress') ? undefined : json['emailAddress'],
23
24
  'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
24
25
  'joinDateUtc': !exists(json, 'joinDateUtc') ? undefined : (new Date(json['joinDateUtc'])),
25
26
  'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
@@ -36,6 +37,7 @@ export function UserHouseholdBeneficiaryModelResToJSON(value) {
36
37
  return null;
37
38
  }
38
39
  return {
40
+ 'emailAddress': value.emailAddress,
39
41
  'firstName': value.firstName,
40
42
  'joinDateUtc': value.joinDateUtc === undefined ? undefined : (value.joinDateUtc.toISOString()),
41
43
  'lastName': value.lastName,
@@ -16028,6 +16028,7 @@ export interface components {
16028
16028
  };
16029
16029
  /** UserHouseholdBeneficiaryModel */
16030
16030
  UserHouseholdBeneficiaryModel: {
16031
+ emailAddress?: string;
16031
16032
  firstName?: string;
16032
16033
  /** Format: date-time */
16033
16034
  joinDateUtc?: string;
@@ -16040,6 +16041,7 @@ export interface components {
16040
16041
  };
16041
16042
  /** UserHouseholdBeneficiaryModelReq */
16042
16043
  UserHouseholdBeneficiaryModelReq: {
16044
+ emailAddress?: string;
16043
16045
  firstName?: string;
16044
16046
  /** Format: date-time */
16045
16047
  joinDateUtc?: string;
@@ -16052,6 +16054,7 @@ export interface components {
16052
16054
  };
16053
16055
  /** UserHouseholdBeneficiaryModelRes */
16054
16056
  UserHouseholdBeneficiaryModelRes: {
16057
+ emailAddress?: string;
16055
16058
  firstName?: string;
16056
16059
  /** Format: date-time */
16057
16060
  joinDateUtc?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.55",
3
+ "version": "2.5.56",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"