@otr-app/shared-backend-generated-client 2.6.3 → 2.6.5
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/conversationController.service.ts +71 -0
- package/dist/angular/model/getLawfirmSummaryCasesResponse.ts +1 -0
- package/dist/angular/model/googleLoginRequest.ts +11 -0
- package/dist/otrBackendService.js +45 -0
- package/dist/otrBackendService.min.js +7 -7
- package/dist/typescript/api/ConversationControllerApi.d.ts +7 -0
- package/dist/typescript/api/ConversationControllerApi.js +31 -0
- package/dist/typescript/model/GetLawfirmSummaryCasesResponse.d.ts +1 -0
- package/dist/typescript/model/GoogleLoginRequest.d.ts +9 -0
- package/dist/typescript/model/GoogleLoginRequest.js +8 -1
- package/dist/typescript-open-api/otr-backend.d.ts +8 -0
- package/dist/typescript-open-api/otr-backend.js +5 -0
- package/package.json +1 -1
|
@@ -54,6 +54,13 @@ export declare class ConversationControllerApi {
|
|
|
54
54
|
* @param messageId messageId
|
|
55
55
|
*/
|
|
56
56
|
markMessageAsDeletedUsingPUT(caseId: string, isDeleted: boolean, messageId: number, extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @summary sendOverduePaymentReminderIfStillOwed
|
|
60
|
+
* @param caseId caseId
|
|
61
|
+
* @param request request
|
|
62
|
+
*/
|
|
63
|
+
sendOverduePaymentReminderIfStillOwedUsingPOST(caseId: string, request: models.AddNewCaseMessageRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
57
64
|
/**
|
|
58
65
|
*
|
|
59
66
|
* @summary setFlagOnMessages
|
|
@@ -187,6 +187,37 @@ export class ConversationControllerApi {
|
|
|
187
187
|
}
|
|
188
188
|
return this.$http(httpRequestParams);
|
|
189
189
|
}
|
|
190
|
+
/**
|
|
191
|
+
*
|
|
192
|
+
* @summary sendOverduePaymentReminderIfStillOwed
|
|
193
|
+
* @param caseId caseId
|
|
194
|
+
* @param request request
|
|
195
|
+
*/
|
|
196
|
+
sendOverduePaymentReminderIfStillOwedUsingPOST(caseId, request, extraHttpRequestParams) {
|
|
197
|
+
const localVarPath = this.basePath + '/api/v1/cases/{caseId}/overdue-payment-reminder'
|
|
198
|
+
.replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)));
|
|
199
|
+
let queryParameters = {};
|
|
200
|
+
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
201
|
+
// verify required parameter 'caseId' is not null or undefined
|
|
202
|
+
if (caseId === null || caseId === undefined) {
|
|
203
|
+
throw new Error('Required parameter caseId was null or undefined when calling sendOverduePaymentReminderIfStillOwedUsingPOST.');
|
|
204
|
+
}
|
|
205
|
+
// verify required parameter 'request' is not null or undefined
|
|
206
|
+
if (request === null || request === undefined) {
|
|
207
|
+
throw new Error('Required parameter request was null or undefined when calling sendOverduePaymentReminderIfStillOwedUsingPOST.');
|
|
208
|
+
}
|
|
209
|
+
let httpRequestParams = {
|
|
210
|
+
method: 'POST',
|
|
211
|
+
url: localVarPath,
|
|
212
|
+
data: request,
|
|
213
|
+
params: queryParameters,
|
|
214
|
+
headers: headerParams
|
|
215
|
+
};
|
|
216
|
+
if (extraHttpRequestParams) {
|
|
217
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
218
|
+
}
|
|
219
|
+
return this.$http(httpRequestParams);
|
|
220
|
+
}
|
|
190
221
|
/**
|
|
191
222
|
*
|
|
192
223
|
* @summary setFlagOnMessages
|
|
@@ -10,8 +10,17 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
export interface GoogleLoginRequest {
|
|
13
|
+
"accessType"?: GoogleLoginRequest.AccessTypeEnum;
|
|
14
|
+
"authCode"?: string;
|
|
13
15
|
"citationId"?: number;
|
|
14
16
|
"firstName"?: string;
|
|
15
17
|
"identityToken"?: string;
|
|
16
18
|
"lastName"?: string;
|
|
19
|
+
"redirectUri"?: string;
|
|
20
|
+
}
|
|
21
|
+
export declare namespace GoogleLoginRequest {
|
|
22
|
+
enum AccessTypeEnum {
|
|
23
|
+
AuthorizationCode,
|
|
24
|
+
IdToken
|
|
25
|
+
}
|
|
17
26
|
}
|
|
@@ -9,4 +9,11 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
12
|
+
export var GoogleLoginRequest;
|
|
13
|
+
(function (GoogleLoginRequest) {
|
|
14
|
+
let AccessTypeEnum;
|
|
15
|
+
(function (AccessTypeEnum) {
|
|
16
|
+
AccessTypeEnum[AccessTypeEnum["AuthorizationCode"] = 'authorization_code'] = "AuthorizationCode";
|
|
17
|
+
AccessTypeEnum[AccessTypeEnum["IdToken"] = 'id_token'] = "IdToken";
|
|
18
|
+
})(AccessTypeEnum = GoogleLoginRequest.AccessTypeEnum || (GoogleLoginRequest.AccessTypeEnum = {}));
|
|
19
|
+
})(GoogleLoginRequest || (GoogleLoginRequest = {}));
|
|
@@ -11996,11 +11996,15 @@ export interface components {
|
|
|
11996
11996
|
};
|
|
11997
11997
|
/** GoogleLoginRequest */
|
|
11998
11998
|
GoogleLoginRequest: {
|
|
11999
|
+
/** @enum {string} */
|
|
12000
|
+
accessType?: GoogleLoginRequestAccessType;
|
|
12001
|
+
authCode?: string;
|
|
11999
12002
|
/** Format: int64 */
|
|
12000
12003
|
citationId?: number;
|
|
12001
12004
|
firstName?: string;
|
|
12002
12005
|
identityToken?: string;
|
|
12003
12006
|
lastName?: string;
|
|
12007
|
+
redirectUri?: string;
|
|
12004
12008
|
};
|
|
12005
12009
|
/** GptFunctionModel */
|
|
12006
12010
|
GptFunctionModel: {
|
|
@@ -42234,6 +42238,10 @@ export declare enum GetSocialProfileRequestAccessType {
|
|
|
42234
42238
|
classic = "classic",
|
|
42235
42239
|
limited = "limited"
|
|
42236
42240
|
}
|
|
42241
|
+
export declare enum GoogleLoginRequestAccessType {
|
|
42242
|
+
authorization_code = "authorization_code",
|
|
42243
|
+
id_token = "id_token"
|
|
42244
|
+
}
|
|
42237
42245
|
export declare enum HypotheticalPlanEligibilityModelHypotheticalEligibility {
|
|
42238
42246
|
FULLY_ELIGIBLE = "FULLY_ELIGIBLE",
|
|
42239
42247
|
NOT_ELIGIBLE = "NOT_ELIGIBLE",
|
|
@@ -1017,6 +1017,11 @@ export var GetSocialProfileRequestAccessType;
|
|
|
1017
1017
|
GetSocialProfileRequestAccessType["classic"] = "classic";
|
|
1018
1018
|
GetSocialProfileRequestAccessType["limited"] = "limited";
|
|
1019
1019
|
})(GetSocialProfileRequestAccessType || (GetSocialProfileRequestAccessType = {}));
|
|
1020
|
+
export var GoogleLoginRequestAccessType;
|
|
1021
|
+
(function (GoogleLoginRequestAccessType) {
|
|
1022
|
+
GoogleLoginRequestAccessType["authorization_code"] = "authorization_code";
|
|
1023
|
+
GoogleLoginRequestAccessType["id_token"] = "id_token";
|
|
1024
|
+
})(GoogleLoginRequestAccessType || (GoogleLoginRequestAccessType = {}));
|
|
1020
1025
|
export var HypotheticalPlanEligibilityModelHypotheticalEligibility;
|
|
1021
1026
|
(function (HypotheticalPlanEligibilityModelHypotheticalEligibility) {
|
|
1022
1027
|
HypotheticalPlanEligibilityModelHypotheticalEligibility["FULLY_ELIGIBLE"] = "FULLY_ELIGIBLE";
|