@otr-app/shared-backend-generated-client 2.5.125 → 2.5.126
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/getCaseUserModel.ts +1 -0
- package/dist/typescript/model/GetCaseUserModel.d.ts +1 -0
- package/dist/typescript-fetch/models/GetCaseUserModel.d.ts +6 -0
- package/dist/typescript-fetch/models/GetCaseUserModel.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +2 -0
- package/package.json +1 -1
|
@@ -15,6 +15,7 @@ import { CaseUserPermissionAttributes } from './caseUserPermissionAttributes';
|
|
|
15
15
|
export interface GetCaseUserModel {
|
|
16
16
|
additionalNote?: string;
|
|
17
17
|
caseId?: string;
|
|
18
|
+
caseUserId?: number;
|
|
18
19
|
creationDateUtc?: string;
|
|
19
20
|
dateOfBirth?: string;
|
|
20
21
|
emailAddress?: string;
|
|
@@ -23,6 +23,7 @@ export function GetCaseUserModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
23
|
return {
|
|
24
24
|
'additionalNote': !exists(json, 'additionalNote') ? undefined : json['additionalNote'],
|
|
25
25
|
'caseId': !exists(json, 'caseId') ? undefined : json['caseId'],
|
|
26
|
+
'caseUserId': !exists(json, 'caseUserId') ? undefined : json['caseUserId'],
|
|
26
27
|
'creationDateUtc': !exists(json, 'creationDateUtc') ? undefined : (new Date(json['creationDateUtc'])),
|
|
27
28
|
'dateOfBirth': !exists(json, 'dateOfBirth') ? undefined : (new Date(json['dateOfBirth'])),
|
|
28
29
|
'emailAddress': !exists(json, 'emailAddress') ? undefined : json['emailAddress'],
|
|
@@ -53,6 +54,7 @@ export function GetCaseUserModelToJSON(value) {
|
|
|
53
54
|
return {
|
|
54
55
|
'additionalNote': value.additionalNote,
|
|
55
56
|
'caseId': value.caseId,
|
|
57
|
+
'caseUserId': value.caseUserId,
|
|
56
58
|
'creationDateUtc': value.creationDateUtc === undefined ? undefined : (value.creationDateUtc.toISOString()),
|
|
57
59
|
'dateOfBirth': value.dateOfBirth === undefined ? undefined : (value.dateOfBirth.toISOString()),
|
|
58
60
|
'emailAddress': value.emailAddress,
|
|
@@ -10857,6 +10857,8 @@ export interface components {
|
|
|
10857
10857
|
GetCaseUserModel: {
|
|
10858
10858
|
additionalNote?: string;
|
|
10859
10859
|
caseId?: string;
|
|
10860
|
+
/** Format: int32 */
|
|
10861
|
+
caseUserId?: number;
|
|
10860
10862
|
/** Format: date-time */
|
|
10861
10863
|
creationDateUtc?: string;
|
|
10862
10864
|
/** Format: date-time */
|