Skip to content

Commit

Permalink
docs(en): add description for stringLikeIfExists
Browse files Browse the repository at this point in the history
  • Loading branch information
roggervalf committed Jul 26, 2021
1 parent 8ccd03b commit 0cf4a8f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@

### Features

* **date:** add maching before a specific date and time operator (dateLessThan) ([3c6a7fe](https://github.com/roggervalf/iam-policies/commit/3c6a7fedabee69162ad84069f903c5075929fead))
* **date:** add matching before a specific date and time operator (dateLessThan) ([3c6a7fe](https://github.com/roggervalf/iam-policies/commit/3c6a7fedabee69162ad84069f903c5075929fead))
* **date:** add matching at or before a specific date and time (dateLessThanEquals) ([e359440](https://github.com/roggervalf/iam-policies/commit/e3594409c1e7045d83586a8dd0458070b9f60e50))

# [4.9.0](https://github.com/roggervalf/iam-policies/compare/v4.8.2...v4.9.0) (2021-05-06)


### Features

* **date:** add negated date maching condition operator ([6081df9](https://github.com/roggervalf/iam-policies/commit/6081df9d83fba84599251914ece843f5a5ddd3a8))
* **date:** add negated date matching condition operator ([6081df9](https://github.com/roggervalf/iam-policies/commit/6081df9d83fba84599251914ece843f5a5ddd3a8))

## [4.8.2](https://github.com/roggervalf/iam-policies/compare/v4.8.1...v4.8.2) (2021-04-11)

Expand Down Expand Up @@ -148,7 +148,7 @@

### BREAKING CHANGES

* new way to contruct Policies instances with a json
* new way to construct Policies instances with a json

# [3.5.0](https://github.com/roggervalf/iam-policies/compare/v3.4.1...v3.5.0) (2020-10-11)

Expand Down
15 changes: 8 additions & 7 deletions www/src/docs/en.md
Original file line number Diff line number Diff line change
Expand Up @@ -733,13 +733,14 @@ Numeric condition operators let you construct **condition** elements that restri

String condition operators let you construct **condition** elements that restrict access based on comparing a key to a string value.

| Name | First Parameter | Expected Parameter | Description |
| --------------------------- | --------------- | ------------------ | -------------------------------------------------------------------------------------------------------------- |
| `stringEquals` | string | string | Exact matching, case sensitive. |
| `stringNotEquals` | string | string | Negated matching. |
| `stringEqualsIgnoreCase` | string | string | Exact matching, ignoring case. |
| `stringNotEqualsIgnoreCase` | string | string | Negated matching, ignoring case. |
| `stringLike` | string | string | Case-sensitive matching. The values can include a multi-character match wildcard (`*`) anywhere in the string. |
| Name | First Parameter | Expected Parameter | Description |
| --------------------------- | --------------- | ------------------ | ------------------------------------------------------------------------------------------------------------------------ |
| `stringEquals` | string | string | Exact matching, case sensitive. |
| `stringNotEquals` | string | string | Negated matching. |
| `stringEqualsIgnoreCase` | string | string | Exact matching, ignoring case. |
| `stringNotEqualsIgnoreCase` | string | string | Negated matching, ignoring case. |
| `stringLike` | string | string | Case-sensitive matching. The values can include a multi-character match wildcard (`*`) anywhere in the string. |
| `stringLikeIfExists` | string | string | Case-sensitive matching if exists. The values can include a multi-character match wildcard (`*`) anywhere in the string. |

## getValueFromPath(data, path) Function

Expand Down

0 comments on commit 0cf4a8f

Please sign in to comment.