@aws-sdk/client-qbusiness 3.678.0 → 3.682.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.
- package/README.md +1 -1
- package/dist-cjs/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/commands/ChatCommand.d.ts +1 -0
- package/dist-types/commands/ChatSyncCommand.d.ts +1 -0
- package/dist-types/commands/ListMessagesCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +16 -16
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ Amazon Q Business</a>
|
|
|
48
48
|
|
|
49
49
|
## Installing
|
|
50
50
|
|
|
51
|
-
To install
|
|
51
|
+
To install this package, simply type add or install @aws-sdk/client-qbusiness
|
|
52
52
|
using your favorite package manager:
|
|
53
53
|
|
|
54
54
|
- `npm install @aws-sdk/client-qbusiness`
|
package/dist-cjs/index.js
CHANGED
|
@@ -3179,6 +3179,7 @@ var de_ActionReviewPayloadField = /* @__PURE__ */ __name((output, context) => {
|
|
|
3179
3179
|
return (0, import_smithy_client.take)(output, {
|
|
3180
3180
|
allowedFormat: import_smithy_client.expectString,
|
|
3181
3181
|
allowedValues: (_) => de_ActionReviewPayloadFieldAllowedValues(_, context),
|
|
3182
|
+
arrayItemJsonSchema: (_) => de_ActionReviewPayloadFieldArrayItemJsonSchema(_, context),
|
|
3182
3183
|
displayDescription: import_smithy_client.expectString,
|
|
3183
3184
|
displayName: import_smithy_client.expectString,
|
|
3184
3185
|
displayOrder: import_smithy_client.expectInt32,
|
|
@@ -3199,6 +3200,9 @@ var de_ActionReviewPayloadFieldAllowedValues = /* @__PURE__ */ __name((output, c
|
|
|
3199
3200
|
});
|
|
3200
3201
|
return retVal;
|
|
3201
3202
|
}, "de_ActionReviewPayloadFieldAllowedValues");
|
|
3203
|
+
var de_ActionReviewPayloadFieldArrayItemJsonSchema = /* @__PURE__ */ __name((output, context) => {
|
|
3204
|
+
return output;
|
|
3205
|
+
}, "de_ActionReviewPayloadFieldArrayItemJsonSchema");
|
|
3202
3206
|
var de_Application = /* @__PURE__ */ __name((output, context) => {
|
|
3203
3207
|
return (0, import_smithy_client.take)(output, {
|
|
3204
3208
|
applicationId: import_smithy_client.expectString,
|
|
@@ -2166,6 +2166,7 @@ const de_ActionReviewPayloadField = (output, context) => {
|
|
|
2166
2166
|
return take(output, {
|
|
2167
2167
|
allowedFormat: __expectString,
|
|
2168
2168
|
allowedValues: (_) => de_ActionReviewPayloadFieldAllowedValues(_, context),
|
|
2169
|
+
arrayItemJsonSchema: (_) => de_ActionReviewPayloadFieldArrayItemJsonSchema(_, context),
|
|
2169
2170
|
displayDescription: __expectString,
|
|
2170
2171
|
displayName: __expectString,
|
|
2171
2172
|
displayOrder: __expectInt32,
|
|
@@ -2188,6 +2189,9 @@ const de_ActionReviewPayloadFieldAllowedValues = (output, context) => {
|
|
|
2188
2189
|
});
|
|
2189
2190
|
return retVal;
|
|
2190
2191
|
};
|
|
2192
|
+
const de_ActionReviewPayloadFieldArrayItemJsonSchema = (output, context) => {
|
|
2193
|
+
return output;
|
|
2194
|
+
};
|
|
2191
2195
|
const de_Application = (output, context) => {
|
|
2192
2196
|
return take(output, {
|
|
2193
2197
|
applicationId: __expectString,
|
|
@@ -306,6 +306,12 @@ export interface ActionReviewPayloadField {
|
|
|
306
306
|
* @public
|
|
307
307
|
*/
|
|
308
308
|
allowedFormat?: string;
|
|
309
|
+
/**
|
|
310
|
+
* <p>Use to create a custom form with array fields (fields with nested objects inside an
|
|
311
|
+
* array). </p>
|
|
312
|
+
* @public
|
|
313
|
+
*/
|
|
314
|
+
arrayItemJsonSchema?: __DocumentType;
|
|
309
315
|
/**
|
|
310
316
|
* <p>Information about whether the field is required.</p>
|
|
311
317
|
* @public
|
|
@@ -104,6 +104,7 @@ export interface ActionReviewPayloadField {
|
|
|
104
104
|
value?: __DocumentType;
|
|
105
105
|
allowedValues?: ActionReviewPayloadFieldAllowedValue[];
|
|
106
106
|
allowedFormat?: string;
|
|
107
|
+
arrayItemJsonSchema?: __DocumentType;
|
|
107
108
|
required?: boolean;
|
|
108
109
|
}
|
|
109
110
|
export declare const PluginType: {
|
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.
|
|
4
|
+
"version": "3.682.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-qbusiness",
|
|
@@ -20,21 +20,21 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/eventstream-handler-node": "3.
|
|
28
|
-
"@aws-sdk/middleware-eventstream": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
33
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
34
|
-
"@aws-sdk/types": "3.
|
|
35
|
-
"@aws-sdk/util-endpoints": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
37
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.682.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.682.0",
|
|
25
|
+
"@aws-sdk/core": "3.679.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.682.0",
|
|
27
|
+
"@aws-sdk/eventstream-handler-node": "3.679.0",
|
|
28
|
+
"@aws-sdk/middleware-eventstream": "3.682.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.679.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.679.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.679.0",
|
|
32
|
+
"@aws-sdk/middleware-user-agent": "3.682.0",
|
|
33
|
+
"@aws-sdk/region-config-resolver": "3.679.0",
|
|
34
|
+
"@aws-sdk/types": "3.679.0",
|
|
35
|
+
"@aws-sdk/util-endpoints": "3.679.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-browser": "3.679.0",
|
|
37
|
+
"@aws-sdk/util-user-agent-node": "3.682.0",
|
|
38
38
|
"@smithy/config-resolver": "^3.0.9",
|
|
39
39
|
"@smithy/core": "^2.4.8",
|
|
40
40
|
"@smithy/eventstream-serde-browser": "^3.0.10",
|