@cosmotech/aip-client 0.2.0-dev2 → 0.2.0-dev3
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/README.md +141 -4
- package/api/default-api.ts +8 -15
- package/api/impact-api.ts +507 -0
- package/api/investment-api.ts +1308 -0
- package/api/metric-api.ts +185 -164
- package/api/metric-costs-api.ts +144 -0
- package/api/metric-costs-per-year-api.ts +200 -200
- package/api/objective-api.ts +538 -44
- package/api/objective-weight-api.ts +190 -190
- package/api/objective-weights-api.ts +144 -0
- package/api/option-api.ts +925 -0
- package/api/value-framework-api.ts +1223 -109
- package/api/value-framework-costs-api.ts +239 -0
- package/api/value-framework-weights-api.ts +144 -0
- package/api.ts +8 -1
- package/base.ts +1 -25
- package/common.ts +20 -43
- package/configuration.ts +31 -20
- package/dist/api/default-api.d.ts +3 -10
- package/dist/api/default-api.js +7 -13
- package/dist/api/impact-api.d.ts +245 -0
- package/dist/api/impact-api.js +493 -0
- package/dist/api/investment-api.d.ts +607 -0
- package/dist/api/investment-api.js +1248 -0
- package/dist/api/metric-api.d.ts +97 -88
- package/dist/api/metric-api.js +185 -157
- package/dist/api/metric-costs-api.d.ts +75 -0
- package/dist/api/metric-costs-api.js +146 -0
- package/dist/api/metric-costs-per-year-api.d.ts +105 -108
- package/dist/api/metric-costs-per-year-api.js +199 -192
- package/dist/api/objective-api.d.ts +242 -21
- package/dist/api/objective-api.js +508 -37
- package/dist/api/objective-weight-api.d.ts +105 -108
- package/dist/api/objective-weight-api.js +189 -182
- package/dist/api/objective-weights-api.d.ts +75 -0
- package/dist/api/objective-weights-api.js +146 -0
- package/dist/api/option-api.d.ts +436 -0
- package/dist/api/option-api.js +888 -0
- package/dist/api/value-framework-api.d.ts +528 -21
- package/dist/api/value-framework-api.js +1138 -78
- package/dist/api/value-framework-costs-api.d.ts +119 -0
- package/dist/api/value-framework-costs-api.js +236 -0
- package/dist/api/value-framework-weights-api.d.ts +75 -0
- package/dist/api/value-framework-weights-api.js +146 -0
- package/dist/api.d.ts +8 -1
- package/dist/api.js +8 -1
- package/dist/base.d.ts +1 -25
- package/dist/base.js +1 -20
- package/dist/common.d.ts +6 -37
- package/dist/common.js +17 -39
- package/dist/configuration.d.ts +25 -18
- package/dist/configuration.js +4 -3
- package/dist/esm/api/default-api.d.ts +3 -10
- package/dist/esm/api/default-api.js +7 -13
- package/dist/esm/api/impact-api.d.ts +245 -0
- package/dist/esm/api/impact-api.js +486 -0
- package/dist/esm/api/investment-api.d.ts +607 -0
- package/dist/esm/api/investment-api.js +1241 -0
- package/dist/esm/api/metric-api.d.ts +97 -88
- package/dist/esm/api/metric-api.js +185 -157
- package/dist/esm/api/metric-costs-api.d.ts +75 -0
- package/dist/esm/api/metric-costs-api.js +139 -0
- package/dist/esm/api/metric-costs-per-year-api.d.ts +105 -108
- package/dist/esm/api/metric-costs-per-year-api.js +199 -192
- package/dist/esm/api/objective-api.d.ts +242 -21
- package/dist/esm/api/objective-api.js +508 -37
- package/dist/esm/api/objective-weight-api.d.ts +105 -108
- package/dist/esm/api/objective-weight-api.js +189 -182
- package/dist/esm/api/objective-weights-api.d.ts +75 -0
- package/dist/esm/api/objective-weights-api.js +139 -0
- package/dist/esm/api/option-api.d.ts +436 -0
- package/dist/esm/api/option-api.js +881 -0
- package/dist/esm/api/value-framework-api.d.ts +528 -21
- package/dist/esm/api/value-framework-api.js +1137 -77
- package/dist/esm/api/value-framework-costs-api.d.ts +119 -0
- package/dist/esm/api/value-framework-costs-api.js +229 -0
- package/dist/esm/api/value-framework-weights-api.d.ts +75 -0
- package/dist/esm/api/value-framework-weights-api.js +139 -0
- package/dist/esm/api.d.ts +8 -1
- package/dist/esm/api.js +8 -1
- package/dist/esm/base.d.ts +1 -25
- package/dist/esm/base.js +1 -20
- package/dist/esm/common.d.ts +6 -37
- package/dist/esm/common.js +15 -38
- package/dist/esm/configuration.d.ts +25 -18
- package/dist/esm/configuration.js +4 -3
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/models/evolution-type.d.ts +16 -0
- package/dist/esm/models/evolution-type.js +17 -0
- package/dist/esm/models/httpvalidation-error.d.ts +2 -12
- package/dist/esm/models/httpvalidation-error.js +1 -1
- package/dist/esm/models/impact-apiresponse.d.ts +33 -0
- package/dist/esm/models/{validation-error-loc-inner.js → impact-apiresponse.js} +1 -1
- package/dist/esm/models/impact-create.d.ts +37 -0
- package/dist/esm/models/impact-create.js +14 -0
- package/dist/esm/models/impact-update.d.ts +22 -0
- package/dist/esm/models/impact-update.js +14 -0
- package/dist/esm/models/index.d.ts +11 -1
- package/dist/esm/models/index.js +11 -1
- package/dist/esm/models/investment-create.d.ts +21 -0
- package/dist/esm/models/investment-create.js +14 -0
- package/dist/esm/models/investment-response.d.ts +25 -0
- package/dist/esm/models/investment-response.js +14 -0
- package/dist/esm/models/investment-update.d.ts +18 -0
- package/dist/esm/models/investment-update.js +14 -0
- package/dist/esm/models/{validation-error-loc-inner.d.ts → location-inner.d.ts} +2 -7
- package/dist/esm/models/location-inner.js +14 -0
- package/dist/esm/models/measurement-type.d.ts +1 -6
- package/dist/esm/models/measurement-type.js +1 -6
- package/dist/esm/models/metric-costs-per-year-create.d.ts +1 -17
- package/dist/esm/models/metric-costs-per-year-create.js +1 -1
- package/dist/esm/models/metric-costs-per-year-response.d.ts +1 -18
- package/dist/esm/models/metric-costs-per-year-response.js +1 -1
- package/dist/esm/models/metric-costs-per-year-update.d.ts +1 -13
- package/dist/esm/models/metric-costs-per-year-update.js +1 -1
- package/dist/esm/models/metric-create.d.ts +3 -28
- package/dist/esm/models/metric-create.js +1 -1
- package/dist/esm/models/metric-response.d.ts +3 -50
- package/dist/esm/models/metric-response.js +1 -1
- package/dist/esm/models/metric-type.d.ts +1 -6
- package/dist/esm/models/metric-type.js +1 -6
- package/dist/esm/models/metric-update.d.ts +3 -35
- package/dist/esm/models/metric-update.js +1 -1
- package/dist/esm/models/objective-create.d.ts +1 -10
- package/dist/esm/models/objective-create.js +1 -1
- package/dist/esm/models/objective-response.d.ts +1 -30
- package/dist/esm/models/objective-response.js +1 -1
- package/dist/esm/models/objective-update.d.ts +1 -13
- package/dist/esm/models/objective-update.js +1 -1
- package/dist/esm/models/objective-weight-create.d.ts +1 -9
- package/dist/esm/models/objective-weight-create.js +1 -1
- package/dist/esm/models/objective-weight-response.d.ts +1 -14
- package/dist/esm/models/objective-weight-response.js +1 -1
- package/dist/esm/models/objective-weight-update.d.ts +1 -8
- package/dist/esm/models/objective-weight-update.js +1 -1
- package/dist/esm/models/option-create.d.ts +33 -0
- package/dist/esm/models/option-create.js +14 -0
- package/dist/esm/models/option-response.d.ts +31 -0
- package/dist/esm/models/option-response.js +14 -0
- package/dist/esm/models/option-update.d.ts +19 -0
- package/dist/esm/models/option-update.js +14 -0
- package/dist/esm/models/validation-error.d.ts +3 -33
- package/dist/esm/models/validation-error.js +1 -1
- package/dist/esm/models/value-framework-create.d.ts +1 -10
- package/dist/esm/models/value-framework-create.js +1 -1
- package/dist/esm/models/value-framework-response.d.ts +1 -30
- package/dist/esm/models/value-framework-response.js +1 -1
- package/dist/esm/models/value-framework-update.d.ts +1 -13
- package/dist/esm/models/value-framework-update.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/models/evolution-type.d.ts +16 -0
- package/dist/models/evolution-type.js +20 -0
- package/dist/models/httpvalidation-error.d.ts +2 -12
- package/dist/models/httpvalidation-error.js +1 -1
- package/dist/models/impact-apiresponse.d.ts +33 -0
- package/dist/models/{validation-error-loc-inner.js → impact-apiresponse.js} +1 -1
- package/dist/models/impact-create.d.ts +37 -0
- package/dist/models/impact-create.js +15 -0
- package/dist/models/impact-update.d.ts +22 -0
- package/dist/models/impact-update.js +15 -0
- package/dist/models/index.d.ts +11 -1
- package/dist/models/index.js +11 -1
- package/dist/models/investment-create.d.ts +21 -0
- package/dist/models/investment-create.js +15 -0
- package/dist/models/investment-response.d.ts +25 -0
- package/dist/models/investment-response.js +15 -0
- package/dist/models/investment-update.d.ts +18 -0
- package/dist/models/investment-update.js +15 -0
- package/dist/models/{validation-error-loc-inner.d.ts → location-inner.d.ts} +2 -7
- package/dist/models/location-inner.js +15 -0
- package/dist/models/measurement-type.d.ts +1 -6
- package/dist/models/measurement-type.js +1 -6
- package/dist/models/metric-costs-per-year-create.d.ts +1 -17
- package/dist/models/metric-costs-per-year-create.js +1 -1
- package/dist/models/metric-costs-per-year-response.d.ts +1 -18
- package/dist/models/metric-costs-per-year-response.js +1 -1
- package/dist/models/metric-costs-per-year-update.d.ts +1 -13
- package/dist/models/metric-costs-per-year-update.js +1 -1
- package/dist/models/metric-create.d.ts +3 -28
- package/dist/models/metric-create.js +1 -1
- package/dist/models/metric-response.d.ts +3 -50
- package/dist/models/metric-response.js +1 -1
- package/dist/models/metric-type.d.ts +1 -6
- package/dist/models/metric-type.js +1 -6
- package/dist/models/metric-update.d.ts +3 -35
- package/dist/models/metric-update.js +1 -1
- package/dist/models/objective-create.d.ts +1 -10
- package/dist/models/objective-create.js +1 -1
- package/dist/models/objective-response.d.ts +1 -30
- package/dist/models/objective-response.js +1 -1
- package/dist/models/objective-update.d.ts +1 -13
- package/dist/models/objective-update.js +1 -1
- package/dist/models/objective-weight-create.d.ts +1 -9
- package/dist/models/objective-weight-create.js +1 -1
- package/dist/models/objective-weight-response.d.ts +1 -14
- package/dist/models/objective-weight-response.js +1 -1
- package/dist/models/objective-weight-update.d.ts +1 -8
- package/dist/models/objective-weight-update.js +1 -1
- package/dist/models/option-create.d.ts +33 -0
- package/dist/models/option-create.js +15 -0
- package/dist/models/option-response.d.ts +31 -0
- package/dist/models/option-response.js +15 -0
- package/dist/models/option-update.d.ts +19 -0
- package/dist/models/option-update.js +15 -0
- package/dist/models/validation-error.d.ts +3 -33
- package/dist/models/validation-error.js +1 -1
- package/dist/models/value-framework-create.d.ts +1 -10
- package/dist/models/value-framework-create.js +1 -1
- package/dist/models/value-framework-response.d.ts +1 -30
- package/dist/models/value-framework-response.js +1 -1
- package/dist/models/value-framework-update.d.ts +1 -13
- package/dist/models/value-framework-update.js +1 -1
- package/docs/DefaultApi.md +51 -0
- package/docs/EvolutionType.md +10 -0
- package/docs/HTTPValidationError.md +20 -0
- package/docs/ImpactAPIResponse.md +39 -0
- package/docs/ImpactApi.md +312 -0
- package/docs/ImpactCreate.md +29 -0
- package/docs/ImpactUpdate.md +29 -0
- package/docs/InvestmentApi.md +875 -0
- package/docs/InvestmentCreate.md +23 -0
- package/docs/InvestmentResponse.md +31 -0
- package/docs/InvestmentUpdate.md +23 -0
- package/docs/LocationInner.md +18 -0
- package/docs/MeasurementType.md +10 -0
- package/docs/MetricApi.md +299 -0
- package/docs/MetricCostsApi.md +66 -0
- package/docs/MetricCostsPerYearApi.md +307 -0
- package/docs/MetricCostsPerYearCreate.md +27 -0
- package/docs/MetricCostsPerYearResponse.md +31 -0
- package/docs/MetricCostsPerYearUpdate.md +23 -0
- package/docs/MetricCreate.md +33 -0
- package/docs/MetricResponse.md +43 -0
- package/docs/MetricType.md +12 -0
- package/docs/MetricUpdate.md +31 -0
- package/docs/ObjectiveApi.md +633 -0
- package/docs/ObjectiveCreate.md +23 -0
- package/docs/ObjectiveResponse.md +31 -0
- package/docs/ObjectiveUpdate.md +23 -0
- package/docs/ObjectiveWeightApi.md +298 -0
- package/docs/ObjectiveWeightCreate.md +25 -0
- package/docs/ObjectiveWeightResponse.md +27 -0
- package/docs/ObjectiveWeightUpdate.md +21 -0
- package/docs/ObjectiveWeightsApi.md +66 -0
- package/docs/OptionApi.md +602 -0
- package/docs/OptionCreate.md +29 -0
- package/docs/OptionResponse.md +37 -0
- package/docs/OptionUpdate.md +25 -0
- package/docs/ValidationError.md +28 -0
- package/docs/ValueFrameworkApi.md +1053 -0
- package/docs/ValueFrameworkCostsApi.md +128 -0
- package/docs/ValueFrameworkCreate.md +23 -0
- package/docs/ValueFrameworkResponse.md +31 -0
- package/docs/ValueFrameworkUpdate.md +23 -0
- package/docs/ValueFrameworkWeightsApi.md +66 -0
- package/index.ts +1 -1
- package/models/evolution-type.ts +26 -0
- package/models/httpvalidation-error.ts +2 -12
- package/models/impact-apiresponse.ts +43 -0
- package/models/impact-create.ts +47 -0
- package/models/impact-update.ts +32 -0
- package/models/index.ts +11 -1
- package/models/investment-create.ts +27 -0
- package/models/investment-response.ts +31 -0
- package/models/investment-update.ts +24 -0
- package/models/{validation-error-loc-inner.ts → location-inner.ts} +2 -7
- package/models/measurement-type.ts +1 -6
- package/models/metric-costs-per-year-create.ts +1 -17
- package/models/metric-costs-per-year-response.ts +1 -18
- package/models/metric-costs-per-year-update.ts +1 -13
- package/models/metric-create.ts +3 -28
- package/models/metric-response.ts +3 -50
- package/models/metric-type.ts +1 -6
- package/models/metric-update.ts +3 -35
- package/models/objective-create.ts +1 -10
- package/models/objective-response.ts +1 -30
- package/models/objective-update.ts +1 -13
- package/models/objective-weight-create.ts +1 -9
- package/models/objective-weight-response.ts +1 -14
- package/models/objective-weight-update.ts +1 -8
- package/models/option-create.ts +39 -0
- package/models/option-response.ts +37 -0
- package/models/option-update.ts +25 -0
- package/models/validation-error.ts +3 -33
- package/models/value-framework-create.ts +1 -10
- package/models/value-framework-response.ts +1 -30
- package/models/value-framework-update.ts +1 -13
- package/package.json +4 -4
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Asset Investment Planning
|
|
5
5
|
* API for Asset Investment Planning
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.2.0-
|
|
7
|
+
* The version of the OpenAPI document: 0.2.0-dev3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -28,10 +28,83 @@ import { DUMMY_BASE_URL, assertParamExists, setOAuthToObject, setSearchParams, s
|
|
|
28
28
|
import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
|
|
29
29
|
/**
|
|
30
30
|
* ObjectiveApi - axios parameter creator
|
|
31
|
-
* @export
|
|
32
31
|
*/
|
|
33
32
|
export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
34
33
|
return {
|
|
34
|
+
/**
|
|
35
|
+
* Create a new metric under this objective.
|
|
36
|
+
* @summary Create a metric for this objective
|
|
37
|
+
* @param {string} objectiveId UUID of the objective
|
|
38
|
+
* @param {MetricCreate} metricCreate
|
|
39
|
+
* @param {*} [options] Override http request option.
|
|
40
|
+
* @throws {RequiredError}
|
|
41
|
+
*/
|
|
42
|
+
createMetricForObjective: (objectiveId_1, metricCreate_1, ...args_1) => __awaiter(this, [objectiveId_1, metricCreate_1, ...args_1], void 0, function* (objectiveId, metricCreate, options = {}) {
|
|
43
|
+
// verify required parameter 'objectiveId' is not null or undefined
|
|
44
|
+
assertParamExists('createMetricForObjective', 'objectiveId', objectiveId);
|
|
45
|
+
// verify required parameter 'metricCreate' is not null or undefined
|
|
46
|
+
assertParamExists('createMetricForObjective', 'metricCreate', metricCreate);
|
|
47
|
+
const localVarPath = `/objective/{objective_id}/metric/`
|
|
48
|
+
.replace(`{${"objective_id"}}`, encodeURIComponent(String(objectiveId)));
|
|
49
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
50
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
51
|
+
let baseOptions;
|
|
52
|
+
if (configuration) {
|
|
53
|
+
baseOptions = configuration.baseOptions;
|
|
54
|
+
}
|
|
55
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
56
|
+
const localVarHeaderParameter = {};
|
|
57
|
+
const localVarQueryParameter = {};
|
|
58
|
+
// authentication OAuth2AuthorizationCodeBearer required
|
|
59
|
+
// oauth required
|
|
60
|
+
yield setOAuthToObject(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
61
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
62
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
63
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
64
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
65
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
66
|
+
localVarRequestOptions.data = serializeDataIfNeeded(metricCreate, localVarRequestOptions, configuration);
|
|
67
|
+
return {
|
|
68
|
+
url: toPathString(localVarUrlObj),
|
|
69
|
+
options: localVarRequestOptions,
|
|
70
|
+
};
|
|
71
|
+
}),
|
|
72
|
+
/**
|
|
73
|
+
* Delete an existing metric by its ID. Associated metric costs per year are also deleted via cascade.
|
|
74
|
+
* @summary Delete a metric for this objective
|
|
75
|
+
* @param {string} metricId UUID of the metric
|
|
76
|
+
* @param {string} objectiveId UUID of the objective
|
|
77
|
+
* @param {*} [options] Override http request option.
|
|
78
|
+
* @throws {RequiredError}
|
|
79
|
+
*/
|
|
80
|
+
deleteMetricForObjective: (metricId_1, objectiveId_1, ...args_1) => __awaiter(this, [metricId_1, objectiveId_1, ...args_1], void 0, function* (metricId, objectiveId, options = {}) {
|
|
81
|
+
// verify required parameter 'metricId' is not null or undefined
|
|
82
|
+
assertParamExists('deleteMetricForObjective', 'metricId', metricId);
|
|
83
|
+
// verify required parameter 'objectiveId' is not null or undefined
|
|
84
|
+
assertParamExists('deleteMetricForObjective', 'objectiveId', objectiveId);
|
|
85
|
+
const localVarPath = `/objective/{objective_id}/metric/{metric_id}`
|
|
86
|
+
.replace(`{${"metric_id"}}`, encodeURIComponent(String(metricId)))
|
|
87
|
+
.replace(`{${"objective_id"}}`, encodeURIComponent(String(objectiveId)));
|
|
88
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
89
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
90
|
+
let baseOptions;
|
|
91
|
+
if (configuration) {
|
|
92
|
+
baseOptions = configuration.baseOptions;
|
|
93
|
+
}
|
|
94
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
95
|
+
const localVarHeaderParameter = {};
|
|
96
|
+
const localVarQueryParameter = {};
|
|
97
|
+
// authentication OAuth2AuthorizationCodeBearer required
|
|
98
|
+
// oauth required
|
|
99
|
+
yield setOAuthToObject(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
100
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
101
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
102
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
103
|
+
return {
|
|
104
|
+
url: toPathString(localVarUrlObj),
|
|
105
|
+
options: localVarRequestOptions,
|
|
106
|
+
};
|
|
107
|
+
}),
|
|
35
108
|
/**
|
|
36
109
|
* Delete an existing objective by its ID. Associated metrics and objective weights are also deleted via cascade.
|
|
37
110
|
* @summary Delete an objective
|
|
@@ -39,7 +112,7 @@ export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
|
39
112
|
* @param {*} [options] Override http request option.
|
|
40
113
|
* @throws {RequiredError}
|
|
41
114
|
*/
|
|
42
|
-
deleteObjective: (
|
|
115
|
+
deleteObjective: (objectiveId_1, ...args_1) => __awaiter(this, [objectiveId_1, ...args_1], void 0, function* (objectiveId, options = {}) {
|
|
43
116
|
// verify required parameter 'objectiveId' is not null or undefined
|
|
44
117
|
assertParamExists('deleteObjective', 'objectiveId', objectiveId);
|
|
45
118
|
const localVarPath = `/objective/{objective_id}`
|
|
@@ -64,6 +137,84 @@ export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
|
64
137
|
options: localVarRequestOptions,
|
|
65
138
|
};
|
|
66
139
|
}),
|
|
140
|
+
/**
|
|
141
|
+
* Retrieve a specific metric for the objective.
|
|
142
|
+
* @summary Get a metric for this objective
|
|
143
|
+
* @param {string} metricId UUID of the metric
|
|
144
|
+
* @param {string} objectiveId UUID of the objective
|
|
145
|
+
* @param {*} [options] Override http request option.
|
|
146
|
+
* @throws {RequiredError}
|
|
147
|
+
*/
|
|
148
|
+
getMetricForObjective: (metricId_1, objectiveId_1, ...args_1) => __awaiter(this, [metricId_1, objectiveId_1, ...args_1], void 0, function* (metricId, objectiveId, options = {}) {
|
|
149
|
+
// verify required parameter 'metricId' is not null or undefined
|
|
150
|
+
assertParamExists('getMetricForObjective', 'metricId', metricId);
|
|
151
|
+
// verify required parameter 'objectiveId' is not null or undefined
|
|
152
|
+
assertParamExists('getMetricForObjective', 'objectiveId', objectiveId);
|
|
153
|
+
const localVarPath = `/objective/{objective_id}/metric/{metric_id}`
|
|
154
|
+
.replace(`{${"metric_id"}}`, encodeURIComponent(String(metricId)))
|
|
155
|
+
.replace(`{${"objective_id"}}`, encodeURIComponent(String(objectiveId)));
|
|
156
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
157
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
158
|
+
let baseOptions;
|
|
159
|
+
if (configuration) {
|
|
160
|
+
baseOptions = configuration.baseOptions;
|
|
161
|
+
}
|
|
162
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
163
|
+
const localVarHeaderParameter = {};
|
|
164
|
+
const localVarQueryParameter = {};
|
|
165
|
+
// authentication OAuth2AuthorizationCodeBearer required
|
|
166
|
+
// oauth required
|
|
167
|
+
yield setOAuthToObject(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
168
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
169
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
170
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
171
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
172
|
+
return {
|
|
173
|
+
url: toPathString(localVarUrlObj),
|
|
174
|
+
options: localVarRequestOptions,
|
|
175
|
+
};
|
|
176
|
+
}),
|
|
177
|
+
/**
|
|
178
|
+
* Retrieve a paginated list of all metrics for a specific objective.
|
|
179
|
+
* @summary List metrics for this objective
|
|
180
|
+
* @param {string} objectiveId UUID of the objective
|
|
181
|
+
* @param {number} [offset] Number of records to skip
|
|
182
|
+
* @param {number} [limit] Max number of records to return
|
|
183
|
+
* @param {*} [options] Override http request option.
|
|
184
|
+
* @throws {RequiredError}
|
|
185
|
+
*/
|
|
186
|
+
getMetricsForObjective: (objectiveId_1, offset_1, limit_1, ...args_1) => __awaiter(this, [objectiveId_1, offset_1, limit_1, ...args_1], void 0, function* (objectiveId, offset, limit, options = {}) {
|
|
187
|
+
// verify required parameter 'objectiveId' is not null or undefined
|
|
188
|
+
assertParamExists('getMetricsForObjective', 'objectiveId', objectiveId);
|
|
189
|
+
const localVarPath = `/objective/{objective_id}/metric/`
|
|
190
|
+
.replace(`{${"objective_id"}}`, encodeURIComponent(String(objectiveId)));
|
|
191
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
192
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
193
|
+
let baseOptions;
|
|
194
|
+
if (configuration) {
|
|
195
|
+
baseOptions = configuration.baseOptions;
|
|
196
|
+
}
|
|
197
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
198
|
+
const localVarHeaderParameter = {};
|
|
199
|
+
const localVarQueryParameter = {};
|
|
200
|
+
// authentication OAuth2AuthorizationCodeBearer required
|
|
201
|
+
// oauth required
|
|
202
|
+
yield setOAuthToObject(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
203
|
+
if (offset !== undefined) {
|
|
204
|
+
localVarQueryParameter['offset'] = offset;
|
|
205
|
+
}
|
|
206
|
+
if (limit !== undefined) {
|
|
207
|
+
localVarQueryParameter['limit'] = limit;
|
|
208
|
+
}
|
|
209
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
210
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
211
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
212
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
213
|
+
return {
|
|
214
|
+
url: toPathString(localVarUrlObj),
|
|
215
|
+
options: localVarRequestOptions,
|
|
216
|
+
};
|
|
217
|
+
}),
|
|
67
218
|
/**
|
|
68
219
|
* Retrieve a single objective by its ID.
|
|
69
220
|
* @summary Get an objective by ID
|
|
@@ -71,7 +222,7 @@ export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
|
71
222
|
* @param {*} [options] Override http request option.
|
|
72
223
|
* @throws {RequiredError}
|
|
73
224
|
*/
|
|
74
|
-
getObjectiveById: (
|
|
225
|
+
getObjectiveById: (objectiveId_1, ...args_1) => __awaiter(this, [objectiveId_1, ...args_1], void 0, function* (objectiveId, options = {}) {
|
|
75
226
|
// verify required parameter 'objectiveId' is not null or undefined
|
|
76
227
|
assertParamExists('getObjectiveById', 'objectiveId', objectiveId);
|
|
77
228
|
const localVarPath = `/objective/{objective_id}`
|
|
@@ -88,6 +239,7 @@ export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
|
88
239
|
// authentication OAuth2AuthorizationCodeBearer required
|
|
89
240
|
// oauth required
|
|
90
241
|
yield setOAuthToObject(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
242
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
91
243
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
92
244
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
93
245
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -104,7 +256,7 @@ export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
|
104
256
|
* @param {*} [options] Override http request option.
|
|
105
257
|
* @throws {RequiredError}
|
|
106
258
|
*/
|
|
107
|
-
getObjectives: (
|
|
259
|
+
getObjectives: (offset_1, limit_1, ...args_1) => __awaiter(this, [offset_1, limit_1, ...args_1], void 0, function* (offset, limit, options = {}) {
|
|
108
260
|
const localVarPath = `/objective/`;
|
|
109
261
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
110
262
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -124,9 +276,93 @@ export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
|
124
276
|
if (limit !== undefined) {
|
|
125
277
|
localVarQueryParameter['limit'] = limit;
|
|
126
278
|
}
|
|
279
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
280
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
281
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
282
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
283
|
+
return {
|
|
284
|
+
url: toPathString(localVarUrlObj),
|
|
285
|
+
options: localVarRequestOptions,
|
|
286
|
+
};
|
|
287
|
+
}),
|
|
288
|
+
/**
|
|
289
|
+
* Retrieve a paginated list of all objective weights for a specific objective.
|
|
290
|
+
* @summary List all objective weights for an objective
|
|
291
|
+
* @param {string} objectiveId UUID of the objective
|
|
292
|
+
* @param {number} [offset] Number of records to skip
|
|
293
|
+
* @param {number} [limit] Max number of records to return
|
|
294
|
+
* @param {*} [options] Override http request option.
|
|
295
|
+
* @throws {RequiredError}
|
|
296
|
+
*/
|
|
297
|
+
getWeightsForObjective: (objectiveId_1, offset_1, limit_1, ...args_1) => __awaiter(this, [objectiveId_1, offset_1, limit_1, ...args_1], void 0, function* (objectiveId, offset, limit, options = {}) {
|
|
298
|
+
// verify required parameter 'objectiveId' is not null or undefined
|
|
299
|
+
assertParamExists('getWeightsForObjective', 'objectiveId', objectiveId);
|
|
300
|
+
const localVarPath = `/objective/{objective_id}/weights/`
|
|
301
|
+
.replace(`{${"objective_id"}}`, encodeURIComponent(String(objectiveId)));
|
|
302
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
303
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
304
|
+
let baseOptions;
|
|
305
|
+
if (configuration) {
|
|
306
|
+
baseOptions = configuration.baseOptions;
|
|
307
|
+
}
|
|
308
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
309
|
+
const localVarHeaderParameter = {};
|
|
310
|
+
const localVarQueryParameter = {};
|
|
311
|
+
// authentication OAuth2AuthorizationCodeBearer required
|
|
312
|
+
// oauth required
|
|
313
|
+
yield setOAuthToObject(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
314
|
+
if (offset !== undefined) {
|
|
315
|
+
localVarQueryParameter['offset'] = offset;
|
|
316
|
+
}
|
|
317
|
+
if (limit !== undefined) {
|
|
318
|
+
localVarQueryParameter['limit'] = limit;
|
|
319
|
+
}
|
|
320
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
321
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
322
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
323
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
324
|
+
return {
|
|
325
|
+
url: toPathString(localVarUrlObj),
|
|
326
|
+
options: localVarRequestOptions,
|
|
327
|
+
};
|
|
328
|
+
}),
|
|
329
|
+
/**
|
|
330
|
+
* Update one or more fields of an existing metric. Only the fields included in the request body will be modified; omitted fields remain unchanged.
|
|
331
|
+
* @summary Partially update a metric for this objective
|
|
332
|
+
* @param {string} metricId UUID of the metric
|
|
333
|
+
* @param {string} objectiveId UUID of the objective
|
|
334
|
+
* @param {MetricUpdate} metricUpdate
|
|
335
|
+
* @param {*} [options] Override http request option.
|
|
336
|
+
* @throws {RequiredError}
|
|
337
|
+
*/
|
|
338
|
+
patchMetricForObjective: (metricId_1, objectiveId_1, metricUpdate_1, ...args_1) => __awaiter(this, [metricId_1, objectiveId_1, metricUpdate_1, ...args_1], void 0, function* (metricId, objectiveId, metricUpdate, options = {}) {
|
|
339
|
+
// verify required parameter 'metricId' is not null or undefined
|
|
340
|
+
assertParamExists('patchMetricForObjective', 'metricId', metricId);
|
|
341
|
+
// verify required parameter 'objectiveId' is not null or undefined
|
|
342
|
+
assertParamExists('patchMetricForObjective', 'objectiveId', objectiveId);
|
|
343
|
+
// verify required parameter 'metricUpdate' is not null or undefined
|
|
344
|
+
assertParamExists('patchMetricForObjective', 'metricUpdate', metricUpdate);
|
|
345
|
+
const localVarPath = `/objective/{objective_id}/metric/{metric_id}`
|
|
346
|
+
.replace(`{${"metric_id"}}`, encodeURIComponent(String(metricId)))
|
|
347
|
+
.replace(`{${"objective_id"}}`, encodeURIComponent(String(objectiveId)));
|
|
348
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
349
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
350
|
+
let baseOptions;
|
|
351
|
+
if (configuration) {
|
|
352
|
+
baseOptions = configuration.baseOptions;
|
|
353
|
+
}
|
|
354
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
355
|
+
const localVarHeaderParameter = {};
|
|
356
|
+
const localVarQueryParameter = {};
|
|
357
|
+
// authentication OAuth2AuthorizationCodeBearer required
|
|
358
|
+
// oauth required
|
|
359
|
+
yield setOAuthToObject(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
360
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
361
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
127
362
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
128
363
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
129
364
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
365
|
+
localVarRequestOptions.data = serializeDataIfNeeded(metricUpdate, localVarRequestOptions, configuration);
|
|
130
366
|
return {
|
|
131
367
|
url: toPathString(localVarUrlObj),
|
|
132
368
|
options: localVarRequestOptions,
|
|
@@ -140,7 +376,7 @@ export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
|
140
376
|
* @param {*} [options] Override http request option.
|
|
141
377
|
* @throws {RequiredError}
|
|
142
378
|
*/
|
|
143
|
-
patchObjective: (
|
|
379
|
+
patchObjective: (objectiveId_1, objectiveUpdate_1, ...args_1) => __awaiter(this, [objectiveId_1, objectiveUpdate_1, ...args_1], void 0, function* (objectiveId, objectiveUpdate, options = {}) {
|
|
144
380
|
// verify required parameter 'objectiveId' is not null or undefined
|
|
145
381
|
assertParamExists('patchObjective', 'objectiveId', objectiveId);
|
|
146
382
|
// verify required parameter 'objectiveUpdate' is not null or undefined
|
|
@@ -160,6 +396,7 @@ export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
|
160
396
|
// oauth required
|
|
161
397
|
yield setOAuthToObject(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
162
398
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
399
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
163
400
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
164
401
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
165
402
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -176,7 +413,7 @@ export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
|
176
413
|
* @param {*} [options] Override http request option.
|
|
177
414
|
* @throws {RequiredError}
|
|
178
415
|
*/
|
|
179
|
-
postObjective: (
|
|
416
|
+
postObjective: (objectiveCreate_1, ...args_1) => __awaiter(this, [objectiveCreate_1, ...args_1], void 0, function* (objectiveCreate, options = {}) {
|
|
180
417
|
// verify required parameter 'objectiveCreate' is not null or undefined
|
|
181
418
|
assertParamExists('postObjective', 'objectiveCreate', objectiveCreate);
|
|
182
419
|
const localVarPath = `/objective/`;
|
|
@@ -193,6 +430,7 @@ export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
|
193
430
|
// oauth required
|
|
194
431
|
yield setOAuthToObject(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
195
432
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
433
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
196
434
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
197
435
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
198
436
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -206,11 +444,44 @@ export const ObjectiveApiAxiosParamCreator = function (configuration) {
|
|
|
206
444
|
};
|
|
207
445
|
/**
|
|
208
446
|
* ObjectiveApi - functional programming interface
|
|
209
|
-
* @export
|
|
210
447
|
*/
|
|
211
448
|
export const ObjectiveApiFp = function (configuration) {
|
|
212
449
|
const localVarAxiosParamCreator = ObjectiveApiAxiosParamCreator(configuration);
|
|
213
450
|
return {
|
|
451
|
+
/**
|
|
452
|
+
* Create a new metric under this objective.
|
|
453
|
+
* @summary Create a metric for this objective
|
|
454
|
+
* @param {string} objectiveId UUID of the objective
|
|
455
|
+
* @param {MetricCreate} metricCreate
|
|
456
|
+
* @param {*} [options] Override http request option.
|
|
457
|
+
* @throws {RequiredError}
|
|
458
|
+
*/
|
|
459
|
+
createMetricForObjective(objectiveId, metricCreate, options) {
|
|
460
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
461
|
+
var _a, _b, _c;
|
|
462
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.createMetricForObjective(objectiveId, metricCreate, options);
|
|
463
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
464
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ObjectiveApi.createMetricForObjective']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
465
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
466
|
+
});
|
|
467
|
+
},
|
|
468
|
+
/**
|
|
469
|
+
* Delete an existing metric by its ID. Associated metric costs per year are also deleted via cascade.
|
|
470
|
+
* @summary Delete a metric for this objective
|
|
471
|
+
* @param {string} metricId UUID of the metric
|
|
472
|
+
* @param {string} objectiveId UUID of the objective
|
|
473
|
+
* @param {*} [options] Override http request option.
|
|
474
|
+
* @throws {RequiredError}
|
|
475
|
+
*/
|
|
476
|
+
deleteMetricForObjective(metricId, objectiveId, options) {
|
|
477
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
478
|
+
var _a, _b, _c;
|
|
479
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteMetricForObjective(metricId, objectiveId, options);
|
|
480
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
481
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ObjectiveApi.deleteMetricForObjective']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
482
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
483
|
+
});
|
|
484
|
+
},
|
|
214
485
|
/**
|
|
215
486
|
* Delete an existing objective by its ID. Associated metrics and objective weights are also deleted via cascade.
|
|
216
487
|
* @summary Delete an objective
|
|
@@ -219,12 +490,47 @@ export const ObjectiveApiFp = function (configuration) {
|
|
|
219
490
|
* @throws {RequiredError}
|
|
220
491
|
*/
|
|
221
492
|
deleteObjective(objectiveId, options) {
|
|
222
|
-
var _a, _b, _c;
|
|
223
493
|
return __awaiter(this, void 0, void 0, function* () {
|
|
494
|
+
var _a, _b, _c;
|
|
224
495
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteObjective(objectiveId, options);
|
|
225
|
-
const
|
|
226
|
-
const
|
|
227
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
496
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
497
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ObjectiveApi.deleteObjective']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
498
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
499
|
+
});
|
|
500
|
+
},
|
|
501
|
+
/**
|
|
502
|
+
* Retrieve a specific metric for the objective.
|
|
503
|
+
* @summary Get a metric for this objective
|
|
504
|
+
* @param {string} metricId UUID of the metric
|
|
505
|
+
* @param {string} objectiveId UUID of the objective
|
|
506
|
+
* @param {*} [options] Override http request option.
|
|
507
|
+
* @throws {RequiredError}
|
|
508
|
+
*/
|
|
509
|
+
getMetricForObjective(metricId, objectiveId, options) {
|
|
510
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
511
|
+
var _a, _b, _c;
|
|
512
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getMetricForObjective(metricId, objectiveId, options);
|
|
513
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
514
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ObjectiveApi.getMetricForObjective']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
515
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
516
|
+
});
|
|
517
|
+
},
|
|
518
|
+
/**
|
|
519
|
+
* Retrieve a paginated list of all metrics for a specific objective.
|
|
520
|
+
* @summary List metrics for this objective
|
|
521
|
+
* @param {string} objectiveId UUID of the objective
|
|
522
|
+
* @param {number} [offset] Number of records to skip
|
|
523
|
+
* @param {number} [limit] Max number of records to return
|
|
524
|
+
* @param {*} [options] Override http request option.
|
|
525
|
+
* @throws {RequiredError}
|
|
526
|
+
*/
|
|
527
|
+
getMetricsForObjective(objectiveId, offset, limit, options) {
|
|
528
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
529
|
+
var _a, _b, _c;
|
|
530
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getMetricsForObjective(objectiveId, offset, limit, options);
|
|
531
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
532
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ObjectiveApi.getMetricsForObjective']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
533
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
228
534
|
});
|
|
229
535
|
},
|
|
230
536
|
/**
|
|
@@ -235,12 +541,12 @@ export const ObjectiveApiFp = function (configuration) {
|
|
|
235
541
|
* @throws {RequiredError}
|
|
236
542
|
*/
|
|
237
543
|
getObjectiveById(objectiveId, options) {
|
|
238
|
-
var _a, _b, _c;
|
|
239
544
|
return __awaiter(this, void 0, void 0, function* () {
|
|
545
|
+
var _a, _b, _c;
|
|
240
546
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getObjectiveById(objectiveId, options);
|
|
241
|
-
const
|
|
242
|
-
const
|
|
243
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
547
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
548
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ObjectiveApi.getObjectiveById']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
549
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
244
550
|
});
|
|
245
551
|
},
|
|
246
552
|
/**
|
|
@@ -252,12 +558,48 @@ export const ObjectiveApiFp = function (configuration) {
|
|
|
252
558
|
* @throws {RequiredError}
|
|
253
559
|
*/
|
|
254
560
|
getObjectives(offset, limit, options) {
|
|
255
|
-
var _a, _b, _c;
|
|
256
561
|
return __awaiter(this, void 0, void 0, function* () {
|
|
562
|
+
var _a, _b, _c;
|
|
257
563
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getObjectives(offset, limit, options);
|
|
258
|
-
const
|
|
259
|
-
const
|
|
260
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
564
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
565
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ObjectiveApi.getObjectives']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
566
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
567
|
+
});
|
|
568
|
+
},
|
|
569
|
+
/**
|
|
570
|
+
* Retrieve a paginated list of all objective weights for a specific objective.
|
|
571
|
+
* @summary List all objective weights for an objective
|
|
572
|
+
* @param {string} objectiveId UUID of the objective
|
|
573
|
+
* @param {number} [offset] Number of records to skip
|
|
574
|
+
* @param {number} [limit] Max number of records to return
|
|
575
|
+
* @param {*} [options] Override http request option.
|
|
576
|
+
* @throws {RequiredError}
|
|
577
|
+
*/
|
|
578
|
+
getWeightsForObjective(objectiveId, offset, limit, options) {
|
|
579
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
580
|
+
var _a, _b, _c;
|
|
581
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getWeightsForObjective(objectiveId, offset, limit, options);
|
|
582
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
583
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ObjectiveApi.getWeightsForObjective']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
584
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
585
|
+
});
|
|
586
|
+
},
|
|
587
|
+
/**
|
|
588
|
+
* Update one or more fields of an existing metric. Only the fields included in the request body will be modified; omitted fields remain unchanged.
|
|
589
|
+
* @summary Partially update a metric for this objective
|
|
590
|
+
* @param {string} metricId UUID of the metric
|
|
591
|
+
* @param {string} objectiveId UUID of the objective
|
|
592
|
+
* @param {MetricUpdate} metricUpdate
|
|
593
|
+
* @param {*} [options] Override http request option.
|
|
594
|
+
* @throws {RequiredError}
|
|
595
|
+
*/
|
|
596
|
+
patchMetricForObjective(metricId, objectiveId, metricUpdate, options) {
|
|
597
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
598
|
+
var _a, _b, _c;
|
|
599
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.patchMetricForObjective(metricId, objectiveId, metricUpdate, options);
|
|
600
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
601
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ObjectiveApi.patchMetricForObjective']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
602
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
261
603
|
});
|
|
262
604
|
},
|
|
263
605
|
/**
|
|
@@ -269,12 +611,12 @@ export const ObjectiveApiFp = function (configuration) {
|
|
|
269
611
|
* @throws {RequiredError}
|
|
270
612
|
*/
|
|
271
613
|
patchObjective(objectiveId, objectiveUpdate, options) {
|
|
272
|
-
var _a, _b, _c;
|
|
273
614
|
return __awaiter(this, void 0, void 0, function* () {
|
|
615
|
+
var _a, _b, _c;
|
|
274
616
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.patchObjective(objectiveId, objectiveUpdate, options);
|
|
275
|
-
const
|
|
276
|
-
const
|
|
277
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
617
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
618
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ObjectiveApi.patchObjective']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
619
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
278
620
|
});
|
|
279
621
|
},
|
|
280
622
|
/**
|
|
@@ -285,23 +627,44 @@ export const ObjectiveApiFp = function (configuration) {
|
|
|
285
627
|
* @throws {RequiredError}
|
|
286
628
|
*/
|
|
287
629
|
postObjective(objectiveCreate, options) {
|
|
288
|
-
var _a, _b, _c;
|
|
289
630
|
return __awaiter(this, void 0, void 0, function* () {
|
|
631
|
+
var _a, _b, _c;
|
|
290
632
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.postObjective(objectiveCreate, options);
|
|
291
|
-
const
|
|
292
|
-
const
|
|
293
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
633
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
634
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ObjectiveApi.postObjective']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
635
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
294
636
|
});
|
|
295
637
|
},
|
|
296
638
|
};
|
|
297
639
|
};
|
|
298
640
|
/**
|
|
299
641
|
* ObjectiveApi - factory interface
|
|
300
|
-
* @export
|
|
301
642
|
*/
|
|
302
643
|
export const ObjectiveApiFactory = function (configuration, basePath, axios) {
|
|
303
644
|
const localVarFp = ObjectiveApiFp(configuration);
|
|
304
645
|
return {
|
|
646
|
+
/**
|
|
647
|
+
* Create a new metric under this objective.
|
|
648
|
+
* @summary Create a metric for this objective
|
|
649
|
+
* @param {string} objectiveId UUID of the objective
|
|
650
|
+
* @param {MetricCreate} metricCreate
|
|
651
|
+
* @param {*} [options] Override http request option.
|
|
652
|
+
* @throws {RequiredError}
|
|
653
|
+
*/
|
|
654
|
+
createMetricForObjective(objectiveId, metricCreate, options) {
|
|
655
|
+
return localVarFp.createMetricForObjective(objectiveId, metricCreate, options).then((request) => request(axios, basePath));
|
|
656
|
+
},
|
|
657
|
+
/**
|
|
658
|
+
* Delete an existing metric by its ID. Associated metric costs per year are also deleted via cascade.
|
|
659
|
+
* @summary Delete a metric for this objective
|
|
660
|
+
* @param {string} metricId UUID of the metric
|
|
661
|
+
* @param {string} objectiveId UUID of the objective
|
|
662
|
+
* @param {*} [options] Override http request option.
|
|
663
|
+
* @throws {RequiredError}
|
|
664
|
+
*/
|
|
665
|
+
deleteMetricForObjective(metricId, objectiveId, options) {
|
|
666
|
+
return localVarFp.deleteMetricForObjective(metricId, objectiveId, options).then((request) => request(axios, basePath));
|
|
667
|
+
},
|
|
305
668
|
/**
|
|
306
669
|
* Delete an existing objective by its ID. Associated metrics and objective weights are also deleted via cascade.
|
|
307
670
|
* @summary Delete an objective
|
|
@@ -312,6 +675,29 @@ export const ObjectiveApiFactory = function (configuration, basePath, axios) {
|
|
|
312
675
|
deleteObjective(objectiveId, options) {
|
|
313
676
|
return localVarFp.deleteObjective(objectiveId, options).then((request) => request(axios, basePath));
|
|
314
677
|
},
|
|
678
|
+
/**
|
|
679
|
+
* Retrieve a specific metric for the objective.
|
|
680
|
+
* @summary Get a metric for this objective
|
|
681
|
+
* @param {string} metricId UUID of the metric
|
|
682
|
+
* @param {string} objectiveId UUID of the objective
|
|
683
|
+
* @param {*} [options] Override http request option.
|
|
684
|
+
* @throws {RequiredError}
|
|
685
|
+
*/
|
|
686
|
+
getMetricForObjective(metricId, objectiveId, options) {
|
|
687
|
+
return localVarFp.getMetricForObjective(metricId, objectiveId, options).then((request) => request(axios, basePath));
|
|
688
|
+
},
|
|
689
|
+
/**
|
|
690
|
+
* Retrieve a paginated list of all metrics for a specific objective.
|
|
691
|
+
* @summary List metrics for this objective
|
|
692
|
+
* @param {string} objectiveId UUID of the objective
|
|
693
|
+
* @param {number} [offset] Number of records to skip
|
|
694
|
+
* @param {number} [limit] Max number of records to return
|
|
695
|
+
* @param {*} [options] Override http request option.
|
|
696
|
+
* @throws {RequiredError}
|
|
697
|
+
*/
|
|
698
|
+
getMetricsForObjective(objectiveId, offset, limit, options) {
|
|
699
|
+
return localVarFp.getMetricsForObjective(objectiveId, offset, limit, options).then((request) => request(axios, basePath));
|
|
700
|
+
},
|
|
315
701
|
/**
|
|
316
702
|
* Retrieve a single objective by its ID.
|
|
317
703
|
* @summary Get an objective by ID
|
|
@@ -333,6 +719,30 @@ export const ObjectiveApiFactory = function (configuration, basePath, axios) {
|
|
|
333
719
|
getObjectives(offset, limit, options) {
|
|
334
720
|
return localVarFp.getObjectives(offset, limit, options).then((request) => request(axios, basePath));
|
|
335
721
|
},
|
|
722
|
+
/**
|
|
723
|
+
* Retrieve a paginated list of all objective weights for a specific objective.
|
|
724
|
+
* @summary List all objective weights for an objective
|
|
725
|
+
* @param {string} objectiveId UUID of the objective
|
|
726
|
+
* @param {number} [offset] Number of records to skip
|
|
727
|
+
* @param {number} [limit] Max number of records to return
|
|
728
|
+
* @param {*} [options] Override http request option.
|
|
729
|
+
* @throws {RequiredError}
|
|
730
|
+
*/
|
|
731
|
+
getWeightsForObjective(objectiveId, offset, limit, options) {
|
|
732
|
+
return localVarFp.getWeightsForObjective(objectiveId, offset, limit, options).then((request) => request(axios, basePath));
|
|
733
|
+
},
|
|
734
|
+
/**
|
|
735
|
+
* Update one or more fields of an existing metric. Only the fields included in the request body will be modified; omitted fields remain unchanged.
|
|
736
|
+
* @summary Partially update a metric for this objective
|
|
737
|
+
* @param {string} metricId UUID of the metric
|
|
738
|
+
* @param {string} objectiveId UUID of the objective
|
|
739
|
+
* @param {MetricUpdate} metricUpdate
|
|
740
|
+
* @param {*} [options] Override http request option.
|
|
741
|
+
* @throws {RequiredError}
|
|
742
|
+
*/
|
|
743
|
+
patchMetricForObjective(metricId, objectiveId, metricUpdate, options) {
|
|
744
|
+
return localVarFp.patchMetricForObjective(metricId, objectiveId, metricUpdate, options).then((request) => request(axios, basePath));
|
|
745
|
+
},
|
|
336
746
|
/**
|
|
337
747
|
* Update one or more fields of an existing objective. Only the fields included in the request body will be modified; omitted fields remain unchanged.
|
|
338
748
|
* @summary Partially update an objective
|
|
@@ -358,29 +768,69 @@ export const ObjectiveApiFactory = function (configuration, basePath, axios) {
|
|
|
358
768
|
};
|
|
359
769
|
/**
|
|
360
770
|
* ObjectiveApi - object-oriented interface
|
|
361
|
-
* @export
|
|
362
|
-
* @class ObjectiveApi
|
|
363
|
-
* @extends {BaseAPI}
|
|
364
771
|
*/
|
|
365
772
|
export class ObjectiveApi extends BaseAPI {
|
|
773
|
+
/**
|
|
774
|
+
* Create a new metric under this objective.
|
|
775
|
+
* @summary Create a metric for this objective
|
|
776
|
+
* @param {string} objectiveId UUID of the objective
|
|
777
|
+
* @param {MetricCreate} metricCreate
|
|
778
|
+
* @param {*} [options] Override http request option.
|
|
779
|
+
* @throws {RequiredError}
|
|
780
|
+
*/
|
|
781
|
+
createMetricForObjective(objectiveId, metricCreate, options) {
|
|
782
|
+
return ObjectiveApiFp(this.configuration).createMetricForObjective(objectiveId, metricCreate, options).then((request) => request(this.axios, this.basePath));
|
|
783
|
+
}
|
|
784
|
+
/**
|
|
785
|
+
* Delete an existing metric by its ID. Associated metric costs per year are also deleted via cascade.
|
|
786
|
+
* @summary Delete a metric for this objective
|
|
787
|
+
* @param {string} metricId UUID of the metric
|
|
788
|
+
* @param {string} objectiveId UUID of the objective
|
|
789
|
+
* @param {*} [options] Override http request option.
|
|
790
|
+
* @throws {RequiredError}
|
|
791
|
+
*/
|
|
792
|
+
deleteMetricForObjective(metricId, objectiveId, options) {
|
|
793
|
+
return ObjectiveApiFp(this.configuration).deleteMetricForObjective(metricId, objectiveId, options).then((request) => request(this.axios, this.basePath));
|
|
794
|
+
}
|
|
366
795
|
/**
|
|
367
796
|
* Delete an existing objective by its ID. Associated metrics and objective weights are also deleted via cascade.
|
|
368
797
|
* @summary Delete an objective
|
|
369
798
|
* @param {string} objectiveId UUID of the objective
|
|
370
799
|
* @param {*} [options] Override http request option.
|
|
371
800
|
* @throws {RequiredError}
|
|
372
|
-
* @memberof ObjectiveApi
|
|
373
801
|
*/
|
|
374
802
|
deleteObjective(objectiveId, options) {
|
|
375
803
|
return ObjectiveApiFp(this.configuration).deleteObjective(objectiveId, options).then((request) => request(this.axios, this.basePath));
|
|
376
804
|
}
|
|
805
|
+
/**
|
|
806
|
+
* Retrieve a specific metric for the objective.
|
|
807
|
+
* @summary Get a metric for this objective
|
|
808
|
+
* @param {string} metricId UUID of the metric
|
|
809
|
+
* @param {string} objectiveId UUID of the objective
|
|
810
|
+
* @param {*} [options] Override http request option.
|
|
811
|
+
* @throws {RequiredError}
|
|
812
|
+
*/
|
|
813
|
+
getMetricForObjective(metricId, objectiveId, options) {
|
|
814
|
+
return ObjectiveApiFp(this.configuration).getMetricForObjective(metricId, objectiveId, options).then((request) => request(this.axios, this.basePath));
|
|
815
|
+
}
|
|
816
|
+
/**
|
|
817
|
+
* Retrieve a paginated list of all metrics for a specific objective.
|
|
818
|
+
* @summary List metrics for this objective
|
|
819
|
+
* @param {string} objectiveId UUID of the objective
|
|
820
|
+
* @param {number} [offset] Number of records to skip
|
|
821
|
+
* @param {number} [limit] Max number of records to return
|
|
822
|
+
* @param {*} [options] Override http request option.
|
|
823
|
+
* @throws {RequiredError}
|
|
824
|
+
*/
|
|
825
|
+
getMetricsForObjective(objectiveId, offset, limit, options) {
|
|
826
|
+
return ObjectiveApiFp(this.configuration).getMetricsForObjective(objectiveId, offset, limit, options).then((request) => request(this.axios, this.basePath));
|
|
827
|
+
}
|
|
377
828
|
/**
|
|
378
829
|
* Retrieve a single objective by its ID.
|
|
379
830
|
* @summary Get an objective by ID
|
|
380
831
|
* @param {string} objectiveId UUID of the objective
|
|
381
832
|
* @param {*} [options] Override http request option.
|
|
382
833
|
* @throws {RequiredError}
|
|
383
|
-
* @memberof ObjectiveApi
|
|
384
834
|
*/
|
|
385
835
|
getObjectiveById(objectiveId, options) {
|
|
386
836
|
return ObjectiveApiFp(this.configuration).getObjectiveById(objectiveId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -392,11 +842,34 @@ export class ObjectiveApi extends BaseAPI {
|
|
|
392
842
|
* @param {number} [limit] Max number of records to return
|
|
393
843
|
* @param {*} [options] Override http request option.
|
|
394
844
|
* @throws {RequiredError}
|
|
395
|
-
* @memberof ObjectiveApi
|
|
396
845
|
*/
|
|
397
846
|
getObjectives(offset, limit, options) {
|
|
398
847
|
return ObjectiveApiFp(this.configuration).getObjectives(offset, limit, options).then((request) => request(this.axios, this.basePath));
|
|
399
848
|
}
|
|
849
|
+
/**
|
|
850
|
+
* Retrieve a paginated list of all objective weights for a specific objective.
|
|
851
|
+
* @summary List all objective weights for an objective
|
|
852
|
+
* @param {string} objectiveId UUID of the objective
|
|
853
|
+
* @param {number} [offset] Number of records to skip
|
|
854
|
+
* @param {number} [limit] Max number of records to return
|
|
855
|
+
* @param {*} [options] Override http request option.
|
|
856
|
+
* @throws {RequiredError}
|
|
857
|
+
*/
|
|
858
|
+
getWeightsForObjective(objectiveId, offset, limit, options) {
|
|
859
|
+
return ObjectiveApiFp(this.configuration).getWeightsForObjective(objectiveId, offset, limit, options).then((request) => request(this.axios, this.basePath));
|
|
860
|
+
}
|
|
861
|
+
/**
|
|
862
|
+
* Update one or more fields of an existing metric. Only the fields included in the request body will be modified; omitted fields remain unchanged.
|
|
863
|
+
* @summary Partially update a metric for this objective
|
|
864
|
+
* @param {string} metricId UUID of the metric
|
|
865
|
+
* @param {string} objectiveId UUID of the objective
|
|
866
|
+
* @param {MetricUpdate} metricUpdate
|
|
867
|
+
* @param {*} [options] Override http request option.
|
|
868
|
+
* @throws {RequiredError}
|
|
869
|
+
*/
|
|
870
|
+
patchMetricForObjective(metricId, objectiveId, metricUpdate, options) {
|
|
871
|
+
return ObjectiveApiFp(this.configuration).patchMetricForObjective(metricId, objectiveId, metricUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
872
|
+
}
|
|
400
873
|
/**
|
|
401
874
|
* Update one or more fields of an existing objective. Only the fields included in the request body will be modified; omitted fields remain unchanged.
|
|
402
875
|
* @summary Partially update an objective
|
|
@@ -404,7 +877,6 @@ export class ObjectiveApi extends BaseAPI {
|
|
|
404
877
|
* @param {ObjectiveUpdate} objectiveUpdate
|
|
405
878
|
* @param {*} [options] Override http request option.
|
|
406
879
|
* @throws {RequiredError}
|
|
407
|
-
* @memberof ObjectiveApi
|
|
408
880
|
*/
|
|
409
881
|
patchObjective(objectiveId, objectiveUpdate, options) {
|
|
410
882
|
return ObjectiveApiFp(this.configuration).patchObjective(objectiveId, objectiveUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -415,7 +887,6 @@ export class ObjectiveApi extends BaseAPI {
|
|
|
415
887
|
* @param {ObjectiveCreate} objectiveCreate
|
|
416
888
|
* @param {*} [options] Override http request option.
|
|
417
889
|
* @throws {RequiredError}
|
|
418
|
-
* @memberof ObjectiveApi
|
|
419
890
|
*/
|
|
420
891
|
postObjective(objectiveCreate, options) {
|
|
421
892
|
return ObjectiveApiFp(this.configuration).postObjective(objectiveCreate, options).then((request) => request(this.axios, this.basePath));
|