@otr-app/shared-backend-generated-client 2.5.139 → 2.5.140

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.
@@ -13,7 +13,7 @@
13
13
 
14
14
  export interface CaseUserDefendantAttributesRequest {
15
15
  dateOfBirth?: string;
16
- firstName?: string;
16
+ firstName: string;
17
17
  lastName?: string;
18
18
  licenseNumber?: string;
19
19
  licenseState?: string;
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export interface CaseUserDefendantAttributesRequest {
13
13
  "dateOfBirth"?: string;
14
- "firstName"?: string;
14
+ "firstName": string;
15
15
  "lastName"?: string;
16
16
  "licenseNumber"?: string;
17
17
  "licenseState"?: string;
@@ -26,7 +26,7 @@ export interface CaseUserDefendantAttributesRequest {
26
26
  * @type {string}
27
27
  * @memberof CaseUserDefendantAttributesRequest
28
28
  */
29
- firstName?: string;
29
+ firstName: string;
30
30
  /**
31
31
  *
32
32
  * @type {string}
@@ -21,7 +21,7 @@ export function CaseUserDefendantAttributesRequestFromJSONTyped(json, ignoreDisc
21
21
  }
22
22
  return {
23
23
  'dateOfBirth': !exists(json, 'dateOfBirth') ? undefined : (new Date(json['dateOfBirth'])),
24
- 'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
24
+ 'firstName': json['firstName'],
25
25
  'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
26
26
  'licenseNumber': !exists(json, 'licenseNumber') ? undefined : json['licenseNumber'],
27
27
  'licenseState': !exists(json, 'licenseState') ? undefined : json['licenseState'],
@@ -8838,7 +8838,7 @@ export interface components {
8838
8838
  CaseUserDefendantAttributesRequest: {
8839
8839
  /** Format: date */
8840
8840
  dateOfBirth?: string;
8841
- firstName?: string;
8841
+ firstName: string;
8842
8842
  lastName?: string;
8843
8843
  licenseNumber?: string;
8844
8844
  licenseState?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.139",
3
+ "version": "2.5.140",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"