Skip to content

Commit

Permalink
Merge branch 'release-2024.9.0' into 'main'
Browse files Browse the repository at this point in the history
Release 2024.9.0

See merge request platform/openapi!36
  • Loading branch information
takokid committed Sep 11, 2024
2 parents 489c16a + 56b6a34 commit 5471f62
Show file tree
Hide file tree
Showing 3 changed files with 180 additions and 3 deletions.
174 changes: 174 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,177 @@
## v2024.9.0

#### What's Changed

##### `GET` /api/v2/workflows/{id}


###### Return Type:

Changed response : **200 OK**
> OK
* Changed content type : `application/json`

* Changed property `type` (string)
> The type of workflow

Added enum value:

* `CONTROL_WORKFLOW`
##### `PATCH` /api/v2/workflows/{id}


###### Return Type:

Changed response : **200 OK**
> OK
* Changed content type : `application/json`

* Changed property `type` (string)
> The type of workflow

Added enum value:

* `CONTROL_WORKFLOW`
##### `POST` /api/v2/workflows


###### Return Type:

Changed response : **200 OK**
> OK
* Changed content type : `application/json`

* Changed property `type` (string)
> The type of workflow

Added enum value:

* `CONTROL_WORKFLOW`
##### `GET` /api/v2/workflows


###### Return Type:

Changed response : **200 OK**
> OK
* Changed content type : `application/json`

* Changed property `content` (array)
> A array of returned items

Changed items (object):

* Changed property `type` (string)
> The type of workflow

Added enum value:

* `CONTROL_WORKFLOW`
##### `GET` /api/v2/records/{id}


###### Return Type:

Changed response : **200 OK**
> OK
* Changed content type : `application/json`

* Changed property `fields` (array)
> The fields and values of the record

Changed items (object):
> The fields and values of the record

* Changed property `type` (string)
> The type of the field

Added enum value:

* `LINKED_RECORDS_CALCULATION`
##### `GET` /api/v2/fields


###### Return Type:

Changed response : **200 OK**
> OK
* Changed content type : `application/json`

* Changed property `content` (array)
> A array of returned items

Changed items (object):
> A array of returned items

* Changed property `type` (string)
> The type of the field

Added enum value:

* `LINKED_RECORDS_CALCULATION`
##### `GET` /api/v2/records


###### Return Type:

Changed response : **200 OK**
> OK
* Changed content type : `application/json`

* Changed property `content` (array)
> A array of returned items

Changed items (object):
> A array of returned items

* Changed property `fields` (array)
> The fields and values of the record

Changed items (object):
> The fields and values of the record

* Changed property `type` (string)
> The type of the field

Added enum value:

* `LINKED_RECORDS_CALCULATION`
##### `GET` /api/v2/records/{id}/linked


###### Return Type:

Changed response : **200 OK**
> OK
* Changed content type : `application/json`

* Changed property `content` (array)
> A array of returned items

Changed items (object):
> A array of returned items

* Changed property `fields` (array)
> The fields and values of the record

Changed items (object):
> The fields and values of the record

* Changed property `type` (string)
> The type of the field

Added enum value:

* `LINKED_RECORDS_CALCULATION`

## v2024.8.1

No API updates.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Risk Cloud API: OpenAPI Specification

<p>
<img src="https://img.shields.io/badge/release-v2024.8.1-blue" />
<img src="https://img.shields.io/badge/release-v2024.9.0-blue" />
<img src="https://img.shields.io/badge/openapi-3.0.1-green" />
</p>

Expand Down
7 changes: 5 additions & 2 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "developer-relations@logicgate.com",
"email": "developer-relations@logicgate.com"
},
"version": "v2024.8.1"
"version": "v2024.9.0"
},
"externalDocs": {
"description": "Developer Portal",
Expand Down Expand Up @@ -1557,6 +1557,7 @@
"enum": [
"WORKFLOW",
"JIRA_WORKFLOW",
"CONTROL_WORKFLOW",
"ANALYSIS_WORKFLOW"
]
},
Expand Down Expand Up @@ -2469,6 +2470,7 @@
"ATTACHMENT",
"CALCULATION",
"TEXT_CONCATENATION",
"LINKED_RECORDS_CALCULATION",
"DATE_CALCULATION",
"OTHER"
]
Expand Down Expand Up @@ -2800,6 +2802,7 @@
"ATTACHMENT",
"CALCULATION",
"TEXT_CONCATENATION",
"LINKED_RECORDS_CALCULATION",
"DATE_CALCULATION",
"OTHER"
]
Expand Down Expand Up @@ -2897,4 +2900,4 @@
}
}
}
}
}

0 comments on commit 5471f62

Please sign in to comment.