@aws-sdk/client-qapps 3.702.0 → 3.705.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 +13 -14
- package/dist-cjs/models/models_0.js +11 -0
- package/dist-es/models/models_0.js +11 -0
- package/dist-types/QApps.d.ts +13 -14
- package/dist-types/QAppsClient.d.ts +13 -14
- package/dist-types/commands/AssociateLibraryItemReviewCommand.d.ts +8 -8
- package/dist-types/commands/AssociateQAppWithUserCommand.d.ts +6 -6
- package/dist-types/commands/BatchCreateCategoryCommand.d.ts +7 -5
- package/dist-types/commands/BatchDeleteCategoryCommand.d.ts +7 -5
- package/dist-types/commands/BatchUpdateCategoryCommand.d.ts +7 -5
- package/dist-types/commands/CreateLibraryItemCommand.d.ts +6 -6
- package/dist-types/commands/CreatePresignedUrlCommand.d.ts +6 -7
- package/dist-types/commands/CreateQAppCommand.d.ts +11 -10
- package/dist-types/commands/DeleteLibraryItemCommand.d.ts +6 -6
- package/dist-types/commands/DeleteQAppCommand.d.ts +4 -3
- package/dist-types/commands/DescribeQAppPermissionsCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateLibraryItemReviewCommand.d.ts +6 -6
- package/dist-types/commands/DisassociateQAppFromUserCommand.d.ts +3 -4
- package/dist-types/commands/ExportQAppSessionDataCommand.d.ts +6 -6
- package/dist-types/commands/GetLibraryItemCommand.d.ts +2 -2
- package/dist-types/commands/GetQAppCommand.d.ts +6 -4
- package/dist-types/commands/GetQAppSessionCommand.d.ts +15 -5
- package/dist-types/commands/GetQAppSessionMetadataCommand.d.ts +4 -4
- package/dist-types/commands/ImportDocumentCommand.d.ts +10 -11
- package/dist-types/commands/ListCategoriesCommand.d.ts +4 -3
- package/dist-types/commands/ListLibraryItemsCommand.d.ts +4 -3
- package/dist-types/commands/ListQAppSessionDataCommand.d.ts +4 -4
- package/dist-types/commands/ListQAppsCommand.d.ts +5 -5
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/dist-types/commands/PredictQAppCommand.d.ts +6 -6
- package/dist-types/commands/StartQAppSessionCommand.d.ts +8 -8
- package/dist-types/commands/StopQAppSessionCommand.d.ts +7 -7
- package/dist-types/commands/TagResourceCommand.d.ts +4 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateLibraryItemCommand.d.ts +4 -4
- package/dist-types/commands/UpdateLibraryItemMetadataCommand.d.ts +4 -4
- package/dist-types/commands/UpdateQAppCommand.d.ts +7 -5
- package/dist-types/commands/UpdateQAppPermissionsCommand.d.ts +2 -2
- package/dist-types/commands/UpdateQAppSessionCommand.d.ts +9 -9
- package/dist-types/commands/UpdateQAppSessionMetadataCommand.d.ts +6 -5
- package/dist-types/index.d.ts +13 -14
- package/dist-types/models/models_0.d.ts +108 -78
- package/dist-types/ts3.4/models/models_0.d.ts +13 -0
- package/package.json +1 -1
|
@@ -135,13 +135,11 @@ export interface FormInputCard {
|
|
|
135
135
|
*/
|
|
136
136
|
metadata: FormInputCardMetadata | undefined;
|
|
137
137
|
/**
|
|
138
|
-
* <p>The compute mode of the form input card.
|
|
139
|
-
*
|
|
140
|
-
*
|
|
141
|
-
* A compute mode of <code>
|
|
142
|
-
*
|
|
143
|
-
* A compute mode of <code>replace</code>code> shall overwrite
|
|
144
|
-
* the current value for each participant.</p>
|
|
138
|
+
* <p>The compute mode of the form input card. This property determines whether individual
|
|
139
|
+
* participants of a data collection session can submit multiple response or one response. A
|
|
140
|
+
* compute mode of <code>append</code> shall allow participants to submit the same form multiple
|
|
141
|
+
* times with different values. A compute mode of <code>replace</code>code> shall overwrite the
|
|
142
|
+
* current value for each participant.</p>
|
|
145
143
|
* @public
|
|
146
144
|
*/
|
|
147
145
|
computeMode?: InputCardComputeMode | undefined;
|
|
@@ -151,11 +149,22 @@ export interface FormInputCard {
|
|
|
151
149
|
* @enum
|
|
152
150
|
*/
|
|
153
151
|
export declare const PluginType: {
|
|
152
|
+
readonly ASANA: "ASANA";
|
|
153
|
+
readonly ATLASSIAN_CONFLUENCE: "ATLASSIAN_CONFLUENCE";
|
|
154
154
|
readonly CUSTOM: "CUSTOM";
|
|
155
|
+
readonly GOOGLE_CALENDAR: "GOOGLE_CALENDAR";
|
|
155
156
|
readonly JIRA: "JIRA";
|
|
157
|
+
readonly JIRA_CLOUD: "JIRA_CLOUD";
|
|
158
|
+
readonly MICROSOFT_EXCHANGE: "MICROSOFT_EXCHANGE";
|
|
159
|
+
readonly MICROSOFT_TEAMS: "MICROSOFT_TEAMS";
|
|
160
|
+
readonly PAGERDUTY_ADVANCE: "PAGERDUTY_ADVANCE";
|
|
156
161
|
readonly SALESFORCE: "SALESFORCE";
|
|
162
|
+
readonly SALESFORCE_CRM: "SALESFORCE_CRM";
|
|
163
|
+
readonly SERVICENOW_NOW_PLATFORM: "SERVICENOW_NOW_PLATFORM";
|
|
157
164
|
readonly SERVICE_NOW: "SERVICE_NOW";
|
|
165
|
+
readonly SMARTSHEET: "SMARTSHEET";
|
|
158
166
|
readonly ZENDESK: "ZENDESK";
|
|
167
|
+
readonly ZENDESK_SUITE: "ZENDESK_SUITE";
|
|
159
168
|
};
|
|
160
169
|
/**
|
|
161
170
|
* @public
|
|
@@ -201,6 +210,11 @@ export interface QPluginCard {
|
|
|
201
210
|
* @public
|
|
202
211
|
*/
|
|
203
212
|
pluginId: string | undefined;
|
|
213
|
+
/**
|
|
214
|
+
* <p>The action identifier of the action to be performed by the plugin card.</p>
|
|
215
|
+
* @public
|
|
216
|
+
*/
|
|
217
|
+
actionIdentifier?: string | undefined;
|
|
204
218
|
}
|
|
205
219
|
/**
|
|
206
220
|
* <p>The value of a document attribute. You can only provide one value for a document
|
|
@@ -247,9 +261,10 @@ export declare namespace DocumentAttributeValue {
|
|
|
247
261
|
}
|
|
248
262
|
/**
|
|
249
263
|
* <p>A date expressed as an ISO 8601 string.</p>
|
|
250
|
-
* <p>It's important for the time zone to be included in the <i>ISO 8601
|
|
251
|
-
*
|
|
252
|
-
* at 12:30PM (plus 10 seconds) in Central European Time.
|
|
264
|
+
* <p>It's important for the time zone to be included in the <i>ISO 8601
|
|
265
|
+
* date-time</i> format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601
|
|
266
|
+
* date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time.
|
|
267
|
+
* </p>
|
|
253
268
|
* @public
|
|
254
269
|
*/
|
|
255
270
|
interface DateValueMember {
|
|
@@ -343,9 +358,8 @@ export interface TextInputCard {
|
|
|
343
358
|
defaultValue?: string | undefined;
|
|
344
359
|
}
|
|
345
360
|
/**
|
|
346
|
-
* <p>Represents a file upload card. It can optionally
|
|
347
|
-
*
|
|
348
|
-
* default file. If not received, the user must provide the file
|
|
361
|
+
* <p>Represents a file upload card. It can optionally receive a <code>filename</code> and
|
|
362
|
+
* <code>fileId</code> to set a default file. If not received, the user must provide the file
|
|
349
363
|
* when the Q App runs.</p>
|
|
350
364
|
* @public
|
|
351
365
|
*/
|
|
@@ -407,13 +421,11 @@ export interface FormInputCardInput {
|
|
|
407
421
|
*/
|
|
408
422
|
metadata: FormInputCardMetadata | undefined;
|
|
409
423
|
/**
|
|
410
|
-
* <p>The compute mode of the form input card.
|
|
411
|
-
*
|
|
412
|
-
*
|
|
413
|
-
* A compute mode of <code>
|
|
414
|
-
*
|
|
415
|
-
* A compute mode of <code>replace</code>code> shall overwrite
|
|
416
|
-
* the current value for each participant.</p>
|
|
424
|
+
* <p>The compute mode of the form input card. This property determines whether individual
|
|
425
|
+
* participants of a data collection session can submit multiple response or one response. A
|
|
426
|
+
* compute mode of <code>append</code> shall allow participants to submit the same form multiple
|
|
427
|
+
* times with different values. A compute mode of <code>replace</code>code> shall overwrite the
|
|
428
|
+
* current value for each participant.</p>
|
|
417
429
|
* @public
|
|
418
430
|
*/
|
|
419
431
|
computeMode?: InputCardComputeMode | undefined;
|
|
@@ -448,6 +460,11 @@ export interface QPluginCardInput {
|
|
|
448
460
|
* @public
|
|
449
461
|
*/
|
|
450
462
|
pluginId: string | undefined;
|
|
463
|
+
/**
|
|
464
|
+
* <p>The action identifier of the action to be performed by the plugin card.</p>
|
|
465
|
+
* @public
|
|
466
|
+
*/
|
|
467
|
+
actionIdentifier?: string | undefined;
|
|
451
468
|
}
|
|
452
469
|
/**
|
|
453
470
|
* <p>The input shape for defining a text input card in an Amazon Q App.</p>
|
|
@@ -523,8 +540,8 @@ export interface AssociateLibraryItemReviewInput {
|
|
|
523
540
|
libraryItemId: string | undefined;
|
|
524
541
|
}
|
|
525
542
|
/**
|
|
526
|
-
* <p>The requested operation could not be completed due to a
|
|
527
|
-
*
|
|
543
|
+
* <p>The requested operation could not be completed due to a conflict with the current state of
|
|
544
|
+
* the resource.</p>
|
|
528
545
|
* @public
|
|
529
546
|
*/
|
|
530
547
|
export declare class ConflictException extends __BaseException {
|
|
@@ -586,8 +603,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
586
603
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
587
604
|
}
|
|
588
605
|
/**
|
|
589
|
-
* <p>The requested operation could not be completed because
|
|
590
|
-
*
|
|
606
|
+
* <p>The requested operation could not be completed because it would exceed the service's quota
|
|
607
|
+
* or limit.</p>
|
|
591
608
|
* @public
|
|
592
609
|
*/
|
|
593
610
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -619,8 +636,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
619
636
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
620
637
|
}
|
|
621
638
|
/**
|
|
622
|
-
* <p>The requested operation could not be completed because too many
|
|
623
|
-
*
|
|
639
|
+
* <p>The requested operation could not be completed because too many requests were sent at
|
|
640
|
+
* once. Wait a bit and try again later.</p>
|
|
624
641
|
* @public
|
|
625
642
|
*/
|
|
626
643
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -694,7 +711,8 @@ export interface AssociateQAppWithUserInput {
|
|
|
694
711
|
*/
|
|
695
712
|
export interface BatchCreateCategoryInputCategory {
|
|
696
713
|
/**
|
|
697
|
-
* <p>The unique identifier to be associated with a category. If you don't include a value, the
|
|
714
|
+
* <p>The unique identifier to be associated with a category. If you don't include a value, the
|
|
715
|
+
* category is automatically assigned a unique identifier.</p>
|
|
698
716
|
* @public
|
|
699
717
|
*/
|
|
700
718
|
id?: string | undefined;
|
|
@@ -704,7 +722,8 @@ export interface BatchCreateCategoryInputCategory {
|
|
|
704
722
|
*/
|
|
705
723
|
title: string | undefined;
|
|
706
724
|
/**
|
|
707
|
-
* <p>The color to be associated with a category. The color must be a hexadecimal value of
|
|
725
|
+
* <p>The color to be associated with a category. The color must be a hexadecimal value of
|
|
726
|
+
* either 3 or 6 digits.</p>
|
|
708
727
|
* @public
|
|
709
728
|
*/
|
|
710
729
|
color?: string | undefined;
|
|
@@ -740,7 +759,8 @@ export interface BatchDeleteCategoryInput {
|
|
|
740
759
|
categories: string[] | undefined;
|
|
741
760
|
}
|
|
742
761
|
/**
|
|
743
|
-
* <p>A label that web experience users associate with a library item. Web experience users use
|
|
762
|
+
* <p>A label that web experience users associate with a library item. Web experience users use
|
|
763
|
+
* Categories to tag and filter library items.</p>
|
|
744
764
|
* @public
|
|
745
765
|
*/
|
|
746
766
|
export interface CategoryInput {
|
|
@@ -755,7 +775,8 @@ export interface CategoryInput {
|
|
|
755
775
|
*/
|
|
756
776
|
title: string | undefined;
|
|
757
777
|
/**
|
|
758
|
-
* <p>The color of the category, represented as a hexadecimal value of either 3 or 6
|
|
778
|
+
* <p>The color of the category, represented as a hexadecimal value of either 3 or 6
|
|
779
|
+
* digits.</p>
|
|
759
780
|
* @public
|
|
760
781
|
*/
|
|
761
782
|
color?: string | undefined;
|
|
@@ -876,8 +897,8 @@ export interface CardValue {
|
|
|
876
897
|
*/
|
|
877
898
|
value: string | undefined;
|
|
878
899
|
/**
|
|
879
|
-
* <p>The structure that describes how the current form card value is mutated.
|
|
880
|
-
*
|
|
900
|
+
* <p>The structure that describes how the current form card value is mutated. Only applies for
|
|
901
|
+
* form cards when multiple responses are allowed.</p>
|
|
881
902
|
* @public
|
|
882
903
|
*/
|
|
883
904
|
submissionMutation?: SubmissionMutation | undefined;
|
|
@@ -909,8 +930,8 @@ export interface Category {
|
|
|
909
930
|
appCount?: number | undefined;
|
|
910
931
|
}
|
|
911
932
|
/**
|
|
912
|
-
* <p>The requested operation could not be completed because
|
|
913
|
-
*
|
|
933
|
+
* <p>The requested operation could not be completed because the content exceeds the maximum
|
|
934
|
+
* allowed size.</p>
|
|
914
935
|
* @public
|
|
915
936
|
*/
|
|
916
937
|
export declare class ContentTooLargeException extends __BaseException {
|
|
@@ -1071,12 +1092,14 @@ export interface CreatePresignedUrlInput {
|
|
|
1071
1092
|
*/
|
|
1072
1093
|
fileName: string | undefined;
|
|
1073
1094
|
/**
|
|
1074
|
-
* <p>Whether the file is associated with a Q App definition or a specific Q App
|
|
1095
|
+
* <p>Whether the file is associated with a Q App definition or a specific Q App
|
|
1096
|
+
* session.</p>
|
|
1075
1097
|
* @public
|
|
1076
1098
|
*/
|
|
1077
1099
|
scope: DocumentScope | undefined;
|
|
1078
1100
|
/**
|
|
1079
|
-
* <p>The unique identifier of the Q App session the file is associated with, if
|
|
1101
|
+
* <p>The unique identifier of the Q App session the file is associated with, if
|
|
1102
|
+
* applicable.</p>
|
|
1080
1103
|
* @public
|
|
1081
1104
|
*/
|
|
1082
1105
|
sessionId?: string | undefined;
|
|
@@ -1096,7 +1119,8 @@ export interface CreatePresignedUrlOutput {
|
|
|
1096
1119
|
*/
|
|
1097
1120
|
presignedUrl: string | undefined;
|
|
1098
1121
|
/**
|
|
1099
|
-
* <p>The form fields to include in the presigned S3 POST operation used to upload a
|
|
1122
|
+
* <p>The form fields to include in the presigned S3 POST operation used to upload a
|
|
1123
|
+
* file.</p>
|
|
1100
1124
|
* @public
|
|
1101
1125
|
*/
|
|
1102
1126
|
presignedUrlFields: Record<string, string> | undefined;
|
|
@@ -1166,7 +1190,8 @@ export interface CreateQAppOutput {
|
|
|
1166
1190
|
*/
|
|
1167
1191
|
updatedBy: string | undefined;
|
|
1168
1192
|
/**
|
|
1169
|
-
* <p>The capabilities required to run the Q App, such as file upload or third-party
|
|
1193
|
+
* <p>The capabilities required to run the Q App, such as file upload or third-party
|
|
1194
|
+
* integrations.</p>
|
|
1170
1195
|
* @public
|
|
1171
1196
|
*/
|
|
1172
1197
|
requiredCapabilities?: AppRequiredCapability[] | undefined;
|
|
@@ -1270,7 +1295,8 @@ export interface PermissionOutput {
|
|
|
1270
1295
|
*/
|
|
1271
1296
|
export interface DescribeQAppPermissionsOutput {
|
|
1272
1297
|
/**
|
|
1273
|
-
* <p>The Amazon Resource Name (ARN) of the Amazon Q App for which permissions are
|
|
1298
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Q App for which permissions are
|
|
1299
|
+
* returned.</p>
|
|
1274
1300
|
* @public
|
|
1275
1301
|
*/
|
|
1276
1302
|
resourceArn?: string | undefined;
|
|
@@ -1515,7 +1541,8 @@ export interface GetQAppSessionOutput {
|
|
|
1515
1541
|
*/
|
|
1516
1542
|
cardStatus: Record<string, CardStatus> | undefined;
|
|
1517
1543
|
/**
|
|
1518
|
-
* <p>Indicates whether the current user is the owner of the Q App data collection
|
|
1544
|
+
* <p>Indicates whether the current user is the owner of the Q App data collection
|
|
1545
|
+
* session.</p>
|
|
1519
1546
|
* @public
|
|
1520
1547
|
*/
|
|
1521
1548
|
userIsHost?: boolean | undefined;
|
|
@@ -1551,7 +1578,8 @@ export interface SessionSharingConfiguration {
|
|
|
1551
1578
|
*/
|
|
1552
1579
|
acceptResponses?: boolean | undefined;
|
|
1553
1580
|
/**
|
|
1554
|
-
* <p>Indicates whether collected responses for an Q App session are revealed for all
|
|
1581
|
+
* <p>Indicates whether collected responses for an Q App session are revealed for all
|
|
1582
|
+
* users.</p>
|
|
1555
1583
|
* @public
|
|
1556
1584
|
*/
|
|
1557
1585
|
revealCards?: boolean | undefined;
|
|
@@ -1616,12 +1644,14 @@ export interface ImportDocumentInput {
|
|
|
1616
1644
|
*/
|
|
1617
1645
|
fileName: string | undefined;
|
|
1618
1646
|
/**
|
|
1619
|
-
* <p>Whether the file is associated with a Q App definition or a specific Q App
|
|
1647
|
+
* <p>Whether the file is associated with a Q App definition or a specific Q App
|
|
1648
|
+
* session.</p>
|
|
1620
1649
|
* @public
|
|
1621
1650
|
*/
|
|
1622
1651
|
scope: DocumentScope | undefined;
|
|
1623
1652
|
/**
|
|
1624
|
-
* <p>The unique identifier of the Q App session the file is associated with, if
|
|
1653
|
+
* <p>The unique identifier of the Q App session the file is associated with, if
|
|
1654
|
+
* applicable.</p>
|
|
1625
1655
|
* @public
|
|
1626
1656
|
*/
|
|
1627
1657
|
sessionId?: string | undefined;
|
|
@@ -1637,9 +1667,8 @@ export interface ImportDocumentOutput {
|
|
|
1637
1667
|
fileId?: string | undefined;
|
|
1638
1668
|
}
|
|
1639
1669
|
/**
|
|
1640
|
-
* <p>A library item is a snapshot of an Amazon Q App
|
|
1641
|
-
*
|
|
1642
|
-
* can discover it, clone it, and run it.</p>
|
|
1670
|
+
* <p>A library item is a snapshot of an Amazon Q App that can be published so the users in their
|
|
1671
|
+
* Amazon Q Apps library can discover it, clone it, and run it.</p>
|
|
1643
1672
|
* @public
|
|
1644
1673
|
*/
|
|
1645
1674
|
export interface LibraryItemMember {
|
|
@@ -1889,8 +1918,8 @@ export interface User {
|
|
|
1889
1918
|
userId?: string | undefined;
|
|
1890
1919
|
}
|
|
1891
1920
|
/**
|
|
1892
|
-
* <p>The response collected for a Amazon Q App session.
|
|
1893
|
-
*
|
|
1921
|
+
* <p>The response collected for a Amazon Q App session. This container represents a single
|
|
1922
|
+
* response to a Q App session.</p>
|
|
1894
1923
|
* @public
|
|
1895
1924
|
*/
|
|
1896
1925
|
export interface QAppSessionData {
|
|
@@ -2033,7 +2062,8 @@ export interface PredictQAppInput {
|
|
|
2033
2062
|
*/
|
|
2034
2063
|
instanceId: string | undefined;
|
|
2035
2064
|
/**
|
|
2036
|
-
* <p>The input to generate the Q App definition from, either a conversation or problem
|
|
2065
|
+
* <p>The input to generate the Q App definition from, either a conversation or problem
|
|
2066
|
+
* statement.</p>
|
|
2037
2067
|
* @public
|
|
2038
2068
|
*/
|
|
2039
2069
|
options?: PredictQAppInputOptions | undefined;
|
|
@@ -2353,7 +2383,8 @@ export interface UpdateQAppPermissionsInput {
|
|
|
2353
2383
|
*/
|
|
2354
2384
|
export interface UpdateQAppPermissionsOutput {
|
|
2355
2385
|
/**
|
|
2356
|
-
* <p>The Amazon Resource Name (ARN) of the Amazon Q App for which permissions were
|
|
2386
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Q App for which permissions were
|
|
2387
|
+
* updated.</p>
|
|
2357
2388
|
* @public
|
|
2358
2389
|
*/
|
|
2359
2390
|
resourceArn?: string | undefined;
|
|
@@ -2454,7 +2485,8 @@ export interface UpdateQAppSessionMetadataOutput {
|
|
|
2454
2485
|
sharingConfiguration: SessionSharingConfiguration | undefined;
|
|
2455
2486
|
}
|
|
2456
2487
|
/**
|
|
2457
|
-
* <p>The filter criteria used on responses based on document attributes or metadata
|
|
2488
|
+
* <p>The filter criteria used on responses based on document attributes or metadata
|
|
2489
|
+
* fields.</p>
|
|
2458
2490
|
* @public
|
|
2459
2491
|
*/
|
|
2460
2492
|
export interface AttributeFilter {
|
|
@@ -2474,59 +2506,55 @@ export interface AttributeFilter {
|
|
|
2474
2506
|
*/
|
|
2475
2507
|
notFilter?: AttributeFilter | undefined;
|
|
2476
2508
|
/**
|
|
2477
|
-
* <p>Performs an <i>equals</i> operation on two document attributes or metadata
|
|
2478
|
-
* for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code>,
|
|
2479
|
-
*
|
|
2480
|
-
* <code>stringValue</code>.</p>
|
|
2509
|
+
* <p>Performs an <i>equals</i> operation on two document attributes or metadata
|
|
2510
|
+
* fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code>, <code>longValue</code>,
|
|
2511
|
+
* <code>stringListValue</code> and <code>stringValue</code>.</p>
|
|
2481
2512
|
* @public
|
|
2482
2513
|
*/
|
|
2483
2514
|
equalsTo?: DocumentAttribute | undefined;
|
|
2484
2515
|
/**
|
|
2485
|
-
* <p>Returns <code>true</code> when a document contains all the specified document
|
|
2486
|
-
*
|
|
2487
|
-
* <code>stringListValue</code>.</p>
|
|
2516
|
+
* <p>Returns <code>true</code> when a document contains all the specified document attributes
|
|
2517
|
+
* or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>stringListValue</code>.</p>
|
|
2488
2518
|
* @public
|
|
2489
2519
|
*/
|
|
2490
2520
|
containsAll?: DocumentAttribute | undefined;
|
|
2491
2521
|
/**
|
|
2492
2522
|
* <p>Returns <code>true</code> when a document contains any of the specified document
|
|
2493
|
-
* attributes or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>:
|
|
2494
|
-
* <code>stringListValue</code>.</p>
|
|
2523
|
+
* attributes or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>stringListValue</code>.</p>
|
|
2495
2524
|
* @public
|
|
2496
2525
|
*/
|
|
2497
2526
|
containsAny?: DocumentAttribute | undefined;
|
|
2498
2527
|
/**
|
|
2499
|
-
* <p>Performs a <i>greater than</i> operation on two document attributes or
|
|
2500
|
-
* Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code>
|
|
2501
|
-
*
|
|
2528
|
+
* <p>Performs a <i>greater than</i> operation on two document attributes or
|
|
2529
|
+
* metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code> and
|
|
2530
|
+
* <code>longValue</code>.</p>
|
|
2502
2531
|
* @public
|
|
2503
2532
|
*/
|
|
2504
2533
|
greaterThan?: DocumentAttribute | undefined;
|
|
2505
2534
|
/**
|
|
2506
|
-
* <p>Performs a <i>greater than or equals</i> operation on two document
|
|
2507
|
-
* fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code>
|
|
2508
|
-
*
|
|
2535
|
+
* <p>Performs a <i>greater than or equals</i> operation on two document
|
|
2536
|
+
* attributes or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code> and <code>longValue</code>.
|
|
2537
|
+
* </p>
|
|
2509
2538
|
* @public
|
|
2510
2539
|
*/
|
|
2511
2540
|
greaterThanOrEquals?: DocumentAttribute | undefined;
|
|
2512
2541
|
/**
|
|
2513
|
-
* <p>Performs a <i>less than</i> operation on two document attributes or metadata
|
|
2514
|
-
* Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code>
|
|
2515
|
-
*
|
|
2542
|
+
* <p>Performs a <i>less than</i> operation on two document attributes or metadata
|
|
2543
|
+
* fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code> and
|
|
2544
|
+
* <code>longValue</code>.</p>
|
|
2516
2545
|
* @public
|
|
2517
2546
|
*/
|
|
2518
2547
|
lessThan?: DocumentAttribute | undefined;
|
|
2519
2548
|
/**
|
|
2520
|
-
* <p>Performs a <i>less than or equals</i> operation on two document attributes
|
|
2521
|
-
* fields.Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value type</a>: <code>dateValue</code>
|
|
2522
|
-
*
|
|
2549
|
+
* <p>Performs a <i>less than or equals</i> operation on two document attributes
|
|
2550
|
+
* or metadata fields.Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value type</a>: <code>dateValue</code> and <code>longValue</code>.
|
|
2551
|
+
* </p>
|
|
2523
2552
|
* @public
|
|
2524
2553
|
*/
|
|
2525
2554
|
lessThanOrEquals?: DocumentAttribute | undefined;
|
|
2526
2555
|
}
|
|
2527
2556
|
/**
|
|
2528
|
-
* <p>A card in a Amazon Q App that generates a response
|
|
2529
|
-
* based on the Amazon Q Business service.</p>
|
|
2557
|
+
* <p>A card in a Amazon Q App that generates a response based on the Amazon Q Business service.</p>
|
|
2530
2558
|
* @public
|
|
2531
2559
|
*/
|
|
2532
2560
|
export interface QQueryCard {
|
|
@@ -2566,7 +2594,8 @@ export interface QQueryCard {
|
|
|
2566
2594
|
*/
|
|
2567
2595
|
attributeFilter?: AttributeFilter | undefined;
|
|
2568
2596
|
/**
|
|
2569
|
-
* <p>Any dependencies for the query card, where the dependencies are references to the
|
|
2597
|
+
* <p>Any dependencies for the query card, where the dependencies are references to the
|
|
2598
|
+
* collected responses.</p>
|
|
2570
2599
|
* @public
|
|
2571
2600
|
*/
|
|
2572
2601
|
memoryReferences?: string[] | undefined;
|
|
@@ -2914,7 +2943,8 @@ export interface GetQAppOutput {
|
|
|
2914
2943
|
*/
|
|
2915
2944
|
updatedBy: string | undefined;
|
|
2916
2945
|
/**
|
|
2917
|
-
* <p>The capabilities required to run the Q App, such as file upload or third-party
|
|
2946
|
+
* <p>The capabilities required to run the Q App, such as file upload or third-party
|
|
2947
|
+
* integrations.</p>
|
|
2918
2948
|
* @public
|
|
2919
2949
|
*/
|
|
2920
2950
|
requiredCapabilities?: AppRequiredCapability[] | undefined;
|
|
@@ -2925,8 +2955,8 @@ export interface GetQAppOutput {
|
|
|
2925
2955
|
appDefinition: AppDefinition | undefined;
|
|
2926
2956
|
}
|
|
2927
2957
|
/**
|
|
2928
|
-
* <p>The definition of an Amazon Q App generated based on input such as a conversation
|
|
2929
|
-
*
|
|
2958
|
+
* <p>The definition of an Amazon Q App generated based on input such as a conversation or problem
|
|
2959
|
+
* statement.</p>
|
|
2930
2960
|
* @public
|
|
2931
2961
|
*/
|
|
2932
2962
|
export interface PredictAppDefinition {
|
|
@@ -48,11 +48,22 @@ export interface FormInputCard {
|
|
|
48
48
|
computeMode?: InputCardComputeMode | undefined;
|
|
49
49
|
}
|
|
50
50
|
export declare const PluginType: {
|
|
51
|
+
readonly ASANA: "ASANA";
|
|
52
|
+
readonly ATLASSIAN_CONFLUENCE: "ATLASSIAN_CONFLUENCE";
|
|
51
53
|
readonly CUSTOM: "CUSTOM";
|
|
54
|
+
readonly GOOGLE_CALENDAR: "GOOGLE_CALENDAR";
|
|
52
55
|
readonly JIRA: "JIRA";
|
|
56
|
+
readonly JIRA_CLOUD: "JIRA_CLOUD";
|
|
57
|
+
readonly MICROSOFT_EXCHANGE: "MICROSOFT_EXCHANGE";
|
|
58
|
+
readonly MICROSOFT_TEAMS: "MICROSOFT_TEAMS";
|
|
59
|
+
readonly PAGERDUTY_ADVANCE: "PAGERDUTY_ADVANCE";
|
|
53
60
|
readonly SALESFORCE: "SALESFORCE";
|
|
61
|
+
readonly SALESFORCE_CRM: "SALESFORCE_CRM";
|
|
62
|
+
readonly SERVICENOW_NOW_PLATFORM: "SERVICENOW_NOW_PLATFORM";
|
|
54
63
|
readonly SERVICE_NOW: "SERVICE_NOW";
|
|
64
|
+
readonly SMARTSHEET: "SMARTSHEET";
|
|
55
65
|
readonly ZENDESK: "ZENDESK";
|
|
66
|
+
readonly ZENDESK_SUITE: "ZENDESK_SUITE";
|
|
56
67
|
};
|
|
57
68
|
export type PluginType = (typeof PluginType)[keyof typeof PluginType];
|
|
58
69
|
export interface QPluginCard {
|
|
@@ -63,6 +74,7 @@ export interface QPluginCard {
|
|
|
63
74
|
prompt: string | undefined;
|
|
64
75
|
pluginType: PluginType | undefined;
|
|
65
76
|
pluginId: string | undefined;
|
|
77
|
+
actionIdentifier?: string | undefined;
|
|
66
78
|
}
|
|
67
79
|
export type DocumentAttributeValue =
|
|
68
80
|
| DocumentAttributeValue.DateValueMember
|
|
@@ -154,6 +166,7 @@ export interface QPluginCardInput {
|
|
|
154
166
|
type: CardType | undefined;
|
|
155
167
|
prompt: string | undefined;
|
|
156
168
|
pluginId: string | undefined;
|
|
169
|
+
actionIdentifier?: string | undefined;
|
|
157
170
|
}
|
|
158
171
|
export interface TextInputCardInput {
|
|
159
172
|
title: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-qapps",
|
|
3
3
|
"description": "AWS SDK for JavaScript Qapps Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.705.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|