aws-sdk-connectcases 1.61.0 → 1.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connectcases/client.rb +2 -3
- data/lib/aws-sdk-connectcases/types.rb +3 -2
- data/lib/aws-sdk-connectcases.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87d5268eb7b9429e81e49ed3db29158d03eef3ba6b161d48f9a30ad59ffd246e
|
|
4
|
+
data.tar.gz: 0a2d2f64a73406d6e8fae5cf6d13c34b1926317b540f2abbeb8df533e05ebe89
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 61b902965d477f5a55d3407166f4fefb042f3c5c8cb1571f4de8e31d6a0ba6556c175906b1623601d58b927acc6a7ab386f6b248905a6d31717f1f0402a013e9
|
|
7
|
+
data.tar.gz: 5a6c83f1b4745ec727ba45190b3151255410ff2f11b9f2abb08e18eb62bc98db481219b070ac27ee29d61076c6d218a5b09b496a4a2c2d62c4ea9571843ecdaa
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.62.0 (2026-02-23)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - SearchCases API can now accept 25 fields in the request and response as opposed to the previous limit of 10. DeleteField's hard limit of 100 fields per domain has been lifted.
|
|
8
|
+
|
|
4
9
|
1.61.0 (2026-02-04)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.62.0
|
|
@@ -1432,8 +1432,7 @@ module Aws::ConnectCases
|
|
|
1432
1432
|
req.send_request(options)
|
|
1433
1433
|
end
|
|
1434
1434
|
|
|
1435
|
-
# Deletes a field from a cases template.
|
|
1436
|
-
# per domain.
|
|
1435
|
+
# Deletes a field from a cases template.
|
|
1437
1436
|
#
|
|
1438
1437
|
# After a field is deleted:
|
|
1439
1438
|
#
|
|
@@ -3455,7 +3454,7 @@ module Aws::ConnectCases
|
|
|
3455
3454
|
tracer: tracer
|
|
3456
3455
|
)
|
|
3457
3456
|
context[:gem_name] = 'aws-sdk-connectcases'
|
|
3458
|
-
context[:gem_version] = '1.
|
|
3457
|
+
context[:gem_version] = '1.62.0'
|
|
3459
3458
|
Seahorse::Client::Request.new(handlers, context)
|
|
3460
3459
|
end
|
|
3461
3460
|
|
|
@@ -1663,8 +1663,9 @@ module Aws::ConnectCases
|
|
|
1663
1663
|
|
|
1664
1664
|
# Object to store union of Field values.
|
|
1665
1665
|
#
|
|
1666
|
-
# <note markdown="1"> The `Summary` system field accepts 3000 characters while all
|
|
1667
|
-
# fields accept
|
|
1666
|
+
# <note markdown="1"> The `Summary` system field accepts up to 3000 characters, while all
|
|
1667
|
+
# other fields accept up to 4100 characters. If you use multi-byte
|
|
1668
|
+
# characters, the effective character limit may be lower.
|
|
1668
1669
|
#
|
|
1669
1670
|
# </note>
|
|
1670
1671
|
#
|
data/lib/aws-sdk-connectcases.rb
CHANGED