Skip to content

Commit 9a69c7f

Browse files
Update generated code (#1873)
update generated code
1 parent 518cd3b commit 9a69c7f

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: New options for how to handle harmful content detected by Amazon Bedrock Guardrails.
8+
59
## 1.0.0
610

711
First version

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"extra": {
2828
"branch-alias": {
29-
"dev-master": "1.0-dev"
29+
"dev-master": "1.1-dev"
3030
}
3131
}
3232
}

src/Enum/Trace.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ final class Trace
66
{
77
public const DISABLED = 'DISABLED';
88
public const ENABLED = 'ENABLED';
9+
public const ENABLED_FULL = 'ENABLED_FULL';
910

1011
public static function exists(string $value): bool
1112
{
1213
return isset([
1314
self::DISABLED => true,
1415
self::ENABLED => true,
16+
self::ENABLED_FULL => true,
1517
][$value]);
1618
}
1719
}

0 commit comments

Comments
 (0)