@otr-app/shared-backend-generated-client 2.0.5 → 2.0.9
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/typescript/api/AuditLawfirmEventsControllerApi.d.ts +1 -1
- package/dist/typescript/api/CaseActionsControllerApi.d.ts +18 -8
- package/dist/typescript/api/CaseActionsControllerApi.js +73 -24
- package/dist/typescript/api/CaseStatusControllerApi.d.ts +1 -1
- package/dist/typescript/api/CatchAllControllerApi.d.ts +7 -7
- package/dist/typescript/api/CatchAllControllerApi.js +7 -7
- package/dist/typescript/api/CitationControllerApi.d.ts +1 -1
- package/dist/typescript/api/CrmControllerApi.d.ts +1 -1
- package/dist/typescript/api/CustomerReviewControllerApi.d.ts +1 -1
- package/dist/typescript/api/LawfirmControllerApi.d.ts +1 -1
- package/dist/typescript/api/LawfirmFeeCoverageControllerApi.d.ts +1 -1
- package/dist/typescript/api/ListCasesControllerApi.d.ts +1 -1
- package/dist/typescript/model/AddActionToCaseRequest.d.ts +1 -1
- package/dist/typescript/model/CaseActionDomain.d.ts +2 -1
- package/dist/typescript/model/CaseActionDomainReq.d.ts +1 -0
- package/dist/typescript/model/CaseActionDomainRes.d.ts +1 -0
- package/dist/typescript/model/CaseDomainReq.d.ts +1 -1
- package/dist/typescript/model/CaseDomainRes.d.ts +1 -1
- package/dist/typescript/model/CaseMessageDomain.d.ts +1 -2
- package/dist/typescript/model/GetCaseActionResponse.d.ts +1 -1
- package/dist/typescript/model/GetCaseActionTimelineResponse.d.ts +2 -2
- package/dist/typescript/model/MarkActionAsDeletedResponse.d.ts +15 -0
- package/dist/typescript/model/MarkActionAsDeletedResponse.js +13 -0
- package/dist/typescript/model/UpdateCaseActionRequest.d.ts +14 -0
- package/dist/typescript/model/UpdateCaseActionRequest.js +13 -0
- package/dist/typescript/model/UpdateCaseActionResponse.d.ts +15 -0
- package/dist/typescript/model/UpdateCaseActionResponse.js +13 -0
- package/dist/typescript/model/models.d.ts +3 -2
- package/dist/typescript/model/models.js +3 -2
- package/package.json +4 -4
|
@@ -27,5 +27,5 @@ export declare class AuditLawfirmEventsControllerApi {
|
|
|
27
27
|
* @param limit limit
|
|
28
28
|
* @param nextPageToken nextPageToken
|
|
29
29
|
*/
|
|
30
|
-
listLawfirmAuditEventsByCursorUsingGET(lawfirmId: number, excludeTypes?:
|
|
30
|
+
listLawfirmAuditEventsByCursorUsingGET(lawfirmId: number, excludeTypes?: 'CASE_BOOKING' | 'CASE_MATCH' | 'CITATION_UPLOAD' | 'LAWFIRM_ACCOUNT_PRIORITY' | 'LAWFIRM_ACCOUNT_STATUS' | 'LAWFIRM_DAILY_CAPACITY' | 'LAWFIRM_TOTAL_CAPACITY' | 'SAVE_VACATION_MODE_END_DATE' | 'SAVE_VACATION_MODE_REASON' | 'VACATION_MODE_TOGGLE', includeTypes?: 'CASE_BOOKING' | 'CASE_MATCH' | 'CITATION_UPLOAD' | 'LAWFIRM_ACCOUNT_PRIORITY' | 'LAWFIRM_ACCOUNT_STATUS' | 'LAWFIRM_DAILY_CAPACITY' | 'LAWFIRM_TOTAL_CAPACITY' | 'SAVE_VACATION_MODE_END_DATE' | 'SAVE_VACATION_MODE_REASON' | 'VACATION_MODE_TOGGLE', limit?: number, nextPageToken?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListLawfirmAuditEventsByCursorResponse>;
|
|
31
31
|
}
|
|
@@ -25,13 +25,6 @@ export declare class CaseActionsControllerApi {
|
|
|
25
25
|
* @param request request
|
|
26
26
|
*/
|
|
27
27
|
addActionToCaseV2UsingPOST(caseId: string, request: models.AddActionToCaseRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.AddActionToCaseResponse>;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @summary deleteActionFromCase
|
|
31
|
-
* @param caseActionIdString caseActionIdString
|
|
32
|
-
* @param caseId caseId
|
|
33
|
-
*/
|
|
34
|
-
deleteActionFromCaseUsingDELETE(caseActionIdString: string, caseId: string, extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
35
28
|
/**
|
|
36
29
|
*
|
|
37
30
|
* @summary getActionTimeline
|
|
@@ -47,6 +40,23 @@ export declare class CaseActionsControllerApi {
|
|
|
47
40
|
*
|
|
48
41
|
* @summary getCaseActions
|
|
49
42
|
* @param caseId caseId
|
|
43
|
+
* @param showDeleted showDeleted
|
|
44
|
+
*/
|
|
45
|
+
getCaseActionsUsingGET(caseId: string, showDeleted?: boolean, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCaseActionResponse>;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @summary markActionAsDeleted
|
|
49
|
+
* @param caseActionId caseActionId
|
|
50
|
+
* @param caseId caseId
|
|
51
|
+
* @param isDeleted isDeleted
|
|
52
|
+
*/
|
|
53
|
+
markActionAsDeletedUsingDELETE(caseActionId: number, caseId: string, isDeleted: boolean, extraHttpRequestParams?: any): ng.IHttpPromise<models.MarkActionAsDeletedResponse>;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @summary updateCaseAction
|
|
57
|
+
* @param caseActionId caseActionId
|
|
58
|
+
* @param caseId caseId
|
|
59
|
+
* @param request request
|
|
50
60
|
*/
|
|
51
|
-
|
|
61
|
+
updateCaseActionUsingPUT(caseActionId: number, caseId: string, request: models.UpdateCaseActionRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.UpdateCaseActionResponse>;
|
|
52
62
|
}
|
|
@@ -56,26 +56,20 @@ var CaseActionsControllerApi = /** @class */ (function () {
|
|
|
56
56
|
};
|
|
57
57
|
/**
|
|
58
58
|
*
|
|
59
|
-
* @summary
|
|
60
|
-
* @param caseActionIdString caseActionIdString
|
|
59
|
+
* @summary getActionTimeline
|
|
61
60
|
* @param caseId caseId
|
|
62
61
|
*/
|
|
63
|
-
CaseActionsControllerApi.prototype.
|
|
64
|
-
var localVarPath = this.basePath + '/api/{caseId}/actions/
|
|
65
|
-
.replace('{' + 'caseActionIdString' + '}', encodeURIComponent(String(caseActionIdString)))
|
|
62
|
+
CaseActionsControllerApi.prototype.getActionTimelineUsingGET = function (caseId, extraHttpRequestParams) {
|
|
63
|
+
var localVarPath = this.basePath + '/api/v1/cases/{caseId}/actions/timeline'
|
|
66
64
|
.replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)));
|
|
67
65
|
var queryParameters = {};
|
|
68
66
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
69
|
-
// verify required parameter 'caseActionIdString' is not null or undefined
|
|
70
|
-
if (caseActionIdString === null || caseActionIdString === undefined) {
|
|
71
|
-
throw new Error('Required parameter caseActionIdString was null or undefined when calling deleteActionFromCaseUsingDELETE.');
|
|
72
|
-
}
|
|
73
67
|
// verify required parameter 'caseId' is not null or undefined
|
|
74
68
|
if (caseId === null || caseId === undefined) {
|
|
75
|
-
throw new Error('Required parameter caseId was null or undefined when calling
|
|
69
|
+
throw new Error('Required parameter caseId was null or undefined when calling getActionTimelineUsingGET.');
|
|
76
70
|
}
|
|
77
71
|
var httpRequestParams = {
|
|
78
|
-
method: '
|
|
72
|
+
method: 'GET',
|
|
79
73
|
url: localVarPath,
|
|
80
74
|
params: queryParameters,
|
|
81
75
|
headers: headerParams
|
|
@@ -87,17 +81,40 @@ var CaseActionsControllerApi = /** @class */ (function () {
|
|
|
87
81
|
};
|
|
88
82
|
/**
|
|
89
83
|
*
|
|
90
|
-
* @summary
|
|
84
|
+
* @summary getAllActions
|
|
85
|
+
*/
|
|
86
|
+
CaseActionsControllerApi.prototype.getAllActionsUsingGET = function (extraHttpRequestParams) {
|
|
87
|
+
var localVarPath = this.basePath + '/api/v1/cases/actions';
|
|
88
|
+
var queryParameters = {};
|
|
89
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
90
|
+
var httpRequestParams = {
|
|
91
|
+
method: 'GET',
|
|
92
|
+
url: localVarPath,
|
|
93
|
+
params: queryParameters,
|
|
94
|
+
headers: headerParams
|
|
95
|
+
};
|
|
96
|
+
if (extraHttpRequestParams) {
|
|
97
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
98
|
+
}
|
|
99
|
+
return this.$http(httpRequestParams);
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @summary getCaseActions
|
|
91
104
|
* @param caseId caseId
|
|
105
|
+
* @param showDeleted showDeleted
|
|
92
106
|
*/
|
|
93
|
-
CaseActionsControllerApi.prototype.
|
|
94
|
-
var localVarPath = this.basePath + '/api/v1/cases/{caseId}/actions
|
|
107
|
+
CaseActionsControllerApi.prototype.getCaseActionsUsingGET = function (caseId, showDeleted, extraHttpRequestParams) {
|
|
108
|
+
var localVarPath = this.basePath + '/api/v1/cases/{caseId}/actions'
|
|
95
109
|
.replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)));
|
|
96
110
|
var queryParameters = {};
|
|
97
111
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
98
112
|
// verify required parameter 'caseId' is not null or undefined
|
|
99
113
|
if (caseId === null || caseId === undefined) {
|
|
100
|
-
throw new Error('Required parameter caseId was null or undefined when calling
|
|
114
|
+
throw new Error('Required parameter caseId was null or undefined when calling getCaseActionsUsingGET.');
|
|
115
|
+
}
|
|
116
|
+
if (showDeleted !== undefined) {
|
|
117
|
+
queryParameters['showDeleted'] = showDeleted;
|
|
101
118
|
}
|
|
102
119
|
var httpRequestParams = {
|
|
103
120
|
method: 'GET',
|
|
@@ -112,14 +129,34 @@ var CaseActionsControllerApi = /** @class */ (function () {
|
|
|
112
129
|
};
|
|
113
130
|
/**
|
|
114
131
|
*
|
|
115
|
-
* @summary
|
|
132
|
+
* @summary markActionAsDeleted
|
|
133
|
+
* @param caseActionId caseActionId
|
|
134
|
+
* @param caseId caseId
|
|
135
|
+
* @param isDeleted isDeleted
|
|
116
136
|
*/
|
|
117
|
-
CaseActionsControllerApi.prototype.
|
|
118
|
-
var localVarPath = this.basePath + '/api/v1/cases/actions'
|
|
137
|
+
CaseActionsControllerApi.prototype.markActionAsDeletedUsingDELETE = function (caseActionId, caseId, isDeleted, extraHttpRequestParams) {
|
|
138
|
+
var localVarPath = this.basePath + '/api/v1/cases/{caseId}/actions/{caseActionId}'
|
|
139
|
+
.replace('{' + 'caseActionId' + '}', encodeURIComponent(String(caseActionId)))
|
|
140
|
+
.replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)));
|
|
119
141
|
var queryParameters = {};
|
|
120
142
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
143
|
+
// verify required parameter 'caseActionId' is not null or undefined
|
|
144
|
+
if (caseActionId === null || caseActionId === undefined) {
|
|
145
|
+
throw new Error('Required parameter caseActionId was null or undefined when calling markActionAsDeletedUsingDELETE.');
|
|
146
|
+
}
|
|
147
|
+
// verify required parameter 'caseId' is not null or undefined
|
|
148
|
+
if (caseId === null || caseId === undefined) {
|
|
149
|
+
throw new Error('Required parameter caseId was null or undefined when calling markActionAsDeletedUsingDELETE.');
|
|
150
|
+
}
|
|
151
|
+
// verify required parameter 'isDeleted' is not null or undefined
|
|
152
|
+
if (isDeleted === null || isDeleted === undefined) {
|
|
153
|
+
throw new Error('Required parameter isDeleted was null or undefined when calling markActionAsDeletedUsingDELETE.');
|
|
154
|
+
}
|
|
155
|
+
if (isDeleted !== undefined) {
|
|
156
|
+
queryParameters['isDeleted'] = isDeleted;
|
|
157
|
+
}
|
|
121
158
|
var httpRequestParams = {
|
|
122
|
-
method: '
|
|
159
|
+
method: 'DELETE',
|
|
123
160
|
url: localVarPath,
|
|
124
161
|
params: queryParameters,
|
|
125
162
|
headers: headerParams
|
|
@@ -131,21 +168,33 @@ var CaseActionsControllerApi = /** @class */ (function () {
|
|
|
131
168
|
};
|
|
132
169
|
/**
|
|
133
170
|
*
|
|
134
|
-
* @summary
|
|
171
|
+
* @summary updateCaseAction
|
|
172
|
+
* @param caseActionId caseActionId
|
|
135
173
|
* @param caseId caseId
|
|
174
|
+
* @param request request
|
|
136
175
|
*/
|
|
137
|
-
CaseActionsControllerApi.prototype.
|
|
138
|
-
var localVarPath = this.basePath + '/api/v1/cases/{caseId}/actions'
|
|
176
|
+
CaseActionsControllerApi.prototype.updateCaseActionUsingPUT = function (caseActionId, caseId, request, extraHttpRequestParams) {
|
|
177
|
+
var localVarPath = this.basePath + '/api/v1/cases/{caseId}/actions/{caseActionId}'
|
|
178
|
+
.replace('{' + 'caseActionId' + '}', encodeURIComponent(String(caseActionId)))
|
|
139
179
|
.replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)));
|
|
140
180
|
var queryParameters = {};
|
|
141
181
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
182
|
+
// verify required parameter 'caseActionId' is not null or undefined
|
|
183
|
+
if (caseActionId === null || caseActionId === undefined) {
|
|
184
|
+
throw new Error('Required parameter caseActionId was null or undefined when calling updateCaseActionUsingPUT.');
|
|
185
|
+
}
|
|
142
186
|
// verify required parameter 'caseId' is not null or undefined
|
|
143
187
|
if (caseId === null || caseId === undefined) {
|
|
144
|
-
throw new Error('Required parameter caseId was null or undefined when calling
|
|
188
|
+
throw new Error('Required parameter caseId was null or undefined when calling updateCaseActionUsingPUT.');
|
|
189
|
+
}
|
|
190
|
+
// verify required parameter 'request' is not null or undefined
|
|
191
|
+
if (request === null || request === undefined) {
|
|
192
|
+
throw new Error('Required parameter request was null or undefined when calling updateCaseActionUsingPUT.');
|
|
145
193
|
}
|
|
146
194
|
var httpRequestParams = {
|
|
147
|
-
method: '
|
|
195
|
+
method: 'PUT',
|
|
148
196
|
url: localVarPath,
|
|
197
|
+
data: request,
|
|
149
198
|
params: queryParameters,
|
|
150
199
|
headers: headerParams
|
|
151
200
|
};
|
|
@@ -29,5 +29,5 @@ export declare class CaseStatusControllerApi {
|
|
|
29
29
|
* @summary getCaseStatuses
|
|
30
30
|
* @param categories categories
|
|
31
31
|
*/
|
|
32
|
-
getCaseStatusesUsingGET(categories?:
|
|
32
|
+
getCaseStatusesUsingGET(categories?: 'ACTIVE' | 'CANCELLED' | 'RESOLVED' | 'UNCONFIRMED', extraHttpRequestParams?: any): ng.IHttpPromise<Array<models.CaseStatusDetailsResponse>>;
|
|
33
33
|
}
|
|
@@ -21,35 +21,35 @@ export declare class CatchAllControllerApi {
|
|
|
21
21
|
*
|
|
22
22
|
* @summary unmappedRequest
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
unmappedRequestUsingDELETE(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
* @summary unmappedRequest
|
|
28
28
|
*/
|
|
29
|
-
|
|
29
|
+
unmappedRequestUsingGET(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
32
|
* @summary unmappedRequest
|
|
33
33
|
*/
|
|
34
|
-
|
|
34
|
+
unmappedRequestUsingHEAD(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
37
|
* @summary unmappedRequest
|
|
38
38
|
*/
|
|
39
|
-
|
|
39
|
+
unmappedRequestUsingOPTIONS(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
42
|
* @summary unmappedRequest
|
|
43
43
|
*/
|
|
44
|
-
|
|
44
|
+
unmappedRequestUsingPATCH(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
45
45
|
/**
|
|
46
46
|
*
|
|
47
47
|
* @summary unmappedRequest
|
|
48
48
|
*/
|
|
49
|
-
|
|
49
|
+
unmappedRequestUsingPOST(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
52
|
* @summary unmappedRequest
|
|
53
53
|
*/
|
|
54
|
-
|
|
54
|
+
unmappedRequestUsingPUT(extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
55
55
|
}
|
|
@@ -27,7 +27,7 @@ var CatchAllControllerApi = /** @class */ (function () {
|
|
|
27
27
|
*
|
|
28
28
|
* @summary unmappedRequest
|
|
29
29
|
*/
|
|
30
|
-
CatchAllControllerApi.prototype.
|
|
30
|
+
CatchAllControllerApi.prototype.unmappedRequestUsingDELETE = function (extraHttpRequestParams) {
|
|
31
31
|
var localVarPath = this.basePath + '/api/**';
|
|
32
32
|
var queryParameters = {};
|
|
33
33
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
@@ -46,7 +46,7 @@ var CatchAllControllerApi = /** @class */ (function () {
|
|
|
46
46
|
*
|
|
47
47
|
* @summary unmappedRequest
|
|
48
48
|
*/
|
|
49
|
-
CatchAllControllerApi.prototype.
|
|
49
|
+
CatchAllControllerApi.prototype.unmappedRequestUsingGET = function (extraHttpRequestParams) {
|
|
50
50
|
var localVarPath = this.basePath + '/api/**';
|
|
51
51
|
var queryParameters = {};
|
|
52
52
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
@@ -65,7 +65,7 @@ var CatchAllControllerApi = /** @class */ (function () {
|
|
|
65
65
|
*
|
|
66
66
|
* @summary unmappedRequest
|
|
67
67
|
*/
|
|
68
|
-
CatchAllControllerApi.prototype.
|
|
68
|
+
CatchAllControllerApi.prototype.unmappedRequestUsingHEAD = function (extraHttpRequestParams) {
|
|
69
69
|
var localVarPath = this.basePath + '/api/**';
|
|
70
70
|
var queryParameters = {};
|
|
71
71
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
@@ -84,7 +84,7 @@ var CatchAllControllerApi = /** @class */ (function () {
|
|
|
84
84
|
*
|
|
85
85
|
* @summary unmappedRequest
|
|
86
86
|
*/
|
|
87
|
-
CatchAllControllerApi.prototype.
|
|
87
|
+
CatchAllControllerApi.prototype.unmappedRequestUsingOPTIONS = function (extraHttpRequestParams) {
|
|
88
88
|
var localVarPath = this.basePath + '/api/**';
|
|
89
89
|
var queryParameters = {};
|
|
90
90
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
@@ -103,7 +103,7 @@ var CatchAllControllerApi = /** @class */ (function () {
|
|
|
103
103
|
*
|
|
104
104
|
* @summary unmappedRequest
|
|
105
105
|
*/
|
|
106
|
-
CatchAllControllerApi.prototype.
|
|
106
|
+
CatchAllControllerApi.prototype.unmappedRequestUsingPATCH = function (extraHttpRequestParams) {
|
|
107
107
|
var localVarPath = this.basePath + '/api/**';
|
|
108
108
|
var queryParameters = {};
|
|
109
109
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
@@ -122,7 +122,7 @@ var CatchAllControllerApi = /** @class */ (function () {
|
|
|
122
122
|
*
|
|
123
123
|
* @summary unmappedRequest
|
|
124
124
|
*/
|
|
125
|
-
CatchAllControllerApi.prototype.
|
|
125
|
+
CatchAllControllerApi.prototype.unmappedRequestUsingPOST = function (extraHttpRequestParams) {
|
|
126
126
|
var localVarPath = this.basePath + '/api/**';
|
|
127
127
|
var queryParameters = {};
|
|
128
128
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
@@ -141,7 +141,7 @@ var CatchAllControllerApi = /** @class */ (function () {
|
|
|
141
141
|
*
|
|
142
142
|
* @summary unmappedRequest
|
|
143
143
|
*/
|
|
144
|
-
CatchAllControllerApi.prototype.
|
|
144
|
+
CatchAllControllerApi.prototype.unmappedRequestUsingPUT = function (extraHttpRequestParams) {
|
|
145
145
|
var localVarPath = this.basePath + '/api/**';
|
|
146
146
|
var queryParameters = {};
|
|
147
147
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
@@ -78,7 +78,7 @@ export declare class CitationControllerApi {
|
|
|
78
78
|
* @param regionCodes regionCodes
|
|
79
79
|
* @param trailingDays trailingDays
|
|
80
80
|
*/
|
|
81
|
-
getNoViolationCitationsUsingGET(regionCodes?:
|
|
81
|
+
getNoViolationCitationsUsingGET(regionCodes?: string, trailingDays?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetNoViolationCitationsResponse>;
|
|
82
82
|
/**
|
|
83
83
|
*
|
|
84
84
|
* @summary postMissingCourtForCitation
|
|
@@ -35,7 +35,7 @@ export declare class CrmControllerApi {
|
|
|
35
35
|
* @summary getTemplates
|
|
36
36
|
* @param category category
|
|
37
37
|
*/
|
|
38
|
-
getTemplatesUsingGET(category?:
|
|
38
|
+
getTemplatesUsingGET(category?: string, extraHttpRequestParams?: any): ng.IHttpPromise<Array<string>>;
|
|
39
39
|
/**
|
|
40
40
|
*
|
|
41
41
|
* @summary replyToTicket
|
|
@@ -37,7 +37,7 @@ export declare class CustomerReviewControllerApi {
|
|
|
37
37
|
* @param state state
|
|
38
38
|
* @param tags tags
|
|
39
39
|
*/
|
|
40
|
-
listCustomerReviewsUsingGET(includeAnonymous?: boolean, includeRatings?: boolean, isFeatured?: boolean, lawfirmId?: number, limit?: number, nextPageToken?: string, previousPageToken?: string, state?: 'AK' | 'AL' | 'AR' | 'AZ' | 'CA' | 'CO' | 'CT' | 'DC' | 'DE' | 'FL' | 'GA' | 'HI' | 'IA' | 'ID' | 'IL' | 'IN' | 'KS' | 'KY' | 'LA' | 'MA' | 'MD' | 'ME' | 'MI' | 'MN' | 'MO' | 'MS' | 'MT' | 'NC' | 'ND' | 'NE' | 'NH' | 'NJ' | 'NM' | 'NV' | 'NY' | 'OH' | 'OK' | 'OR' | 'PA' | 'RI' | 'SC' | 'SD' | 'TN' | 'TX' | 'UT' | 'VA' | 'VT' | 'WA' | 'WI' | 'WV' | 'WY', tags?:
|
|
40
|
+
listCustomerReviewsUsingGET(includeAnonymous?: boolean, includeRatings?: boolean, isFeatured?: boolean, lawfirmId?: number, limit?: number, nextPageToken?: string, previousPageToken?: string, state?: 'AK' | 'AL' | 'AR' | 'AZ' | 'CA' | 'CO' | 'CT' | 'DC' | 'DE' | 'FL' | 'GA' | 'HI' | 'IA' | 'ID' | 'IL' | 'IN' | 'KS' | 'KY' | 'LA' | 'MA' | 'MD' | 'ME' | 'MI' | 'MN' | 'MO' | 'MS' | 'MT' | 'NC' | 'ND' | 'NE' | 'NH' | 'NJ' | 'NM' | 'NV' | 'NY' | 'OH' | 'OK' | 'OR' | 'PA' | 'RI' | 'SC' | 'SD' | 'TN' | 'TX' | 'UT' | 'VA' | 'VT' | 'WA' | 'WI' | 'WV' | 'WY', tags?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListReviewsResponse>;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @summary listEligibleStatusesForReview
|
|
@@ -110,7 +110,7 @@ export declare class LawfirmControllerApi {
|
|
|
110
110
|
* @param states states
|
|
111
111
|
* @param statuses statuses
|
|
112
112
|
*/
|
|
113
|
-
getLawfirmsUsingGET(acceptsAccidentTickets?: boolean, acceptsPastDueTickets?: boolean, includeTestLawfirms?: boolean, includeVacationMode?: boolean, q?: string, states?:
|
|
113
|
+
getLawfirmsUsingGET(acceptsAccidentTickets?: boolean, acceptsPastDueTickets?: boolean, includeTestLawfirms?: boolean, includeVacationMode?: boolean, q?: string, states?: 'AK' | 'AL' | 'AR' | 'AZ' | 'CA' | 'CO' | 'CT' | 'DC' | 'DE' | 'FL' | 'GA' | 'HI' | 'IA' | 'ID' | 'IL' | 'IN' | 'KS' | 'KY' | 'LA' | 'MA' | 'MD' | 'ME' | 'MI' | 'MN' | 'MO' | 'MS' | 'MT' | 'NC' | 'ND' | 'NE' | 'NH' | 'NJ' | 'NM' | 'NV' | 'NY' | 'OH' | 'OK' | 'OR' | 'PA' | 'RI' | 'SC' | 'SD' | 'TN' | 'TX' | 'UT' | 'VA' | 'VT' | 'WA' | 'WI' | 'WV' | 'WY', statuses?: 'ACCOUNT_CLOSED' | 'DUPLICATE' | 'ESTABLISHED' | 'FUTURE_LEAD' | 'IN_TRIAL' | 'LAWFIRM_INTERESTED' | 'LAWFIRM_LEAD' | 'LAWFIRM_NOT_INTERESTED' | 'NOT_INTERESTED_FEE_SPLITTING_ETHICS' | 'NOT_INTERESTED_REFUND_ETHICS' | 'ONBOARDING' | 'TEMPORARILY_TURNED_OFF' | 'TERMINATED_FRAUD' | 'TERMINATED_POOR_SERVICE' | 'TERMINATED_POOR_SUCCESS' | 'UNDER_REVIEW', extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmsResponse>;
|
|
114
114
|
/**
|
|
115
115
|
*
|
|
116
116
|
* @summary getOtrLawfirmNotes
|
|
@@ -66,7 +66,7 @@ export declare class LawfirmFeeCoverageControllerApi {
|
|
|
66
66
|
* @param courtsToRemove courtsToRemove
|
|
67
67
|
* @param lawfirmId lawfirmId
|
|
68
68
|
*/
|
|
69
|
-
removeCourtsUsingDELETE(courtsToRemove:
|
|
69
|
+
removeCourtsUsingDELETE(courtsToRemove: number, lawfirmId: string, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
70
70
|
/**
|
|
71
71
|
*
|
|
72
72
|
* @summary removeCoverage
|
|
@@ -39,5 +39,5 @@ export declare class ListCasesControllerApi {
|
|
|
39
39
|
* @param sortBy sortBy
|
|
40
40
|
* @param statusCategories statusCategories
|
|
41
41
|
*/
|
|
42
|
-
listDashboardCasesUsingGET(userId: number, limit?: number, previousPageToken?: string, sortBy?: 'BOOKING_CONFIRMED_DATE' | 'CITATION_ISSUE_DATE', statusCategories?:
|
|
42
|
+
listDashboardCasesUsingGET(userId: number, limit?: number, previousPageToken?: string, sortBy?: 'BOOKING_CONFIRMED_DATE' | 'CITATION_ISSUE_DATE', statusCategories?: 'ACTIVE' | 'CANCELLED' | 'RESOLVED' | 'UNCONFIRMED', extraHttpRequestParams?: any): ng.IHttpPromise<models.ListDashboardCasesResponse>;
|
|
43
43
|
}
|
|
@@ -11,13 +11,14 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface CaseActionDomain {
|
|
14
|
-
"actionDate"?:
|
|
14
|
+
"actionDate"?: string;
|
|
15
15
|
"actionNote"?: string;
|
|
16
16
|
"actionType"?: CaseActionDomain.ActionTypeEnum;
|
|
17
17
|
"author"?: models.AuthorModel;
|
|
18
18
|
"authorId"?: number;
|
|
19
19
|
"authorName"?: string;
|
|
20
20
|
"caseActionId"?: number;
|
|
21
|
+
"isDeleted"?: boolean;
|
|
21
22
|
}
|
|
22
23
|
export declare namespace CaseActionDomain {
|
|
23
24
|
enum ActionTypeEnum {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface CaseDomainReq {
|
|
14
|
-
"actions"?: Array<models.
|
|
14
|
+
"actions"?: Array<models.CaseActionDomain>;
|
|
15
15
|
"adjustedFineAmount"?: number;
|
|
16
16
|
"adjustedPointCount"?: number;
|
|
17
17
|
"bookingConfirmedDate"?: models.TimestampReq;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface CaseDomainRes {
|
|
14
|
-
"actions"?: Array<models.
|
|
14
|
+
"actions"?: Array<models.CaseActionDomain>;
|
|
15
15
|
"adjustedFineAmount"?: number;
|
|
16
16
|
"adjustedPointCount"?: number;
|
|
17
17
|
"bookingConfirmedDate"?: models.TimestampRes;
|
|
@@ -9,7 +9,6 @@
|
|
|
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 CaseMessageDomain {
|
|
14
13
|
"authorFirstname"?: string;
|
|
15
14
|
"authorLastname"?: string;
|
|
@@ -19,7 +18,7 @@ export interface CaseMessageDomain {
|
|
|
19
18
|
"mediaUrl"?: string;
|
|
20
19
|
"messageBody"?: string;
|
|
21
20
|
"messageId"?: number;
|
|
22
|
-
"messageSentDateUtc"?:
|
|
21
|
+
"messageSentDateUtc"?: string;
|
|
23
22
|
}
|
|
24
23
|
export declare namespace CaseMessageDomain {
|
|
25
24
|
enum AuthorRoleTypeEnum {
|
|
@@ -11,6 +11,6 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface GetCaseActionTimelineResponse {
|
|
14
|
-
"actionsNotTaken"?: Array<models.
|
|
15
|
-
"actionsTaken"?: Array<models.
|
|
14
|
+
"actionsNotTaken"?: Array<models.CaseActionDomain>;
|
|
15
|
+
"actionsTaken"?: Array<models.CaseActionDomain>;
|
|
16
16
|
}
|
|
@@ -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 MarkActionAsDeletedResponse {
|
|
14
|
+
"caseAction"?: models.CaseActionDomain;
|
|
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 });
|
|
@@ -0,0 +1,14 @@
|
|
|
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 UpdateCaseActionRequest {
|
|
13
|
+
"note"?: string;
|
|
14
|
+
}
|
|
@@ -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 });
|
|
@@ -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 UpdateCaseActionResponse {
|
|
14
|
+
"caseAction"?: models.CaseActionDomain;
|
|
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 });
|
|
@@ -61,8 +61,6 @@ export * from './CancelationDetailsReq';
|
|
|
61
61
|
export * from './CancelationDetailsRes';
|
|
62
62
|
export * from './CaptureChargeFromCasePaymentRequest';
|
|
63
63
|
export * from './CaseActionDomain';
|
|
64
|
-
export * from './CaseActionDomainReq';
|
|
65
|
-
export * from './CaseActionDomainRes';
|
|
66
64
|
export * from './CaseAlert';
|
|
67
65
|
export * from './CaseBookingsStats';
|
|
68
66
|
export * from './CaseChargeResponsePojo';
|
|
@@ -358,6 +356,7 @@ export * from './LobEventRequest';
|
|
|
358
356
|
export * from './LobMailingAddress';
|
|
359
357
|
export * from './LocalTime';
|
|
360
358
|
export * from './LostCaseWithTransferNotReversed';
|
|
359
|
+
export * from './MarkActionAsDeletedResponse';
|
|
361
360
|
export * from './MarkCaseAsResolvedRequest';
|
|
362
361
|
export * from './MarkCaseAsResolvedResponse';
|
|
363
362
|
export * from './MatchCaseResponse';
|
|
@@ -505,6 +504,8 @@ export * from './TrafficViolationTypeDomain';
|
|
|
505
504
|
export * from './TransferCaseRequest';
|
|
506
505
|
export * from './USStateDomain';
|
|
507
506
|
export * from './UpdateAddress';
|
|
507
|
+
export * from './UpdateCaseActionRequest';
|
|
508
|
+
export * from './UpdateCaseActionResponse';
|
|
508
509
|
export * from './UpdateCaseDeclineTicketsRequest';
|
|
509
510
|
export * from './UpdateCasePaymentRequest';
|
|
510
511
|
export * from './UpdateCitationAddressRequest';
|
|
@@ -73,8 +73,6 @@ __exportStar(require("./CancelationDetailsReq"), exports);
|
|
|
73
73
|
__exportStar(require("./CancelationDetailsRes"), exports);
|
|
74
74
|
__exportStar(require("./CaptureChargeFromCasePaymentRequest"), exports);
|
|
75
75
|
__exportStar(require("./CaseActionDomain"), exports);
|
|
76
|
-
__exportStar(require("./CaseActionDomainReq"), exports);
|
|
77
|
-
__exportStar(require("./CaseActionDomainRes"), exports);
|
|
78
76
|
__exportStar(require("./CaseAlert"), exports);
|
|
79
77
|
__exportStar(require("./CaseBookingsStats"), exports);
|
|
80
78
|
__exportStar(require("./CaseChargeResponsePojo"), exports);
|
|
@@ -370,6 +368,7 @@ __exportStar(require("./LobEventRequest"), exports);
|
|
|
370
368
|
__exportStar(require("./LobMailingAddress"), exports);
|
|
371
369
|
__exportStar(require("./LocalTime"), exports);
|
|
372
370
|
__exportStar(require("./LostCaseWithTransferNotReversed"), exports);
|
|
371
|
+
__exportStar(require("./MarkActionAsDeletedResponse"), exports);
|
|
373
372
|
__exportStar(require("./MarkCaseAsResolvedRequest"), exports);
|
|
374
373
|
__exportStar(require("./MarkCaseAsResolvedResponse"), exports);
|
|
375
374
|
__exportStar(require("./MatchCaseResponse"), exports);
|
|
@@ -517,6 +516,8 @@ __exportStar(require("./TrafficViolationTypeDomain"), exports);
|
|
|
517
516
|
__exportStar(require("./TransferCaseRequest"), exports);
|
|
518
517
|
__exportStar(require("./USStateDomain"), exports);
|
|
519
518
|
__exportStar(require("./UpdateAddress"), exports);
|
|
519
|
+
__exportStar(require("./UpdateCaseActionRequest"), exports);
|
|
520
|
+
__exportStar(require("./UpdateCaseActionResponse"), exports);
|
|
520
521
|
__exportStar(require("./UpdateCaseDeclineTicketsRequest"), exports);
|
|
521
522
|
__exportStar(require("./UpdateCasePaymentRequest"), exports);
|
|
522
523
|
__exportStar(require("./UpdateCitationAddressRequest"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@otr-app/shared-backend-generated-client",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
4
|
"main": "dist/otrBackendService.min.js",
|
|
5
5
|
"files": [
|
|
6
6
|
"/dist"
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"author": "Off the Record, Inc.",
|
|
15
15
|
"scripts": {
|
|
16
16
|
"download:devo": "curl https://otr-backend-service-us-devo.offtherecord.com/v2/api-docs -o api/otr-service.json",
|
|
17
|
-
"clean-source": "find dist/typescript -type f | grep -v
|
|
18
|
-
"generate:devo-ts": "openapi-generator-cli generate -i api/otr-service.json -o dist/typescript -g typescript-angularjs && tsc && npm run clean-source",
|
|
17
|
+
"clean-source": "find dist/typescript -type f | grep -v \"\\.d\\.ts\\|\\.js\" | xargs rm",
|
|
18
|
+
"generate:devo-ts": "npm run download:devo && openapi-generator-cli generate -i api/otr-service.json -o dist/typescript -g typescript-angularjs && tsc && npm run clean-source",
|
|
19
19
|
"generate:devo": "npm run download:devo && gulp codegen",
|
|
20
20
|
"generate:local": "curl http://localhost:8080/v2/api-docs -o api/otr-service.json && gulp codegen",
|
|
21
|
-
"
|
|
21
|
+
"bootstrap": "npm i @openapitools/openapi-generator-cli -g && openapi-generator-cli version-manager set 4.3.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/node": "^18.0.3",
|