@aws-sdk/client-connectparticipant 3.713.0 → 3.715.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.
Files changed (41) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +137 -44
  3. package/dist-cjs/runtimeConfig.js +8 -6
  4. package/dist-es/ConnectParticipant.js +4 -0
  5. package/dist-es/commands/CancelParticipantAuthenticationCommand.js +22 -0
  6. package/dist-es/commands/GetAuthenticationUrlCommand.js +22 -0
  7. package/dist-es/commands/index.js +2 -0
  8. package/dist-es/models/models_0.js +24 -24
  9. package/dist-es/protocols/Aws_restJson1.js +62 -7
  10. package/dist-es/runtimeConfig.js +8 -6
  11. package/dist-types/ConnectParticipant.d.ts +27 -1
  12. package/dist-types/ConnectParticipantClient.d.ts +35 -3
  13. package/dist-types/commands/CancelParticipantAuthenticationCommand.d.ts +87 -0
  14. package/dist-types/commands/CompleteAttachmentUploadCommand.d.ts +3 -2
  15. package/dist-types/commands/CreateParticipantConnectionCommand.d.ts +1 -0
  16. package/dist-types/commands/DescribeViewCommand.d.ts +1 -0
  17. package/dist-types/commands/DisconnectParticipantCommand.d.ts +1 -0
  18. package/dist-types/commands/GetAttachmentCommand.d.ts +3 -0
  19. package/dist-types/commands/GetAuthenticationUrlCommand.d.ts +99 -0
  20. package/dist-types/commands/GetTranscriptCommand.d.ts +6 -5
  21. package/dist-types/commands/SendEventCommand.d.ts +3 -2
  22. package/dist-types/commands/SendMessageCommand.d.ts +1 -0
  23. package/dist-types/commands/StartAttachmentUploadCommand.d.ts +1 -0
  24. package/dist-types/commands/index.d.ts +2 -0
  25. package/dist-types/index.d.ts +13 -1
  26. package/dist-types/models/models_0.d.ts +100 -36
  27. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  28. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  29. package/dist-types/runtimeConfig.d.ts +1 -0
  30. package/dist-types/runtimeConfig.native.d.ts +1 -0
  31. package/dist-types/ts3.4/ConnectParticipant.d.ts +34 -0
  32. package/dist-types/ts3.4/ConnectParticipantClient.d.ts +13 -0
  33. package/dist-types/ts3.4/commands/CancelParticipantAuthenticationCommand.d.ts +51 -0
  34. package/dist-types/ts3.4/commands/GetAuthenticationUrlCommand.d.ts +51 -0
  35. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  36. package/dist-types/ts3.4/models/models_0.d.ts +33 -18
  37. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  41. package/package.json +14 -14
@@ -3,6 +3,10 @@ import {
3
3
  HttpResponse as __HttpResponse,
4
4
  } from "@smithy/protocol-http";
5
5
  import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CancelParticipantAuthenticationCommandInput,
8
+ CancelParticipantAuthenticationCommandOutput,
9
+ } from "../commands/CancelParticipantAuthenticationCommand";
6
10
  import {
7
11
  CompleteAttachmentUploadCommandInput,
8
12
  CompleteAttachmentUploadCommandOutput,
@@ -23,6 +27,10 @@ import {
23
27
  GetAttachmentCommandInput,
24
28
  GetAttachmentCommandOutput,
25
29
  } from "../commands/GetAttachmentCommand";
30
+ import {
31
+ GetAuthenticationUrlCommandInput,
32
+ GetAuthenticationUrlCommandOutput,
33
+ } from "../commands/GetAuthenticationUrlCommand";
26
34
  import {
27
35
  GetTranscriptCommandInput,
28
36
  GetTranscriptCommandOutput,
@@ -39,6 +47,10 @@ import {
39
47
  StartAttachmentUploadCommandInput,
40
48
  StartAttachmentUploadCommandOutput,
41
49
  } from "../commands/StartAttachmentUploadCommand";
50
+ export declare const se_CancelParticipantAuthenticationCommand: (
51
+ input: CancelParticipantAuthenticationCommandInput,
52
+ context: __SerdeContext
53
+ ) => Promise<__HttpRequest>;
42
54
  export declare const se_CompleteAttachmentUploadCommand: (
43
55
  input: CompleteAttachmentUploadCommandInput,
44
56
  context: __SerdeContext
@@ -59,6 +71,10 @@ export declare const se_GetAttachmentCommand: (
59
71
  input: GetAttachmentCommandInput,
60
72
  context: __SerdeContext
61
73
  ) => Promise<__HttpRequest>;
74
+ export declare const se_GetAuthenticationUrlCommand: (
75
+ input: GetAuthenticationUrlCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
62
78
  export declare const se_GetTranscriptCommand: (
63
79
  input: GetTranscriptCommandInput,
64
80
  context: __SerdeContext
@@ -75,6 +91,10 @@ export declare const se_StartAttachmentUploadCommand: (
75
91
  input: StartAttachmentUploadCommandInput,
76
92
  context: __SerdeContext
77
93
  ) => Promise<__HttpRequest>;
94
+ export declare const de_CancelParticipantAuthenticationCommand: (
95
+ output: __HttpResponse,
96
+ context: __SerdeContext
97
+ ) => Promise<CancelParticipantAuthenticationCommandOutput>;
78
98
  export declare const de_CompleteAttachmentUploadCommand: (
79
99
  output: __HttpResponse,
80
100
  context: __SerdeContext
@@ -95,6 +115,10 @@ export declare const de_GetAttachmentCommand: (
95
115
  output: __HttpResponse,
96
116
  context: __SerdeContext
97
117
  ) => Promise<GetAttachmentCommandOutput>;
118
+ export declare const de_GetAuthenticationUrlCommand: (
119
+ output: __HttpResponse,
120
+ context: __SerdeContext
121
+ ) => Promise<GetAuthenticationUrlCommandOutput>;
98
122
  export declare const de_GetTranscriptCommand: (
99
123
  output: __HttpResponse,
100
124
  context: __SerdeContext
@@ -35,6 +35,7 @@ export declare const getRuntimeConfig: (
35
35
  utf8Encoder: (input: string | Uint8Array) => string;
36
36
  disableHostPrefix: boolean;
37
37
  serviceId: string;
38
+ profile?: string | undefined;
38
39
  logger: import("@smithy/types").Logger;
39
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
40
41
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -40,6 +40,7 @@ export declare const getRuntimeConfig: (
40
40
  utf8Encoder: (input: string | Uint8Array) => string;
41
41
  disableHostPrefix: boolean;
42
42
  serviceId: string;
43
+ profile?: string | undefined;
43
44
  logger: import("@smithy/types").Logger;
44
45
  extensions: import("./runtimeExtensions").RuntimeExtension[];
45
46
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -24,6 +24,7 @@ export declare const getRuntimeConfig: (
24
24
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
25
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
26
26
  region: string | import("@smithy/types").Provider<any>;
27
+ profile?: string | undefined;
27
28
  defaultUserAgentProvider: (
28
29
  config?:
29
30
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connectparticipant",
3
3
  "description": "AWS SDK for JavaScript Connectparticipant Client for Node.js, Browser and React Native",
4
- "version": "3.713.0",
4
+ "version": "3.715.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-connectparticipant",
@@ -20,19 +20,19 @@
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.713.0",
24
- "@aws-sdk/client-sts": "3.713.0",
25
- "@aws-sdk/core": "3.713.0",
26
- "@aws-sdk/credential-provider-node": "3.713.0",
27
- "@aws-sdk/middleware-host-header": "3.713.0",
28
- "@aws-sdk/middleware-logger": "3.713.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.713.0",
30
- "@aws-sdk/middleware-user-agent": "3.713.0",
31
- "@aws-sdk/region-config-resolver": "3.713.0",
32
- "@aws-sdk/types": "3.713.0",
33
- "@aws-sdk/util-endpoints": "3.713.0",
34
- "@aws-sdk/util-user-agent-browser": "3.713.0",
35
- "@aws-sdk/util-user-agent-node": "3.713.0",
23
+ "@aws-sdk/client-sso-oidc": "3.714.0",
24
+ "@aws-sdk/client-sts": "3.714.0",
25
+ "@aws-sdk/core": "3.714.0",
26
+ "@aws-sdk/credential-provider-node": "3.714.0",
27
+ "@aws-sdk/middleware-host-header": "3.714.0",
28
+ "@aws-sdk/middleware-logger": "3.714.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.714.0",
30
+ "@aws-sdk/middleware-user-agent": "3.714.0",
31
+ "@aws-sdk/region-config-resolver": "3.714.0",
32
+ "@aws-sdk/types": "3.714.0",
33
+ "@aws-sdk/util-endpoints": "3.714.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.714.0",
35
+ "@aws-sdk/util-user-agent-node": "3.714.0",
36
36
  "@smithy/config-resolver": "^3.0.13",
37
37
  "@smithy/core": "^2.5.5",
38
38
  "@smithy/fetch-http-handler": "^4.1.2",