@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.
- package/dist/angular/model/userHouseholdBeneficiaryModel.ts +1 -0
- package/dist/angular/model/userHouseholdBeneficiaryModelReq.ts +1 -0
- package/dist/angular/model/userHouseholdBeneficiaryModelRes.ts +1 -0
- package/dist/typescript/model/UserHouseholdBeneficiaryModel.d.ts +1 -0
- package/dist/typescript/model/UserHouseholdBeneficiaryModelReq.d.ts +1 -0
- package/dist/typescript/model/UserHouseholdBeneficiaryModelRes.d.ts +1 -0
- package/dist/typescript-fetch/models/UserHouseholdBeneficiaryModel.d.ts +6 -0
- package/dist/typescript-fetch/models/UserHouseholdBeneficiaryModel.js +2 -0
- package/dist/typescript-fetch/models/UserHouseholdBeneficiaryModelReq.d.ts +6 -0
- package/dist/typescript-fetch/models/UserHouseholdBeneficiaryModelReq.js +2 -0
- package/dist/typescript-fetch/models/UserHouseholdBeneficiaryModelRes.d.ts +6 -0
- package/dist/typescript-fetch/models/UserHouseholdBeneficiaryModelRes.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +3 -0
- package/package.json +1 -1
|
@@ -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;
|