@aws-sdk/client-codebuild 3.535.0 → 3.538.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-types/models/models_0.d.ts +35 -10
- package/package.json +1 -1
|
@@ -3155,9 +3155,9 @@ export type WebhookFilterType = (typeof WebhookFilterType)[keyof typeof WebhookF
|
|
|
3155
3155
|
*/
|
|
3156
3156
|
export interface WebhookFilter {
|
|
3157
3157
|
/**
|
|
3158
|
-
* <p> The type of webhook filter. There are
|
|
3158
|
+
* <p> The type of webhook filter. There are eight webhook filter types: <code>EVENT</code>,
|
|
3159
3159
|
* <code>ACTOR_ACCOUNT_ID</code>, <code>HEAD_REF</code>, <code>BASE_REF</code>,
|
|
3160
|
-
*
|
|
3160
|
+
* <code>FILE_PATH</code>, <code>COMMIT_MESSAGE</code>, <code>TAG_NAME</code>, and <code>RELEASE_NAME</code>. </p>
|
|
3161
3161
|
* <ul>
|
|
3162
3162
|
* <li>
|
|
3163
3163
|
* <p>
|
|
@@ -3166,17 +3166,17 @@ export interface WebhookFilter {
|
|
|
3166
3166
|
* <ul>
|
|
3167
3167
|
* <li>
|
|
3168
3168
|
* <p> A webhook event triggers a build when the provided <code>pattern</code>
|
|
3169
|
-
* matches one of
|
|
3169
|
+
* matches one of eight event types: <code>PUSH</code>,
|
|
3170
3170
|
* <code>PULL_REQUEST_CREATED</code>, <code>PULL_REQUEST_UPDATED</code>,
|
|
3171
|
-
* <code>PULL_REQUEST_CLOSED</code>,
|
|
3172
|
-
* <code>
|
|
3173
|
-
* <code>PULL_REQUEST_MERGED</code>. The <code>EVENT</code> patterns are
|
|
3171
|
+
* <code>PULL_REQUEST_CLOSED</code>, <code>PULL_REQUEST_REOPENED</code>,
|
|
3172
|
+
* <code>PULL_REQUEST_MERGED</code>, <code>RELEASED</code>, and <code>PRERELEASED</code>. The <code>EVENT</code> patterns are
|
|
3174
3173
|
* specified as a comma-separated string. For example, <code>PUSH,
|
|
3175
3174
|
* PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED</code> filters all push, pull
|
|
3176
3175
|
* request created, and pull request updated events. </p>
|
|
3177
3176
|
* <note>
|
|
3178
3177
|
* <p> The <code>PULL_REQUEST_REOPENED</code> works with GitHub and GitHub
|
|
3179
|
-
* Enterprise only. </
|
|
3178
|
+
* Enterprise only. The <code>RELEASED</code> and <code>PRERELEASED</code> work
|
|
3179
|
+
* with GitHub only.</p>
|
|
3180
3180
|
* </note>
|
|
3181
3181
|
* </li>
|
|
3182
3182
|
* </ul>
|
|
@@ -3198,9 +3198,10 @@ export interface WebhookFilter {
|
|
|
3198
3198
|
* <p> A webhook event triggers a build when the head reference matches the
|
|
3199
3199
|
* regular expression <code>pattern</code>. For example,
|
|
3200
3200
|
* <code>refs/heads/branch-name</code> and <code>refs/tags/tag-name</code>. </p>
|
|
3201
|
-
* <
|
|
3202
|
-
*
|
|
3203
|
-
*
|
|
3201
|
+
* <note>
|
|
3202
|
+
* <p> Works with GitHub and GitHub Enterprise push, GitHub and GitHub
|
|
3203
|
+
* Enterprise pull request, Bitbucket push, and Bitbucket pull request events.</p>
|
|
3204
|
+
* </note>
|
|
3204
3205
|
* </li>
|
|
3205
3206
|
* </ul>
|
|
3206
3207
|
* </li>
|
|
@@ -3245,6 +3246,30 @@ export interface WebhookFilter {
|
|
|
3245
3246
|
* </li>
|
|
3246
3247
|
* </ul>
|
|
3247
3248
|
* </li>
|
|
3249
|
+
* <li>
|
|
3250
|
+
* <p>TAG_NAME</p>
|
|
3251
|
+
* <ul>
|
|
3252
|
+
* <li>
|
|
3253
|
+
* <p>A webhook triggers a build when the tag name of the release matches the
|
|
3254
|
+
* regular expression <code>pattern</code>.</p>
|
|
3255
|
+
* <note>
|
|
3256
|
+
* <p> Works with <code>RELEASED</code> and <code>PRERELEASED</code> events only. </p>
|
|
3257
|
+
* </note>
|
|
3258
|
+
* </li>
|
|
3259
|
+
* </ul>
|
|
3260
|
+
* </li>
|
|
3261
|
+
* <li>
|
|
3262
|
+
* <p>RELEASE_NAME</p>
|
|
3263
|
+
* <ul>
|
|
3264
|
+
* <li>
|
|
3265
|
+
* <p>A webhook triggers a build when the release name matches the
|
|
3266
|
+
* regular expression <code>pattern</code>.</p>
|
|
3267
|
+
* <note>
|
|
3268
|
+
* <p> Works with <code>RELEASED</code> and <code>PRERELEASED</code> events only. </p>
|
|
3269
|
+
* </note>
|
|
3270
|
+
* </li>
|
|
3271
|
+
* </ul>
|
|
3272
|
+
* </li>
|
|
3248
3273
|
* </ul>
|
|
3249
3274
|
* @public
|
|
3250
3275
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codebuild",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codebuild Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.538.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-codebuild",
|