@otr-app/shared-backend-generated-client 2.3.172 → 2.3.174
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/.openapi-generator/FILES +1 -1
- package/dist/angular/api/driverLicenseController.service.ts +6 -6
- package/dist/angular/model/coachingCardCategoriesModel.ts +1 -0
- package/dist/angular/model/coachingCardSubcategoriesModel.ts +1 -0
- package/dist/angular/model/coachingCardUsersModel.ts +1 -2
- package/dist/angular/model/coachingLinks.ts +1 -1
- package/dist/angular/model/models.ts +1 -1
- package/dist/angular/model/saveCoachingCardUserRequest.ts +1 -0
- package/dist/angular/model/saveDriverLicensePictureResponse.ts +18 -0
- package/dist/angular/model/updateCoachingCardRequest.ts +1 -0
- package/dist/typescript/api/DriverLicenseControllerApi.d.ts +1 -1
- package/dist/typescript/model/CoachingCardCategoriesModel.d.ts +1 -0
- package/dist/typescript/model/CoachingCardSubcategoriesModel.d.ts +1 -0
- package/dist/typescript/model/CoachingCardUsersModel.d.ts +1 -2
- package/dist/typescript/model/CoachingLinks.d.ts +1 -1
- package/dist/typescript/model/SaveCoachingCardUserRequest.d.ts +1 -0
- package/dist/typescript/model/SaveDriverLicensePictureResponse.d.ts +15 -0
- package/dist/typescript/model/SaveDriverLicensePictureResponse.js +13 -0
- package/dist/typescript/model/UpdateCoachingCardRequest.d.ts +1 -0
- package/dist/typescript/model/models.d.ts +1 -1
- package/dist/typescript/model/models.js +1 -1
- package/package.json +1 -1
|
@@ -243,7 +243,6 @@ model/clientActionRequiredRequest.ts
|
|
|
243
243
|
model/clientConfirmedUnpaidCase.ts
|
|
244
244
|
model/clientLeadDomain.ts
|
|
245
245
|
model/coachingCardCategoriesModel.ts
|
|
246
|
-
model/coachingCardEntity.ts
|
|
247
246
|
model/coachingCardSubcategoriesModel.ts
|
|
248
247
|
model/coachingCardUsersModel.ts
|
|
249
248
|
model/coachingCardsModel.ts
|
|
@@ -684,6 +683,7 @@ model/saveCaseUserRequest.ts
|
|
|
684
683
|
model/saveCoachingCardRequest.ts
|
|
685
684
|
model/saveCoachingCardUserRequest.ts
|
|
686
685
|
model/saveDriverLicensePictureRequest.ts
|
|
686
|
+
model/saveDriverLicensePictureResponse.ts
|
|
687
687
|
model/saveDriverLicenseRequest.ts
|
|
688
688
|
model/saveExternalContentVoteRequest.ts
|
|
689
689
|
model/saveItemToWatchlistRequest.ts
|
|
@@ -25,9 +25,9 @@ import { GetDriverLicensesResponse } from '../model/getDriverLicensesResponse';
|
|
|
25
25
|
// @ts-ignore
|
|
26
26
|
import { SaveDriverLicensePictureRequest } from '../model/saveDriverLicensePictureRequest';
|
|
27
27
|
// @ts-ignore
|
|
28
|
-
import {
|
|
28
|
+
import { SaveDriverLicensePictureResponse } from '../model/saveDriverLicensePictureResponse';
|
|
29
29
|
// @ts-ignore
|
|
30
|
-
import {
|
|
30
|
+
import { SaveDriverLicenseRequest } from '../model/saveDriverLicenseRequest';
|
|
31
31
|
|
|
32
32
|
// @ts-ignore
|
|
33
33
|
import { BASE_PATH, COLLECTION_FORMATS } from '../variables';
|
|
@@ -172,9 +172,9 @@ export class DriverLicenseControllerService {
|
|
|
172
172
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
173
173
|
* @param reportProgress flag to report request and response progress.
|
|
174
174
|
*/
|
|
175
|
-
public saveDriverLicensePictureUsingPOST(userId: string, request: SaveDriverLicensePictureRequest, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<
|
|
176
|
-
public saveDriverLicensePictureUsingPOST(userId: string, request: SaveDriverLicensePictureRequest, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<
|
|
177
|
-
public saveDriverLicensePictureUsingPOST(userId: string, request: SaveDriverLicensePictureRequest, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<
|
|
175
|
+
public saveDriverLicensePictureUsingPOST(userId: string, request: SaveDriverLicensePictureRequest, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<SaveDriverLicensePictureResponse>;
|
|
176
|
+
public saveDriverLicensePictureUsingPOST(userId: string, request: SaveDriverLicensePictureRequest, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<SaveDriverLicensePictureResponse>>;
|
|
177
|
+
public saveDriverLicensePictureUsingPOST(userId: string, request: SaveDriverLicensePictureRequest, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<SaveDriverLicensePictureResponse>>;
|
|
178
178
|
public saveDriverLicensePictureUsingPOST(userId: string, request: SaveDriverLicensePictureRequest, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
|
|
179
179
|
if (userId === null || userId === undefined) {
|
|
180
180
|
throw new Error('Required parameter userId was null or undefined when calling saveDriverLicensePictureUsingPOST.');
|
|
@@ -224,7 +224,7 @@ export class DriverLicenseControllerService {
|
|
|
224
224
|
}
|
|
225
225
|
|
|
226
226
|
let localVarPath = `/api/v1/users/${this.configuration.encodeParam({name: "userId", value: userId, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined})}/driver-license/picture`;
|
|
227
|
-
return this.httpClient.request<
|
|
227
|
+
return this.httpClient.request<SaveDriverLicensePictureResponse>('post', `${this.configuration.basePath}${localVarPath}`,
|
|
228
228
|
{
|
|
229
229
|
context: localVarHttpContext,
|
|
230
230
|
body: request,
|
|
@@ -14,6 +14,7 @@ import { CoachingCardSubcategoriesModel } from './coachingCardSubcategoriesModel
|
|
|
14
14
|
|
|
15
15
|
export interface CoachingCardCategoriesModel {
|
|
16
16
|
coachingCardCategory?: string;
|
|
17
|
+
coachingCardCategoryId?: number;
|
|
17
18
|
description?: string;
|
|
18
19
|
subcategories?: Array<CoachingCardSubcategoriesModel>;
|
|
19
20
|
}
|
|
@@ -9,19 +9,18 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { CoachingCardEntity } from './coachingCardEntity';
|
|
13
12
|
|
|
14
13
|
|
|
15
14
|
export interface CoachingCardUsersModel {
|
|
16
15
|
acknowledgementDateUtc?: string;
|
|
17
16
|
assignmentDateUtc?: string;
|
|
18
|
-
coachingCards?: CoachingCardEntity;
|
|
19
17
|
coachingDateUtc?: string;
|
|
20
18
|
coachingMethod?: string;
|
|
21
19
|
hasBeenCoached?: boolean;
|
|
22
20
|
isActionRequired?: boolean;
|
|
23
21
|
isRepeatOffense?: boolean;
|
|
24
22
|
permissionType?: CoachingCardUsersModel.PermissionTypeEnum;
|
|
23
|
+
recipientNote?: string;
|
|
25
24
|
resolutionDateUtc?: string;
|
|
26
25
|
userId?: number;
|
|
27
26
|
}
|
|
@@ -124,7 +124,6 @@ export * from './clientActionRequiredRequest';
|
|
|
124
124
|
export * from './clientConfirmedUnpaidCase';
|
|
125
125
|
export * from './clientLeadDomain';
|
|
126
126
|
export * from './coachingCardCategoriesModel';
|
|
127
|
-
export * from './coachingCardEntity';
|
|
128
127
|
export * from './coachingCardSubcategoriesModel';
|
|
129
128
|
export * from './coachingCardUsersModel';
|
|
130
129
|
export * from './coachingCardsModel';
|
|
@@ -564,6 +563,7 @@ export * from './saveCaseUserRequest';
|
|
|
564
563
|
export * from './saveCoachingCardRequest';
|
|
565
564
|
export * from './saveCoachingCardUserRequest';
|
|
566
565
|
export * from './saveDriverLicensePictureRequest';
|
|
566
|
+
export * from './saveDriverLicensePictureResponse';
|
|
567
567
|
export * from './saveDriverLicenseRequest';
|
|
568
568
|
export * from './saveExternalContentVoteRequest';
|
|
569
569
|
export * from './saveItemToWatchlistRequest';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { DriverLicenseModel } from './driverLicenseModel';
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
export interface SaveDriverLicensePictureResponse {
|
|
16
|
+
userAssetModel?: DriverLicenseModel;
|
|
17
|
+
}
|
|
18
|
+
|
|
@@ -31,7 +31,7 @@ export declare class DriverLicenseControllerApi {
|
|
|
31
31
|
* @param userId userId
|
|
32
32
|
* @param request request
|
|
33
33
|
*/
|
|
34
|
-
saveDriverLicensePictureUsingPOST(userId: string, request: models.SaveDriverLicensePictureRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.
|
|
34
|
+
saveDriverLicensePictureUsingPOST(userId: string, request: models.SaveDriverLicensePictureRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.SaveDriverLicensePictureResponse>;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
37
|
* @summary saveDriverLicense
|
|
@@ -9,17 +9,16 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import * as models from './models';
|
|
13
12
|
export interface CoachingCardUsersModel {
|
|
14
13
|
"acknowledgementDateUtc"?: string;
|
|
15
14
|
"assignmentDateUtc"?: string;
|
|
16
|
-
"coachingCards"?: models.CoachingCardEntity;
|
|
17
15
|
"coachingDateUtc"?: string;
|
|
18
16
|
"coachingMethod"?: string;
|
|
19
17
|
"hasBeenCoached"?: boolean;
|
|
20
18
|
"isActionRequired"?: boolean;
|
|
21
19
|
"isRepeatOffense"?: boolean;
|
|
22
20
|
"permissionType"?: CoachingCardUsersModel.PermissionTypeEnum;
|
|
21
|
+
"recipientNote"?: string;
|
|
23
22
|
"resolutionDateUtc"?: string;
|
|
24
23
|
"userId"?: number;
|
|
25
24
|
}
|
|
@@ -19,6 +19,7 @@ export interface SaveCoachingCardUserRequest {
|
|
|
19
19
|
"isActionRequired"?: boolean;
|
|
20
20
|
"isRepeatOffense"?: boolean;
|
|
21
21
|
"permissionType"?: SaveCoachingCardUserRequest.PermissionTypeEnum;
|
|
22
|
+
"recipientNote"?: string;
|
|
22
23
|
"resolutionDateUtc"?: string;
|
|
23
24
|
"userId"?: number;
|
|
24
25
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as models from './models';
|
|
13
|
+
export interface SaveDriverLicensePictureResponse {
|
|
14
|
+
"userAssetModel"?: models.DriverLicenseModel;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -13,6 +13,7 @@ export interface UpdateCoachingCardRequest {
|
|
|
13
13
|
"acknowledgementDateUtc"?: string;
|
|
14
14
|
"coachingCardId"?: number;
|
|
15
15
|
"permissionType"?: UpdateCoachingCardRequest.PermissionTypeEnum;
|
|
16
|
+
"recipientNote"?: string;
|
|
16
17
|
"resolutionDateUtc"?: string;
|
|
17
18
|
"userId"?: number;
|
|
18
19
|
}
|
|
@@ -124,7 +124,6 @@ export * from './ClientActionRequiredRequest';
|
|
|
124
124
|
export * from './ClientConfirmedUnpaidCase';
|
|
125
125
|
export * from './ClientLeadDomain';
|
|
126
126
|
export * from './CoachingCardCategoriesModel';
|
|
127
|
-
export * from './CoachingCardEntity';
|
|
128
127
|
export * from './CoachingCardSubcategoriesModel';
|
|
129
128
|
export * from './CoachingCardUsersModel';
|
|
130
129
|
export * from './CoachingCardsModel';
|
|
@@ -564,6 +563,7 @@ export * from './SaveCaseUserRequest';
|
|
|
564
563
|
export * from './SaveCoachingCardRequest';
|
|
565
564
|
export * from './SaveCoachingCardUserRequest';
|
|
566
565
|
export * from './SaveDriverLicensePictureRequest';
|
|
566
|
+
export * from './SaveDriverLicensePictureResponse';
|
|
567
567
|
export * from './SaveDriverLicenseRequest';
|
|
568
568
|
export * from './SaveExternalContentVoteRequest';
|
|
569
569
|
export * from './SaveItemToWatchlistRequest';
|
|
@@ -136,7 +136,6 @@ __exportStar(require("./ClientActionRequiredRequest"), exports);
|
|
|
136
136
|
__exportStar(require("./ClientConfirmedUnpaidCase"), exports);
|
|
137
137
|
__exportStar(require("./ClientLeadDomain"), exports);
|
|
138
138
|
__exportStar(require("./CoachingCardCategoriesModel"), exports);
|
|
139
|
-
__exportStar(require("./CoachingCardEntity"), exports);
|
|
140
139
|
__exportStar(require("./CoachingCardSubcategoriesModel"), exports);
|
|
141
140
|
__exportStar(require("./CoachingCardUsersModel"), exports);
|
|
142
141
|
__exportStar(require("./CoachingCardsModel"), exports);
|
|
@@ -576,6 +575,7 @@ __exportStar(require("./SaveCaseUserRequest"), exports);
|
|
|
576
575
|
__exportStar(require("./SaveCoachingCardRequest"), exports);
|
|
577
576
|
__exportStar(require("./SaveCoachingCardUserRequest"), exports);
|
|
578
577
|
__exportStar(require("./SaveDriverLicensePictureRequest"), exports);
|
|
578
|
+
__exportStar(require("./SaveDriverLicensePictureResponse"), exports);
|
|
579
579
|
__exportStar(require("./SaveDriverLicenseRequest"), exports);
|
|
580
580
|
__exportStar(require("./SaveExternalContentVoteRequest"), exports);
|
|
581
581
|
__exportStar(require("./SaveItemToWatchlistRequest"), exports);
|