@aws-sdk/client-connect 3.1109.0 → 3.1111.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 +7 -0
- package/dist-cjs/index.js +36 -3
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/StartAssistantContactCommand.js +4 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +26 -2
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/SearchContactFlowsCommand.d.ts +1 -1
- package/dist-types/commands/StartAssistantContactCommand.d.ts +126 -0
- package/dist-types/commands/StartWebRTCContactCommand.d.ts +28 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +11 -21
- package/dist-types/models/models_1.d.ts +22 -58
- package/dist-types/models/models_2.d.ts +59 -22
- package/dist-types/models/models_3.d.ts +164 -211
- package/dist-types/models/models_4.d.ts +161 -4
- package/dist-types/runtimeConfig.browser.d.ts +40 -40
- package/dist-types/runtimeConfig.d.ts +36 -36
- package/dist-types/runtimeConfig.native.d.ts +38 -38
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/Connect.d.ts +17 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/SearchContactFlowsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssistantContactCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartWebRTCContactCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -5
- package/dist-types/ts3.4/models/models_1.d.ts +5 -14
- package/dist-types/ts3.4/models/models_2.d.ts +16 -7
- package/dist-types/ts3.4/models/models_3.d.ts +33 -47
- package/dist-types/ts3.4/models/models_4.d.ts +33 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +56 -58
- package/dist-types/ts3.4/runtimeConfig.d.ts +58 -58
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +60 -62
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +5 -5
|
@@ -1,8 +1,91 @@
|
|
|
1
1
|
import type { AnsweringMachineDetectionStatus, Channel, ContactInitiationMethod, DisconnectOnCustomerExitParticipantType, EvaluationFormQuestionType, EvaluationFormValidationStatus, EvaluationFormVersionStatus, InitiateAs, RoutingCriteriaStepStatus, SearchableQueueType, TestCaseStatus, ViewStatus, ViewType } from "./enums";
|
|
2
|
-
import type { AdditionalEmailRecipients, AgentInfo, AgentStatusSearchFilter, Campaign, Endpoint, EvaluationFormAutoEvaluationConfiguration, EvaluationFormLanguageConfiguration, EvaluationFormQuestionScoringConfiguration, EvaluationFormQuestionTypeProperties, EvaluationFormScoreThreshold, EvaluationFormScoringStrategy, EvaluationFormTargetConfiguration, EvaluationReviewConfiguration, OutboundStrategy, Reference, StringCondition, UserInfo } from "./models_0";
|
|
2
|
+
import type { AdditionalEmailRecipients, AgentInfo, AgentStatusSearchFilter, AllowedCapabilities, Campaign, Endpoint, EvaluationFormAutoEvaluationConfiguration, EvaluationFormLanguageConfiguration, EvaluationFormQuestionScoringConfiguration, EvaluationFormQuestionTypeProperties, EvaluationFormScoreThreshold, EvaluationFormScoringStrategy, EvaluationFormTargetConfiguration, EvaluationReviewConfiguration, OutboundStrategy, Reference, StringCondition, UserInfo } from "./models_0";
|
|
3
3
|
import type { AttributeCondition, ChatMetrics, ContactDetails, ContactEvaluation, Customer, CustomerVoiceActivity, DisconnectDetails, EndpointInfo, Evaluation, Expiry, GlobalResiliencyMetadata, NextContactEntry, QualityMetrics, QueueInfo, RecordingInfo, TaskTemplateInfoV2, WisdomInfo } from "./models_1";
|
|
4
|
-
import type { BooleanCondition, ContactFlowModuleSearchFilter, ContactFlowSearchFilter, EvaluationSearchFilter } from "./models_2";
|
|
5
|
-
import type { AgentStatusSearchCriteria, ChatMessage, ContactFlowModuleSearchCriteria, ContactFlowSearchCriteria, ContactSearchSummaryAgentInfo, ContactSearchSummaryAiAgentInfo, ContactSearchSummaryQueueInfo, DataTableSearchCriteria, DataTableSearchFilter, DateCondition, EmailAddressInfo, EmailAddressSearchCriteria, EmailAddressSearchFilter, EmailAttachment, EvaluationFormItemEnablementConfiguration,
|
|
4
|
+
import type { BooleanCondition, ContactFlowModuleSearchFilter, ContactFlowSearchFilter, DateTimeCondition, DecimalCondition, EvaluationSearchFilter, NumberCondition } from "./models_2";
|
|
5
|
+
import type { AgentStatusSearchCriteria, ChatMessage, ContactFlowModuleSearchCriteria, ContactFlowSearchCriteria, ContactSearchSummaryAgentInfo, ContactSearchSummaryAiAgentInfo, ContactSearchSummaryQueueInfo, DataTableSearchCriteria, DataTableSearchFilter, DateCondition, EmailAddressInfo, EmailAddressSearchCriteria, EmailAddressSearchFilter, EmailAttachment, EvaluationFormItemEnablementConfiguration, EvaluationFormSearchFilter, HierarchyGroupCondition, HoursOfOperationSearchFilter, InboundAdditionalRecipients, InboundEmailContent, ListCondition, MetricSearchFilter, NotificationSearchFilter, ParticipantConfiguration, ParticipantDetails, PersistentChat, PromptSearchFilter, QueueInfoInput, QueueSearchFilter, QuickConnectSearchFilter, RoutingCriteriaInputStepExpiry, RoutingProfileSearchFilter, RulesSearchFilter, SecurityProfilesSearchFilter, TaskAttachment, TemplatedMessageConfig, TestCaseSearchFilter, UserHierarchyGroupSearchFilter, UserSearchFilter, ViewSearchFilter, WorkspaceAssociationSearchFilter, WorkspaceSearchFilter } from "./models_3";
|
|
6
|
+
/**
|
|
7
|
+
* <p>The search criteria to be used to return evaluation forms.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface EvaluationFormSearchCriteria {
|
|
11
|
+
/**
|
|
12
|
+
* <p>A list of conditions which would be applied together with an OR condition.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
OrConditions?: EvaluationFormSearchCriteria[] | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>A list of conditions which would be applied together with an AND condition.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
AndConditions?: EvaluationFormSearchCriteria[] | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
StringCondition?: StringCondition | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>A leaf node condition which can be used to specify a numeric condition.</p>
|
|
28
|
+
* <note>
|
|
29
|
+
* <p>The currently supported value for <code>FieldName</code> is <code>limit</code>.</p>
|
|
30
|
+
* </note>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
NumberCondition?: NumberCondition | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* <p>Boolean search condition.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
BooleanCondition?: BooleanCondition | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>Datetime search condition.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
DateTimeCondition?: DateTimeCondition | undefined;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* <p>The search criteria to be used to return evaluations.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export interface EvaluationSearchCriteria {
|
|
50
|
+
/**
|
|
51
|
+
* <p>A list of conditions which would be applied together with an OR condition.</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
OrConditions?: EvaluationSearchCriteria[] | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* <p>A list of conditions which would be applied together with an AND condition.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
AndConditions?: EvaluationSearchCriteria[] | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* <p>A leaf node condition which can be used to specify a string condition.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
StringCondition?: StringCondition | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* <p>A leaf node condition which can be used to specify a numeric condition.</p>
|
|
67
|
+
* <note>
|
|
68
|
+
* <p>The currently supported value for <code>FieldName</code> is <code>limit</code>.</p>
|
|
69
|
+
* </note>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
NumberCondition?: NumberCondition | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>The boolean condition search criteria for searching evaluations.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
BooleanCondition?: BooleanCondition | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* <p>The datetime condition search criteria for searching evaluations.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
DateTimeCondition?: DateTimeCondition | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* <p>The decimal condition search criteria for searching evaluations.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
DecimalCondition?: DecimalCondition | undefined;
|
|
88
|
+
}
|
|
6
89
|
/**
|
|
7
90
|
* <p>A tagged union to specify expression for a routing step.</p>
|
|
8
91
|
* @public
|
|
@@ -1794,7 +1877,7 @@ export interface StartOutboundChatContactRequest {
|
|
|
1794
1877
|
*/
|
|
1795
1878
|
ChatDurationInMinutes?: number | undefined;
|
|
1796
1879
|
/**
|
|
1797
|
-
* <p>The
|
|
1880
|
+
* <p>The details of the participant, including their display name.</p>
|
|
1798
1881
|
* @public
|
|
1799
1882
|
*/
|
|
1800
1883
|
ParticipantDetails?: ParticipantDetails | undefined;
|
|
@@ -1979,6 +2062,80 @@ export interface StartTaskContactRequest {
|
|
|
1979
2062
|
*/
|
|
1980
2063
|
Attachments?: TaskAttachment[] | undefined;
|
|
1981
2064
|
}
|
|
2065
|
+
/**
|
|
2066
|
+
* @public
|
|
2067
|
+
*/
|
|
2068
|
+
export interface StartWebRTCContactRequest {
|
|
2069
|
+
/**
|
|
2070
|
+
* <p>A custom key-value pair using an attribute map. The attributes are standard Connect Customer attributes, and
|
|
2071
|
+
* can be accessed in flows just like any other contact attributes.</p>
|
|
2072
|
+
* <p>There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys can include only
|
|
2073
|
+
* alphanumeric, -, and _ characters.</p>
|
|
2074
|
+
* @public
|
|
2075
|
+
*/
|
|
2076
|
+
Attributes?: Record<string, string> | undefined;
|
|
2077
|
+
/**
|
|
2078
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2079
|
+
* request. If not provided, the Amazon Web Services
|
|
2080
|
+
* SDK populates this field. For more information about idempotency, see
|
|
2081
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
2082
|
+
* <p>The token is valid for 7 days after creation. If a contact is already started, the contact ID is
|
|
2083
|
+
* returned.</p>
|
|
2084
|
+
* @public
|
|
2085
|
+
*/
|
|
2086
|
+
ClientToken?: string | undefined;
|
|
2087
|
+
/**
|
|
2088
|
+
* <p>The identifier of the flow for the call. To see the ContactFlowId in the Connect Customer admin website, on the navigation menu go to
|
|
2089
|
+
* <b>Routing</b>, <b>Flows</b>. Choose the flow. On the flow page,
|
|
2090
|
+
* under the name of the flow, choose <b>Show additional flow information</b>. The
|
|
2091
|
+
* ContactFlowId is the last part of the ARN, shown here in bold: </p>
|
|
2092
|
+
* <p>arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/<b>846ec553-a005-41c0-8341-xxxxxxxxxxxx</b>
|
|
2093
|
+
* </p>
|
|
2094
|
+
* @public
|
|
2095
|
+
*/
|
|
2096
|
+
ContactFlowId: string | undefined;
|
|
2097
|
+
/**
|
|
2098
|
+
* <p>The identifier of the Connect Customer instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
2099
|
+
* @public
|
|
2100
|
+
*/
|
|
2101
|
+
InstanceId: string | undefined;
|
|
2102
|
+
/**
|
|
2103
|
+
* <p>Information about the video sharing capabilities of the participants (customer, agent).</p>
|
|
2104
|
+
* @public
|
|
2105
|
+
*/
|
|
2106
|
+
AllowedCapabilities?: AllowedCapabilities | undefined;
|
|
2107
|
+
/**
|
|
2108
|
+
* <p>The details of the participant, including their display name.</p>
|
|
2109
|
+
* @public
|
|
2110
|
+
*/
|
|
2111
|
+
ParticipantDetails: ParticipantDetails | undefined;
|
|
2112
|
+
/**
|
|
2113
|
+
* <p>The unique identifier for an Connect Customer contact. This identifier is related to the contact
|
|
2114
|
+
* starting.</p>
|
|
2115
|
+
* @public
|
|
2116
|
+
*/
|
|
2117
|
+
RelatedContactId?: string | undefined;
|
|
2118
|
+
/**
|
|
2119
|
+
* <p>A formatted URL that is shown to an agent in the Contact Control Panel (CCP). Tasks can have the following
|
|
2120
|
+
* reference types at the time of creation: <code>URL</code> | <code>NUMBER</code> | <code>STRING</code> |
|
|
2121
|
+
* <code>DATE</code> | <code>EMAIL</code>. <code>ATTACHMENT</code> is not a supported reference type during task
|
|
2122
|
+
* creation.</p>
|
|
2123
|
+
* @public
|
|
2124
|
+
*/
|
|
2125
|
+
References?: Record<string, Reference> | undefined;
|
|
2126
|
+
/**
|
|
2127
|
+
* <p>A description of the task that is shown to an agent in the Contact Control Panel (CCP).</p>
|
|
2128
|
+
* @public
|
|
2129
|
+
*/
|
|
2130
|
+
Description?: string | undefined;
|
|
2131
|
+
/**
|
|
2132
|
+
* <p>Use this map to specify system-defined attributes for the WebRTC contact segment. Use the
|
|
2133
|
+
* <code>connect:Subtype</code> attribute to specify the channel subtype, such as <code>connect:WebRTC</code>.</p>
|
|
2134
|
+
* <p>Attribute keys can contain only alphanumeric characters, hyphens, and underscores.</p>
|
|
2135
|
+
* @public
|
|
2136
|
+
*/
|
|
2137
|
+
SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
|
|
2138
|
+
}
|
|
1982
2139
|
/**
|
|
1983
2140
|
* @public
|
|
1984
2141
|
*/
|
|
@@ -4,49 +4,14 @@ import type { ConnectClientConfig } from "./ConnectClient";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
-
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
15
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
17
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
18
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
|
-
cacheMiddleware?: boolean | undefined;
|
|
20
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
21
|
-
protocolSettings: {
|
|
22
|
-
defaultNamespace?: string;
|
|
23
|
-
[setting: string]: unknown;
|
|
24
|
-
};
|
|
25
|
-
apiVersion: string;
|
|
26
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
27
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
28
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
29
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
30
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
31
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
32
|
-
disableHostPrefix: boolean;
|
|
33
|
-
serviceId: string;
|
|
34
|
-
profile?: string;
|
|
35
|
-
logger: import("@smithy/types").Logger;
|
|
36
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
37
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
38
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
39
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
40
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
41
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
42
|
-
logger?: import("@smithy/types").Logger;
|
|
43
|
-
}) => import("@smithy/types").EndpointV2;
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
8
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
44
9
|
tls?: boolean;
|
|
45
10
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
46
11
|
serviceConfiguredEndpoint?: never;
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
12
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
13
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
14
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
50
15
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
51
16
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
52
17
|
signingEscapePath?: boolean;
|
|
@@ -54,4 +19,39 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
|
|
|
54
19
|
signingRegion?: string;
|
|
55
20
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
21
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
23
|
+
apiVersion: string;
|
|
24
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
28
|
+
logger?: import("@smithy/types").Logger;
|
|
29
|
+
}) => import("@smithy/types").EndpointV2;
|
|
30
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
|
|
32
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
33
|
+
logger: import("@smithy/types").Logger;
|
|
34
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
35
|
+
protocolSettings: {
|
|
36
|
+
[setting: string]: unknown;
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
};
|
|
39
|
+
serviceId: string;
|
|
40
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
41
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
42
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
44
|
+
profile?: string;
|
|
45
|
+
runtime: string;
|
|
46
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
47
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
48
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
49
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
50
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
52
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
53
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
54
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
55
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
56
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
57
57
|
};
|
|
@@ -4,11 +4,46 @@ import type { ConnectClientConfig } from "./ConnectClient";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
8
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
9
|
+
tls?: boolean;
|
|
10
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
11
|
+
serviceConfiguredEndpoint?: never;
|
|
12
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
signingEscapePath?: boolean;
|
|
17
|
+
systemClockOffset?: number;
|
|
18
|
+
signingRegion?: string;
|
|
19
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
20
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
apiVersion: string;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
26
|
+
logger?: import("@smithy/types").Logger;
|
|
27
|
+
}) => import("@smithy/types").EndpointV2;
|
|
28
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
29
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
|
|
30
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
31
|
+
logger: import("@smithy/types").Logger;
|
|
32
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
33
|
+
protocolSettings: {
|
|
34
|
+
[setting: string]: unknown;
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
};
|
|
37
|
+
serviceId: string;
|
|
38
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
39
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
41
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
7
42
|
runtime: string;
|
|
8
43
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
44
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
45
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider: ((
|
|
46
|
+
credentialDefaultProvider: ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider) | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
12
47
|
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
48
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
49
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -18,40 +53,5 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
|
|
|
18
53
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
54
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
55
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
21
|
-
cacheMiddleware?: boolean | undefined;
|
|
22
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
23
|
-
protocolSettings: {
|
|
24
|
-
defaultNamespace?: string;
|
|
25
|
-
[setting: string]: unknown;
|
|
26
|
-
};
|
|
27
|
-
apiVersion: string;
|
|
28
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
29
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
30
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
31
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
32
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
33
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
34
|
-
disableHostPrefix: boolean;
|
|
35
|
-
serviceId: string;
|
|
36
56
|
profile?: string;
|
|
37
|
-
logger: import("@smithy/types").Logger;
|
|
38
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
40
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
41
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
42
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
43
|
-
logger?: import("@smithy/types").Logger;
|
|
44
|
-
}) => import("@smithy/types").EndpointV2;
|
|
45
|
-
tls?: boolean;
|
|
46
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
47
|
-
serviceConfiguredEndpoint?: never;
|
|
48
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
49
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
|
|
50
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
51
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
52
|
-
signingEscapePath?: boolean;
|
|
53
|
-
systemClockOffset?: number;
|
|
54
|
-
signingRegion?: string;
|
|
55
|
-
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
57
57
|
};
|
|
@@ -3,54 +3,54 @@ import type { ConnectClientConfig } from "./ConnectClient";
|
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
|
|
6
|
-
runtime: string;
|
|
7
|
-
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
8
6
|
cacheMiddleware?: boolean;
|
|
9
|
-
|
|
7
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
8
|
+
tls?: boolean;
|
|
9
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
10
|
+
serviceConfiguredEndpoint?: never;
|
|
11
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
12
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
signingEscapePath?: boolean;
|
|
17
|
+
systemClockOffset?: number;
|
|
18
|
+
signingRegion?: string;
|
|
19
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
20
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
25
|
+
disableHostPrefix: boolean;
|
|
26
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
27
|
+
logger?: import("@smithy/types").Logger;
|
|
28
|
+
}) => import("@smithy/types").EndpointV2;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
|
|
31
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
32
|
+
logger: import("@smithy/types").Logger;
|
|
33
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
10
34
|
protocolSettings: {
|
|
11
|
-
defaultNamespace?: string;
|
|
12
35
|
[setting: string]: unknown;
|
|
36
|
+
defaultNamespace?: string;
|
|
13
37
|
};
|
|
14
|
-
|
|
38
|
+
serviceId: string;
|
|
15
39
|
sha256: import("@smithy/types").HashConstructor;
|
|
16
40
|
urlParser: import("@smithy/types").UrlParser;
|
|
17
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
41
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
42
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
23
|
-
disableHostPrefix: boolean;
|
|
24
|
-
serviceId: string;
|
|
25
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
28
43
|
profile?: string;
|
|
29
|
-
|
|
44
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode> | import("@smithy/core/client").DefaultsMode;
|
|
45
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
30
46
|
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
47
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
31
48
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
49
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
50
|
+
requestHandler: import("@smithy/fetch-http-handler").FetchHttpHandler | import("@smithy/types").FetchHttpHandlerOptions | import("@smithy/types").NodeHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any>;
|
|
32
51
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
38
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
39
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
40
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
41
|
-
logger?: import("@smithy/types").Logger;
|
|
42
|
-
}) => import("@smithy/types").EndpointV2;
|
|
43
|
-
tls?: boolean;
|
|
44
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
|
-
serviceConfiguredEndpoint?: never;
|
|
46
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
47
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
48
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
|
|
49
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
50
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
51
|
-
signingEscapePath?: boolean;
|
|
52
|
-
systemClockOffset?: number;
|
|
53
|
-
signingRegion?: string;
|
|
54
|
-
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
55
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
52
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
53
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
54
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
55
|
+
runtime: string;
|
|
56
56
|
};
|
|
@@ -8,14 +8,14 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
|
|
|
8
8
|
base64Decoder: import("@smithy/types").Decoder;
|
|
9
9
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
10
10
|
disableHostPrefix: boolean;
|
|
11
|
-
endpointProvider: (
|
|
11
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
12
12
|
logger?: import("@smithy/types").Logger;
|
|
13
13
|
}) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
|
|
16
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
17
17
|
logger: import("@smithy/types").Logger;
|
|
18
|
-
protocol: import("@smithy/types")
|
|
18
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
19
|
protocolSettings: {
|
|
20
20
|
[setting: string]: unknown;
|
|
21
21
|
defaultNamespace?: string;
|
|
@@ -57,6 +57,7 @@ export declare var AgentStatusSearchCriteria$: StaticStructureSchema;
|
|
|
57
57
|
export declare var AgentStatusSearchFilter$: StaticStructureSchema;
|
|
58
58
|
export declare var AgentStatusSummary$: StaticStructureSchema;
|
|
59
59
|
export declare var AiAgentInfo$: StaticStructureSchema;
|
|
60
|
+
export declare var AiAgentInput$: StaticStructureSchema;
|
|
60
61
|
export declare var AiAgentsCriteria$: StaticStructureSchema;
|
|
61
62
|
export declare var AiAgentSearchCriteria$: StaticStructureSchema;
|
|
62
63
|
export declare var AliasConfiguration$: StaticStructureSchema;
|
|
@@ -1038,6 +1039,8 @@ export declare var SignInDistribution$: StaticStructureSchema;
|
|
|
1038
1039
|
export declare var SingleSelectQuestionRuleCategoryAutomation$: StaticStructureSchema;
|
|
1039
1040
|
export declare var Sort$: StaticStructureSchema;
|
|
1040
1041
|
export declare var SourceCampaign$: StaticStructureSchema;
|
|
1042
|
+
export declare var StartAssistantContactRequest$: StaticStructureSchema;
|
|
1043
|
+
export declare var StartAssistantContactResponse$: StaticStructureSchema;
|
|
1041
1044
|
export declare var StartAttachedFileUploadRequest$: StaticStructureSchema;
|
|
1042
1045
|
export declare var StartAttachedFileUploadResponse$: StaticStructureSchema;
|
|
1043
1046
|
export declare var StartChatContactRequest$: StaticStructureSchema;
|
|
@@ -1596,6 +1599,7 @@ export declare var SearchWorkspaces$: StaticOperationSchema;
|
|
|
1596
1599
|
export declare var SendChatIntegrationEvent$: StaticOperationSchema;
|
|
1597
1600
|
export declare var SendOutboundEmail$: StaticOperationSchema;
|
|
1598
1601
|
export declare var SendOutboundWebNotification$: StaticOperationSchema;
|
|
1602
|
+
export declare var StartAssistantContact$: StaticOperationSchema;
|
|
1599
1603
|
export declare var StartAttachedFileUpload$: StaticOperationSchema;
|
|
1600
1604
|
export declare var StartChatContact$: StaticOperationSchema;
|
|
1601
1605
|
export declare var StartContactConversationalAnalyticsJob$: StaticOperationSchema;
|
|
@@ -1114,6 +1114,10 @@ import {
|
|
|
1114
1114
|
SendOutboundWebNotificationCommandInput,
|
|
1115
1115
|
SendOutboundWebNotificationCommandOutput,
|
|
1116
1116
|
} from "./commands/SendOutboundWebNotificationCommand";
|
|
1117
|
+
import {
|
|
1118
|
+
StartAssistantContactCommandInput,
|
|
1119
|
+
StartAssistantContactCommandOutput,
|
|
1120
|
+
} from "./commands/StartAssistantContactCommand";
|
|
1117
1121
|
import {
|
|
1118
1122
|
StartAttachedFileUploadCommandInput,
|
|
1119
1123
|
StartAttachedFileUploadCommandOutput,
|
|
@@ -5280,6 +5284,19 @@ export interface Connect {
|
|
|
5280
5284
|
options: __HttpHandlerOptions,
|
|
5281
5285
|
cb: (err: any, data?: SendOutboundWebNotificationCommandOutput) => void,
|
|
5282
5286
|
): void;
|
|
5287
|
+
startAssistantContact(
|
|
5288
|
+
args: StartAssistantContactCommandInput,
|
|
5289
|
+
options?: __HttpHandlerOptions,
|
|
5290
|
+
): Promise<StartAssistantContactCommandOutput>;
|
|
5291
|
+
startAssistantContact(
|
|
5292
|
+
args: StartAssistantContactCommandInput,
|
|
5293
|
+
cb: (err: any, data?: StartAssistantContactCommandOutput) => void,
|
|
5294
|
+
): void;
|
|
5295
|
+
startAssistantContact(
|
|
5296
|
+
args: StartAssistantContactCommandInput,
|
|
5297
|
+
options: __HttpHandlerOptions,
|
|
5298
|
+
cb: (err: any, data?: StartAssistantContactCommandOutput) => void,
|
|
5299
|
+
): void;
|
|
5283
5300
|
startAttachedFileUpload(
|
|
5284
5301
|
args: StartAttachedFileUploadCommandInput,
|
|
5285
5302
|
options?: __HttpHandlerOptions,
|
|
@@ -1144,6 +1144,10 @@ import {
|
|
|
1144
1144
|
SendOutboundWebNotificationCommandInput,
|
|
1145
1145
|
SendOutboundWebNotificationCommandOutput,
|
|
1146
1146
|
} from "./commands/SendOutboundWebNotificationCommand";
|
|
1147
|
+
import {
|
|
1148
|
+
StartAssistantContactCommandInput,
|
|
1149
|
+
StartAssistantContactCommandOutput,
|
|
1150
|
+
} from "./commands/StartAssistantContactCommand";
|
|
1147
1151
|
import {
|
|
1148
1152
|
StartAttachedFileUploadCommandInput,
|
|
1149
1153
|
StartAttachedFileUploadCommandOutput,
|
|
@@ -1812,6 +1816,7 @@ export type ServiceInputTypes =
|
|
|
1812
1816
|
| SendChatIntegrationEventCommandInput
|
|
1813
1817
|
| SendOutboundEmailCommandInput
|
|
1814
1818
|
| SendOutboundWebNotificationCommandInput
|
|
1819
|
+
| StartAssistantContactCommandInput
|
|
1815
1820
|
| StartAttachedFileUploadCommandInput
|
|
1816
1821
|
| StartChatContactCommandInput
|
|
1817
1822
|
| StartContactConversationalAnalyticsJobCommandInput
|
|
@@ -2200,6 +2205,7 @@ export type ServiceOutputTypes =
|
|
|
2200
2205
|
| SendChatIntegrationEventCommandOutput
|
|
2201
2206
|
| SendOutboundEmailCommandOutput
|
|
2202
2207
|
| SendOutboundWebNotificationCommandOutput
|
|
2208
|
+
| StartAssistantContactCommandOutput
|
|
2203
2209
|
| StartAttachedFileUploadCommandOutput
|
|
2204
2210
|
| StartChatContactCommandOutput
|
|
2205
2211
|
| StartContactConversationalAnalyticsJobCommandOutput
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { SearchContactFlowsResponse } from "../models/
|
|
2
|
+
import { SearchContactFlowsResponse } from "../models/models_3";
|
|
3
3
|
import { SearchContactFlowsRequest } from "../models/models_4";
|
|
4
4
|
export { __MetadataBearer };
|
|
5
5
|
export interface SearchContactFlowsCommandInput extends SearchContactFlowsRequest {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { StartAssistantContactRequest, StartAssistantContactResponse } from "../models/models_3";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface StartAssistantContactCommandInput extends StartAssistantContactRequest {}
|
|
5
|
+
export interface StartAssistantContactCommandOutput
|
|
6
|
+
extends StartAssistantContactResponse, __MetadataBearer {}
|
|
7
|
+
declare const StartAssistantContactCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: StartAssistantContactCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
StartAssistantContactCommandInput,
|
|
12
|
+
StartAssistantContactCommandOutput,
|
|
13
|
+
import("..").ConnectClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: StartAssistantContactCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
StartAssistantContactCommandInput,
|
|
21
|
+
StartAssistantContactCommandOutput,
|
|
22
|
+
import("..").ConnectClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class StartAssistantContactCommand extends StartAssistantContactCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: StartAssistantContactRequest;
|
|
32
|
+
output: StartAssistantContactResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: StartAssistantContactCommandInput;
|
|
36
|
+
output: StartAssistantContactCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
2
|
+
import { StartWebRTCContactResponse } from "../models/models_3";
|
|
3
|
+
import { StartWebRTCContactRequest } from "../models/models_4";
|
|
3
4
|
export { __MetadataBearer };
|
|
4
5
|
export interface StartWebRTCContactCommandInput extends StartWebRTCContactRequest {}
|
|
5
6
|
export interface StartWebRTCContactCommandOutput
|