@aws-sdk/client-amplifyuibuilder 3.952.0 → 3.953.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 (48) hide show
  1. package/dist-cjs/index.js +519 -344
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateComponentCommand.js +2 -2
  4. package/dist-es/commands/CreateFormCommand.js +2 -2
  5. package/dist-es/commands/CreateThemeCommand.js +2 -2
  6. package/dist-es/commands/DeleteComponentCommand.js +2 -2
  7. package/dist-es/commands/DeleteFormCommand.js +2 -2
  8. package/dist-es/commands/DeleteThemeCommand.js +2 -2
  9. package/dist-es/commands/ExchangeCodeForTokenCommand.js +2 -2
  10. package/dist-es/commands/ExportComponentsCommand.js +2 -2
  11. package/dist-es/commands/ExportFormsCommand.js +2 -2
  12. package/dist-es/commands/ExportThemesCommand.js +2 -2
  13. package/dist-es/commands/GetCodegenJobCommand.js +2 -2
  14. package/dist-es/commands/GetComponentCommand.js +2 -2
  15. package/dist-es/commands/GetFormCommand.js +2 -2
  16. package/dist-es/commands/GetMetadataCommand.js +2 -2
  17. package/dist-es/commands/GetThemeCommand.js +2 -2
  18. package/dist-es/commands/ListCodegenJobsCommand.js +2 -2
  19. package/dist-es/commands/ListComponentsCommand.js +2 -2
  20. package/dist-es/commands/ListFormsCommand.js +2 -2
  21. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  22. package/dist-es/commands/ListThemesCommand.js +2 -2
  23. package/dist-es/commands/PutMetadataFlagCommand.js +2 -2
  24. package/dist-es/commands/RefreshTokenCommand.js +2 -2
  25. package/dist-es/commands/StartCodegenJobCommand.js +2 -2
  26. package/dist-es/commands/TagResourceCommand.js +2 -2
  27. package/dist-es/commands/UntagResourceCommand.js +2 -2
  28. package/dist-es/commands/UpdateComponentCommand.js +2 -2
  29. package/dist-es/commands/UpdateFormCommand.js +2 -2
  30. package/dist-es/commands/UpdateThemeCommand.js +2 -2
  31. package/dist-es/index.js +1 -0
  32. package/dist-es/runtimeConfig.shared.js +6 -1
  33. package/dist-es/schemas/schemas_0.js +331 -310
  34. package/dist-types/AmplifyUIBuilderClient.d.ts +1 -10
  35. package/dist-types/index.d.ts +1 -0
  36. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  37. package/dist-types/runtimeConfig.d.ts +6 -2
  38. package/dist-types/runtimeConfig.native.d.ts +6 -2
  39. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  40. package/dist-types/schemas/schemas_0.d.ts +155 -201
  41. package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +0 -4
  42. package/dist-types/ts3.4/index.d.ts +1 -0
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  47. package/dist-types/ts3.4/schemas/schemas_0.d.ts +154 -203
  48. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.amplifyuibuilder" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.amplifyuibuilder",
32
+ version: "2021-08-11",
33
+ serviceTarget: "AmplifyUIBuilder",
34
+ },
30
35
  serviceId: config?.serviceId ?? "AmplifyUIBuilder",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateComponent } from "../schemas/schemas_0";
4
+ import { CreateComponent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateComponentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateComponentCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "CreateComponent", {})
13
13
  .n("AmplifyUIBuilderClient", "CreateComponentCommand")
14
- .sc(CreateComponent)
14
+ .sc(CreateComponent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateForm } from "../schemas/schemas_0";
4
+ import { CreateForm$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateFormCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateFormCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "CreateForm", {})
13
13
  .n("AmplifyUIBuilderClient", "CreateFormCommand")
14
- .sc(CreateForm)
14
+ .sc(CreateForm$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateTheme } from "../schemas/schemas_0";
4
+ import { CreateTheme$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateThemeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateThemeCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "CreateTheme", {})
13
13
  .n("AmplifyUIBuilderClient", "CreateThemeCommand")
14
- .sc(CreateTheme)
14
+ .sc(CreateTheme$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteComponent } from "../schemas/schemas_0";
4
+ import { DeleteComponent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteComponentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteComponentCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "DeleteComponent", {})
13
13
  .n("AmplifyUIBuilderClient", "DeleteComponentCommand")
14
- .sc(DeleteComponent)
14
+ .sc(DeleteComponent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteForm } from "../schemas/schemas_0";
4
+ import { DeleteForm$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteFormCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteFormCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "DeleteForm", {})
13
13
  .n("AmplifyUIBuilderClient", "DeleteFormCommand")
14
- .sc(DeleteForm)
14
+ .sc(DeleteForm$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteTheme } from "../schemas/schemas_0";
4
+ import { DeleteTheme$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteThemeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteThemeCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "DeleteTheme", {})
13
13
  .n("AmplifyUIBuilderClient", "DeleteThemeCommand")
14
- .sc(DeleteTheme)
14
+ .sc(DeleteTheme$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ExchangeCodeForToken } from "../schemas/schemas_0";
4
+ import { ExchangeCodeForToken$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ExchangeCodeForTokenCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ExchangeCodeForTokenCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "ExchangeCodeForToken", {})
13
13
  .n("AmplifyUIBuilderClient", "ExchangeCodeForTokenCommand")
14
- .sc(ExchangeCodeForToken)
14
+ .sc(ExchangeCodeForToken$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ExportComponents } from "../schemas/schemas_0";
4
+ import { ExportComponents$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ExportComponentsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ExportComponentsCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "ExportComponents", {})
13
13
  .n("AmplifyUIBuilderClient", "ExportComponentsCommand")
14
- .sc(ExportComponents)
14
+ .sc(ExportComponents$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ExportForms } from "../schemas/schemas_0";
4
+ import { ExportForms$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ExportFormsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ExportFormsCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "ExportForms", {})
13
13
  .n("AmplifyUIBuilderClient", "ExportFormsCommand")
14
- .sc(ExportForms)
14
+ .sc(ExportForms$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ExportThemes } from "../schemas/schemas_0";
4
+ import { ExportThemes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ExportThemesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ExportThemesCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "ExportThemes", {})
13
13
  .n("AmplifyUIBuilderClient", "ExportThemesCommand")
14
- .sc(ExportThemes)
14
+ .sc(ExportThemes$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetCodegenJob } from "../schemas/schemas_0";
4
+ import { GetCodegenJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetCodegenJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetCodegenJobCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "GetCodegenJob", {})
13
13
  .n("AmplifyUIBuilderClient", "GetCodegenJobCommand")
14
- .sc(GetCodegenJob)
14
+ .sc(GetCodegenJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetComponent } from "../schemas/schemas_0";
4
+ import { GetComponent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetComponentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetComponentCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "GetComponent", {})
13
13
  .n("AmplifyUIBuilderClient", "GetComponentCommand")
14
- .sc(GetComponent)
14
+ .sc(GetComponent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetForm } from "../schemas/schemas_0";
4
+ import { GetForm$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetFormCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetFormCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "GetForm", {})
13
13
  .n("AmplifyUIBuilderClient", "GetFormCommand")
14
- .sc(GetForm)
14
+ .sc(GetForm$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetMetadata } from "../schemas/schemas_0";
4
+ import { GetMetadata$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMetadataCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMetadataCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "GetMetadata", {})
13
13
  .n("AmplifyUIBuilderClient", "GetMetadataCommand")
14
- .sc(GetMetadata)
14
+ .sc(GetMetadata$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetTheme } from "../schemas/schemas_0";
4
+ import { GetTheme$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetThemeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetThemeCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "GetTheme", {})
13
13
  .n("AmplifyUIBuilderClient", "GetThemeCommand")
14
- .sc(GetTheme)
14
+ .sc(GetTheme$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListCodegenJobs } from "../schemas/schemas_0";
4
+ import { ListCodegenJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListCodegenJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListCodegenJobsCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "ListCodegenJobs", {})
13
13
  .n("AmplifyUIBuilderClient", "ListCodegenJobsCommand")
14
- .sc(ListCodegenJobs)
14
+ .sc(ListCodegenJobs$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListComponents } from "../schemas/schemas_0";
4
+ import { ListComponents$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListComponentsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListComponentsCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "ListComponents", {})
13
13
  .n("AmplifyUIBuilderClient", "ListComponentsCommand")
14
- .sc(ListComponents)
14
+ .sc(ListComponents$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListForms } from "../schemas/schemas_0";
4
+ import { ListForms$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListFormsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListFormsCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "ListForms", {})
13
13
  .n("AmplifyUIBuilderClient", "ListFormsCommand")
14
- .sc(ListForms)
14
+ .sc(ListForms$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "ListTagsForResource", {})
13
13
  .n("AmplifyUIBuilderClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListThemes } from "../schemas/schemas_0";
4
+ import { ListThemes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListThemesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListThemesCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "ListThemes", {})
13
13
  .n("AmplifyUIBuilderClient", "ListThemesCommand")
14
- .sc(ListThemes)
14
+ .sc(ListThemes$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutMetadataFlag } from "../schemas/schemas_0";
4
+ import { PutMetadataFlag$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutMetadataFlagCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutMetadataFlagCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "PutMetadataFlag", {})
13
13
  .n("AmplifyUIBuilderClient", "PutMetadataFlagCommand")
14
- .sc(PutMetadataFlag)
14
+ .sc(PutMetadataFlag$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RefreshToken } from "../schemas/schemas_0";
4
+ import { RefreshToken$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RefreshTokenCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RefreshTokenCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "RefreshToken", {})
13
13
  .n("AmplifyUIBuilderClient", "RefreshTokenCommand")
14
- .sc(RefreshToken)
14
+ .sc(RefreshToken$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartCodegenJob } from "../schemas/schemas_0";
4
+ import { StartCodegenJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartCodegenJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartCodegenJobCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "StartCodegenJob", {})
13
13
  .n("AmplifyUIBuilderClient", "StartCodegenJobCommand")
14
- .sc(StartCodegenJob)
14
+ .sc(StartCodegenJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "TagResource", {})
13
13
  .n("AmplifyUIBuilderClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "UntagResource", {})
13
13
  .n("AmplifyUIBuilderClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateComponent } from "../schemas/schemas_0";
4
+ import { UpdateComponent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateComponentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateComponentCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "UpdateComponent", {})
13
13
  .n("AmplifyUIBuilderClient", "UpdateComponentCommand")
14
- .sc(UpdateComponent)
14
+ .sc(UpdateComponent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateForm } from "../schemas/schemas_0";
4
+ import { UpdateForm$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateFormCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateFormCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "UpdateForm", {})
13
13
  .n("AmplifyUIBuilderClient", "UpdateFormCommand")
14
- .sc(UpdateForm)
14
+ .sc(UpdateForm$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateTheme } from "../schemas/schemas_0";
4
+ import { UpdateTheme$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateThemeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateThemeCommand extends $Command
11
11
  })
12
12
  .s("AmplifyUIBuilder", "UpdateTheme", {})
13
13
  .n("AmplifyUIBuilderClient", "UpdateThemeCommand")
14
- .sc(UpdateTheme)
14
+ .sc(UpdateTheme$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./AmplifyUIBuilderClient";
2
2
  export * from "./AmplifyUIBuilder";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.amplifyuibuilder" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.amplifyuibuilder",
29
+ version: "2021-08-11",
30
+ serviceTarget: "AmplifyUIBuilder",
31
+ },
27
32
  serviceId: config?.serviceId ?? "AmplifyUIBuilder",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,