@cosmotech/aip-client 0.2.0-dev2 → 0.2.0-dev3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +141 -4
- package/api/default-api.ts +8 -15
- package/api/impact-api.ts +507 -0
- package/api/investment-api.ts +1308 -0
- package/api/metric-api.ts +185 -164
- package/api/metric-costs-api.ts +144 -0
- package/api/metric-costs-per-year-api.ts +200 -200
- package/api/objective-api.ts +538 -44
- package/api/objective-weight-api.ts +190 -190
- package/api/objective-weights-api.ts +144 -0
- package/api/option-api.ts +925 -0
- package/api/value-framework-api.ts +1223 -109
- package/api/value-framework-costs-api.ts +239 -0
- package/api/value-framework-weights-api.ts +144 -0
- package/api.ts +8 -1
- package/base.ts +1 -25
- package/common.ts +20 -43
- package/configuration.ts +31 -20
- package/dist/api/default-api.d.ts +3 -10
- package/dist/api/default-api.js +7 -13
- package/dist/api/impact-api.d.ts +245 -0
- package/dist/api/impact-api.js +493 -0
- package/dist/api/investment-api.d.ts +607 -0
- package/dist/api/investment-api.js +1248 -0
- package/dist/api/metric-api.d.ts +97 -88
- package/dist/api/metric-api.js +185 -157
- package/dist/api/metric-costs-api.d.ts +75 -0
- package/dist/api/metric-costs-api.js +146 -0
- package/dist/api/metric-costs-per-year-api.d.ts +105 -108
- package/dist/api/metric-costs-per-year-api.js +199 -192
- package/dist/api/objective-api.d.ts +242 -21
- package/dist/api/objective-api.js +508 -37
- package/dist/api/objective-weight-api.d.ts +105 -108
- package/dist/api/objective-weight-api.js +189 -182
- package/dist/api/objective-weights-api.d.ts +75 -0
- package/dist/api/objective-weights-api.js +146 -0
- package/dist/api/option-api.d.ts +436 -0
- package/dist/api/option-api.js +888 -0
- package/dist/api/value-framework-api.d.ts +528 -21
- package/dist/api/value-framework-api.js +1138 -78
- package/dist/api/value-framework-costs-api.d.ts +119 -0
- package/dist/api/value-framework-costs-api.js +236 -0
- package/dist/api/value-framework-weights-api.d.ts +75 -0
- package/dist/api/value-framework-weights-api.js +146 -0
- package/dist/api.d.ts +8 -1
- package/dist/api.js +8 -1
- package/dist/base.d.ts +1 -25
- package/dist/base.js +1 -20
- package/dist/common.d.ts +6 -37
- package/dist/common.js +17 -39
- package/dist/configuration.d.ts +25 -18
- package/dist/configuration.js +4 -3
- package/dist/esm/api/default-api.d.ts +3 -10
- package/dist/esm/api/default-api.js +7 -13
- package/dist/esm/api/impact-api.d.ts +245 -0
- package/dist/esm/api/impact-api.js +486 -0
- package/dist/esm/api/investment-api.d.ts +607 -0
- package/dist/esm/api/investment-api.js +1241 -0
- package/dist/esm/api/metric-api.d.ts +97 -88
- package/dist/esm/api/metric-api.js +185 -157
- package/dist/esm/api/metric-costs-api.d.ts +75 -0
- package/dist/esm/api/metric-costs-api.js +139 -0
- package/dist/esm/api/metric-costs-per-year-api.d.ts +105 -108
- package/dist/esm/api/metric-costs-per-year-api.js +199 -192
- package/dist/esm/api/objective-api.d.ts +242 -21
- package/dist/esm/api/objective-api.js +508 -37
- package/dist/esm/api/objective-weight-api.d.ts +105 -108
- package/dist/esm/api/objective-weight-api.js +189 -182
- package/dist/esm/api/objective-weights-api.d.ts +75 -0
- package/dist/esm/api/objective-weights-api.js +139 -0
- package/dist/esm/api/option-api.d.ts +436 -0
- package/dist/esm/api/option-api.js +881 -0
- package/dist/esm/api/value-framework-api.d.ts +528 -21
- package/dist/esm/api/value-framework-api.js +1137 -77
- package/dist/esm/api/value-framework-costs-api.d.ts +119 -0
- package/dist/esm/api/value-framework-costs-api.js +229 -0
- package/dist/esm/api/value-framework-weights-api.d.ts +75 -0
- package/dist/esm/api/value-framework-weights-api.js +139 -0
- package/dist/esm/api.d.ts +8 -1
- package/dist/esm/api.js +8 -1
- package/dist/esm/base.d.ts +1 -25
- package/dist/esm/base.js +1 -20
- package/dist/esm/common.d.ts +6 -37
- package/dist/esm/common.js +15 -38
- package/dist/esm/configuration.d.ts +25 -18
- package/dist/esm/configuration.js +4 -3
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/models/evolution-type.d.ts +16 -0
- package/dist/esm/models/evolution-type.js +17 -0
- package/dist/esm/models/httpvalidation-error.d.ts +2 -12
- package/dist/esm/models/httpvalidation-error.js +1 -1
- package/dist/esm/models/impact-apiresponse.d.ts +33 -0
- package/dist/esm/models/{validation-error-loc-inner.js → impact-apiresponse.js} +1 -1
- package/dist/esm/models/impact-create.d.ts +37 -0
- package/dist/esm/models/impact-create.js +14 -0
- package/dist/esm/models/impact-update.d.ts +22 -0
- package/dist/esm/models/impact-update.js +14 -0
- package/dist/esm/models/index.d.ts +11 -1
- package/dist/esm/models/index.js +11 -1
- package/dist/esm/models/investment-create.d.ts +21 -0
- package/dist/esm/models/investment-create.js +14 -0
- package/dist/esm/models/investment-response.d.ts +25 -0
- package/dist/esm/models/investment-response.js +14 -0
- package/dist/esm/models/investment-update.d.ts +18 -0
- package/dist/esm/models/investment-update.js +14 -0
- package/dist/esm/models/{validation-error-loc-inner.d.ts → location-inner.d.ts} +2 -7
- package/dist/esm/models/location-inner.js +14 -0
- package/dist/esm/models/measurement-type.d.ts +1 -6
- package/dist/esm/models/measurement-type.js +1 -6
- package/dist/esm/models/metric-costs-per-year-create.d.ts +1 -17
- package/dist/esm/models/metric-costs-per-year-create.js +1 -1
- package/dist/esm/models/metric-costs-per-year-response.d.ts +1 -18
- package/dist/esm/models/metric-costs-per-year-response.js +1 -1
- package/dist/esm/models/metric-costs-per-year-update.d.ts +1 -13
- package/dist/esm/models/metric-costs-per-year-update.js +1 -1
- package/dist/esm/models/metric-create.d.ts +3 -28
- package/dist/esm/models/metric-create.js +1 -1
- package/dist/esm/models/metric-response.d.ts +3 -50
- package/dist/esm/models/metric-response.js +1 -1
- package/dist/esm/models/metric-type.d.ts +1 -6
- package/dist/esm/models/metric-type.js +1 -6
- package/dist/esm/models/metric-update.d.ts +3 -35
- package/dist/esm/models/metric-update.js +1 -1
- package/dist/esm/models/objective-create.d.ts +1 -10
- package/dist/esm/models/objective-create.js +1 -1
- package/dist/esm/models/objective-response.d.ts +1 -30
- package/dist/esm/models/objective-response.js +1 -1
- package/dist/esm/models/objective-update.d.ts +1 -13
- package/dist/esm/models/objective-update.js +1 -1
- package/dist/esm/models/objective-weight-create.d.ts +1 -9
- package/dist/esm/models/objective-weight-create.js +1 -1
- package/dist/esm/models/objective-weight-response.d.ts +1 -14
- package/dist/esm/models/objective-weight-response.js +1 -1
- package/dist/esm/models/objective-weight-update.d.ts +1 -8
- package/dist/esm/models/objective-weight-update.js +1 -1
- package/dist/esm/models/option-create.d.ts +33 -0
- package/dist/esm/models/option-create.js +14 -0
- package/dist/esm/models/option-response.d.ts +31 -0
- package/dist/esm/models/option-response.js +14 -0
- package/dist/esm/models/option-update.d.ts +19 -0
- package/dist/esm/models/option-update.js +14 -0
- package/dist/esm/models/validation-error.d.ts +3 -33
- package/dist/esm/models/validation-error.js +1 -1
- package/dist/esm/models/value-framework-create.d.ts +1 -10
- package/dist/esm/models/value-framework-create.js +1 -1
- package/dist/esm/models/value-framework-response.d.ts +1 -30
- package/dist/esm/models/value-framework-response.js +1 -1
- package/dist/esm/models/value-framework-update.d.ts +1 -13
- package/dist/esm/models/value-framework-update.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/models/evolution-type.d.ts +16 -0
- package/dist/models/evolution-type.js +20 -0
- package/dist/models/httpvalidation-error.d.ts +2 -12
- package/dist/models/httpvalidation-error.js +1 -1
- package/dist/models/impact-apiresponse.d.ts +33 -0
- package/dist/models/{validation-error-loc-inner.js → impact-apiresponse.js} +1 -1
- package/dist/models/impact-create.d.ts +37 -0
- package/dist/models/impact-create.js +15 -0
- package/dist/models/impact-update.d.ts +22 -0
- package/dist/models/impact-update.js +15 -0
- package/dist/models/index.d.ts +11 -1
- package/dist/models/index.js +11 -1
- package/dist/models/investment-create.d.ts +21 -0
- package/dist/models/investment-create.js +15 -0
- package/dist/models/investment-response.d.ts +25 -0
- package/dist/models/investment-response.js +15 -0
- package/dist/models/investment-update.d.ts +18 -0
- package/dist/models/investment-update.js +15 -0
- package/dist/models/{validation-error-loc-inner.d.ts → location-inner.d.ts} +2 -7
- package/dist/models/location-inner.js +15 -0
- package/dist/models/measurement-type.d.ts +1 -6
- package/dist/models/measurement-type.js +1 -6
- package/dist/models/metric-costs-per-year-create.d.ts +1 -17
- package/dist/models/metric-costs-per-year-create.js +1 -1
- package/dist/models/metric-costs-per-year-response.d.ts +1 -18
- package/dist/models/metric-costs-per-year-response.js +1 -1
- package/dist/models/metric-costs-per-year-update.d.ts +1 -13
- package/dist/models/metric-costs-per-year-update.js +1 -1
- package/dist/models/metric-create.d.ts +3 -28
- package/dist/models/metric-create.js +1 -1
- package/dist/models/metric-response.d.ts +3 -50
- package/dist/models/metric-response.js +1 -1
- package/dist/models/metric-type.d.ts +1 -6
- package/dist/models/metric-type.js +1 -6
- package/dist/models/metric-update.d.ts +3 -35
- package/dist/models/metric-update.js +1 -1
- package/dist/models/objective-create.d.ts +1 -10
- package/dist/models/objective-create.js +1 -1
- package/dist/models/objective-response.d.ts +1 -30
- package/dist/models/objective-response.js +1 -1
- package/dist/models/objective-update.d.ts +1 -13
- package/dist/models/objective-update.js +1 -1
- package/dist/models/objective-weight-create.d.ts +1 -9
- package/dist/models/objective-weight-create.js +1 -1
- package/dist/models/objective-weight-response.d.ts +1 -14
- package/dist/models/objective-weight-response.js +1 -1
- package/dist/models/objective-weight-update.d.ts +1 -8
- package/dist/models/objective-weight-update.js +1 -1
- package/dist/models/option-create.d.ts +33 -0
- package/dist/models/option-create.js +15 -0
- package/dist/models/option-response.d.ts +31 -0
- package/dist/models/option-response.js +15 -0
- package/dist/models/option-update.d.ts +19 -0
- package/dist/models/option-update.js +15 -0
- package/dist/models/validation-error.d.ts +3 -33
- package/dist/models/validation-error.js +1 -1
- package/dist/models/value-framework-create.d.ts +1 -10
- package/dist/models/value-framework-create.js +1 -1
- package/dist/models/value-framework-response.d.ts +1 -30
- package/dist/models/value-framework-response.js +1 -1
- package/dist/models/value-framework-update.d.ts +1 -13
- package/dist/models/value-framework-update.js +1 -1
- package/docs/DefaultApi.md +51 -0
- package/docs/EvolutionType.md +10 -0
- package/docs/HTTPValidationError.md +20 -0
- package/docs/ImpactAPIResponse.md +39 -0
- package/docs/ImpactApi.md +312 -0
- package/docs/ImpactCreate.md +29 -0
- package/docs/ImpactUpdate.md +29 -0
- package/docs/InvestmentApi.md +875 -0
- package/docs/InvestmentCreate.md +23 -0
- package/docs/InvestmentResponse.md +31 -0
- package/docs/InvestmentUpdate.md +23 -0
- package/docs/LocationInner.md +18 -0
- package/docs/MeasurementType.md +10 -0
- package/docs/MetricApi.md +299 -0
- package/docs/MetricCostsApi.md +66 -0
- package/docs/MetricCostsPerYearApi.md +307 -0
- package/docs/MetricCostsPerYearCreate.md +27 -0
- package/docs/MetricCostsPerYearResponse.md +31 -0
- package/docs/MetricCostsPerYearUpdate.md +23 -0
- package/docs/MetricCreate.md +33 -0
- package/docs/MetricResponse.md +43 -0
- package/docs/MetricType.md +12 -0
- package/docs/MetricUpdate.md +31 -0
- package/docs/ObjectiveApi.md +633 -0
- package/docs/ObjectiveCreate.md +23 -0
- package/docs/ObjectiveResponse.md +31 -0
- package/docs/ObjectiveUpdate.md +23 -0
- package/docs/ObjectiveWeightApi.md +298 -0
- package/docs/ObjectiveWeightCreate.md +25 -0
- package/docs/ObjectiveWeightResponse.md +27 -0
- package/docs/ObjectiveWeightUpdate.md +21 -0
- package/docs/ObjectiveWeightsApi.md +66 -0
- package/docs/OptionApi.md +602 -0
- package/docs/OptionCreate.md +29 -0
- package/docs/OptionResponse.md +37 -0
- package/docs/OptionUpdate.md +25 -0
- package/docs/ValidationError.md +28 -0
- package/docs/ValueFrameworkApi.md +1053 -0
- package/docs/ValueFrameworkCostsApi.md +128 -0
- package/docs/ValueFrameworkCreate.md +23 -0
- package/docs/ValueFrameworkResponse.md +31 -0
- package/docs/ValueFrameworkUpdate.md +23 -0
- package/docs/ValueFrameworkWeightsApi.md +66 -0
- package/index.ts +1 -1
- package/models/evolution-type.ts +26 -0
- package/models/httpvalidation-error.ts +2 -12
- package/models/impact-apiresponse.ts +43 -0
- package/models/impact-create.ts +47 -0
- package/models/impact-update.ts +32 -0
- package/models/index.ts +11 -1
- package/models/investment-create.ts +27 -0
- package/models/investment-response.ts +31 -0
- package/models/investment-update.ts +24 -0
- package/models/{validation-error-loc-inner.ts → location-inner.ts} +2 -7
- package/models/measurement-type.ts +1 -6
- package/models/metric-costs-per-year-create.ts +1 -17
- package/models/metric-costs-per-year-response.ts +1 -18
- package/models/metric-costs-per-year-update.ts +1 -13
- package/models/metric-create.ts +3 -28
- package/models/metric-response.ts +3 -50
- package/models/metric-type.ts +1 -6
- package/models/metric-update.ts +3 -35
- package/models/objective-create.ts +1 -10
- package/models/objective-response.ts +1 -30
- package/models/objective-update.ts +1 -13
- package/models/objective-weight-create.ts +1 -9
- package/models/objective-weight-response.ts +1 -14
- package/models/objective-weight-update.ts +1 -8
- package/models/option-create.ts +39 -0
- package/models/option-response.ts +37 -0
- package/models/option-update.ts +25 -0
- package/models/validation-error.ts +3 -33
- package/models/value-framework-create.ts +1 -10
- package/models/value-framework-response.ts +1 -30
- package/models/value-framework-update.ts +1 -13
- package/package.json +4 -4
|
@@ -0,0 +1,633 @@
|
|
|
1
|
+
# ObjectiveApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *http://localhost*
|
|
4
|
+
|
|
5
|
+
|Method | HTTP request | Description|
|
|
6
|
+
|------------- | ------------- | -------------|
|
|
7
|
+
|[**createMetricForObjective**](#createmetricforobjective) | **POST** /objective/{objective_id}/metric/ | Create a metric for this objective|
|
|
8
|
+
|[**deleteMetricForObjective**](#deletemetricforobjective) | **DELETE** /objective/{objective_id}/metric/{metric_id} | Delete a metric for this objective|
|
|
9
|
+
|[**deleteObjective**](#deleteobjective) | **DELETE** /objective/{objective_id} | Delete an objective|
|
|
10
|
+
|[**getMetricForObjective**](#getmetricforobjective) | **GET** /objective/{objective_id}/metric/{metric_id} | Get a metric for this objective|
|
|
11
|
+
|[**getMetricsForObjective**](#getmetricsforobjective) | **GET** /objective/{objective_id}/metric/ | List metrics for this objective|
|
|
12
|
+
|[**getObjectiveById**](#getobjectivebyid) | **GET** /objective/{objective_id} | Get an objective by ID|
|
|
13
|
+
|[**getObjectives**](#getobjectives) | **GET** /objective/ | List objectives|
|
|
14
|
+
|[**getWeightsForObjective**](#getweightsforobjective) | **GET** /objective/{objective_id}/weights/ | List all objective weights for an objective|
|
|
15
|
+
|[**patchMetricForObjective**](#patchmetricforobjective) | **PATCH** /objective/{objective_id}/metric/{metric_id} | Partially update a metric for this objective|
|
|
16
|
+
|[**patchObjective**](#patchobjective) | **PATCH** /objective/{objective_id} | Partially update an objective|
|
|
17
|
+
|[**postObjective**](#postobjective) | **POST** /objective/ | Create an objective|
|
|
18
|
+
|
|
19
|
+
# **createMetricForObjective**
|
|
20
|
+
> MetricResponse createMetricForObjective(metricCreate)
|
|
21
|
+
|
|
22
|
+
Create a new metric under this objective.
|
|
23
|
+
|
|
24
|
+
### Example
|
|
25
|
+
|
|
26
|
+
```typescript
|
|
27
|
+
import {
|
|
28
|
+
ObjectiveApi,
|
|
29
|
+
Configuration,
|
|
30
|
+
MetricCreate
|
|
31
|
+
} from '@cosmotech/aip-client';
|
|
32
|
+
|
|
33
|
+
const configuration = new Configuration();
|
|
34
|
+
const apiInstance = new ObjectiveApi(configuration);
|
|
35
|
+
|
|
36
|
+
let objectiveId: string; //UUID of the objective (default to undefined)
|
|
37
|
+
let metricCreate: MetricCreate; //
|
|
38
|
+
|
|
39
|
+
const { status, data } = await apiInstance.createMetricForObjective(
|
|
40
|
+
objectiveId,
|
|
41
|
+
metricCreate
|
|
42
|
+
);
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### Parameters
|
|
46
|
+
|
|
47
|
+
|Name | Type | Description | Notes|
|
|
48
|
+
|------------- | ------------- | ------------- | -------------|
|
|
49
|
+
| **metricCreate** | **MetricCreate**| | |
|
|
50
|
+
| **objectiveId** | [**string**] | UUID of the objective | defaults to undefined|
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Return type
|
|
54
|
+
|
|
55
|
+
**MetricResponse**
|
|
56
|
+
|
|
57
|
+
### Authorization
|
|
58
|
+
|
|
59
|
+
[OAuth2AuthorizationCodeBearer](../README.md#OAuth2AuthorizationCodeBearer)
|
|
60
|
+
|
|
61
|
+
### HTTP request headers
|
|
62
|
+
|
|
63
|
+
- **Content-Type**: application/json
|
|
64
|
+
- **Accept**: application/json
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### HTTP response details
|
|
68
|
+
| Status code | Description | Response headers |
|
|
69
|
+
|-------------|-------------|------------------|
|
|
70
|
+
|**201** | Metric created successfully | - |
|
|
71
|
+
|**400** | Invalid input or constraint violation | - |
|
|
72
|
+
|**404** | Objective not found | - |
|
|
73
|
+
|**409** | Duplicate metric | - |
|
|
74
|
+
|
|
75
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
76
|
+
|
|
77
|
+
# **deleteMetricForObjective**
|
|
78
|
+
> deleteMetricForObjective()
|
|
79
|
+
|
|
80
|
+
Delete an existing metric by its ID. Associated metric costs per year are also deleted via cascade.
|
|
81
|
+
|
|
82
|
+
### Example
|
|
83
|
+
|
|
84
|
+
```typescript
|
|
85
|
+
import {
|
|
86
|
+
ObjectiveApi,
|
|
87
|
+
Configuration
|
|
88
|
+
} from '@cosmotech/aip-client';
|
|
89
|
+
|
|
90
|
+
const configuration = new Configuration();
|
|
91
|
+
const apiInstance = new ObjectiveApi(configuration);
|
|
92
|
+
|
|
93
|
+
let metricId: string; //UUID of the metric (default to undefined)
|
|
94
|
+
let objectiveId: string; //UUID of the objective (default to undefined)
|
|
95
|
+
|
|
96
|
+
const { status, data } = await apiInstance.deleteMetricForObjective(
|
|
97
|
+
metricId,
|
|
98
|
+
objectiveId
|
|
99
|
+
);
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### Parameters
|
|
103
|
+
|
|
104
|
+
|Name | Type | Description | Notes|
|
|
105
|
+
|------------- | ------------- | ------------- | -------------|
|
|
106
|
+
| **metricId** | [**string**] | UUID of the metric | defaults to undefined|
|
|
107
|
+
| **objectiveId** | [**string**] | UUID of the objective | defaults to undefined|
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
### Return type
|
|
111
|
+
|
|
112
|
+
void (empty response body)
|
|
113
|
+
|
|
114
|
+
### Authorization
|
|
115
|
+
|
|
116
|
+
[OAuth2AuthorizationCodeBearer](../README.md#OAuth2AuthorizationCodeBearer)
|
|
117
|
+
|
|
118
|
+
### HTTP request headers
|
|
119
|
+
|
|
120
|
+
- **Content-Type**: Not defined
|
|
121
|
+
- **Accept**: Not defined
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
### HTTP response details
|
|
125
|
+
| Status code | Description | Response headers |
|
|
126
|
+
|-------------|-------------|------------------|
|
|
127
|
+
|**204** | Metric successfully deleted | - |
|
|
128
|
+
|**404** | Objective or metric not found | - |
|
|
129
|
+
|
|
130
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
131
|
+
|
|
132
|
+
# **deleteObjective**
|
|
133
|
+
> deleteObjective()
|
|
134
|
+
|
|
135
|
+
Delete an existing objective by its ID. Associated metrics and objective weights are also deleted via cascade.
|
|
136
|
+
|
|
137
|
+
### Example
|
|
138
|
+
|
|
139
|
+
```typescript
|
|
140
|
+
import {
|
|
141
|
+
ObjectiveApi,
|
|
142
|
+
Configuration
|
|
143
|
+
} from '@cosmotech/aip-client';
|
|
144
|
+
|
|
145
|
+
const configuration = new Configuration();
|
|
146
|
+
const apiInstance = new ObjectiveApi(configuration);
|
|
147
|
+
|
|
148
|
+
let objectiveId: string; //UUID of the objective (default to undefined)
|
|
149
|
+
|
|
150
|
+
const { status, data } = await apiInstance.deleteObjective(
|
|
151
|
+
objectiveId
|
|
152
|
+
);
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
### Parameters
|
|
156
|
+
|
|
157
|
+
|Name | Type | Description | Notes|
|
|
158
|
+
|------------- | ------------- | ------------- | -------------|
|
|
159
|
+
| **objectiveId** | [**string**] | UUID of the objective | defaults to undefined|
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
### Return type
|
|
163
|
+
|
|
164
|
+
void (empty response body)
|
|
165
|
+
|
|
166
|
+
### Authorization
|
|
167
|
+
|
|
168
|
+
[OAuth2AuthorizationCodeBearer](../README.md#OAuth2AuthorizationCodeBearer)
|
|
169
|
+
|
|
170
|
+
### HTTP request headers
|
|
171
|
+
|
|
172
|
+
- **Content-Type**: Not defined
|
|
173
|
+
- **Accept**: Not defined
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### HTTP response details
|
|
177
|
+
| Status code | Description | Response headers |
|
|
178
|
+
|-------------|-------------|------------------|
|
|
179
|
+
|**204** | Objective successfully deleted | - |
|
|
180
|
+
|**404** | Objective not found | - |
|
|
181
|
+
|
|
182
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
183
|
+
|
|
184
|
+
# **getMetricForObjective**
|
|
185
|
+
> MetricResponse getMetricForObjective()
|
|
186
|
+
|
|
187
|
+
Retrieve a specific metric for the objective.
|
|
188
|
+
|
|
189
|
+
### Example
|
|
190
|
+
|
|
191
|
+
```typescript
|
|
192
|
+
import {
|
|
193
|
+
ObjectiveApi,
|
|
194
|
+
Configuration
|
|
195
|
+
} from '@cosmotech/aip-client';
|
|
196
|
+
|
|
197
|
+
const configuration = new Configuration();
|
|
198
|
+
const apiInstance = new ObjectiveApi(configuration);
|
|
199
|
+
|
|
200
|
+
let metricId: string; //UUID of the metric (default to undefined)
|
|
201
|
+
let objectiveId: string; //UUID of the objective (default to undefined)
|
|
202
|
+
|
|
203
|
+
const { status, data } = await apiInstance.getMetricForObjective(
|
|
204
|
+
metricId,
|
|
205
|
+
objectiveId
|
|
206
|
+
);
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
### Parameters
|
|
210
|
+
|
|
211
|
+
|Name | Type | Description | Notes|
|
|
212
|
+
|------------- | ------------- | ------------- | -------------|
|
|
213
|
+
| **metricId** | [**string**] | UUID of the metric | defaults to undefined|
|
|
214
|
+
| **objectiveId** | [**string**] | UUID of the objective | defaults to undefined|
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
### Return type
|
|
218
|
+
|
|
219
|
+
**MetricResponse**
|
|
220
|
+
|
|
221
|
+
### Authorization
|
|
222
|
+
|
|
223
|
+
[OAuth2AuthorizationCodeBearer](../README.md#OAuth2AuthorizationCodeBearer)
|
|
224
|
+
|
|
225
|
+
### HTTP request headers
|
|
226
|
+
|
|
227
|
+
- **Content-Type**: Not defined
|
|
228
|
+
- **Accept**: application/json
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
### HTTP response details
|
|
232
|
+
| Status code | Description | Response headers |
|
|
233
|
+
|-------------|-------------|------------------|
|
|
234
|
+
|**200** | The requested metric | - |
|
|
235
|
+
|**404** | Objective or metric not found | - |
|
|
236
|
+
|
|
237
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
238
|
+
|
|
239
|
+
# **getMetricsForObjective**
|
|
240
|
+
> Array<MetricResponse> getMetricsForObjective()
|
|
241
|
+
|
|
242
|
+
Retrieve a paginated list of all metrics for a specific objective.
|
|
243
|
+
|
|
244
|
+
### Example
|
|
245
|
+
|
|
246
|
+
```typescript
|
|
247
|
+
import {
|
|
248
|
+
ObjectiveApi,
|
|
249
|
+
Configuration
|
|
250
|
+
} from '@cosmotech/aip-client';
|
|
251
|
+
|
|
252
|
+
const configuration = new Configuration();
|
|
253
|
+
const apiInstance = new ObjectiveApi(configuration);
|
|
254
|
+
|
|
255
|
+
let objectiveId: string; //UUID of the objective (default to undefined)
|
|
256
|
+
let offset: number; //Number of records to skip (optional) (default to 0)
|
|
257
|
+
let limit: number; //Max number of records to return (optional) (default to 100)
|
|
258
|
+
|
|
259
|
+
const { status, data } = await apiInstance.getMetricsForObjective(
|
|
260
|
+
objectiveId,
|
|
261
|
+
offset,
|
|
262
|
+
limit
|
|
263
|
+
);
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
### Parameters
|
|
267
|
+
|
|
268
|
+
|Name | Type | Description | Notes|
|
|
269
|
+
|------------- | ------------- | ------------- | -------------|
|
|
270
|
+
| **objectiveId** | [**string**] | UUID of the objective | defaults to undefined|
|
|
271
|
+
| **offset** | [**number**] | Number of records to skip | (optional) defaults to 0|
|
|
272
|
+
| **limit** | [**number**] | Max number of records to return | (optional) defaults to 100|
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
### Return type
|
|
276
|
+
|
|
277
|
+
**Array<MetricResponse>**
|
|
278
|
+
|
|
279
|
+
### Authorization
|
|
280
|
+
|
|
281
|
+
[OAuth2AuthorizationCodeBearer](../README.md#OAuth2AuthorizationCodeBearer)
|
|
282
|
+
|
|
283
|
+
### HTTP request headers
|
|
284
|
+
|
|
285
|
+
- **Content-Type**: Not defined
|
|
286
|
+
- **Accept**: application/json
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
### HTTP response details
|
|
290
|
+
| Status code | Description | Response headers |
|
|
291
|
+
|-------------|-------------|------------------|
|
|
292
|
+
|**200** | List of metrics for the objective | - |
|
|
293
|
+
|**404** | Objective not found | - |
|
|
294
|
+
|
|
295
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
296
|
+
|
|
297
|
+
# **getObjectiveById**
|
|
298
|
+
> ObjectiveResponse getObjectiveById()
|
|
299
|
+
|
|
300
|
+
Retrieve a single objective by its ID.
|
|
301
|
+
|
|
302
|
+
### Example
|
|
303
|
+
|
|
304
|
+
```typescript
|
|
305
|
+
import {
|
|
306
|
+
ObjectiveApi,
|
|
307
|
+
Configuration
|
|
308
|
+
} from '@cosmotech/aip-client';
|
|
309
|
+
|
|
310
|
+
const configuration = new Configuration();
|
|
311
|
+
const apiInstance = new ObjectiveApi(configuration);
|
|
312
|
+
|
|
313
|
+
let objectiveId: string; //UUID of the objective (default to undefined)
|
|
314
|
+
|
|
315
|
+
const { status, data } = await apiInstance.getObjectiveById(
|
|
316
|
+
objectiveId
|
|
317
|
+
);
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
### Parameters
|
|
321
|
+
|
|
322
|
+
|Name | Type | Description | Notes|
|
|
323
|
+
|------------- | ------------- | ------------- | -------------|
|
|
324
|
+
| **objectiveId** | [**string**] | UUID of the objective | defaults to undefined|
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
### Return type
|
|
328
|
+
|
|
329
|
+
**ObjectiveResponse**
|
|
330
|
+
|
|
331
|
+
### Authorization
|
|
332
|
+
|
|
333
|
+
[OAuth2AuthorizationCodeBearer](../README.md#OAuth2AuthorizationCodeBearer)
|
|
334
|
+
|
|
335
|
+
### HTTP request headers
|
|
336
|
+
|
|
337
|
+
- **Content-Type**: Not defined
|
|
338
|
+
- **Accept**: application/json
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
### HTTP response details
|
|
342
|
+
| Status code | Description | Response headers |
|
|
343
|
+
|-------------|-------------|------------------|
|
|
344
|
+
|**200** | The requested objective | - |
|
|
345
|
+
|**404** | Objective not found | - |
|
|
346
|
+
|
|
347
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
348
|
+
|
|
349
|
+
# **getObjectives**
|
|
350
|
+
> Array<ObjectiveResponse> getObjectives()
|
|
351
|
+
|
|
352
|
+
Retrieve a paginated list of all objectives.
|
|
353
|
+
|
|
354
|
+
### Example
|
|
355
|
+
|
|
356
|
+
```typescript
|
|
357
|
+
import {
|
|
358
|
+
ObjectiveApi,
|
|
359
|
+
Configuration
|
|
360
|
+
} from '@cosmotech/aip-client';
|
|
361
|
+
|
|
362
|
+
const configuration = new Configuration();
|
|
363
|
+
const apiInstance = new ObjectiveApi(configuration);
|
|
364
|
+
|
|
365
|
+
let offset: number; //Number of records to skip (optional) (default to 0)
|
|
366
|
+
let limit: number; //Max number of records to return (optional) (default to 100)
|
|
367
|
+
|
|
368
|
+
const { status, data } = await apiInstance.getObjectives(
|
|
369
|
+
offset,
|
|
370
|
+
limit
|
|
371
|
+
);
|
|
372
|
+
```
|
|
373
|
+
|
|
374
|
+
### Parameters
|
|
375
|
+
|
|
376
|
+
|Name | Type | Description | Notes|
|
|
377
|
+
|------------- | ------------- | ------------- | -------------|
|
|
378
|
+
| **offset** | [**number**] | Number of records to skip | (optional) defaults to 0|
|
|
379
|
+
| **limit** | [**number**] | Max number of records to return | (optional) defaults to 100|
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
### Return type
|
|
383
|
+
|
|
384
|
+
**Array<ObjectiveResponse>**
|
|
385
|
+
|
|
386
|
+
### Authorization
|
|
387
|
+
|
|
388
|
+
[OAuth2AuthorizationCodeBearer](../README.md#OAuth2AuthorizationCodeBearer)
|
|
389
|
+
|
|
390
|
+
### HTTP request headers
|
|
391
|
+
|
|
392
|
+
- **Content-Type**: Not defined
|
|
393
|
+
- **Accept**: application/json
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
### HTTP response details
|
|
397
|
+
| Status code | Description | Response headers |
|
|
398
|
+
|-------------|-------------|------------------|
|
|
399
|
+
|**200** | List of objectives | - |
|
|
400
|
+
|
|
401
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
402
|
+
|
|
403
|
+
# **getWeightsForObjective**
|
|
404
|
+
> Array<ObjectiveWeightResponse> getWeightsForObjective()
|
|
405
|
+
|
|
406
|
+
Retrieve a paginated list of all objective weights for a specific objective.
|
|
407
|
+
|
|
408
|
+
### Example
|
|
409
|
+
|
|
410
|
+
```typescript
|
|
411
|
+
import {
|
|
412
|
+
ObjectiveApi,
|
|
413
|
+
Configuration
|
|
414
|
+
} from '@cosmotech/aip-client';
|
|
415
|
+
|
|
416
|
+
const configuration = new Configuration();
|
|
417
|
+
const apiInstance = new ObjectiveApi(configuration);
|
|
418
|
+
|
|
419
|
+
let objectiveId: string; //UUID of the objective (default to undefined)
|
|
420
|
+
let offset: number; //Number of records to skip (optional) (default to 0)
|
|
421
|
+
let limit: number; //Max number of records to return (optional) (default to 100)
|
|
422
|
+
|
|
423
|
+
const { status, data } = await apiInstance.getWeightsForObjective(
|
|
424
|
+
objectiveId,
|
|
425
|
+
offset,
|
|
426
|
+
limit
|
|
427
|
+
);
|
|
428
|
+
```
|
|
429
|
+
|
|
430
|
+
### Parameters
|
|
431
|
+
|
|
432
|
+
|Name | Type | Description | Notes|
|
|
433
|
+
|------------- | ------------- | ------------- | -------------|
|
|
434
|
+
| **objectiveId** | [**string**] | UUID of the objective | defaults to undefined|
|
|
435
|
+
| **offset** | [**number**] | Number of records to skip | (optional) defaults to 0|
|
|
436
|
+
| **limit** | [**number**] | Max number of records to return | (optional) defaults to 100|
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
### Return type
|
|
440
|
+
|
|
441
|
+
**Array<ObjectiveWeightResponse>**
|
|
442
|
+
|
|
443
|
+
### Authorization
|
|
444
|
+
|
|
445
|
+
[OAuth2AuthorizationCodeBearer](../README.md#OAuth2AuthorizationCodeBearer)
|
|
446
|
+
|
|
447
|
+
### HTTP request headers
|
|
448
|
+
|
|
449
|
+
- **Content-Type**: Not defined
|
|
450
|
+
- **Accept**: application/json
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
### HTTP response details
|
|
454
|
+
| Status code | Description | Response headers |
|
|
455
|
+
|-------------|-------------|------------------|
|
|
456
|
+
|**200** | List of objective weights for the objective | - |
|
|
457
|
+
|**404** | Objective not found | - |
|
|
458
|
+
|
|
459
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
460
|
+
|
|
461
|
+
# **patchMetricForObjective**
|
|
462
|
+
> MetricResponse patchMetricForObjective(metricUpdate)
|
|
463
|
+
|
|
464
|
+
Update one or more fields of an existing metric. Only the fields included in the request body will be modified; omitted fields remain unchanged.
|
|
465
|
+
|
|
466
|
+
### Example
|
|
467
|
+
|
|
468
|
+
```typescript
|
|
469
|
+
import {
|
|
470
|
+
ObjectiveApi,
|
|
471
|
+
Configuration,
|
|
472
|
+
MetricUpdate
|
|
473
|
+
} from '@cosmotech/aip-client';
|
|
474
|
+
|
|
475
|
+
const configuration = new Configuration();
|
|
476
|
+
const apiInstance = new ObjectiveApi(configuration);
|
|
477
|
+
|
|
478
|
+
let metricId: string; //UUID of the metric (default to undefined)
|
|
479
|
+
let objectiveId: string; //UUID of the objective (default to undefined)
|
|
480
|
+
let metricUpdate: MetricUpdate; //
|
|
481
|
+
|
|
482
|
+
const { status, data } = await apiInstance.patchMetricForObjective(
|
|
483
|
+
metricId,
|
|
484
|
+
objectiveId,
|
|
485
|
+
metricUpdate
|
|
486
|
+
);
|
|
487
|
+
```
|
|
488
|
+
|
|
489
|
+
### Parameters
|
|
490
|
+
|
|
491
|
+
|Name | Type | Description | Notes|
|
|
492
|
+
|------------- | ------------- | ------------- | -------------|
|
|
493
|
+
| **metricUpdate** | **MetricUpdate**| | |
|
|
494
|
+
| **metricId** | [**string**] | UUID of the metric | defaults to undefined|
|
|
495
|
+
| **objectiveId** | [**string**] | UUID of the objective | defaults to undefined|
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
### Return type
|
|
499
|
+
|
|
500
|
+
**MetricResponse**
|
|
501
|
+
|
|
502
|
+
### Authorization
|
|
503
|
+
|
|
504
|
+
[OAuth2AuthorizationCodeBearer](../README.md#OAuth2AuthorizationCodeBearer)
|
|
505
|
+
|
|
506
|
+
### HTTP request headers
|
|
507
|
+
|
|
508
|
+
- **Content-Type**: application/json
|
|
509
|
+
- **Accept**: application/json
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
### HTTP response details
|
|
513
|
+
| Status code | Description | Response headers |
|
|
514
|
+
|-------------|-------------|------------------|
|
|
515
|
+
|**200** | Metric updated successfully | - |
|
|
516
|
+
|**400** | Validation or constraint error | - |
|
|
517
|
+
|**404** | Objective or metric not found | - |
|
|
518
|
+
|**409** | Unique constraint violation | - |
|
|
519
|
+
|
|
520
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
521
|
+
|
|
522
|
+
# **patchObjective**
|
|
523
|
+
> ObjectiveResponse patchObjective(objectiveUpdate)
|
|
524
|
+
|
|
525
|
+
Update one or more fields of an existing objective. Only the fields included in the request body will be modified; omitted fields remain unchanged.
|
|
526
|
+
|
|
527
|
+
### Example
|
|
528
|
+
|
|
529
|
+
```typescript
|
|
530
|
+
import {
|
|
531
|
+
ObjectiveApi,
|
|
532
|
+
Configuration,
|
|
533
|
+
ObjectiveUpdate
|
|
534
|
+
} from '@cosmotech/aip-client';
|
|
535
|
+
|
|
536
|
+
const configuration = new Configuration();
|
|
537
|
+
const apiInstance = new ObjectiveApi(configuration);
|
|
538
|
+
|
|
539
|
+
let objectiveId: string; //UUID of the objective (default to undefined)
|
|
540
|
+
let objectiveUpdate: ObjectiveUpdate; //
|
|
541
|
+
|
|
542
|
+
const { status, data } = await apiInstance.patchObjective(
|
|
543
|
+
objectiveId,
|
|
544
|
+
objectiveUpdate
|
|
545
|
+
);
|
|
546
|
+
```
|
|
547
|
+
|
|
548
|
+
### Parameters
|
|
549
|
+
|
|
550
|
+
|Name | Type | Description | Notes|
|
|
551
|
+
|------------- | ------------- | ------------- | -------------|
|
|
552
|
+
| **objectiveUpdate** | **ObjectiveUpdate**| | |
|
|
553
|
+
| **objectiveId** | [**string**] | UUID of the objective | defaults to undefined|
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
### Return type
|
|
557
|
+
|
|
558
|
+
**ObjectiveResponse**
|
|
559
|
+
|
|
560
|
+
### Authorization
|
|
561
|
+
|
|
562
|
+
[OAuth2AuthorizationCodeBearer](../README.md#OAuth2AuthorizationCodeBearer)
|
|
563
|
+
|
|
564
|
+
### HTTP request headers
|
|
565
|
+
|
|
566
|
+
- **Content-Type**: application/json
|
|
567
|
+
- **Accept**: application/json
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
### HTTP response details
|
|
571
|
+
| Status code | Description | Response headers |
|
|
572
|
+
|-------------|-------------|------------------|
|
|
573
|
+
|**200** | Objective updated successfully | - |
|
|
574
|
+
|**400** | Validation or constraint error (e.g. empty name) | - |
|
|
575
|
+
|**404** | Objective not found | - |
|
|
576
|
+
|**409** | Unique constraint violation (e.g. duplicate name) | - |
|
|
577
|
+
|
|
578
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
579
|
+
|
|
580
|
+
# **postObjective**
|
|
581
|
+
> ObjectiveResponse postObjective(objectiveCreate)
|
|
582
|
+
|
|
583
|
+
Create a new objective. Name must be unique and non-empty.
|
|
584
|
+
|
|
585
|
+
### Example
|
|
586
|
+
|
|
587
|
+
```typescript
|
|
588
|
+
import {
|
|
589
|
+
ObjectiveApi,
|
|
590
|
+
Configuration,
|
|
591
|
+
ObjectiveCreate
|
|
592
|
+
} from '@cosmotech/aip-client';
|
|
593
|
+
|
|
594
|
+
const configuration = new Configuration();
|
|
595
|
+
const apiInstance = new ObjectiveApi(configuration);
|
|
596
|
+
|
|
597
|
+
let objectiveCreate: ObjectiveCreate; //
|
|
598
|
+
|
|
599
|
+
const { status, data } = await apiInstance.postObjective(
|
|
600
|
+
objectiveCreate
|
|
601
|
+
);
|
|
602
|
+
```
|
|
603
|
+
|
|
604
|
+
### Parameters
|
|
605
|
+
|
|
606
|
+
|Name | Type | Description | Notes|
|
|
607
|
+
|------------- | ------------- | ------------- | -------------|
|
|
608
|
+
| **objectiveCreate** | **ObjectiveCreate**| | |
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
### Return type
|
|
612
|
+
|
|
613
|
+
**ObjectiveResponse**
|
|
614
|
+
|
|
615
|
+
### Authorization
|
|
616
|
+
|
|
617
|
+
[OAuth2AuthorizationCodeBearer](../README.md#OAuth2AuthorizationCodeBearer)
|
|
618
|
+
|
|
619
|
+
### HTTP request headers
|
|
620
|
+
|
|
621
|
+
- **Content-Type**: application/json
|
|
622
|
+
- **Accept**: application/json
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
### HTTP response details
|
|
626
|
+
| Status code | Description | Response headers |
|
|
627
|
+
|-------------|-------------|------------------|
|
|
628
|
+
|**201** | Objective created successfully | - |
|
|
629
|
+
|**400** | Invalid input or constraint violation | - |
|
|
630
|
+
|**409** | Objective with this name already exists | - |
|
|
631
|
+
|
|
632
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
633
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# ObjectiveCreate
|
|
2
|
+
|
|
3
|
+
Schema for creating a new Objective (excludes auto-generated fields)
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**description** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**name** | **string** | Name of the objective | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { ObjectiveCreate } from '@cosmotech/aip-client';
|
|
16
|
+
|
|
17
|
+
const instance: ObjectiveCreate = {
|
|
18
|
+
description,
|
|
19
|
+
name,
|
|
20
|
+
};
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# ObjectiveResponse
|
|
2
|
+
|
|
3
|
+
Schema for Objective responses (includes all fields)
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**createdAt** | **string** | | [default to undefined]
|
|
10
|
+
**description** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**id** | **string** | | [default to undefined]
|
|
12
|
+
**name** | **string** | Name of the objective | [default to undefined]
|
|
13
|
+
**ownerName** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**updatedAt** | **string** | | [default to undefined]
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
import { ObjectiveResponse } from '@cosmotech/aip-client';
|
|
20
|
+
|
|
21
|
+
const instance: ObjectiveResponse = {
|
|
22
|
+
createdAt,
|
|
23
|
+
description,
|
|
24
|
+
id,
|
|
25
|
+
name,
|
|
26
|
+
ownerName,
|
|
27
|
+
updatedAt,
|
|
28
|
+
};
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# ObjectiveUpdate
|
|
2
|
+
|
|
3
|
+
Schema for partially updating an Objective. Only provided fields will be updated.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**description** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**name** | **string** | | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { ObjectiveUpdate } from '@cosmotech/aip-client';
|
|
16
|
+
|
|
17
|
+
const instance: ObjectiveUpdate = {
|
|
18
|
+
description,
|
|
19
|
+
name,
|
|
20
|
+
};
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|