@otr-app/shared-backend-generated-client 2.5.82 → 2.5.83
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/driverLicenseModel.ts +1 -0
- package/dist/typescript/model/DriverLicenseModel.d.ts +1 -0
- package/dist/typescript-fetch/models/DriverLicenseModel.d.ts +6 -0
- package/dist/typescript-fetch/models/DriverLicenseModel.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +1 -0
- package/package.json +1 -1
|
@@ -136,6 +136,12 @@ export interface DriverLicenseModel {
|
|
|
136
136
|
* @memberof DriverLicenseModel
|
|
137
137
|
*/
|
|
138
138
|
stateName?: string;
|
|
139
|
+
/**
|
|
140
|
+
*
|
|
141
|
+
* @type {string}
|
|
142
|
+
* @memberof DriverLicenseModel
|
|
143
|
+
*/
|
|
144
|
+
unsignedImageUrl?: string;
|
|
139
145
|
/**
|
|
140
146
|
*
|
|
141
147
|
* @type {number}
|
|
@@ -41,6 +41,7 @@ export function DriverLicenseModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
41
41
|
'licenseRestrictions': !exists(json, 'licenseRestrictions') ? undefined : json['licenseRestrictions'],
|
|
42
42
|
'sex': !exists(json, 'sex') ? undefined : json['sex'],
|
|
43
43
|
'stateName': !exists(json, 'stateName') ? undefined : json['stateName'],
|
|
44
|
+
'unsignedImageUrl': !exists(json, 'unsignedImageUrl') ? undefined : json['unsignedImageUrl'],
|
|
44
45
|
'userId': !exists(json, 'userId') ? undefined : json['userId'],
|
|
45
46
|
'weight': !exists(json, 'weight') ? undefined : json['weight'],
|
|
46
47
|
};
|
|
@@ -73,6 +74,7 @@ export function DriverLicenseModelToJSON(value) {
|
|
|
73
74
|
'licenseRestrictions': value.licenseRestrictions,
|
|
74
75
|
'sex': value.sex,
|
|
75
76
|
'stateName': value.stateName,
|
|
77
|
+
'unsignedImageUrl': value.unsignedImageUrl,
|
|
76
78
|
'userId': value.userId,
|
|
77
79
|
'weight': value.weight,
|
|
78
80
|
};
|
|
@@ -10093,6 +10093,7 @@ export interface components {
|
|
|
10093
10093
|
licenseRestrictions?: string;
|
|
10094
10094
|
sex?: string;
|
|
10095
10095
|
stateName?: string;
|
|
10096
|
+
unsignedImageUrl?: string;
|
|
10096
10097
|
/** Format: int64 */
|
|
10097
10098
|
userId?: number;
|
|
10098
10099
|
weight?: string;
|