@aws-sdk/client-connect 3.445.0 → 3.448.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/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +1 -0
- package/dist-types/commands/CreateIntegrationAssociationCommand.d.ts +1 -1
- package/dist-types/commands/ListIntegrationAssociationsCommand.d.ts +3 -2
- package/dist-types/commands/SearchUsersCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +5 -0
- package/dist-types/models/models_2.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/dist-types/ts3.4/models/models_2.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2609,6 +2609,7 @@ const se_ListIntegrationAssociationsCommand = async (input, context) => {
|
|
|
2609
2609
|
integrationType: [, input.IntegrationType],
|
|
2610
2610
|
nextToken: [, input.NextToken],
|
|
2611
2611
|
maxResults: [() => input.MaxResults !== void 0, () => input.MaxResults.toString()],
|
|
2612
|
+
integrationArn: [, input.IntegrationArn],
|
|
2612
2613
|
});
|
|
2613
2614
|
let body;
|
|
2614
2615
|
return new protocol_http_1.HttpRequest({
|
|
@@ -372,6 +372,7 @@ export const IntegrationType = {
|
|
|
372
372
|
APPLICATION: "APPLICATION",
|
|
373
373
|
CASES_DOMAIN: "CASES_DOMAIN",
|
|
374
374
|
EVENT: "EVENT",
|
|
375
|
+
FILE_SCANNER: "FILE_SCANNER",
|
|
375
376
|
PINPOINT_APP: "PINPOINT_APP",
|
|
376
377
|
VOICE_ID: "VOICE_ID",
|
|
377
378
|
WISDOM_ASSISTANT: "WISDOM_ASSISTANT",
|
|
@@ -2481,6 +2481,7 @@ export const se_ListIntegrationAssociationsCommand = async (input, context) => {
|
|
|
2481
2481
|
integrationType: [, input.IntegrationType],
|
|
2482
2482
|
nextToken: [, input.NextToken],
|
|
2483
2483
|
maxResults: [() => input.MaxResults !== void 0, () => input.MaxResults.toString()],
|
|
2484
|
+
integrationArn: [, input.IntegrationArn],
|
|
2484
2485
|
});
|
|
2485
2486
|
let body;
|
|
2486
2487
|
return new __HttpRequest({
|
|
@@ -33,7 +33,7 @@ export interface CreateIntegrationAssociationCommandOutput extends CreateIntegra
|
|
|
33
33
|
* const client = new ConnectClient(config);
|
|
34
34
|
* const input = { // CreateIntegrationAssociationRequest
|
|
35
35
|
* InstanceId: "STRING_VALUE", // required
|
|
36
|
-
* IntegrationType: "EVENT" || "VOICE_ID" || "PINPOINT_APP" || "WISDOM_ASSISTANT" || "WISDOM_KNOWLEDGE_BASE" || "CASES_DOMAIN" || "APPLICATION", // required
|
|
36
|
+
* IntegrationType: "EVENT" || "VOICE_ID" || "PINPOINT_APP" || "WISDOM_ASSISTANT" || "WISDOM_KNOWLEDGE_BASE" || "CASES_DOMAIN" || "APPLICATION" || "FILE_SCANNER", // required
|
|
37
37
|
* IntegrationArn: "STRING_VALUE", // required
|
|
38
38
|
* SourceApplicationUrl: "STRING_VALUE",
|
|
39
39
|
* SourceApplicationName: "STRING_VALUE",
|
|
@@ -33,9 +33,10 @@ export interface ListIntegrationAssociationsCommandOutput extends ListIntegratio
|
|
|
33
33
|
* const client = new ConnectClient(config);
|
|
34
34
|
* const input = { // ListIntegrationAssociationsRequest
|
|
35
35
|
* InstanceId: "STRING_VALUE", // required
|
|
36
|
-
* IntegrationType: "EVENT" || "VOICE_ID" || "PINPOINT_APP" || "WISDOM_ASSISTANT" || "WISDOM_KNOWLEDGE_BASE" || "CASES_DOMAIN" || "APPLICATION",
|
|
36
|
+
* IntegrationType: "EVENT" || "VOICE_ID" || "PINPOINT_APP" || "WISDOM_ASSISTANT" || "WISDOM_KNOWLEDGE_BASE" || "CASES_DOMAIN" || "APPLICATION" || "FILE_SCANNER",
|
|
37
37
|
* NextToken: "STRING_VALUE",
|
|
38
38
|
* MaxResults: Number("int"),
|
|
39
|
+
* IntegrationArn: "STRING_VALUE",
|
|
39
40
|
* };
|
|
40
41
|
* const command = new ListIntegrationAssociationsCommand(input);
|
|
41
42
|
* const response = await client.send(command);
|
|
@@ -45,7 +46,7 @@ export interface ListIntegrationAssociationsCommandOutput extends ListIntegratio
|
|
|
45
46
|
* // IntegrationAssociationId: "STRING_VALUE",
|
|
46
47
|
* // IntegrationAssociationArn: "STRING_VALUE",
|
|
47
48
|
* // InstanceId: "STRING_VALUE",
|
|
48
|
-
* // IntegrationType: "EVENT" || "VOICE_ID" || "PINPOINT_APP" || "WISDOM_ASSISTANT" || "WISDOM_KNOWLEDGE_BASE" || "CASES_DOMAIN" || "APPLICATION",
|
|
49
|
+
* // IntegrationType: "EVENT" || "VOICE_ID" || "PINPOINT_APP" || "WISDOM_ASSISTANT" || "WISDOM_KNOWLEDGE_BASE" || "CASES_DOMAIN" || "APPLICATION" || "FILE_SCANNER",
|
|
49
50
|
* // IntegrationArn: "STRING_VALUE",
|
|
50
51
|
* // SourceApplicationUrl: "STRING_VALUE",
|
|
51
52
|
* // SourceApplicationName: "STRING_VALUE",
|
|
@@ -36,7 +36,7 @@ export interface SearchUsersCommandOutput extends SearchUsersResponse, __Metadat
|
|
|
36
36
|
* // const { ConnectClient, SearchUsersCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
37
37
|
* const client = new ConnectClient(config);
|
|
38
38
|
* const input = { // SearchUsersRequest
|
|
39
|
-
* InstanceId: "STRING_VALUE",
|
|
39
|
+
* InstanceId: "STRING_VALUE", // required
|
|
40
40
|
* NextToken: "STRING_VALUE",
|
|
41
41
|
* MaxResults: Number("int"),
|
|
42
42
|
* SearchFilter: { // UserSearchFilter
|
|
@@ -2172,6 +2172,7 @@ export declare const IntegrationType: {
|
|
|
2172
2172
|
readonly APPLICATION: "APPLICATION";
|
|
2173
2173
|
readonly CASES_DOMAIN: "CASES_DOMAIN";
|
|
2174
2174
|
readonly EVENT: "EVENT";
|
|
2175
|
+
readonly FILE_SCANNER: "FILE_SCANNER";
|
|
2175
2176
|
readonly PINPOINT_APP: "PINPOINT_APP";
|
|
2176
2177
|
readonly VOICE_ID: "VOICE_ID";
|
|
2177
2178
|
readonly WISDOM_ASSISTANT: "WISDOM_ASSISTANT";
|
|
@@ -3930,6 +3930,11 @@ export interface ListIntegrationAssociationsRequest {
|
|
|
3930
3930
|
* <p>The maximum number of results to return per page.</p>
|
|
3931
3931
|
*/
|
|
3932
3932
|
MaxResults?: number;
|
|
3933
|
+
/**
|
|
3934
|
+
* @public
|
|
3935
|
+
* <p>The Amazon Resource Name (ARN) of the integration.</p>
|
|
3936
|
+
*/
|
|
3937
|
+
IntegrationArn?: string;
|
|
3933
3938
|
}
|
|
3934
3939
|
/**
|
|
3935
3940
|
* @public
|
|
@@ -1955,7 +1955,7 @@ export interface SearchUsersRequest {
|
|
|
1955
1955
|
* <p>InstanceID is a required field. The "Required: No" below is incorrect.</p>
|
|
1956
1956
|
* </note>
|
|
1957
1957
|
*/
|
|
1958
|
-
InstanceId
|
|
1958
|
+
InstanceId: string | undefined;
|
|
1959
1959
|
/**
|
|
1960
1960
|
* @public
|
|
1961
1961
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
@@ -745,6 +745,7 @@ export declare const IntegrationType: {
|
|
|
745
745
|
readonly APPLICATION: "APPLICATION";
|
|
746
746
|
readonly CASES_DOMAIN: "CASES_DOMAIN";
|
|
747
747
|
readonly EVENT: "EVENT";
|
|
748
|
+
readonly FILE_SCANNER: "FILE_SCANNER";
|
|
748
749
|
readonly PINPOINT_APP: "PINPOINT_APP";
|
|
749
750
|
readonly VOICE_ID: "VOICE_ID";
|
|
750
751
|
readonly WISDOM_ASSISTANT: "WISDOM_ASSISTANT";
|
|
@@ -893,6 +893,7 @@ export interface ListIntegrationAssociationsRequest {
|
|
|
893
893
|
IntegrationType?: IntegrationType;
|
|
894
894
|
NextToken?: string;
|
|
895
895
|
MaxResults?: number;
|
|
896
|
+
IntegrationArn?: string;
|
|
896
897
|
}
|
|
897
898
|
export interface IntegrationAssociationSummary {
|
|
898
899
|
IntegrationAssociationId?: string;
|
|
@@ -529,7 +529,7 @@ export interface SearchSecurityProfilesRequest {
|
|
|
529
529
|
SearchFilter?: SecurityProfilesSearchFilter;
|
|
530
530
|
}
|
|
531
531
|
export interface SearchUsersRequest {
|
|
532
|
-
InstanceId
|
|
532
|
+
InstanceId: string | undefined;
|
|
533
533
|
NextToken?: string;
|
|
534
534
|
MaxResults?: number;
|
|
535
535
|
SearchFilter?: UserSearchFilter;
|
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.
|
|
4
|
+
"version": "3.448.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",
|