aws-sdk-connectparticipant 1.38.0 → 1.39.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f0bc10a3e506cffa32b2b5a346269d7686a98dc36f77575e6b83e7bee5f391d
4
- data.tar.gz: dddf39cbbd82a07d599b12185c8fff2b7b63bf6215aeb37f58ed4da676ff5191
3
+ metadata.gz: d7cf07c4d1b3dd883973f52484d9eeaef69c707a9a1e9db18a79bd7d209c1e2c
4
+ data.tar.gz: 46da6a270b0deb4641502546ff32d5e27d1a29f8ff9ad3162a58e27c2e7a1da0
5
5
  SHA512:
6
- metadata.gz: 2c5af23cb72af9ed2588422fa9ef73a5b5c51b11cfd0119ef02899e7611c063e4c5df900f7257e9f1c641fc4419f619f2bccf1cac840a6cb2e12c9b5743c24a3
7
- data.tar.gz: 7e1a0f4aa6cbd8b9a4bdf1ae2df2856c6666697a9ec5bd36dbdb49dc93b03fd9225ba13ad9056abe82b0b423693e1fb22d84083883ff8e4f5f3fae4e2ad3bac7
6
+ metadata.gz: e923ee2ec518389fe34669e5a42fd9be64c7f960cac9b5d63eb6954d7534a92b397e359dd0c97a8b6b64a86e35534996f8d43386ee996cfb96ef55cb8d666139
7
+ data.tar.gz: f61349daf973b158996a0cfbe4ae3a80f1e9711def4f4687720336fdc01f2c8c936dd17c7a45870ec39d1ee39fbc56b6fbad1154cb93b38591f769dfedb5bf92
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.39.0 (2024-01-12)
5
+ ------------------
6
+
7
+ * Feature - Introduce new Supervisor participant role
8
+
4
9
  1.38.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.39.0
@@ -752,7 +752,7 @@ module Aws::ConnectParticipant
752
752
  # resp.transcript[0].type #=> String, one of "TYPING", "PARTICIPANT_JOINED", "PARTICIPANT_LEFT", "CHAT_ENDED", "TRANSFER_SUCCEEDED", "TRANSFER_FAILED", "MESSAGE", "EVENT", "ATTACHMENT", "CONNECTION_ACK", "MESSAGE_DELIVERED", "MESSAGE_READ"
753
753
  # resp.transcript[0].participant_id #=> String
754
754
  # resp.transcript[0].display_name #=> String
755
- # resp.transcript[0].participant_role #=> String, one of "AGENT", "CUSTOMER", "SYSTEM", "CUSTOM_BOT"
755
+ # resp.transcript[0].participant_role #=> String, one of "AGENT", "CUSTOMER", "SYSTEM", "CUSTOM_BOT", "SUPERVISOR"
756
756
  # resp.transcript[0].attachments #=> Array
757
757
  # resp.transcript[0].attachments[0].content_type #=> String
758
758
  # resp.transcript[0].attachments[0].attachment_id #=> String
@@ -1022,7 +1022,7 @@ module Aws::ConnectParticipant
1022
1022
  params: params,
1023
1023
  config: config)
1024
1024
  context[:gem_name] = 'aws-sdk-connectparticipant'
1025
- context[:gem_version] = '1.38.0'
1025
+ context[:gem_version] = '1.39.0'
1026
1026
  Seahorse::Client::Request.new(handlers, context)
1027
1027
  end
1028
1028
 
@@ -387,6 +387,7 @@ module Aws::ConnectParticipant
387
387
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
388
388
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
389
389
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
390
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
390
391
  end)
391
392
 
392
393
  api.add_operation(:send_message, Seahorse::Model::Operation.new.tap do |o|
@@ -32,8 +32,8 @@ module Aws::ConnectParticipant
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
37
37
  return Aws::Endpoints::Endpoint.new(url: "https://participant.connect.#{region}.amazonaws.com", headers: {}, properties: {})
38
38
  end
39
39
  return Aws::Endpoints::Endpoint.new(url: "https://participant.connect-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connectparticipant/customizations'
52
52
  # @!group service
53
53
  module Aws::ConnectParticipant
54
54
 
55
- GEM_VERSION = '1.38.0'
55
+ GEM_VERSION = '1.39.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectparticipant
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.39.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -72,7 +72,7 @@ licenses:
72
72
  metadata:
73
73
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connectparticipant
74
74
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connectparticipant/CHANGELOG.md
75
- post_install_message:
75
+ post_install_message:
76
76
  rdoc_options: []
77
77
  require_paths:
78
78
  - lib
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
90
+ rubygems_version: 3.4.10
91
+ signing_key:
92
92
  specification_version: 4
93
93
  summary: AWS SDK for Ruby - Amazon Connect Participant
94
94
  test_files: []