@cosmotech/aip-client 0.2.0-dev → 0.2.0-dev2

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 (161) hide show
  1. package/README.md +2 -2
  2. package/api/default-api.ts +1 -1
  3. package/api/metric-api.ts +1 -1
  4. package/api/metric-costs-per-year-api.ts +1 -1
  5. package/api/objective-api.ts +1 -1
  6. package/api/objective-weight-api.ts +1 -1
  7. package/api/value-framework-api.ts +1 -1
  8. package/api.ts +1 -1
  9. package/base.ts +1 -1
  10. package/common.ts +1 -1
  11. package/configuration.ts +1 -1
  12. package/dist/api/default-api.d.ts +69 -0
  13. package/dist/api/default-api.js +128 -0
  14. package/dist/api/metric-api.d.ts +216 -0
  15. package/dist/api/metric-api.js +430 -0
  16. package/dist/api/metric-costs-per-year-api.d.ts +240 -0
  17. package/dist/api/metric-costs-per-year-api.js +472 -0
  18. package/dist/api/objective-api.d.ts +216 -0
  19. package/dist/api/objective-api.js +430 -0
  20. package/dist/api/objective-weight-api.d.ts +228 -0
  21. package/dist/api/objective-weight-api.js +451 -0
  22. package/dist/api/value-framework-api.d.ts +216 -0
  23. package/dist/api/value-framework-api.js +430 -0
  24. package/dist/api.d.ts +17 -0
  25. package/dist/api.js +35 -0
  26. package/dist/base.d.ts +66 -0
  27. package/dist/base.js +65 -0
  28. package/dist/common.d.ts +65 -0
  29. package/dist/common.js +161 -0
  30. package/dist/configuration.d.ts +91 -0
  31. package/dist/configuration.js +43 -0
  32. package/dist/esm/api/default-api.d.ts +69 -0
  33. package/dist/esm/api/default-api.js +121 -0
  34. package/dist/esm/api/metric-api.d.ts +216 -0
  35. package/dist/esm/api/metric-api.js +423 -0
  36. package/dist/esm/api/metric-costs-per-year-api.d.ts +240 -0
  37. package/dist/esm/api/metric-costs-per-year-api.js +465 -0
  38. package/dist/esm/api/objective-api.d.ts +216 -0
  39. package/dist/esm/api/objective-api.js +423 -0
  40. package/dist/esm/api/objective-weight-api.d.ts +228 -0
  41. package/dist/esm/api/objective-weight-api.js +444 -0
  42. package/dist/esm/api/value-framework-api.d.ts +216 -0
  43. package/dist/esm/api/value-framework-api.js +423 -0
  44. package/dist/esm/api.d.ts +17 -0
  45. package/dist/esm/api.js +19 -0
  46. package/dist/esm/base.d.ts +66 -0
  47. package/dist/esm/base.js +60 -0
  48. package/dist/esm/common.d.ts +65 -0
  49. package/dist/esm/common.js +149 -0
  50. package/dist/esm/configuration.d.ts +91 -0
  51. package/dist/esm/configuration.js +39 -0
  52. package/dist/esm/index.d.ts +14 -0
  53. package/dist/esm/index.js +16 -0
  54. package/dist/esm/models/httpvalidation-error.d.ts +25 -0
  55. package/dist/esm/models/httpvalidation-error.js +14 -0
  56. package/dist/esm/models/index.d.ts +20 -0
  57. package/dist/esm/models/index.js +20 -0
  58. package/dist/esm/models/measurement-type.d.ts +21 -0
  59. package/dist/esm/models/measurement-type.js +22 -0
  60. package/dist/esm/models/metric-costs-per-year-create.d.ts +48 -0
  61. package/dist/esm/models/metric-costs-per-year-create.js +14 -0
  62. package/dist/esm/models/metric-costs-per-year-response.d.ts +54 -0
  63. package/dist/esm/models/metric-costs-per-year-response.js +14 -0
  64. package/dist/esm/models/metric-costs-per-year-update.d.ts +30 -0
  65. package/dist/esm/models/metric-costs-per-year-update.js +14 -0
  66. package/dist/esm/models/metric-create.d.ts +68 -0
  67. package/dist/esm/models/metric-create.js +14 -0
  68. package/dist/esm/models/metric-response.d.ts +92 -0
  69. package/dist/esm/models/metric-response.js +14 -0
  70. package/dist/esm/models/metric-type.d.ts +22 -0
  71. package/dist/esm/models/metric-type.js +23 -0
  72. package/dist/esm/models/metric-update.d.ts +56 -0
  73. package/dist/esm/models/metric-update.js +14 -0
  74. package/dist/esm/models/objective-create.d.ts +30 -0
  75. package/dist/esm/models/objective-create.js +14 -0
  76. package/dist/esm/models/objective-response.d.ts +54 -0
  77. package/dist/esm/models/objective-response.js +14 -0
  78. package/dist/esm/models/objective-update.d.ts +30 -0
  79. package/dist/esm/models/objective-update.js +14 -0
  80. package/dist/esm/models/objective-weight-create.d.ts +36 -0
  81. package/dist/esm/models/objective-weight-create.js +14 -0
  82. package/dist/esm/models/objective-weight-response.d.ts +42 -0
  83. package/dist/esm/models/objective-weight-response.js +14 -0
  84. package/dist/esm/models/objective-weight-update.d.ts +24 -0
  85. package/dist/esm/models/objective-weight-update.js +14 -0
  86. package/dist/esm/models/validation-error-loc-inner.d.ts +18 -0
  87. package/dist/esm/models/validation-error-loc-inner.js +14 -0
  88. package/dist/esm/models/validation-error.d.ts +49 -0
  89. package/dist/esm/models/validation-error.js +14 -0
  90. package/dist/esm/models/value-framework-create.d.ts +30 -0
  91. package/dist/esm/models/value-framework-create.js +14 -0
  92. package/dist/esm/models/value-framework-response.d.ts +54 -0
  93. package/dist/esm/models/value-framework-response.js +14 -0
  94. package/dist/esm/models/value-framework-update.d.ts +30 -0
  95. package/dist/esm/models/value-framework-update.js +14 -0
  96. package/dist/index.d.ts +14 -0
  97. package/dist/index.js +32 -0
  98. package/dist/models/httpvalidation-error.d.ts +25 -0
  99. package/dist/models/httpvalidation-error.js +15 -0
  100. package/dist/models/index.d.ts +20 -0
  101. package/dist/models/index.js +36 -0
  102. package/dist/models/measurement-type.d.ts +21 -0
  103. package/dist/models/measurement-type.js +25 -0
  104. package/dist/models/metric-costs-per-year-create.d.ts +48 -0
  105. package/dist/models/metric-costs-per-year-create.js +15 -0
  106. package/dist/models/metric-costs-per-year-response.d.ts +54 -0
  107. package/dist/models/metric-costs-per-year-response.js +15 -0
  108. package/dist/models/metric-costs-per-year-update.d.ts +30 -0
  109. package/dist/models/metric-costs-per-year-update.js +15 -0
  110. package/dist/models/metric-create.d.ts +68 -0
  111. package/dist/models/metric-create.js +15 -0
  112. package/dist/models/metric-response.d.ts +92 -0
  113. package/dist/models/metric-response.js +15 -0
  114. package/dist/models/metric-type.d.ts +22 -0
  115. package/dist/models/metric-type.js +26 -0
  116. package/dist/models/metric-update.d.ts +56 -0
  117. package/dist/models/metric-update.js +15 -0
  118. package/dist/models/objective-create.d.ts +30 -0
  119. package/dist/models/objective-create.js +15 -0
  120. package/dist/models/objective-response.d.ts +54 -0
  121. package/dist/models/objective-response.js +15 -0
  122. package/dist/models/objective-update.d.ts +30 -0
  123. package/dist/models/objective-update.js +15 -0
  124. package/dist/models/objective-weight-create.d.ts +36 -0
  125. package/dist/models/objective-weight-create.js +15 -0
  126. package/dist/models/objective-weight-response.d.ts +42 -0
  127. package/dist/models/objective-weight-response.js +15 -0
  128. package/dist/models/objective-weight-update.d.ts +24 -0
  129. package/dist/models/objective-weight-update.js +15 -0
  130. package/dist/models/validation-error-loc-inner.d.ts +18 -0
  131. package/dist/models/validation-error-loc-inner.js +15 -0
  132. package/dist/models/validation-error.d.ts +49 -0
  133. package/dist/models/validation-error.js +15 -0
  134. package/dist/models/value-framework-create.d.ts +30 -0
  135. package/dist/models/value-framework-create.js +15 -0
  136. package/dist/models/value-framework-response.d.ts +54 -0
  137. package/dist/models/value-framework-response.js +15 -0
  138. package/dist/models/value-framework-update.d.ts +30 -0
  139. package/dist/models/value-framework-update.js +15 -0
  140. package/index.ts +1 -1
  141. package/models/httpvalidation-error.ts +1 -1
  142. package/models/measurement-type.ts +1 -1
  143. package/models/metric-costs-per-year-create.ts +1 -1
  144. package/models/metric-costs-per-year-response.ts +1 -1
  145. package/models/metric-costs-per-year-update.ts +1 -1
  146. package/models/metric-create.ts +1 -1
  147. package/models/metric-response.ts +1 -1
  148. package/models/metric-type.ts +1 -1
  149. package/models/metric-update.ts +1 -1
  150. package/models/objective-create.ts +1 -1
  151. package/models/objective-response.ts +1 -1
  152. package/models/objective-update.ts +1 -1
  153. package/models/objective-weight-create.ts +1 -1
  154. package/models/objective-weight-response.ts +1 -1
  155. package/models/objective-weight-update.ts +1 -1
  156. package/models/validation-error-loc-inner.ts +1 -1
  157. package/models/validation-error.ts +1 -1
  158. package/models/value-framework-create.ts +1 -1
  159. package/models/value-framework-response.ts +1 -1
  160. package/models/value-framework-update.ts +1 -1
  161. package/package.json +1 -1
@@ -0,0 +1,430 @@
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-dev2
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.ValueFrameworkApi = exports.ValueFrameworkApiFactory = exports.ValueFrameworkApiFp = exports.ValueFrameworkApiAxiosParamCreator = 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
+ * ValueFrameworkApi - axios parameter creator
34
+ * @export
35
+ */
36
+ const ValueFrameworkApiAxiosParamCreator = function (configuration) {
37
+ return {
38
+ /**
39
+ * Delete an existing value framework by its ID. Associated objective weights and metric costs per year are also deleted via cascade.
40
+ * @summary Delete a value framework
41
+ * @param {string} valueFrameworkId UUID of the value framework
42
+ * @param {*} [options] Override http request option.
43
+ * @throws {RequiredError}
44
+ */
45
+ deleteValueFramework: (valueFrameworkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
46
+ // verify required parameter 'valueFrameworkId' is not null or undefined
47
+ (0, common_1.assertParamExists)('deleteValueFramework', 'valueFrameworkId', valueFrameworkId);
48
+ const localVarPath = `/value_framework/{value_framework_id}`
49
+ .replace(`{${"value_framework_id"}}`, encodeURIComponent(String(valueFrameworkId)));
50
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
51
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
52
+ let baseOptions;
53
+ if (configuration) {
54
+ baseOptions = configuration.baseOptions;
55
+ }
56
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
57
+ const localVarHeaderParameter = {};
58
+ const localVarQueryParameter = {};
59
+ // authentication OAuth2AuthorizationCodeBearer required
60
+ // oauth required
61
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
62
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
63
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
64
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
65
+ return {
66
+ url: (0, common_1.toPathString)(localVarUrlObj),
67
+ options: localVarRequestOptions,
68
+ };
69
+ }),
70
+ /**
71
+ * Retrieve a single value framework by its ID.
72
+ * @summary Get a value framework by ID
73
+ * @param {string} valueFrameworkId UUID of the value framework
74
+ * @param {*} [options] Override http request option.
75
+ * @throws {RequiredError}
76
+ */
77
+ getValueFrameworkById: (valueFrameworkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
78
+ // verify required parameter 'valueFrameworkId' is not null or undefined
79
+ (0, common_1.assertParamExists)('getValueFrameworkById', 'valueFrameworkId', valueFrameworkId);
80
+ const localVarPath = `/value_framework/{value_framework_id}`
81
+ .replace(`{${"value_framework_id"}}`, encodeURIComponent(String(valueFrameworkId)));
82
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
83
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
84
+ let baseOptions;
85
+ if (configuration) {
86
+ baseOptions = configuration.baseOptions;
87
+ }
88
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
89
+ const localVarHeaderParameter = {};
90
+ const localVarQueryParameter = {};
91
+ // authentication OAuth2AuthorizationCodeBearer required
92
+ // oauth required
93
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
94
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
95
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
96
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
97
+ return {
98
+ url: (0, common_1.toPathString)(localVarUrlObj),
99
+ options: localVarRequestOptions,
100
+ };
101
+ }),
102
+ /**
103
+ * Retrieve a paginated list of all value frameworks.
104
+ * @summary List value frameworks
105
+ * @param {number} [offset] Number of records to skip
106
+ * @param {number} [limit] Max number of records to return
107
+ * @param {*} [options] Override http request option.
108
+ * @throws {RequiredError}
109
+ */
110
+ getValueFrameworks: (offset, limit, options = {}) => __awaiter(this, void 0, void 0, function* () {
111
+ const localVarPath = `/value_framework/`;
112
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
113
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
114
+ let baseOptions;
115
+ if (configuration) {
116
+ baseOptions = configuration.baseOptions;
117
+ }
118
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
119
+ const localVarHeaderParameter = {};
120
+ const localVarQueryParameter = {};
121
+ // authentication OAuth2AuthorizationCodeBearer required
122
+ // oauth required
123
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
124
+ if (offset !== undefined) {
125
+ localVarQueryParameter['offset'] = offset;
126
+ }
127
+ if (limit !== undefined) {
128
+ localVarQueryParameter['limit'] = limit;
129
+ }
130
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
131
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
132
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
133
+ return {
134
+ url: (0, common_1.toPathString)(localVarUrlObj),
135
+ options: localVarRequestOptions,
136
+ };
137
+ }),
138
+ /**
139
+ * 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.
140
+ * @summary Partially update a value framework
141
+ * @param {string} valueFrameworkId UUID of the value framework
142
+ * @param {ValueFrameworkUpdate} valueFrameworkUpdate
143
+ * @param {*} [options] Override http request option.
144
+ * @throws {RequiredError}
145
+ */
146
+ patchValueFramework: (valueFrameworkId, valueFrameworkUpdate, options = {}) => __awaiter(this, void 0, void 0, function* () {
147
+ // verify required parameter 'valueFrameworkId' is not null or undefined
148
+ (0, common_1.assertParamExists)('patchValueFramework', 'valueFrameworkId', valueFrameworkId);
149
+ // verify required parameter 'valueFrameworkUpdate' is not null or undefined
150
+ (0, common_1.assertParamExists)('patchValueFramework', 'valueFrameworkUpdate', valueFrameworkUpdate);
151
+ const localVarPath = `/value_framework/{value_framework_id}`
152
+ .replace(`{${"value_framework_id"}}`, encodeURIComponent(String(valueFrameworkId)));
153
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
154
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
155
+ let baseOptions;
156
+ if (configuration) {
157
+ baseOptions = configuration.baseOptions;
158
+ }
159
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
160
+ const localVarHeaderParameter = {};
161
+ const localVarQueryParameter = {};
162
+ // authentication OAuth2AuthorizationCodeBearer required
163
+ // oauth required
164
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
165
+ localVarHeaderParameter['Content-Type'] = 'application/json';
166
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
167
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
168
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
169
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(valueFrameworkUpdate, localVarRequestOptions, configuration);
170
+ return {
171
+ url: (0, common_1.toPathString)(localVarUrlObj),
172
+ options: localVarRequestOptions,
173
+ };
174
+ }),
175
+ /**
176
+ * Create a new value framework. Name must be unique and non-empty.
177
+ * @summary Create a value framework
178
+ * @param {ValueFrameworkCreate} valueFrameworkCreate
179
+ * @param {*} [options] Override http request option.
180
+ * @throws {RequiredError}
181
+ */
182
+ postValueFramework: (valueFrameworkCreate, options = {}) => __awaiter(this, void 0, void 0, function* () {
183
+ // verify required parameter 'valueFrameworkCreate' is not null or undefined
184
+ (0, common_1.assertParamExists)('postValueFramework', 'valueFrameworkCreate', valueFrameworkCreate);
185
+ const localVarPath = `/value_framework/`;
186
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
187
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
188
+ let baseOptions;
189
+ if (configuration) {
190
+ baseOptions = configuration.baseOptions;
191
+ }
192
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
193
+ const localVarHeaderParameter = {};
194
+ const localVarQueryParameter = {};
195
+ // authentication OAuth2AuthorizationCodeBearer required
196
+ // oauth required
197
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "OAuth2AuthorizationCodeBearer", [], configuration);
198
+ localVarHeaderParameter['Content-Type'] = 'application/json';
199
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
200
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
201
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
202
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(valueFrameworkCreate, localVarRequestOptions, configuration);
203
+ return {
204
+ url: (0, common_1.toPathString)(localVarUrlObj),
205
+ options: localVarRequestOptions,
206
+ };
207
+ }),
208
+ };
209
+ };
210
+ exports.ValueFrameworkApiAxiosParamCreator = ValueFrameworkApiAxiosParamCreator;
211
+ /**
212
+ * ValueFrameworkApi - functional programming interface
213
+ * @export
214
+ */
215
+ const ValueFrameworkApiFp = function (configuration) {
216
+ const localVarAxiosParamCreator = (0, exports.ValueFrameworkApiAxiosParamCreator)(configuration);
217
+ return {
218
+ /**
219
+ * Delete an existing value framework by its ID. Associated objective weights and metric costs per year are also deleted via cascade.
220
+ * @summary Delete a value framework
221
+ * @param {string} valueFrameworkId UUID of the value framework
222
+ * @param {*} [options] Override http request option.
223
+ * @throws {RequiredError}
224
+ */
225
+ deleteValueFramework(valueFrameworkId, options) {
226
+ var _a, _b, _c;
227
+ return __awaiter(this, void 0, void 0, function* () {
228
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteValueFramework(valueFrameworkId, options);
229
+ const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
230
+ const operationBasePath = (_c = (_b = base_1.operationServerMap['ValueFrameworkApi.deleteValueFramework']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
231
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
232
+ });
233
+ },
234
+ /**
235
+ * Retrieve a single value framework by its ID.
236
+ * @summary Get a value framework by ID
237
+ * @param {string} valueFrameworkId UUID of the value framework
238
+ * @param {*} [options] Override http request option.
239
+ * @throws {RequiredError}
240
+ */
241
+ getValueFrameworkById(valueFrameworkId, options) {
242
+ var _a, _b, _c;
243
+ return __awaiter(this, void 0, void 0, function* () {
244
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getValueFrameworkById(valueFrameworkId, options);
245
+ const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
246
+ const operationBasePath = (_c = (_b = base_1.operationServerMap['ValueFrameworkApi.getValueFrameworkById']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
247
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
248
+ });
249
+ },
250
+ /**
251
+ * Retrieve a paginated list of all value frameworks.
252
+ * @summary List value frameworks
253
+ * @param {number} [offset] Number of records to skip
254
+ * @param {number} [limit] Max number of records to return
255
+ * @param {*} [options] Override http request option.
256
+ * @throws {RequiredError}
257
+ */
258
+ getValueFrameworks(offset, limit, options) {
259
+ var _a, _b, _c;
260
+ return __awaiter(this, void 0, void 0, function* () {
261
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getValueFrameworks(offset, limit, options);
262
+ const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
263
+ const operationBasePath = (_c = (_b = base_1.operationServerMap['ValueFrameworkApi.getValueFrameworks']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
264
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
265
+ });
266
+ },
267
+ /**
268
+ * 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.
269
+ * @summary Partially update a value framework
270
+ * @param {string} valueFrameworkId UUID of the value framework
271
+ * @param {ValueFrameworkUpdate} valueFrameworkUpdate
272
+ * @param {*} [options] Override http request option.
273
+ * @throws {RequiredError}
274
+ */
275
+ patchValueFramework(valueFrameworkId, valueFrameworkUpdate, options) {
276
+ var _a, _b, _c;
277
+ return __awaiter(this, void 0, void 0, function* () {
278
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.patchValueFramework(valueFrameworkId, valueFrameworkUpdate, options);
279
+ const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
280
+ const operationBasePath = (_c = (_b = base_1.operationServerMap['ValueFrameworkApi.patchValueFramework']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
281
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
282
+ });
283
+ },
284
+ /**
285
+ * Create a new value framework. Name must be unique and non-empty.
286
+ * @summary Create a value framework
287
+ * @param {ValueFrameworkCreate} valueFrameworkCreate
288
+ * @param {*} [options] Override http request option.
289
+ * @throws {RequiredError}
290
+ */
291
+ postValueFramework(valueFrameworkCreate, options) {
292
+ var _a, _b, _c;
293
+ return __awaiter(this, void 0, void 0, function* () {
294
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.postValueFramework(valueFrameworkCreate, options);
295
+ const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
296
+ const operationBasePath = (_c = (_b = base_1.operationServerMap['ValueFrameworkApi.postValueFramework']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
297
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
298
+ });
299
+ },
300
+ };
301
+ };
302
+ exports.ValueFrameworkApiFp = ValueFrameworkApiFp;
303
+ /**
304
+ * ValueFrameworkApi - factory interface
305
+ * @export
306
+ */
307
+ const ValueFrameworkApiFactory = function (configuration, basePath, axios) {
308
+ const localVarFp = (0, exports.ValueFrameworkApiFp)(configuration);
309
+ return {
310
+ /**
311
+ * Delete an existing value framework by its ID. Associated objective weights and metric costs per year are also deleted via cascade.
312
+ * @summary Delete a value framework
313
+ * @param {string} valueFrameworkId UUID of the value framework
314
+ * @param {*} [options] Override http request option.
315
+ * @throws {RequiredError}
316
+ */
317
+ deleteValueFramework(valueFrameworkId, options) {
318
+ return localVarFp.deleteValueFramework(valueFrameworkId, options).then((request) => request(axios, basePath));
319
+ },
320
+ /**
321
+ * Retrieve a single value framework by its ID.
322
+ * @summary Get a value framework by ID
323
+ * @param {string} valueFrameworkId UUID of the value framework
324
+ * @param {*} [options] Override http request option.
325
+ * @throws {RequiredError}
326
+ */
327
+ getValueFrameworkById(valueFrameworkId, options) {
328
+ return localVarFp.getValueFrameworkById(valueFrameworkId, options).then((request) => request(axios, basePath));
329
+ },
330
+ /**
331
+ * Retrieve a paginated list of all value frameworks.
332
+ * @summary List value frameworks
333
+ * @param {number} [offset] Number of records to skip
334
+ * @param {number} [limit] Max number of records to return
335
+ * @param {*} [options] Override http request option.
336
+ * @throws {RequiredError}
337
+ */
338
+ getValueFrameworks(offset, limit, options) {
339
+ return localVarFp.getValueFrameworks(offset, limit, options).then((request) => request(axios, basePath));
340
+ },
341
+ /**
342
+ * 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.
343
+ * @summary Partially update a value framework
344
+ * @param {string} valueFrameworkId UUID of the value framework
345
+ * @param {ValueFrameworkUpdate} valueFrameworkUpdate
346
+ * @param {*} [options] Override http request option.
347
+ * @throws {RequiredError}
348
+ */
349
+ patchValueFramework(valueFrameworkId, valueFrameworkUpdate, options) {
350
+ return localVarFp.patchValueFramework(valueFrameworkId, valueFrameworkUpdate, options).then((request) => request(axios, basePath));
351
+ },
352
+ /**
353
+ * Create a new value framework. Name must be unique and non-empty.
354
+ * @summary Create a value framework
355
+ * @param {ValueFrameworkCreate} valueFrameworkCreate
356
+ * @param {*} [options] Override http request option.
357
+ * @throws {RequiredError}
358
+ */
359
+ postValueFramework(valueFrameworkCreate, options) {
360
+ return localVarFp.postValueFramework(valueFrameworkCreate, options).then((request) => request(axios, basePath));
361
+ },
362
+ };
363
+ };
364
+ exports.ValueFrameworkApiFactory = ValueFrameworkApiFactory;
365
+ /**
366
+ * ValueFrameworkApi - object-oriented interface
367
+ * @export
368
+ * @class ValueFrameworkApi
369
+ * @extends {BaseAPI}
370
+ */
371
+ class ValueFrameworkApi extends base_1.BaseAPI {
372
+ /**
373
+ * Delete an existing value framework by its ID. Associated objective weights and metric costs per year are also deleted via cascade.
374
+ * @summary Delete a value framework
375
+ * @param {string} valueFrameworkId UUID of the value framework
376
+ * @param {*} [options] Override http request option.
377
+ * @throws {RequiredError}
378
+ * @memberof ValueFrameworkApi
379
+ */
380
+ deleteValueFramework(valueFrameworkId, options) {
381
+ return (0, exports.ValueFrameworkApiFp)(this.configuration).deleteValueFramework(valueFrameworkId, options).then((request) => request(this.axios, this.basePath));
382
+ }
383
+ /**
384
+ * Retrieve a single value framework by its ID.
385
+ * @summary Get a value framework by ID
386
+ * @param {string} valueFrameworkId UUID of the value framework
387
+ * @param {*} [options] Override http request option.
388
+ * @throws {RequiredError}
389
+ * @memberof ValueFrameworkApi
390
+ */
391
+ getValueFrameworkById(valueFrameworkId, options) {
392
+ return (0, exports.ValueFrameworkApiFp)(this.configuration).getValueFrameworkById(valueFrameworkId, options).then((request) => request(this.axios, this.basePath));
393
+ }
394
+ /**
395
+ * Retrieve a paginated list of all value frameworks.
396
+ * @summary List value frameworks
397
+ * @param {number} [offset] Number of records to skip
398
+ * @param {number} [limit] Max number of records to return
399
+ * @param {*} [options] Override http request option.
400
+ * @throws {RequiredError}
401
+ * @memberof ValueFrameworkApi
402
+ */
403
+ getValueFrameworks(offset, limit, options) {
404
+ return (0, exports.ValueFrameworkApiFp)(this.configuration).getValueFrameworks(offset, limit, options).then((request) => request(this.axios, this.basePath));
405
+ }
406
+ /**
407
+ * 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.
408
+ * @summary Partially update a value framework
409
+ * @param {string} valueFrameworkId UUID of the value framework
410
+ * @param {ValueFrameworkUpdate} valueFrameworkUpdate
411
+ * @param {*} [options] Override http request option.
412
+ * @throws {RequiredError}
413
+ * @memberof ValueFrameworkApi
414
+ */
415
+ patchValueFramework(valueFrameworkId, valueFrameworkUpdate, options) {
416
+ return (0, exports.ValueFrameworkApiFp)(this.configuration).patchValueFramework(valueFrameworkId, valueFrameworkUpdate, options).then((request) => request(this.axios, this.basePath));
417
+ }
418
+ /**
419
+ * Create a new value framework. Name must be unique and non-empty.
420
+ * @summary Create a value framework
421
+ * @param {ValueFrameworkCreate} valueFrameworkCreate
422
+ * @param {*} [options] Override http request option.
423
+ * @throws {RequiredError}
424
+ * @memberof ValueFrameworkApi
425
+ */
426
+ postValueFramework(valueFrameworkCreate, options) {
427
+ return (0, exports.ValueFrameworkApiFp)(this.configuration).postValueFramework(valueFrameworkCreate, options).then((request) => request(this.axios, this.basePath));
428
+ }
429
+ }
430
+ exports.ValueFrameworkApi = ValueFrameworkApi;
package/dist/api.d.ts ADDED
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Asset Investment Planning
3
+ * API for Asset Investment Planning
4
+ *
5
+ * The version of the OpenAPI document: 0.2.0-dev2
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
+ export * from './api/default-api';
13
+ export * from './api/metric-api';
14
+ export * from './api/metric-costs-per-year-api';
15
+ export * from './api/objective-api';
16
+ export * from './api/objective-weight-api';
17
+ export * from './api/value-framework-api';
package/dist/api.js ADDED
@@ -0,0 +1,35 @@
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-dev2
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 __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = { enumerable: true, get: function() { return m[k]; } };
20
+ }
21
+ Object.defineProperty(o, k2, desc);
22
+ }) : (function(o, m, k, k2) {
23
+ if (k2 === undefined) k2 = k;
24
+ o[k2] = m[k];
25
+ }));
26
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
27
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
28
+ };
29
+ Object.defineProperty(exports, "__esModule", { value: true });
30
+ __exportStar(require("./api/default-api"), exports);
31
+ __exportStar(require("./api/metric-api"), exports);
32
+ __exportStar(require("./api/metric-costs-per-year-api"), exports);
33
+ __exportStar(require("./api/objective-api"), exports);
34
+ __exportStar(require("./api/objective-weight-api"), exports);
35
+ __exportStar(require("./api/value-framework-api"), exports);
package/dist/base.d.ts ADDED
@@ -0,0 +1,66 @@
1
+ /**
2
+ * Asset Investment Planning
3
+ * API for Asset Investment Planning
4
+ *
5
+ * The version of the OpenAPI document: 0.2.0-dev2
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 { AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ export declare const BASE_PATH: string;
15
+ /**
16
+ *
17
+ * @export
18
+ */
19
+ export declare const COLLECTION_FORMATS: {
20
+ csv: string;
21
+ ssv: string;
22
+ tsv: string;
23
+ pipes: string;
24
+ };
25
+ /**
26
+ *
27
+ * @export
28
+ * @interface RequestArgs
29
+ */
30
+ export interface RequestArgs {
31
+ url: string;
32
+ options: RawAxiosRequestConfig;
33
+ }
34
+ /**
35
+ *
36
+ * @export
37
+ * @class BaseAPI
38
+ */
39
+ export declare class BaseAPI {
40
+ protected basePath: string;
41
+ protected axios: AxiosInstance;
42
+ protected configuration: Configuration | undefined;
43
+ constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
44
+ }
45
+ /**
46
+ *
47
+ * @export
48
+ * @class RequiredError
49
+ * @extends {Error}
50
+ */
51
+ export declare class RequiredError extends Error {
52
+ field: string;
53
+ constructor(field: string, msg?: string);
54
+ }
55
+ interface ServerMap {
56
+ [key: string]: {
57
+ url: string;
58
+ description: string;
59
+ }[];
60
+ }
61
+ /**
62
+ *
63
+ * @export
64
+ */
65
+ export declare const operationServerMap: ServerMap;
66
+ export {};
package/dist/base.js ADDED
@@ -0,0 +1,65 @@
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-dev2
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
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.operationServerMap = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
17
+ const axios_1 = require("axios");
18
+ exports.BASE_PATH = "http://localhost".replace(/\/+$/, "");
19
+ /**
20
+ *
21
+ * @export
22
+ */
23
+ exports.COLLECTION_FORMATS = {
24
+ csv: ",",
25
+ ssv: " ",
26
+ tsv: "\t",
27
+ pipes: "|",
28
+ };
29
+ /**
30
+ *
31
+ * @export
32
+ * @class BaseAPI
33
+ */
34
+ class BaseAPI {
35
+ constructor(configuration, basePath = exports.BASE_PATH, axios = axios_1.default) {
36
+ var _a;
37
+ this.basePath = basePath;
38
+ this.axios = axios;
39
+ if (configuration) {
40
+ this.configuration = configuration;
41
+ this.basePath = (_a = configuration.basePath) !== null && _a !== void 0 ? _a : basePath;
42
+ }
43
+ }
44
+ }
45
+ exports.BaseAPI = BaseAPI;
46
+ ;
47
+ /**
48
+ *
49
+ * @export
50
+ * @class RequiredError
51
+ * @extends {Error}
52
+ */
53
+ class RequiredError extends Error {
54
+ constructor(field, msg) {
55
+ super(msg);
56
+ this.field = field;
57
+ this.name = "RequiredError";
58
+ }
59
+ }
60
+ exports.RequiredError = RequiredError;
61
+ /**
62
+ *
63
+ * @export
64
+ */
65
+ exports.operationServerMap = {};