@otr-app/shared-backend-generated-client 2.3.239 → 2.3.241
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 +2 -0
- package/dist/angular/api/activityFeedController.service.ts +84 -0
- package/dist/angular/model/caseOutcomeModel.ts +36 -0
- package/dist/angular/model/listCaseOutcomesResponse.ts +18 -0
- package/dist/angular/model/models.ts +2 -0
- package/dist/otrBackendService.js +54 -0
- package/dist/otrBackendService.min.js +7 -7
- package/dist/typescript/api/ActivityFeedControllerApi.d.ts +10 -0
- package/dist/typescript/api/ActivityFeedControllerApi.js +39 -0
- package/dist/typescript/model/CaseOutcomeModel.d.ts +31 -0
- package/dist/typescript/model/CaseOutcomeModel.js +24 -0
- package/dist/typescript/model/ListCaseOutcomesResponse.d.ts +15 -0
- package/dist/typescript/model/ListCaseOutcomesResponse.js +13 -0
- package/dist/typescript/model/models.d.ts +2 -0
- package/dist/typescript/model/models.js +2 -0
- package/package.json +1 -1
|
@@ -26,4 +26,14 @@ export declare class ActivityFeedControllerApi {
|
|
|
26
26
|
* @param previousPageToken previousPageToken
|
|
27
27
|
*/
|
|
28
28
|
listActivityFeedUsingGET(limit: number, nextPageToken?: string, previousPageToken?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetActivityFeedResponse>;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @summary listCaseOutcomes
|
|
32
|
+
* @param includeCriminal includeCriminal
|
|
33
|
+
* @param limit limit
|
|
34
|
+
* @param regionCode regionCode
|
|
35
|
+
* @param resolutionStatuses resolutionStatuses
|
|
36
|
+
* @param startDate startDate
|
|
37
|
+
*/
|
|
38
|
+
listCaseOutcomesUsingGET(includeCriminal?: boolean, limit?: number, regionCode?: string, resolutionStatuses?: 'LOST' | 'POINTS_REDUCED' | 'REDUCED_TO_NON_MOVER' | 'TICKET_DISMISSED', startDate?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListCaseOutcomesResponse>;
|
|
29
39
|
}
|
|
@@ -58,6 +58,45 @@ var ActivityFeedControllerApi = /** @class */ (function () {
|
|
|
58
58
|
}
|
|
59
59
|
return this.$http(httpRequestParams);
|
|
60
60
|
};
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @summary listCaseOutcomes
|
|
64
|
+
* @param includeCriminal includeCriminal
|
|
65
|
+
* @param limit limit
|
|
66
|
+
* @param regionCode regionCode
|
|
67
|
+
* @param resolutionStatuses resolutionStatuses
|
|
68
|
+
* @param startDate startDate
|
|
69
|
+
*/
|
|
70
|
+
ActivityFeedControllerApi.prototype.listCaseOutcomesUsingGET = function (includeCriminal, limit, regionCode, resolutionStatuses, startDate, extraHttpRequestParams) {
|
|
71
|
+
var localVarPath = this.basePath + '/api/v1/activity-feed/case-outcomes';
|
|
72
|
+
var queryParameters = {};
|
|
73
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
74
|
+
if (includeCriminal !== undefined) {
|
|
75
|
+
queryParameters['includeCriminal'] = includeCriminal;
|
|
76
|
+
}
|
|
77
|
+
if (limit !== undefined) {
|
|
78
|
+
queryParameters['limit'] = limit;
|
|
79
|
+
}
|
|
80
|
+
if (regionCode !== undefined) {
|
|
81
|
+
queryParameters['regionCode'] = regionCode;
|
|
82
|
+
}
|
|
83
|
+
if (resolutionStatuses !== undefined) {
|
|
84
|
+
queryParameters['resolutionStatuses'] = resolutionStatuses;
|
|
85
|
+
}
|
|
86
|
+
if (startDate !== undefined) {
|
|
87
|
+
queryParameters['startDate'] = startDate;
|
|
88
|
+
}
|
|
89
|
+
var httpRequestParams = {
|
|
90
|
+
method: 'GET',
|
|
91
|
+
url: localVarPath,
|
|
92
|
+
params: queryParameters,
|
|
93
|
+
headers: headerParams
|
|
94
|
+
};
|
|
95
|
+
if (extraHttpRequestParams) {
|
|
96
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
97
|
+
}
|
|
98
|
+
return this.$http(httpRequestParams);
|
|
99
|
+
};
|
|
61
100
|
ActivityFeedControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
|
|
62
101
|
return ActivityFeedControllerApi;
|
|
63
102
|
}());
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
export interface CaseOutcomeModel {
|
|
13
|
+
"averageSavingsInCents"?: number;
|
|
14
|
+
"city"?: string;
|
|
15
|
+
"clientName"?: string;
|
|
16
|
+
"courtName"?: string;
|
|
17
|
+
"criminal"?: boolean;
|
|
18
|
+
"profilePictureUrl"?: string;
|
|
19
|
+
"regionCode"?: string;
|
|
20
|
+
"resolutionDateUtc"?: string;
|
|
21
|
+
"resolutionStatus"?: CaseOutcomeModel.ResolutionStatusEnum;
|
|
22
|
+
"shortViolationName"?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare namespace CaseOutcomeModel {
|
|
25
|
+
enum ResolutionStatusEnum {
|
|
26
|
+
LOST,
|
|
27
|
+
POINTSREDUCED,
|
|
28
|
+
REDUCEDTONONMOVER,
|
|
29
|
+
TICKETDISMISSED
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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 });
|
|
14
|
+
exports.CaseOutcomeModel = void 0;
|
|
15
|
+
var CaseOutcomeModel;
|
|
16
|
+
(function (CaseOutcomeModel) {
|
|
17
|
+
var ResolutionStatusEnum;
|
|
18
|
+
(function (ResolutionStatusEnum) {
|
|
19
|
+
ResolutionStatusEnum[ResolutionStatusEnum["LOST"] = 'LOST'] = "LOST";
|
|
20
|
+
ResolutionStatusEnum[ResolutionStatusEnum["POINTSREDUCED"] = 'POINTS_REDUCED'] = "POINTSREDUCED";
|
|
21
|
+
ResolutionStatusEnum[ResolutionStatusEnum["REDUCEDTONONMOVER"] = 'REDUCED_TO_NON_MOVER'] = "REDUCEDTONONMOVER";
|
|
22
|
+
ResolutionStatusEnum[ResolutionStatusEnum["TICKETDISMISSED"] = 'TICKET_DISMISSED'] = "TICKETDISMISSED";
|
|
23
|
+
})(ResolutionStatusEnum = CaseOutcomeModel.ResolutionStatusEnum || (CaseOutcomeModel.ResolutionStatusEnum = {}));
|
|
24
|
+
})(CaseOutcomeModel = exports.CaseOutcomeModel || (exports.CaseOutcomeModel = {}));
|
|
@@ -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 ListCaseOutcomesResponse {
|
|
14
|
+
"outcomes"?: Array<models.CaseOutcomeModel>;
|
|
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 });
|
|
@@ -97,6 +97,7 @@ export * from './CaseModel';
|
|
|
97
97
|
export * from './CaseModelReq';
|
|
98
98
|
export * from './CaseModelRes';
|
|
99
99
|
export * from './CaseNotesDomain';
|
|
100
|
+
export * from './CaseOutcomeModel';
|
|
100
101
|
export * from './CasePaymentDomain';
|
|
101
102
|
export * from './CasePaymentModel';
|
|
102
103
|
export * from './CaseStatusDetailsResponse';
|
|
@@ -443,6 +444,7 @@ export * from './ListCaseBookingsRequest';
|
|
|
443
444
|
export * from './ListCaseBookingsResponse';
|
|
444
445
|
export * from './ListCaseCancellationsRequest';
|
|
445
446
|
export * from './ListCaseCancellationsResponse';
|
|
447
|
+
export * from './ListCaseOutcomesResponse';
|
|
446
448
|
export * from './ListCitationAuditEventsResponse';
|
|
447
449
|
export * from './ListCitationsRequest';
|
|
448
450
|
export * from './ListCitationsResponse';
|
|
@@ -109,6 +109,7 @@ __exportStar(require("./CaseModel"), exports);
|
|
|
109
109
|
__exportStar(require("./CaseModelReq"), exports);
|
|
110
110
|
__exportStar(require("./CaseModelRes"), exports);
|
|
111
111
|
__exportStar(require("./CaseNotesDomain"), exports);
|
|
112
|
+
__exportStar(require("./CaseOutcomeModel"), exports);
|
|
112
113
|
__exportStar(require("./CasePaymentDomain"), exports);
|
|
113
114
|
__exportStar(require("./CasePaymentModel"), exports);
|
|
114
115
|
__exportStar(require("./CaseStatusDetailsResponse"), exports);
|
|
@@ -455,6 +456,7 @@ __exportStar(require("./ListCaseBookingsRequest"), exports);
|
|
|
455
456
|
__exportStar(require("./ListCaseBookingsResponse"), exports);
|
|
456
457
|
__exportStar(require("./ListCaseCancellationsRequest"), exports);
|
|
457
458
|
__exportStar(require("./ListCaseCancellationsResponse"), exports);
|
|
459
|
+
__exportStar(require("./ListCaseOutcomesResponse"), exports);
|
|
458
460
|
__exportStar(require("./ListCitationAuditEventsResponse"), exports);
|
|
459
461
|
__exportStar(require("./ListCitationsRequest"), exports);
|
|
460
462
|
__exportStar(require("./ListCitationsResponse"), exports);
|