@otr-app/shared-backend-generated-client 2.5.58 → 2.5.59
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/userDomain.ts +1 -0
- package/dist/angular/model/userDomainReq.ts +1 -0
- package/dist/angular/model/userDomainRes.ts +1 -0
- package/dist/typescript/model/UserDomain.d.ts +1 -0
- package/dist/typescript/model/UserDomainReq.d.ts +1 -0
- package/dist/typescript/model/UserDomainRes.d.ts +1 -0
- package/dist/typescript-fetch/models/UserDomain.d.ts +6 -0
- package/dist/typescript-fetch/models/UserDomain.js +2 -0
- package/dist/typescript-fetch/models/UserDomainReq.d.ts +6 -0
- package/dist/typescript-fetch/models/UserDomainReq.js +2 -0
- package/dist/typescript-fetch/models/UserDomainRes.d.ts +6 -0
- package/dist/typescript-fetch/models/UserDomainRes.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +3 -0
- package/package.json +1 -1
|
@@ -54,6 +54,7 @@ export interface UserDomain {
|
|
|
54
54
|
password?: string;
|
|
55
55
|
passwordEncrypted?: string;
|
|
56
56
|
phoneNumbers?: Set<PhoneNumberDomain>;
|
|
57
|
+
primaryHouseholdMate?: UserHouseholdBeneficiaryModel;
|
|
57
58
|
privacyMode?: UserDomain.PrivacyModeEnum;
|
|
58
59
|
profilePicture?: string;
|
|
59
60
|
race?: UserDomain.RaceEnum;
|
|
@@ -53,6 +53,7 @@ export interface UserDomainReq {
|
|
|
53
53
|
password?: string;
|
|
54
54
|
passwordEncrypted?: string;
|
|
55
55
|
phoneNumbers?: Set<PhoneNumberDomainReq>;
|
|
56
|
+
primaryHouseholdMate?: UserHouseholdBeneficiaryModelReq;
|
|
56
57
|
privacyMode?: UserDomainReq.PrivacyModeEnum;
|
|
57
58
|
profilePicture?: string;
|
|
58
59
|
race?: UserDomainReq.RaceEnum;
|
|
@@ -54,6 +54,7 @@ export interface UserDomainRes {
|
|
|
54
54
|
password?: string;
|
|
55
55
|
passwordEncrypted?: string;
|
|
56
56
|
phoneNumbers?: Set<PhoneNumberDomainRes>;
|
|
57
|
+
primaryHouseholdMate?: UserHouseholdBeneficiaryModelRes;
|
|
57
58
|
privacyMode?: UserDomainRes.PrivacyModeEnum;
|
|
58
59
|
profilePicture?: string;
|
|
59
60
|
race?: UserDomainRes.RaceEnum;
|
|
@@ -43,6 +43,7 @@ export interface UserDomain {
|
|
|
43
43
|
"password"?: string;
|
|
44
44
|
"passwordEncrypted"?: string;
|
|
45
45
|
"phoneNumbers"?: Array<models.PhoneNumberDomain>;
|
|
46
|
+
"primaryHouseholdMate"?: models.UserHouseholdBeneficiaryModel;
|
|
46
47
|
"privacyMode"?: UserDomain.PrivacyModeEnum;
|
|
47
48
|
"profilePicture"?: string;
|
|
48
49
|
"race"?: UserDomain.RaceEnum;
|
|
@@ -42,6 +42,7 @@ export interface UserDomainReq {
|
|
|
42
42
|
"password"?: string;
|
|
43
43
|
"passwordEncrypted"?: string;
|
|
44
44
|
"phoneNumbers"?: Array<models.PhoneNumberDomainReq>;
|
|
45
|
+
"primaryHouseholdMate"?: models.UserHouseholdBeneficiaryModelReq;
|
|
45
46
|
"privacyMode"?: UserDomainReq.PrivacyModeEnum;
|
|
46
47
|
"profilePicture"?: string;
|
|
47
48
|
"race"?: UserDomainReq.RaceEnum;
|
|
@@ -43,6 +43,7 @@ export interface UserDomainRes {
|
|
|
43
43
|
"password"?: string;
|
|
44
44
|
"passwordEncrypted"?: string;
|
|
45
45
|
"phoneNumbers"?: Array<models.PhoneNumberDomainRes>;
|
|
46
|
+
"primaryHouseholdMate"?: models.UserHouseholdBeneficiaryModelRes;
|
|
46
47
|
"privacyMode"?: UserDomainRes.PrivacyModeEnum;
|
|
47
48
|
"profilePicture"?: string;
|
|
48
49
|
"race"?: UserDomainRes.RaceEnum;
|
|
@@ -208,6 +208,12 @@ export interface UserDomain {
|
|
|
208
208
|
* @memberof UserDomain
|
|
209
209
|
*/
|
|
210
210
|
phoneNumbers?: Array<PhoneNumberDomain>;
|
|
211
|
+
/**
|
|
212
|
+
*
|
|
213
|
+
* @type {UserHouseholdBeneficiaryModel}
|
|
214
|
+
* @memberof UserDomain
|
|
215
|
+
*/
|
|
216
|
+
primaryHouseholdMate?: UserHouseholdBeneficiaryModel;
|
|
211
217
|
/**
|
|
212
218
|
*
|
|
213
219
|
* @type {string}
|
|
@@ -53,6 +53,7 @@ export function UserDomainFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
53
53
|
'password': !exists(json, 'password') ? undefined : json['password'],
|
|
54
54
|
'passwordEncrypted': !exists(json, 'passwordEncrypted') ? undefined : json['passwordEncrypted'],
|
|
55
55
|
'phoneNumbers': !exists(json, 'phoneNumbers') ? undefined : (json['phoneNumbers'].map(PhoneNumberDomainFromJSON)),
|
|
56
|
+
'primaryHouseholdMate': !exists(json, 'primaryHouseholdMate') ? undefined : UserHouseholdBeneficiaryModelFromJSON(json['primaryHouseholdMate']),
|
|
56
57
|
'privacyMode': !exists(json, 'privacyMode') ? undefined : json['privacyMode'],
|
|
57
58
|
'profilePicture': !exists(json, 'profilePicture') ? undefined : json['profilePicture'],
|
|
58
59
|
'race': !exists(json, 'race') ? undefined : json['race'],
|
|
@@ -113,6 +114,7 @@ export function UserDomainToJSON(value) {
|
|
|
113
114
|
'password': value.password,
|
|
114
115
|
'passwordEncrypted': value.passwordEncrypted,
|
|
115
116
|
'phoneNumbers': value.phoneNumbers === undefined ? undefined : (value.phoneNumbers.map(PhoneNumberDomainToJSON)),
|
|
117
|
+
'primaryHouseholdMate': UserHouseholdBeneficiaryModelToJSON(value.primaryHouseholdMate),
|
|
116
118
|
'privacyMode': value.privacyMode,
|
|
117
119
|
'profilePicture': value.profilePicture,
|
|
118
120
|
'race': value.race,
|
|
@@ -202,6 +202,12 @@ export interface UserDomainReq {
|
|
|
202
202
|
* @memberof UserDomainReq
|
|
203
203
|
*/
|
|
204
204
|
phoneNumbers?: Array<PhoneNumberDomainReq>;
|
|
205
|
+
/**
|
|
206
|
+
*
|
|
207
|
+
* @type {UserHouseholdBeneficiaryModelReq}
|
|
208
|
+
* @memberof UserDomainReq
|
|
209
|
+
*/
|
|
210
|
+
primaryHouseholdMate?: UserHouseholdBeneficiaryModelReq;
|
|
205
211
|
/**
|
|
206
212
|
*
|
|
207
213
|
* @type {string}
|
|
@@ -52,6 +52,7 @@ export function UserDomainReqFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
52
52
|
'password': !exists(json, 'password') ? undefined : json['password'],
|
|
53
53
|
'passwordEncrypted': !exists(json, 'passwordEncrypted') ? undefined : json['passwordEncrypted'],
|
|
54
54
|
'phoneNumbers': !exists(json, 'phoneNumbers') ? undefined : (json['phoneNumbers'].map(PhoneNumberDomainReqFromJSON)),
|
|
55
|
+
'primaryHouseholdMate': !exists(json, 'primaryHouseholdMate') ? undefined : UserHouseholdBeneficiaryModelReqFromJSON(json['primaryHouseholdMate']),
|
|
55
56
|
'privacyMode': !exists(json, 'privacyMode') ? undefined : json['privacyMode'],
|
|
56
57
|
'profilePicture': !exists(json, 'profilePicture') ? undefined : json['profilePicture'],
|
|
57
58
|
'race': !exists(json, 'race') ? undefined : json['race'],
|
|
@@ -111,6 +112,7 @@ export function UserDomainReqToJSON(value) {
|
|
|
111
112
|
'password': value.password,
|
|
112
113
|
'passwordEncrypted': value.passwordEncrypted,
|
|
113
114
|
'phoneNumbers': value.phoneNumbers === undefined ? undefined : (value.phoneNumbers.map(PhoneNumberDomainReqToJSON)),
|
|
115
|
+
'primaryHouseholdMate': UserHouseholdBeneficiaryModelReqToJSON(value.primaryHouseholdMate),
|
|
114
116
|
'privacyMode': value.privacyMode,
|
|
115
117
|
'profilePicture': value.profilePicture,
|
|
116
118
|
'race': value.race,
|
|
@@ -208,6 +208,12 @@ export interface UserDomainRes {
|
|
|
208
208
|
* @memberof UserDomainRes
|
|
209
209
|
*/
|
|
210
210
|
phoneNumbers?: Array<PhoneNumberDomainRes>;
|
|
211
|
+
/**
|
|
212
|
+
*
|
|
213
|
+
* @type {UserHouseholdBeneficiaryModelRes}
|
|
214
|
+
* @memberof UserDomainRes
|
|
215
|
+
*/
|
|
216
|
+
primaryHouseholdMate?: UserHouseholdBeneficiaryModelRes;
|
|
211
217
|
/**
|
|
212
218
|
*
|
|
213
219
|
* @type {string}
|
|
@@ -53,6 +53,7 @@ export function UserDomainResFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
53
53
|
'password': !exists(json, 'password') ? undefined : json['password'],
|
|
54
54
|
'passwordEncrypted': !exists(json, 'passwordEncrypted') ? undefined : json['passwordEncrypted'],
|
|
55
55
|
'phoneNumbers': !exists(json, 'phoneNumbers') ? undefined : (json['phoneNumbers'].map(PhoneNumberDomainResFromJSON)),
|
|
56
|
+
'primaryHouseholdMate': !exists(json, 'primaryHouseholdMate') ? undefined : UserHouseholdBeneficiaryModelResFromJSON(json['primaryHouseholdMate']),
|
|
56
57
|
'privacyMode': !exists(json, 'privacyMode') ? undefined : json['privacyMode'],
|
|
57
58
|
'profilePicture': !exists(json, 'profilePicture') ? undefined : json['profilePicture'],
|
|
58
59
|
'race': !exists(json, 'race') ? undefined : json['race'],
|
|
@@ -113,6 +114,7 @@ export function UserDomainResToJSON(value) {
|
|
|
113
114
|
'password': value.password,
|
|
114
115
|
'passwordEncrypted': value.passwordEncrypted,
|
|
115
116
|
'phoneNumbers': value.phoneNumbers === undefined ? undefined : (value.phoneNumbers.map(PhoneNumberDomainResToJSON)),
|
|
117
|
+
'primaryHouseholdMate': UserHouseholdBeneficiaryModelResToJSON(value.primaryHouseholdMate),
|
|
116
118
|
'privacyMode': value.privacyMode,
|
|
117
119
|
'profilePicture': value.profilePicture,
|
|
118
120
|
'race': value.race,
|
|
@@ -15893,6 +15893,7 @@ export interface components {
|
|
|
15893
15893
|
password?: string;
|
|
15894
15894
|
passwordEncrypted?: string;
|
|
15895
15895
|
phoneNumbers?: components["schemas"]["PhoneNumberDomain"][];
|
|
15896
|
+
primaryHouseholdMate?: components["schemas"]["UserHouseholdBeneficiaryModel"];
|
|
15896
15897
|
/** @enum {string} */
|
|
15897
15898
|
privacyMode?: ActivityFeedModelPrivacyMode;
|
|
15898
15899
|
profilePicture?: string;
|
|
@@ -15961,6 +15962,7 @@ export interface components {
|
|
|
15961
15962
|
password?: string;
|
|
15962
15963
|
passwordEncrypted?: string;
|
|
15963
15964
|
phoneNumbers?: components["schemas"]["PhoneNumberDomainReq"][];
|
|
15965
|
+
primaryHouseholdMate?: components["schemas"]["UserHouseholdBeneficiaryModelReq"];
|
|
15964
15966
|
/** @enum {string} */
|
|
15965
15967
|
privacyMode?: ActivityFeedModelPrivacyMode;
|
|
15966
15968
|
profilePicture?: string;
|
|
@@ -16030,6 +16032,7 @@ export interface components {
|
|
|
16030
16032
|
password?: string;
|
|
16031
16033
|
passwordEncrypted?: string;
|
|
16032
16034
|
phoneNumbers?: components["schemas"]["PhoneNumberDomainRes"][];
|
|
16035
|
+
primaryHouseholdMate?: components["schemas"]["UserHouseholdBeneficiaryModelRes"];
|
|
16033
16036
|
/** @enum {string} */
|
|
16034
16037
|
privacyMode?: ActivityFeedModelPrivacyMode;
|
|
16035
16038
|
profilePicture?: string;
|