@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
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Asset Investment Planning
|
|
3
|
+
* API for Asset Investment Planning
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.2.0-dev3
|
|
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 type { Configuration } from '../configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
|
+
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import type { MetricCostsPerYearResponse } from '../models';
|
|
16
|
+
/**
|
|
17
|
+
* ValueFrameworkCostsApi - axios parameter creator
|
|
18
|
+
*/
|
|
19
|
+
export declare const ValueFrameworkCostsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20
|
+
/**
|
|
21
|
+
* Retrieve a paginated list of all metric costs for a specific value framework.
|
|
22
|
+
* @summary List all metric costs for a value framework
|
|
23
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
24
|
+
* @param {number} [offset] Number of records to skip
|
|
25
|
+
* @param {number} [limit] Max number of records to return
|
|
26
|
+
* @param {*} [options] Override http request option.
|
|
27
|
+
* @throws {RequiredError}
|
|
28
|
+
*/
|
|
29
|
+
getCostsForValueFramework: (valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30
|
+
/**
|
|
31
|
+
* Retrieve a paginated list of metric costs for a specific metric within a value framework.
|
|
32
|
+
* @summary List metric costs for a value framework filtered by metric
|
|
33
|
+
* @param {string} metricId UUID of the metric
|
|
34
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
35
|
+
* @param {number} [offset] Number of records to skip
|
|
36
|
+
* @param {number} [limit] Max number of records to return
|
|
37
|
+
* @param {*} [options] Override http request option.
|
|
38
|
+
* @throws {RequiredError}
|
|
39
|
+
*/
|
|
40
|
+
getCostsForValueFrameworkByMetric: (metricId: string, valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* ValueFrameworkCostsApi - functional programming interface
|
|
44
|
+
*/
|
|
45
|
+
export declare const ValueFrameworkCostsApiFp: (configuration?: Configuration) => {
|
|
46
|
+
/**
|
|
47
|
+
* Retrieve a paginated list of all metric costs for a specific value framework.
|
|
48
|
+
* @summary List all metric costs for a value framework
|
|
49
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
50
|
+
* @param {number} [offset] Number of records to skip
|
|
51
|
+
* @param {number} [limit] Max number of records to return
|
|
52
|
+
* @param {*} [options] Override http request option.
|
|
53
|
+
* @throws {RequiredError}
|
|
54
|
+
*/
|
|
55
|
+
getCostsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MetricCostsPerYearResponse>>>;
|
|
56
|
+
/**
|
|
57
|
+
* Retrieve a paginated list of metric costs for a specific metric within a value framework.
|
|
58
|
+
* @summary List metric costs for a value framework filtered by metric
|
|
59
|
+
* @param {string} metricId UUID of the metric
|
|
60
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
61
|
+
* @param {number} [offset] Number of records to skip
|
|
62
|
+
* @param {number} [limit] Max number of records to return
|
|
63
|
+
* @param {*} [options] Override http request option.
|
|
64
|
+
* @throws {RequiredError}
|
|
65
|
+
*/
|
|
66
|
+
getCostsForValueFrameworkByMetric(metricId: string, valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MetricCostsPerYearResponse>>>;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* ValueFrameworkCostsApi - factory interface
|
|
70
|
+
*/
|
|
71
|
+
export declare const ValueFrameworkCostsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
72
|
+
/**
|
|
73
|
+
* Retrieve a paginated list of all metric costs for a specific value framework.
|
|
74
|
+
* @summary List all metric costs for a value framework
|
|
75
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
76
|
+
* @param {number} [offset] Number of records to skip
|
|
77
|
+
* @param {number} [limit] Max number of records to return
|
|
78
|
+
* @param {*} [options] Override http request option.
|
|
79
|
+
* @throws {RequiredError}
|
|
80
|
+
*/
|
|
81
|
+
getCostsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<MetricCostsPerYearResponse>>;
|
|
82
|
+
/**
|
|
83
|
+
* Retrieve a paginated list of metric costs for a specific metric within a value framework.
|
|
84
|
+
* @summary List metric costs for a value framework filtered by metric
|
|
85
|
+
* @param {string} metricId UUID of the metric
|
|
86
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
87
|
+
* @param {number} [offset] Number of records to skip
|
|
88
|
+
* @param {number} [limit] Max number of records to return
|
|
89
|
+
* @param {*} [options] Override http request option.
|
|
90
|
+
* @throws {RequiredError}
|
|
91
|
+
*/
|
|
92
|
+
getCostsForValueFrameworkByMetric(metricId: string, valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<MetricCostsPerYearResponse>>;
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* ValueFrameworkCostsApi - object-oriented interface
|
|
96
|
+
*/
|
|
97
|
+
export declare class ValueFrameworkCostsApi extends BaseAPI {
|
|
98
|
+
/**
|
|
99
|
+
* Retrieve a paginated list of all metric costs for a specific value framework.
|
|
100
|
+
* @summary List all metric costs for a value framework
|
|
101
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
102
|
+
* @param {number} [offset] Number of records to skip
|
|
103
|
+
* @param {number} [limit] Max number of records to return
|
|
104
|
+
* @param {*} [options] Override http request option.
|
|
105
|
+
* @throws {RequiredError}
|
|
106
|
+
*/
|
|
107
|
+
getCostsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MetricCostsPerYearResponse[], any, {}>>;
|
|
108
|
+
/**
|
|
109
|
+
* Retrieve a paginated list of metric costs for a specific metric within a value framework.
|
|
110
|
+
* @summary List metric costs for a value framework filtered by metric
|
|
111
|
+
* @param {string} metricId UUID of the metric
|
|
112
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
113
|
+
* @param {number} [offset] Number of records to skip
|
|
114
|
+
* @param {number} [limit] Max number of records to return
|
|
115
|
+
* @param {*} [options] Override http request option.
|
|
116
|
+
* @throws {RequiredError}
|
|
117
|
+
*/
|
|
118
|
+
getCostsForValueFrameworkByMetric(metricId: string, valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MetricCostsPerYearResponse[], any, {}>>;
|
|
119
|
+
}
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Asset Investment Planning
|
|
6
|
+
* API for Asset Investment Planning
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.2.0-dev3
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
16
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
17
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
18
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
19
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
20
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
21
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
22
|
+
});
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
exports.ValueFrameworkCostsApi = exports.ValueFrameworkCostsApiFactory = exports.ValueFrameworkCostsApiFp = exports.ValueFrameworkCostsApiAxiosParamCreator = void 0;
|
|
26
|
+
const axios_1 = require("axios");
|
|
27
|
+
// Some imports not used depending on template conditions
|
|
28
|
+
// @ts-ignore
|
|
29
|
+
const common_1 = require("../common");
|
|
30
|
+
// @ts-ignore
|
|
31
|
+
const base_1 = require("../base");
|
|
32
|
+
/**
|
|
33
|
+
* ValueFrameworkCostsApi - axios parameter creator
|
|
34
|
+
*/
|
|
35
|
+
const ValueFrameworkCostsApiAxiosParamCreator = function (configuration) {
|
|
36
|
+
return {
|
|
37
|
+
/**
|
|
38
|
+
* Retrieve a paginated list of all metric costs for a specific value framework.
|
|
39
|
+
* @summary List all metric costs for a value framework
|
|
40
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
41
|
+
* @param {number} [offset] Number of records to skip
|
|
42
|
+
* @param {number} [limit] Max number of records to return
|
|
43
|
+
* @param {*} [options] Override http request option.
|
|
44
|
+
* @throws {RequiredError}
|
|
45
|
+
*/
|
|
46
|
+
getCostsForValueFramework: (valueFrameworkId_1, offset_1, limit_1, ...args_1) => __awaiter(this, [valueFrameworkId_1, offset_1, limit_1, ...args_1], void 0, function* (valueFrameworkId, offset, limit, options = {}) {
|
|
47
|
+
// verify required parameter 'valueFrameworkId' is not null or undefined
|
|
48
|
+
(0, common_1.assertParamExists)('getCostsForValueFramework', 'valueFrameworkId', valueFrameworkId);
|
|
49
|
+
const localVarPath = `/value_framework/{value_framework_id}/costs/`
|
|
50
|
+
.replace(`{${"value_framework_id"}}`, encodeURIComponent(String(valueFrameworkId)));
|
|
51
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
52
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
53
|
+
let baseOptions;
|
|
54
|
+
if (configuration) {
|
|
55
|
+
baseOptions = configuration.baseOptions;
|
|
56
|
+
}
|
|
57
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
58
|
+
const localVarHeaderParameter = {};
|
|
59
|
+
const localVarQueryParameter = {};
|
|
60
|
+
// authentication OAuth2AuthorizationCodeBearer required
|
|
61
|
+
// oauth required
|
|
62
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
63
|
+
if (offset !== undefined) {
|
|
64
|
+
localVarQueryParameter['offset'] = offset;
|
|
65
|
+
}
|
|
66
|
+
if (limit !== undefined) {
|
|
67
|
+
localVarQueryParameter['limit'] = limit;
|
|
68
|
+
}
|
|
69
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
70
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
71
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
72
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
73
|
+
return {
|
|
74
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
75
|
+
options: localVarRequestOptions,
|
|
76
|
+
};
|
|
77
|
+
}),
|
|
78
|
+
/**
|
|
79
|
+
* Retrieve a paginated list of metric costs for a specific metric within a value framework.
|
|
80
|
+
* @summary List metric costs for a value framework filtered by metric
|
|
81
|
+
* @param {string} metricId UUID of the metric
|
|
82
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
83
|
+
* @param {number} [offset] Number of records to skip
|
|
84
|
+
* @param {number} [limit] Max number of records to return
|
|
85
|
+
* @param {*} [options] Override http request option.
|
|
86
|
+
* @throws {RequiredError}
|
|
87
|
+
*/
|
|
88
|
+
getCostsForValueFrameworkByMetric: (metricId_1, valueFrameworkId_1, offset_1, limit_1, ...args_1) => __awaiter(this, [metricId_1, valueFrameworkId_1, offset_1, limit_1, ...args_1], void 0, function* (metricId, valueFrameworkId, offset, limit, options = {}) {
|
|
89
|
+
// verify required parameter 'metricId' is not null or undefined
|
|
90
|
+
(0, common_1.assertParamExists)('getCostsForValueFrameworkByMetric', 'metricId', metricId);
|
|
91
|
+
// verify required parameter 'valueFrameworkId' is not null or undefined
|
|
92
|
+
(0, common_1.assertParamExists)('getCostsForValueFrameworkByMetric', 'valueFrameworkId', valueFrameworkId);
|
|
93
|
+
const localVarPath = `/value_framework/{value_framework_id}/costs/{metric_id}`
|
|
94
|
+
.replace(`{${"metric_id"}}`, encodeURIComponent(String(metricId)))
|
|
95
|
+
.replace(`{${"value_framework_id"}}`, encodeURIComponent(String(valueFrameworkId)));
|
|
96
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
97
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
98
|
+
let baseOptions;
|
|
99
|
+
if (configuration) {
|
|
100
|
+
baseOptions = configuration.baseOptions;
|
|
101
|
+
}
|
|
102
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
103
|
+
const localVarHeaderParameter = {};
|
|
104
|
+
const localVarQueryParameter = {};
|
|
105
|
+
// authentication OAuth2AuthorizationCodeBearer required
|
|
106
|
+
// oauth required
|
|
107
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
108
|
+
if (offset !== undefined) {
|
|
109
|
+
localVarQueryParameter['offset'] = offset;
|
|
110
|
+
}
|
|
111
|
+
if (limit !== undefined) {
|
|
112
|
+
localVarQueryParameter['limit'] = limit;
|
|
113
|
+
}
|
|
114
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
115
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
116
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
117
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
118
|
+
return {
|
|
119
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
120
|
+
options: localVarRequestOptions,
|
|
121
|
+
};
|
|
122
|
+
}),
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
exports.ValueFrameworkCostsApiAxiosParamCreator = ValueFrameworkCostsApiAxiosParamCreator;
|
|
126
|
+
/**
|
|
127
|
+
* ValueFrameworkCostsApi - functional programming interface
|
|
128
|
+
*/
|
|
129
|
+
const ValueFrameworkCostsApiFp = function (configuration) {
|
|
130
|
+
const localVarAxiosParamCreator = (0, exports.ValueFrameworkCostsApiAxiosParamCreator)(configuration);
|
|
131
|
+
return {
|
|
132
|
+
/**
|
|
133
|
+
* Retrieve a paginated list of all metric costs for a specific value framework.
|
|
134
|
+
* @summary List all metric costs for a value framework
|
|
135
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
136
|
+
* @param {number} [offset] Number of records to skip
|
|
137
|
+
* @param {number} [limit] Max number of records to return
|
|
138
|
+
* @param {*} [options] Override http request option.
|
|
139
|
+
* @throws {RequiredError}
|
|
140
|
+
*/
|
|
141
|
+
getCostsForValueFramework(valueFrameworkId, offset, limit, options) {
|
|
142
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
143
|
+
var _a, _b, _c;
|
|
144
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getCostsForValueFramework(valueFrameworkId, offset, limit, options);
|
|
145
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
146
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ValueFrameworkCostsApi.getCostsForValueFramework']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
147
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
148
|
+
});
|
|
149
|
+
},
|
|
150
|
+
/**
|
|
151
|
+
* Retrieve a paginated list of metric costs for a specific metric within a value framework.
|
|
152
|
+
* @summary List metric costs for a value framework filtered by metric
|
|
153
|
+
* @param {string} metricId UUID of the metric
|
|
154
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
155
|
+
* @param {number} [offset] Number of records to skip
|
|
156
|
+
* @param {number} [limit] Max number of records to return
|
|
157
|
+
* @param {*} [options] Override http request option.
|
|
158
|
+
* @throws {RequiredError}
|
|
159
|
+
*/
|
|
160
|
+
getCostsForValueFrameworkByMetric(metricId, valueFrameworkId, offset, limit, options) {
|
|
161
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
162
|
+
var _a, _b, _c;
|
|
163
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getCostsForValueFrameworkByMetric(metricId, valueFrameworkId, offset, limit, options);
|
|
164
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
165
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ValueFrameworkCostsApi.getCostsForValueFrameworkByMetric']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
166
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
167
|
+
});
|
|
168
|
+
},
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
exports.ValueFrameworkCostsApiFp = ValueFrameworkCostsApiFp;
|
|
172
|
+
/**
|
|
173
|
+
* ValueFrameworkCostsApi - factory interface
|
|
174
|
+
*/
|
|
175
|
+
const ValueFrameworkCostsApiFactory = function (configuration, basePath, axios) {
|
|
176
|
+
const localVarFp = (0, exports.ValueFrameworkCostsApiFp)(configuration);
|
|
177
|
+
return {
|
|
178
|
+
/**
|
|
179
|
+
* Retrieve a paginated list of all metric costs for a specific value framework.
|
|
180
|
+
* @summary List all metric costs for a value framework
|
|
181
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
182
|
+
* @param {number} [offset] Number of records to skip
|
|
183
|
+
* @param {number} [limit] Max number of records to return
|
|
184
|
+
* @param {*} [options] Override http request option.
|
|
185
|
+
* @throws {RequiredError}
|
|
186
|
+
*/
|
|
187
|
+
getCostsForValueFramework(valueFrameworkId, offset, limit, options) {
|
|
188
|
+
return localVarFp.getCostsForValueFramework(valueFrameworkId, offset, limit, options).then((request) => request(axios, basePath));
|
|
189
|
+
},
|
|
190
|
+
/**
|
|
191
|
+
* Retrieve a paginated list of metric costs for a specific metric within a value framework.
|
|
192
|
+
* @summary List metric costs for a value framework filtered by metric
|
|
193
|
+
* @param {string} metricId UUID of the metric
|
|
194
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
195
|
+
* @param {number} [offset] Number of records to skip
|
|
196
|
+
* @param {number} [limit] Max number of records to return
|
|
197
|
+
* @param {*} [options] Override http request option.
|
|
198
|
+
* @throws {RequiredError}
|
|
199
|
+
*/
|
|
200
|
+
getCostsForValueFrameworkByMetric(metricId, valueFrameworkId, offset, limit, options) {
|
|
201
|
+
return localVarFp.getCostsForValueFrameworkByMetric(metricId, valueFrameworkId, offset, limit, options).then((request) => request(axios, basePath));
|
|
202
|
+
},
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
exports.ValueFrameworkCostsApiFactory = ValueFrameworkCostsApiFactory;
|
|
206
|
+
/**
|
|
207
|
+
* ValueFrameworkCostsApi - object-oriented interface
|
|
208
|
+
*/
|
|
209
|
+
class ValueFrameworkCostsApi extends base_1.BaseAPI {
|
|
210
|
+
/**
|
|
211
|
+
* Retrieve a paginated list of all metric costs for a specific value framework.
|
|
212
|
+
* @summary List all metric costs for a value framework
|
|
213
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
214
|
+
* @param {number} [offset] Number of records to skip
|
|
215
|
+
* @param {number} [limit] Max number of records to return
|
|
216
|
+
* @param {*} [options] Override http request option.
|
|
217
|
+
* @throws {RequiredError}
|
|
218
|
+
*/
|
|
219
|
+
getCostsForValueFramework(valueFrameworkId, offset, limit, options) {
|
|
220
|
+
return (0, exports.ValueFrameworkCostsApiFp)(this.configuration).getCostsForValueFramework(valueFrameworkId, offset, limit, options).then((request) => request(this.axios, this.basePath));
|
|
221
|
+
}
|
|
222
|
+
/**
|
|
223
|
+
* Retrieve a paginated list of metric costs for a specific metric within a value framework.
|
|
224
|
+
* @summary List metric costs for a value framework filtered by metric
|
|
225
|
+
* @param {string} metricId UUID of the metric
|
|
226
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
227
|
+
* @param {number} [offset] Number of records to skip
|
|
228
|
+
* @param {number} [limit] Max number of records to return
|
|
229
|
+
* @param {*} [options] Override http request option.
|
|
230
|
+
* @throws {RequiredError}
|
|
231
|
+
*/
|
|
232
|
+
getCostsForValueFrameworkByMetric(metricId, valueFrameworkId, offset, limit, options) {
|
|
233
|
+
return (0, exports.ValueFrameworkCostsApiFp)(this.configuration).getCostsForValueFrameworkByMetric(metricId, valueFrameworkId, offset, limit, options).then((request) => request(this.axios, this.basePath));
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
exports.ValueFrameworkCostsApi = ValueFrameworkCostsApi;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Asset Investment Planning
|
|
3
|
+
* API for Asset Investment Planning
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.2.0-dev3
|
|
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 type { Configuration } from '../configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
|
+
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import type { ObjectiveWeightResponse } from '../models';
|
|
16
|
+
/**
|
|
17
|
+
* ValueFrameworkWeightsApi - axios parameter creator
|
|
18
|
+
*/
|
|
19
|
+
export declare const ValueFrameworkWeightsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20
|
+
/**
|
|
21
|
+
* Retrieve a paginated list of all objective weights for a specific value framework.
|
|
22
|
+
* @summary List all objective weights for a value framework
|
|
23
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
24
|
+
* @param {number} [offset] Number of records to skip
|
|
25
|
+
* @param {number} [limit] Max number of records to return
|
|
26
|
+
* @param {*} [options] Override http request option.
|
|
27
|
+
* @throws {RequiredError}
|
|
28
|
+
*/
|
|
29
|
+
getWeightsForValueFramework: (valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* ValueFrameworkWeightsApi - functional programming interface
|
|
33
|
+
*/
|
|
34
|
+
export declare const ValueFrameworkWeightsApiFp: (configuration?: Configuration) => {
|
|
35
|
+
/**
|
|
36
|
+
* Retrieve a paginated list of all objective weights for a specific value framework.
|
|
37
|
+
* @summary List all objective weights for a value framework
|
|
38
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
39
|
+
* @param {number} [offset] Number of records to skip
|
|
40
|
+
* @param {number} [limit] Max number of records to return
|
|
41
|
+
* @param {*} [options] Override http request option.
|
|
42
|
+
* @throws {RequiredError}
|
|
43
|
+
*/
|
|
44
|
+
getWeightsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ObjectiveWeightResponse>>>;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* ValueFrameworkWeightsApi - factory interface
|
|
48
|
+
*/
|
|
49
|
+
export declare const ValueFrameworkWeightsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
50
|
+
/**
|
|
51
|
+
* Retrieve a paginated list of all objective weights for a specific value framework.
|
|
52
|
+
* @summary List all objective weights for a value framework
|
|
53
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
54
|
+
* @param {number} [offset] Number of records to skip
|
|
55
|
+
* @param {number} [limit] Max number of records to return
|
|
56
|
+
* @param {*} [options] Override http request option.
|
|
57
|
+
* @throws {RequiredError}
|
|
58
|
+
*/
|
|
59
|
+
getWeightsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ObjectiveWeightResponse>>;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* ValueFrameworkWeightsApi - object-oriented interface
|
|
63
|
+
*/
|
|
64
|
+
export declare class ValueFrameworkWeightsApi extends BaseAPI {
|
|
65
|
+
/**
|
|
66
|
+
* Retrieve a paginated list of all objective weights for a specific value framework.
|
|
67
|
+
* @summary List all objective weights for a value framework
|
|
68
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
69
|
+
* @param {number} [offset] Number of records to skip
|
|
70
|
+
* @param {number} [limit] Max number of records to return
|
|
71
|
+
* @param {*} [options] Override http request option.
|
|
72
|
+
* @throws {RequiredError}
|
|
73
|
+
*/
|
|
74
|
+
getWeightsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectiveWeightResponse[], any, {}>>;
|
|
75
|
+
}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Asset Investment Planning
|
|
6
|
+
* API for Asset Investment Planning
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.2.0-dev3
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
16
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
17
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
18
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
19
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
20
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
21
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
22
|
+
});
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
exports.ValueFrameworkWeightsApi = exports.ValueFrameworkWeightsApiFactory = exports.ValueFrameworkWeightsApiFp = exports.ValueFrameworkWeightsApiAxiosParamCreator = void 0;
|
|
26
|
+
const axios_1 = require("axios");
|
|
27
|
+
// Some imports not used depending on template conditions
|
|
28
|
+
// @ts-ignore
|
|
29
|
+
const common_1 = require("../common");
|
|
30
|
+
// @ts-ignore
|
|
31
|
+
const base_1 = require("../base");
|
|
32
|
+
/**
|
|
33
|
+
* ValueFrameworkWeightsApi - axios parameter creator
|
|
34
|
+
*/
|
|
35
|
+
const ValueFrameworkWeightsApiAxiosParamCreator = function (configuration) {
|
|
36
|
+
return {
|
|
37
|
+
/**
|
|
38
|
+
* Retrieve a paginated list of all objective weights for a specific value framework.
|
|
39
|
+
* @summary List all objective weights for a value framework
|
|
40
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
41
|
+
* @param {number} [offset] Number of records to skip
|
|
42
|
+
* @param {number} [limit] Max number of records to return
|
|
43
|
+
* @param {*} [options] Override http request option.
|
|
44
|
+
* @throws {RequiredError}
|
|
45
|
+
*/
|
|
46
|
+
getWeightsForValueFramework: (valueFrameworkId_1, offset_1, limit_1, ...args_1) => __awaiter(this, [valueFrameworkId_1, offset_1, limit_1, ...args_1], void 0, function* (valueFrameworkId, offset, limit, options = {}) {
|
|
47
|
+
// verify required parameter 'valueFrameworkId' is not null or undefined
|
|
48
|
+
(0, common_1.assertParamExists)('getWeightsForValueFramework', 'valueFrameworkId', valueFrameworkId);
|
|
49
|
+
const localVarPath = `/value_framework/{value_framework_id}/weights/`
|
|
50
|
+
.replace(`{${"value_framework_id"}}`, encodeURIComponent(String(valueFrameworkId)));
|
|
51
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
52
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
53
|
+
let baseOptions;
|
|
54
|
+
if (configuration) {
|
|
55
|
+
baseOptions = configuration.baseOptions;
|
|
56
|
+
}
|
|
57
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
58
|
+
const localVarHeaderParameter = {};
|
|
59
|
+
const localVarQueryParameter = {};
|
|
60
|
+
// authentication OAuth2AuthorizationCodeBearer required
|
|
61
|
+
// oauth required
|
|
62
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
|
|
63
|
+
if (offset !== undefined) {
|
|
64
|
+
localVarQueryParameter['offset'] = offset;
|
|
65
|
+
}
|
|
66
|
+
if (limit !== undefined) {
|
|
67
|
+
localVarQueryParameter['limit'] = limit;
|
|
68
|
+
}
|
|
69
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
70
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
71
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
72
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
73
|
+
return {
|
|
74
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
75
|
+
options: localVarRequestOptions,
|
|
76
|
+
};
|
|
77
|
+
}),
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
exports.ValueFrameworkWeightsApiAxiosParamCreator = ValueFrameworkWeightsApiAxiosParamCreator;
|
|
81
|
+
/**
|
|
82
|
+
* ValueFrameworkWeightsApi - functional programming interface
|
|
83
|
+
*/
|
|
84
|
+
const ValueFrameworkWeightsApiFp = function (configuration) {
|
|
85
|
+
const localVarAxiosParamCreator = (0, exports.ValueFrameworkWeightsApiAxiosParamCreator)(configuration);
|
|
86
|
+
return {
|
|
87
|
+
/**
|
|
88
|
+
* Retrieve a paginated list of all objective weights for a specific value framework.
|
|
89
|
+
* @summary List all objective weights for a value framework
|
|
90
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
91
|
+
* @param {number} [offset] Number of records to skip
|
|
92
|
+
* @param {number} [limit] Max number of records to return
|
|
93
|
+
* @param {*} [options] Override http request option.
|
|
94
|
+
* @throws {RequiredError}
|
|
95
|
+
*/
|
|
96
|
+
getWeightsForValueFramework(valueFrameworkId, offset, limit, options) {
|
|
97
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
98
|
+
var _a, _b, _c;
|
|
99
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getWeightsForValueFramework(valueFrameworkId, offset, limit, options);
|
|
100
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
101
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ValueFrameworkWeightsApi.getWeightsForValueFramework']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
102
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
103
|
+
});
|
|
104
|
+
},
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
exports.ValueFrameworkWeightsApiFp = ValueFrameworkWeightsApiFp;
|
|
108
|
+
/**
|
|
109
|
+
* ValueFrameworkWeightsApi - factory interface
|
|
110
|
+
*/
|
|
111
|
+
const ValueFrameworkWeightsApiFactory = function (configuration, basePath, axios) {
|
|
112
|
+
const localVarFp = (0, exports.ValueFrameworkWeightsApiFp)(configuration);
|
|
113
|
+
return {
|
|
114
|
+
/**
|
|
115
|
+
* Retrieve a paginated list of all objective weights for a specific value framework.
|
|
116
|
+
* @summary List all objective weights for a value framework
|
|
117
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
118
|
+
* @param {number} [offset] Number of records to skip
|
|
119
|
+
* @param {number} [limit] Max number of records to return
|
|
120
|
+
* @param {*} [options] Override http request option.
|
|
121
|
+
* @throws {RequiredError}
|
|
122
|
+
*/
|
|
123
|
+
getWeightsForValueFramework(valueFrameworkId, offset, limit, options) {
|
|
124
|
+
return localVarFp.getWeightsForValueFramework(valueFrameworkId, offset, limit, options).then((request) => request(axios, basePath));
|
|
125
|
+
},
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
exports.ValueFrameworkWeightsApiFactory = ValueFrameworkWeightsApiFactory;
|
|
129
|
+
/**
|
|
130
|
+
* ValueFrameworkWeightsApi - object-oriented interface
|
|
131
|
+
*/
|
|
132
|
+
class ValueFrameworkWeightsApi extends base_1.BaseAPI {
|
|
133
|
+
/**
|
|
134
|
+
* Retrieve a paginated list of all objective weights for a specific value framework.
|
|
135
|
+
* @summary List all objective weights for a value framework
|
|
136
|
+
* @param {string} valueFrameworkId UUID of the value framework
|
|
137
|
+
* @param {number} [offset] Number of records to skip
|
|
138
|
+
* @param {number} [limit] Max number of records to return
|
|
139
|
+
* @param {*} [options] Override http request option.
|
|
140
|
+
* @throws {RequiredError}
|
|
141
|
+
*/
|
|
142
|
+
getWeightsForValueFramework(valueFrameworkId, offset, limit, options) {
|
|
143
|
+
return (0, exports.ValueFrameworkWeightsApiFp)(this.configuration).getWeightsForValueFramework(valueFrameworkId, offset, limit, options).then((request) => request(this.axios, this.basePath));
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
exports.ValueFrameworkWeightsApi = ValueFrameworkWeightsApi;
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Asset Investment Planning
|
|
3
3
|
* API for Asset Investment Planning
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.2.0-
|
|
5
|
+
* The version of the OpenAPI document: 0.2.0-dev3
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -10,8 +10,15 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
export * from './api/default-api';
|
|
13
|
+
export * from './api/impact-api';
|
|
14
|
+
export * from './api/investment-api';
|
|
13
15
|
export * from './api/metric-api';
|
|
16
|
+
export * from './api/metric-costs-api';
|
|
14
17
|
export * from './api/metric-costs-per-year-api';
|
|
15
18
|
export * from './api/objective-api';
|
|
16
19
|
export * from './api/objective-weight-api';
|
|
20
|
+
export * from './api/objective-weights-api';
|
|
21
|
+
export * from './api/option-api';
|
|
17
22
|
export * from './api/value-framework-api';
|
|
23
|
+
export * from './api/value-framework-costs-api';
|
|
24
|
+
export * from './api/value-framework-weights-api';
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Asset Investment Planning
|
|
6
6
|
* API for Asset Investment Planning
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.2.0-
|
|
8
|
+
* The version of the OpenAPI document: 0.2.0-dev3
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -28,8 +28,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
28
28
|
};
|
|
29
29
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
30
|
__exportStar(require("./api/default-api"), exports);
|
|
31
|
+
__exportStar(require("./api/impact-api"), exports);
|
|
32
|
+
__exportStar(require("./api/investment-api"), exports);
|
|
31
33
|
__exportStar(require("./api/metric-api"), exports);
|
|
34
|
+
__exportStar(require("./api/metric-costs-api"), exports);
|
|
32
35
|
__exportStar(require("./api/metric-costs-per-year-api"), exports);
|
|
33
36
|
__exportStar(require("./api/objective-api"), exports);
|
|
34
37
|
__exportStar(require("./api/objective-weight-api"), exports);
|
|
38
|
+
__exportStar(require("./api/objective-weights-api"), exports);
|
|
39
|
+
__exportStar(require("./api/option-api"), exports);
|
|
35
40
|
__exportStar(require("./api/value-framework-api"), exports);
|
|
41
|
+
__exportStar(require("./api/value-framework-costs-api"), exports);
|
|
42
|
+
__exportStar(require("./api/value-framework-weights-api"), exports);
|