@aws-sdk/client-amplifyuibuilder 3.927.0 → 3.929.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.
- package/dist-cjs/index.js +1806 -1860
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/AmplifyUIBuilderClient.js +2 -0
- package/dist-es/commands/CreateComponentCommand.js +3 -9
- package/dist-es/commands/CreateFormCommand.js +3 -9
- package/dist-es/commands/CreateThemeCommand.js +3 -9
- package/dist-es/commands/DeleteComponentCommand.js +3 -9
- package/dist-es/commands/DeleteFormCommand.js +3 -9
- package/dist-es/commands/DeleteThemeCommand.js +3 -9
- package/dist-es/commands/ExchangeCodeForTokenCommand.js +3 -10
- package/dist-es/commands/ExportComponentsCommand.js +3 -9
- package/dist-es/commands/ExportFormsCommand.js +3 -9
- package/dist-es/commands/ExportThemesCommand.js +3 -9
- package/dist-es/commands/GetCodegenJobCommand.js +3 -9
- package/dist-es/commands/GetComponentCommand.js +3 -9
- package/dist-es/commands/GetFormCommand.js +3 -9
- package/dist-es/commands/GetMetadataCommand.js +3 -9
- package/dist-es/commands/GetThemeCommand.js +3 -9
- package/dist-es/commands/ListCodegenJobsCommand.js +3 -9
- package/dist-es/commands/ListComponentsCommand.js +3 -9
- package/dist-es/commands/ListFormsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListThemesCommand.js +3 -9
- package/dist-es/commands/PutMetadataFlagCommand.js +3 -9
- package/dist-es/commands/RefreshTokenCommand.js +3 -10
- package/dist-es/commands/StartCodegenJobCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateComponentCommand.js +3 -9
- package/dist-es/commands/UpdateFormCommand.js +3 -9
- package/dist-es/commands/UpdateThemeCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -28
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1744 -0
- package/dist-types/AmplifyUIBuilderClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -24
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +201 -0
- package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -18
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +208 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -1614
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -254
- 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
|
*/
|
|
@@ -3413,27 +3413,3 @@ export interface ExportComponentsResponse {
|
|
|
3413
3413
|
*/
|
|
3414
3414
|
nextToken?: string | undefined;
|
|
3415
3415
|
}
|
|
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<
|
|
@@ -944,21 +944,3 @@ export interface ExportComponentsResponse {
|
|
|
944
944
|
entities: Component[] | undefined;
|
|
945
945
|
nextToken?: string | undefined;
|
|
946
946
|
}
|
|
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;
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticSimpleSchema,
|
|
7
|
+
StaticStructureSchema,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
export declare var SensitiveString: StaticSimpleSchema;
|
|
10
|
+
export declare var ActionParameters: StaticStructureSchema;
|
|
11
|
+
export declare var CodegenDependency: StaticStructureSchema;
|
|
12
|
+
export declare var CodegenFeatureFlags: StaticStructureSchema;
|
|
13
|
+
export declare var CodegenGenericDataEnum: StaticStructureSchema;
|
|
14
|
+
export declare var CodegenGenericDataField: StaticStructureSchema;
|
|
15
|
+
export declare var CodegenGenericDataModel: StaticStructureSchema;
|
|
16
|
+
export declare var CodegenGenericDataNonModel: StaticStructureSchema;
|
|
17
|
+
export declare var CodegenGenericDataRelationshipType: StaticStructureSchema;
|
|
18
|
+
export declare var CodegenJob: StaticStructureSchema;
|
|
19
|
+
export declare var CodegenJobAsset: StaticStructureSchema;
|
|
20
|
+
export declare var CodegenJobGenericDataSchema: StaticStructureSchema;
|
|
21
|
+
export declare var CodegenJobSummary: StaticStructureSchema;
|
|
22
|
+
export declare var Component: StaticStructureSchema;
|
|
23
|
+
export declare var ComponentBindingPropertiesValue: StaticStructureSchema;
|
|
24
|
+
export declare var ComponentBindingPropertiesValueProperties: StaticStructureSchema;
|
|
25
|
+
export declare var ComponentChild: StaticStructureSchema;
|
|
26
|
+
export declare var ComponentConditionProperty: StaticStructureSchema;
|
|
27
|
+
export declare var ComponentDataConfiguration: StaticStructureSchema;
|
|
28
|
+
export declare var ComponentEvent: StaticStructureSchema;
|
|
29
|
+
export declare var ComponentProperty: StaticStructureSchema;
|
|
30
|
+
export declare var ComponentPropertyBindingProperties: StaticStructureSchema;
|
|
31
|
+
export declare var ComponentSummary: StaticStructureSchema;
|
|
32
|
+
export declare var ComponentVariant: StaticStructureSchema;
|
|
33
|
+
export declare var CreateComponentData: StaticStructureSchema;
|
|
34
|
+
export declare var CreateComponentRequest: StaticStructureSchema;
|
|
35
|
+
export declare var CreateComponentResponse: StaticStructureSchema;
|
|
36
|
+
export declare var CreateFormData: StaticStructureSchema;
|
|
37
|
+
export declare var CreateFormRequest: StaticStructureSchema;
|
|
38
|
+
export declare var CreateFormResponse: StaticStructureSchema;
|
|
39
|
+
export declare var CreateThemeData: StaticStructureSchema;
|
|
40
|
+
export declare var CreateThemeRequest: StaticStructureSchema;
|
|
41
|
+
export declare var CreateThemeResponse: StaticStructureSchema;
|
|
42
|
+
export declare var DataStoreRenderConfig: StaticStructureSchema;
|
|
43
|
+
export declare var DeleteComponentRequest: StaticStructureSchema;
|
|
44
|
+
export declare var DeleteFormRequest: StaticStructureSchema;
|
|
45
|
+
export declare var DeleteThemeRequest: StaticStructureSchema;
|
|
46
|
+
export declare var ExchangeCodeForTokenRequest: StaticStructureSchema;
|
|
47
|
+
export declare var ExchangeCodeForTokenRequestBody: StaticStructureSchema;
|
|
48
|
+
export declare var ExchangeCodeForTokenResponse: StaticStructureSchema;
|
|
49
|
+
export declare var ExportComponentsRequest: StaticStructureSchema;
|
|
50
|
+
export declare var ExportComponentsResponse: StaticStructureSchema;
|
|
51
|
+
export declare var ExportFormsRequest: StaticStructureSchema;
|
|
52
|
+
export declare var ExportFormsResponse: StaticStructureSchema;
|
|
53
|
+
export declare var ExportThemesRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ExportThemesResponse: StaticStructureSchema;
|
|
55
|
+
export declare var FieldConfig: StaticStructureSchema;
|
|
56
|
+
export declare var FieldInputConfig: StaticStructureSchema;
|
|
57
|
+
export declare var FieldValidationConfiguration: StaticStructureSchema;
|
|
58
|
+
export declare var FileUploaderFieldConfig: StaticStructureSchema;
|
|
59
|
+
export declare var Form: StaticStructureSchema;
|
|
60
|
+
export declare var FormBindingElement: StaticStructureSchema;
|
|
61
|
+
export declare var FormButton: StaticStructureSchema;
|
|
62
|
+
export declare var FormCTA: StaticStructureSchema;
|
|
63
|
+
export declare var FormDataTypeConfig: StaticStructureSchema;
|
|
64
|
+
export declare var FormInputBindingPropertiesValue: StaticStructureSchema;
|
|
65
|
+
export declare var FormInputBindingPropertiesValueProperties: StaticStructureSchema;
|
|
66
|
+
export declare var FormInputValueProperty: StaticStructureSchema;
|
|
67
|
+
export declare var FormInputValuePropertyBindingProperties: StaticStructureSchema;
|
|
68
|
+
export declare var FormStyle: StaticStructureSchema;
|
|
69
|
+
export declare var FormSummary: StaticStructureSchema;
|
|
70
|
+
export declare var GetCodegenJobRequest: StaticStructureSchema;
|
|
71
|
+
export declare var GetCodegenJobResponse: StaticStructureSchema;
|
|
72
|
+
export declare var GetComponentRequest: StaticStructureSchema;
|
|
73
|
+
export declare var GetComponentResponse: StaticStructureSchema;
|
|
74
|
+
export declare var GetFormRequest: StaticStructureSchema;
|
|
75
|
+
export declare var GetFormResponse: StaticStructureSchema;
|
|
76
|
+
export declare var GetMetadataRequest: StaticStructureSchema;
|
|
77
|
+
export declare var GetMetadataResponse: StaticStructureSchema;
|
|
78
|
+
export declare var GetThemeRequest: StaticStructureSchema;
|
|
79
|
+
export declare var GetThemeResponse: StaticStructureSchema;
|
|
80
|
+
export declare var GraphQLRenderConfig: StaticStructureSchema;
|
|
81
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
82
|
+
export declare var InvalidParameterException: StaticErrorSchema;
|
|
83
|
+
export declare var ListCodegenJobsRequest: StaticStructureSchema;
|
|
84
|
+
export declare var ListCodegenJobsResponse: StaticStructureSchema;
|
|
85
|
+
export declare var ListComponentsRequest: StaticStructureSchema;
|
|
86
|
+
export declare var ListComponentsResponse: StaticStructureSchema;
|
|
87
|
+
export declare var ListFormsRequest: StaticStructureSchema;
|
|
88
|
+
export declare var ListFormsResponse: StaticStructureSchema;
|
|
89
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
90
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
91
|
+
export declare var ListThemesRequest: StaticStructureSchema;
|
|
92
|
+
export declare var ListThemesResponse: StaticStructureSchema;
|
|
93
|
+
export declare var MutationActionSetStateParameter: StaticStructureSchema;
|
|
94
|
+
export declare var NoApiRenderConfig: StaticStructureSchema;
|
|
95
|
+
export declare var Predicate: StaticStructureSchema;
|
|
96
|
+
export declare var PutMetadataFlagBody: StaticStructureSchema;
|
|
97
|
+
export declare var PutMetadataFlagRequest: StaticStructureSchema;
|
|
98
|
+
export declare var ReactStartCodegenJobData: StaticStructureSchema;
|
|
99
|
+
export declare var RefreshTokenRequest: StaticStructureSchema;
|
|
100
|
+
export declare var RefreshTokenRequestBody: StaticStructureSchema;
|
|
101
|
+
export declare var RefreshTokenResponse: StaticStructureSchema;
|
|
102
|
+
export declare var ResourceConflictException: StaticErrorSchema;
|
|
103
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
104
|
+
export declare var SectionalElement: StaticStructureSchema;
|
|
105
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
106
|
+
export declare var SortProperty: StaticStructureSchema;
|
|
107
|
+
export declare var StartCodegenJobData: StaticStructureSchema;
|
|
108
|
+
export declare var StartCodegenJobRequest: StaticStructureSchema;
|
|
109
|
+
export declare var StartCodegenJobResponse: StaticStructureSchema;
|
|
110
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
111
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
112
|
+
export declare var Theme: StaticStructureSchema;
|
|
113
|
+
export declare var ThemeSummary: StaticStructureSchema;
|
|
114
|
+
export declare var ThemeValue: StaticStructureSchema;
|
|
115
|
+
export declare var ThemeValues: StaticStructureSchema;
|
|
116
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
117
|
+
export declare var UnauthorizedException: StaticErrorSchema;
|
|
118
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
119
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
120
|
+
export declare var UpdateComponentData: StaticStructureSchema;
|
|
121
|
+
export declare var UpdateComponentRequest: StaticStructureSchema;
|
|
122
|
+
export declare var UpdateComponentResponse: StaticStructureSchema;
|
|
123
|
+
export declare var UpdateFormData: StaticStructureSchema;
|
|
124
|
+
export declare var UpdateFormRequest: StaticStructureSchema;
|
|
125
|
+
export declare var UpdateFormResponse: StaticStructureSchema;
|
|
126
|
+
export declare var UpdateThemeData: StaticStructureSchema;
|
|
127
|
+
export declare var UpdateThemeRequest: StaticStructureSchema;
|
|
128
|
+
export declare var UpdateThemeResponse: StaticStructureSchema;
|
|
129
|
+
export declare var ValueMapping: StaticStructureSchema;
|
|
130
|
+
export declare var ValueMappings: StaticStructureSchema;
|
|
131
|
+
export declare var __Unit: "unit";
|
|
132
|
+
export declare var AmplifyUIBuilderServiceException: StaticErrorSchema;
|
|
133
|
+
export declare var AssociatedFieldsList: number;
|
|
134
|
+
export declare var CodegenDependencies: StaticListSchema;
|
|
135
|
+
export declare var CodegenGenericDataEnumValuesList: number;
|
|
136
|
+
export declare var CodegenJobSummaryList: StaticListSchema;
|
|
137
|
+
export declare var CodegenPrimaryKeysList: number;
|
|
138
|
+
export declare var ComponentChildList: StaticListSchema;
|
|
139
|
+
export declare var ComponentList: StaticListSchema;
|
|
140
|
+
export declare var ComponentPropertyList: StaticListSchema;
|
|
141
|
+
export declare var ComponentSummaryList: StaticListSchema;
|
|
142
|
+
export declare var ComponentVariants: StaticListSchema;
|
|
143
|
+
export declare var FormInputValuePropertyList: StaticListSchema;
|
|
144
|
+
export declare var FormList: StaticListSchema;
|
|
145
|
+
export declare var FormSummaryList: StaticListSchema;
|
|
146
|
+
export declare var IdentifierList: number;
|
|
147
|
+
export declare var NumValues: number;
|
|
148
|
+
export declare var PredicateList: StaticListSchema;
|
|
149
|
+
export declare var RelatedModelFieldsList: number;
|
|
150
|
+
export declare var SortPropertyList: StaticListSchema;
|
|
151
|
+
export declare var StrValues: number;
|
|
152
|
+
export declare var TagKeyList: number;
|
|
153
|
+
export declare var ThemeList: StaticListSchema;
|
|
154
|
+
export declare var ThemeSummaryList: StaticListSchema;
|
|
155
|
+
export declare var ThemeValuesList: StaticListSchema;
|
|
156
|
+
export declare var ValidationsList: StaticListSchema;
|
|
157
|
+
export declare var ValueMappingList: StaticListSchema;
|
|
158
|
+
export declare var CodegenGenericDataEnums: StaticMapSchema;
|
|
159
|
+
export declare var CodegenGenericDataFields: StaticMapSchema;
|
|
160
|
+
export declare var CodegenGenericDataModels: StaticMapSchema;
|
|
161
|
+
export declare var CodegenGenericDataNonModelFields: StaticMapSchema;
|
|
162
|
+
export declare var CodegenGenericDataNonModels: StaticMapSchema;
|
|
163
|
+
export declare var ComponentBindingProperties: StaticMapSchema;
|
|
164
|
+
export declare var ComponentCollectionProperties: StaticMapSchema;
|
|
165
|
+
export declare var ComponentEvents: StaticMapSchema;
|
|
166
|
+
export declare var ComponentOverrides: StaticMapSchema;
|
|
167
|
+
export declare var ComponentOverridesValue: number;
|
|
168
|
+
export declare var ComponentProperties: StaticMapSchema;
|
|
169
|
+
export declare var ComponentVariantValues: number;
|
|
170
|
+
export declare var FeaturesMap: number;
|
|
171
|
+
export declare var FieldsMap: StaticMapSchema;
|
|
172
|
+
export declare var FormBindings: StaticMapSchema;
|
|
173
|
+
export declare var FormInputBindingProperties: StaticMapSchema;
|
|
174
|
+
export declare var ReactCodegenDependencies: number;
|
|
175
|
+
export declare var SectionalElementMap: StaticMapSchema;
|
|
176
|
+
export declare var Tags: number;
|
|
177
|
+
export declare var ApiConfiguration: StaticStructureSchema;
|
|
178
|
+
export declare var CodegenJobRenderConfig: StaticStructureSchema;
|
|
179
|
+
export declare var FieldPosition: StaticStructureSchema;
|
|
180
|
+
export declare var FormStyleConfig: StaticStructureSchema;
|
|
181
|
+
export declare var CreateComponent: StaticOperationSchema;
|
|
182
|
+
export declare var CreateForm: StaticOperationSchema;
|
|
183
|
+
export declare var CreateTheme: StaticOperationSchema;
|
|
184
|
+
export declare var DeleteComponent: StaticOperationSchema;
|
|
185
|
+
export declare var DeleteForm: StaticOperationSchema;
|
|
186
|
+
export declare var DeleteTheme: StaticOperationSchema;
|
|
187
|
+
export declare var ExchangeCodeForToken: StaticOperationSchema;
|
|
188
|
+
export declare var ExportComponents: StaticOperationSchema;
|
|
189
|
+
export declare var ExportForms: StaticOperationSchema;
|
|
190
|
+
export declare var ExportThemes: StaticOperationSchema;
|
|
191
|
+
export declare var GetCodegenJob: StaticOperationSchema;
|
|
192
|
+
export declare var GetComponent: StaticOperationSchema;
|
|
193
|
+
export declare var GetForm: StaticOperationSchema;
|
|
194
|
+
export declare var GetMetadata: StaticOperationSchema;
|
|
195
|
+
export declare var GetTheme: StaticOperationSchema;
|
|
196
|
+
export declare var ListCodegenJobs: StaticOperationSchema;
|
|
197
|
+
export declare var ListComponents: StaticOperationSchema;
|
|
198
|
+
export declare var ListForms: StaticOperationSchema;
|
|
199
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
200
|
+
export declare var ListThemes: StaticOperationSchema;
|
|
201
|
+
export declare var PutMetadataFlag: StaticOperationSchema;
|
|
202
|
+
export declare var RefreshToken: StaticOperationSchema;
|
|
203
|
+
export declare var StartCodegenJob: StaticOperationSchema;
|
|
204
|
+
export declare var TagResource: StaticOperationSchema;
|
|
205
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
206
|
+
export declare var UpdateComponent: StaticOperationSchema;
|
|
207
|
+
export declare var UpdateForm: StaticOperationSchema;
|
|
208
|
+
export declare var UpdateTheme: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amplifyuibuilder",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amplifyuibuilder Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.929.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-amplifyuibuilder",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
"@smithy/util-middleware": "^4.2.4",
|
|
57
57
|
"@smithy/util-retry": "^4.2.4",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
-
"@smithy/uuid": "^1.1.0",
|
|
60
59
|
"tslib": "^2.6.2"
|
|
61
60
|
},
|
|
62
61
|
"devDependencies": {
|