@aws-sdk/client-amplifyuibuilder 3.489.0 → 3.495.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 (46) hide show
  1. package/dist-cjs/AmplifyUIBuilder.js +1 -61
  2. package/dist-cjs/AmplifyUIBuilderClient.js +1 -43
  3. package/dist-cjs/commands/CreateComponentCommand.js +1 -28
  4. package/dist-cjs/commands/CreateFormCommand.js +1 -28
  5. package/dist-cjs/commands/CreateThemeCommand.js +1 -28
  6. package/dist-cjs/commands/DeleteComponentCommand.js +1 -28
  7. package/dist-cjs/commands/DeleteFormCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteThemeCommand.js +1 -28
  9. package/dist-cjs/commands/ExchangeCodeForTokenCommand.js +1 -29
  10. package/dist-cjs/commands/ExportComponentsCommand.js +1 -28
  11. package/dist-cjs/commands/ExportFormsCommand.js +1 -28
  12. package/dist-cjs/commands/ExportThemesCommand.js +1 -28
  13. package/dist-cjs/commands/GetCodegenJobCommand.js +1 -28
  14. package/dist-cjs/commands/GetComponentCommand.js +1 -28
  15. package/dist-cjs/commands/GetFormCommand.js +1 -28
  16. package/dist-cjs/commands/GetMetadataCommand.js +1 -28
  17. package/dist-cjs/commands/GetThemeCommand.js +1 -28
  18. package/dist-cjs/commands/ListCodegenJobsCommand.js +1 -28
  19. package/dist-cjs/commands/ListComponentsCommand.js +1 -28
  20. package/dist-cjs/commands/ListFormsCommand.js +1 -28
  21. package/dist-cjs/commands/ListThemesCommand.js +1 -28
  22. package/dist-cjs/commands/PutMetadataFlagCommand.js +1 -28
  23. package/dist-cjs/commands/RefreshTokenCommand.js +1 -29
  24. package/dist-cjs/commands/StartCodegenJobCommand.js +1 -28
  25. package/dist-cjs/commands/UpdateComponentCommand.js +1 -28
  26. package/dist-cjs/commands/UpdateFormCommand.js +1 -28
  27. package/dist-cjs/commands/UpdateThemeCommand.js +1 -28
  28. package/dist-cjs/commands/index.js +1 -28
  29. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  30. package/dist-cjs/extensionConfiguration.js +1 -2
  31. package/dist-cjs/index.js +3153 -11
  32. package/dist-cjs/models/AmplifyUIBuilderServiceException.js +1 -12
  33. package/dist-cjs/models/index.js +1 -4
  34. package/dist-cjs/models/models_0.js +1 -245
  35. package/dist-cjs/pagination/ExportComponentsPaginator.js +1 -7
  36. package/dist-cjs/pagination/ExportFormsPaginator.js +1 -7
  37. package/dist-cjs/pagination/ExportThemesPaginator.js +1 -7
  38. package/dist-cjs/pagination/Interfaces.js +1 -2
  39. package/dist-cjs/pagination/ListCodegenJobsPaginator.js +1 -7
  40. package/dist-cjs/pagination/ListComponentsPaginator.js +1 -7
  41. package/dist-cjs/pagination/ListFormsPaginator.js +1 -7
  42. package/dist-cjs/pagination/ListThemesPaginator.js +1 -7
  43. package/dist-cjs/pagination/index.js +1 -11
  44. package/dist-cjs/protocols/Aws_restJson1.js +1 -2206
  45. package/dist-cjs/runtimeExtensions.js +1 -22
  46. package/package.json +40 -40
@@ -1,61 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AmplifyUIBuilder = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const AmplifyUIBuilderClient_1 = require("./AmplifyUIBuilderClient");
6
- const CreateComponentCommand_1 = require("./commands/CreateComponentCommand");
7
- const CreateFormCommand_1 = require("./commands/CreateFormCommand");
8
- const CreateThemeCommand_1 = require("./commands/CreateThemeCommand");
9
- const DeleteComponentCommand_1 = require("./commands/DeleteComponentCommand");
10
- const DeleteFormCommand_1 = require("./commands/DeleteFormCommand");
11
- const DeleteThemeCommand_1 = require("./commands/DeleteThemeCommand");
12
- const ExchangeCodeForTokenCommand_1 = require("./commands/ExchangeCodeForTokenCommand");
13
- const ExportComponentsCommand_1 = require("./commands/ExportComponentsCommand");
14
- const ExportFormsCommand_1 = require("./commands/ExportFormsCommand");
15
- const ExportThemesCommand_1 = require("./commands/ExportThemesCommand");
16
- const GetCodegenJobCommand_1 = require("./commands/GetCodegenJobCommand");
17
- const GetComponentCommand_1 = require("./commands/GetComponentCommand");
18
- const GetFormCommand_1 = require("./commands/GetFormCommand");
19
- const GetMetadataCommand_1 = require("./commands/GetMetadataCommand");
20
- const GetThemeCommand_1 = require("./commands/GetThemeCommand");
21
- const ListCodegenJobsCommand_1 = require("./commands/ListCodegenJobsCommand");
22
- const ListComponentsCommand_1 = require("./commands/ListComponentsCommand");
23
- const ListFormsCommand_1 = require("./commands/ListFormsCommand");
24
- const ListThemesCommand_1 = require("./commands/ListThemesCommand");
25
- const PutMetadataFlagCommand_1 = require("./commands/PutMetadataFlagCommand");
26
- const RefreshTokenCommand_1 = require("./commands/RefreshTokenCommand");
27
- const StartCodegenJobCommand_1 = require("./commands/StartCodegenJobCommand");
28
- const UpdateComponentCommand_1 = require("./commands/UpdateComponentCommand");
29
- const UpdateFormCommand_1 = require("./commands/UpdateFormCommand");
30
- const UpdateThemeCommand_1 = require("./commands/UpdateThemeCommand");
31
- const commands = {
32
- CreateComponentCommand: CreateComponentCommand_1.CreateComponentCommand,
33
- CreateFormCommand: CreateFormCommand_1.CreateFormCommand,
34
- CreateThemeCommand: CreateThemeCommand_1.CreateThemeCommand,
35
- DeleteComponentCommand: DeleteComponentCommand_1.DeleteComponentCommand,
36
- DeleteFormCommand: DeleteFormCommand_1.DeleteFormCommand,
37
- DeleteThemeCommand: DeleteThemeCommand_1.DeleteThemeCommand,
38
- ExchangeCodeForTokenCommand: ExchangeCodeForTokenCommand_1.ExchangeCodeForTokenCommand,
39
- ExportComponentsCommand: ExportComponentsCommand_1.ExportComponentsCommand,
40
- ExportFormsCommand: ExportFormsCommand_1.ExportFormsCommand,
41
- ExportThemesCommand: ExportThemesCommand_1.ExportThemesCommand,
42
- GetCodegenJobCommand: GetCodegenJobCommand_1.GetCodegenJobCommand,
43
- GetComponentCommand: GetComponentCommand_1.GetComponentCommand,
44
- GetFormCommand: GetFormCommand_1.GetFormCommand,
45
- GetMetadataCommand: GetMetadataCommand_1.GetMetadataCommand,
46
- GetThemeCommand: GetThemeCommand_1.GetThemeCommand,
47
- ListCodegenJobsCommand: ListCodegenJobsCommand_1.ListCodegenJobsCommand,
48
- ListComponentsCommand: ListComponentsCommand_1.ListComponentsCommand,
49
- ListFormsCommand: ListFormsCommand_1.ListFormsCommand,
50
- ListThemesCommand: ListThemesCommand_1.ListThemesCommand,
51
- PutMetadataFlagCommand: PutMetadataFlagCommand_1.PutMetadataFlagCommand,
52
- RefreshTokenCommand: RefreshTokenCommand_1.RefreshTokenCommand,
53
- StartCodegenJobCommand: StartCodegenJobCommand_1.StartCodegenJobCommand,
54
- UpdateComponentCommand: UpdateComponentCommand_1.UpdateComponentCommand,
55
- UpdateFormCommand: UpdateFormCommand_1.UpdateFormCommand,
56
- UpdateThemeCommand: UpdateThemeCommand_1.UpdateThemeCommand,
57
- };
58
- class AmplifyUIBuilder extends AmplifyUIBuilderClient_1.AmplifyUIBuilderClient {
59
- }
60
- exports.AmplifyUIBuilder = AmplifyUIBuilder;
61
- (0, smithy_client_1.createAggregatedClient)(commands, AmplifyUIBuilder);
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AmplifyUIBuilderClient = exports.__Client = void 0;
4
- const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
5
- const middleware_logger_1 = require("@aws-sdk/middleware-logger");
6
- const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
7
- const middleware_signing_1 = require("@aws-sdk/middleware-signing");
8
- const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
9
- const config_resolver_1 = require("@smithy/config-resolver");
10
- const middleware_content_length_1 = require("@smithy/middleware-content-length");
11
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
12
- const middleware_retry_1 = require("@smithy/middleware-retry");
13
- const smithy_client_1 = require("@smithy/smithy-client");
14
- Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
15
- const EndpointParameters_1 = require("./endpoint/EndpointParameters");
16
- const runtimeConfig_1 = require("./runtimeConfig");
17
- const runtimeExtensions_1 = require("./runtimeExtensions");
18
- class AmplifyUIBuilderClient extends smithy_client_1.Client {
19
- constructor(...[configuration]) {
20
- const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
21
- const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
22
- const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
23
- const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
24
- const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
25
- const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
26
- const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
27
- const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
28
- const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
29
- super(_config_8);
30
- this.config = _config_8;
31
- this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
32
- this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
33
- this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
34
- this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
35
- this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
36
- this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
37
- this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
38
- }
39
- destroy() {
40
- super.destroy();
41
- }
42
- }
43
- exports.AmplifyUIBuilderClient = AmplifyUIBuilderClient;
1
+ module.exports = require("./index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateComponentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class CreateComponentCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "CreateComponent", {})
22
- .n("AmplifyUIBuilderClient", "CreateComponentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_CreateComponentCommand)
25
- .de(Aws_restJson1_1.de_CreateComponentCommand)
26
- .build() {
27
- }
28
- exports.CreateComponentCommand = CreateComponentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateFormCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class CreateFormCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "CreateForm", {})
22
- .n("AmplifyUIBuilderClient", "CreateFormCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_CreateFormCommand)
25
- .de(Aws_restJson1_1.de_CreateFormCommand)
26
- .build() {
27
- }
28
- exports.CreateFormCommand = CreateFormCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateThemeCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class CreateThemeCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "CreateTheme", {})
22
- .n("AmplifyUIBuilderClient", "CreateThemeCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_CreateThemeCommand)
25
- .de(Aws_restJson1_1.de_CreateThemeCommand)
26
- .build() {
27
- }
28
- exports.CreateThemeCommand = CreateThemeCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteComponentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DeleteComponentCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "DeleteComponent", {})
22
- .n("AmplifyUIBuilderClient", "DeleteComponentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteComponentCommand)
25
- .de(Aws_restJson1_1.de_DeleteComponentCommand)
26
- .build() {
27
- }
28
- exports.DeleteComponentCommand = DeleteComponentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteFormCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DeleteFormCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "DeleteForm", {})
22
- .n("AmplifyUIBuilderClient", "DeleteFormCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteFormCommand)
25
- .de(Aws_restJson1_1.de_DeleteFormCommand)
26
- .build() {
27
- }
28
- exports.DeleteFormCommand = DeleteFormCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteThemeCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DeleteThemeCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "DeleteTheme", {})
22
- .n("AmplifyUIBuilderClient", "DeleteThemeCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteThemeCommand)
25
- .de(Aws_restJson1_1.de_DeleteThemeCommand)
26
- .build() {
27
- }
28
- exports.DeleteThemeCommand = DeleteThemeCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ExchangeCodeForTokenCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class ExchangeCodeForTokenCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AmplifyUIBuilder", "ExchangeCodeForToken", {})
23
- .n("AmplifyUIBuilderClient", "ExchangeCodeForTokenCommand")
24
- .f(models_0_1.ExchangeCodeForTokenRequestFilterSensitiveLog, models_0_1.ExchangeCodeForTokenResponseFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_ExchangeCodeForTokenCommand)
26
- .de(Aws_restJson1_1.de_ExchangeCodeForTokenCommand)
27
- .build() {
28
- }
29
- exports.ExchangeCodeForTokenCommand = ExchangeCodeForTokenCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ExportComponentsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ExportComponentsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "ExportComponents", {})
22
- .n("AmplifyUIBuilderClient", "ExportComponentsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ExportComponentsCommand)
25
- .de(Aws_restJson1_1.de_ExportComponentsCommand)
26
- .build() {
27
- }
28
- exports.ExportComponentsCommand = ExportComponentsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ExportFormsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ExportFormsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "ExportForms", {})
22
- .n("AmplifyUIBuilderClient", "ExportFormsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ExportFormsCommand)
25
- .de(Aws_restJson1_1.de_ExportFormsCommand)
26
- .build() {
27
- }
28
- exports.ExportFormsCommand = ExportFormsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ExportThemesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ExportThemesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "ExportThemes", {})
22
- .n("AmplifyUIBuilderClient", "ExportThemesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ExportThemesCommand)
25
- .de(Aws_restJson1_1.de_ExportThemesCommand)
26
- .build() {
27
- }
28
- exports.ExportThemesCommand = ExportThemesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetCodegenJobCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetCodegenJobCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "GetCodegenJob", {})
22
- .n("AmplifyUIBuilderClient", "GetCodegenJobCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetCodegenJobCommand)
25
- .de(Aws_restJson1_1.de_GetCodegenJobCommand)
26
- .build() {
27
- }
28
- exports.GetCodegenJobCommand = GetCodegenJobCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetComponentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetComponentCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "GetComponent", {})
22
- .n("AmplifyUIBuilderClient", "GetComponentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetComponentCommand)
25
- .de(Aws_restJson1_1.de_GetComponentCommand)
26
- .build() {
27
- }
28
- exports.GetComponentCommand = GetComponentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetFormCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetFormCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "GetForm", {})
22
- .n("AmplifyUIBuilderClient", "GetFormCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetFormCommand)
25
- .de(Aws_restJson1_1.de_GetFormCommand)
26
- .build() {
27
- }
28
- exports.GetFormCommand = GetFormCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetMetadataCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetMetadataCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "GetMetadata", {})
22
- .n("AmplifyUIBuilderClient", "GetMetadataCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetMetadataCommand)
25
- .de(Aws_restJson1_1.de_GetMetadataCommand)
26
- .build() {
27
- }
28
- exports.GetMetadataCommand = GetMetadataCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetThemeCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetThemeCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "GetTheme", {})
22
- .n("AmplifyUIBuilderClient", "GetThemeCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetThemeCommand)
25
- .de(Aws_restJson1_1.de_GetThemeCommand)
26
- .build() {
27
- }
28
- exports.GetThemeCommand = GetThemeCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListCodegenJobsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListCodegenJobsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "ListCodegenJobs", {})
22
- .n("AmplifyUIBuilderClient", "ListCodegenJobsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListCodegenJobsCommand)
25
- .de(Aws_restJson1_1.de_ListCodegenJobsCommand)
26
- .build() {
27
- }
28
- exports.ListCodegenJobsCommand = ListCodegenJobsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListComponentsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListComponentsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AmplifyUIBuilder", "ListComponents", {})
22
- .n("AmplifyUIBuilderClient", "ListComponentsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListComponentsCommand)
25
- .de(Aws_restJson1_1.de_ListComponentsCommand)
26
- .build() {
27
- }
28
- exports.ListComponentsCommand = ListComponentsCommand;
1
+ module.exports = require("../index.js");