@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.
- package/dist/angular/model/caseUserDefendantAttributesRequest.ts +1 -1
- package/dist/typescript/model/CaseUserDefendantAttributesRequest.d.ts +1 -1
- package/dist/typescript-fetch/models/CaseUserDefendantAttributesRequest.d.ts +1 -1
- package/dist/typescript-fetch/models/CaseUserDefendantAttributesRequest.js +1 -1
- package/dist/typescript-open-api/otr-backend.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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':
|
|
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
|
|
8841
|
+
firstName: string;
|
|
8842
8842
|
lastName?: string;
|
|
8843
8843
|
licenseNumber?: string;
|
|
8844
8844
|
licenseState?: string;
|