@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.
@@ -34,6 +34,7 @@ export interface DriverLicenseModel {
34
34
  licenseRestrictions?: string;
35
35
  sex?: string;
36
36
  stateName?: string;
37
+ unsignedImageUrl?: string;
37
38
  userId?: number;
38
39
  weight?: string;
39
40
  }
@@ -31,6 +31,7 @@ export interface DriverLicenseModel {
31
31
  "licenseRestrictions"?: string;
32
32
  "sex"?: string;
33
33
  "stateName"?: string;
34
+ "unsignedImageUrl"?: string;
34
35
  "userId"?: number;
35
36
  "weight"?: string;
36
37
  }
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.82",
3
+ "version": "2.5.83",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"