Skip to content

Commit

Permalink
Update API Client
Browse files Browse the repository at this point in the history
#### What's Changed
---

##### `GET` /flows/bindings/{fsb_uuid}/

###### Return Type:

Changed response : **200 OK**

* Changed content type : `application/json`

    * Changed property `re_evaluate_policies` (boolean)
        > Evaluate policies when the Stage is presented to the user.

##### `PUT` /flows/bindings/{fsb_uuid}/

###### Request:

Changed content type : `application/json`

* Changed property `re_evaluate_policies` (boolean)
    > Evaluate policies when the Stage is presented to the user.

###### Return Type:

Changed response : **200 OK**

* Changed content type : `application/json`

    * Changed property `re_evaluate_policies` (boolean)
        > Evaluate policies when the Stage is presented to the user.

##### `PATCH` /flows/bindings/{fsb_uuid}/

###### Request:

Changed content type : `application/json`

* Changed property `re_evaluate_policies` (boolean)
    > Evaluate policies when the Stage is presented to the user.

###### Return Type:

Changed response : **200 OK**

* Changed content type : `application/json`

    * Changed property `re_evaluate_policies` (boolean)
        > Evaluate policies when the Stage is presented to the user.

##### `POST` /flows/bindings/

###### Request:

Changed content type : `application/json`

* Changed property `re_evaluate_policies` (boolean)
    > Evaluate policies when the Stage is presented to the user.

###### Return Type:

Changed response : **201 Created**

* Changed content type : `application/json`

    * Changed property `re_evaluate_policies` (boolean)
        > Evaluate policies when the Stage is presented to the user.

##### `GET` /flows/bindings/

###### Return Type:

Changed response : **200 OK**

* Changed content type : `application/json`

    * Changed property `results` (array)

        Changed items (object):
            > FlowStageBinding Serializer

        * Changed property `re_evaluate_policies` (boolean)
            > Evaluate policies when the Stage is presented to the user.

##### `GET` /flows/inspector/{flow_slug}/

###### Return Type:

Changed response : **200 OK**

* Changed content type : `application/json`

    * Changed property `plans` (array)

        Changed items (object):
            > Serializer for an active FlowPlan

        * Changed property `next_planned_stage` (object)
            > FlowStageBinding Serializer

            * Changed property `re_evaluate_policies` (boolean)
                > Evaluate policies when the Stage is presented to the user.

        * Changed property `current_stage` (object)
            > FlowStageBinding Serializer

            * Changed property `re_evaluate_policies` (boolean)
                > Evaluate policies when the Stage is presented to the user.
  • Loading branch information
authentik-automation[bot] committed Dec 20, 2024
1 parent 7f6208d commit ac351a4
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "authentik-client"
version = "3.2024120.0"
version = "3.2024120.1"
authors = ["[email protected]"]
description = "Making authentication simple."
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion docs/FlowStageBinding.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Name | Type | Description | Notes
**stage** | [**uuid::Uuid**](uuid::Uuid.md) | |
**stage_obj** | [**models::Stage**](Stage.md) | | [readonly]
**evaluate_on_plan** | Option<**bool**> | Evaluate policies during the Flow planning process. | [optional]
**re_evaluate_policies** | Option<**bool**> | Evaluate policies when the Stage is present to the user. | [optional]
**re_evaluate_policies** | Option<**bool**> | Evaluate policies when the Stage is presented to the user. | [optional]
**order** | **i32** | |
**policy_engine_mode** | Option<[**models::PolicyEngineMode**](PolicyEngineMode.md)> | | [optional]
**invalid_response_action** | Option<[**models::InvalidResponseActionEnum**](InvalidResponseActionEnum.md)> | Configure how the flow executor should handle an invalid response to a challenge. RETRY returns the error message and a similar challenge to the executor. RESTART restarts the flow from the beginning, and RESTART_WITH_CONTEXT restarts the flow while keeping the current context. | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/FlowStageBindingRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
**target** | [**uuid::Uuid**](uuid::Uuid.md) | |
**stage** | [**uuid::Uuid**](uuid::Uuid.md) | |
**evaluate_on_plan** | Option<**bool**> | Evaluate policies during the Flow planning process. | [optional]
**re_evaluate_policies** | Option<**bool**> | Evaluate policies when the Stage is present to the user. | [optional]
**re_evaluate_policies** | Option<**bool**> | Evaluate policies when the Stage is presented to the user. | [optional]
**order** | **i32** | |
**policy_engine_mode** | Option<[**models::PolicyEngineMode**](PolicyEngineMode.md)> | | [optional]
**invalid_response_action** | Option<[**models::InvalidResponseActionEnum**](InvalidResponseActionEnum.md)> | Configure how the flow executor should handle an invalid response to a challenge. RETRY returns the error message and a similar challenge to the executor. RESTART restarts the flow from the beginning, and RESTART_WITH_CONTEXT restarts the flow while keeping the current context. | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/PatchedFlowStageBindingRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
**target** | Option<[**uuid::Uuid**](uuid::Uuid.md)> | | [optional]
**stage** | Option<[**uuid::Uuid**](uuid::Uuid.md)> | | [optional]
**evaluate_on_plan** | Option<**bool**> | Evaluate policies during the Flow planning process. | [optional]
**re_evaluate_policies** | Option<**bool**> | Evaluate policies when the Stage is present to the user. | [optional]
**re_evaluate_policies** | Option<**bool**> | Evaluate policies when the Stage is presented to the user. | [optional]
**order** | Option<**i32**> | | [optional]
**policy_engine_mode** | Option<[**models::PolicyEngineMode**](PolicyEngineMode.md)> | | [optional]
**invalid_response_action** | Option<[**models::InvalidResponseActionEnum**](InvalidResponseActionEnum.md)> | Configure how the flow executor should handle an invalid response to a challenge. RETRY returns the error message and a similar challenge to the executor. RESTART restarts the flow from the beginning, and RESTART_WITH_CONTEXT restarts the flow while keeping the current context. | [optional]
Expand Down
6 changes: 3 additions & 3 deletions schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42391,7 +42391,7 @@ components:
description: Evaluate policies during the Flow planning process.
re_evaluate_policies:
type: boolean
description: Evaluate policies when the Stage is present to the user.
description: Evaluate policies when the Stage is presented to the user.
order:
type: integer
maximum: 2147483647
Expand Down Expand Up @@ -42427,7 +42427,7 @@ components:
description: Evaluate policies during the Flow planning process.
re_evaluate_policies:
type: boolean
description: Evaluate policies when the Stage is present to the user.
description: Evaluate policies when the Stage is presented to the user.
order:
type: integer
maximum: 2147483647
Expand Down Expand Up @@ -48949,7 +48949,7 @@ components:
description: Evaluate policies during the Flow planning process.
re_evaluate_policies:
type: boolean
description: Evaluate policies when the Stage is present to the user.
description: Evaluate policies when the Stage is presented to the user.
order:
type: integer
maximum: 2147483647
Expand Down
2 changes: 1 addition & 1 deletion src/models/flow_stage_binding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub struct FlowStageBinding {
/// Evaluate policies during the Flow planning process.
#[serde(rename = "evaluate_on_plan", skip_serializing_if = "Option::is_none")]
pub evaluate_on_plan: Option<bool>,
/// Evaluate policies when the Stage is present to the user.
/// Evaluate policies when the Stage is presented to the user.
#[serde(rename = "re_evaluate_policies", skip_serializing_if = "Option::is_none")]
pub re_evaluate_policies: Option<bool>,
#[serde(rename = "order")]
Expand Down
2 changes: 1 addition & 1 deletion src/models/flow_stage_binding_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub struct FlowStageBindingRequest {
/// Evaluate policies during the Flow planning process.
#[serde(rename = "evaluate_on_plan", skip_serializing_if = "Option::is_none")]
pub evaluate_on_plan: Option<bool>,
/// Evaluate policies when the Stage is present to the user.
/// Evaluate policies when the Stage is presented to the user.
#[serde(rename = "re_evaluate_policies", skip_serializing_if = "Option::is_none")]
pub re_evaluate_policies: Option<bool>,
#[serde(rename = "order")]
Expand Down
2 changes: 1 addition & 1 deletion src/models/patched_flow_stage_binding_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub struct PatchedFlowStageBindingRequest {
/// Evaluate policies during the Flow planning process.
#[serde(rename = "evaluate_on_plan", skip_serializing_if = "Option::is_none")]
pub evaluate_on_plan: Option<bool>,
/// Evaluate policies when the Stage is present to the user.
/// Evaluate policies when the Stage is presented to the user.
#[serde(rename = "re_evaluate_policies", skip_serializing_if = "Option::is_none")]
pub re_evaluate_policies: Option<bool>,
#[serde(rename = "order", skip_serializing_if = "Option::is_none")]
Expand Down

0 comments on commit ac351a4

Please sign in to comment.