aws-sdk-connectcampaignsv2 1.24.0 → 1.25.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 96483d7fb2a146561c20c579f29012e5d3069803ecf1ff34ca1f4e41b5c4c6f7
4
- data.tar.gz: d3856247855bd807bc7818a4b2ce1488bc2cb4c35ca443e1e1698f400307a3c0
3
+ metadata.gz: c92141d6a46255b0659ddeb3ddae663183db17cdb0a8e22da7c3c52bb13ef8ad
4
+ data.tar.gz: 756f566c5f20549fc4088d8c06bfcd1d83dcaf7020f02b2b701024f9c45ccc1f
5
5
  SHA512:
6
- metadata.gz: 71b65706c9ea9de4e8b01d04dfe57650c4503b952a562d1c8b1be2f9d69493f3be786195e40b69cac1cf1a01305b21068fe0a9ea88ae829f14dfa39a53dd6cef
7
- data.tar.gz: 5eb461cd59ca202d2fde91aa18c71a6fbfaeb7e8c4924ffe607589dad0a861dced7cfa32a357ae9dbc1e5360a2b7e68bf2c7c7e9aa99746782a47df10c0d08bc
6
+ metadata.gz: 3eb5b8f952e264162d2cfe4fd33a09e0a3f5adcfa7292fb24f3de5fe09f067f89b2d0ae9f447cf8e65730aeb94317e62e50d3d06cbd3ce61312b7d09d8defaa2
7
+ data.tar.gz: e90690548ed1a720375d6993f828a0643f606893faebf2819b3d08cf8037a71ffd49800e1568fcd85f928e0e618e5bcf164952237f56253a8cee5c7e2c7aaf34
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2026-05-13)
5
+ ------------------
6
+
7
+ * Feature - This release added support for Outbound Campaign timezone detection using all available contact methods
8
+
4
9
  1.24.0 (2026-04-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.25.0
@@ -610,6 +610,7 @@ module Aws::ConnectCampaignsV2
610
610
  # local_time_zone_config: { # required
611
611
  # default_time_zone: "TimeZone",
612
612
  # local_time_zone_detection: ["ZIP_CODE"], # accepts ZIP_CODE, AREA_CODE
613
+ # local_time_zone_detection_scope: "PRIMARY_ONLY", # accepts PRIMARY_ONLY, ALL_AVAILABLE
613
614
  # },
614
615
  # telephony: {
615
616
  # open_hours: { # required
@@ -997,6 +998,7 @@ module Aws::ConnectCampaignsV2
997
998
  # resp.campaign.communication_time_config.local_time_zone_config.default_time_zone #=> String
998
999
  # resp.campaign.communication_time_config.local_time_zone_config.local_time_zone_detection #=> Array
999
1000
  # resp.campaign.communication_time_config.local_time_zone_config.local_time_zone_detection[0] #=> String, one of "ZIP_CODE", "AREA_CODE"
1001
+ # resp.campaign.communication_time_config.local_time_zone_config.local_time_zone_detection_scope #=> String, one of "PRIMARY_ONLY", "ALL_AVAILABLE"
1000
1002
  # resp.campaign.communication_time_config.telephony.open_hours.daily_hours #=> Hash
1001
1003
  # resp.campaign.communication_time_config.telephony.open_hours.daily_hours["DayOfWeek"] #=> Array
1002
1004
  # resp.campaign.communication_time_config.telephony.open_hours.daily_hours["DayOfWeek"][0].start_time #=> String
@@ -1872,6 +1874,7 @@ module Aws::ConnectCampaignsV2
1872
1874
  # local_time_zone_config: { # required
1873
1875
  # default_time_zone: "TimeZone",
1874
1876
  # local_time_zone_detection: ["ZIP_CODE"], # accepts ZIP_CODE, AREA_CODE
1877
+ # local_time_zone_detection_scope: "PRIMARY_ONLY", # accepts PRIMARY_ONLY, ALL_AVAILABLE
1875
1878
  # },
1876
1879
  # telephony: {
1877
1880
  # open_hours: { # required
@@ -2131,7 +2134,7 @@ module Aws::ConnectCampaignsV2
2131
2134
  tracer: tracer
2132
2135
  )
2133
2136
  context[:gem_name] = 'aws-sdk-connectcampaignsv2'
2134
- context[:gem_version] = '1.24.0'
2137
+ context[:gem_version] = '1.25.0'
2135
2138
  Seahorse::Client::Request.new(handlers, context)
2136
2139
  end
2137
2140
 
@@ -136,6 +136,7 @@ module Aws::ConnectCampaignsV2
136
136
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
137
137
  LocalTimeZoneConfig = Shapes::StructureShape.new(name: 'LocalTimeZoneConfig')
138
138
  LocalTimeZoneDetection = Shapes::ListShape.new(name: 'LocalTimeZoneDetection')
139
+ LocalTimeZoneDetectionScope = Shapes::StringShape.new(name: 'LocalTimeZoneDetectionScope')
139
140
  LocalTimeZoneDetectionType = Shapes::StringShape.new(name: 'LocalTimeZoneDetectionType')
140
141
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
141
142
  NextToken = Shapes::StringShape.new(name: 'NextToken')
@@ -568,6 +569,7 @@ module Aws::ConnectCampaignsV2
568
569
 
569
570
  LocalTimeZoneConfig.add_member(:default_time_zone, Shapes::ShapeRef.new(shape: TimeZone, location_name: "defaultTimeZone"))
570
571
  LocalTimeZoneConfig.add_member(:local_time_zone_detection, Shapes::ShapeRef.new(shape: LocalTimeZoneDetection, location_name: "localTimeZoneDetection"))
572
+ LocalTimeZoneConfig.add_member(:local_time_zone_detection_scope, Shapes::ShapeRef.new(shape: LocalTimeZoneDetectionScope, location_name: "localTimeZoneDetectionScope"))
571
573
  LocalTimeZoneConfig.struct_class = Types::LocalTimeZoneConfig
572
574
 
573
575
  LocalTimeZoneDetection.member = Shapes::ShapeRef.new(shape: LocalTimeZoneDetectionType)
@@ -1489,11 +1489,16 @@ module Aws::ConnectCampaignsV2
1489
1489
  # Local TimeZone Detection method list
1490
1490
  # @return [Array<String>]
1491
1491
  #
1492
+ # @!attribute [rw] local_time_zone_detection_scope
1493
+ # Local TimeZone Detection scope.
1494
+ # @return [String]
1495
+ #
1492
1496
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaignsv2-2024-04-23/LocalTimeZoneConfig AWS API Documentation
1493
1497
  #
1494
1498
  class LocalTimeZoneConfig < Struct.new(
1495
1499
  :default_time_zone,
1496
- :local_time_zone_detection)
1500
+ :local_time_zone_detection,
1501
+ :local_time_zone_detection_scope)
1497
1502
  SENSITIVE = []
1498
1503
  include Aws::Structure
1499
1504
  end
@@ -54,7 +54,7 @@ module Aws::ConnectCampaignsV2
54
54
  autoload :EndpointProvider, 'aws-sdk-connectcampaignsv2/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connectcampaignsv2/endpoints'
56
56
 
57
- GEM_VERSION = '1.24.0'
57
+ GEM_VERSION = '1.25.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -174,7 +174,8 @@ module Aws
174
174
  ?communication_time_config: {
175
175
  local_time_zone_config: {
176
176
  default_time_zone: ::String?,
177
- local_time_zone_detection: Array[("ZIP_CODE" | "AREA_CODE")]?
177
+ local_time_zone_detection: Array[("ZIP_CODE" | "AREA_CODE")]?,
178
+ local_time_zone_detection_scope: ("PRIMARY_ONLY" | "ALL_AVAILABLE")?
178
179
  },
179
180
  telephony: {
180
181
  open_hours: {
@@ -683,7 +684,8 @@ module Aws
683
684
  communication_time_config: {
684
685
  local_time_zone_config: {
685
686
  default_time_zone: ::String?,
686
- local_time_zone_detection: Array[("ZIP_CODE" | "AREA_CODE")]?
687
+ local_time_zone_detection: Array[("ZIP_CODE" | "AREA_CODE")]?,
688
+ local_time_zone_detection_scope: ("PRIMARY_ONLY" | "ALL_AVAILABLE")?
687
689
  },
688
690
  telephony: {
689
691
  open_hours: {
data/sig/types.rbs CHANGED
@@ -490,6 +490,7 @@ module Aws::ConnectCampaignsV2
490
490
  class LocalTimeZoneConfig
491
491
  attr_accessor default_time_zone: ::String
492
492
  attr_accessor local_time_zone_detection: ::Array[("ZIP_CODE" | "AREA_CODE")]
493
+ attr_accessor local_time_zone_detection_scope: ("PRIMARY_ONLY" | "ALL_AVAILABLE")
493
494
  SENSITIVE: []
494
495
  end
495
496
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectcampaignsv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.0
4
+ version: 1.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.244.0
21
+ version: 3.247.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.244.0
31
+ version: 3.247.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement