Skip to content

Commit

Permalink
Merge pull request #287 from vscheuber/main
Browse files Browse the repository at this point in the history
make expressionType param optional and update changelog
  • Loading branch information
vscheuber authored Jul 18, 2023
2 parents 31942ea + f2dd108 commit 6061acc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- \#272: Frodo now supports the `expressionType` property when creating ESV variables in Identity Cloud.

## [2.0.0-17] - 2023-07-18

## [2.0.0-16] - 2023-07-17
Expand Down
4 changes: 2 additions & 2 deletions src/ops/cloud/VariablesOps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export type Variable = {
variableId: string,
value: string,
description: string,
expressionType: VariableExpressionType
expressionType?: VariableExpressionType
): Promise<VariableSkeleton>;
/**
* Set variable description
Expand All @@ -65,7 +65,7 @@ export default (state: State): Variable => {
variableId: string,
value: string,
description: string,
expressionType: VariableExpressionType
expressionType: VariableExpressionType = 'string'
) {
return putVariable({
variableId,
Expand Down

0 comments on commit 6061acc

Please sign in to comment.