From 06c5b864b96a55a52d6658b6526172bab11ef9e7 Mon Sep 17 00:00:00 2001 From: Antoine Boissinot Date: Fri, 6 Dec 2024 14:04:01 -0500 Subject: [PATCH 1/2] feat(statement-groups): add conditionDetailed property --- .../Pipelines/StatementGroups/StatementGroupsInterfaces.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/resources/Pipelines/StatementGroups/StatementGroupsInterfaces.ts b/src/resources/Pipelines/StatementGroups/StatementGroupsInterfaces.ts index 379bfbe5e..a659ed97d 100644 --- a/src/resources/Pipelines/StatementGroups/StatementGroupsInterfaces.ts +++ b/src/resources/Pipelines/StatementGroups/StatementGroupsInterfaces.ts @@ -44,7 +44,11 @@ interface StatementGroupModelBase { * The definition of the condition that must be satisfied for a request to be processed by the statement group. */ conditionDefinition?: string; - + /** + * A structured representation of the condition + */ + // eslint-disable-next-line @typescript-eslint/no-explicit-any + conditionDetailed?: any; /** * Date of creation * Format: ISO-8601 From e035dfbaaf421559bd83d12c1b134c2461096564 Mon Sep 17 00:00:00 2001 From: Antoine Boissinot Date: Tue, 10 Dec 2024 09:15:12 -0500 Subject: [PATCH 2/2] feat(statement-groups): adjust type --- .../Pipelines/StatementGroups/StatementGroupsInterfaces.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/resources/Pipelines/StatementGroups/StatementGroupsInterfaces.ts b/src/resources/Pipelines/StatementGroups/StatementGroupsInterfaces.ts index a659ed97d..d4c61ef84 100644 --- a/src/resources/Pipelines/StatementGroups/StatementGroupsInterfaces.ts +++ b/src/resources/Pipelines/StatementGroups/StatementGroupsInterfaces.ts @@ -47,8 +47,7 @@ interface StatementGroupModelBase { /** * A structured representation of the condition */ - // eslint-disable-next-line @typescript-eslint/no-explicit-any - conditionDetailed?: any; + conditionDetailed?: unknown; /** * Date of creation * Format: ISO-8601