@aws-sdk/client-codestar-notifications 3.306.0 → 3.309.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 (31) hide show
  1. package/dist-cjs/commands/CreateNotificationRuleCommand.js +2 -2
  2. package/dist-cjs/commands/DeleteNotificationRuleCommand.js +2 -2
  3. package/dist-cjs/commands/DeleteTargetCommand.js +2 -2
  4. package/dist-cjs/commands/DescribeNotificationRuleCommand.js +2 -2
  5. package/dist-cjs/commands/ListEventTypesCommand.js +2 -2
  6. package/dist-cjs/commands/ListNotificationRulesCommand.js +2 -2
  7. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  8. package/dist-cjs/commands/ListTargetsCommand.js +2 -2
  9. package/dist-cjs/commands/SubscribeCommand.js +2 -2
  10. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  11. package/dist-cjs/commands/UnsubscribeCommand.js +2 -2
  12. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  13. package/dist-cjs/commands/UpdateNotificationRuleCommand.js +2 -2
  14. package/dist-cjs/protocols/Aws_restJson1.js +164 -170
  15. package/dist-es/commands/CreateNotificationRuleCommand.js +3 -3
  16. package/dist-es/commands/DeleteNotificationRuleCommand.js +3 -3
  17. package/dist-es/commands/DeleteTargetCommand.js +3 -3
  18. package/dist-es/commands/DescribeNotificationRuleCommand.js +3 -3
  19. package/dist-es/commands/ListEventTypesCommand.js +3 -3
  20. package/dist-es/commands/ListNotificationRulesCommand.js +3 -3
  21. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  22. package/dist-es/commands/ListTargetsCommand.js +3 -3
  23. package/dist-es/commands/SubscribeCommand.js +3 -3
  24. package/dist-es/commands/TagResourceCommand.js +3 -3
  25. package/dist-es/commands/UnsubscribeCommand.js +3 -3
  26. package/dist-es/commands/UntagResourceCommand.js +3 -3
  27. package/dist-es/commands/UpdateNotificationRuleCommand.js +3 -3
  28. package/dist-es/protocols/Aws_restJson1.js +137 -143
  29. package/dist-types/protocols/Aws_restJson1.d.ts +104 -26
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +26 -26
  31. package/package.json +6 -6
@@ -13,29 +13,107 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/T
13
13
  import { UnsubscribeCommandInput, UnsubscribeCommandOutput } from "../commands/UnsubscribeCommand";
14
14
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
15
15
  import { UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput } from "../commands/UpdateNotificationRuleCommand";
16
- export declare const serializeAws_restJson1CreateNotificationRuleCommand: (input: CreateNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
- export declare const serializeAws_restJson1DeleteNotificationRuleCommand: (input: DeleteNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
- export declare const serializeAws_restJson1DeleteTargetCommand: (input: DeleteTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_restJson1DescribeNotificationRuleCommand: (input: DescribeNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_restJson1ListEventTypesCommand: (input: ListEventTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_restJson1ListNotificationRulesCommand: (input: ListNotificationRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_restJson1ListTargetsCommand: (input: ListTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_restJson1SubscribeCommand: (input: SubscribeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_restJson1UnsubscribeCommand: (input: UnsubscribeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1UpdateNotificationRuleCommand: (input: UpdateNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const deserializeAws_restJson1CreateNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNotificationRuleCommandOutput>;
30
- export declare const deserializeAws_restJson1DeleteNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNotificationRuleCommandOutput>;
31
- export declare const deserializeAws_restJson1DeleteTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTargetCommandOutput>;
32
- export declare const deserializeAws_restJson1DescribeNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeNotificationRuleCommandOutput>;
33
- export declare const deserializeAws_restJson1ListEventTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventTypesCommandOutput>;
34
- export declare const deserializeAws_restJson1ListNotificationRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNotificationRulesCommandOutput>;
35
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
36
- export declare const deserializeAws_restJson1ListTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTargetsCommandOutput>;
37
- export declare const deserializeAws_restJson1SubscribeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubscribeCommandOutput>;
38
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
39
- export declare const deserializeAws_restJson1UnsubscribeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UnsubscribeCommandOutput>;
40
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
41
- export declare const deserializeAws_restJson1UpdateNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNotificationRuleCommandOutput>;
16
+ /**
17
+ * serializeAws_restJson1CreateNotificationRuleCommand
18
+ */
19
+ export declare const se_CreateNotificationRuleCommand: (input: CreateNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ /**
21
+ * serializeAws_restJson1DeleteNotificationRuleCommand
22
+ */
23
+ export declare const se_DeleteNotificationRuleCommand: (input: DeleteNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ /**
25
+ * serializeAws_restJson1DeleteTargetCommand
26
+ */
27
+ export declare const se_DeleteTargetCommand: (input: DeleteTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ /**
29
+ * serializeAws_restJson1DescribeNotificationRuleCommand
30
+ */
31
+ export declare const se_DescribeNotificationRuleCommand: (input: DescribeNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ /**
33
+ * serializeAws_restJson1ListEventTypesCommand
34
+ */
35
+ export declare const se_ListEventTypesCommand: (input: ListEventTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ /**
37
+ * serializeAws_restJson1ListNotificationRulesCommand
38
+ */
39
+ export declare const se_ListNotificationRulesCommand: (input: ListNotificationRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
+ /**
41
+ * serializeAws_restJson1ListTagsForResourceCommand
42
+ */
43
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
+ /**
45
+ * serializeAws_restJson1ListTargetsCommand
46
+ */
47
+ export declare const se_ListTargetsCommand: (input: ListTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
+ /**
49
+ * serializeAws_restJson1SubscribeCommand
50
+ */
51
+ export declare const se_SubscribeCommand: (input: SubscribeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
+ /**
53
+ * serializeAws_restJson1TagResourceCommand
54
+ */
55
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
+ /**
57
+ * serializeAws_restJson1UnsubscribeCommand
58
+ */
59
+ export declare const se_UnsubscribeCommand: (input: UnsubscribeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
+ /**
61
+ * serializeAws_restJson1UntagResourceCommand
62
+ */
63
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
+ /**
65
+ * serializeAws_restJson1UpdateNotificationRuleCommand
66
+ */
67
+ export declare const se_UpdateNotificationRuleCommand: (input: UpdateNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
+ /**
69
+ * deserializeAws_restJson1CreateNotificationRuleCommand
70
+ */
71
+ export declare const de_CreateNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNotificationRuleCommandOutput>;
72
+ /**
73
+ * deserializeAws_restJson1DeleteNotificationRuleCommand
74
+ */
75
+ export declare const de_DeleteNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNotificationRuleCommandOutput>;
76
+ /**
77
+ * deserializeAws_restJson1DeleteTargetCommand
78
+ */
79
+ export declare const de_DeleteTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTargetCommandOutput>;
80
+ /**
81
+ * deserializeAws_restJson1DescribeNotificationRuleCommand
82
+ */
83
+ export declare const de_DescribeNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeNotificationRuleCommandOutput>;
84
+ /**
85
+ * deserializeAws_restJson1ListEventTypesCommand
86
+ */
87
+ export declare const de_ListEventTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventTypesCommandOutput>;
88
+ /**
89
+ * deserializeAws_restJson1ListNotificationRulesCommand
90
+ */
91
+ export declare const de_ListNotificationRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNotificationRulesCommandOutput>;
92
+ /**
93
+ * deserializeAws_restJson1ListTagsForResourceCommand
94
+ */
95
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
96
+ /**
97
+ * deserializeAws_restJson1ListTargetsCommand
98
+ */
99
+ export declare const de_ListTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTargetsCommandOutput>;
100
+ /**
101
+ * deserializeAws_restJson1SubscribeCommand
102
+ */
103
+ export declare const de_SubscribeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubscribeCommandOutput>;
104
+ /**
105
+ * deserializeAws_restJson1TagResourceCommand
106
+ */
107
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
108
+ /**
109
+ * deserializeAws_restJson1UnsubscribeCommand
110
+ */
111
+ export declare const de_UnsubscribeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UnsubscribeCommandOutput>;
112
+ /**
113
+ * deserializeAws_restJson1UntagResourceCommand
114
+ */
115
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
116
+ /**
117
+ * deserializeAws_restJson1UpdateNotificationRuleCommand
118
+ */
119
+ export declare const de_UpdateNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNotificationRuleCommandOutput>;
@@ -55,107 +55,107 @@ import {
55
55
  UpdateNotificationRuleCommandInput,
56
56
  UpdateNotificationRuleCommandOutput,
57
57
  } from "../commands/UpdateNotificationRuleCommand";
58
- export declare const serializeAws_restJson1CreateNotificationRuleCommand: (
58
+ export declare const se_CreateNotificationRuleCommand: (
59
59
  input: CreateNotificationRuleCommandInput,
60
60
  context: __SerdeContext
61
61
  ) => Promise<__HttpRequest>;
62
- export declare const serializeAws_restJson1DeleteNotificationRuleCommand: (
62
+ export declare const se_DeleteNotificationRuleCommand: (
63
63
  input: DeleteNotificationRuleCommandInput,
64
64
  context: __SerdeContext
65
65
  ) => Promise<__HttpRequest>;
66
- export declare const serializeAws_restJson1DeleteTargetCommand: (
66
+ export declare const se_DeleteTargetCommand: (
67
67
  input: DeleteTargetCommandInput,
68
68
  context: __SerdeContext
69
69
  ) => Promise<__HttpRequest>;
70
- export declare const serializeAws_restJson1DescribeNotificationRuleCommand: (
70
+ export declare const se_DescribeNotificationRuleCommand: (
71
71
  input: DescribeNotificationRuleCommandInput,
72
72
  context: __SerdeContext
73
73
  ) => Promise<__HttpRequest>;
74
- export declare const serializeAws_restJson1ListEventTypesCommand: (
74
+ export declare const se_ListEventTypesCommand: (
75
75
  input: ListEventTypesCommandInput,
76
76
  context: __SerdeContext
77
77
  ) => Promise<__HttpRequest>;
78
- export declare const serializeAws_restJson1ListNotificationRulesCommand: (
78
+ export declare const se_ListNotificationRulesCommand: (
79
79
  input: ListNotificationRulesCommandInput,
80
80
  context: __SerdeContext
81
81
  ) => Promise<__HttpRequest>;
82
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (
82
+ export declare const se_ListTagsForResourceCommand: (
83
83
  input: ListTagsForResourceCommandInput,
84
84
  context: __SerdeContext
85
85
  ) => Promise<__HttpRequest>;
86
- export declare const serializeAws_restJson1ListTargetsCommand: (
86
+ export declare const se_ListTargetsCommand: (
87
87
  input: ListTargetsCommandInput,
88
88
  context: __SerdeContext
89
89
  ) => Promise<__HttpRequest>;
90
- export declare const serializeAws_restJson1SubscribeCommand: (
90
+ export declare const se_SubscribeCommand: (
91
91
  input: SubscribeCommandInput,
92
92
  context: __SerdeContext
93
93
  ) => Promise<__HttpRequest>;
94
- export declare const serializeAws_restJson1TagResourceCommand: (
94
+ export declare const se_TagResourceCommand: (
95
95
  input: TagResourceCommandInput,
96
96
  context: __SerdeContext
97
97
  ) => Promise<__HttpRequest>;
98
- export declare const serializeAws_restJson1UnsubscribeCommand: (
98
+ export declare const se_UnsubscribeCommand: (
99
99
  input: UnsubscribeCommandInput,
100
100
  context: __SerdeContext
101
101
  ) => Promise<__HttpRequest>;
102
- export declare const serializeAws_restJson1UntagResourceCommand: (
102
+ export declare const se_UntagResourceCommand: (
103
103
  input: UntagResourceCommandInput,
104
104
  context: __SerdeContext
105
105
  ) => Promise<__HttpRequest>;
106
- export declare const serializeAws_restJson1UpdateNotificationRuleCommand: (
106
+ export declare const se_UpdateNotificationRuleCommand: (
107
107
  input: UpdateNotificationRuleCommandInput,
108
108
  context: __SerdeContext
109
109
  ) => Promise<__HttpRequest>;
110
- export declare const deserializeAws_restJson1CreateNotificationRuleCommand: (
110
+ export declare const de_CreateNotificationRuleCommand: (
111
111
  output: __HttpResponse,
112
112
  context: __SerdeContext
113
113
  ) => Promise<CreateNotificationRuleCommandOutput>;
114
- export declare const deserializeAws_restJson1DeleteNotificationRuleCommand: (
114
+ export declare const de_DeleteNotificationRuleCommand: (
115
115
  output: __HttpResponse,
116
116
  context: __SerdeContext
117
117
  ) => Promise<DeleteNotificationRuleCommandOutput>;
118
- export declare const deserializeAws_restJson1DeleteTargetCommand: (
118
+ export declare const de_DeleteTargetCommand: (
119
119
  output: __HttpResponse,
120
120
  context: __SerdeContext
121
121
  ) => Promise<DeleteTargetCommandOutput>;
122
- export declare const deserializeAws_restJson1DescribeNotificationRuleCommand: (
122
+ export declare const de_DescribeNotificationRuleCommand: (
123
123
  output: __HttpResponse,
124
124
  context: __SerdeContext
125
125
  ) => Promise<DescribeNotificationRuleCommandOutput>;
126
- export declare const deserializeAws_restJson1ListEventTypesCommand: (
126
+ export declare const de_ListEventTypesCommand: (
127
127
  output: __HttpResponse,
128
128
  context: __SerdeContext
129
129
  ) => Promise<ListEventTypesCommandOutput>;
130
- export declare const deserializeAws_restJson1ListNotificationRulesCommand: (
130
+ export declare const de_ListNotificationRulesCommand: (
131
131
  output: __HttpResponse,
132
132
  context: __SerdeContext
133
133
  ) => Promise<ListNotificationRulesCommandOutput>;
134
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
134
+ export declare const de_ListTagsForResourceCommand: (
135
135
  output: __HttpResponse,
136
136
  context: __SerdeContext
137
137
  ) => Promise<ListTagsForResourceCommandOutput>;
138
- export declare const deserializeAws_restJson1ListTargetsCommand: (
138
+ export declare const de_ListTargetsCommand: (
139
139
  output: __HttpResponse,
140
140
  context: __SerdeContext
141
141
  ) => Promise<ListTargetsCommandOutput>;
142
- export declare const deserializeAws_restJson1SubscribeCommand: (
142
+ export declare const de_SubscribeCommand: (
143
143
  output: __HttpResponse,
144
144
  context: __SerdeContext
145
145
  ) => Promise<SubscribeCommandOutput>;
146
- export declare const deserializeAws_restJson1TagResourceCommand: (
146
+ export declare const de_TagResourceCommand: (
147
147
  output: __HttpResponse,
148
148
  context: __SerdeContext
149
149
  ) => Promise<TagResourceCommandOutput>;
150
- export declare const deserializeAws_restJson1UnsubscribeCommand: (
150
+ export declare const de_UnsubscribeCommand: (
151
151
  output: __HttpResponse,
152
152
  context: __SerdeContext
153
153
  ) => Promise<UnsubscribeCommandOutput>;
154
- export declare const deserializeAws_restJson1UntagResourceCommand: (
154
+ export declare const de_UntagResourceCommand: (
155
155
  output: __HttpResponse,
156
156
  context: __SerdeContext
157
157
  ) => Promise<UntagResourceCommandOutput>;
158
- export declare const deserializeAws_restJson1UpdateNotificationRuleCommand: (
158
+ export declare const de_UpdateNotificationRuleCommand: (
159
159
  output: __HttpResponse,
160
160
  context: __SerdeContext
161
161
  ) => Promise<UpdateNotificationRuleCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codestar-notifications",
3
3
  "description": "AWS SDK for JavaScript Codestar Notifications Client for Node.js, Browser and React Native",
4
- "version": "3.306.0",
4
+ "version": "3.309.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.306.0",
24
+ "@aws-sdk/client-sts": "3.309.0",
25
25
  "@aws-sdk/config-resolver": "3.306.0",
26
- "@aws-sdk/credential-provider-node": "3.306.0",
26
+ "@aws-sdk/credential-provider-node": "3.309.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.306.0",
28
28
  "@aws-sdk/hash-node": "3.306.0",
29
29
  "@aws-sdk/invalid-dependency": "3.306.0",
@@ -40,14 +40,14 @@
40
40
  "@aws-sdk/node-config-provider": "3.306.0",
41
41
  "@aws-sdk/node-http-handler": "3.306.0",
42
42
  "@aws-sdk/protocol-http": "3.306.0",
43
- "@aws-sdk/smithy-client": "3.306.0",
43
+ "@aws-sdk/smithy-client": "3.309.0",
44
44
  "@aws-sdk/types": "3.306.0",
45
45
  "@aws-sdk/url-parser": "3.306.0",
46
46
  "@aws-sdk/util-base64": "3.303.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.303.0",
48
48
  "@aws-sdk/util-body-length-node": "3.303.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.306.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.306.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.309.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.309.0",
51
51
  "@aws-sdk/util-endpoints": "3.306.0",
52
52
  "@aws-sdk/util-retry": "3.306.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.306.0",