@otr-app/shared-backend-generated-client 2.3.179 → 2.3.181
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 +0 -1
- package/dist/angular/api/caseCounterOfferController.service.ts +4 -20
- package/dist/angular/model/caseCounterOptionModel.ts +3 -3
- package/dist/angular/model/counterOption.ts +3 -3
- package/dist/angular/model/models.ts +0 -1
- package/dist/otrBackendService.js +0 -10
- package/dist/otrBackendService.min.js +7 -7
- package/dist/typescript/api/CaseCounterOfferControllerApi.d.ts +1 -2
- package/dist/typescript/api/CaseCounterOfferControllerApi.js +1 -7
- package/dist/typescript/model/CaseCounterOptionModel.d.ts +2 -2
- package/dist/typescript/model/CaseCounterOptionModel.js +2 -2
- package/dist/typescript/model/CounterOption.d.ts +2 -2
- package/dist/typescript/model/CounterOption.js +2 -2
- package/dist/typescript/model/models.d.ts +0 -1
- package/dist/typescript/model/models.js +0 -1
- package/package.json +1 -1
|
@@ -23,9 +23,8 @@ export declare class CaseCounterOfferControllerApi {
|
|
|
23
23
|
* @summary acceptCaseCounter
|
|
24
24
|
* @param caseId caseId
|
|
25
25
|
* @param counterId counterId
|
|
26
|
-
* @param request request
|
|
27
26
|
*/
|
|
28
|
-
acceptCaseCounterUsingPUT(caseId: string, counterId: number,
|
|
27
|
+
acceptCaseCounterUsingPUT(caseId: string, counterId: number, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
29
28
|
/**
|
|
30
29
|
*
|
|
31
30
|
* @summary declineCaseCounter
|
|
@@ -28,9 +28,8 @@ var CaseCounterOfferControllerApi = /** @class */ (function () {
|
|
|
28
28
|
* @summary acceptCaseCounter
|
|
29
29
|
* @param caseId caseId
|
|
30
30
|
* @param counterId counterId
|
|
31
|
-
* @param request request
|
|
32
31
|
*/
|
|
33
|
-
CaseCounterOfferControllerApi.prototype.acceptCaseCounterUsingPUT = function (caseId, counterId,
|
|
32
|
+
CaseCounterOfferControllerApi.prototype.acceptCaseCounterUsingPUT = function (caseId, counterId, extraHttpRequestParams) {
|
|
34
33
|
var localVarPath = this.basePath + '/api/v1/cases/{caseId}/counters/{counterId}/accept'
|
|
35
34
|
.replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)))
|
|
36
35
|
.replace('{' + 'counterId' + '}', encodeURIComponent(String(counterId)));
|
|
@@ -44,14 +43,9 @@ var CaseCounterOfferControllerApi = /** @class */ (function () {
|
|
|
44
43
|
if (counterId === null || counterId === undefined) {
|
|
45
44
|
throw new Error('Required parameter counterId was null or undefined when calling acceptCaseCounterUsingPUT.');
|
|
46
45
|
}
|
|
47
|
-
// verify required parameter 'request' is not null or undefined
|
|
48
|
-
if (request === null || request === undefined) {
|
|
49
|
-
throw new Error('Required parameter request was null or undefined when calling acceptCaseCounterUsingPUT.');
|
|
50
|
-
}
|
|
51
46
|
var httpRequestParams = {
|
|
52
47
|
method: 'PUT',
|
|
53
48
|
url: localVarPath,
|
|
54
|
-
data: request,
|
|
55
49
|
params: queryParameters,
|
|
56
50
|
headers: headerParams
|
|
57
51
|
};
|
|
@@ -16,7 +16,7 @@ var CaseCounterOptionModel;
|
|
|
16
16
|
(function (CaseCounterOptionModel) {
|
|
17
17
|
var TypeEnum;
|
|
18
18
|
(function (TypeEnum) {
|
|
19
|
-
TypeEnum[TypeEnum["
|
|
20
|
-
TypeEnum[TypeEnum["
|
|
19
|
+
TypeEnum[TypeEnum["FEE"] = 'CHANGE_FEE'] = "FEE";
|
|
20
|
+
TypeEnum[TypeEnum["MBG"] = 'CHANGE_MBG'] = "MBG";
|
|
21
21
|
})(TypeEnum = CaseCounterOptionModel.TypeEnum || (CaseCounterOptionModel.TypeEnum = {}));
|
|
22
22
|
})(CaseCounterOptionModel = exports.CaseCounterOptionModel || (exports.CaseCounterOptionModel = {}));
|
|
@@ -16,7 +16,7 @@ var CounterOption;
|
|
|
16
16
|
(function (CounterOption) {
|
|
17
17
|
var CounterOptionTypeEnum;
|
|
18
18
|
(function (CounterOptionTypeEnum) {
|
|
19
|
-
CounterOptionTypeEnum[CounterOptionTypeEnum["
|
|
20
|
-
CounterOptionTypeEnum[CounterOptionTypeEnum["
|
|
19
|
+
CounterOptionTypeEnum[CounterOptionTypeEnum["FEE"] = 'CHANGE_FEE'] = "FEE";
|
|
20
|
+
CounterOptionTypeEnum[CounterOptionTypeEnum["MBG"] = 'CHANGE_MBG'] = "MBG";
|
|
21
21
|
})(CounterOptionTypeEnum = CounterOption.CounterOptionTypeEnum || (CounterOption.CounterOptionTypeEnum = {}));
|
|
22
22
|
})(CounterOption = exports.CounterOption || (exports.CounterOption = {}));
|
|
@@ -10,7 +10,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
10
10
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
-
__exportStar(require("./AcceptCaseCounterRequest"), exports);
|
|
14
13
|
__exportStar(require("./AccountLevelFee"), exports);
|
|
15
14
|
__exportStar(require("./AccountLevelFeeRequest"), exports);
|
|
16
15
|
__exportStar(require("./AccountLevelFeeResponse"), exports);
|