@aws-sdk/client-chime-sdk-messaging 3.289.0 → 3.292.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 (48) hide show
  1. package/dist-types/commands/AssociateChannelFlowCommand.d.ts +26 -0
  2. package/dist-types/commands/BatchCreateChannelMembershipCommand.d.ts +25 -0
  3. package/dist-types/commands/ChannelFlowCallbackCommand.d.ts +23 -0
  4. package/dist-types/commands/CreateChannelBanCommand.d.ts +26 -0
  5. package/dist-types/commands/CreateChannelCommand.d.ts +26 -0
  6. package/dist-types/commands/CreateChannelFlowCommand.d.ts +26 -0
  7. package/dist-types/commands/CreateChannelMembershipCommand.d.ts +29 -0
  8. package/dist-types/commands/CreateChannelModeratorCommand.d.ts +26 -0
  9. package/dist-types/commands/DeleteChannelBanCommand.d.ts +19 -0
  10. package/dist-types/commands/DeleteChannelCommand.d.ts +19 -0
  11. package/dist-types/commands/DeleteChannelFlowCommand.d.ts +23 -0
  12. package/dist-types/commands/DeleteChannelMembershipCommand.d.ts +23 -0
  13. package/dist-types/commands/DeleteChannelMessageCommand.d.ts +19 -0
  14. package/dist-types/commands/DeleteChannelModeratorCommand.d.ts +19 -0
  15. package/dist-types/commands/DescribeChannelBanCommand.d.ts +22 -0
  16. package/dist-types/commands/DescribeChannelCommand.d.ts +19 -0
  17. package/dist-types/commands/DescribeChannelFlowCommand.d.ts +19 -0
  18. package/dist-types/commands/DescribeChannelMembershipCommand.d.ts +22 -0
  19. package/dist-types/commands/DescribeChannelMembershipForAppInstanceUserCommand.d.ts +19 -0
  20. package/dist-types/commands/DescribeChannelModeratedByAppInstanceUserCommand.d.ts +19 -0
  21. package/dist-types/commands/DescribeChannelModeratorCommand.d.ts +22 -0
  22. package/dist-types/commands/DisassociateChannelFlowCommand.d.ts +26 -0
  23. package/dist-types/commands/GetChannelMembershipPreferencesCommand.d.ts +19 -0
  24. package/dist-types/commands/GetChannelMessageCommand.d.ts +22 -0
  25. package/dist-types/commands/GetChannelMessageStatusCommand.d.ts +19 -0
  26. package/dist-types/commands/GetMessagingSessionEndpointCommand.d.ts +16 -0
  27. package/dist-types/commands/ListChannelBansCommand.d.ts +19 -0
  28. package/dist-types/commands/ListChannelFlowsCommand.d.ts +19 -0
  29. package/dist-types/commands/ListChannelMembershipsCommand.d.ts +19 -0
  30. package/dist-types/commands/ListChannelMembershipsForAppInstanceUserCommand.d.ts +19 -0
  31. package/dist-types/commands/ListChannelMessagesCommand.d.ts +19 -0
  32. package/dist-types/commands/ListChannelModeratorsCommand.d.ts +19 -0
  33. package/dist-types/commands/ListChannelsAssociatedWithChannelFlowCommand.d.ts +19 -0
  34. package/dist-types/commands/ListChannelsCommand.d.ts +19 -0
  35. package/dist-types/commands/ListChannelsModeratedByAppInstanceUserCommand.d.ts +19 -0
  36. package/dist-types/commands/ListSubChannelsCommand.d.ts +19 -0
  37. package/dist-types/commands/ListTagsForResourceCommand.d.ts +19 -0
  38. package/dist-types/commands/PutChannelMembershipPreferencesCommand.d.ts +23 -0
  39. package/dist-types/commands/RedactChannelMessageCommand.d.ts +23 -0
  40. package/dist-types/commands/SearchChannelsCommand.d.ts +19 -0
  41. package/dist-types/commands/SendChannelMessageCommand.d.ts +23 -0
  42. package/dist-types/commands/TagResourceCommand.d.ts +22 -0
  43. package/dist-types/commands/UntagResourceCommand.d.ts +19 -0
  44. package/dist-types/commands/UpdateChannelCommand.d.ts +23 -0
  45. package/dist-types/commands/UpdateChannelFlowCommand.d.ts +23 -0
  46. package/dist-types/commands/UpdateChannelMessageCommand.d.ts +23 -0
  47. package/dist-types/commands/UpdateChannelReadMarkerCommand.d.ts +23 -0
  48. package/package.json +35 -40
@@ -29,6 +29,29 @@ export interface UpdateChannelFlowCommandOutput extends UpdateChannelFlowRespons
29
29
  * @see {@link UpdateChannelFlowCommandOutput} for command's `response` shape.
30
30
  * @see {@link ChimeSDKMessagingClientResolvedConfig | config} for ChimeSDKMessagingClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input parameters don't match the service's restrictions.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request could not be processed because of conflict in the current state of the
37
+ * resource.</p>
38
+ *
39
+ * @throws {@link ForbiddenException} (client fault)
40
+ * <p>The client is permanently forbidden from making the request.</p>
41
+ *
42
+ * @throws {@link ServiceFailureException} (server fault)
43
+ * <p>The service encountered an unexpected error.</p>
44
+ *
45
+ * @throws {@link ServiceUnavailableException} (server fault)
46
+ * <p>The service is currently unavailable.</p>
47
+ *
48
+ * @throws {@link ThrottledClientException} (client fault)
49
+ * <p>The client exceeded its request rate limit.</p>
50
+ *
51
+ * @throws {@link UnauthorizedClientException} (client fault)
52
+ * <p>The client is not currently authorized to make the request.</p>
53
+ *
54
+ *
32
55
  */
33
56
  export declare class UpdateChannelFlowCommand extends $Command<UpdateChannelFlowCommandInput, UpdateChannelFlowCommandOutput, ChimeSDKMessagingClientResolvedConfig> {
34
57
  readonly input: UpdateChannelFlowCommandInput;
@@ -35,6 +35,29 @@ export interface UpdateChannelMessageCommandOutput extends UpdateChannelMessageR
35
35
  * @see {@link UpdateChannelMessageCommandOutput} for command's `response` shape.
36
36
  * @see {@link ChimeSDKMessagingClientResolvedConfig | config} for ChimeSDKMessagingClient's `config` shape.
37
37
  *
38
+ * @throws {@link BadRequestException} (client fault)
39
+ * <p>The input parameters don't match the service's restrictions.</p>
40
+ *
41
+ * @throws {@link ConflictException} (client fault)
42
+ * <p>The request could not be processed because of conflict in the current state of the
43
+ * resource.</p>
44
+ *
45
+ * @throws {@link ForbiddenException} (client fault)
46
+ * <p>The client is permanently forbidden from making the request.</p>
47
+ *
48
+ * @throws {@link ServiceFailureException} (server fault)
49
+ * <p>The service encountered an unexpected error.</p>
50
+ *
51
+ * @throws {@link ServiceUnavailableException} (server fault)
52
+ * <p>The service is currently unavailable.</p>
53
+ *
54
+ * @throws {@link ThrottledClientException} (client fault)
55
+ * <p>The client exceeded its request rate limit.</p>
56
+ *
57
+ * @throws {@link UnauthorizedClientException} (client fault)
58
+ * <p>The client is not currently authorized to make the request.</p>
59
+ *
60
+ *
38
61
  */
39
62
  export declare class UpdateChannelMessageCommand extends $Command<UpdateChannelMessageCommandInput, UpdateChannelMessageCommandOutput, ChimeSDKMessagingClientResolvedConfig> {
40
63
  readonly input: UpdateChannelMessageCommandInput;
@@ -35,6 +35,29 @@ export interface UpdateChannelReadMarkerCommandOutput extends UpdateChannelReadM
35
35
  * @see {@link UpdateChannelReadMarkerCommandOutput} for command's `response` shape.
36
36
  * @see {@link ChimeSDKMessagingClientResolvedConfig | config} for ChimeSDKMessagingClient's `config` shape.
37
37
  *
38
+ * @throws {@link BadRequestException} (client fault)
39
+ * <p>The input parameters don't match the service's restrictions.</p>
40
+ *
41
+ * @throws {@link ConflictException} (client fault)
42
+ * <p>The request could not be processed because of conflict in the current state of the
43
+ * resource.</p>
44
+ *
45
+ * @throws {@link ForbiddenException} (client fault)
46
+ * <p>The client is permanently forbidden from making the request.</p>
47
+ *
48
+ * @throws {@link ServiceFailureException} (server fault)
49
+ * <p>The service encountered an unexpected error.</p>
50
+ *
51
+ * @throws {@link ServiceUnavailableException} (server fault)
52
+ * <p>The service is currently unavailable.</p>
53
+ *
54
+ * @throws {@link ThrottledClientException} (client fault)
55
+ * <p>The client exceeded its request rate limit.</p>
56
+ *
57
+ * @throws {@link UnauthorizedClientException} (client fault)
58
+ * <p>The client is not currently authorized to make the request.</p>
59
+ *
60
+ *
38
61
  */
39
62
  export declare class UpdateChannelReadMarkerCommand extends $Command<UpdateChannelReadMarkerCommandInput, UpdateChannelReadMarkerCommandOutput, ChimeSDKMessagingClientResolvedConfig> {
40
63
  readonly input: UpdateChannelReadMarkerCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-chime-sdk-messaging",
3
3
  "description": "AWS SDK for JavaScript Chime Sdk Messaging Client for Node.js, Browser and React Native",
4
- "version": "3.289.0",
4
+ "version": "3.292.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",
@@ -20,57 +20,52 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
45
- "@aws-sdk/util-base64": "3.208.0",
46
- "@aws-sdk/util-body-length-browser": "3.188.0",
47
- "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
54
- "@aws-sdk/util-utf8": "3.254.0",
23
+ "@aws-sdk/client-sts": "3.292.0",
24
+ "@aws-sdk/config-resolver": "3.292.0",
25
+ "@aws-sdk/credential-provider-node": "3.292.0",
26
+ "@aws-sdk/fetch-http-handler": "3.292.0",
27
+ "@aws-sdk/hash-node": "3.292.0",
28
+ "@aws-sdk/invalid-dependency": "3.292.0",
29
+ "@aws-sdk/middleware-content-length": "3.292.0",
30
+ "@aws-sdk/middleware-endpoint": "3.292.0",
31
+ "@aws-sdk/middleware-host-header": "3.292.0",
32
+ "@aws-sdk/middleware-logger": "3.292.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.292.0",
34
+ "@aws-sdk/middleware-retry": "3.292.0",
35
+ "@aws-sdk/middleware-serde": "3.292.0",
36
+ "@aws-sdk/middleware-signing": "3.292.0",
37
+ "@aws-sdk/middleware-stack": "3.292.0",
38
+ "@aws-sdk/middleware-user-agent": "3.292.0",
39
+ "@aws-sdk/node-config-provider": "3.292.0",
40
+ "@aws-sdk/node-http-handler": "3.292.0",
41
+ "@aws-sdk/protocol-http": "3.292.0",
42
+ "@aws-sdk/smithy-client": "3.292.0",
43
+ "@aws-sdk/types": "3.292.0",
44
+ "@aws-sdk/url-parser": "3.292.0",
45
+ "@aws-sdk/util-base64": "3.292.0",
46
+ "@aws-sdk/util-body-length-browser": "3.292.0",
47
+ "@aws-sdk/util-body-length-node": "3.292.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.292.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.292.0",
50
+ "@aws-sdk/util-endpoints": "3.292.0",
51
+ "@aws-sdk/util-retry": "3.292.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.292.0",
53
+ "@aws-sdk/util-user-agent-node": "3.292.0",
54
+ "@aws-sdk/util-utf8": "3.292.0",
55
55
  "tslib": "^2.3.1",
56
56
  "uuid": "^8.3.2"
57
57
  },
58
58
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.208.0",
59
+ "@aws-sdk/service-client-documentation-generator": "3.292.0",
60
60
  "@tsconfig/node14": "1.0.3",
61
61
  "@types/node": "^14.14.31",
62
62
  "@types/uuid": "^8.3.0",
63
63
  "concurrently": "7.0.0",
64
64
  "downlevel-dts": "0.10.1",
65
65
  "rimraf": "3.0.2",
66
- "typedoc": "0.19.2",
66
+ "typedoc": "0.23.23",
67
67
  "typescript": "~4.6.2"
68
68
  },
69
- "overrides": {
70
- "typedoc": {
71
- "typescript": "~4.6.2"
72
- }
73
- },
74
69
  "engines": {
75
70
  "node": ">=14.0.0"
76
71
  },