@aws-sdk/client-qbusiness 3.1025.0 → 3.1027.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.
@@ -4406,7 +4406,7 @@ export interface MetadataEvent {
4406
4406
  * <p>The source documents used to generate the conversation response.</p>
4407
4407
  * @public
4408
4408
  */
4409
- sourceAttributions?: SourceAttribution[] | undefined;
4409
+ sourceAttributions?: (SourceAttribution | null)[] | undefined;
4410
4410
  /**
4411
4411
  * <p>The final text output message generated by the system.</p>
4412
4412
  * @public
@@ -4714,7 +4714,7 @@ export interface ChatSyncOutput {
4714
4714
  * <p>The source documents used to generate the conversation response.</p>
4715
4715
  * @public
4716
4716
  */
4717
- sourceAttributions?: SourceAttribution[] | undefined;
4717
+ sourceAttributions?: (SourceAttribution | null)[] | undefined;
4718
4718
  /**
4719
4719
  * <p>A list of files which failed to upload during chat.</p>
4720
4720
  * @public
@@ -6234,7 +6234,7 @@ export interface Message {
6234
6234
  * <p>The source documents used to generate Amazon Q Business web experience message.</p>
6235
6235
  * @public
6236
6236
  */
6237
- sourceAttribution?: SourceAttribution[] | undefined;
6237
+ sourceAttribution?: (SourceAttribution | null)[] | undefined;
6238
6238
  /**
6239
6239
  * <p>An output event that Amazon Q Business returns to an user who wants to perform a plugin action during a non-streaming chat conversation. It contains information about the selected action with a list of possible user input fields, some pre-populated by Amazon Q Business.</p>
6240
6240
  * @public
@@ -1346,7 +1346,7 @@ export interface MetadataEvent {
1346
1346
  conversationId?: string | undefined;
1347
1347
  userMessageId?: string | undefined;
1348
1348
  systemMessageId?: string | undefined;
1349
- sourceAttributions?: SourceAttribution[] | undefined;
1349
+ sourceAttributions?: (SourceAttribution | null)[] | undefined;
1350
1350
  finalTextMessage?: string | undefined;
1351
1351
  }
1352
1352
  export interface TextOutputEvent {
@@ -1462,7 +1462,7 @@ export interface ChatSyncOutput {
1462
1462
  userMessageId?: string | undefined;
1463
1463
  actionReview?: ActionReview | undefined;
1464
1464
  authChallengeRequest?: AuthChallengeRequest | undefined;
1465
- sourceAttributions?: SourceAttribution[] | undefined;
1465
+ sourceAttributions?: (SourceAttribution | null)[] | undefined;
1466
1466
  failedAttachments?: AttachmentOutput[] | undefined;
1467
1467
  }
1468
1468
  export interface CheckDocumentAccessRequest {
@@ -1875,7 +1875,7 @@ export interface Message {
1875
1875
  time?: Date | undefined;
1876
1876
  type?: MessageType | undefined;
1877
1877
  attachments?: AttachmentOutput[] | undefined;
1878
- sourceAttribution?: SourceAttribution[] | undefined;
1878
+ sourceAttribution?: (SourceAttribution | null)[] | undefined;
1879
1879
  actionReview?: ActionReview | undefined;
1880
1880
  actionExecution?: ActionExecution | undefined;
1881
1881
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-qbusiness",
3
3
  "description": "AWS SDK for JavaScript Qbusiness Client for Node.js, Browser and React Native",
4
- "version": "3.1025.0",
4
+ "version": "3.1027.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-qbusiness",
@@ -21,46 +21,46 @@
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.26",
25
- "@aws-sdk/credential-provider-node": "^3.972.29",
26
- "@aws-sdk/eventstream-handler-node": "^3.972.12",
27
- "@aws-sdk/middleware-eventstream": "^3.972.8",
28
- "@aws-sdk/middleware-host-header": "^3.972.8",
29
- "@aws-sdk/middleware-logger": "^3.972.8",
30
- "@aws-sdk/middleware-recursion-detection": "^3.972.9",
31
- "@aws-sdk/middleware-user-agent": "^3.972.28",
32
- "@aws-sdk/region-config-resolver": "^3.972.10",
33
- "@aws-sdk/types": "^3.973.6",
34
- "@aws-sdk/util-endpoints": "^3.996.5",
35
- "@aws-sdk/util-user-agent-browser": "^3.972.8",
36
- "@aws-sdk/util-user-agent-node": "^3.973.14",
37
- "@smithy/config-resolver": "^4.4.13",
38
- "@smithy/core": "^3.23.13",
39
- "@smithy/eventstream-serde-browser": "^4.2.12",
40
- "@smithy/eventstream-serde-config-resolver": "^4.3.12",
41
- "@smithy/eventstream-serde-node": "^4.2.12",
42
- "@smithy/fetch-http-handler": "^5.3.15",
43
- "@smithy/hash-node": "^4.2.12",
44
- "@smithy/invalid-dependency": "^4.2.12",
45
- "@smithy/middleware-content-length": "^4.2.12",
46
- "@smithy/middleware-endpoint": "^4.4.28",
47
- "@smithy/middleware-retry": "^4.4.46",
48
- "@smithy/middleware-serde": "^4.2.16",
49
- "@smithy/middleware-stack": "^4.2.12",
50
- "@smithy/node-config-provider": "^4.3.12",
51
- "@smithy/node-http-handler": "^4.5.1",
52
- "@smithy/protocol-http": "^5.3.12",
53
- "@smithy/smithy-client": "^4.12.8",
54
- "@smithy/types": "^4.13.1",
55
- "@smithy/url-parser": "^4.2.12",
24
+ "@aws-sdk/core": "^3.973.27",
25
+ "@aws-sdk/credential-provider-node": "^3.972.30",
26
+ "@aws-sdk/eventstream-handler-node": "^3.972.13",
27
+ "@aws-sdk/middleware-eventstream": "^3.972.9",
28
+ "@aws-sdk/middleware-host-header": "^3.972.9",
29
+ "@aws-sdk/middleware-logger": "^3.972.9",
30
+ "@aws-sdk/middleware-recursion-detection": "^3.972.10",
31
+ "@aws-sdk/middleware-user-agent": "^3.972.29",
32
+ "@aws-sdk/region-config-resolver": "^3.972.11",
33
+ "@aws-sdk/types": "^3.973.7",
34
+ "@aws-sdk/util-endpoints": "^3.996.6",
35
+ "@aws-sdk/util-user-agent-browser": "^3.972.9",
36
+ "@aws-sdk/util-user-agent-node": "^3.973.15",
37
+ "@smithy/config-resolver": "^4.4.14",
38
+ "@smithy/core": "^3.23.14",
39
+ "@smithy/eventstream-serde-browser": "^4.2.13",
40
+ "@smithy/eventstream-serde-config-resolver": "^4.3.13",
41
+ "@smithy/eventstream-serde-node": "^4.2.13",
42
+ "@smithy/fetch-http-handler": "^5.3.16",
43
+ "@smithy/hash-node": "^4.2.13",
44
+ "@smithy/invalid-dependency": "^4.2.13",
45
+ "@smithy/middleware-content-length": "^4.2.13",
46
+ "@smithy/middleware-endpoint": "^4.4.29",
47
+ "@smithy/middleware-retry": "^4.5.0",
48
+ "@smithy/middleware-serde": "^4.2.17",
49
+ "@smithy/middleware-stack": "^4.2.13",
50
+ "@smithy/node-config-provider": "^4.3.13",
51
+ "@smithy/node-http-handler": "^4.5.2",
52
+ "@smithy/protocol-http": "^5.3.13",
53
+ "@smithy/smithy-client": "^4.12.9",
54
+ "@smithy/types": "^4.14.0",
55
+ "@smithy/url-parser": "^4.2.13",
56
56
  "@smithy/util-base64": "^4.3.2",
57
57
  "@smithy/util-body-length-browser": "^4.2.2",
58
58
  "@smithy/util-body-length-node": "^4.2.3",
59
- "@smithy/util-defaults-mode-browser": "^4.3.44",
60
- "@smithy/util-defaults-mode-node": "^4.2.48",
61
- "@smithy/util-endpoints": "^3.3.3",
62
- "@smithy/util-middleware": "^4.2.12",
63
- "@smithy/util-retry": "^4.2.13",
59
+ "@smithy/util-defaults-mode-browser": "^4.3.45",
60
+ "@smithy/util-defaults-mode-node": "^4.2.49",
61
+ "@smithy/util-endpoints": "^3.3.4",
62
+ "@smithy/util-middleware": "^4.2.13",
63
+ "@smithy/util-retry": "^4.3.0",
64
64
  "@smithy/util-utf8": "^4.2.2",
65
65
  "tslib": "^2.6.2"
66
66
  },