@otr-app/shared-backend-generated-client 2.3.75 → 2.3.77
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/api/dashboardController.service.ts +0 -136
- package/dist/angular/model/getCitationsWithMissingFieldsRequest.ts +8 -8
- package/dist/angular/model/getCitationsWithMissingFieldsResponse.ts +0 -2
- package/dist/otrBackendService.js +0 -74
- package/dist/otrBackendService.min.js +5 -5
- package/dist/typescript/api/DashboardControllerApi.d.ts +0 -12
- package/dist/typescript/api/DashboardControllerApi.js +0 -50
- package/dist/typescript/api/DashboardControllerApi.ts +0 -58
- package/dist/typescript/model/GetCitationsWithMissingFieldsRequest.d.ts +7 -7
- package/dist/typescript/model/GetCitationsWithMissingFieldsRequest.js +7 -7
- package/dist/typescript/model/GetCitationsWithMissingFieldsRequest.ts +7 -7
- package/dist/typescript/model/GetCitationsWithMissingFieldsResponse.d.ts +0 -2
- package/dist/typescript/model/GetCitationsWithMissingFieldsResponse.ts +0 -2
- package/package.json +1 -1
|
@@ -24,24 +24,12 @@ export declare class DashboardControllerApi {
|
|
|
24
24
|
* @param request request
|
|
25
25
|
*/
|
|
26
26
|
getBookingsUsingPOST(request: models.GetBookingsRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetBookingsResponse>;
|
|
27
|
-
/**
|
|
28
|
-
*
|
|
29
|
-
* @summary getRegisteredUsers
|
|
30
|
-
* @param graphRequest graphRequest
|
|
31
|
-
*/
|
|
32
|
-
getRegisteredUsersUsingPOST(graphRequest: models.GraphRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.SqlResponse>;
|
|
33
27
|
/**
|
|
34
28
|
*
|
|
35
29
|
* @summary getUserRegistrations
|
|
36
30
|
* @param request request
|
|
37
31
|
*/
|
|
38
32
|
getUserRegistrationsUsingPOST(request: models.GetUserRegistrationsRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetUserRegistrationsResponse>;
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* @summary listCasesByStatus
|
|
42
|
-
* @param graphRequest graphRequest
|
|
43
|
-
*/
|
|
44
|
-
listCasesByStatusUsingPOST(graphRequest: models.GraphRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.SqlResponse>;
|
|
45
33
|
/**
|
|
46
34
|
*
|
|
47
35
|
* @summary listCitations
|
|
@@ -48,31 +48,6 @@ var DashboardControllerApi = /** @class */ (function () {
|
|
|
48
48
|
}
|
|
49
49
|
return this.$http(httpRequestParams);
|
|
50
50
|
};
|
|
51
|
-
/**
|
|
52
|
-
*
|
|
53
|
-
* @summary getRegisteredUsers
|
|
54
|
-
* @param graphRequest graphRequest
|
|
55
|
-
*/
|
|
56
|
-
DashboardControllerApi.prototype.getRegisteredUsersUsingPOST = function (graphRequest, extraHttpRequestParams) {
|
|
57
|
-
var localVarPath = this.basePath + '/api/v1/console/users';
|
|
58
|
-
var queryParameters = {};
|
|
59
|
-
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
60
|
-
// verify required parameter 'graphRequest' is not null or undefined
|
|
61
|
-
if (graphRequest === null || graphRequest === undefined) {
|
|
62
|
-
throw new Error('Required parameter graphRequest was null or undefined when calling getRegisteredUsersUsingPOST.');
|
|
63
|
-
}
|
|
64
|
-
var httpRequestParams = {
|
|
65
|
-
method: 'POST',
|
|
66
|
-
url: localVarPath,
|
|
67
|
-
data: graphRequest,
|
|
68
|
-
params: queryParameters,
|
|
69
|
-
headers: headerParams
|
|
70
|
-
};
|
|
71
|
-
if (extraHttpRequestParams) {
|
|
72
|
-
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
73
|
-
}
|
|
74
|
-
return this.$http(httpRequestParams);
|
|
75
|
-
};
|
|
76
51
|
/**
|
|
77
52
|
*
|
|
78
53
|
* @summary getUserRegistrations
|
|
@@ -98,31 +73,6 @@ var DashboardControllerApi = /** @class */ (function () {
|
|
|
98
73
|
}
|
|
99
74
|
return this.$http(httpRequestParams);
|
|
100
75
|
};
|
|
101
|
-
/**
|
|
102
|
-
*
|
|
103
|
-
* @summary listCasesByStatus
|
|
104
|
-
* @param graphRequest graphRequest
|
|
105
|
-
*/
|
|
106
|
-
DashboardControllerApi.prototype.listCasesByStatusUsingPOST = function (graphRequest, extraHttpRequestParams) {
|
|
107
|
-
var localVarPath = this.basePath + '/api/v1/console/cases/status';
|
|
108
|
-
var queryParameters = {};
|
|
109
|
-
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
110
|
-
// verify required parameter 'graphRequest' is not null or undefined
|
|
111
|
-
if (graphRequest === null || graphRequest === undefined) {
|
|
112
|
-
throw new Error('Required parameter graphRequest was null or undefined when calling listCasesByStatusUsingPOST.');
|
|
113
|
-
}
|
|
114
|
-
var httpRequestParams = {
|
|
115
|
-
method: 'POST',
|
|
116
|
-
url: localVarPath,
|
|
117
|
-
data: graphRequest,
|
|
118
|
-
params: queryParameters,
|
|
119
|
-
headers: headerParams
|
|
120
|
-
};
|
|
121
|
-
if (extraHttpRequestParams) {
|
|
122
|
-
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
123
|
-
}
|
|
124
|
-
return this.$http(httpRequestParams);
|
|
125
|
-
};
|
|
126
76
|
/**
|
|
127
77
|
*
|
|
128
78
|
* @summary listCitations
|
|
@@ -55,35 +55,6 @@ export class DashboardControllerApi {
|
|
|
55
55
|
|
|
56
56
|
return this.$http(httpRequestParams);
|
|
57
57
|
}
|
|
58
|
-
/**
|
|
59
|
-
*
|
|
60
|
-
* @summary getRegisteredUsers
|
|
61
|
-
* @param graphRequest graphRequest
|
|
62
|
-
*/
|
|
63
|
-
public getRegisteredUsersUsingPOST (graphRequest: models.GraphRequest, extraHttpRequestParams?: any ) : ng.IHttpPromise<models.SqlResponse> {
|
|
64
|
-
const localVarPath = this.basePath + '/api/v1/console/users';
|
|
65
|
-
|
|
66
|
-
let queryParameters: any = {};
|
|
67
|
-
let headerParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
|
68
|
-
// verify required parameter 'graphRequest' is not null or undefined
|
|
69
|
-
if (graphRequest === null || graphRequest === undefined) {
|
|
70
|
-
throw new Error('Required parameter graphRequest was null or undefined when calling getRegisteredUsersUsingPOST.');
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
let httpRequestParams: ng.IRequestConfig = {
|
|
74
|
-
method: 'POST',
|
|
75
|
-
url: localVarPath,
|
|
76
|
-
data: graphRequest,
|
|
77
|
-
params: queryParameters,
|
|
78
|
-
headers: headerParams
|
|
79
|
-
};
|
|
80
|
-
|
|
81
|
-
if (extraHttpRequestParams) {
|
|
82
|
-
httpRequestParams = (<any>Object).assign(httpRequestParams, extraHttpRequestParams);
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
return this.$http(httpRequestParams);
|
|
86
|
-
}
|
|
87
58
|
/**
|
|
88
59
|
*
|
|
89
60
|
* @summary getUserRegistrations
|
|
@@ -113,35 +84,6 @@ export class DashboardControllerApi {
|
|
|
113
84
|
|
|
114
85
|
return this.$http(httpRequestParams);
|
|
115
86
|
}
|
|
116
|
-
/**
|
|
117
|
-
*
|
|
118
|
-
* @summary listCasesByStatus
|
|
119
|
-
* @param graphRequest graphRequest
|
|
120
|
-
*/
|
|
121
|
-
public listCasesByStatusUsingPOST (graphRequest: models.GraphRequest, extraHttpRequestParams?: any ) : ng.IHttpPromise<models.SqlResponse> {
|
|
122
|
-
const localVarPath = this.basePath + '/api/v1/console/cases/status';
|
|
123
|
-
|
|
124
|
-
let queryParameters: any = {};
|
|
125
|
-
let headerParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
|
126
|
-
// verify required parameter 'graphRequest' is not null or undefined
|
|
127
|
-
if (graphRequest === null || graphRequest === undefined) {
|
|
128
|
-
throw new Error('Required parameter graphRequest was null or undefined when calling listCasesByStatusUsingPOST.');
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
let httpRequestParams: ng.IRequestConfig = {
|
|
132
|
-
method: 'POST',
|
|
133
|
-
url: localVarPath,
|
|
134
|
-
data: graphRequest,
|
|
135
|
-
params: queryParameters,
|
|
136
|
-
headers: headerParams
|
|
137
|
-
};
|
|
138
|
-
|
|
139
|
-
if (extraHttpRequestParams) {
|
|
140
|
-
httpRequestParams = (<any>Object).assign(httpRequestParams, extraHttpRequestParams);
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
return this.$http(httpRequestParams);
|
|
144
|
-
}
|
|
145
87
|
/**
|
|
146
88
|
*
|
|
147
89
|
* @summary listCitations
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
export interface GetCitationsWithMissingFieldsRequest {
|
|
13
|
-
"caseStatusCategory"?: GetCitationsWithMissingFieldsRequest.CaseStatusCategoryEnum;
|
|
14
13
|
"caseStatuses"?: Array<GetCitationsWithMissingFieldsRequest.CaseStatusesEnum>;
|
|
15
14
|
"endDate"?: string;
|
|
16
15
|
"maxRecords"?: number;
|
|
@@ -20,15 +19,10 @@ export interface GetCitationsWithMissingFieldsRequest {
|
|
|
20
19
|
"showMissingGenderRecords"?: boolean;
|
|
21
20
|
"showMissingNameRecords"?: boolean;
|
|
22
21
|
"startDate"?: string;
|
|
22
|
+
"statusCategories"?: Array<GetCitationsWithMissingFieldsRequest.StatusCategoriesEnum>;
|
|
23
23
|
"trailingDays"?: number;
|
|
24
24
|
}
|
|
25
25
|
export declare namespace GetCitationsWithMissingFieldsRequest {
|
|
26
|
-
enum CaseStatusCategoryEnum {
|
|
27
|
-
ACTIVE,
|
|
28
|
-
CANCELLED,
|
|
29
|
-
RESOLVED,
|
|
30
|
-
UNCONFIRMED
|
|
31
|
-
}
|
|
32
26
|
enum CaseStatusesEnum {
|
|
33
27
|
AMENDEDDOWNWITHINCLASS,
|
|
34
28
|
AMENDEDFULLFINE,
|
|
@@ -121,4 +115,10 @@ export declare namespace GetCitationsWithMissingFieldsRequest {
|
|
|
121
115
|
WV,
|
|
122
116
|
WY
|
|
123
117
|
}
|
|
118
|
+
enum StatusCategoriesEnum {
|
|
119
|
+
ACTIVE,
|
|
120
|
+
CANCELLED,
|
|
121
|
+
RESOLVED,
|
|
122
|
+
UNCONFIRMED
|
|
123
|
+
}
|
|
124
124
|
}
|
|
@@ -14,13 +14,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
14
14
|
exports.GetCitationsWithMissingFieldsRequest = void 0;
|
|
15
15
|
var GetCitationsWithMissingFieldsRequest;
|
|
16
16
|
(function (GetCitationsWithMissingFieldsRequest) {
|
|
17
|
-
var CaseStatusCategoryEnum;
|
|
18
|
-
(function (CaseStatusCategoryEnum) {
|
|
19
|
-
CaseStatusCategoryEnum[CaseStatusCategoryEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
|
|
20
|
-
CaseStatusCategoryEnum[CaseStatusCategoryEnum["CANCELLED"] = 'CANCELLED'] = "CANCELLED";
|
|
21
|
-
CaseStatusCategoryEnum[CaseStatusCategoryEnum["RESOLVED"] = 'RESOLVED'] = "RESOLVED";
|
|
22
|
-
CaseStatusCategoryEnum[CaseStatusCategoryEnum["UNCONFIRMED"] = 'UNCONFIRMED'] = "UNCONFIRMED";
|
|
23
|
-
})(CaseStatusCategoryEnum = GetCitationsWithMissingFieldsRequest.CaseStatusCategoryEnum || (GetCitationsWithMissingFieldsRequest.CaseStatusCategoryEnum = {}));
|
|
24
17
|
var CaseStatusesEnum;
|
|
25
18
|
(function (CaseStatusesEnum) {
|
|
26
19
|
CaseStatusesEnum[CaseStatusesEnum["AMENDEDDOWNWITHINCLASS"] = 'AMENDED_DOWN_WITHIN_CLASS'] = "AMENDEDDOWNWITHINCLASS";
|
|
@@ -115,4 +108,11 @@ var GetCitationsWithMissingFieldsRequest;
|
|
|
115
108
|
SelectedStatesEnum[SelectedStatesEnum["WV"] = 'WV'] = "WV";
|
|
116
109
|
SelectedStatesEnum[SelectedStatesEnum["WY"] = 'WY'] = "WY";
|
|
117
110
|
})(SelectedStatesEnum = GetCitationsWithMissingFieldsRequest.SelectedStatesEnum || (GetCitationsWithMissingFieldsRequest.SelectedStatesEnum = {}));
|
|
111
|
+
var StatusCategoriesEnum;
|
|
112
|
+
(function (StatusCategoriesEnum) {
|
|
113
|
+
StatusCategoriesEnum[StatusCategoriesEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
|
|
114
|
+
StatusCategoriesEnum[StatusCategoriesEnum["CANCELLED"] = 'CANCELLED'] = "CANCELLED";
|
|
115
|
+
StatusCategoriesEnum[StatusCategoriesEnum["RESOLVED"] = 'RESOLVED'] = "RESOLVED";
|
|
116
|
+
StatusCategoriesEnum[StatusCategoriesEnum["UNCONFIRMED"] = 'UNCONFIRMED'] = "UNCONFIRMED";
|
|
117
|
+
})(StatusCategoriesEnum = GetCitationsWithMissingFieldsRequest.StatusCategoriesEnum || (GetCitationsWithMissingFieldsRequest.StatusCategoriesEnum = {}));
|
|
118
118
|
})(GetCitationsWithMissingFieldsRequest = exports.GetCitationsWithMissingFieldsRequest || (exports.GetCitationsWithMissingFieldsRequest = {}));
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
import * as models from './models';
|
|
14
14
|
|
|
15
15
|
export interface GetCitationsWithMissingFieldsRequest {
|
|
16
|
-
"caseStatusCategory"?: GetCitationsWithMissingFieldsRequest.CaseStatusCategoryEnum;
|
|
17
16
|
"caseStatuses"?: Array<GetCitationsWithMissingFieldsRequest.CaseStatusesEnum>;
|
|
18
17
|
"endDate"?: string;
|
|
19
18
|
"maxRecords"?: number;
|
|
@@ -23,16 +22,11 @@ export interface GetCitationsWithMissingFieldsRequest {
|
|
|
23
22
|
"showMissingGenderRecords"?: boolean;
|
|
24
23
|
"showMissingNameRecords"?: boolean;
|
|
25
24
|
"startDate"?: string;
|
|
25
|
+
"statusCategories"?: Array<GetCitationsWithMissingFieldsRequest.StatusCategoriesEnum>;
|
|
26
26
|
"trailingDays"?: number;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export namespace GetCitationsWithMissingFieldsRequest {
|
|
30
|
-
export enum CaseStatusCategoryEnum {
|
|
31
|
-
ACTIVE = <any> 'ACTIVE',
|
|
32
|
-
CANCELLED = <any> 'CANCELLED',
|
|
33
|
-
RESOLVED = <any> 'RESOLVED',
|
|
34
|
-
UNCONFIRMED = <any> 'UNCONFIRMED'
|
|
35
|
-
}
|
|
36
30
|
export enum CaseStatusesEnum {
|
|
37
31
|
AMENDEDDOWNWITHINCLASS = <any> 'AMENDED_DOWN_WITHIN_CLASS',
|
|
38
32
|
AMENDEDFULLFINE = <any> 'AMENDED_FULL_FINE',
|
|
@@ -125,4 +119,10 @@ export namespace GetCitationsWithMissingFieldsRequest {
|
|
|
125
119
|
WV = <any> 'WV',
|
|
126
120
|
WY = <any> 'WY'
|
|
127
121
|
}
|
|
122
|
+
export enum StatusCategoriesEnum {
|
|
123
|
+
ACTIVE = <any> 'ACTIVE',
|
|
124
|
+
CANCELLED = <any> 'CANCELLED',
|
|
125
|
+
RESOLVED = <any> 'RESOLVED',
|
|
126
|
+
UNCONFIRMED = <any> 'UNCONFIRMED'
|
|
127
|
+
}
|
|
128
128
|
}
|
|
@@ -14,7 +14,5 @@ export interface GetCitationsWithMissingFieldsResponse {
|
|
|
14
14
|
"citations"?: Array<models.CitationWithMissingFields>;
|
|
15
15
|
"missingClientNameCount"?: number;
|
|
16
16
|
"missingCourtCount"?: number;
|
|
17
|
-
"missingDOBCount"?: number;
|
|
18
17
|
"missingFieldsCount"?: number;
|
|
19
|
-
"missingGenderCount"?: number;
|
|
20
18
|
}
|
|
@@ -16,8 +16,6 @@ export interface GetCitationsWithMissingFieldsResponse {
|
|
|
16
16
|
"citations"?: Array<models.CitationWithMissingFields>;
|
|
17
17
|
"missingClientNameCount"?: number;
|
|
18
18
|
"missingCourtCount"?: number;
|
|
19
|
-
"missingDOBCount"?: number;
|
|
20
19
|
"missingFieldsCount"?: number;
|
|
21
|
-
"missingGenderCount"?: number;
|
|
22
20
|
}
|
|
23
21
|
|