@aws-sdk/client-connect 3.999.0 → 3.1001.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.
@@ -1897,6 +1897,7 @@ const _RAep = "ReplicaAlias";
1897
1897
  const _RAu = "RuleArn";
1898
1898
  const _RAul = "RuleAction";
1899
1899
  const _RAule = "RuleActions";
1900
+ const _RB = "RequestedBy";
1900
1901
  const _RC = "RoutingCriteria";
1901
1902
  const _RCAS = "RealtimeContactAnalysisSegments";
1902
1903
  const _RCASe = "RealtimeContactAnalysisSegment";
@@ -2016,6 +2017,7 @@ const _RTTF = "RequiredTaskTemplateFields";
2016
2017
  const _RTe = "RehydrationType";
2017
2018
  const _RTef = "RefreshToken";
2018
2019
  const _RTefe = "ReferenceTypes";
2020
+ const _RTeq = "RequestedTime";
2019
2021
  const _RTes = "ResourceTypes";
2020
2022
  const _Ra = "Range";
2021
2023
  const _Re = "Recordings";
@@ -5318,8 +5320,8 @@ exports.EvaluationReviewConfiguration$ = [3, n0, _ERC,
5318
5320
  ];
5319
5321
  exports.EvaluationReviewMetadata$ = [3, n0, _ERM,
5320
5322
  0,
5321
- [_CTre, _CB, _RRC, _RIev],
5322
- [4, 0, () => EvaluationReviewRequestCommentList, 0], 3
5323
+ [_RRC, _RIev, _RTeq, _RB, _CTre, _CB],
5324
+ [() => EvaluationReviewRequestCommentList, 0, 4, 0, 4, 0], 1
5323
5325
  ];
5324
5326
  exports.EvaluationReviewNotificationRecipient$ = [3, n0, _ERNR,
5325
5327
  0,
@@ -1863,6 +1863,7 @@ const _RAep = "ReplicaAlias";
1863
1863
  const _RAu = "RuleArn";
1864
1864
  const _RAul = "RuleAction";
1865
1865
  const _RAule = "RuleActions";
1866
+ const _RB = "RequestedBy";
1866
1867
  const _RC = "RoutingCriteria";
1867
1868
  const _RCAS = "RealtimeContactAnalysisSegments";
1868
1869
  const _RCASe = "RealtimeContactAnalysisSegment";
@@ -1982,6 +1983,7 @@ const _RTTF = "RequiredTaskTemplateFields";
1982
1983
  const _RTe = "RehydrationType";
1983
1984
  const _RTef = "RefreshToken";
1984
1985
  const _RTefe = "ReferenceTypes";
1986
+ const _RTeq = "RequestedTime";
1985
1987
  const _RTes = "ResourceTypes";
1986
1988
  const _Ra = "Range";
1987
1989
  const _Re = "Recordings";
@@ -5284,8 +5286,8 @@ export var EvaluationReviewConfiguration$ = [3, n0, _ERC,
5284
5286
  ];
5285
5287
  export var EvaluationReviewMetadata$ = [3, n0, _ERM,
5286
5288
  0,
5287
- [_CTre, _CB, _RRC, _RIev],
5288
- [4, 0, () => EvaluationReviewRequestCommentList, 0], 3
5289
+ [_RRC, _RIev, _RTeq, _RB, _CTre, _CB],
5290
+ [() => EvaluationReviewRequestCommentList, 0, 4, 0, 4, 0], 1
5289
5291
  ];
5290
5292
  export var EvaluationReviewNotificationRecipient$ = [3, n0, _ERNR,
5291
5293
  0,
@@ -69,8 +69,10 @@ declare const DescribeContactEvaluationCommand_base: {
69
69
  * // },
70
70
  * // Review: { // EvaluationReviewMetadata
71
71
  * // ReviewId: "STRING_VALUE",
72
- * // CreatedTime: new Date("TIMESTAMP"), // required
73
- * // CreatedBy: "STRING_VALUE", // required
72
+ * // RequestedTime: new Date("TIMESTAMP"),
73
+ * // RequestedBy: "STRING_VALUE",
74
+ * // CreatedTime: new Date("TIMESTAMP"),
75
+ * // CreatedBy: "STRING_VALUE",
74
76
  * // ReviewRequestComments: [ // EvaluationReviewRequestCommentList // required
75
77
  * // { // EvaluationReviewRequestComment
76
78
  * // Comment: "STRING_VALUE",
@@ -48,8 +48,7 @@ declare const SearchContactEvaluationsCommand_base: {
48
48
  * <li>
49
49
  * <p>A Search operation, unlike a List operation, takes time to index changes to resource (create, update or
50
50
  * delete). If you don't see updated information for recently changed contact evaluations, try calling the API again
51
- * in a few seconds. Contact Evaluations may not be fully backfilled with historical data in all regions yet, however
52
- * all recently created Contact Evaluations should be available for search.</p>
51
+ * in a few seconds.</p>
53
52
  * </li>
54
53
  * </ul>
55
54
  * <p>
@@ -2075,12 +2075,12 @@ export interface EvaluationReviewRequestComment {
2075
2075
  */
2076
2076
  Comment?: string | undefined;
2077
2077
  /**
2078
- * <p>The timestamp when the review request comment was created.</p>
2078
+ * <p>The timestamp when the evaluation review request comment was created.</p>
2079
2079
  * @public
2080
2080
  */
2081
2081
  CreatedTime?: Date | undefined;
2082
2082
  /**
2083
- * <p>The user who created the review request comment.</p>
2083
+ * <p>The user who created the evaluation review request comment.</p>
2084
2084
  * @public
2085
2085
  */
2086
2086
  CreatedBy?: string | undefined;
@@ -2095,16 +2095,30 @@ export interface EvaluationReviewMetadata {
2095
2095
  * @public
2096
2096
  */
2097
2097
  ReviewId?: string | undefined;
2098
+ /**
2099
+ * <p>The timestamp when the evaluation review was requested.</p>
2100
+ * @public
2101
+ */
2102
+ RequestedTime?: Date | undefined;
2103
+ /**
2104
+ * <p>The user who requested the evaluation review.</p>
2105
+ * @public
2106
+ */
2107
+ RequestedBy?: string | undefined;
2098
2108
  /**
2099
2109
  * <p>The timestamp when the evaluation review was created.</p>
2110
+ *
2111
+ * @deprecated CreatedTime is deprecated.
2100
2112
  * @public
2101
2113
  */
2102
- CreatedTime: Date | undefined;
2114
+ CreatedTime?: Date | undefined;
2103
2115
  /**
2104
2116
  * <p>The user who created the evaluation review.</p>
2117
+ *
2118
+ * @deprecated CreatedBy is deprecated.
2105
2119
  * @public
2106
2120
  */
2107
- CreatedBy: string | undefined;
2121
+ CreatedBy?: string | undefined;
2108
2122
  /**
2109
2123
  * <p>Comments provided when requesting the evaluation review.</p>
2110
2124
  * @public
@@ -680,8 +680,10 @@ export interface EvaluationReviewRequestComment {
680
680
  }
681
681
  export interface EvaluationReviewMetadata {
682
682
  ReviewId?: string | undefined;
683
- CreatedTime: Date | undefined;
684
- CreatedBy: string | undefined;
683
+ RequestedTime?: Date | undefined;
684
+ RequestedBy?: string | undefined;
685
+ CreatedTime?: Date | undefined;
686
+ CreatedBy?: string | undefined;
685
687
  ReviewRequestComments: EvaluationReviewRequestComment[] | undefined;
686
688
  }
687
689
  export interface EvaluationScore {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connect",
3
3
  "description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
4
- "version": "3.999.0",
4
+ "version": "3.1001.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-connect",
@@ -21,38 +21,38 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.15",
25
- "@aws-sdk/credential-provider-node": "^3.972.14",
24
+ "@aws-sdk/core": "^3.973.16",
25
+ "@aws-sdk/credential-provider-node": "^3.972.15",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.6",
27
27
  "@aws-sdk/middleware-logger": "^3.972.6",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.6",
29
- "@aws-sdk/middleware-user-agent": "^3.972.15",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.16",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.6",
31
31
  "@aws-sdk/types": "^3.973.4",
32
32
  "@aws-sdk/util-endpoints": "^3.996.3",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.6",
34
- "@aws-sdk/util-user-agent-node": "^3.973.0",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.1",
35
35
  "@smithy/config-resolver": "^4.4.9",
36
- "@smithy/core": "^3.23.6",
37
- "@smithy/fetch-http-handler": "^5.3.11",
36
+ "@smithy/core": "^3.23.7",
37
+ "@smithy/fetch-http-handler": "^5.3.12",
38
38
  "@smithy/hash-node": "^4.2.10",
39
39
  "@smithy/invalid-dependency": "^4.2.10",
40
40
  "@smithy/middleware-content-length": "^4.2.10",
41
- "@smithy/middleware-endpoint": "^4.4.20",
42
- "@smithy/middleware-retry": "^4.4.37",
41
+ "@smithy/middleware-endpoint": "^4.4.21",
42
+ "@smithy/middleware-retry": "^4.4.38",
43
43
  "@smithy/middleware-serde": "^4.2.11",
44
44
  "@smithy/middleware-stack": "^4.2.10",
45
45
  "@smithy/node-config-provider": "^4.3.10",
46
- "@smithy/node-http-handler": "^4.4.12",
46
+ "@smithy/node-http-handler": "^4.4.13",
47
47
  "@smithy/protocol-http": "^5.3.10",
48
- "@smithy/smithy-client": "^4.12.0",
48
+ "@smithy/smithy-client": "^4.12.1",
49
49
  "@smithy/types": "^4.13.0",
50
50
  "@smithy/url-parser": "^4.2.10",
51
51
  "@smithy/util-base64": "^4.3.1",
52
52
  "@smithy/util-body-length-browser": "^4.2.1",
53
53
  "@smithy/util-body-length-node": "^4.2.2",
54
- "@smithy/util-defaults-mode-browser": "^4.3.36",
55
- "@smithy/util-defaults-mode-node": "^4.2.39",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.37",
55
+ "@smithy/util-defaults-mode-node": "^4.2.40",
56
56
  "@smithy/util-endpoints": "^3.3.1",
57
57
  "@smithy/util-middleware": "^4.2.10",
58
58
  "@smithy/util-retry": "^4.2.10",