aws-sdk-connectcases 1.4.0 → 1.5.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 +4 -4
- data/lib/aws-sdk-connectcases.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bae60b651cdc5dbac606cb2f7fbe9f64bad4c008170ce5753978aa5b1aad2147
|
|
4
|
+
data.tar.gz: 91ca88b0d9cf9900f88f3d323536059d178b059bec9ee8d3389eda31a0c67940
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1dd51fcf6cbcb6d80ffd5fe1f8f62b96d281e1285aa901dbd565cb5900a4291e79aebc70e709e7c866e2dab3e20ad8221eb114fb96d9b51765519f5254fad01b
|
|
7
|
+
data.tar.gz: 45def1a29db4dfe2021e365da7479a4079bfad7f41348a74901cf440fa23f8d6046ef3943835778a49f911691c90ca95413bca518ca4cf6fe00f35e36700d25c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.5.0 (2023-05-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds the ability to create fields with type Url through the CreateField API. For more information see https://docs.aws.amazon.com/cases/latest/APIReference/Welcome.html
|
|
8
|
+
|
|
4
9
|
1.4.0 (2023-02-24)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.5.0
|
|
@@ -407,7 +407,7 @@ module Aws::ConnectCases
|
|
|
407
407
|
# resp.fields[0].namespace #=> String, one of "System", "Custom"
|
|
408
408
|
# resp.fields[0].tags #=> Hash
|
|
409
409
|
# resp.fields[0].tags["String"] #=> String
|
|
410
|
-
# resp.fields[0].type #=> String, one of "Text", "Number", "Boolean", "DateTime", "SingleSelect"
|
|
410
|
+
# resp.fields[0].type #=> String, one of "Text", "Number", "Boolean", "DateTime", "SingleSelect", "Url"
|
|
411
411
|
#
|
|
412
412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/BatchGetField AWS API Documentation
|
|
413
413
|
#
|
|
@@ -607,7 +607,7 @@ module Aws::ConnectCases
|
|
|
607
607
|
# description: "FieldDescription",
|
|
608
608
|
# domain_id: "DomainId", # required
|
|
609
609
|
# name: "FieldName", # required
|
|
610
|
-
# type: "Text", # required, accepts Text, Number, Boolean, DateTime, SingleSelect
|
|
610
|
+
# type: "Text", # required, accepts Text, Number, Boolean, DateTime, SingleSelect, Url
|
|
611
611
|
# })
|
|
612
612
|
#
|
|
613
613
|
# @example Response structure
|
|
@@ -1253,7 +1253,7 @@ module Aws::ConnectCases
|
|
|
1253
1253
|
# resp.fields[0].field_id #=> String
|
|
1254
1254
|
# resp.fields[0].name #=> String
|
|
1255
1255
|
# resp.fields[0].namespace #=> String, one of "System", "Custom"
|
|
1256
|
-
# resp.fields[0].type #=> String, one of "Text", "Number", "Boolean", "DateTime", "SingleSelect"
|
|
1256
|
+
# resp.fields[0].type #=> String, one of "Text", "Number", "Boolean", "DateTime", "SingleSelect", "Url"
|
|
1257
1257
|
# resp.next_token #=> String
|
|
1258
1258
|
#
|
|
1259
1259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/ListFields AWS API Documentation
|
|
@@ -1934,7 +1934,7 @@ module Aws::ConnectCases
|
|
|
1934
1934
|
params: params,
|
|
1935
1935
|
config: config)
|
|
1936
1936
|
context[:gem_name] = 'aws-sdk-connectcases'
|
|
1937
|
-
context[:gem_version] = '1.
|
|
1937
|
+
context[:gem_version] = '1.5.0'
|
|
1938
1938
|
Seahorse::Client::Request.new(handlers, context)
|
|
1939
1939
|
end
|
|
1940
1940
|
|
data/lib/aws-sdk-connectcases.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-connectcases
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-05-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|