@otr-app/shared-backend-generated-client 2.3.4 → 2.3.6
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/CaseReferralCodeControllerApi.d.ts +2 -2
- package/dist/typescript/api/CaseReferralCodeControllerApi.js +2 -2
- package/dist/typescript/model/LawfirmCaseDomain.d.ts +1 -0
- package/dist/typescript/model/LawfirmCaseDomainReq.d.ts +1 -0
- package/dist/typescript/model/LawfirmCaseDomainRes.d.ts +1 -0
- package/package.json +1 -1
|
@@ -19,8 +19,8 @@ export declare class CaseReferralCodeControllerApi {
|
|
|
19
19
|
static $inject: string[];
|
|
20
20
|
constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
23
|
-
* @summary
|
|
22
|
+
* Apply referral code to a case to adjust the estimated cost and/or to assign the rightful lawfirm. This operation is idempotent
|
|
23
|
+
* @summary applyReferralCode
|
|
24
24
|
* @param caseId caseId
|
|
25
25
|
* @param codeId codeId
|
|
26
26
|
*/
|
|
@@ -24,8 +24,8 @@ var CaseReferralCodeControllerApi = /** @class */ (function () {
|
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
28
|
-
* @summary
|
|
27
|
+
* Apply referral code to a case to adjust the estimated cost and/or to assign the rightful lawfirm. This operation is idempotent
|
|
28
|
+
* @summary applyReferralCode
|
|
29
29
|
* @param caseId caseId
|
|
30
30
|
* @param codeId codeId
|
|
31
31
|
*/
|
|
@@ -21,6 +21,7 @@ export interface LawfirmCaseDomain {
|
|
|
21
21
|
"lawfirmName"?: string;
|
|
22
22
|
"lawfirmPrimaryEmail"?: string;
|
|
23
23
|
"lawfirmReceiptDateUtc"?: models.Timestamp;
|
|
24
|
+
"maxExpirationDateUtc"?: string;
|
|
24
25
|
"obfuscatedPictureUrl"?: string;
|
|
25
26
|
"profilePictureUrl"?: string;
|
|
26
27
|
"refundOwner"?: LawfirmCaseDomain.RefundOwnerEnum;
|
|
@@ -21,6 +21,7 @@ export interface LawfirmCaseDomainReq {
|
|
|
21
21
|
"lawfirmName"?: string;
|
|
22
22
|
"lawfirmPrimaryEmail"?: string;
|
|
23
23
|
"lawfirmReceiptDateUtc"?: models.TimestampReq;
|
|
24
|
+
"maxExpirationDateUtc"?: string;
|
|
24
25
|
"obfuscatedPictureUrl"?: string;
|
|
25
26
|
"profilePictureUrl"?: string;
|
|
26
27
|
"refundOwner"?: LawfirmCaseDomainReq.RefundOwnerEnum;
|
|
@@ -21,6 +21,7 @@ export interface LawfirmCaseDomainRes {
|
|
|
21
21
|
"lawfirmName"?: string;
|
|
22
22
|
"lawfirmPrimaryEmail"?: string;
|
|
23
23
|
"lawfirmReceiptDateUtc"?: models.TimestampRes;
|
|
24
|
+
"maxExpirationDateUtc"?: string;
|
|
24
25
|
"obfuscatedPictureUrl"?: string;
|
|
25
26
|
"profilePictureUrl"?: string;
|
|
26
27
|
"refundOwner"?: LawfirmCaseDomainRes.RefundOwnerEnum;
|