Skip to content

Commit

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

See merge request platform/openapi!43
  • Loading branch information
rachelbrown-logicgate committed Dec 12, 2024
2 parents 8331ac7 + d3979f0 commit dc63596
Show file tree
Hide file tree
Showing 3 changed files with 124 additions and 22 deletions.
83 changes: 83 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,86 @@
## v2024.12.0

#### What's Changed

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


###### Return Type:

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

* Added property `description` (string)
> The description of the step

##### `PATCH` /api/v2/steps/{id}


###### Request:

Changed content type : `application/json`

* Added property `description` (string)
> The description of the step
###### Return Type:

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

* Added property `description` (string)
> The description of the step

##### `POST` /api/v2/steps


###### Request:

Changed content type : `application/json`

* Added property `description` (string)
> The description of the step
###### Return Type:

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

* Added property `description` (string)
> The description of the step

##### `GET` /api/v2/steps


###### Return Type:

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

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

Changed items (object):

* Added property `description` (string)
> The description of the step

##### `GET` /api/v2/fields


###### Parameters:

Changed: `field-type` in `query`
> A field type where, if provided, the response will only contain fields of the identified field type
## v2024.11.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.11.1-blue" />
<img src="https://img.shields.io/badge/release-v2024.12.0-blue" />
<img src="https://img.shields.io/badge/openapi-3.0.1-green" />
</p>

Expand Down
61 changes: 40 additions & 21 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.11.1"
"version": "v2024.12.0"
},
"externalDocs": {
"description": "Developer Portal",
Expand Down Expand Up @@ -1371,25 +1371,29 @@
"description": "A field type where, if provided, the response will only contain fields of the identified field type",
"required": false,
"schema": {
"title": "Field Type (Filter)",
"type": "string",
"enum": [
"DATE",
"USER",
"EXTERNAL_USER",
"TEXT",
"TEXT_AREA",
"NUMBER",
"E_SIGNATURE",
"CHECKBOX",
"MULTI_SELECT",
"RADIO",
"SELECT",
"ATTACHMENT",
"CALCULATION",
"TEXT_CONCATENATION",
"DATE_CALCULATION"
]
"type": "array",
"items": {
"title": "Field Type (Filter)",
"type": "string",
"enum": [
"DATE",
"USER",
"EXTERNAL_USER",
"TEXT",
"TEXT_AREA",
"NUMBER",
"E_SIGNATURE",
"CHECKBOX",
"MULTI_SELECT",
"RADIO",
"SELECT",
"ATTACHMENT",
"CALCULATION",
"TEXT_CONCATENATION",
"DATE_CALCULATION"
]
},
"default": []
},
"example": "SELECT"
},
Expand Down Expand Up @@ -1670,6 +1674,11 @@
"format": "int32",
"example": 20
},
"description": {
"type": "string",
"description": "The description of the step",
"example": "This is a description of the step"
},
"enableComments": {
"type": "boolean",
"description": "Whether comments are displayed on a step (defaults to false)",
Expand Down Expand Up @@ -1707,6 +1716,11 @@
"description": "The name of the step",
"example": "Identify Risk"
},
"description": {
"type": "string",
"description": "The description of the step",
"example": "This is a description of the step"
},
"xpos": {
"type": "integer",
"description": "The x-coordinate of the step in the application builder",
Expand Down Expand Up @@ -2090,6 +2104,11 @@
"description": "The name of the step",
"example": "Identify Risk"
},
"description": {
"type": "string",
"description": "The description of the step",
"example": "This is a description of the step"
},
"xpos": {
"type": "integer",
"description": "The x-coordinate of the step in the application builder (must not be less than 0)",
Expand Down Expand Up @@ -2905,4 +2924,4 @@
}
}
}
}
}

0 comments on commit dc63596

Please sign in to comment.