@aws-sdk/client-codecommit 3.476.0 → 3.478.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-cjs/pagination/DescribeMergeConflictsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribePullRequestEventsPaginator.js +2 -24
- package/dist-cjs/pagination/GetCommentReactionsPaginator.js +2 -24
- package/dist-cjs/pagination/GetCommentsForComparedCommitPaginator.js +2 -24
- package/dist-cjs/pagination/GetCommentsForPullRequestPaginator.js +2 -24
- package/dist-cjs/pagination/GetDifferencesPaginator.js +2 -24
- package/dist-cjs/pagination/GetMergeConflictsPaginator.js +2 -24
- package/dist-cjs/pagination/ListApprovalRuleTemplatesPaginator.js +2 -24
- package/dist-cjs/pagination/ListAssociatedApprovalRuleTemplatesForRepositoryPaginator.js +2 -24
- package/dist-cjs/pagination/ListBranchesPaginator.js +2 -23
- package/dist-cjs/pagination/ListFileCommitHistoryPaginator.js +2 -24
- package/dist-cjs/pagination/ListPullRequestsPaginator.js +2 -24
- package/dist-cjs/pagination/ListRepositoriesForApprovalRuleTemplatePaginator.js +2 -24
- package/dist-cjs/pagination/ListRepositoriesPaginator.js +2 -23
- package/dist-es/pagination/DescribeMergeConflictsPaginator.js +2 -23
- package/dist-es/pagination/DescribePullRequestEventsPaginator.js +2 -23
- package/dist-es/pagination/GetCommentReactionsPaginator.js +2 -23
- package/dist-es/pagination/GetCommentsForComparedCommitPaginator.js +2 -23
- package/dist-es/pagination/GetCommentsForPullRequestPaginator.js +2 -23
- package/dist-es/pagination/GetDifferencesPaginator.js +2 -23
- package/dist-es/pagination/GetMergeConflictsPaginator.js +2 -23
- package/dist-es/pagination/ListApprovalRuleTemplatesPaginator.js +2 -23
- package/dist-es/pagination/ListAssociatedApprovalRuleTemplatesForRepositoryPaginator.js +2 -23
- package/dist-es/pagination/ListBranchesPaginator.js +2 -22
- package/dist-es/pagination/ListFileCommitHistoryPaginator.js +2 -23
- package/dist-es/pagination/ListPullRequestsPaginator.js +2 -23
- package/dist-es/pagination/ListRepositoriesForApprovalRuleTemplatePaginator.js +2 -23
- package/dist-es/pagination/ListRepositoriesPaginator.js +2 -22
- package/dist-types/pagination/DescribeMergeConflictsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribePullRequestEventsPaginator.d.ts +1 -1
- package/dist-types/pagination/GetCommentReactionsPaginator.d.ts +1 -1
- package/dist-types/pagination/GetCommentsForComparedCommitPaginator.d.ts +1 -1
- package/dist-types/pagination/GetCommentsForPullRequestPaginator.d.ts +1 -1
- package/dist-types/pagination/GetDifferencesPaginator.d.ts +1 -1
- package/dist-types/pagination/GetMergeConflictsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListApprovalRuleTemplatesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAssociatedApprovalRuleTemplatesForRepositoryPaginator.d.ts +1 -1
- package/dist-types/pagination/ListBranchesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFileCommitHistoryPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPullRequestsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListRepositoriesForApprovalRuleTemplatePaginator.d.ts +1 -1
- package/dist-types/pagination/ListRepositoriesPaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/DescribeMergeConflictsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribePullRequestEventsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/GetCommentReactionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/GetCommentsForComparedCommitPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/GetCommentsForPullRequestPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/GetDifferencesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/GetMergeConflictsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListApprovalRuleTemplatesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListAssociatedApprovalRuleTemplatesForRepositoryPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListBranchesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListFileCommitHistoryPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPullRequestsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListRepositoriesForApprovalRuleTemplatePaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListRepositoriesPaginator.d.ts +3 -3
- package/package.json +7 -6
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { CodeCommitClient } from "../CodeCommitClient";
|
|
2
3
|
import { GetMergeConflictsCommand, } from "../commands/GetMergeConflictsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new GetMergeConflictsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateGetMergeConflicts(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
input["maxConflictFiles"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof CodeCommitClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected CodeCommit | CodeCommitClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.nextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateGetMergeConflicts = createPaginator(CodeCommitClient, GetMergeConflictsCommand, "nextToken", "nextToken", "maxConflictFiles");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { CodeCommitClient } from "../CodeCommitClient";
|
|
2
3
|
import { ListApprovalRuleTemplatesCommand, } from "../commands/ListApprovalRuleTemplatesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListApprovalRuleTemplatesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListApprovalRuleTemplates(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
input["maxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof CodeCommitClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected CodeCommit | CodeCommitClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.nextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListApprovalRuleTemplates = createPaginator(CodeCommitClient, ListApprovalRuleTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { CodeCommitClient } from "../CodeCommitClient";
|
|
2
3
|
import { ListAssociatedApprovalRuleTemplatesForRepositoryCommand, } from "../commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListAssociatedApprovalRuleTemplatesForRepositoryCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListAssociatedApprovalRuleTemplatesForRepository(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
input["maxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof CodeCommitClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected CodeCommit | CodeCommitClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.nextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListAssociatedApprovalRuleTemplatesForRepository = createPaginator(CodeCommitClient, ListAssociatedApprovalRuleTemplatesForRepositoryCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,24 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { CodeCommitClient } from "../CodeCommitClient";
|
|
2
3
|
import { ListBranchesCommand, } from "../commands/ListBranchesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListBranchesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListBranches(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
if (config.client instanceof CodeCommitClient) {
|
|
13
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
throw new Error("Invalid client, expected CodeCommit | CodeCommitClient");
|
|
17
|
-
}
|
|
18
|
-
yield page;
|
|
19
|
-
const prevToken = token;
|
|
20
|
-
token = page.nextToken;
|
|
21
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
22
|
-
}
|
|
23
|
-
return undefined;
|
|
24
|
-
}
|
|
4
|
+
export const paginateListBranches = createPaginator(CodeCommitClient, ListBranchesCommand, "nextToken", "nextToken", "");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { CodeCommitClient } from "../CodeCommitClient";
|
|
2
3
|
import { ListFileCommitHistoryCommand, } from "../commands/ListFileCommitHistoryCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListFileCommitHistoryCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListFileCommitHistory(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
input["maxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof CodeCommitClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected CodeCommit | CodeCommitClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.nextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListFileCommitHistory = createPaginator(CodeCommitClient, ListFileCommitHistoryCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { CodeCommitClient } from "../CodeCommitClient";
|
|
2
3
|
import { ListPullRequestsCommand, } from "../commands/ListPullRequestsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPullRequestsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPullRequests(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
input["maxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof CodeCommitClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected CodeCommit | CodeCommitClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.nextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListPullRequests = createPaginator(CodeCommitClient, ListPullRequestsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { CodeCommitClient } from "../CodeCommitClient";
|
|
2
3
|
import { ListRepositoriesForApprovalRuleTemplateCommand, } from "../commands/ListRepositoriesForApprovalRuleTemplateCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListRepositoriesForApprovalRuleTemplateCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListRepositoriesForApprovalRuleTemplate(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
input["maxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof CodeCommitClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected CodeCommit | CodeCommitClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.nextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListRepositoriesForApprovalRuleTemplate = createPaginator(CodeCommitClient, ListRepositoriesForApprovalRuleTemplateCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,24 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { CodeCommitClient } from "../CodeCommitClient";
|
|
2
3
|
import { ListRepositoriesCommand, } from "../commands/ListRepositoriesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListRepositoriesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListRepositories(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
if (config.client instanceof CodeCommitClient) {
|
|
13
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
throw new Error("Invalid client, expected CodeCommit | CodeCommitClient");
|
|
17
|
-
}
|
|
18
|
-
yield page;
|
|
19
|
-
const prevToken = token;
|
|
20
|
-
token = page.nextToken;
|
|
21
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
22
|
-
}
|
|
23
|
-
return undefined;
|
|
24
|
-
}
|
|
4
|
+
export const paginateListRepositories = createPaginator(CodeCommitClient, ListRepositoriesCommand, "nextToken", "nextToken", "");
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeMergeConflicts: (config: CodeCommitPaginationConfiguration, input: DescribeMergeConflictsCommandInput, ...rest: any[]) => Paginator<DescribeMergeConflictsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribePullRequestEvents: (config: CodeCommitPaginationConfiguration, input: DescribePullRequestEventsCommandInput, ...rest: any[]) => Paginator<DescribePullRequestEventsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetCommentReactions: (config: CodeCommitPaginationConfiguration, input: GetCommentReactionsCommandInput, ...rest: any[]) => Paginator<GetCommentReactionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetCommentsForComparedCommit: (config: CodeCommitPaginationConfiguration, input: GetCommentsForComparedCommitCommandInput, ...rest: any[]) => Paginator<GetCommentsForComparedCommitCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetCommentsForPullRequest: (config: CodeCommitPaginationConfiguration, input: GetCommentsForPullRequestCommandInput, ...rest: any[]) => Paginator<GetCommentsForPullRequestCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetDifferences: (config: CodeCommitPaginationConfiguration, input: GetDifferencesCommandInput, ...rest: any[]) => Paginator<GetDifferencesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetMergeConflicts: (config: CodeCommitPaginationConfiguration, input: GetMergeConflictsCommandInput, ...rest: any[]) => Paginator<GetMergeConflictsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListApprovalRuleTemplates: (config: CodeCommitPaginationConfiguration, input: ListApprovalRuleTemplatesCommandInput, ...rest: any[]) => Paginator<ListApprovalRuleTemplatesCommandOutput>;
|
package/dist-types/pagination/ListAssociatedApprovalRuleTemplatesForRepositoryPaginator.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAssociatedApprovalRuleTemplatesForRepository: (config: CodeCommitPaginationConfiguration, input: ListAssociatedApprovalRuleTemplatesForRepositoryCommandInput, ...rest: any[]) => Paginator<ListAssociatedApprovalRuleTemplatesForRepositoryCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListBranches: (config: CodeCommitPaginationConfiguration, input: ListBranchesCommandInput, ...rest: any[]) => Paginator<ListBranchesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListFileCommitHistory: (config: CodeCommitPaginationConfiguration, input: ListFileCommitHistoryCommandInput, ...rest: any[]) => Paginator<ListFileCommitHistoryCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPullRequests: (config: CodeCommitPaginationConfiguration, input: ListPullRequestsCommandInput, ...rest: any[]) => Paginator<ListPullRequestsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRepositoriesForApprovalRuleTemplate: (config: CodeCommitPaginationConfiguration, input: ListRepositoriesForApprovalRuleTemplateCommandInput, ...rest: any[]) => Paginator<ListRepositoriesForApprovalRuleTemplateCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRepositories: (config: CodeCommitPaginationConfiguration, input: ListRepositoriesCommandInput, ...rest: any[]) => Paginator<ListRepositoriesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeMergeConflictsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeMergeConflictsCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeMergeConflicts: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: DescribeMergeConflictsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeMergeConflictsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribePullRequestEventsCommandOutput,
|
|
5
5
|
} from "../commands/DescribePullRequestEventsCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribePullRequestEvents: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: DescribePullRequestEventsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribePullRequestEventsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
GetCommentReactionsCommandOutput,
|
|
5
5
|
} from "../commands/GetCommentReactionsCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetCommentReactions: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: GetCommentReactionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetCommentReactionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
GetCommentsForComparedCommitCommandOutput,
|
|
5
5
|
} from "../commands/GetCommentsForComparedCommitCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetCommentsForComparedCommit: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: GetCommentsForComparedCommitCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetCommentsForComparedCommitCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
GetCommentsForPullRequestCommandOutput,
|
|
5
5
|
} from "../commands/GetCommentsForPullRequestCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetCommentsForPullRequest: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: GetCommentsForPullRequestCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetCommentsForPullRequestCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
GetDifferencesCommandOutput,
|
|
5
5
|
} from "../commands/GetDifferencesCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetDifferences: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: GetDifferencesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetDifferencesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
GetMergeConflictsCommandOutput,
|
|
5
5
|
} from "../commands/GetMergeConflictsCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetMergeConflicts: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: GetMergeConflictsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetMergeConflictsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListApprovalRuleTemplatesCommandOutput,
|
|
5
5
|
} from "../commands/ListApprovalRuleTemplatesCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListApprovalRuleTemplates: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: ListApprovalRuleTemplatesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListApprovalRuleTemplatesCommandOutput>;
|
package/dist-types/ts3.4/pagination/ListAssociatedApprovalRuleTemplatesForRepositoryPaginator.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListAssociatedApprovalRuleTemplatesForRepositoryCommandOutput,
|
|
5
5
|
} from "../commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAssociatedApprovalRuleTemplatesForRepository: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: ListAssociatedApprovalRuleTemplatesForRepositoryCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAssociatedApprovalRuleTemplatesForRepositoryCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListBranchesCommandOutput,
|
|
5
5
|
} from "../commands/ListBranchesCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListBranches: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: ListBranchesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBranchesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListFileCommitHistoryCommandOutput,
|
|
5
5
|
} from "../commands/ListFileCommitHistoryCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListFileCommitHistory: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: ListFileCommitHistoryCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFileCommitHistoryCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPullRequestsCommandOutput,
|
|
5
5
|
} from "../commands/ListPullRequestsCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPullRequests: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: ListPullRequestsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPullRequestsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListRepositoriesForApprovalRuleTemplateCommandOutput,
|
|
5
5
|
} from "../commands/ListRepositoriesForApprovalRuleTemplateCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRepositoriesForApprovalRuleTemplate: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: ListRepositoriesForApprovalRuleTemplateCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRepositoriesForApprovalRuleTemplateCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListRepositoriesCommandOutput,
|
|
5
5
|
} from "../commands/ListRepositoriesCommand";
|
|
6
6
|
import { CodeCommitPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRepositories: (
|
|
8
8
|
config: CodeCommitPaginationConfiguration,
|
|
9
9
|
input: ListRepositoriesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRepositoriesCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codecommit",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codecommit Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.478.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,20 +20,21 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.478.0",
|
|
24
|
+
"@aws-sdk/core": "3.477.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.478.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.478.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.478.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.21",
|
|
37
|
+
"@smithy/core": "^1.2.0",
|
|
37
38
|
"@smithy/fetch-http-handler": "^2.3.1",
|
|
38
39
|
"@smithy/hash-node": "^2.0.17",
|
|
39
40
|
"@smithy/invalid-dependency": "^2.0.15",
|