@aws-sdk/client-amplifyuibuilder 3.928.0 → 3.930.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 (52) hide show
  1. package/dist-cjs/index.js +1806 -1902
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/AmplifyUIBuilderClient.js +2 -0
  4. package/dist-es/commands/CreateComponentCommand.js +3 -9
  5. package/dist-es/commands/CreateFormCommand.js +3 -9
  6. package/dist-es/commands/CreateThemeCommand.js +3 -9
  7. package/dist-es/commands/DeleteComponentCommand.js +3 -9
  8. package/dist-es/commands/DeleteFormCommand.js +3 -9
  9. package/dist-es/commands/DeleteThemeCommand.js +3 -9
  10. package/dist-es/commands/ExchangeCodeForTokenCommand.js +3 -10
  11. package/dist-es/commands/ExportComponentsCommand.js +3 -9
  12. package/dist-es/commands/ExportFormsCommand.js +3 -9
  13. package/dist-es/commands/ExportThemesCommand.js +3 -9
  14. package/dist-es/commands/GetCodegenJobCommand.js +3 -9
  15. package/dist-es/commands/GetComponentCommand.js +3 -9
  16. package/dist-es/commands/GetFormCommand.js +3 -9
  17. package/dist-es/commands/GetMetadataCommand.js +3 -9
  18. package/dist-es/commands/GetThemeCommand.js +3 -9
  19. package/dist-es/commands/ListCodegenJobsCommand.js +3 -9
  20. package/dist-es/commands/ListComponentsCommand.js +3 -9
  21. package/dist-es/commands/ListFormsCommand.js +3 -9
  22. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  23. package/dist-es/commands/ListThemesCommand.js +3 -9
  24. package/dist-es/commands/PutMetadataFlagCommand.js +3 -9
  25. package/dist-es/commands/RefreshTokenCommand.js +3 -10
  26. package/dist-es/commands/StartCodegenJobCommand.js +3 -9
  27. package/dist-es/commands/TagResourceCommand.js +3 -9
  28. package/dist-es/commands/UntagResourceCommand.js +3 -9
  29. package/dist-es/commands/UpdateComponentCommand.js +3 -9
  30. package/dist-es/commands/UpdateFormCommand.js +3 -9
  31. package/dist-es/commands/UpdateThemeCommand.js +3 -9
  32. package/dist-es/models/models_0.js +0 -70
  33. package/dist-es/runtimeConfig.shared.js +2 -0
  34. package/dist-es/schemas/schemas_0.js +1744 -0
  35. package/dist-types/AmplifyUIBuilderClient.d.ts +10 -1
  36. package/dist-types/models/models_0.d.ts +16 -28
  37. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  38. package/dist-types/runtimeConfig.d.ts +1 -0
  39. package/dist-types/runtimeConfig.native.d.ts +1 -0
  40. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  41. package/dist-types/schemas/schemas_0.d.ts +201 -0
  42. package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +4 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +0 -22
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  48. package/dist-types/ts3.4/schemas/schemas_0.d.ts +208 -0
  49. package/package.json +33 -34
  50. package/dist-es/protocols/Aws_restJson1.js +0 -1614
  51. package/dist-types/protocols/Aws_restJson1.d.ts +0 -254
  52. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -341
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { CreateComponentCommandInput, CreateComponentCommandOutput } from "./commands/CreateComponentCommand";
11
11
  import { CreateFormCommandInput, CreateFormCommandOutput } from "./commands/CreateFormCommand";
@@ -169,6 +169,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
169
169
  * Optional extensions
170
170
  */
171
171
  extensions?: RuntimeExtension[];
172
+ /**
173
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
174
+ * may be overridden. A default will always be set by the client.
175
+ * Available options depend on the service's supported protocols and will not be validated by
176
+ * the client.
177
+ * @alpha
178
+ *
179
+ */
180
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
172
181
  /**
173
182
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
174
183
  */
@@ -404,13 +404,16 @@ export declare namespace ApiConfiguration {
404
404
  noApiConfig?: never;
405
405
  $unknown: [string, any];
406
406
  }
407
+ /**
408
+ * @deprecated unused in schema-serde mode.
409
+ *
410
+ */
407
411
  interface Visitor<T> {
408
412
  graphQLConfig: (value: GraphQLRenderConfig) => T;
409
413
  dataStoreConfig: (value: DataStoreRenderConfig) => T;
410
414
  noApiConfig: (value: NoApiRenderConfig) => T;
411
415
  _: (name: string, value: any) => T;
412
416
  }
413
- const visit: <T>(value: ApiConfiguration, visitor: Visitor<T>) => T;
414
417
  }
415
418
  /**
416
419
  * @public
@@ -514,11 +517,14 @@ export declare namespace CodegenJobRenderConfig {
514
517
  react?: never;
515
518
  $unknown: [string, any];
516
519
  }
520
+ /**
521
+ * @deprecated unused in schema-serde mode.
522
+ *
523
+ */
517
524
  interface Visitor<T> {
518
525
  react: (value: ReactStartCodegenJobData) => T;
519
526
  _: (name: string, value: any) => T;
520
527
  }
521
- const visit: <T>(value: CodegenJobRenderConfig, visitor: Visitor<T>) => T;
522
528
  }
523
529
  /**
524
530
  * @public
@@ -1143,13 +1149,16 @@ export declare namespace FieldPosition {
1143
1149
  below?: never;
1144
1150
  $unknown: [string, any];
1145
1151
  }
1152
+ /**
1153
+ * @deprecated unused in schema-serde mode.
1154
+ *
1155
+ */
1146
1156
  interface Visitor<T> {
1147
1157
  fixed: (value: FixedPosition) => T;
1148
1158
  rightOf: (value: string) => T;
1149
1159
  below: (value: string) => T;
1150
1160
  _: (name: string, value: any) => T;
1151
1161
  }
1152
- const visit: <T>(value: FieldPosition, visitor: Visitor<T>) => T;
1153
1162
  }
1154
1163
  /**
1155
1164
  * <p>Describes the configuration for a button UI element that is a part of a form.</p>
@@ -1485,12 +1494,15 @@ export declare namespace FormStyleConfig {
1485
1494
  value?: never;
1486
1495
  $unknown: [string, any];
1487
1496
  }
1497
+ /**
1498
+ * @deprecated unused in schema-serde mode.
1499
+ *
1500
+ */
1488
1501
  interface Visitor<T> {
1489
1502
  tokenReference: (value: string) => T;
1490
1503
  value: (value: string) => T;
1491
1504
  _: (name: string, value: any) => T;
1492
1505
  }
1493
- const visit: <T>(value: FormStyleConfig, visitor: Visitor<T>) => T;
1494
1506
  }
1495
1507
  /**
1496
1508
  * <p>Describes the configuration for the form's style.</p>
@@ -3413,27 +3425,3 @@ export interface ExportComponentsResponse {
3413
3425
  */
3414
3426
  nextToken?: string | undefined;
3415
3427
  }
3416
- /**
3417
- * @internal
3418
- */
3419
- export declare const ExchangeCodeForTokenRequestBodyFilterSensitiveLog: (obj: ExchangeCodeForTokenRequestBody) => any;
3420
- /**
3421
- * @internal
3422
- */
3423
- export declare const ExchangeCodeForTokenRequestFilterSensitiveLog: (obj: ExchangeCodeForTokenRequest) => any;
3424
- /**
3425
- * @internal
3426
- */
3427
- export declare const ExchangeCodeForTokenResponseFilterSensitiveLog: (obj: ExchangeCodeForTokenResponse) => any;
3428
- /**
3429
- * @internal
3430
- */
3431
- export declare const RefreshTokenRequestBodyFilterSensitiveLog: (obj: RefreshTokenRequestBody) => any;
3432
- /**
3433
- * @internal
3434
- */
3435
- export declare const RefreshTokenRequestFilterSensitiveLog: (obj: RefreshTokenRequest) => any;
3436
- /**
3437
- * @internal
3438
- */
3439
- export declare const RefreshTokenResponseFilterSensitiveLog: (obj: RefreshTokenResponse) => any;
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: AmplifyUIBuilderClientConfig) =>
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: AmplifyUIBuilderClientConfig) =>
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: AmplifyUIBuilderClientConfig) =>
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: AmplifyUIBuilderClientConfig) =>
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AmplifyUIBuilderHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,201 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var SensitiveString: StaticSimpleSchema;
3
+ export declare var ActionParameters: StaticStructureSchema;
4
+ export declare var CodegenDependency: StaticStructureSchema;
5
+ export declare var CodegenFeatureFlags: StaticStructureSchema;
6
+ export declare var CodegenGenericDataEnum: StaticStructureSchema;
7
+ export declare var CodegenGenericDataField: StaticStructureSchema;
8
+ export declare var CodegenGenericDataModel: StaticStructureSchema;
9
+ export declare var CodegenGenericDataNonModel: StaticStructureSchema;
10
+ export declare var CodegenGenericDataRelationshipType: StaticStructureSchema;
11
+ export declare var CodegenJob: StaticStructureSchema;
12
+ export declare var CodegenJobAsset: StaticStructureSchema;
13
+ export declare var CodegenJobGenericDataSchema: StaticStructureSchema;
14
+ export declare var CodegenJobSummary: StaticStructureSchema;
15
+ export declare var Component: StaticStructureSchema;
16
+ export declare var ComponentBindingPropertiesValue: StaticStructureSchema;
17
+ export declare var ComponentBindingPropertiesValueProperties: StaticStructureSchema;
18
+ export declare var ComponentChild: StaticStructureSchema;
19
+ export declare var ComponentConditionProperty: StaticStructureSchema;
20
+ export declare var ComponentDataConfiguration: StaticStructureSchema;
21
+ export declare var ComponentEvent: StaticStructureSchema;
22
+ export declare var ComponentProperty: StaticStructureSchema;
23
+ export declare var ComponentPropertyBindingProperties: StaticStructureSchema;
24
+ export declare var ComponentSummary: StaticStructureSchema;
25
+ export declare var ComponentVariant: StaticStructureSchema;
26
+ export declare var CreateComponentData: StaticStructureSchema;
27
+ export declare var CreateComponentRequest: StaticStructureSchema;
28
+ export declare var CreateComponentResponse: StaticStructureSchema;
29
+ export declare var CreateFormData: StaticStructureSchema;
30
+ export declare var CreateFormRequest: StaticStructureSchema;
31
+ export declare var CreateFormResponse: StaticStructureSchema;
32
+ export declare var CreateThemeData: StaticStructureSchema;
33
+ export declare var CreateThemeRequest: StaticStructureSchema;
34
+ export declare var CreateThemeResponse: StaticStructureSchema;
35
+ export declare var DataStoreRenderConfig: StaticStructureSchema;
36
+ export declare var DeleteComponentRequest: StaticStructureSchema;
37
+ export declare var DeleteFormRequest: StaticStructureSchema;
38
+ export declare var DeleteThemeRequest: StaticStructureSchema;
39
+ export declare var ExchangeCodeForTokenRequest: StaticStructureSchema;
40
+ export declare var ExchangeCodeForTokenRequestBody: StaticStructureSchema;
41
+ export declare var ExchangeCodeForTokenResponse: StaticStructureSchema;
42
+ export declare var ExportComponentsRequest: StaticStructureSchema;
43
+ export declare var ExportComponentsResponse: StaticStructureSchema;
44
+ export declare var ExportFormsRequest: StaticStructureSchema;
45
+ export declare var ExportFormsResponse: StaticStructureSchema;
46
+ export declare var ExportThemesRequest: StaticStructureSchema;
47
+ export declare var ExportThemesResponse: StaticStructureSchema;
48
+ export declare var FieldConfig: StaticStructureSchema;
49
+ export declare var FieldInputConfig: StaticStructureSchema;
50
+ export declare var FieldValidationConfiguration: StaticStructureSchema;
51
+ export declare var FileUploaderFieldConfig: StaticStructureSchema;
52
+ export declare var Form: StaticStructureSchema;
53
+ export declare var FormBindingElement: StaticStructureSchema;
54
+ export declare var FormButton: StaticStructureSchema;
55
+ export declare var FormCTA: StaticStructureSchema;
56
+ export declare var FormDataTypeConfig: StaticStructureSchema;
57
+ export declare var FormInputBindingPropertiesValue: StaticStructureSchema;
58
+ export declare var FormInputBindingPropertiesValueProperties: StaticStructureSchema;
59
+ export declare var FormInputValueProperty: StaticStructureSchema;
60
+ export declare var FormInputValuePropertyBindingProperties: StaticStructureSchema;
61
+ export declare var FormStyle: StaticStructureSchema;
62
+ export declare var FormSummary: StaticStructureSchema;
63
+ export declare var GetCodegenJobRequest: StaticStructureSchema;
64
+ export declare var GetCodegenJobResponse: StaticStructureSchema;
65
+ export declare var GetComponentRequest: StaticStructureSchema;
66
+ export declare var GetComponentResponse: StaticStructureSchema;
67
+ export declare var GetFormRequest: StaticStructureSchema;
68
+ export declare var GetFormResponse: StaticStructureSchema;
69
+ export declare var GetMetadataRequest: StaticStructureSchema;
70
+ export declare var GetMetadataResponse: StaticStructureSchema;
71
+ export declare var GetThemeRequest: StaticStructureSchema;
72
+ export declare var GetThemeResponse: StaticStructureSchema;
73
+ export declare var GraphQLRenderConfig: StaticStructureSchema;
74
+ export declare var InternalServerException: StaticErrorSchema;
75
+ export declare var InvalidParameterException: StaticErrorSchema;
76
+ export declare var ListCodegenJobsRequest: StaticStructureSchema;
77
+ export declare var ListCodegenJobsResponse: StaticStructureSchema;
78
+ export declare var ListComponentsRequest: StaticStructureSchema;
79
+ export declare var ListComponentsResponse: StaticStructureSchema;
80
+ export declare var ListFormsRequest: StaticStructureSchema;
81
+ export declare var ListFormsResponse: StaticStructureSchema;
82
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
83
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
84
+ export declare var ListThemesRequest: StaticStructureSchema;
85
+ export declare var ListThemesResponse: StaticStructureSchema;
86
+ export declare var MutationActionSetStateParameter: StaticStructureSchema;
87
+ export declare var NoApiRenderConfig: StaticStructureSchema;
88
+ export declare var Predicate: StaticStructureSchema;
89
+ export declare var PutMetadataFlagBody: StaticStructureSchema;
90
+ export declare var PutMetadataFlagRequest: StaticStructureSchema;
91
+ export declare var ReactStartCodegenJobData: StaticStructureSchema;
92
+ export declare var RefreshTokenRequest: StaticStructureSchema;
93
+ export declare var RefreshTokenRequestBody: StaticStructureSchema;
94
+ export declare var RefreshTokenResponse: StaticStructureSchema;
95
+ export declare var ResourceConflictException: StaticErrorSchema;
96
+ export declare var ResourceNotFoundException: StaticErrorSchema;
97
+ export declare var SectionalElement: StaticStructureSchema;
98
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
99
+ export declare var SortProperty: StaticStructureSchema;
100
+ export declare var StartCodegenJobData: StaticStructureSchema;
101
+ export declare var StartCodegenJobRequest: StaticStructureSchema;
102
+ export declare var StartCodegenJobResponse: StaticStructureSchema;
103
+ export declare var TagResourceRequest: StaticStructureSchema;
104
+ export declare var TagResourceResponse: StaticStructureSchema;
105
+ export declare var Theme: StaticStructureSchema;
106
+ export declare var ThemeSummary: StaticStructureSchema;
107
+ export declare var ThemeValue: StaticStructureSchema;
108
+ export declare var ThemeValues: StaticStructureSchema;
109
+ export declare var ThrottlingException: StaticErrorSchema;
110
+ export declare var UnauthorizedException: StaticErrorSchema;
111
+ export declare var UntagResourceRequest: StaticStructureSchema;
112
+ export declare var UntagResourceResponse: StaticStructureSchema;
113
+ export declare var UpdateComponentData: StaticStructureSchema;
114
+ export declare var UpdateComponentRequest: StaticStructureSchema;
115
+ export declare var UpdateComponentResponse: StaticStructureSchema;
116
+ export declare var UpdateFormData: StaticStructureSchema;
117
+ export declare var UpdateFormRequest: StaticStructureSchema;
118
+ export declare var UpdateFormResponse: StaticStructureSchema;
119
+ export declare var UpdateThemeData: StaticStructureSchema;
120
+ export declare var UpdateThemeRequest: StaticStructureSchema;
121
+ export declare var UpdateThemeResponse: StaticStructureSchema;
122
+ export declare var ValueMapping: StaticStructureSchema;
123
+ export declare var ValueMappings: StaticStructureSchema;
124
+ export declare var __Unit: "unit";
125
+ export declare var AmplifyUIBuilderServiceException: StaticErrorSchema;
126
+ export declare var AssociatedFieldsList: number;
127
+ export declare var CodegenDependencies: StaticListSchema;
128
+ export declare var CodegenGenericDataEnumValuesList: number;
129
+ export declare var CodegenJobSummaryList: StaticListSchema;
130
+ export declare var CodegenPrimaryKeysList: number;
131
+ export declare var ComponentChildList: StaticListSchema;
132
+ export declare var ComponentList: StaticListSchema;
133
+ export declare var ComponentPropertyList: StaticListSchema;
134
+ export declare var ComponentSummaryList: StaticListSchema;
135
+ export declare var ComponentVariants: StaticListSchema;
136
+ export declare var FormInputValuePropertyList: StaticListSchema;
137
+ export declare var FormList: StaticListSchema;
138
+ export declare var FormSummaryList: StaticListSchema;
139
+ export declare var IdentifierList: number;
140
+ export declare var NumValues: number;
141
+ export declare var PredicateList: StaticListSchema;
142
+ export declare var RelatedModelFieldsList: number;
143
+ export declare var SortPropertyList: StaticListSchema;
144
+ export declare var StrValues: number;
145
+ export declare var TagKeyList: number;
146
+ export declare var ThemeList: StaticListSchema;
147
+ export declare var ThemeSummaryList: StaticListSchema;
148
+ export declare var ThemeValuesList: StaticListSchema;
149
+ export declare var ValidationsList: StaticListSchema;
150
+ export declare var ValueMappingList: StaticListSchema;
151
+ export declare var CodegenGenericDataEnums: StaticMapSchema;
152
+ export declare var CodegenGenericDataFields: StaticMapSchema;
153
+ export declare var CodegenGenericDataModels: StaticMapSchema;
154
+ export declare var CodegenGenericDataNonModelFields: StaticMapSchema;
155
+ export declare var CodegenGenericDataNonModels: StaticMapSchema;
156
+ export declare var ComponentBindingProperties: StaticMapSchema;
157
+ export declare var ComponentCollectionProperties: StaticMapSchema;
158
+ export declare var ComponentEvents: StaticMapSchema;
159
+ export declare var ComponentOverrides: StaticMapSchema;
160
+ export declare var ComponentOverridesValue: number;
161
+ export declare var ComponentProperties: StaticMapSchema;
162
+ export declare var ComponentVariantValues: number;
163
+ export declare var FeaturesMap: number;
164
+ export declare var FieldsMap: StaticMapSchema;
165
+ export declare var FormBindings: StaticMapSchema;
166
+ export declare var FormInputBindingProperties: StaticMapSchema;
167
+ export declare var ReactCodegenDependencies: number;
168
+ export declare var SectionalElementMap: StaticMapSchema;
169
+ export declare var Tags: number;
170
+ export declare var ApiConfiguration: StaticStructureSchema;
171
+ export declare var CodegenJobRenderConfig: StaticStructureSchema;
172
+ export declare var FieldPosition: StaticStructureSchema;
173
+ export declare var FormStyleConfig: StaticStructureSchema;
174
+ export declare var CreateComponent: StaticOperationSchema;
175
+ export declare var CreateForm: StaticOperationSchema;
176
+ export declare var CreateTheme: StaticOperationSchema;
177
+ export declare var DeleteComponent: StaticOperationSchema;
178
+ export declare var DeleteForm: StaticOperationSchema;
179
+ export declare var DeleteTheme: StaticOperationSchema;
180
+ export declare var ExchangeCodeForToken: StaticOperationSchema;
181
+ export declare var ExportComponents: StaticOperationSchema;
182
+ export declare var ExportForms: StaticOperationSchema;
183
+ export declare var ExportThemes: StaticOperationSchema;
184
+ export declare var GetCodegenJob: StaticOperationSchema;
185
+ export declare var GetComponent: StaticOperationSchema;
186
+ export declare var GetForm: StaticOperationSchema;
187
+ export declare var GetMetadata: StaticOperationSchema;
188
+ export declare var GetTheme: StaticOperationSchema;
189
+ export declare var ListCodegenJobs: StaticOperationSchema;
190
+ export declare var ListComponents: StaticOperationSchema;
191
+ export declare var ListForms: StaticOperationSchema;
192
+ export declare var ListTagsForResource: StaticOperationSchema;
193
+ export declare var ListThemes: StaticOperationSchema;
194
+ export declare var PutMetadataFlag: StaticOperationSchema;
195
+ export declare var RefreshToken: StaticOperationSchema;
196
+ export declare var StartCodegenJob: StaticOperationSchema;
197
+ export declare var TagResource: StaticOperationSchema;
198
+ export declare var UntagResource: StaticOperationSchema;
199
+ export declare var UpdateComponent: StaticOperationSchema;
200
+ export declare var UpdateForm: StaticOperationSchema;
201
+ export declare var UpdateTheme: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -246,6 +249,7 @@ export interface ClientDefaults
246
249
  retryMode?: string | __Provider<string>;
247
250
  logger?: __Logger;
248
251
  extensions?: RuntimeExtension[];
252
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
249
253
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
250
254
  }
251
255
  export type AmplifyUIBuilderClientConfigType = Partial<
@@ -140,7 +140,6 @@ export declare namespace ApiConfiguration {
140
140
  noApiConfig: (value: NoApiRenderConfig) => T;
141
141
  _: (name: string, value: any) => T;
142
142
  }
143
- const visit: <T>(value: ApiConfiguration, visitor: Visitor<T>) => T;
144
143
  }
145
144
  export declare const JSModule: {
146
145
  readonly ES2020: "es2020";
@@ -183,7 +182,6 @@ export declare namespace CodegenJobRenderConfig {
183
182
  react: (value: ReactStartCodegenJobData) => T;
184
183
  _: (name: string, value: any) => T;
185
184
  }
186
- const visit: <T>(value: CodegenJobRenderConfig, visitor: Visitor<T>) => T;
187
185
  }
188
186
  export declare const CodegenJobStatus: {
189
187
  readonly FAILED: "failed";
@@ -390,7 +388,6 @@ export declare namespace FieldPosition {
390
388
  below: (value: string) => T;
391
389
  _: (name: string, value: any) => T;
392
390
  }
393
- const visit: <T>(value: FieldPosition, visitor: Visitor<T>) => T;
394
391
  }
395
392
  export interface FormButton {
396
393
  excluded?: boolean | undefined;
@@ -498,7 +495,6 @@ export declare namespace FormStyleConfig {
498
495
  value: (value: string) => T;
499
496
  _: (name: string, value: any) => T;
500
497
  }
501
- const visit: <T>(value: FormStyleConfig, visitor: Visitor<T>) => T;
502
498
  }
503
499
  export interface FormStyle {
504
500
  horizontalGap?: FormStyleConfig | undefined;
@@ -944,21 +940,3 @@ export interface ExportComponentsResponse {
944
940
  entities: Component[] | undefined;
945
941
  nextToken?: string | undefined;
946
942
  }
947
- export declare const ExchangeCodeForTokenRequestBodyFilterSensitiveLog: (
948
- obj: ExchangeCodeForTokenRequestBody
949
- ) => any;
950
- export declare const ExchangeCodeForTokenRequestFilterSensitiveLog: (
951
- obj: ExchangeCodeForTokenRequest
952
- ) => any;
953
- export declare const ExchangeCodeForTokenResponseFilterSensitiveLog: (
954
- obj: ExchangeCodeForTokenResponse
955
- ) => any;
956
- export declare const RefreshTokenRequestBodyFilterSensitiveLog: (
957
- obj: RefreshTokenRequestBody
958
- ) => any;
959
- export declare const RefreshTokenRequestFilterSensitiveLog: (
960
- obj: RefreshTokenRequest
961
- ) => any;
962
- export declare const RefreshTokenResponseFilterSensitiveLog: (
963
- obj: RefreshTokenResponse
964
- ) => any;
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  userAgentAppId?:
45
49
  | string
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  retryStrategy?:
45
49
  | import("@smithy/types").RetryStrategy
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
39
39
  retryMode: string | import("@smithy/types").Provider<string>;
40
40
  logger: import("@smithy/types").Logger;
41
41
  extensions: import("./runtimeExtensions").RuntimeExtension[];
42
+ protocol: import("@smithy/types").ClientProtocol<
43
+ import("@smithy/types").HttpRequest,
44
+ import("@smithy/types").HttpResponse
45
+ >;
42
46
  defaultsMode:
43
47
  | import("@smithy/smithy-client").DefaultsMode
44
48
  | import("@smithy/types").Provider<
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
16
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AmplifyUIBuilderHttpAuthSchemeProvider;
17
17
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
18
  logger: import("@smithy/types").Logger;
19
+ protocol: import("@smithy/types").ClientProtocol<
20
+ import("@smithy/types").HttpRequest,
21
+ import("@smithy/types").HttpResponse
22
+ >;
19
23
  serviceId: string;
20
24
  urlParser: import("@smithy/types").UrlParser;
21
25
  utf8Decoder: import("@smithy/types").Decoder;