@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.
@@ -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;
@@ -13,6 +13,7 @@ import * as models from './models';
13
13
  export interface GetCaseUserModel {
14
14
  "additionalNote"?: string;
15
15
  "caseId"?: string;
16
+ "caseUserId"?: number;
16
17
  "creationDateUtc"?: string;
17
18
  "dateOfBirth"?: string;
18
19
  "emailAddress"?: string;
@@ -28,6 +28,12 @@ export interface GetCaseUserModel {
28
28
  * @memberof GetCaseUserModel
29
29
  */
30
30
  caseId?: string;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof GetCaseUserModel
35
+ */
36
+ caseUserId?: number;
31
37
  /**
32
38
  *
33
39
  * @type {Date}
@@ -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 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.125",
3
+ "version": "2.5.126",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"