@aws-sdk/client-amplifyuibuilder 3.45.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 (124) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +201 -0
  3. package/README.md +212 -0
  4. package/dist-cjs/AmplifyUIBuilder.js +217 -0
  5. package/dist-cjs/AmplifyUIBuilderClient.js +35 -0
  6. package/dist-cjs/commands/CreateComponentCommand.js +36 -0
  7. package/dist-cjs/commands/CreateThemeCommand.js +36 -0
  8. package/dist-cjs/commands/DeleteComponentCommand.js +36 -0
  9. package/dist-cjs/commands/DeleteThemeCommand.js +36 -0
  10. package/dist-cjs/commands/ExchangeCodeForTokenCommand.js +36 -0
  11. package/dist-cjs/commands/ExportComponentsCommand.js +36 -0
  12. package/dist-cjs/commands/ExportThemesCommand.js +36 -0
  13. package/dist-cjs/commands/GetComponentCommand.js +36 -0
  14. package/dist-cjs/commands/GetThemeCommand.js +36 -0
  15. package/dist-cjs/commands/ListComponentsCommand.js +36 -0
  16. package/dist-cjs/commands/ListThemesCommand.js +36 -0
  17. package/dist-cjs/commands/RefreshTokenCommand.js +36 -0
  18. package/dist-cjs/commands/UpdateComponentCommand.js +36 -0
  19. package/dist-cjs/commands/UpdateThemeCommand.js +36 -0
  20. package/dist-cjs/commands/index.js +17 -0
  21. package/dist-cjs/endpoints.js +131 -0
  22. package/dist-cjs/index.js +8 -0
  23. package/dist-cjs/models/index.js +4 -0
  24. package/dist-cjs/models/models_0.js +340 -0
  25. package/dist-cjs/pagination/Interfaces.js +2 -0
  26. package/dist-cjs/pagination/ListComponentsPaginator.js +35 -0
  27. package/dist-cjs/pagination/ListThemesPaginator.js +35 -0
  28. package/dist-cjs/pagination/index.js +6 -0
  29. package/dist-cjs/protocols/Aws_restJson1.js +2404 -0
  30. package/dist-cjs/runtimeConfig.browser.js +40 -0
  31. package/dist-cjs/runtimeConfig.js +44 -0
  32. package/dist-cjs/runtimeConfig.native.js +16 -0
  33. package/dist-cjs/runtimeConfig.shared.js +17 -0
  34. package/dist-es/AmplifyUIBuilder.js +220 -0
  35. package/dist-es/AmplifyUIBuilderClient.js +37 -0
  36. package/dist-es/commands/CreateComponentCommand.js +39 -0
  37. package/dist-es/commands/CreateThemeCommand.js +39 -0
  38. package/dist-es/commands/DeleteComponentCommand.js +39 -0
  39. package/dist-es/commands/DeleteThemeCommand.js +39 -0
  40. package/dist-es/commands/ExchangeCodeForTokenCommand.js +39 -0
  41. package/dist-es/commands/ExportComponentsCommand.js +39 -0
  42. package/dist-es/commands/ExportThemesCommand.js +39 -0
  43. package/dist-es/commands/GetComponentCommand.js +39 -0
  44. package/dist-es/commands/GetThemeCommand.js +39 -0
  45. package/dist-es/commands/ListComponentsCommand.js +39 -0
  46. package/dist-es/commands/ListThemesCommand.js +39 -0
  47. package/dist-es/commands/RefreshTokenCommand.js +39 -0
  48. package/dist-es/commands/UpdateComponentCommand.js +39 -0
  49. package/dist-es/commands/UpdateThemeCommand.js +39 -0
  50. package/dist-es/commands/index.js +14 -0
  51. package/dist-es/endpoints.js +127 -0
  52. package/dist-es/index.js +5 -0
  53. package/dist-es/models/index.js +1 -0
  54. package/dist-es/models/models_0.js +222 -0
  55. package/dist-es/pagination/Interfaces.js +1 -0
  56. package/dist-es/pagination/ListComponentsPaginator.js +74 -0
  57. package/dist-es/pagination/ListThemesPaginator.js +74 -0
  58. package/dist-es/pagination/index.js +3 -0
  59. package/dist-es/protocols/Aws_restJson1.js +2546 -0
  60. package/dist-es/runtimeConfig.browser.js +17 -0
  61. package/dist-es/runtimeConfig.js +21 -0
  62. package/dist-es/runtimeConfig.native.js +8 -0
  63. package/dist-es/runtimeConfig.shared.js +13 -0
  64. package/dist-types/AmplifyUIBuilder.d.ts +116 -0
  65. package/dist-types/AmplifyUIBuilderClient.d.ts +163 -0
  66. package/dist-types/commands/CreateComponentCommand.d.ts +35 -0
  67. package/dist-types/commands/CreateThemeCommand.d.ts +35 -0
  68. package/dist-types/commands/DeleteComponentCommand.d.ts +35 -0
  69. package/dist-types/commands/DeleteThemeCommand.d.ts +35 -0
  70. package/dist-types/commands/ExchangeCodeForTokenCommand.d.ts +35 -0
  71. package/dist-types/commands/ExportComponentsCommand.d.ts +36 -0
  72. package/dist-types/commands/ExportThemesCommand.d.ts +36 -0
  73. package/dist-types/commands/GetComponentCommand.d.ts +35 -0
  74. package/dist-types/commands/GetThemeCommand.d.ts +35 -0
  75. package/dist-types/commands/ListComponentsCommand.d.ts +35 -0
  76. package/dist-types/commands/ListThemesCommand.d.ts +35 -0
  77. package/dist-types/commands/RefreshTokenCommand.d.ts +35 -0
  78. package/dist-types/commands/UpdateComponentCommand.d.ts +35 -0
  79. package/dist-types/commands/UpdateThemeCommand.d.ts +35 -0
  80. package/dist-types/commands/index.d.ts +14 -0
  81. package/dist-types/endpoints.d.ts +2 -0
  82. package/dist-types/index.d.ts +5 -0
  83. package/dist-types/models/index.d.ts +1 -0
  84. package/dist-types/models/models_0.d.ts +1342 -0
  85. package/dist-types/pagination/Interfaces.d.ts +6 -0
  86. package/dist-types/pagination/ListComponentsPaginator.d.ts +4 -0
  87. package/dist-types/pagination/ListThemesPaginator.d.ts +4 -0
  88. package/dist-types/pagination/index.d.ts +3 -0
  89. package/dist-types/protocols/Aws_restJson1.d.ts +44 -0
  90. package/dist-types/runtimeConfig.browser.d.ts +39 -0
  91. package/dist-types/runtimeConfig.d.ts +39 -0
  92. package/dist-types/runtimeConfig.native.d.ts +38 -0
  93. package/dist-types/runtimeConfig.shared.d.ts +13 -0
  94. package/dist-types/ts3.4/AmplifyUIBuilder.d.ts +75 -0
  95. package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +85 -0
  96. package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +17 -0
  97. package/dist-types/ts3.4/commands/CreateThemeCommand.d.ts +17 -0
  98. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +17 -0
  99. package/dist-types/ts3.4/commands/DeleteThemeCommand.d.ts +17 -0
  100. package/dist-types/ts3.4/commands/ExchangeCodeForTokenCommand.d.ts +17 -0
  101. package/dist-types/ts3.4/commands/ExportComponentsCommand.d.ts +17 -0
  102. package/dist-types/ts3.4/commands/ExportThemesCommand.d.ts +17 -0
  103. package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +17 -0
  104. package/dist-types/ts3.4/commands/GetThemeCommand.d.ts +17 -0
  105. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +17 -0
  106. package/dist-types/ts3.4/commands/ListThemesCommand.d.ts +17 -0
  107. package/dist-types/ts3.4/commands/RefreshTokenCommand.d.ts +17 -0
  108. package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +17 -0
  109. package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +17 -0
  110. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  111. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  112. package/dist-types/ts3.4/index.d.ts +5 -0
  113. package/dist-types/ts3.4/models/index.d.ts +1 -0
  114. package/dist-types/ts3.4/models/models_0.d.ts +783 -0
  115. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  116. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +4 -0
  117. package/dist-types/ts3.4/pagination/ListThemesPaginator.d.ts +4 -0
  118. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  119. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +44 -0
  120. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
  121. package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
  122. package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
  123. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  124. package/package.json +96 -0
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { AmplifyUIBuilder } from "../AmplifyUIBuilder";
3
+ import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
4
+ export interface AmplifyUIBuilderPaginationConfiguration extends PaginationConfiguration {
5
+ client: AmplifyUIBuilder | AmplifyUIBuilderClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
3
+ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListComponents(config: AmplifyUIBuilderPaginationConfiguration, input: ListComponentsCommandInput, ...additionalArguments: any): Paginator<ListComponentsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListThemesCommandInput, ListThemesCommandOutput } from "../commands/ListThemesCommand";
3
+ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListThemes(config: AmplifyUIBuilderPaginationConfiguration, input: ListThemesCommandInput, ...additionalArguments: any): Paginator<ListThemesCommandOutput>;
@@ -0,0 +1,3 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListComponentsPaginator";
3
+ export * from "./ListThemesPaginator";
@@ -0,0 +1,44 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CreateComponentCommandInput, CreateComponentCommandOutput } from "../commands/CreateComponentCommand";
4
+ import { CreateThemeCommandInput, CreateThemeCommandOutput } from "../commands/CreateThemeCommand";
5
+ import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "../commands/DeleteComponentCommand";
6
+ import { DeleteThemeCommandInput, DeleteThemeCommandOutput } from "../commands/DeleteThemeCommand";
7
+ import { ExchangeCodeForTokenCommandInput, ExchangeCodeForTokenCommandOutput } from "../commands/ExchangeCodeForTokenCommand";
8
+ import { ExportComponentsCommandInput, ExportComponentsCommandOutput } from "../commands/ExportComponentsCommand";
9
+ import { ExportThemesCommandInput, ExportThemesCommandOutput } from "../commands/ExportThemesCommand";
10
+ import { GetComponentCommandInput, GetComponentCommandOutput } from "../commands/GetComponentCommand";
11
+ import { GetThemeCommandInput, GetThemeCommandOutput } from "../commands/GetThemeCommand";
12
+ import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
13
+ import { ListThemesCommandInput, ListThemesCommandOutput } from "../commands/ListThemesCommand";
14
+ import { RefreshTokenCommandInput, RefreshTokenCommandOutput } from "../commands/RefreshTokenCommand";
15
+ import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "../commands/UpdateComponentCommand";
16
+ import { UpdateThemeCommandInput, UpdateThemeCommandOutput } from "../commands/UpdateThemeCommand";
17
+ export declare const serializeAws_restJson1CreateComponentCommand: (input: CreateComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_restJson1CreateThemeCommand: (input: CreateThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_restJson1DeleteComponentCommand: (input: DeleteComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_restJson1DeleteThemeCommand: (input: DeleteThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_restJson1ExchangeCodeForTokenCommand: (input: ExchangeCodeForTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_restJson1ExportComponentsCommand: (input: ExportComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const serializeAws_restJson1ExportThemesCommand: (input: ExportThemesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ export declare const serializeAws_restJson1GetComponentCommand: (input: GetComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_restJson1GetThemeCommand: (input: GetThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1ListComponentsCommand: (input: ListComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const serializeAws_restJson1ListThemesCommand: (input: ListThemesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_restJson1RefreshTokenCommand: (input: RefreshTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_restJson1UpdateComponentCommand: (input: UpdateComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1UpdateThemeCommand: (input: UpdateThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ export declare const deserializeAws_restJson1CreateComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateComponentCommandOutput>;
32
+ export declare const deserializeAws_restJson1CreateThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateThemeCommandOutput>;
33
+ export declare const deserializeAws_restJson1DeleteComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteComponentCommandOutput>;
34
+ export declare const deserializeAws_restJson1DeleteThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteThemeCommandOutput>;
35
+ export declare const deserializeAws_restJson1ExchangeCodeForTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExchangeCodeForTokenCommandOutput>;
36
+ export declare const deserializeAws_restJson1ExportComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportComponentsCommandOutput>;
37
+ export declare const deserializeAws_restJson1ExportThemesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportThemesCommandOutput>;
38
+ export declare const deserializeAws_restJson1GetComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentCommandOutput>;
39
+ export declare const deserializeAws_restJson1GetThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetThemeCommandOutput>;
40
+ export declare const deserializeAws_restJson1ListComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentsCommandOutput>;
41
+ export declare const deserializeAws_restJson1ListThemesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListThemesCommandOutput>;
42
+ export declare const deserializeAws_restJson1RefreshTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RefreshTokenCommandOutput>;
43
+ export declare const deserializeAws_restJson1UpdateComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateComponentCommandOutput>;
44
+ export declare const deserializeAws_restJson1UpdateThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateThemeCommandOutput>;
@@ -0,0 +1,37 @@
1
+ import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AmplifyUIBuilderClientConfig) => {
5
+ runtime: string;
6
+ base64Decoder: import("@aws-sdk/types").Decoder;
7
+ base64Encoder: import("@aws-sdk/types").Encoder;
8
+ bodyLengthChecker: (body: any) => number | undefined;
9
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
10
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
11
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
12
+ region: string | import("@aws-sdk/types").Provider<any>;
13
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
14
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
15
+ sha256: import("@aws-sdk/types").HashConstructor;
16
+ streamCollector: import("@aws-sdk/types").StreamCollector;
17
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
18
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ utf8Decoder: import("@aws-sdk/types").Decoder;
20
+ utf8Encoder: import("@aws-sdk/types").Encoder;
21
+ apiVersion: string;
22
+ urlParser: import("@aws-sdk/types").UrlParser;
23
+ disableHostPrefix: boolean;
24
+ logger: import("@aws-sdk/types").Logger;
25
+ serviceId: string;
26
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,37 @@
1
+ import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
2
+ import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AmplifyUIBuilderClientConfig) => {
5
+ runtime: string;
6
+ base64Decoder: import("@aws-sdk/types").Decoder;
7
+ base64Encoder: import("@aws-sdk/types").Encoder;
8
+ bodyLengthChecker: (body: any) => number | undefined;
9
+ credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
10
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
11
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
12
+ region: string | import("@aws-sdk/types").Provider<string>;
13
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
14
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
15
+ sha256: import("@aws-sdk/types").HashConstructor;
16
+ streamCollector: import("@aws-sdk/types").StreamCollector;
17
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
18
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ utf8Decoder: import("@aws-sdk/types").Decoder;
20
+ utf8Encoder: import("@aws-sdk/types").Encoder;
21
+ apiVersion: string;
22
+ urlParser: import("@aws-sdk/types").UrlParser;
23
+ disableHostPrefix: boolean;
24
+ logger: import("@aws-sdk/types").Logger;
25
+ serviceId: string;
26
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,36 @@
1
+ import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
2
+
3
+ export declare const getRuntimeConfig: (config: AmplifyUIBuilderClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
27
+ tls?: boolean | undefined;
28
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
29
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
30
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
31
+ signingEscapePath?: boolean | undefined;
32
+ systemClockOffset?: number | undefined;
33
+ signingRegion?: string | undefined;
34
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
35
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
36
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AmplifyUIBuilderClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };
package/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "@aws-sdk/client-amplifyuibuilder",
3
+ "description": "AWS SDK for JavaScript Amplifyuibuilder Client for Node.js, Browser and React Native",
4
+ "version": "3.45.0",
5
+ "scripts": {
6
+ "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
+ "build:cjs": "tsc -p tsconfig.json",
8
+ "build:docs": "yarn clean:docs && typedoc ./",
9
+ "build:es": "tsc -p tsconfig.es.json",
10
+ "build:types": "tsc -p tsconfig.types.json",
11
+ "clean": "yarn clean:dist && yarn clean:docs",
12
+ "clean:dist": "rimraf ./dist-*",
13
+ "clean:docs": "rimraf ./docs",
14
+ "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
15
+ "test": "jest --coverage --passWithNoTests"
16
+ },
17
+ "main": "./dist-cjs/index.js",
18
+ "types": "./dist-types/index.d.ts",
19
+ "module": "./dist-es/index.js",
20
+ "sideEffects": false,
21
+ "dependencies": {
22
+ "@aws-crypto/sha256-browser": "2.0.0",
23
+ "@aws-crypto/sha256-js": "2.0.0",
24
+ "@aws-sdk/client-sts": "3.45.0",
25
+ "@aws-sdk/config-resolver": "3.45.0",
26
+ "@aws-sdk/credential-provider-node": "3.45.0",
27
+ "@aws-sdk/fetch-http-handler": "3.40.0",
28
+ "@aws-sdk/hash-node": "3.40.0",
29
+ "@aws-sdk/invalid-dependency": "3.40.0",
30
+ "@aws-sdk/middleware-content-length": "3.40.0",
31
+ "@aws-sdk/middleware-host-header": "3.40.0",
32
+ "@aws-sdk/middleware-logger": "3.40.0",
33
+ "@aws-sdk/middleware-retry": "3.40.0",
34
+ "@aws-sdk/middleware-serde": "3.40.0",
35
+ "@aws-sdk/middleware-signing": "3.45.0",
36
+ "@aws-sdk/middleware-stack": "3.40.0",
37
+ "@aws-sdk/middleware-user-agent": "3.40.0",
38
+ "@aws-sdk/node-config-provider": "3.40.0",
39
+ "@aws-sdk/node-http-handler": "3.40.0",
40
+ "@aws-sdk/protocol-http": "3.40.0",
41
+ "@aws-sdk/smithy-client": "3.41.0",
42
+ "@aws-sdk/types": "3.40.0",
43
+ "@aws-sdk/url-parser": "3.40.0",
44
+ "@aws-sdk/util-base64-browser": "3.37.0",
45
+ "@aws-sdk/util-base64-node": "3.37.0",
46
+ "@aws-sdk/util-body-length-browser": "3.37.0",
47
+ "@aws-sdk/util-body-length-node": "3.37.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.40.0",
49
+ "@aws-sdk/util-user-agent-node": "3.40.0",
50
+ "@aws-sdk/util-utf8-browser": "3.37.0",
51
+ "@aws-sdk/util-utf8-node": "3.37.0",
52
+ "tslib": "^2.3.0",
53
+ "uuid": "^8.3.2"
54
+ },
55
+ "devDependencies": {
56
+ "@aws-sdk/service-client-documentation-generator": "3.38.0",
57
+ "@types/node": "^12.7.5",
58
+ "@types/uuid": "^8.3.0",
59
+ "downlevel-dts": "0.7.0",
60
+ "jest": "^26.1.0",
61
+ "rimraf": "^3.0.0",
62
+ "ts-jest": "^26.4.1",
63
+ "typedoc": "^0.19.2",
64
+ "typescript": "~4.3.5"
65
+ },
66
+ "engines": {
67
+ "node": ">=10.0.0"
68
+ },
69
+ "typesVersions": {
70
+ "<4.0": {
71
+ "dist-types/*": [
72
+ "dist-types/ts3.4/*"
73
+ ]
74
+ }
75
+ },
76
+ "files": [
77
+ "dist-*"
78
+ ],
79
+ "author": {
80
+ "name": "AWS SDK for JavaScript Team",
81
+ "url": "https://aws.amazon.com/javascript/"
82
+ },
83
+ "license": "Apache-2.0",
84
+ "browser": {
85
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
86
+ },
87
+ "react-native": {
88
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
89
+ },
90
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-amplifyuibuilder",
91
+ "repository": {
92
+ "type": "git",
93
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
94
+ "directory": "clients/client-amplifyuibuilder"
95
+ }
96
+ }