@cosmotech/aip-client 0.2.0-dev → 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.
Files changed (290) hide show
  1. package/README.md +141 -4
  2. package/api/default-api.ts +8 -15
  3. package/api/impact-api.ts +507 -0
  4. package/api/investment-api.ts +1308 -0
  5. package/api/metric-api.ts +185 -164
  6. package/api/metric-costs-api.ts +144 -0
  7. package/api/metric-costs-per-year-api.ts +200 -200
  8. package/api/objective-api.ts +538 -44
  9. package/api/objective-weight-api.ts +190 -190
  10. package/api/objective-weights-api.ts +144 -0
  11. package/api/option-api.ts +925 -0
  12. package/api/value-framework-api.ts +1223 -109
  13. package/api/value-framework-costs-api.ts +239 -0
  14. package/api/value-framework-weights-api.ts +144 -0
  15. package/api.ts +8 -1
  16. package/base.ts +1 -25
  17. package/common.ts +20 -43
  18. package/configuration.ts +31 -20
  19. package/dist/api/default-api.d.ts +62 -0
  20. package/dist/api/default-api.js +122 -0
  21. package/dist/api/impact-api.d.ts +245 -0
  22. package/dist/api/impact-api.js +493 -0
  23. package/dist/api/investment-api.d.ts +607 -0
  24. package/dist/api/investment-api.js +1248 -0
  25. package/dist/api/metric-api.d.ts +225 -0
  26. package/dist/api/metric-api.js +458 -0
  27. package/dist/api/metric-costs-api.d.ts +75 -0
  28. package/dist/api/metric-costs-api.js +146 -0
  29. package/dist/api/metric-costs-per-year-api.d.ts +237 -0
  30. package/dist/api/metric-costs-per-year-api.js +479 -0
  31. package/dist/api/objective-api.d.ts +437 -0
  32. package/dist/api/objective-api.js +901 -0
  33. package/dist/api/objective-weight-api.d.ts +225 -0
  34. package/dist/api/objective-weight-api.js +458 -0
  35. package/dist/api/objective-weights-api.d.ts +75 -0
  36. package/dist/api/objective-weights-api.js +146 -0
  37. package/dist/api/option-api.d.ts +436 -0
  38. package/dist/api/option-api.js +888 -0
  39. package/dist/api/value-framework-api.d.ts +723 -0
  40. package/dist/api/value-framework-api.js +1490 -0
  41. package/dist/api/value-framework-costs-api.d.ts +119 -0
  42. package/dist/api/value-framework-costs-api.js +236 -0
  43. package/dist/api/value-framework-weights-api.d.ts +75 -0
  44. package/dist/api/value-framework-weights-api.js +146 -0
  45. package/dist/api.d.ts +24 -0
  46. package/dist/api.js +42 -0
  47. package/dist/base.d.ts +42 -0
  48. package/dist/base.js +46 -0
  49. package/dist/common.d.ts +34 -0
  50. package/dist/common.js +139 -0
  51. package/dist/configuration.d.ts +98 -0
  52. package/dist/configuration.js +44 -0
  53. package/dist/esm/api/default-api.d.ts +62 -0
  54. package/dist/esm/api/default-api.js +115 -0
  55. package/dist/esm/api/impact-api.d.ts +245 -0
  56. package/dist/esm/api/impact-api.js +486 -0
  57. package/dist/esm/api/investment-api.d.ts +607 -0
  58. package/dist/esm/api/investment-api.js +1241 -0
  59. package/dist/esm/api/metric-api.d.ts +225 -0
  60. package/dist/esm/api/metric-api.js +451 -0
  61. package/dist/esm/api/metric-costs-api.d.ts +75 -0
  62. package/dist/esm/api/metric-costs-api.js +139 -0
  63. package/dist/esm/api/metric-costs-per-year-api.d.ts +237 -0
  64. package/dist/esm/api/metric-costs-per-year-api.js +472 -0
  65. package/dist/esm/api/objective-api.d.ts +437 -0
  66. package/dist/esm/api/objective-api.js +894 -0
  67. package/dist/esm/api/objective-weight-api.d.ts +225 -0
  68. package/dist/esm/api/objective-weight-api.js +451 -0
  69. package/dist/esm/api/objective-weights-api.d.ts +75 -0
  70. package/dist/esm/api/objective-weights-api.js +139 -0
  71. package/dist/esm/api/option-api.d.ts +436 -0
  72. package/dist/esm/api/option-api.js +881 -0
  73. package/dist/esm/api/value-framework-api.d.ts +723 -0
  74. package/dist/esm/api/value-framework-api.js +1483 -0
  75. package/dist/esm/api/value-framework-costs-api.d.ts +119 -0
  76. package/dist/esm/api/value-framework-costs-api.js +229 -0
  77. package/dist/esm/api/value-framework-weights-api.d.ts +75 -0
  78. package/dist/esm/api/value-framework-weights-api.js +139 -0
  79. package/dist/esm/api.d.ts +24 -0
  80. package/dist/esm/api.js +26 -0
  81. package/dist/esm/base.d.ts +42 -0
  82. package/dist/esm/base.js +41 -0
  83. package/dist/esm/common.d.ts +34 -0
  84. package/dist/esm/common.js +126 -0
  85. package/dist/esm/configuration.d.ts +98 -0
  86. package/dist/esm/configuration.js +40 -0
  87. package/dist/esm/index.d.ts +14 -0
  88. package/dist/esm/index.js +16 -0
  89. package/dist/esm/models/evolution-type.d.ts +16 -0
  90. package/dist/esm/models/evolution-type.js +17 -0
  91. package/dist/esm/models/httpvalidation-error.d.ts +15 -0
  92. package/dist/esm/models/httpvalidation-error.js +14 -0
  93. package/dist/esm/models/impact-apiresponse.d.ts +33 -0
  94. package/dist/esm/models/impact-apiresponse.js +14 -0
  95. package/dist/esm/models/impact-create.d.ts +37 -0
  96. package/dist/esm/models/impact-create.js +14 -0
  97. package/dist/esm/models/impact-update.d.ts +22 -0
  98. package/dist/esm/models/impact-update.js +14 -0
  99. package/dist/esm/models/index.d.ts +30 -0
  100. package/dist/esm/models/index.js +30 -0
  101. package/dist/esm/models/investment-create.d.ts +21 -0
  102. package/dist/esm/models/investment-create.js +14 -0
  103. package/dist/esm/models/investment-response.d.ts +25 -0
  104. package/dist/esm/models/investment-response.js +14 -0
  105. package/dist/esm/models/investment-update.d.ts +18 -0
  106. package/dist/esm/models/investment-update.js +14 -0
  107. package/dist/esm/models/location-inner.d.ts +13 -0
  108. package/dist/esm/models/location-inner.js +14 -0
  109. package/dist/esm/models/measurement-type.d.ts +16 -0
  110. package/dist/esm/models/measurement-type.js +17 -0
  111. package/dist/esm/models/metric-costs-per-year-create.d.ts +32 -0
  112. package/dist/esm/models/metric-costs-per-year-create.js +14 -0
  113. package/dist/esm/models/metric-costs-per-year-response.d.ts +37 -0
  114. package/dist/esm/models/metric-costs-per-year-response.js +14 -0
  115. package/dist/esm/models/metric-costs-per-year-update.d.ts +18 -0
  116. package/dist/esm/models/metric-costs-per-year-update.js +14 -0
  117. package/dist/esm/models/metric-create.d.ts +43 -0
  118. package/dist/esm/models/metric-create.js +14 -0
  119. package/dist/esm/models/metric-response.d.ts +45 -0
  120. package/dist/esm/models/metric-response.js +14 -0
  121. package/dist/esm/models/metric-type.d.ts +17 -0
  122. package/dist/esm/models/metric-type.js +18 -0
  123. package/dist/esm/models/metric-update.d.ts +24 -0
  124. package/dist/esm/models/metric-update.js +14 -0
  125. package/dist/esm/models/objective-create.d.ts +21 -0
  126. package/dist/esm/models/objective-create.js +14 -0
  127. package/dist/esm/models/objective-response.d.ts +25 -0
  128. package/dist/esm/models/objective-response.js +14 -0
  129. package/dist/esm/models/objective-update.d.ts +18 -0
  130. package/dist/esm/models/objective-update.js +14 -0
  131. package/dist/esm/models/objective-weight-create.d.ts +28 -0
  132. package/dist/esm/models/objective-weight-create.js +14 -0
  133. package/dist/esm/models/objective-weight-response.d.ts +29 -0
  134. package/dist/esm/models/objective-weight-response.js +14 -0
  135. package/dist/esm/models/objective-weight-update.d.ts +17 -0
  136. package/dist/esm/models/objective-weight-update.js +14 -0
  137. package/dist/esm/models/option-create.d.ts +33 -0
  138. package/dist/esm/models/option-create.js +14 -0
  139. package/dist/esm/models/option-response.d.ts +31 -0
  140. package/dist/esm/models/option-response.js +14 -0
  141. package/dist/esm/models/option-update.d.ts +19 -0
  142. package/dist/esm/models/option-update.js +14 -0
  143. package/dist/esm/models/validation-error.d.ts +19 -0
  144. package/dist/esm/models/validation-error.js +14 -0
  145. package/dist/esm/models/value-framework-create.d.ts +21 -0
  146. package/dist/esm/models/value-framework-create.js +14 -0
  147. package/dist/esm/models/value-framework-response.d.ts +25 -0
  148. package/dist/esm/models/value-framework-response.js +14 -0
  149. package/dist/esm/models/value-framework-update.d.ts +18 -0
  150. package/dist/esm/models/value-framework-update.js +14 -0
  151. package/dist/index.d.ts +14 -0
  152. package/dist/index.js +32 -0
  153. package/dist/models/evolution-type.d.ts +16 -0
  154. package/dist/models/evolution-type.js +20 -0
  155. package/dist/models/httpvalidation-error.d.ts +15 -0
  156. package/dist/models/httpvalidation-error.js +15 -0
  157. package/dist/models/impact-apiresponse.d.ts +33 -0
  158. package/dist/models/impact-apiresponse.js +15 -0
  159. package/dist/models/impact-create.d.ts +37 -0
  160. package/dist/models/impact-create.js +15 -0
  161. package/dist/models/impact-update.d.ts +22 -0
  162. package/dist/models/impact-update.js +15 -0
  163. package/dist/models/index.d.ts +30 -0
  164. package/dist/models/index.js +46 -0
  165. package/dist/models/investment-create.d.ts +21 -0
  166. package/dist/models/investment-create.js +15 -0
  167. package/dist/models/investment-response.d.ts +25 -0
  168. package/dist/models/investment-response.js +15 -0
  169. package/dist/models/investment-update.d.ts +18 -0
  170. package/dist/models/investment-update.js +15 -0
  171. package/dist/models/location-inner.d.ts +13 -0
  172. package/dist/models/location-inner.js +15 -0
  173. package/dist/models/measurement-type.d.ts +16 -0
  174. package/dist/models/measurement-type.js +20 -0
  175. package/dist/models/metric-costs-per-year-create.d.ts +32 -0
  176. package/dist/models/metric-costs-per-year-create.js +15 -0
  177. package/dist/models/metric-costs-per-year-response.d.ts +37 -0
  178. package/dist/models/metric-costs-per-year-response.js +15 -0
  179. package/dist/models/metric-costs-per-year-update.d.ts +18 -0
  180. package/dist/models/metric-costs-per-year-update.js +15 -0
  181. package/dist/models/metric-create.d.ts +43 -0
  182. package/dist/models/metric-create.js +15 -0
  183. package/dist/models/metric-response.d.ts +45 -0
  184. package/dist/models/metric-response.js +15 -0
  185. package/dist/models/metric-type.d.ts +17 -0
  186. package/dist/models/metric-type.js +21 -0
  187. package/dist/models/metric-update.d.ts +24 -0
  188. package/dist/models/metric-update.js +15 -0
  189. package/dist/models/objective-create.d.ts +21 -0
  190. package/dist/models/objective-create.js +15 -0
  191. package/dist/models/objective-response.d.ts +25 -0
  192. package/dist/models/objective-response.js +15 -0
  193. package/dist/models/objective-update.d.ts +18 -0
  194. package/dist/models/objective-update.js +15 -0
  195. package/dist/models/objective-weight-create.d.ts +28 -0
  196. package/dist/models/objective-weight-create.js +15 -0
  197. package/dist/models/objective-weight-response.d.ts +29 -0
  198. package/dist/models/objective-weight-response.js +15 -0
  199. package/dist/models/objective-weight-update.d.ts +17 -0
  200. package/dist/models/objective-weight-update.js +15 -0
  201. package/dist/models/option-create.d.ts +33 -0
  202. package/dist/models/option-create.js +15 -0
  203. package/dist/models/option-response.d.ts +31 -0
  204. package/dist/models/option-response.js +15 -0
  205. package/dist/models/option-update.d.ts +19 -0
  206. package/dist/models/option-update.js +15 -0
  207. package/dist/models/validation-error.d.ts +19 -0
  208. package/dist/models/validation-error.js +15 -0
  209. package/dist/models/value-framework-create.d.ts +21 -0
  210. package/dist/models/value-framework-create.js +15 -0
  211. package/dist/models/value-framework-response.d.ts +25 -0
  212. package/dist/models/value-framework-response.js +15 -0
  213. package/dist/models/value-framework-update.d.ts +18 -0
  214. package/dist/models/value-framework-update.js +15 -0
  215. package/docs/DefaultApi.md +51 -0
  216. package/docs/EvolutionType.md +10 -0
  217. package/docs/HTTPValidationError.md +20 -0
  218. package/docs/ImpactAPIResponse.md +39 -0
  219. package/docs/ImpactApi.md +312 -0
  220. package/docs/ImpactCreate.md +29 -0
  221. package/docs/ImpactUpdate.md +29 -0
  222. package/docs/InvestmentApi.md +875 -0
  223. package/docs/InvestmentCreate.md +23 -0
  224. package/docs/InvestmentResponse.md +31 -0
  225. package/docs/InvestmentUpdate.md +23 -0
  226. package/docs/LocationInner.md +18 -0
  227. package/docs/MeasurementType.md +10 -0
  228. package/docs/MetricApi.md +299 -0
  229. package/docs/MetricCostsApi.md +66 -0
  230. package/docs/MetricCostsPerYearApi.md +307 -0
  231. package/docs/MetricCostsPerYearCreate.md +27 -0
  232. package/docs/MetricCostsPerYearResponse.md +31 -0
  233. package/docs/MetricCostsPerYearUpdate.md +23 -0
  234. package/docs/MetricCreate.md +33 -0
  235. package/docs/MetricResponse.md +43 -0
  236. package/docs/MetricType.md +12 -0
  237. package/docs/MetricUpdate.md +31 -0
  238. package/docs/ObjectiveApi.md +633 -0
  239. package/docs/ObjectiveCreate.md +23 -0
  240. package/docs/ObjectiveResponse.md +31 -0
  241. package/docs/ObjectiveUpdate.md +23 -0
  242. package/docs/ObjectiveWeightApi.md +298 -0
  243. package/docs/ObjectiveWeightCreate.md +25 -0
  244. package/docs/ObjectiveWeightResponse.md +27 -0
  245. package/docs/ObjectiveWeightUpdate.md +21 -0
  246. package/docs/ObjectiveWeightsApi.md +66 -0
  247. package/docs/OptionApi.md +602 -0
  248. package/docs/OptionCreate.md +29 -0
  249. package/docs/OptionResponse.md +37 -0
  250. package/docs/OptionUpdate.md +25 -0
  251. package/docs/ValidationError.md +28 -0
  252. package/docs/ValueFrameworkApi.md +1053 -0
  253. package/docs/ValueFrameworkCostsApi.md +128 -0
  254. package/docs/ValueFrameworkCreate.md +23 -0
  255. package/docs/ValueFrameworkResponse.md +31 -0
  256. package/docs/ValueFrameworkUpdate.md +23 -0
  257. package/docs/ValueFrameworkWeightsApi.md +66 -0
  258. package/index.ts +1 -1
  259. package/models/evolution-type.ts +26 -0
  260. package/models/httpvalidation-error.ts +2 -12
  261. package/models/impact-apiresponse.ts +43 -0
  262. package/models/impact-create.ts +47 -0
  263. package/models/impact-update.ts +32 -0
  264. package/models/index.ts +11 -1
  265. package/models/investment-create.ts +27 -0
  266. package/models/investment-response.ts +31 -0
  267. package/models/investment-update.ts +24 -0
  268. package/models/{validation-error-loc-inner.ts → location-inner.ts} +2 -7
  269. package/models/measurement-type.ts +1 -6
  270. package/models/metric-costs-per-year-create.ts +1 -17
  271. package/models/metric-costs-per-year-response.ts +1 -18
  272. package/models/metric-costs-per-year-update.ts +1 -13
  273. package/models/metric-create.ts +3 -28
  274. package/models/metric-response.ts +3 -50
  275. package/models/metric-type.ts +1 -6
  276. package/models/metric-update.ts +3 -35
  277. package/models/objective-create.ts +1 -10
  278. package/models/objective-response.ts +1 -30
  279. package/models/objective-update.ts +1 -13
  280. package/models/objective-weight-create.ts +1 -9
  281. package/models/objective-weight-response.ts +1 -14
  282. package/models/objective-weight-update.ts +1 -8
  283. package/models/option-create.ts +39 -0
  284. package/models/option-response.ts +37 -0
  285. package/models/option-update.ts +25 -0
  286. package/models/validation-error.ts +3 -33
  287. package/models/value-framework-create.ts +1 -10
  288. package/models/value-framework-response.ts +1 -30
  289. package/models/value-framework-update.ts +1 -13
  290. package/package.json +4 -4
@@ -0,0 +1,723 @@
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 { MetricCostsPerYearCreate } from '../models';
16
+ import type { MetricCostsPerYearResponse } from '../models';
17
+ import type { MetricCostsPerYearUpdate } from '../models';
18
+ import type { ObjectiveWeightCreate } from '../models';
19
+ import type { ObjectiveWeightResponse } from '../models';
20
+ import type { ObjectiveWeightUpdate } from '../models';
21
+ import type { ValueFrameworkCreate } from '../models';
22
+ import type { ValueFrameworkResponse } from '../models';
23
+ import type { ValueFrameworkUpdate } from '../models';
24
+ /**
25
+ * ValueFrameworkApi - axios parameter creator
26
+ */
27
+ export declare const ValueFrameworkApiAxiosParamCreator: (configuration?: Configuration) => {
28
+ /**
29
+ * Create a yearly cost override for a metric within this framework.
30
+ * @summary Create a yearly metric cost for this framework
31
+ * @param {string} valueFrameworkId UUID of the value framework
32
+ * @param {MetricCostsPerYearCreate} metricCostsPerYearCreate
33
+ * @param {*} [options] Override http request option.
34
+ * @throws {RequiredError}
35
+ */
36
+ createMetricCostForFramework: (valueFrameworkId: string, metricCostsPerYearCreate: MetricCostsPerYearCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
37
+ /**
38
+ * Assign a weight to an objective within this framework.
39
+ * @summary Create an objective weight for this framework
40
+ * @param {string} valueFrameworkId UUID of the value framework
41
+ * @param {ObjectiveWeightCreate} objectiveWeightCreate
42
+ * @param {*} [options] Override http request option.
43
+ * @throws {RequiredError}
44
+ */
45
+ createObjectiveWeightForFramework: (valueFrameworkId: string, objectiveWeightCreate: ObjectiveWeightCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46
+ /**
47
+ * Delete a metric cost entry for a specific year within this framework.
48
+ * @summary Delete metric costs for this framework
49
+ * @param {string} metricId UUID of the metric
50
+ * @param {number} year Year (1600-3000)
51
+ * @param {string} valueFrameworkId UUID of the value framework
52
+ * @param {*} [options] Override http request option.
53
+ * @throws {RequiredError}
54
+ */
55
+ deleteMetricCostForFramework: (metricId: string, year: number, valueFrameworkId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56
+ /**
57
+ * Remove an objective weight from this framework.
58
+ * @summary Delete an objective weight for this framework
59
+ * @param {string} objectiveId UUID of the objective
60
+ * @param {string} valueFrameworkId UUID of the value framework
61
+ * @param {*} [options] Override http request option.
62
+ * @throws {RequiredError}
63
+ */
64
+ deleteObjectiveWeightForFramework: (objectiveId: string, valueFrameworkId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
65
+ /**
66
+ * Delete an existing value framework by its ID. Associated objective weights and metric costs per year are also deleted via cascade.
67
+ * @summary Delete a value framework
68
+ * @param {string} valueFrameworkId UUID of the value framework
69
+ * @param {*} [options] Override http request option.
70
+ * @throws {RequiredError}
71
+ */
72
+ deleteValueFramework: (valueFrameworkId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
73
+ /**
74
+ * Retrieve a paginated list of all metric costs for a specific value framework.
75
+ * @summary List all metric costs for a value framework
76
+ * @param {string} valueFrameworkId UUID of the value framework
77
+ * @param {number} [offset] Number of records to skip
78
+ * @param {number} [limit] Max number of records to return
79
+ * @param {*} [options] Override http request option.
80
+ * @throws {RequiredError}
81
+ */
82
+ getCostsForValueFramework: (valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83
+ /**
84
+ * Retrieve a paginated list of metric costs for a specific metric within a value framework.
85
+ * @summary List metric costs for a value framework filtered by metric
86
+ * @param {string} metricId UUID of the metric
87
+ * @param {string} valueFrameworkId UUID of the value framework
88
+ * @param {number} [offset] Number of records to skip
89
+ * @param {number} [limit] Max number of records to return
90
+ * @param {*} [options] Override http request option.
91
+ * @throws {RequiredError}
92
+ */
93
+ getCostsForValueFrameworkByMetric: (metricId: string, valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
94
+ /**
95
+ * Retrieve cost data for a specific metric within this framework for a given year.
96
+ * @summary Get a yearly metric cost for this framework
97
+ * @param {string} metricId UUID of the metric
98
+ * @param {number} year Year (1600-3000)
99
+ * @param {string} valueFrameworkId UUID of the value framework
100
+ * @param {*} [options] Override http request option.
101
+ * @throws {RequiredError}
102
+ */
103
+ getMetricCostForFramework: (metricId: string, year: number, valueFrameworkId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
104
+ /**
105
+ * Retrieve a paginated list of all yearly metric costs for a specific framework.
106
+ * @summary List yearly metric costs for this framework
107
+ * @param {string} valueFrameworkId UUID of the value framework
108
+ * @param {number} [offset] Number of records to skip
109
+ * @param {number} [limit] Max number of records to return
110
+ * @param {*} [options] Override http request option.
111
+ * @throws {RequiredError}
112
+ */
113
+ getMetricCostsForFramework: (valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
114
+ /**
115
+ * Retrieve the weight for a specific objective within this framework.
116
+ * @summary Get an objective weight for this framework
117
+ * @param {string} objectiveId UUID of the objective
118
+ * @param {string} valueFrameworkId UUID of the value framework
119
+ * @param {*} [options] Override http request option.
120
+ * @throws {RequiredError}
121
+ */
122
+ getObjectiveWeightForFramework: (objectiveId: string, valueFrameworkId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
123
+ /**
124
+ * Retrieve a paginated list of all objective weights for a specific framework.
125
+ * @summary List objective weights for this framework
126
+ * @param {string} valueFrameworkId UUID of the value framework
127
+ * @param {number} [offset] Number of records to skip
128
+ * @param {number} [limit] Max number of records to return
129
+ * @param {*} [options] Override http request option.
130
+ * @throws {RequiredError}
131
+ */
132
+ getObjectiveWeightsForFramework: (valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
133
+ /**
134
+ * Retrieve a single value framework by its ID.
135
+ * @summary Get a value framework by ID
136
+ * @param {string} valueFrameworkId UUID of the value framework
137
+ * @param {*} [options] Override http request option.
138
+ * @throws {RequiredError}
139
+ */
140
+ getValueFrameworkById: (valueFrameworkId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
141
+ /**
142
+ * Retrieve a paginated list of all value frameworks.
143
+ * @summary List value frameworks
144
+ * @param {number} [offset] Number of records to skip
145
+ * @param {number} [limit] Max number of records to return
146
+ * @param {*} [options] Override http request option.
147
+ * @throws {RequiredError}
148
+ */
149
+ getValueFrameworks: (offset?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
150
+ /**
151
+ * Retrieve a paginated list of all objective weights for a specific value framework.
152
+ * @summary List all objective weights for a value framework
153
+ * @param {string} valueFrameworkId UUID of the value framework
154
+ * @param {number} [offset] Number of records to skip
155
+ * @param {number} [limit] Max number of records to return
156
+ * @param {*} [options] Override http request option.
157
+ * @throws {RequiredError}
158
+ */
159
+ getWeightsForValueFramework: (valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
160
+ /**
161
+ * Update the perceived and/or direct cost of a metric for a specific year within this framework.
162
+ * @summary Partially update metric costs for this framework
163
+ * @param {string} metricId UUID of the metric
164
+ * @param {number} year Year (1600-3000)
165
+ * @param {string} valueFrameworkId UUID of the value framework
166
+ * @param {MetricCostsPerYearUpdate} metricCostsPerYearUpdate
167
+ * @param {*} [options] Override http request option.
168
+ * @throws {RequiredError}
169
+ */
170
+ patchMetricCostForFramework: (metricId: string, year: number, valueFrameworkId: string, metricCostsPerYearUpdate: MetricCostsPerYearUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
171
+ /**
172
+ * Update the weight of an objective within this value framework.
173
+ * @summary Partially update an objective weight for this framework
174
+ * @param {string} objectiveId UUID of the objective
175
+ * @param {string} valueFrameworkId UUID of the value framework
176
+ * @param {ObjectiveWeightUpdate} objectiveWeightUpdate
177
+ * @param {*} [options] Override http request option.
178
+ * @throws {RequiredError}
179
+ */
180
+ patchObjectiveWeightForFramework: (objectiveId: string, valueFrameworkId: string, objectiveWeightUpdate: ObjectiveWeightUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
181
+ /**
182
+ * Update one or more fields of an existing value framework. Only the fields included in the request body will be modified; omitted fields remain unchanged.
183
+ * @summary Partially update a value framework
184
+ * @param {string} valueFrameworkId UUID of the value framework
185
+ * @param {ValueFrameworkUpdate} valueFrameworkUpdate
186
+ * @param {*} [options] Override http request option.
187
+ * @throws {RequiredError}
188
+ */
189
+ patchValueFramework: (valueFrameworkId: string, valueFrameworkUpdate: ValueFrameworkUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
190
+ /**
191
+ * Create a new value framework. Name must be unique and non-empty.
192
+ * @summary Create a value framework
193
+ * @param {ValueFrameworkCreate} valueFrameworkCreate
194
+ * @param {*} [options] Override http request option.
195
+ * @throws {RequiredError}
196
+ */
197
+ postValueFramework: (valueFrameworkCreate: ValueFrameworkCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
198
+ };
199
+ /**
200
+ * ValueFrameworkApi - functional programming interface
201
+ */
202
+ export declare const ValueFrameworkApiFp: (configuration?: Configuration) => {
203
+ /**
204
+ * Create a yearly cost override for a metric within this framework.
205
+ * @summary Create a yearly metric cost for this framework
206
+ * @param {string} valueFrameworkId UUID of the value framework
207
+ * @param {MetricCostsPerYearCreate} metricCostsPerYearCreate
208
+ * @param {*} [options] Override http request option.
209
+ * @throws {RequiredError}
210
+ */
211
+ createMetricCostForFramework(valueFrameworkId: string, metricCostsPerYearCreate: MetricCostsPerYearCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetricCostsPerYearResponse>>;
212
+ /**
213
+ * Assign a weight to an objective within this framework.
214
+ * @summary Create an objective weight for this framework
215
+ * @param {string} valueFrameworkId UUID of the value framework
216
+ * @param {ObjectiveWeightCreate} objectiveWeightCreate
217
+ * @param {*} [options] Override http request option.
218
+ * @throws {RequiredError}
219
+ */
220
+ createObjectiveWeightForFramework(valueFrameworkId: string, objectiveWeightCreate: ObjectiveWeightCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectiveWeightResponse>>;
221
+ /**
222
+ * Delete a metric cost entry for a specific year within this framework.
223
+ * @summary Delete metric costs for this framework
224
+ * @param {string} metricId UUID of the metric
225
+ * @param {number} year Year (1600-3000)
226
+ * @param {string} valueFrameworkId UUID of the value framework
227
+ * @param {*} [options] Override http request option.
228
+ * @throws {RequiredError}
229
+ */
230
+ deleteMetricCostForFramework(metricId: string, year: number, valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
231
+ /**
232
+ * Remove an objective weight from this framework.
233
+ * @summary Delete an objective weight for this framework
234
+ * @param {string} objectiveId UUID of the objective
235
+ * @param {string} valueFrameworkId UUID of the value framework
236
+ * @param {*} [options] Override http request option.
237
+ * @throws {RequiredError}
238
+ */
239
+ deleteObjectiveWeightForFramework(objectiveId: string, valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
240
+ /**
241
+ * Delete an existing value framework by its ID. Associated objective weights and metric costs per year are also deleted via cascade.
242
+ * @summary Delete a value framework
243
+ * @param {string} valueFrameworkId UUID of the value framework
244
+ * @param {*} [options] Override http request option.
245
+ * @throws {RequiredError}
246
+ */
247
+ deleteValueFramework(valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
248
+ /**
249
+ * Retrieve a paginated list of all metric costs for a specific value framework.
250
+ * @summary List all metric costs for a value framework
251
+ * @param {string} valueFrameworkId UUID of the value framework
252
+ * @param {number} [offset] Number of records to skip
253
+ * @param {number} [limit] Max number of records to return
254
+ * @param {*} [options] Override http request option.
255
+ * @throws {RequiredError}
256
+ */
257
+ getCostsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MetricCostsPerYearResponse>>>;
258
+ /**
259
+ * Retrieve a paginated list of metric costs for a specific metric within a value framework.
260
+ * @summary List metric costs for a value framework filtered by metric
261
+ * @param {string} metricId UUID of the metric
262
+ * @param {string} valueFrameworkId UUID of the value framework
263
+ * @param {number} [offset] Number of records to skip
264
+ * @param {number} [limit] Max number of records to return
265
+ * @param {*} [options] Override http request option.
266
+ * @throws {RequiredError}
267
+ */
268
+ getCostsForValueFrameworkByMetric(metricId: string, valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MetricCostsPerYearResponse>>>;
269
+ /**
270
+ * Retrieve cost data for a specific metric within this framework for a given year.
271
+ * @summary Get a yearly metric cost for this framework
272
+ * @param {string} metricId UUID of the metric
273
+ * @param {number} year Year (1600-3000)
274
+ * @param {string} valueFrameworkId UUID of the value framework
275
+ * @param {*} [options] Override http request option.
276
+ * @throws {RequiredError}
277
+ */
278
+ getMetricCostForFramework(metricId: string, year: number, valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetricCostsPerYearResponse>>;
279
+ /**
280
+ * Retrieve a paginated list of all yearly metric costs for a specific framework.
281
+ * @summary List yearly metric costs for this framework
282
+ * @param {string} valueFrameworkId UUID of the value framework
283
+ * @param {number} [offset] Number of records to skip
284
+ * @param {number} [limit] Max number of records to return
285
+ * @param {*} [options] Override http request option.
286
+ * @throws {RequiredError}
287
+ */
288
+ getMetricCostsForFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MetricCostsPerYearResponse>>>;
289
+ /**
290
+ * Retrieve the weight for a specific objective within this framework.
291
+ * @summary Get an objective weight for this framework
292
+ * @param {string} objectiveId UUID of the objective
293
+ * @param {string} valueFrameworkId UUID of the value framework
294
+ * @param {*} [options] Override http request option.
295
+ * @throws {RequiredError}
296
+ */
297
+ getObjectiveWeightForFramework(objectiveId: string, valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectiveWeightResponse>>;
298
+ /**
299
+ * Retrieve a paginated list of all objective weights for a specific framework.
300
+ * @summary List objective weights for this framework
301
+ * @param {string} valueFrameworkId UUID of the value framework
302
+ * @param {number} [offset] Number of records to skip
303
+ * @param {number} [limit] Max number of records to return
304
+ * @param {*} [options] Override http request option.
305
+ * @throws {RequiredError}
306
+ */
307
+ getObjectiveWeightsForFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ObjectiveWeightResponse>>>;
308
+ /**
309
+ * Retrieve a single value framework by its ID.
310
+ * @summary Get a value framework by ID
311
+ * @param {string} valueFrameworkId UUID of the value framework
312
+ * @param {*} [options] Override http request option.
313
+ * @throws {RequiredError}
314
+ */
315
+ getValueFrameworkById(valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValueFrameworkResponse>>;
316
+ /**
317
+ * Retrieve a paginated list of all value frameworks.
318
+ * @summary List value frameworks
319
+ * @param {number} [offset] Number of records to skip
320
+ * @param {number} [limit] Max number of records to return
321
+ * @param {*} [options] Override http request option.
322
+ * @throws {RequiredError}
323
+ */
324
+ getValueFrameworks(offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ValueFrameworkResponse>>>;
325
+ /**
326
+ * Retrieve a paginated list of all objective weights for a specific value framework.
327
+ * @summary List all objective weights for a value framework
328
+ * @param {string} valueFrameworkId UUID of the value framework
329
+ * @param {number} [offset] Number of records to skip
330
+ * @param {number} [limit] Max number of records to return
331
+ * @param {*} [options] Override http request option.
332
+ * @throws {RequiredError}
333
+ */
334
+ getWeightsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ObjectiveWeightResponse>>>;
335
+ /**
336
+ * Update the perceived and/or direct cost of a metric for a specific year within this framework.
337
+ * @summary Partially update metric costs for this framework
338
+ * @param {string} metricId UUID of the metric
339
+ * @param {number} year Year (1600-3000)
340
+ * @param {string} valueFrameworkId UUID of the value framework
341
+ * @param {MetricCostsPerYearUpdate} metricCostsPerYearUpdate
342
+ * @param {*} [options] Override http request option.
343
+ * @throws {RequiredError}
344
+ */
345
+ patchMetricCostForFramework(metricId: string, year: number, valueFrameworkId: string, metricCostsPerYearUpdate: MetricCostsPerYearUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetricCostsPerYearResponse>>;
346
+ /**
347
+ * Update the weight of an objective within this value framework.
348
+ * @summary Partially update an objective weight for this framework
349
+ * @param {string} objectiveId UUID of the objective
350
+ * @param {string} valueFrameworkId UUID of the value framework
351
+ * @param {ObjectiveWeightUpdate} objectiveWeightUpdate
352
+ * @param {*} [options] Override http request option.
353
+ * @throws {RequiredError}
354
+ */
355
+ patchObjectiveWeightForFramework(objectiveId: string, valueFrameworkId: string, objectiveWeightUpdate: ObjectiveWeightUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectiveWeightResponse>>;
356
+ /**
357
+ * Update one or more fields of an existing value framework. Only the fields included in the request body will be modified; omitted fields remain unchanged.
358
+ * @summary Partially update a value framework
359
+ * @param {string} valueFrameworkId UUID of the value framework
360
+ * @param {ValueFrameworkUpdate} valueFrameworkUpdate
361
+ * @param {*} [options] Override http request option.
362
+ * @throws {RequiredError}
363
+ */
364
+ patchValueFramework(valueFrameworkId: string, valueFrameworkUpdate: ValueFrameworkUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValueFrameworkResponse>>;
365
+ /**
366
+ * Create a new value framework. Name must be unique and non-empty.
367
+ * @summary Create a value framework
368
+ * @param {ValueFrameworkCreate} valueFrameworkCreate
369
+ * @param {*} [options] Override http request option.
370
+ * @throws {RequiredError}
371
+ */
372
+ postValueFramework(valueFrameworkCreate: ValueFrameworkCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValueFrameworkResponse>>;
373
+ };
374
+ /**
375
+ * ValueFrameworkApi - factory interface
376
+ */
377
+ export declare const ValueFrameworkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
378
+ /**
379
+ * Create a yearly cost override for a metric within this framework.
380
+ * @summary Create a yearly metric cost for this framework
381
+ * @param {string} valueFrameworkId UUID of the value framework
382
+ * @param {MetricCostsPerYearCreate} metricCostsPerYearCreate
383
+ * @param {*} [options] Override http request option.
384
+ * @throws {RequiredError}
385
+ */
386
+ createMetricCostForFramework(valueFrameworkId: string, metricCostsPerYearCreate: MetricCostsPerYearCreate, options?: RawAxiosRequestConfig): AxiosPromise<MetricCostsPerYearResponse>;
387
+ /**
388
+ * Assign a weight to an objective within this framework.
389
+ * @summary Create an objective weight for this framework
390
+ * @param {string} valueFrameworkId UUID of the value framework
391
+ * @param {ObjectiveWeightCreate} objectiveWeightCreate
392
+ * @param {*} [options] Override http request option.
393
+ * @throws {RequiredError}
394
+ */
395
+ createObjectiveWeightForFramework(valueFrameworkId: string, objectiveWeightCreate: ObjectiveWeightCreate, options?: RawAxiosRequestConfig): AxiosPromise<ObjectiveWeightResponse>;
396
+ /**
397
+ * Delete a metric cost entry for a specific year within this framework.
398
+ * @summary Delete metric costs for this framework
399
+ * @param {string} metricId UUID of the metric
400
+ * @param {number} year Year (1600-3000)
401
+ * @param {string} valueFrameworkId UUID of the value framework
402
+ * @param {*} [options] Override http request option.
403
+ * @throws {RequiredError}
404
+ */
405
+ deleteMetricCostForFramework(metricId: string, year: number, valueFrameworkId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
406
+ /**
407
+ * Remove an objective weight from this framework.
408
+ * @summary Delete an objective weight for this framework
409
+ * @param {string} objectiveId UUID of the objective
410
+ * @param {string} valueFrameworkId UUID of the value framework
411
+ * @param {*} [options] Override http request option.
412
+ * @throws {RequiredError}
413
+ */
414
+ deleteObjectiveWeightForFramework(objectiveId: string, valueFrameworkId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
415
+ /**
416
+ * Delete an existing value framework by its ID. Associated objective weights and metric costs per year are also deleted via cascade.
417
+ * @summary Delete a value framework
418
+ * @param {string} valueFrameworkId UUID of the value framework
419
+ * @param {*} [options] Override http request option.
420
+ * @throws {RequiredError}
421
+ */
422
+ deleteValueFramework(valueFrameworkId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
423
+ /**
424
+ * Retrieve a paginated list of all metric costs for a specific value framework.
425
+ * @summary List all metric costs for a value framework
426
+ * @param {string} valueFrameworkId UUID of the value framework
427
+ * @param {number} [offset] Number of records to skip
428
+ * @param {number} [limit] Max number of records to return
429
+ * @param {*} [options] Override http request option.
430
+ * @throws {RequiredError}
431
+ */
432
+ getCostsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<MetricCostsPerYearResponse>>;
433
+ /**
434
+ * Retrieve a paginated list of metric costs for a specific metric within a value framework.
435
+ * @summary List metric costs for a value framework filtered by metric
436
+ * @param {string} metricId UUID of the metric
437
+ * @param {string} valueFrameworkId UUID of the value framework
438
+ * @param {number} [offset] Number of records to skip
439
+ * @param {number} [limit] Max number of records to return
440
+ * @param {*} [options] Override http request option.
441
+ * @throws {RequiredError}
442
+ */
443
+ getCostsForValueFrameworkByMetric(metricId: string, valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<MetricCostsPerYearResponse>>;
444
+ /**
445
+ * Retrieve cost data for a specific metric within this framework for a given year.
446
+ * @summary Get a yearly metric cost for this framework
447
+ * @param {string} metricId UUID of the metric
448
+ * @param {number} year Year (1600-3000)
449
+ * @param {string} valueFrameworkId UUID of the value framework
450
+ * @param {*} [options] Override http request option.
451
+ * @throws {RequiredError}
452
+ */
453
+ getMetricCostForFramework(metricId: string, year: number, valueFrameworkId: string, options?: RawAxiosRequestConfig): AxiosPromise<MetricCostsPerYearResponse>;
454
+ /**
455
+ * Retrieve a paginated list of all yearly metric costs for a specific framework.
456
+ * @summary List yearly metric costs for this framework
457
+ * @param {string} valueFrameworkId UUID of the value framework
458
+ * @param {number} [offset] Number of records to skip
459
+ * @param {number} [limit] Max number of records to return
460
+ * @param {*} [options] Override http request option.
461
+ * @throws {RequiredError}
462
+ */
463
+ getMetricCostsForFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<MetricCostsPerYearResponse>>;
464
+ /**
465
+ * Retrieve the weight for a specific objective within this framework.
466
+ * @summary Get an objective weight for this framework
467
+ * @param {string} objectiveId UUID of the objective
468
+ * @param {string} valueFrameworkId UUID of the value framework
469
+ * @param {*} [options] Override http request option.
470
+ * @throws {RequiredError}
471
+ */
472
+ getObjectiveWeightForFramework(objectiveId: string, valueFrameworkId: string, options?: RawAxiosRequestConfig): AxiosPromise<ObjectiveWeightResponse>;
473
+ /**
474
+ * Retrieve a paginated list of all objective weights for a specific framework.
475
+ * @summary List objective weights for this framework
476
+ * @param {string} valueFrameworkId UUID of the value framework
477
+ * @param {number} [offset] Number of records to skip
478
+ * @param {number} [limit] Max number of records to return
479
+ * @param {*} [options] Override http request option.
480
+ * @throws {RequiredError}
481
+ */
482
+ getObjectiveWeightsForFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ObjectiveWeightResponse>>;
483
+ /**
484
+ * Retrieve a single value framework by its ID.
485
+ * @summary Get a value framework by ID
486
+ * @param {string} valueFrameworkId UUID of the value framework
487
+ * @param {*} [options] Override http request option.
488
+ * @throws {RequiredError}
489
+ */
490
+ getValueFrameworkById(valueFrameworkId: string, options?: RawAxiosRequestConfig): AxiosPromise<ValueFrameworkResponse>;
491
+ /**
492
+ * Retrieve a paginated list of all value frameworks.
493
+ * @summary List value frameworks
494
+ * @param {number} [offset] Number of records to skip
495
+ * @param {number} [limit] Max number of records to return
496
+ * @param {*} [options] Override http request option.
497
+ * @throws {RequiredError}
498
+ */
499
+ getValueFrameworks(offset?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ValueFrameworkResponse>>;
500
+ /**
501
+ * Retrieve a paginated list of all objective weights for a specific value framework.
502
+ * @summary List all objective weights for a value framework
503
+ * @param {string} valueFrameworkId UUID of the value framework
504
+ * @param {number} [offset] Number of records to skip
505
+ * @param {number} [limit] Max number of records to return
506
+ * @param {*} [options] Override http request option.
507
+ * @throws {RequiredError}
508
+ */
509
+ getWeightsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<ObjectiveWeightResponse>>;
510
+ /**
511
+ * Update the perceived and/or direct cost of a metric for a specific year within this framework.
512
+ * @summary Partially update metric costs for this framework
513
+ * @param {string} metricId UUID of the metric
514
+ * @param {number} year Year (1600-3000)
515
+ * @param {string} valueFrameworkId UUID of the value framework
516
+ * @param {MetricCostsPerYearUpdate} metricCostsPerYearUpdate
517
+ * @param {*} [options] Override http request option.
518
+ * @throws {RequiredError}
519
+ */
520
+ patchMetricCostForFramework(metricId: string, year: number, valueFrameworkId: string, metricCostsPerYearUpdate: MetricCostsPerYearUpdate, options?: RawAxiosRequestConfig): AxiosPromise<MetricCostsPerYearResponse>;
521
+ /**
522
+ * Update the weight of an objective within this value framework.
523
+ * @summary Partially update an objective weight for this framework
524
+ * @param {string} objectiveId UUID of the objective
525
+ * @param {string} valueFrameworkId UUID of the value framework
526
+ * @param {ObjectiveWeightUpdate} objectiveWeightUpdate
527
+ * @param {*} [options] Override http request option.
528
+ * @throws {RequiredError}
529
+ */
530
+ patchObjectiveWeightForFramework(objectiveId: string, valueFrameworkId: string, objectiveWeightUpdate: ObjectiveWeightUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ObjectiveWeightResponse>;
531
+ /**
532
+ * Update one or more fields of an existing value framework. Only the fields included in the request body will be modified; omitted fields remain unchanged.
533
+ * @summary Partially update a value framework
534
+ * @param {string} valueFrameworkId UUID of the value framework
535
+ * @param {ValueFrameworkUpdate} valueFrameworkUpdate
536
+ * @param {*} [options] Override http request option.
537
+ * @throws {RequiredError}
538
+ */
539
+ patchValueFramework(valueFrameworkId: string, valueFrameworkUpdate: ValueFrameworkUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ValueFrameworkResponse>;
540
+ /**
541
+ * Create a new value framework. Name must be unique and non-empty.
542
+ * @summary Create a value framework
543
+ * @param {ValueFrameworkCreate} valueFrameworkCreate
544
+ * @param {*} [options] Override http request option.
545
+ * @throws {RequiredError}
546
+ */
547
+ postValueFramework(valueFrameworkCreate: ValueFrameworkCreate, options?: RawAxiosRequestConfig): AxiosPromise<ValueFrameworkResponse>;
548
+ };
549
+ /**
550
+ * ValueFrameworkApi - object-oriented interface
551
+ */
552
+ export declare class ValueFrameworkApi extends BaseAPI {
553
+ /**
554
+ * Create a yearly cost override for a metric within this framework.
555
+ * @summary Create a yearly metric cost for this framework
556
+ * @param {string} valueFrameworkId UUID of the value framework
557
+ * @param {MetricCostsPerYearCreate} metricCostsPerYearCreate
558
+ * @param {*} [options] Override http request option.
559
+ * @throws {RequiredError}
560
+ */
561
+ createMetricCostForFramework(valueFrameworkId: string, metricCostsPerYearCreate: MetricCostsPerYearCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MetricCostsPerYearResponse, any, {}>>;
562
+ /**
563
+ * Assign a weight to an objective within this framework.
564
+ * @summary Create an objective weight for this framework
565
+ * @param {string} valueFrameworkId UUID of the value framework
566
+ * @param {ObjectiveWeightCreate} objectiveWeightCreate
567
+ * @param {*} [options] Override http request option.
568
+ * @throws {RequiredError}
569
+ */
570
+ createObjectiveWeightForFramework(valueFrameworkId: string, objectiveWeightCreate: ObjectiveWeightCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectiveWeightResponse, any, {}>>;
571
+ /**
572
+ * Delete a metric cost entry for a specific year within this framework.
573
+ * @summary Delete metric costs for this framework
574
+ * @param {string} metricId UUID of the metric
575
+ * @param {number} year Year (1600-3000)
576
+ * @param {string} valueFrameworkId UUID of the value framework
577
+ * @param {*} [options] Override http request option.
578
+ * @throws {RequiredError}
579
+ */
580
+ deleteMetricCostForFramework(metricId: string, year: number, valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
581
+ /**
582
+ * Remove an objective weight from this framework.
583
+ * @summary Delete an objective weight for this framework
584
+ * @param {string} objectiveId UUID of the objective
585
+ * @param {string} valueFrameworkId UUID of the value framework
586
+ * @param {*} [options] Override http request option.
587
+ * @throws {RequiredError}
588
+ */
589
+ deleteObjectiveWeightForFramework(objectiveId: string, valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
590
+ /**
591
+ * Delete an existing value framework by its ID. Associated objective weights and metric costs per year are also deleted via cascade.
592
+ * @summary Delete a value framework
593
+ * @param {string} valueFrameworkId UUID of the value framework
594
+ * @param {*} [options] Override http request option.
595
+ * @throws {RequiredError}
596
+ */
597
+ deleteValueFramework(valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
598
+ /**
599
+ * Retrieve a paginated list of all metric costs for a specific value framework.
600
+ * @summary List all metric costs for a value framework
601
+ * @param {string} valueFrameworkId UUID of the value framework
602
+ * @param {number} [offset] Number of records to skip
603
+ * @param {number} [limit] Max number of records to return
604
+ * @param {*} [options] Override http request option.
605
+ * @throws {RequiredError}
606
+ */
607
+ getCostsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MetricCostsPerYearResponse[], any, {}>>;
608
+ /**
609
+ * Retrieve a paginated list of metric costs for a specific metric within a value framework.
610
+ * @summary List metric costs for a value framework filtered by metric
611
+ * @param {string} metricId UUID of the metric
612
+ * @param {string} valueFrameworkId UUID of the value framework
613
+ * @param {number} [offset] Number of records to skip
614
+ * @param {number} [limit] Max number of records to return
615
+ * @param {*} [options] Override http request option.
616
+ * @throws {RequiredError}
617
+ */
618
+ getCostsForValueFrameworkByMetric(metricId: string, valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MetricCostsPerYearResponse[], any, {}>>;
619
+ /**
620
+ * Retrieve cost data for a specific metric within this framework for a given year.
621
+ * @summary Get a yearly metric cost for this framework
622
+ * @param {string} metricId UUID of the metric
623
+ * @param {number} year Year (1600-3000)
624
+ * @param {string} valueFrameworkId UUID of the value framework
625
+ * @param {*} [options] Override http request option.
626
+ * @throws {RequiredError}
627
+ */
628
+ getMetricCostForFramework(metricId: string, year: number, valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MetricCostsPerYearResponse, any, {}>>;
629
+ /**
630
+ * Retrieve a paginated list of all yearly metric costs for a specific framework.
631
+ * @summary List yearly metric costs for this framework
632
+ * @param {string} valueFrameworkId UUID of the value framework
633
+ * @param {number} [offset] Number of records to skip
634
+ * @param {number} [limit] Max number of records to return
635
+ * @param {*} [options] Override http request option.
636
+ * @throws {RequiredError}
637
+ */
638
+ getMetricCostsForFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MetricCostsPerYearResponse[], any, {}>>;
639
+ /**
640
+ * Retrieve the weight for a specific objective within this framework.
641
+ * @summary Get an objective weight for this framework
642
+ * @param {string} objectiveId UUID of the objective
643
+ * @param {string} valueFrameworkId UUID of the value framework
644
+ * @param {*} [options] Override http request option.
645
+ * @throws {RequiredError}
646
+ */
647
+ getObjectiveWeightForFramework(objectiveId: string, valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectiveWeightResponse, any, {}>>;
648
+ /**
649
+ * Retrieve a paginated list of all objective weights for a specific framework.
650
+ * @summary List objective weights for this framework
651
+ * @param {string} valueFrameworkId UUID of the value framework
652
+ * @param {number} [offset] Number of records to skip
653
+ * @param {number} [limit] Max number of records to return
654
+ * @param {*} [options] Override http request option.
655
+ * @throws {RequiredError}
656
+ */
657
+ getObjectiveWeightsForFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectiveWeightResponse[], any, {}>>;
658
+ /**
659
+ * Retrieve a single value framework by its ID.
660
+ * @summary Get a value framework by ID
661
+ * @param {string} valueFrameworkId UUID of the value framework
662
+ * @param {*} [options] Override http request option.
663
+ * @throws {RequiredError}
664
+ */
665
+ getValueFrameworkById(valueFrameworkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueFrameworkResponse, any, {}>>;
666
+ /**
667
+ * Retrieve a paginated list of all value frameworks.
668
+ * @summary List value frameworks
669
+ * @param {number} [offset] Number of records to skip
670
+ * @param {number} [limit] Max number of records to return
671
+ * @param {*} [options] Override http request option.
672
+ * @throws {RequiredError}
673
+ */
674
+ getValueFrameworks(offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueFrameworkResponse[], any, {}>>;
675
+ /**
676
+ * Retrieve a paginated list of all objective weights for a specific value framework.
677
+ * @summary List all objective weights for a value framework
678
+ * @param {string} valueFrameworkId UUID of the value framework
679
+ * @param {number} [offset] Number of records to skip
680
+ * @param {number} [limit] Max number of records to return
681
+ * @param {*} [options] Override http request option.
682
+ * @throws {RequiredError}
683
+ */
684
+ getWeightsForValueFramework(valueFrameworkId: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectiveWeightResponse[], any, {}>>;
685
+ /**
686
+ * Update the perceived and/or direct cost of a metric for a specific year within this framework.
687
+ * @summary Partially update metric costs for this framework
688
+ * @param {string} metricId UUID of the metric
689
+ * @param {number} year Year (1600-3000)
690
+ * @param {string} valueFrameworkId UUID of the value framework
691
+ * @param {MetricCostsPerYearUpdate} metricCostsPerYearUpdate
692
+ * @param {*} [options] Override http request option.
693
+ * @throws {RequiredError}
694
+ */
695
+ patchMetricCostForFramework(metricId: string, year: number, valueFrameworkId: string, metricCostsPerYearUpdate: MetricCostsPerYearUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MetricCostsPerYearResponse, any, {}>>;
696
+ /**
697
+ * Update the weight of an objective within this value framework.
698
+ * @summary Partially update an objective weight for this framework
699
+ * @param {string} objectiveId UUID of the objective
700
+ * @param {string} valueFrameworkId UUID of the value framework
701
+ * @param {ObjectiveWeightUpdate} objectiveWeightUpdate
702
+ * @param {*} [options] Override http request option.
703
+ * @throws {RequiredError}
704
+ */
705
+ patchObjectiveWeightForFramework(objectiveId: string, valueFrameworkId: string, objectiveWeightUpdate: ObjectiveWeightUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectiveWeightResponse, any, {}>>;
706
+ /**
707
+ * Update one or more fields of an existing value framework. Only the fields included in the request body will be modified; omitted fields remain unchanged.
708
+ * @summary Partially update a value framework
709
+ * @param {string} valueFrameworkId UUID of the value framework
710
+ * @param {ValueFrameworkUpdate} valueFrameworkUpdate
711
+ * @param {*} [options] Override http request option.
712
+ * @throws {RequiredError}
713
+ */
714
+ patchValueFramework(valueFrameworkId: string, valueFrameworkUpdate: ValueFrameworkUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueFrameworkResponse, any, {}>>;
715
+ /**
716
+ * Create a new value framework. Name must be unique and non-empty.
717
+ * @summary Create a value framework
718
+ * @param {ValueFrameworkCreate} valueFrameworkCreate
719
+ * @param {*} [options] Override http request option.
720
+ * @throws {RequiredError}
721
+ */
722
+ postValueFramework(valueFrameworkCreate: ValueFrameworkCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ValueFrameworkResponse, any, {}>>;
723
+ }