Skip to content

Commit

Permalink
2.6.0 release
Browse files Browse the repository at this point in the history
Adding changes to support the new global resiliency feature.
  • Loading branch information
hngan authored Aug 10, 2023
1 parent 7332583 commit 92034d8
Show file tree
Hide file tree
Showing 21 changed files with 48,277 additions and 43,857 deletions.
362 changes: 362 additions & 0 deletions Documentation-DR.md

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions Documentation.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Amazon Connect Streams Documentation
(c) 2018-2020 Amazon.com, Inc. All rights reserved.

## Global Resiliency
For details on using Amazon Connect Streams with the Connect Global Resiliency feature, please first refer to the specific documentation [here](Documentation-DR.md).

### A note on "Routability"
Note that routability in streams is only affected by agent statuses. Voice contacts will change the agent status, and thus can affect routability. Task and chat contacts do not affect routability. However, if the other channels hit their concurrent live contact limit(s), the agent will not be routed more contacts, but they will technically be in a routable agent state.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "amazon-connect-streams",
"version": "2.5.1",
"version": "2.6.0",
"description": "Amazon Connect Streams Library",
"engines": {
"node": ">=12.0.0"
Expand All @@ -25,9 +25,11 @@
"connect"
],
"scripts": {
"release": "npm run build-streams && npm run test-mocha",
"release": "npm run build-streams && npm run build-streams-dr && npm run test-mocha && npm run test-mocha-dr",
"build-streams": "webpack --config ./webpack/connect-streams.config.js && webpack --config ./webpack/connect-streams-min.config.js",
"test-mocha": "nyc mocha \"test/unit/**/*.spec.js\" --exit",
"build-streams-dr": "webpack --config ./webpack/connect-streams-dr.config.js && webpack --config ./webpack/connect-streams-dr-min.config.js",
"test-mocha": "nyc mocha \"test/unit/**/*.spec.js\" --ignore \"test/unit/drCoordinator/**\" --exit",
"test-mocha-dr": "nyc mocha \"test/unit/drCoordinator/*.spec.js\" --exit",
"clean": "rm -rf build/ node_modules build package-lock.json"
},
"author": "Amazon Web Services",
Expand Down
1 change: 1 addition & 0 deletions release/connect-streams-dr-min.js

Large diffs are not rendered by default.

1,822 changes: 1,822 additions & 0 deletions release/connect-streams-dr.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion release/connect-streams-min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 92034d8

Please sign in to comment.