@aws-sdk/client-amplifyuibuilder 3.477.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.
Files changed (29) hide show
  1. package/dist-cjs/pagination/ExportComponentsPaginator.js +2 -23
  2. package/dist-cjs/pagination/ExportFormsPaginator.js +2 -23
  3. package/dist-cjs/pagination/ExportThemesPaginator.js +2 -23
  4. package/dist-cjs/pagination/ListCodegenJobsPaginator.js +2 -24
  5. package/dist-cjs/pagination/ListComponentsPaginator.js +2 -24
  6. package/dist-cjs/pagination/ListFormsPaginator.js +2 -24
  7. package/dist-cjs/pagination/ListThemesPaginator.js +2 -24
  8. package/dist-es/pagination/ExportComponentsPaginator.js +2 -22
  9. package/dist-es/pagination/ExportFormsPaginator.js +2 -22
  10. package/dist-es/pagination/ExportThemesPaginator.js +2 -22
  11. package/dist-es/pagination/ListCodegenJobsPaginator.js +2 -23
  12. package/dist-es/pagination/ListComponentsPaginator.js +2 -23
  13. package/dist-es/pagination/ListFormsPaginator.js +2 -23
  14. package/dist-es/pagination/ListThemesPaginator.js +2 -23
  15. package/dist-types/pagination/ExportComponentsPaginator.d.ts +1 -1
  16. package/dist-types/pagination/ExportFormsPaginator.d.ts +1 -1
  17. package/dist-types/pagination/ExportThemesPaginator.d.ts +1 -1
  18. package/dist-types/pagination/ListCodegenJobsPaginator.d.ts +1 -1
  19. package/dist-types/pagination/ListComponentsPaginator.d.ts +1 -1
  20. package/dist-types/pagination/ListFormsPaginator.d.ts +1 -1
  21. package/dist-types/pagination/ListThemesPaginator.d.ts +1 -1
  22. package/dist-types/ts3.4/pagination/ExportComponentsPaginator.d.ts +3 -3
  23. package/dist-types/ts3.4/pagination/ExportFormsPaginator.d.ts +3 -3
  24. package/dist-types/ts3.4/pagination/ExportThemesPaginator.d.ts +3 -3
  25. package/dist-types/ts3.4/pagination/ListCodegenJobsPaginator.d.ts +3 -3
  26. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +3 -3
  27. package/dist-types/ts3.4/pagination/ListFormsPaginator.d.ts +3 -3
  28. package/dist-types/ts3.4/pagination/ListThemesPaginator.d.ts +3 -3
  29. package/package.json +5 -5
@@ -1,28 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateExportComponents = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const AmplifyUIBuilderClient_1 = require("../AmplifyUIBuilderClient");
5
6
  const ExportComponentsCommand_1 = require("../commands/ExportComponentsCommand");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ExportComponentsCommand_1.ExportComponentsCommand(input), ...args);
8
- };
9
- async function* paginateExportComponents(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- if (config.client instanceof AmplifyUIBuilderClient_1.AmplifyUIBuilderClient) {
16
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
17
- }
18
- else {
19
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
20
- }
21
- yield page;
22
- const prevToken = token;
23
- token = page.nextToken;
24
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
25
- }
26
- return undefined;
27
- }
28
- exports.paginateExportComponents = paginateExportComponents;
7
+ exports.paginateExportComponents = (0, core_1.createPaginator)(AmplifyUIBuilderClient_1.AmplifyUIBuilderClient, ExportComponentsCommand_1.ExportComponentsCommand, "nextToken", "nextToken", "");
@@ -1,28 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateExportForms = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const AmplifyUIBuilderClient_1 = require("../AmplifyUIBuilderClient");
5
6
  const ExportFormsCommand_1 = require("../commands/ExportFormsCommand");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ExportFormsCommand_1.ExportFormsCommand(input), ...args);
8
- };
9
- async function* paginateExportForms(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- if (config.client instanceof AmplifyUIBuilderClient_1.AmplifyUIBuilderClient) {
16
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
17
- }
18
- else {
19
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
20
- }
21
- yield page;
22
- const prevToken = token;
23
- token = page.nextToken;
24
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
25
- }
26
- return undefined;
27
- }
28
- exports.paginateExportForms = paginateExportForms;
7
+ exports.paginateExportForms = (0, core_1.createPaginator)(AmplifyUIBuilderClient_1.AmplifyUIBuilderClient, ExportFormsCommand_1.ExportFormsCommand, "nextToken", "nextToken", "");
@@ -1,28 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateExportThemes = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const AmplifyUIBuilderClient_1 = require("../AmplifyUIBuilderClient");
5
6
  const ExportThemesCommand_1 = require("../commands/ExportThemesCommand");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ExportThemesCommand_1.ExportThemesCommand(input), ...args);
8
- };
9
- async function* paginateExportThemes(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- if (config.client instanceof AmplifyUIBuilderClient_1.AmplifyUIBuilderClient) {
16
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
17
- }
18
- else {
19
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
20
- }
21
- yield page;
22
- const prevToken = token;
23
- token = page.nextToken;
24
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
25
- }
26
- return undefined;
27
- }
28
- exports.paginateExportThemes = paginateExportThemes;
7
+ exports.paginateExportThemes = (0, core_1.createPaginator)(AmplifyUIBuilderClient_1.AmplifyUIBuilderClient, ExportThemesCommand_1.ExportThemesCommand, "nextToken", "nextToken", "");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListCodegenJobs = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const AmplifyUIBuilderClient_1 = require("../AmplifyUIBuilderClient");
5
6
  const ListCodegenJobsCommand_1 = require("../commands/ListCodegenJobsCommand");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListCodegenJobsCommand_1.ListCodegenJobsCommand(input), ...args);
8
- };
9
- async function* paginateListCodegenJobs(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof AmplifyUIBuilderClient_1.AmplifyUIBuilderClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListCodegenJobs = paginateListCodegenJobs;
7
+ exports.paginateListCodegenJobs = (0, core_1.createPaginator)(AmplifyUIBuilderClient_1.AmplifyUIBuilderClient, ListCodegenJobsCommand_1.ListCodegenJobsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListComponents = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const AmplifyUIBuilderClient_1 = require("../AmplifyUIBuilderClient");
5
6
  const ListComponentsCommand_1 = require("../commands/ListComponentsCommand");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListComponentsCommand_1.ListComponentsCommand(input), ...args);
8
- };
9
- async function* paginateListComponents(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof AmplifyUIBuilderClient_1.AmplifyUIBuilderClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListComponents = paginateListComponents;
7
+ exports.paginateListComponents = (0, core_1.createPaginator)(AmplifyUIBuilderClient_1.AmplifyUIBuilderClient, ListComponentsCommand_1.ListComponentsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListForms = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const AmplifyUIBuilderClient_1 = require("../AmplifyUIBuilderClient");
5
6
  const ListFormsCommand_1 = require("../commands/ListFormsCommand");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListFormsCommand_1.ListFormsCommand(input), ...args);
8
- };
9
- async function* paginateListForms(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof AmplifyUIBuilderClient_1.AmplifyUIBuilderClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListForms = paginateListForms;
7
+ exports.paginateListForms = (0, core_1.createPaginator)(AmplifyUIBuilderClient_1.AmplifyUIBuilderClient, ListFormsCommand_1.ListFormsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListThemes = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const AmplifyUIBuilderClient_1 = require("../AmplifyUIBuilderClient");
5
6
  const ListThemesCommand_1 = require("../commands/ListThemesCommand");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListThemesCommand_1.ListThemesCommand(input), ...args);
8
- };
9
- async function* paginateListThemes(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.nextToken = token;
15
- input["maxResults"] = config.pageSize;
16
- if (config.client instanceof AmplifyUIBuilderClient_1.AmplifyUIBuilderClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.nextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListThemes = paginateListThemes;
7
+ exports.paginateListThemes = (0, core_1.createPaginator)(AmplifyUIBuilderClient_1.AmplifyUIBuilderClient, ListThemesCommand_1.ListThemesCommand, "nextToken", "nextToken", "maxResults");
@@ -1,24 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
2
3
  import { ExportComponentsCommand, } from "../commands/ExportComponentsCommand";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ExportComponentsCommand(input), ...args);
5
- };
6
- export async function* paginateExportComponents(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 AmplifyUIBuilderClient) {
13
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
14
- }
15
- else {
16
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
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 paginateExportComponents = createPaginator(AmplifyUIBuilderClient, ExportComponentsCommand, "nextToken", "nextToken", "");
@@ -1,24 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
2
3
  import { ExportFormsCommand } from "../commands/ExportFormsCommand";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ExportFormsCommand(input), ...args);
5
- };
6
- export async function* paginateExportForms(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 AmplifyUIBuilderClient) {
13
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
14
- }
15
- else {
16
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
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 paginateExportForms = createPaginator(AmplifyUIBuilderClient, ExportFormsCommand, "nextToken", "nextToken", "");
@@ -1,24 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
2
3
  import { ExportThemesCommand, } from "../commands/ExportThemesCommand";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ExportThemesCommand(input), ...args);
5
- };
6
- export async function* paginateExportThemes(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 AmplifyUIBuilderClient) {
13
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
14
- }
15
- else {
16
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
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 paginateExportThemes = createPaginator(AmplifyUIBuilderClient, ExportThemesCommand, "nextToken", "nextToken", "");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
2
3
  import { ListCodegenJobsCommand, } from "../commands/ListCodegenJobsCommand";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListCodegenJobsCommand(input), ...args);
5
- };
6
- export async function* paginateListCodegenJobs(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 AmplifyUIBuilderClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
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 paginateListCodegenJobs = createPaginator(AmplifyUIBuilderClient, ListCodegenJobsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
2
3
  import { ListComponentsCommand, } from "../commands/ListComponentsCommand";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListComponentsCommand(input), ...args);
5
- };
6
- export async function* paginateListComponents(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 AmplifyUIBuilderClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
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 paginateListComponents = createPaginator(AmplifyUIBuilderClient, ListComponentsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
2
3
  import { ListFormsCommand } from "../commands/ListFormsCommand";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListFormsCommand(input), ...args);
5
- };
6
- export async function* paginateListForms(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 AmplifyUIBuilderClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
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 paginateListForms = createPaginator(AmplifyUIBuilderClient, ListFormsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
2
3
  import { ListThemesCommand } from "../commands/ListThemesCommand";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListThemesCommand(input), ...args);
5
- };
6
- export async function* paginateListThemes(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 AmplifyUIBuilderClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected AmplifyUIBuilder | AmplifyUIBuilderClient");
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 paginateListThemes = createPaginator(AmplifyUIBuilderClient, ListThemesCommand, "nextToken", "nextToken", "maxResults");
@@ -4,4 +4,4 @@ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateExportComponents(config: AmplifyUIBuilderPaginationConfiguration, input: ExportComponentsCommandInput, ...additionalArguments: any): Paginator<ExportComponentsCommandOutput>;
7
+ export declare const paginateExportComponents: (config: AmplifyUIBuilderPaginationConfiguration, input: ExportComponentsCommandInput, ...rest: any[]) => Paginator<ExportComponentsCommandOutput>;
@@ -4,4 +4,4 @@ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateExportForms(config: AmplifyUIBuilderPaginationConfiguration, input: ExportFormsCommandInput, ...additionalArguments: any): Paginator<ExportFormsCommandOutput>;
7
+ export declare const paginateExportForms: (config: AmplifyUIBuilderPaginationConfiguration, input: ExportFormsCommandInput, ...rest: any[]) => Paginator<ExportFormsCommandOutput>;
@@ -4,4 +4,4 @@ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateExportThemes(config: AmplifyUIBuilderPaginationConfiguration, input: ExportThemesCommandInput, ...additionalArguments: any): Paginator<ExportThemesCommandOutput>;
7
+ export declare const paginateExportThemes: (config: AmplifyUIBuilderPaginationConfiguration, input: ExportThemesCommandInput, ...rest: any[]) => Paginator<ExportThemesCommandOutput>;
@@ -4,4 +4,4 @@ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListCodegenJobs(config: AmplifyUIBuilderPaginationConfiguration, input: ListCodegenJobsCommandInput, ...additionalArguments: any): Paginator<ListCodegenJobsCommandOutput>;
7
+ export declare const paginateListCodegenJobs: (config: AmplifyUIBuilderPaginationConfiguration, input: ListCodegenJobsCommandInput, ...rest: any[]) => Paginator<ListCodegenJobsCommandOutput>;
@@ -4,4 +4,4 @@ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListComponents(config: AmplifyUIBuilderPaginationConfiguration, input: ListComponentsCommandInput, ...additionalArguments: any): Paginator<ListComponentsCommandOutput>;
7
+ export declare const paginateListComponents: (config: AmplifyUIBuilderPaginationConfiguration, input: ListComponentsCommandInput, ...rest: any[]) => Paginator<ListComponentsCommandOutput>;
@@ -4,4 +4,4 @@ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListForms(config: AmplifyUIBuilderPaginationConfiguration, input: ListFormsCommandInput, ...additionalArguments: any): Paginator<ListFormsCommandOutput>;
7
+ export declare const paginateListForms: (config: AmplifyUIBuilderPaginationConfiguration, input: ListFormsCommandInput, ...rest: any[]) => Paginator<ListFormsCommandOutput>;
@@ -4,4 +4,4 @@ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListThemes(config: AmplifyUIBuilderPaginationConfiguration, input: ListThemesCommandInput, ...additionalArguments: any): Paginator<ListThemesCommandOutput>;
7
+ export declare const paginateListThemes: (config: AmplifyUIBuilderPaginationConfiguration, input: ListThemesCommandInput, ...rest: any[]) => Paginator<ListThemesCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ExportComponentsCommandOutput,
5
5
  } from "../commands/ExportComponentsCommand";
6
6
  import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateExportComponents(
7
+ export declare const paginateExportComponents: (
8
8
  config: AmplifyUIBuilderPaginationConfiguration,
9
9
  input: ExportComponentsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ExportComponentsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ExportComponentsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ExportFormsCommandOutput,
5
5
  } from "../commands/ExportFormsCommand";
6
6
  import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateExportForms(
7
+ export declare const paginateExportForms: (
8
8
  config: AmplifyUIBuilderPaginationConfiguration,
9
9
  input: ExportFormsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ExportFormsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ExportFormsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ExportThemesCommandOutput,
5
5
  } from "../commands/ExportThemesCommand";
6
6
  import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateExportThemes(
7
+ export declare const paginateExportThemes: (
8
8
  config: AmplifyUIBuilderPaginationConfiguration,
9
9
  input: ExportThemesCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ExportThemesCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ExportThemesCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListCodegenJobsCommandOutput,
5
5
  } from "../commands/ListCodegenJobsCommand";
6
6
  import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListCodegenJobs(
7
+ export declare const paginateListCodegenJobs: (
8
8
  config: AmplifyUIBuilderPaginationConfiguration,
9
9
  input: ListCodegenJobsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListCodegenJobsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListCodegenJobsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListComponentsCommandOutput,
5
5
  } from "../commands/ListComponentsCommand";
6
6
  import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListComponents(
7
+ export declare const paginateListComponents: (
8
8
  config: AmplifyUIBuilderPaginationConfiguration,
9
9
  input: ListComponentsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListComponentsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListComponentsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListFormsCommandOutput,
5
5
  } from "../commands/ListFormsCommand";
6
6
  import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListForms(
7
+ export declare const paginateListForms: (
8
8
  config: AmplifyUIBuilderPaginationConfiguration,
9
9
  input: ListFormsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListFormsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListFormsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListThemesCommandOutput,
5
5
  } from "../commands/ListThemesCommand";
6
6
  import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListThemes(
7
+ export declare const paginateListThemes: (
8
8
  config: AmplifyUIBuilderPaginationConfiguration,
9
9
  input: ListThemesCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListThemesCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListThemesCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-amplifyuibuilder",
3
3
  "description": "AWS SDK for JavaScript Amplifyuibuilder Client for Node.js, Browser and React Native",
4
- "version": "3.477.0",
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,17 +20,17 @@
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.477.0",
23
+ "@aws-sdk/client-sts": "3.478.0",
24
24
  "@aws-sdk/core": "3.477.0",
25
- "@aws-sdk/credential-provider-node": "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.470.0",
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.470.0",
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",