@aws-sdk/client-amplifyuibuilder 3.1075.0 → 3.1077.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 +1629 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/AmplifyUIBuilderServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -85
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1338
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultAmplifyUIBuilderHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "amplifyuibuilder",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultAmplifyUIBuilderHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1420 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://amplifyuibuilder-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://amplifyuibuilder-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://amplifyuibuilder.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://amplifyuibuilder.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class AmplifyUIBuilderServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, AmplifyUIBuilderServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class InternalServerException extends AmplifyUIBuilderServiceException {
|
|
141
|
+
name = "InternalServerException";
|
|
142
|
+
$fault = "server";
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "InternalServerException",
|
|
146
|
+
$fault: "server",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
class InvalidParameterException extends AmplifyUIBuilderServiceException {
|
|
153
|
+
name = "InvalidParameterException";
|
|
154
|
+
$fault = "client";
|
|
155
|
+
constructor(opts) {
|
|
156
|
+
super({
|
|
157
|
+
name: "InvalidParameterException",
|
|
158
|
+
$fault: "client",
|
|
159
|
+
...opts,
|
|
160
|
+
});
|
|
161
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
class ResourceNotFoundException extends AmplifyUIBuilderServiceException {
|
|
165
|
+
name = "ResourceNotFoundException";
|
|
166
|
+
$fault = "client";
|
|
167
|
+
constructor(opts) {
|
|
168
|
+
super({
|
|
169
|
+
name: "ResourceNotFoundException",
|
|
170
|
+
$fault: "client",
|
|
171
|
+
...opts,
|
|
172
|
+
});
|
|
173
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
class ThrottlingException extends AmplifyUIBuilderServiceException {
|
|
177
|
+
name = "ThrottlingException";
|
|
178
|
+
$fault = "client";
|
|
179
|
+
constructor(opts) {
|
|
180
|
+
super({
|
|
181
|
+
name: "ThrottlingException",
|
|
182
|
+
$fault: "client",
|
|
183
|
+
...opts,
|
|
184
|
+
});
|
|
185
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
class ResourceConflictException extends AmplifyUIBuilderServiceException {
|
|
189
|
+
name = "ResourceConflictException";
|
|
190
|
+
$fault = "client";
|
|
191
|
+
constructor(opts) {
|
|
192
|
+
super({
|
|
193
|
+
name: "ResourceConflictException",
|
|
194
|
+
$fault: "client",
|
|
195
|
+
...opts,
|
|
196
|
+
});
|
|
197
|
+
Object.setPrototypeOf(this, ResourceConflictException.prototype);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
class ServiceQuotaExceededException extends AmplifyUIBuilderServiceException {
|
|
201
|
+
name = "ServiceQuotaExceededException";
|
|
202
|
+
$fault = "client";
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "ServiceQuotaExceededException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
class UnauthorizedException extends AmplifyUIBuilderServiceException {
|
|
213
|
+
name = "UnauthorizedException";
|
|
214
|
+
$fault = "client";
|
|
215
|
+
constructor(opts) {
|
|
216
|
+
super({
|
|
217
|
+
name: "UnauthorizedException",
|
|
218
|
+
$fault: "client",
|
|
219
|
+
...opts,
|
|
220
|
+
});
|
|
221
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
const _AC = "ApiConfiguration";
|
|
226
|
+
const _AP = "ActionParameters";
|
|
227
|
+
const _C = "Component";
|
|
228
|
+
const _CBP = "ComponentBindingProperties";
|
|
229
|
+
const _CBPV = "ComponentBindingPropertiesValue";
|
|
230
|
+
const _CBPVP = "ComponentBindingPropertiesValueProperties";
|
|
231
|
+
const _CC = "ComponentChild";
|
|
232
|
+
const _CCD = "CreateComponentData";
|
|
233
|
+
const _CCL = "ComponentChildList";
|
|
234
|
+
const _CCP = "ComponentConditionProperty";
|
|
235
|
+
const _CCPo = "ComponentCollectionProperties";
|
|
236
|
+
const _CCR = "CreateComponentRequest";
|
|
237
|
+
const _CCRr = "CreateComponentResponse";
|
|
238
|
+
const _CCr = "CreateComponent";
|
|
239
|
+
const _CD = "CodegenDependency";
|
|
240
|
+
const _CDC = "ComponentDataConfiguration";
|
|
241
|
+
const _CDo = "CodegenDependencies";
|
|
242
|
+
const _CE = "ComponentEvent";
|
|
243
|
+
const _CEo = "ComponentEvents";
|
|
244
|
+
const _CF = "CreateForm";
|
|
245
|
+
const _CFD = "CreateFormData";
|
|
246
|
+
const _CFF = "CodegenFeatureFlags";
|
|
247
|
+
const _CFR = "CreateFormRequest";
|
|
248
|
+
const _CFRr = "CreateFormResponse";
|
|
249
|
+
const _CGDE = "CodegenGenericDataEnum";
|
|
250
|
+
const _CGDEo = "CodegenGenericDataEnums";
|
|
251
|
+
const _CGDF = "CodegenGenericDataField";
|
|
252
|
+
const _CGDFo = "CodegenGenericDataFields";
|
|
253
|
+
const _CGDM = "CodegenGenericDataModel";
|
|
254
|
+
const _CGDMo = "CodegenGenericDataModels";
|
|
255
|
+
const _CGDNM = "CodegenGenericDataNonModel";
|
|
256
|
+
const _CGDNMF = "CodegenGenericDataNonModelFields";
|
|
257
|
+
const _CGDNMo = "CodegenGenericDataNonModels";
|
|
258
|
+
const _CGDRT = "CodegenGenericDataRelationshipType";
|
|
259
|
+
const _CJ = "CodegenJob";
|
|
260
|
+
const _CJA = "CodegenJobAsset";
|
|
261
|
+
const _CJGDS = "CodegenJobGenericDataSchema";
|
|
262
|
+
const _CJRC = "CodegenJobRenderConfig";
|
|
263
|
+
const _CJS = "CodegenJobSummary";
|
|
264
|
+
const _CJSL = "CodegenJobSummaryList";
|
|
265
|
+
const _CL = "ComponentList";
|
|
266
|
+
const _CO = "ComponentOverrides";
|
|
267
|
+
const _CP = "ComponentProperty";
|
|
268
|
+
const _CPBP = "ComponentPropertyBindingProperties";
|
|
269
|
+
const _CPL = "ComponentPropertyList";
|
|
270
|
+
const _CPo = "ComponentProperties";
|
|
271
|
+
const _CS = "ComponentSummary";
|
|
272
|
+
const _CSL = "ComponentSummaryList";
|
|
273
|
+
const _CT = "CreateTheme";
|
|
274
|
+
const _CTD = "CreateThemeData";
|
|
275
|
+
const _CTR = "CreateThemeRequest";
|
|
276
|
+
const _CTRr = "CreateThemeResponse";
|
|
277
|
+
const _CV = "ComponentVariant";
|
|
278
|
+
const _CVo = "ComponentVariants";
|
|
279
|
+
const _DC = "DeleteComponent";
|
|
280
|
+
const _DCR = "DeleteComponentRequest";
|
|
281
|
+
const _DF = "DeleteForm";
|
|
282
|
+
const _DFR = "DeleteFormRequest";
|
|
283
|
+
const _DSRC = "DataStoreRenderConfig";
|
|
284
|
+
const _DT = "DeleteTheme";
|
|
285
|
+
const _DTR = "DeleteThemeRequest";
|
|
286
|
+
const _EC = "ExportComponents";
|
|
287
|
+
const _ECFT = "ExchangeCodeForToken";
|
|
288
|
+
const _ECFTR = "ExchangeCodeForTokenRequest";
|
|
289
|
+
const _ECFTRB = "ExchangeCodeForTokenRequestBody";
|
|
290
|
+
const _ECFTRx = "ExchangeCodeForTokenResponse";
|
|
291
|
+
const _ECR = "ExportComponentsRequest";
|
|
292
|
+
const _ECRx = "ExportComponentsResponse";
|
|
293
|
+
const _EF = "ExportForms";
|
|
294
|
+
const _EFR = "ExportFormsRequest";
|
|
295
|
+
const _EFRx = "ExportFormsResponse";
|
|
296
|
+
const _ET = "ExportThemes";
|
|
297
|
+
const _ETR = "ExportThemesRequest";
|
|
298
|
+
const _ETRx = "ExportThemesResponse";
|
|
299
|
+
const _F = "Form";
|
|
300
|
+
const _FB = "FormButton";
|
|
301
|
+
const _FBE = "FormBindingElement";
|
|
302
|
+
const _FBo = "FormBindings";
|
|
303
|
+
const _FC = "FieldConfig";
|
|
304
|
+
const _FCTA = "FormCTA";
|
|
305
|
+
const _FDTC = "FormDataTypeConfig";
|
|
306
|
+
const _FIBP = "FormInputBindingProperties";
|
|
307
|
+
const _FIBPV = "FormInputBindingPropertiesValue";
|
|
308
|
+
const _FIBPVP = "FormInputBindingPropertiesValueProperties";
|
|
309
|
+
const _FIC = "FieldInputConfig";
|
|
310
|
+
const _FIVP = "FormInputValueProperty";
|
|
311
|
+
const _FIVPBP = "FormInputValuePropertyBindingProperties";
|
|
312
|
+
const _FIVPL = "FormInputValuePropertyList";
|
|
313
|
+
const _FL = "FormList";
|
|
314
|
+
const _FM = "FieldsMap";
|
|
315
|
+
const _FP = "FieldPosition";
|
|
316
|
+
const _FS = "FormStyle";
|
|
317
|
+
const _FSC = "FormStyleConfig";
|
|
318
|
+
const _FSL = "FormSummaryList";
|
|
319
|
+
const _FSo = "FormSummary";
|
|
320
|
+
const _FUFC = "FileUploaderFieldConfig";
|
|
321
|
+
const _FVC = "FieldValidationConfiguration";
|
|
322
|
+
const _GC = "GetComponent";
|
|
323
|
+
const _GCJ = "GetCodegenJob";
|
|
324
|
+
const _GCJR = "GetCodegenJobRequest";
|
|
325
|
+
const _GCJRe = "GetCodegenJobResponse";
|
|
326
|
+
const _GCR = "GetComponentRequest";
|
|
327
|
+
const _GCRe = "GetComponentResponse";
|
|
328
|
+
const _GF = "GetForm";
|
|
329
|
+
const _GFR = "GetFormRequest";
|
|
330
|
+
const _GFRe = "GetFormResponse";
|
|
331
|
+
const _GM = "GetMetadata";
|
|
332
|
+
const _GMR = "GetMetadataRequest";
|
|
333
|
+
const _GMRe = "GetMetadataResponse";
|
|
334
|
+
const _GQLRC = "GraphQLRenderConfig";
|
|
335
|
+
const _GT = "GetTheme";
|
|
336
|
+
const _GTR = "GetThemeRequest";
|
|
337
|
+
const _GTRe = "GetThemeResponse";
|
|
338
|
+
const _IPE = "InvalidParameterException";
|
|
339
|
+
const _ISE = "InternalServerException";
|
|
340
|
+
const _LC = "ListComponents";
|
|
341
|
+
const _LCJ = "ListCodegenJobs";
|
|
342
|
+
const _LCJR = "ListCodegenJobsRequest";
|
|
343
|
+
const _LCJRi = "ListCodegenJobsResponse";
|
|
344
|
+
const _LCR = "ListComponentsRequest";
|
|
345
|
+
const _LCRi = "ListComponentsResponse";
|
|
346
|
+
const _LF = "ListForms";
|
|
347
|
+
const _LFR = "ListFormsRequest";
|
|
348
|
+
const _LFRi = "ListFormsResponse";
|
|
349
|
+
const _LT = "ListThemes";
|
|
350
|
+
const _LTFR = "ListTagsForResource";
|
|
351
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
352
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
353
|
+
const _LTR = "ListThemesRequest";
|
|
354
|
+
const _LTRi = "ListThemesResponse";
|
|
355
|
+
const _MASSP = "MutationActionSetStateParameter";
|
|
356
|
+
const _NARC = "NoApiRenderConfig";
|
|
357
|
+
const _P = "Predicate";
|
|
358
|
+
const _PL = "PredicateList";
|
|
359
|
+
const _PMF = "PutMetadataFlag";
|
|
360
|
+
const _PMFB = "PutMetadataFlagBody";
|
|
361
|
+
const _PMFR = "PutMetadataFlagRequest";
|
|
362
|
+
const _RCE = "ResourceConflictException";
|
|
363
|
+
const _RNFE = "ResourceNotFoundException";
|
|
364
|
+
const _RSCJD = "ReactStartCodegenJobData";
|
|
365
|
+
const _RT = "RefreshToken";
|
|
366
|
+
const _RTR = "RefreshTokenRequest";
|
|
367
|
+
const _RTRB = "RefreshTokenRequestBody";
|
|
368
|
+
const _RTRe = "RefreshTokenResponse";
|
|
369
|
+
const _SCJ = "StartCodegenJob";
|
|
370
|
+
const _SCJD = "StartCodegenJobData";
|
|
371
|
+
const _SCJR = "StartCodegenJobRequest";
|
|
372
|
+
const _SCJRt = "StartCodegenJobResponse";
|
|
373
|
+
const _SE = "SectionalElement";
|
|
374
|
+
const _SEM = "SectionalElementMap";
|
|
375
|
+
const _SP = "SortProperty";
|
|
376
|
+
const _SPL = "SortPropertyList";
|
|
377
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
378
|
+
const _SS = "SensitiveString";
|
|
379
|
+
const _T = "Theme";
|
|
380
|
+
const _TE = "ThrottlingException";
|
|
381
|
+
const _TL = "ThemeList";
|
|
382
|
+
const _TR = "TagResource";
|
|
383
|
+
const _TRR = "TagResourceRequest";
|
|
384
|
+
const _TRRa = "TagResourceResponse";
|
|
385
|
+
const _TS = "ThemeSummary";
|
|
386
|
+
const _TSL = "ThemeSummaryList";
|
|
387
|
+
const _TV = "ThemeValue";
|
|
388
|
+
const _TVL = "ThemeValuesList";
|
|
389
|
+
const _TVh = "ThemeValues";
|
|
390
|
+
const _UC = "UpdateComponent";
|
|
391
|
+
const _UCD = "UpdateComponentData";
|
|
392
|
+
const _UCR = "UpdateComponentRequest";
|
|
393
|
+
const _UCRp = "UpdateComponentResponse";
|
|
394
|
+
const _UE = "UnauthorizedException";
|
|
395
|
+
const _UF = "UpdateForm";
|
|
396
|
+
const _UFD = "UpdateFormData";
|
|
397
|
+
const _UFR = "UpdateFormRequest";
|
|
398
|
+
const _UFRp = "UpdateFormResponse";
|
|
399
|
+
const _UR = "UntagResource";
|
|
400
|
+
const _URR = "UntagResourceRequest";
|
|
401
|
+
const _URRn = "UntagResourceResponse";
|
|
402
|
+
const _UT = "UpdateTheme";
|
|
403
|
+
const _UTD = "UpdateThemeData";
|
|
404
|
+
const _UTR = "UpdateThemeRequest";
|
|
405
|
+
const _UTRp = "UpdateThemeResponse";
|
|
406
|
+
const _VL = "ValidationsList";
|
|
407
|
+
const _VM = "ValueMapping";
|
|
408
|
+
const _VML = "ValueMappingList";
|
|
409
|
+
const _VMa = "ValueMappings";
|
|
410
|
+
const _a = "anchor";
|
|
411
|
+
const _aC = "apiConfiguration";
|
|
412
|
+
const _aF = "associatedFields";
|
|
413
|
+
const _aFT = "acceptedFileTypes";
|
|
414
|
+
const _aGF = "autoGenerateForms";
|
|
415
|
+
const _aI = "appId";
|
|
416
|
+
const _aL = "accessLevel";
|
|
417
|
+
const _aT = "accessToken";
|
|
418
|
+
const _ac = "action";
|
|
419
|
+
const _an = "and";
|
|
420
|
+
const _as = "asset";
|
|
421
|
+
const _b = "bucket";
|
|
422
|
+
const _bE = "bindingEvent";
|
|
423
|
+
const _bP = "bindingProperties";
|
|
424
|
+
const _bTFORM = "belongsToFieldOnRelatedModel";
|
|
425
|
+
const _be = "below";
|
|
426
|
+
const _bi = "bindings";
|
|
427
|
+
const _bo = "body";
|
|
428
|
+
const _c = "client";
|
|
429
|
+
const _cA = "createdAt";
|
|
430
|
+
const _cBP = "collectionBindingProperties";
|
|
431
|
+
const _cI = "clientId";
|
|
432
|
+
const _cJTC = "codegenJobToCreate";
|
|
433
|
+
const _cN = "componentName";
|
|
434
|
+
const _cP = "collectionProperties";
|
|
435
|
+
const _cT = "componentType";
|
|
436
|
+
const _cTC = "componentToCreate";
|
|
437
|
+
const _cTl = "clientToken";
|
|
438
|
+
const _cUAM = "canUnlinkAssociatedModel";
|
|
439
|
+
const _ca = "cancel";
|
|
440
|
+
const _ch = "children";
|
|
441
|
+
const _cl = "clear";
|
|
442
|
+
const _co = "concat";
|
|
443
|
+
const _cod = "code";
|
|
444
|
+
const _com = "component";
|
|
445
|
+
const _con = "condition";
|
|
446
|
+
const _conf = "configured";
|
|
447
|
+
const _ct = "cta";
|
|
448
|
+
const _d = "dependencies";
|
|
449
|
+
const _dC = "defaultChecked";
|
|
450
|
+
const _dCC = "defaultCountryCode";
|
|
451
|
+
const _dSC = "dataStoreConfig";
|
|
452
|
+
const _dST = "dataSourceType";
|
|
453
|
+
const _dT = "dataType";
|
|
454
|
+
const _dTN = "dataTypeName";
|
|
455
|
+
const _dTV = "dataTypeValue";
|
|
456
|
+
const _dTe = "descriptiveText";
|
|
457
|
+
const _dU = "downloadUrl";
|
|
458
|
+
const _dV = "defaultValue";
|
|
459
|
+
const _dVi = "displayValue";
|
|
460
|
+
const _di = "direction";
|
|
461
|
+
const _e = "error";
|
|
462
|
+
const _eI = "expiresIn";
|
|
463
|
+
const _eN = "environmentName";
|
|
464
|
+
const _el = "else";
|
|
465
|
+
const _ele = "element";
|
|
466
|
+
const _en = "enums";
|
|
467
|
+
const _ent = "entity";
|
|
468
|
+
const _enti = "entities";
|
|
469
|
+
const _ev = "events";
|
|
470
|
+
const _eve = "event";
|
|
471
|
+
const _ex = "excluded";
|
|
472
|
+
const _f = "fields";
|
|
473
|
+
const _fAT = "formActionType";
|
|
474
|
+
const _fFP = "fragmentsFilePath";
|
|
475
|
+
const _fN = "featureName";
|
|
476
|
+
const _fTC = "formToCreate";
|
|
477
|
+
const _fUC = "fileUploaderConfig";
|
|
478
|
+
const _fe = "features";
|
|
479
|
+
const _fi = "field";
|
|
480
|
+
const _fix = "fixed";
|
|
481
|
+
const _fo = "form";
|
|
482
|
+
const _g = "global";
|
|
483
|
+
const _gDS = "genericDataSchema";
|
|
484
|
+
const _gQLC = "graphQLConfig";
|
|
485
|
+
const _h = "http";
|
|
486
|
+
const _hE = "httpError";
|
|
487
|
+
const _hG = "horizontalGap";
|
|
488
|
+
const _hQ = "httpQuery";
|
|
489
|
+
const _i = "id";
|
|
490
|
+
const _iA = "isArray";
|
|
491
|
+
const _iHMI = "isHasManyIndex";
|
|
492
|
+
const _iJT = "isJoinTable";
|
|
493
|
+
const _iNMS = "isNonModelSupported";
|
|
494
|
+
const _iR = "isResumable";
|
|
495
|
+
const _iRS = "isRelationshipSupported";
|
|
496
|
+
const _iSM = "inlineSourceMap";
|
|
497
|
+
const _iSV = "isSemVer";
|
|
498
|
+
const _iT = "idempotencyToken";
|
|
499
|
+
const _iTn = "inputType";
|
|
500
|
+
const _iV = "importedValue";
|
|
501
|
+
const _id = "identifiers";
|
|
502
|
+
const _j = "job";
|
|
503
|
+
const _k = "key";
|
|
504
|
+
const _l = "label";
|
|
505
|
+
const _lD = "labelDecorator";
|
|
506
|
+
const _le = "level";
|
|
507
|
+
const _m = "message";
|
|
508
|
+
const _mA = "modifiedAt";
|
|
509
|
+
const _mFC = "maxFileCount";
|
|
510
|
+
const _mFP = "mutationsFilePath";
|
|
511
|
+
const _mR = "maxResults";
|
|
512
|
+
const _mS = "maxSize";
|
|
513
|
+
const _mV = "minValue";
|
|
514
|
+
const _mVa = "maxValue";
|
|
515
|
+
const _mo = "model";
|
|
516
|
+
const _mod = "models";
|
|
517
|
+
const _modu = "module";
|
|
518
|
+
const _n = "name";
|
|
519
|
+
const _nAC = "noApiConfig";
|
|
520
|
+
const _nM = "nonModels";
|
|
521
|
+
const _nT = "nextToken";
|
|
522
|
+
const _nV = "numValues";
|
|
523
|
+
const _nVe = "newValue";
|
|
524
|
+
const _o = "overrides";
|
|
525
|
+
const _oP = "outerPadding";
|
|
526
|
+
const _oT = "operandType";
|
|
527
|
+
const _op = "operator";
|
|
528
|
+
const _ope = "operand";
|
|
529
|
+
const _or = "or";
|
|
530
|
+
const _ori = "orientation";
|
|
531
|
+
const _p = "properties";
|
|
532
|
+
const _pK = "primaryKeys";
|
|
533
|
+
const _pa = "parameters";
|
|
534
|
+
const _pl = "placeholder";
|
|
535
|
+
const _po = "position";
|
|
536
|
+
const _pr = "predicates";
|
|
537
|
+
const _pre = "predicate";
|
|
538
|
+
const _pro = "property";
|
|
539
|
+
const _prov = "provider";
|
|
540
|
+
const _qFP = "queriesFilePath";
|
|
541
|
+
const _r = "reason";
|
|
542
|
+
const _rA = "resourceArn";
|
|
543
|
+
const _rC = "renderConfig";
|
|
544
|
+
const _rJFN = "relatedJoinFieldName";
|
|
545
|
+
const _rJTN = "relatedJoinTableName";
|
|
546
|
+
const _rMF = "relatedModelFields";
|
|
547
|
+
const _rMN = "relatedModelName";
|
|
548
|
+
const _rO = "readOnly";
|
|
549
|
+
const _rOi = "rightOf";
|
|
550
|
+
const _rT = "refreshToken";
|
|
551
|
+
const _rTB = "refreshTokenBody";
|
|
552
|
+
const _rTD = "renderTypeDeclarations";
|
|
553
|
+
const _rU = "redirectUri";
|
|
554
|
+
const _re = "required";
|
|
555
|
+
const _rea = "react";
|
|
556
|
+
const _rel = "relationship";
|
|
557
|
+
const _req = "request";
|
|
558
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.amplifyuibuilder";
|
|
559
|
+
const _sE = "sectionalElements";
|
|
560
|
+
const _sFP = "subscriptionsFilePath";
|
|
561
|
+
const _sI = "sourceId";
|
|
562
|
+
const _sM = "statusMessage";
|
|
563
|
+
const _sN = "slotName";
|
|
564
|
+
const _sT = "showThumbnails";
|
|
565
|
+
const _sV = "supportedVersion";
|
|
566
|
+
const _sVc = "schemaVersion";
|
|
567
|
+
const _sVt = "strValues";
|
|
568
|
+
const _sc = "script";
|
|
569
|
+
const _se = "server";
|
|
570
|
+
const _set = "set";
|
|
571
|
+
const _so = "sort";
|
|
572
|
+
const _st = "state";
|
|
573
|
+
const _sta = "status";
|
|
574
|
+
const _ste = "step";
|
|
575
|
+
const _sty = "style";
|
|
576
|
+
const _su = "submit";
|
|
577
|
+
const _t = "type";
|
|
578
|
+
const _tFP = "typesFilePath";
|
|
579
|
+
const _tK = "tagKeys";
|
|
580
|
+
const _tR = "tokenReference";
|
|
581
|
+
const _tTC = "themeToCreate";
|
|
582
|
+
const _ta = "target";
|
|
583
|
+
const _tag = "tags";
|
|
584
|
+
const _te = "text";
|
|
585
|
+
const _th = "then";
|
|
586
|
+
const _the = "theme";
|
|
587
|
+
const _to = "token";
|
|
588
|
+
const _u = "url";
|
|
589
|
+
const _uA = "userAttribute";
|
|
590
|
+
const _uC = "updatedComponent";
|
|
591
|
+
const _uF = "updatedForm";
|
|
592
|
+
const _uT = "updatedTheme";
|
|
593
|
+
const _v = "values";
|
|
594
|
+
const _vG = "verticalGap";
|
|
595
|
+
const _vM = "valueMappings";
|
|
596
|
+
const _vMa = "validationMessage";
|
|
597
|
+
const _vV = "variantValues";
|
|
598
|
+
const _va = "variants";
|
|
599
|
+
const _val = "value";
|
|
600
|
+
const _vali = "validations";
|
|
601
|
+
const n0 = "com.amazonaws.amplifyuibuilder";
|
|
602
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
603
|
+
var AmplifyUIBuilderServiceException$ = [-3, _s, "AmplifyUIBuilderServiceException", 0, [], []];
|
|
604
|
+
_s_registry.registerError(AmplifyUIBuilderServiceException$, AmplifyUIBuilderServiceException);
|
|
605
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
606
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
607
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
608
|
+
[_m],
|
|
609
|
+
[0]
|
|
610
|
+
];
|
|
611
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
612
|
+
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
613
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
614
|
+
[_m],
|
|
615
|
+
[0]
|
|
616
|
+
];
|
|
617
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
618
|
+
var ResourceConflictException$ = [-3, n0, _RCE,
|
|
619
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
620
|
+
[_m],
|
|
621
|
+
[0]
|
|
622
|
+
];
|
|
623
|
+
n0_registry.registerError(ResourceConflictException$, ResourceConflictException);
|
|
624
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
625
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
626
|
+
[_m],
|
|
627
|
+
[0]
|
|
628
|
+
];
|
|
629
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
630
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
631
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
632
|
+
[_m],
|
|
633
|
+
[0]
|
|
634
|
+
];
|
|
635
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
636
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
637
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
638
|
+
[_m],
|
|
639
|
+
[0]
|
|
640
|
+
];
|
|
641
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
642
|
+
var UnauthorizedException$ = [-3, n0, _UE,
|
|
643
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
644
|
+
[_m],
|
|
645
|
+
[0]
|
|
646
|
+
];
|
|
647
|
+
n0_registry.registerError(UnauthorizedException$, UnauthorizedException);
|
|
648
|
+
const errorTypeRegistries = [
|
|
649
|
+
_s_registry,
|
|
650
|
+
n0_registry,
|
|
651
|
+
];
|
|
652
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
653
|
+
var ActionParameters$ = [3, n0, _AP,
|
|
654
|
+
0,
|
|
655
|
+
[_t, _u, _a, _ta, _g, _mo, _i, _f, _st],
|
|
656
|
+
[() => ComponentProperty$, () => ComponentProperty$, () => ComponentProperty$, () => ComponentProperty$, () => ComponentProperty$, 0, () => ComponentProperty$, () => ComponentProperties, () => MutationActionSetStateParameter$]
|
|
657
|
+
];
|
|
658
|
+
var CodegenDependency$ = [3, n0, _CD,
|
|
659
|
+
0,
|
|
660
|
+
[_n, _sV, _iSV, _r],
|
|
661
|
+
[0, 0, 2, 0]
|
|
662
|
+
];
|
|
663
|
+
var CodegenFeatureFlags$ = [3, n0, _CFF,
|
|
664
|
+
0,
|
|
665
|
+
[_iRS, _iNMS],
|
|
666
|
+
[2, 2]
|
|
667
|
+
];
|
|
668
|
+
var CodegenGenericDataEnum$ = [3, n0, _CGDE,
|
|
669
|
+
0,
|
|
670
|
+
[_v],
|
|
671
|
+
[64 | 0], 1
|
|
672
|
+
];
|
|
673
|
+
var CodegenGenericDataField$ = [3, n0, _CGDF,
|
|
674
|
+
0,
|
|
675
|
+
[_dT, _dTV, _re, _rO, _iA, _rel],
|
|
676
|
+
[0, 0, 2, 2, 2, () => CodegenGenericDataRelationshipType$], 5
|
|
677
|
+
];
|
|
678
|
+
var CodegenGenericDataModel$ = [3, n0, _CGDM,
|
|
679
|
+
0,
|
|
680
|
+
[_f, _pK, _iJT],
|
|
681
|
+
[() => CodegenGenericDataFields, 64 | 0, 2], 2
|
|
682
|
+
];
|
|
683
|
+
var CodegenGenericDataNonModel$ = [3, n0, _CGDNM,
|
|
684
|
+
0,
|
|
685
|
+
[_f],
|
|
686
|
+
[() => CodegenGenericDataNonModelFields], 1
|
|
687
|
+
];
|
|
688
|
+
var CodegenGenericDataRelationshipType$ = [3, n0, _CGDRT,
|
|
689
|
+
0,
|
|
690
|
+
[_t, _rMN, _rMF, _cUAM, _rJFN, _rJTN, _bTFORM, _aF, _iHMI],
|
|
691
|
+
[0, 0, 64 | 0, 2, 0, 0, 0, 64 | 0, 2], 2
|
|
692
|
+
];
|
|
693
|
+
var CodegenJob$ = [3, n0, _CJ,
|
|
694
|
+
0,
|
|
695
|
+
[_i, _aI, _eN, _rC, _gDS, _aGF, _fe, _sta, _sM, _as, _tag, _cA, _mA, _d],
|
|
696
|
+
[0, 0, 0, () => CodegenJobRenderConfig$, () => CodegenJobGenericDataSchema$, 2, () => CodegenFeatureFlags$, 0, 0, () => CodegenJobAsset$, 128 | 0, 5, 5, () => CodegenDependencies], 3
|
|
697
|
+
];
|
|
698
|
+
var CodegenJobAsset$ = [3, n0, _CJA,
|
|
699
|
+
0,
|
|
700
|
+
[_dU],
|
|
701
|
+
[0]
|
|
702
|
+
];
|
|
703
|
+
var CodegenJobGenericDataSchema$ = [3, n0, _CJGDS,
|
|
704
|
+
0,
|
|
705
|
+
[_dST, _mod, _en, _nM],
|
|
706
|
+
[0, () => CodegenGenericDataModels, () => CodegenGenericDataEnums, () => CodegenGenericDataNonModels], 4
|
|
707
|
+
];
|
|
708
|
+
var CodegenJobSummary$ = [3, n0, _CJS,
|
|
709
|
+
0,
|
|
710
|
+
[_aI, _eN, _i, _cA, _mA],
|
|
711
|
+
[0, 0, 0, 5, 5], 3
|
|
712
|
+
];
|
|
713
|
+
var Component$ = [3, n0, _C,
|
|
714
|
+
0,
|
|
715
|
+
[_aI, _eN, _i, _n, _cT, _p, _va, _o, _bP, _cA, _sI, _ch, _cP, _mA, _tag, _ev, _sVc],
|
|
716
|
+
[0, 0, 0, 0, 0, () => ComponentProperties, () => ComponentVariants, [2, n0, _CO, 0, 0, 128 | 0], () => ComponentBindingProperties, 5, 0, () => ComponentChildList, () => ComponentCollectionProperties, 5, 128 | 0, () => ComponentEvents, 0], 10
|
|
717
|
+
];
|
|
718
|
+
var ComponentBindingPropertiesValue$ = [3, n0, _CBPV,
|
|
719
|
+
0,
|
|
720
|
+
[_t, _bP, _dV],
|
|
721
|
+
[0, () => ComponentBindingPropertiesValueProperties$, 0]
|
|
722
|
+
];
|
|
723
|
+
var ComponentBindingPropertiesValueProperties$ = [3, n0, _CBPVP,
|
|
724
|
+
0,
|
|
725
|
+
[_mo, _fi, _pr, _uA, _b, _k, _dV, _sN],
|
|
726
|
+
[0, 0, () => PredicateList, 0, 0, 0, 0, 0]
|
|
727
|
+
];
|
|
728
|
+
var ComponentChild$ = [3, n0, _CC,
|
|
729
|
+
0,
|
|
730
|
+
[_cT, _n, _p, _ch, _ev, _sI],
|
|
731
|
+
[0, 0, () => ComponentProperties, () => ComponentChildList, () => ComponentEvents, 0], 3
|
|
732
|
+
];
|
|
733
|
+
var ComponentConditionProperty$ = [3, n0, _CCP,
|
|
734
|
+
0,
|
|
735
|
+
[_pro, _fi, _op, _ope, _th, _el, _oT],
|
|
736
|
+
[0, 0, 0, 0, () => ComponentProperty$, () => ComponentProperty$, 0]
|
|
737
|
+
];
|
|
738
|
+
var ComponentDataConfiguration$ = [3, n0, _CDC,
|
|
739
|
+
0,
|
|
740
|
+
[_mo, _so, _pre, _id],
|
|
741
|
+
[0, () => SortPropertyList, () => Predicate$, 64 | 0], 1
|
|
742
|
+
];
|
|
743
|
+
var ComponentEvent$ = [3, n0, _CE,
|
|
744
|
+
0,
|
|
745
|
+
[_ac, _pa, _bE],
|
|
746
|
+
[0, () => ActionParameters$, 0]
|
|
747
|
+
];
|
|
748
|
+
var ComponentProperty$ = [3, n0, _CP,
|
|
749
|
+
0,
|
|
750
|
+
[_val, _bP, _cBP, _dV, _mo, _bi, _eve, _uA, _co, _con, _conf, _t, _iV, _cN, _pro],
|
|
751
|
+
[0, () => ComponentPropertyBindingProperties$, () => ComponentPropertyBindingProperties$, 0, 0, () => FormBindings, 0, 0, () => ComponentPropertyList, () => ComponentConditionProperty$, 2, 0, 0, 0, 0]
|
|
752
|
+
];
|
|
753
|
+
var ComponentPropertyBindingProperties$ = [3, n0, _CPBP,
|
|
754
|
+
0,
|
|
755
|
+
[_pro, _fi],
|
|
756
|
+
[0, 0], 1
|
|
757
|
+
];
|
|
758
|
+
var ComponentSummary$ = [3, n0, _CS,
|
|
759
|
+
0,
|
|
760
|
+
[_aI, _eN, _i, _n, _cT],
|
|
761
|
+
[0, 0, 0, 0, 0], 5
|
|
762
|
+
];
|
|
763
|
+
var ComponentVariant$ = [3, n0, _CV,
|
|
764
|
+
0,
|
|
765
|
+
[_vV, _o],
|
|
766
|
+
[128 | 0, [2, n0, _CO, 0, 0, 128 | 0]]
|
|
767
|
+
];
|
|
768
|
+
var CreateComponentData$ = [3, n0, _CCD,
|
|
769
|
+
0,
|
|
770
|
+
[_n, _cT, _p, _va, _o, _bP, _sI, _ch, _cP, _tag, _ev, _sVc],
|
|
771
|
+
[0, 0, () => ComponentProperties, () => ComponentVariants, [2, n0, _CO, 0, 0, 128 | 0], () => ComponentBindingProperties, 0, () => ComponentChildList, () => ComponentCollectionProperties, 128 | 0, () => ComponentEvents, 0], 6
|
|
772
|
+
];
|
|
773
|
+
var CreateComponentRequest$ = [3, n0, _CCR,
|
|
774
|
+
0,
|
|
775
|
+
[_aI, _eN, _cTC, _cTl],
|
|
776
|
+
[[0, 1], [0, 1], [() => CreateComponentData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 3
|
|
777
|
+
];
|
|
778
|
+
var CreateComponentResponse$ = [3, n0, _CCRr,
|
|
779
|
+
0,
|
|
780
|
+
[_ent],
|
|
781
|
+
[[() => Component$, 16]]
|
|
782
|
+
];
|
|
783
|
+
var CreateFormData$ = [3, n0, _CFD,
|
|
784
|
+
0,
|
|
785
|
+
[_n, _dT, _fAT, _f, _sty, _sE, _sVc, _ct, _tag, _lD],
|
|
786
|
+
[0, () => FormDataTypeConfig$, 0, () => FieldsMap, () => FormStyle$, () => SectionalElementMap, 0, () => FormCTA$, 128 | 0, 0], 7
|
|
787
|
+
];
|
|
788
|
+
var CreateFormRequest$ = [3, n0, _CFR,
|
|
789
|
+
0,
|
|
790
|
+
[_aI, _eN, _fTC, _cTl],
|
|
791
|
+
[[0, 1], [0, 1], [() => CreateFormData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 3
|
|
792
|
+
];
|
|
793
|
+
var CreateFormResponse$ = [3, n0, _CFRr,
|
|
794
|
+
0,
|
|
795
|
+
[_ent],
|
|
796
|
+
[[() => Form$, 16]]
|
|
797
|
+
];
|
|
798
|
+
var CreateThemeData$ = [3, n0, _CTD,
|
|
799
|
+
0,
|
|
800
|
+
[_n, _v, _o, _tag],
|
|
801
|
+
[0, () => ThemeValuesList, () => ThemeValuesList, 128 | 0], 2
|
|
802
|
+
];
|
|
803
|
+
var CreateThemeRequest$ = [3, n0, _CTR,
|
|
804
|
+
0,
|
|
805
|
+
[_aI, _eN, _tTC, _cTl],
|
|
806
|
+
[[0, 1], [0, 1], [() => CreateThemeData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 3
|
|
807
|
+
];
|
|
808
|
+
var CreateThemeResponse$ = [3, n0, _CTRr,
|
|
809
|
+
0,
|
|
810
|
+
[_ent],
|
|
811
|
+
[[() => Theme$, 16]]
|
|
812
|
+
];
|
|
813
|
+
var DataStoreRenderConfig$ = [3, n0, _DSRC,
|
|
814
|
+
0,
|
|
815
|
+
[],
|
|
816
|
+
[]
|
|
817
|
+
];
|
|
818
|
+
var DeleteComponentRequest$ = [3, n0, _DCR,
|
|
819
|
+
0,
|
|
820
|
+
[_aI, _eN, _i],
|
|
821
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
822
|
+
];
|
|
823
|
+
var DeleteFormRequest$ = [3, n0, _DFR,
|
|
824
|
+
0,
|
|
825
|
+
[_aI, _eN, _i],
|
|
826
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
827
|
+
];
|
|
828
|
+
var DeleteThemeRequest$ = [3, n0, _DTR,
|
|
829
|
+
0,
|
|
830
|
+
[_aI, _eN, _i],
|
|
831
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
832
|
+
];
|
|
833
|
+
var ExchangeCodeForTokenRequest$ = [3, n0, _ECFTR,
|
|
834
|
+
0,
|
|
835
|
+
[_prov, _req],
|
|
836
|
+
[[0, 1], [() => ExchangeCodeForTokenRequestBody$, 16]], 2
|
|
837
|
+
];
|
|
838
|
+
var ExchangeCodeForTokenRequestBody$ = [3, n0, _ECFTRB,
|
|
839
|
+
0,
|
|
840
|
+
[_cod, _rU, _cI],
|
|
841
|
+
[[() => SensitiveString, 0], 0, [() => SensitiveString, 0]], 2
|
|
842
|
+
];
|
|
843
|
+
var ExchangeCodeForTokenResponse$ = [3, n0, _ECFTRx,
|
|
844
|
+
0,
|
|
845
|
+
[_aT, _eI, _rT],
|
|
846
|
+
[[() => SensitiveString, 0], 1, [() => SensitiveString, 0]], 3
|
|
847
|
+
];
|
|
848
|
+
var ExportComponentsRequest$ = [3, n0, _ECR,
|
|
849
|
+
0,
|
|
850
|
+
[_aI, _eN, _nT],
|
|
851
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }]], 2
|
|
852
|
+
];
|
|
853
|
+
var ExportComponentsResponse$ = [3, n0, _ECRx,
|
|
854
|
+
0,
|
|
855
|
+
[_enti, _nT],
|
|
856
|
+
[() => ComponentList, 0], 1
|
|
857
|
+
];
|
|
858
|
+
var ExportFormsRequest$ = [3, n0, _EFR,
|
|
859
|
+
0,
|
|
860
|
+
[_aI, _eN, _nT],
|
|
861
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }]], 2
|
|
862
|
+
];
|
|
863
|
+
var ExportFormsResponse$ = [3, n0, _EFRx,
|
|
864
|
+
0,
|
|
865
|
+
[_enti, _nT],
|
|
866
|
+
[() => FormList, 0], 1
|
|
867
|
+
];
|
|
868
|
+
var ExportThemesRequest$ = [3, n0, _ETR,
|
|
869
|
+
0,
|
|
870
|
+
[_aI, _eN, _nT],
|
|
871
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }]], 2
|
|
872
|
+
];
|
|
873
|
+
var ExportThemesResponse$ = [3, n0, _ETRx,
|
|
874
|
+
0,
|
|
875
|
+
[_enti, _nT],
|
|
876
|
+
[() => ThemeList, 0], 1
|
|
877
|
+
];
|
|
878
|
+
var FieldConfig$ = [3, n0, _FC,
|
|
879
|
+
0,
|
|
880
|
+
[_l, _po, _ex, _iTn, _vali],
|
|
881
|
+
[0, () => FieldPosition$, 2, () => FieldInputConfig$, () => ValidationsList]
|
|
882
|
+
];
|
|
883
|
+
var FieldInputConfig$ = [3, n0, _FIC,
|
|
884
|
+
0,
|
|
885
|
+
[_t, _re, _rO, _pl, _dV, _dTe, _dC, _dCC, _vM, _n, _mV, _mVa, _ste, _val, _iA, _fUC],
|
|
886
|
+
[0, 2, 2, 0, 0, 0, 2, 0, () => ValueMappings$, 0, 1, 1, 1, 0, 2, () => FileUploaderFieldConfig$], 1
|
|
887
|
+
];
|
|
888
|
+
var FieldValidationConfiguration$ = [3, n0, _FVC,
|
|
889
|
+
0,
|
|
890
|
+
[_t, _sVt, _nV, _vMa],
|
|
891
|
+
[0, 64 | 0, 64 | 1, 0], 1
|
|
892
|
+
];
|
|
893
|
+
var FileUploaderFieldConfig$ = [3, n0, _FUFC,
|
|
894
|
+
0,
|
|
895
|
+
[_aL, _aFT, _sT, _iR, _mFC, _mS],
|
|
896
|
+
[0, 64 | 0, 2, 2, 1, 1], 2
|
|
897
|
+
];
|
|
898
|
+
var Form$ = [3, n0, _F,
|
|
899
|
+
0,
|
|
900
|
+
[_aI, _eN, _i, _n, _fAT, _sty, _dT, _f, _sE, _sVc, _tag, _ct, _lD],
|
|
901
|
+
[0, 0, 0, 0, 0, () => FormStyle$, () => FormDataTypeConfig$, () => FieldsMap, () => SectionalElementMap, 0, 128 | 0, () => FormCTA$, 0], 10
|
|
902
|
+
];
|
|
903
|
+
var FormBindingElement$ = [3, n0, _FBE,
|
|
904
|
+
0,
|
|
905
|
+
[_ele, _pro],
|
|
906
|
+
[0, 0], 2
|
|
907
|
+
];
|
|
908
|
+
var FormButton$ = [3, n0, _FB,
|
|
909
|
+
0,
|
|
910
|
+
[_ex, _ch, _po],
|
|
911
|
+
[2, 0, () => FieldPosition$]
|
|
912
|
+
];
|
|
913
|
+
var FormCTA$ = [3, n0, _FCTA,
|
|
914
|
+
0,
|
|
915
|
+
[_po, _cl, _ca, _su],
|
|
916
|
+
[0, () => FormButton$, () => FormButton$, () => FormButton$]
|
|
917
|
+
];
|
|
918
|
+
var FormDataTypeConfig$ = [3, n0, _FDTC,
|
|
919
|
+
0,
|
|
920
|
+
[_dST, _dTN],
|
|
921
|
+
[0, 0], 2
|
|
922
|
+
];
|
|
923
|
+
var FormInputBindingPropertiesValue$ = [3, n0, _FIBPV,
|
|
924
|
+
0,
|
|
925
|
+
[_t, _bP],
|
|
926
|
+
[0, () => FormInputBindingPropertiesValueProperties$]
|
|
927
|
+
];
|
|
928
|
+
var FormInputBindingPropertiesValueProperties$ = [3, n0, _FIBPVP,
|
|
929
|
+
0,
|
|
930
|
+
[_mo],
|
|
931
|
+
[0]
|
|
932
|
+
];
|
|
933
|
+
var FormInputValueProperty$ = [3, n0, _FIVP,
|
|
934
|
+
0,
|
|
935
|
+
[_val, _bP, _co],
|
|
936
|
+
[0, () => FormInputValuePropertyBindingProperties$, () => FormInputValuePropertyList]
|
|
937
|
+
];
|
|
938
|
+
var FormInputValuePropertyBindingProperties$ = [3, n0, _FIVPBP,
|
|
939
|
+
0,
|
|
940
|
+
[_pro, _fi],
|
|
941
|
+
[0, 0], 1
|
|
942
|
+
];
|
|
943
|
+
var FormStyle$ = [3, n0, _FS,
|
|
944
|
+
0,
|
|
945
|
+
[_hG, _vG, _oP],
|
|
946
|
+
[() => FormStyleConfig$, () => FormStyleConfig$, () => FormStyleConfig$]
|
|
947
|
+
];
|
|
948
|
+
var FormSummary$ = [3, n0, _FSo,
|
|
949
|
+
0,
|
|
950
|
+
[_aI, _dT, _eN, _fAT, _i, _n],
|
|
951
|
+
[0, () => FormDataTypeConfig$, 0, 0, 0, 0], 6
|
|
952
|
+
];
|
|
953
|
+
var GetCodegenJobRequest$ = [3, n0, _GCJR,
|
|
954
|
+
0,
|
|
955
|
+
[_aI, _eN, _i],
|
|
956
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
957
|
+
];
|
|
958
|
+
var GetCodegenJobResponse$ = [3, n0, _GCJRe,
|
|
959
|
+
0,
|
|
960
|
+
[_j],
|
|
961
|
+
[[() => CodegenJob$, 16]]
|
|
962
|
+
];
|
|
963
|
+
var GetComponentRequest$ = [3, n0, _GCR,
|
|
964
|
+
0,
|
|
965
|
+
[_aI, _eN, _i],
|
|
966
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
967
|
+
];
|
|
968
|
+
var GetComponentResponse$ = [3, n0, _GCRe,
|
|
969
|
+
0,
|
|
970
|
+
[_com],
|
|
971
|
+
[[() => Component$, 16]]
|
|
972
|
+
];
|
|
973
|
+
var GetFormRequest$ = [3, n0, _GFR,
|
|
974
|
+
0,
|
|
975
|
+
[_aI, _eN, _i],
|
|
976
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
977
|
+
];
|
|
978
|
+
var GetFormResponse$ = [3, n0, _GFRe,
|
|
979
|
+
0,
|
|
980
|
+
[_fo],
|
|
981
|
+
[[() => Form$, 16]]
|
|
982
|
+
];
|
|
983
|
+
var GetMetadataRequest$ = [3, n0, _GMR,
|
|
984
|
+
0,
|
|
985
|
+
[_aI, _eN],
|
|
986
|
+
[[0, 1], [0, 1]], 2
|
|
987
|
+
];
|
|
988
|
+
var GetMetadataResponse$ = [3, n0, _GMRe,
|
|
989
|
+
0,
|
|
990
|
+
[_fe],
|
|
991
|
+
[128 | 0], 1
|
|
992
|
+
];
|
|
993
|
+
var GetThemeRequest$ = [3, n0, _GTR,
|
|
994
|
+
0,
|
|
995
|
+
[_aI, _eN, _i],
|
|
996
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
997
|
+
];
|
|
998
|
+
var GetThemeResponse$ = [3, n0, _GTRe,
|
|
999
|
+
0,
|
|
1000
|
+
[_the],
|
|
1001
|
+
[[() => Theme$, 16]]
|
|
1002
|
+
];
|
|
1003
|
+
var GraphQLRenderConfig$ = [3, n0, _GQLRC,
|
|
1004
|
+
0,
|
|
1005
|
+
[_tFP, _qFP, _mFP, _sFP, _fFP],
|
|
1006
|
+
[0, 0, 0, 0, 0], 5
|
|
1007
|
+
];
|
|
1008
|
+
var ListCodegenJobsRequest$ = [3, n0, _LCJR,
|
|
1009
|
+
0,
|
|
1010
|
+
[_aI, _eN, _nT, _mR],
|
|
1011
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
1012
|
+
];
|
|
1013
|
+
var ListCodegenJobsResponse$ = [3, n0, _LCJRi,
|
|
1014
|
+
0,
|
|
1015
|
+
[_enti, _nT],
|
|
1016
|
+
[() => CodegenJobSummaryList, 0], 1
|
|
1017
|
+
];
|
|
1018
|
+
var ListComponentsRequest$ = [3, n0, _LCR,
|
|
1019
|
+
0,
|
|
1020
|
+
[_aI, _eN, _nT, _mR],
|
|
1021
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
1022
|
+
];
|
|
1023
|
+
var ListComponentsResponse$ = [3, n0, _LCRi,
|
|
1024
|
+
0,
|
|
1025
|
+
[_enti, _nT],
|
|
1026
|
+
[() => ComponentSummaryList, 0], 1
|
|
1027
|
+
];
|
|
1028
|
+
var ListFormsRequest$ = [3, n0, _LFR,
|
|
1029
|
+
0,
|
|
1030
|
+
[_aI, _eN, _nT, _mR],
|
|
1031
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
1032
|
+
];
|
|
1033
|
+
var ListFormsResponse$ = [3, n0, _LFRi,
|
|
1034
|
+
0,
|
|
1035
|
+
[_enti, _nT],
|
|
1036
|
+
[() => FormSummaryList, 0], 1
|
|
1037
|
+
];
|
|
1038
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1039
|
+
0,
|
|
1040
|
+
[_rA],
|
|
1041
|
+
[[0, 1]], 1
|
|
1042
|
+
];
|
|
1043
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1044
|
+
0,
|
|
1045
|
+
[_tag],
|
|
1046
|
+
[128 | 0], 1
|
|
1047
|
+
];
|
|
1048
|
+
var ListThemesRequest$ = [3, n0, _LTR,
|
|
1049
|
+
0,
|
|
1050
|
+
[_aI, _eN, _nT, _mR],
|
|
1051
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
1052
|
+
];
|
|
1053
|
+
var ListThemesResponse$ = [3, n0, _LTRi,
|
|
1054
|
+
0,
|
|
1055
|
+
[_enti, _nT],
|
|
1056
|
+
[() => ThemeSummaryList, 0], 1
|
|
1057
|
+
];
|
|
1058
|
+
var MutationActionSetStateParameter$ = [3, n0, _MASSP,
|
|
1059
|
+
0,
|
|
1060
|
+
[_cN, _pro, _set],
|
|
1061
|
+
[0, 0, () => ComponentProperty$], 3
|
|
1062
|
+
];
|
|
1063
|
+
var NoApiRenderConfig$ = [3, n0, _NARC,
|
|
1064
|
+
0,
|
|
1065
|
+
[],
|
|
1066
|
+
[]
|
|
1067
|
+
];
|
|
1068
|
+
var Predicate$ = [3, n0, _P,
|
|
1069
|
+
0,
|
|
1070
|
+
[_or, _an, _fi, _op, _ope, _oT],
|
|
1071
|
+
[() => PredicateList, () => PredicateList, 0, 0, 0, 0]
|
|
1072
|
+
];
|
|
1073
|
+
var PutMetadataFlagBody$ = [3, n0, _PMFB,
|
|
1074
|
+
0,
|
|
1075
|
+
[_nVe],
|
|
1076
|
+
[0], 1
|
|
1077
|
+
];
|
|
1078
|
+
var PutMetadataFlagRequest$ = [3, n0, _PMFR,
|
|
1079
|
+
0,
|
|
1080
|
+
[_aI, _eN, _fN, _bo],
|
|
1081
|
+
[[0, 1], [0, 1], [0, 1], [() => PutMetadataFlagBody$, 16]], 4
|
|
1082
|
+
];
|
|
1083
|
+
var ReactStartCodegenJobData$ = [3, n0, _RSCJD,
|
|
1084
|
+
0,
|
|
1085
|
+
[_modu, _ta, _sc, _rTD, _iSM, _aC, _d],
|
|
1086
|
+
[0, 0, 0, 2, 2, () => ApiConfiguration$, 128 | 0]
|
|
1087
|
+
];
|
|
1088
|
+
var RefreshTokenRequest$ = [3, n0, _RTR,
|
|
1089
|
+
0,
|
|
1090
|
+
[_prov, _rTB],
|
|
1091
|
+
[[0, 1], [() => RefreshTokenRequestBody$, 16]], 2
|
|
1092
|
+
];
|
|
1093
|
+
var RefreshTokenRequestBody$ = [3, n0, _RTRB,
|
|
1094
|
+
0,
|
|
1095
|
+
[_to, _cI],
|
|
1096
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0]], 1
|
|
1097
|
+
];
|
|
1098
|
+
var RefreshTokenResponse$ = [3, n0, _RTRe,
|
|
1099
|
+
0,
|
|
1100
|
+
[_aT, _eI],
|
|
1101
|
+
[[() => SensitiveString, 0], 1], 2
|
|
1102
|
+
];
|
|
1103
|
+
var SectionalElement$ = [3, n0, _SE,
|
|
1104
|
+
0,
|
|
1105
|
+
[_t, _po, _te, _le, _ori, _ex],
|
|
1106
|
+
[0, () => FieldPosition$, 0, 1, 0, 2], 1
|
|
1107
|
+
];
|
|
1108
|
+
var SortProperty$ = [3, n0, _SP,
|
|
1109
|
+
0,
|
|
1110
|
+
[_fi, _di],
|
|
1111
|
+
[0, 0], 2
|
|
1112
|
+
];
|
|
1113
|
+
var StartCodegenJobData$ = [3, n0, _SCJD,
|
|
1114
|
+
0,
|
|
1115
|
+
[_rC, _gDS, _aGF, _fe, _tag],
|
|
1116
|
+
[() => CodegenJobRenderConfig$, () => CodegenJobGenericDataSchema$, 2, () => CodegenFeatureFlags$, 128 | 0], 1
|
|
1117
|
+
];
|
|
1118
|
+
var StartCodegenJobRequest$ = [3, n0, _SCJR,
|
|
1119
|
+
0,
|
|
1120
|
+
[_aI, _eN, _cJTC, _cTl],
|
|
1121
|
+
[[0, 1], [0, 1], [() => StartCodegenJobData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 3
|
|
1122
|
+
];
|
|
1123
|
+
var StartCodegenJobResponse$ = [3, n0, _SCJRt,
|
|
1124
|
+
0,
|
|
1125
|
+
[_ent],
|
|
1126
|
+
[[() => CodegenJob$, 16]]
|
|
1127
|
+
];
|
|
1128
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1129
|
+
0,
|
|
1130
|
+
[_rA, _tag],
|
|
1131
|
+
[[0, 1], 128 | 0], 2
|
|
1132
|
+
];
|
|
1133
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1134
|
+
0,
|
|
1135
|
+
[],
|
|
1136
|
+
[]
|
|
1137
|
+
];
|
|
1138
|
+
var Theme$ = [3, n0, _T,
|
|
1139
|
+
0,
|
|
1140
|
+
[_aI, _eN, _i, _n, _cA, _v, _mA, _o, _tag],
|
|
1141
|
+
[0, 0, 0, 0, 5, () => ThemeValuesList, 5, () => ThemeValuesList, 128 | 0], 6
|
|
1142
|
+
];
|
|
1143
|
+
var ThemeSummary$ = [3, n0, _TS,
|
|
1144
|
+
0,
|
|
1145
|
+
[_aI, _eN, _i, _n],
|
|
1146
|
+
[0, 0, 0, 0], 4
|
|
1147
|
+
];
|
|
1148
|
+
var ThemeValue$ = [3, n0, _TV,
|
|
1149
|
+
0,
|
|
1150
|
+
[_val, _ch],
|
|
1151
|
+
[0, () => ThemeValuesList]
|
|
1152
|
+
];
|
|
1153
|
+
var ThemeValues$ = [3, n0, _TVh,
|
|
1154
|
+
0,
|
|
1155
|
+
[_k, _val],
|
|
1156
|
+
[0, () => ThemeValue$]
|
|
1157
|
+
];
|
|
1158
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1159
|
+
0,
|
|
1160
|
+
[_rA, _tK],
|
|
1161
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1162
|
+
];
|
|
1163
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1164
|
+
0,
|
|
1165
|
+
[],
|
|
1166
|
+
[]
|
|
1167
|
+
];
|
|
1168
|
+
var UpdateComponentData$ = [3, n0, _UCD,
|
|
1169
|
+
0,
|
|
1170
|
+
[_i, _n, _sI, _cT, _p, _ch, _va, _o, _bP, _cP, _ev, _sVc],
|
|
1171
|
+
[0, 0, 0, 0, () => ComponentProperties, () => ComponentChildList, () => ComponentVariants, [2, n0, _CO, 0, 0, 128 | 0], () => ComponentBindingProperties, () => ComponentCollectionProperties, () => ComponentEvents, 0]
|
|
1172
|
+
];
|
|
1173
|
+
var UpdateComponentRequest$ = [3, n0, _UCR,
|
|
1174
|
+
0,
|
|
1175
|
+
[_aI, _eN, _i, _uC, _cTl],
|
|
1176
|
+
[[0, 1], [0, 1], [0, 1], [() => UpdateComponentData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 4
|
|
1177
|
+
];
|
|
1178
|
+
var UpdateComponentResponse$ = [3, n0, _UCRp,
|
|
1179
|
+
0,
|
|
1180
|
+
[_ent],
|
|
1181
|
+
[[() => Component$, 16]]
|
|
1182
|
+
];
|
|
1183
|
+
var UpdateFormData$ = [3, n0, _UFD,
|
|
1184
|
+
0,
|
|
1185
|
+
[_n, _dT, _fAT, _f, _sty, _sE, _sVc, _ct, _lD],
|
|
1186
|
+
[0, () => FormDataTypeConfig$, 0, () => FieldsMap, () => FormStyle$, () => SectionalElementMap, 0, () => FormCTA$, 0]
|
|
1187
|
+
];
|
|
1188
|
+
var UpdateFormRequest$ = [3, n0, _UFR,
|
|
1189
|
+
0,
|
|
1190
|
+
[_aI, _eN, _i, _uF, _cTl],
|
|
1191
|
+
[[0, 1], [0, 1], [0, 1], [() => UpdateFormData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 4
|
|
1192
|
+
];
|
|
1193
|
+
var UpdateFormResponse$ = [3, n0, _UFRp,
|
|
1194
|
+
0,
|
|
1195
|
+
[_ent],
|
|
1196
|
+
[[() => Form$, 16]]
|
|
1197
|
+
];
|
|
1198
|
+
var UpdateThemeData$ = [3, n0, _UTD,
|
|
1199
|
+
0,
|
|
1200
|
+
[_v, _i, _n, _o],
|
|
1201
|
+
[() => ThemeValuesList, 0, 0, () => ThemeValuesList], 1
|
|
1202
|
+
];
|
|
1203
|
+
var UpdateThemeRequest$ = [3, n0, _UTR,
|
|
1204
|
+
0,
|
|
1205
|
+
[_aI, _eN, _i, _uT, _cTl],
|
|
1206
|
+
[[0, 1], [0, 1], [0, 1], [() => UpdateThemeData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 4
|
|
1207
|
+
];
|
|
1208
|
+
var UpdateThemeResponse$ = [3, n0, _UTRp,
|
|
1209
|
+
0,
|
|
1210
|
+
[_ent],
|
|
1211
|
+
[[() => Theme$, 16]]
|
|
1212
|
+
];
|
|
1213
|
+
var ValueMapping$ = [3, n0, _VM,
|
|
1214
|
+
0,
|
|
1215
|
+
[_val, _dVi],
|
|
1216
|
+
[() => FormInputValueProperty$, () => FormInputValueProperty$], 1
|
|
1217
|
+
];
|
|
1218
|
+
var ValueMappings$ = [3, n0, _VMa,
|
|
1219
|
+
0,
|
|
1220
|
+
[_v, _bP],
|
|
1221
|
+
[() => ValueMappingList, () => FormInputBindingProperties], 1
|
|
1222
|
+
];
|
|
1223
|
+
var __Unit = "unit";
|
|
1224
|
+
var CodegenDependencies = [1, n0, _CDo,
|
|
1225
|
+
0, () => CodegenDependency$
|
|
1226
|
+
];
|
|
1227
|
+
var CodegenJobSummaryList = [1, n0, _CJSL,
|
|
1228
|
+
0, () => CodegenJobSummary$
|
|
1229
|
+
];
|
|
1230
|
+
var ComponentChildList = [1, n0, _CCL,
|
|
1231
|
+
0, () => ComponentChild$
|
|
1232
|
+
];
|
|
1233
|
+
var ComponentList = [1, n0, _CL,
|
|
1234
|
+
0, () => Component$
|
|
1235
|
+
];
|
|
1236
|
+
var ComponentPropertyList = [1, n0, _CPL,
|
|
1237
|
+
0, () => ComponentProperty$
|
|
1238
|
+
];
|
|
1239
|
+
var ComponentSummaryList = [1, n0, _CSL,
|
|
1240
|
+
0, () => ComponentSummary$
|
|
1241
|
+
];
|
|
1242
|
+
var ComponentVariants = [1, n0, _CVo,
|
|
1243
|
+
0, () => ComponentVariant$
|
|
1244
|
+
];
|
|
1245
|
+
var FormInputValuePropertyList = [1, n0, _FIVPL,
|
|
1246
|
+
0, () => FormInputValueProperty$
|
|
1247
|
+
];
|
|
1248
|
+
var FormList = [1, n0, _FL,
|
|
1249
|
+
0, () => Form$
|
|
1250
|
+
];
|
|
1251
|
+
var FormSummaryList = [1, n0, _FSL,
|
|
1252
|
+
0, () => FormSummary$
|
|
1253
|
+
];
|
|
1254
|
+
var PredicateList = [1, n0, _PL,
|
|
1255
|
+
0, () => Predicate$
|
|
1256
|
+
];
|
|
1257
|
+
var SortPropertyList = [1, n0, _SPL,
|
|
1258
|
+
0, () => SortProperty$
|
|
1259
|
+
];
|
|
1260
|
+
var ThemeList = [1, n0, _TL,
|
|
1261
|
+
0, () => Theme$
|
|
1262
|
+
];
|
|
1263
|
+
var ThemeSummaryList = [1, n0, _TSL,
|
|
1264
|
+
0, () => ThemeSummary$
|
|
1265
|
+
];
|
|
1266
|
+
var ThemeValuesList = [1, n0, _TVL,
|
|
1267
|
+
0, () => ThemeValues$
|
|
1268
|
+
];
|
|
1269
|
+
var ValidationsList = [1, n0, _VL,
|
|
1270
|
+
0, () => FieldValidationConfiguration$
|
|
1271
|
+
];
|
|
1272
|
+
var ValueMappingList = [1, n0, _VML,
|
|
1273
|
+
0, () => ValueMapping$
|
|
1274
|
+
];
|
|
1275
|
+
var CodegenGenericDataEnums = [2, n0, _CGDEo,
|
|
1276
|
+
0, 0, () => CodegenGenericDataEnum$
|
|
1277
|
+
];
|
|
1278
|
+
var CodegenGenericDataFields = [2, n0, _CGDFo,
|
|
1279
|
+
0, 0, () => CodegenGenericDataField$
|
|
1280
|
+
];
|
|
1281
|
+
var CodegenGenericDataModels = [2, n0, _CGDMo,
|
|
1282
|
+
0, 0, () => CodegenGenericDataModel$
|
|
1283
|
+
];
|
|
1284
|
+
var CodegenGenericDataNonModelFields = [2, n0, _CGDNMF,
|
|
1285
|
+
0, 0, () => CodegenGenericDataField$
|
|
1286
|
+
];
|
|
1287
|
+
var CodegenGenericDataNonModels = [2, n0, _CGDNMo,
|
|
1288
|
+
0, 0, () => CodegenGenericDataNonModel$
|
|
1289
|
+
];
|
|
1290
|
+
var ComponentBindingProperties = [2, n0, _CBP,
|
|
1291
|
+
0, 0, () => ComponentBindingPropertiesValue$
|
|
1292
|
+
];
|
|
1293
|
+
var ComponentCollectionProperties = [2, n0, _CCPo,
|
|
1294
|
+
0, 0, () => ComponentDataConfiguration$
|
|
1295
|
+
];
|
|
1296
|
+
var ComponentEvents = [2, n0, _CEo,
|
|
1297
|
+
0, 0, () => ComponentEvent$
|
|
1298
|
+
];
|
|
1299
|
+
var ComponentProperties = [2, n0, _CPo,
|
|
1300
|
+
0, 0, () => ComponentProperty$
|
|
1301
|
+
];
|
|
1302
|
+
var FieldsMap = [2, n0, _FM,
|
|
1303
|
+
0, 0, () => FieldConfig$
|
|
1304
|
+
];
|
|
1305
|
+
var FormBindings = [2, n0, _FBo,
|
|
1306
|
+
0, 0, () => FormBindingElement$
|
|
1307
|
+
];
|
|
1308
|
+
var FormInputBindingProperties = [2, n0, _FIBP,
|
|
1309
|
+
0, 0, () => FormInputBindingPropertiesValue$
|
|
1310
|
+
];
|
|
1311
|
+
var SectionalElementMap = [2, n0, _SEM,
|
|
1312
|
+
0, 0, () => SectionalElement$
|
|
1313
|
+
];
|
|
1314
|
+
var ApiConfiguration$ = [4, n0, _AC,
|
|
1315
|
+
0,
|
|
1316
|
+
[_gQLC, _dSC, _nAC],
|
|
1317
|
+
[() => GraphQLRenderConfig$, () => DataStoreRenderConfig$, () => NoApiRenderConfig$]
|
|
1318
|
+
];
|
|
1319
|
+
var CodegenJobRenderConfig$ = [4, n0, _CJRC,
|
|
1320
|
+
0,
|
|
1321
|
+
[_rea],
|
|
1322
|
+
[() => ReactStartCodegenJobData$]
|
|
1323
|
+
];
|
|
1324
|
+
var FieldPosition$ = [4, n0, _FP,
|
|
1325
|
+
0,
|
|
1326
|
+
[_fix, _rOi, _be],
|
|
1327
|
+
[0, 0, 0]
|
|
1328
|
+
];
|
|
1329
|
+
var FormStyleConfig$ = [4, n0, _FSC,
|
|
1330
|
+
0,
|
|
1331
|
+
[_tR, _val],
|
|
1332
|
+
[0, 0]
|
|
1333
|
+
];
|
|
1334
|
+
var CreateComponent$ = [9, n0, _CCr,
|
|
1335
|
+
{ [_h]: ["POST", "/app/{appId}/environment/{environmentName}/components", 200] }, () => CreateComponentRequest$, () => CreateComponentResponse$
|
|
1336
|
+
];
|
|
1337
|
+
var CreateForm$ = [9, n0, _CF,
|
|
1338
|
+
{ [_h]: ["POST", "/app/{appId}/environment/{environmentName}/forms", 200] }, () => CreateFormRequest$, () => CreateFormResponse$
|
|
1339
|
+
];
|
|
1340
|
+
var CreateTheme$ = [9, n0, _CT,
|
|
1341
|
+
{ [_h]: ["POST", "/app/{appId}/environment/{environmentName}/themes", 200] }, () => CreateThemeRequest$, () => CreateThemeResponse$
|
|
1342
|
+
];
|
|
1343
|
+
var DeleteComponent$ = [9, n0, _DC,
|
|
1344
|
+
{ [_h]: ["DELETE", "/app/{appId}/environment/{environmentName}/components/{id}", 200] }, () => DeleteComponentRequest$, () => __Unit
|
|
1345
|
+
];
|
|
1346
|
+
var DeleteForm$ = [9, n0, _DF,
|
|
1347
|
+
{ [_h]: ["DELETE", "/app/{appId}/environment/{environmentName}/forms/{id}", 200] }, () => DeleteFormRequest$, () => __Unit
|
|
1348
|
+
];
|
|
1349
|
+
var DeleteTheme$ = [9, n0, _DT,
|
|
1350
|
+
{ [_h]: ["DELETE", "/app/{appId}/environment/{environmentName}/themes/{id}", 200] }, () => DeleteThemeRequest$, () => __Unit
|
|
1351
|
+
];
|
|
1352
|
+
var ExchangeCodeForToken$ = [9, n0, _ECFT,
|
|
1353
|
+
{ [_h]: ["POST", "/tokens/{provider}", 200] }, () => ExchangeCodeForTokenRequest$, () => ExchangeCodeForTokenResponse$
|
|
1354
|
+
];
|
|
1355
|
+
var ExportComponents$ = [9, n0, _EC,
|
|
1356
|
+
{ [_h]: ["GET", "/export/app/{appId}/environment/{environmentName}/components", 200] }, () => ExportComponentsRequest$, () => ExportComponentsResponse$
|
|
1357
|
+
];
|
|
1358
|
+
var ExportForms$ = [9, n0, _EF,
|
|
1359
|
+
{ [_h]: ["GET", "/export/app/{appId}/environment/{environmentName}/forms", 200] }, () => ExportFormsRequest$, () => ExportFormsResponse$
|
|
1360
|
+
];
|
|
1361
|
+
var ExportThemes$ = [9, n0, _ET,
|
|
1362
|
+
{ [_h]: ["GET", "/export/app/{appId}/environment/{environmentName}/themes", 200] }, () => ExportThemesRequest$, () => ExportThemesResponse$
|
|
1363
|
+
];
|
|
1364
|
+
var GetCodegenJob$ = [9, n0, _GCJ,
|
|
1365
|
+
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/codegen-jobs/{id}", 200] }, () => GetCodegenJobRequest$, () => GetCodegenJobResponse$
|
|
1366
|
+
];
|
|
1367
|
+
var GetComponent$ = [9, n0, _GC,
|
|
1368
|
+
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/components/{id}", 200] }, () => GetComponentRequest$, () => GetComponentResponse$
|
|
1369
|
+
];
|
|
1370
|
+
var GetForm$ = [9, n0, _GF,
|
|
1371
|
+
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/forms/{id}", 200] }, () => GetFormRequest$, () => GetFormResponse$
|
|
1372
|
+
];
|
|
1373
|
+
var GetMetadata$ = [9, n0, _GM,
|
|
1374
|
+
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/metadata", 200] }, () => GetMetadataRequest$, () => GetMetadataResponse$
|
|
1375
|
+
];
|
|
1376
|
+
var GetTheme$ = [9, n0, _GT,
|
|
1377
|
+
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/themes/{id}", 200] }, () => GetThemeRequest$, () => GetThemeResponse$
|
|
1378
|
+
];
|
|
1379
|
+
var ListCodegenJobs$ = [9, n0, _LCJ,
|
|
1380
|
+
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/codegen-jobs", 200] }, () => ListCodegenJobsRequest$, () => ListCodegenJobsResponse$
|
|
1381
|
+
];
|
|
1382
|
+
var ListComponents$ = [9, n0, _LC,
|
|
1383
|
+
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/components", 200] }, () => ListComponentsRequest$, () => ListComponentsResponse$
|
|
1384
|
+
];
|
|
1385
|
+
var ListForms$ = [9, n0, _LF,
|
|
1386
|
+
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/forms", 200] }, () => ListFormsRequest$, () => ListFormsResponse$
|
|
1387
|
+
];
|
|
1388
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1389
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1390
|
+
];
|
|
1391
|
+
var ListThemes$ = [9, n0, _LT,
|
|
1392
|
+
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/themes", 200] }, () => ListThemesRequest$, () => ListThemesResponse$
|
|
1393
|
+
];
|
|
1394
|
+
var PutMetadataFlag$ = [9, n0, _PMF,
|
|
1395
|
+
{ [_h]: ["PUT", "/app/{appId}/environment/{environmentName}/metadata/features/{featureName}", 200] }, () => PutMetadataFlagRequest$, () => __Unit
|
|
1396
|
+
];
|
|
1397
|
+
var RefreshToken$ = [9, n0, _RT,
|
|
1398
|
+
{ [_h]: ["POST", "/tokens/{provider}/refresh", 200] }, () => RefreshTokenRequest$, () => RefreshTokenResponse$
|
|
1399
|
+
];
|
|
1400
|
+
var StartCodegenJob$ = [9, n0, _SCJ,
|
|
1401
|
+
{ [_h]: ["POST", "/app/{appId}/environment/{environmentName}/codegen-jobs", 200] }, () => StartCodegenJobRequest$, () => StartCodegenJobResponse$
|
|
1402
|
+
];
|
|
1403
|
+
var TagResource$ = [9, n0, _TR,
|
|
1404
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1405
|
+
];
|
|
1406
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1407
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1408
|
+
];
|
|
1409
|
+
var UpdateComponent$ = [9, n0, _UC,
|
|
1410
|
+
{ [_h]: ["PATCH", "/app/{appId}/environment/{environmentName}/components/{id}", 200] }, () => UpdateComponentRequest$, () => UpdateComponentResponse$
|
|
1411
|
+
];
|
|
1412
|
+
var UpdateForm$ = [9, n0, _UF,
|
|
1413
|
+
{ [_h]: ["PATCH", "/app/{appId}/environment/{environmentName}/forms/{id}", 200] }, () => UpdateFormRequest$, () => UpdateFormResponse$
|
|
1414
|
+
];
|
|
1415
|
+
var UpdateTheme$ = [9, n0, _UT,
|
|
1416
|
+
{ [_h]: ["PATCH", "/app/{appId}/environment/{environmentName}/themes/{id}", 200] }, () => UpdateThemeRequest$, () => UpdateThemeResponse$
|
|
1417
|
+
];
|
|
1418
|
+
|
|
1419
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1420
|
+
return {
|
|
1421
|
+
apiVersion: "2021-08-11",
|
|
1422
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1423
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1424
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1425
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1426
|
+
extensions: config?.extensions ?? [],
|
|
1427
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAmplifyUIBuilderHttpAuthSchemeProvider,
|
|
1428
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1429
|
+
{
|
|
1430
|
+
schemeId: "aws.auth#sigv4",
|
|
1431
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1432
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1433
|
+
},
|
|
1434
|
+
],
|
|
1435
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1436
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1437
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1438
|
+
defaultNamespace: "com.amazonaws.amplifyuibuilder",
|
|
1439
|
+
errorTypeRegistries,
|
|
1440
|
+
version: "2021-08-11",
|
|
1441
|
+
serviceTarget: "AmplifyUIBuilder",
|
|
1442
|
+
},
|
|
1443
|
+
serviceId: config?.serviceId ?? "AmplifyUIBuilder",
|
|
1444
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1445
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1446
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1447
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1448
|
+
};
|
|
1449
|
+
};
|
|
1450
|
+
|
|
1451
|
+
const getRuntimeConfig = (config) => {
|
|
1452
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1453
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1454
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1455
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1456
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1457
|
+
const loaderConfig = {
|
|
1458
|
+
profile: config?.profile,
|
|
1459
|
+
logger: clientSharedValues.logger,
|
|
1460
|
+
};
|
|
1461
|
+
return {
|
|
1462
|
+
...clientSharedValues,
|
|
1463
|
+
...config,
|
|
1464
|
+
runtime: "node",
|
|
1465
|
+
defaultsMode,
|
|
1466
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1467
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1468
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1469
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1470
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1471
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1472
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1473
|
+
retryMode: config?.retryMode ??
|
|
1474
|
+
loadConfig({
|
|
1475
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1476
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1477
|
+
}, config),
|
|
1478
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1479
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1480
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1481
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1482
|
+
};
|
|
1483
|
+
};
|
|
1484
|
+
|
|
34
1485
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1486
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1487
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -583,51 +2034,214 @@ const LabelDecorator = {
|
|
|
583
2034
|
REQUIRED: "required",
|
|
584
2035
|
};
|
|
585
2036
|
|
|
2037
|
+
exports.ActionParameters$ = ActionParameters$;
|
|
586
2038
|
exports.AmplifyUIBuilder = AmplifyUIBuilder;
|
|
587
2039
|
exports.AmplifyUIBuilderClient = AmplifyUIBuilderClient;
|
|
2040
|
+
exports.AmplifyUIBuilderServiceException = AmplifyUIBuilderServiceException;
|
|
2041
|
+
exports.AmplifyUIBuilderServiceException$ = AmplifyUIBuilderServiceException$;
|
|
2042
|
+
exports.ApiConfiguration$ = ApiConfiguration$;
|
|
2043
|
+
exports.CodegenDependency$ = CodegenDependency$;
|
|
2044
|
+
exports.CodegenFeatureFlags$ = CodegenFeatureFlags$;
|
|
2045
|
+
exports.CodegenGenericDataEnum$ = CodegenGenericDataEnum$;
|
|
2046
|
+
exports.CodegenGenericDataField$ = CodegenGenericDataField$;
|
|
588
2047
|
exports.CodegenGenericDataFieldDataType = CodegenGenericDataFieldDataType;
|
|
2048
|
+
exports.CodegenGenericDataModel$ = CodegenGenericDataModel$;
|
|
2049
|
+
exports.CodegenGenericDataNonModel$ = CodegenGenericDataNonModel$;
|
|
2050
|
+
exports.CodegenGenericDataRelationshipType$ = CodegenGenericDataRelationshipType$;
|
|
2051
|
+
exports.CodegenJob$ = CodegenJob$;
|
|
2052
|
+
exports.CodegenJobAsset$ = CodegenJobAsset$;
|
|
2053
|
+
exports.CodegenJobGenericDataSchema$ = CodegenJobGenericDataSchema$;
|
|
589
2054
|
exports.CodegenJobGenericDataSourceType = CodegenJobGenericDataSourceType;
|
|
2055
|
+
exports.CodegenJobRenderConfig$ = CodegenJobRenderConfig$;
|
|
590
2056
|
exports.CodegenJobStatus = CodegenJobStatus;
|
|
2057
|
+
exports.CodegenJobSummary$ = CodegenJobSummary$;
|
|
2058
|
+
exports.Component$ = Component$;
|
|
2059
|
+
exports.ComponentBindingPropertiesValue$ = ComponentBindingPropertiesValue$;
|
|
2060
|
+
exports.ComponentBindingPropertiesValueProperties$ = ComponentBindingPropertiesValueProperties$;
|
|
2061
|
+
exports.ComponentChild$ = ComponentChild$;
|
|
2062
|
+
exports.ComponentConditionProperty$ = ComponentConditionProperty$;
|
|
2063
|
+
exports.ComponentDataConfiguration$ = ComponentDataConfiguration$;
|
|
2064
|
+
exports.ComponentEvent$ = ComponentEvent$;
|
|
2065
|
+
exports.ComponentProperty$ = ComponentProperty$;
|
|
2066
|
+
exports.ComponentPropertyBindingProperties$ = ComponentPropertyBindingProperties$;
|
|
2067
|
+
exports.ComponentSummary$ = ComponentSummary$;
|
|
2068
|
+
exports.ComponentVariant$ = ComponentVariant$;
|
|
2069
|
+
exports.CreateComponent$ = CreateComponent$;
|
|
591
2070
|
exports.CreateComponentCommand = CreateComponentCommand;
|
|
2071
|
+
exports.CreateComponentData$ = CreateComponentData$;
|
|
2072
|
+
exports.CreateComponentRequest$ = CreateComponentRequest$;
|
|
2073
|
+
exports.CreateComponentResponse$ = CreateComponentResponse$;
|
|
2074
|
+
exports.CreateForm$ = CreateForm$;
|
|
592
2075
|
exports.CreateFormCommand = CreateFormCommand;
|
|
2076
|
+
exports.CreateFormData$ = CreateFormData$;
|
|
2077
|
+
exports.CreateFormRequest$ = CreateFormRequest$;
|
|
2078
|
+
exports.CreateFormResponse$ = CreateFormResponse$;
|
|
2079
|
+
exports.CreateTheme$ = CreateTheme$;
|
|
593
2080
|
exports.CreateThemeCommand = CreateThemeCommand;
|
|
2081
|
+
exports.CreateThemeData$ = CreateThemeData$;
|
|
2082
|
+
exports.CreateThemeRequest$ = CreateThemeRequest$;
|
|
2083
|
+
exports.CreateThemeResponse$ = CreateThemeResponse$;
|
|
2084
|
+
exports.DataStoreRenderConfig$ = DataStoreRenderConfig$;
|
|
2085
|
+
exports.DeleteComponent$ = DeleteComponent$;
|
|
594
2086
|
exports.DeleteComponentCommand = DeleteComponentCommand;
|
|
2087
|
+
exports.DeleteComponentRequest$ = DeleteComponentRequest$;
|
|
2088
|
+
exports.DeleteForm$ = DeleteForm$;
|
|
595
2089
|
exports.DeleteFormCommand = DeleteFormCommand;
|
|
2090
|
+
exports.DeleteFormRequest$ = DeleteFormRequest$;
|
|
2091
|
+
exports.DeleteTheme$ = DeleteTheme$;
|
|
596
2092
|
exports.DeleteThemeCommand = DeleteThemeCommand;
|
|
2093
|
+
exports.DeleteThemeRequest$ = DeleteThemeRequest$;
|
|
2094
|
+
exports.ExchangeCodeForToken$ = ExchangeCodeForToken$;
|
|
597
2095
|
exports.ExchangeCodeForTokenCommand = ExchangeCodeForTokenCommand;
|
|
2096
|
+
exports.ExchangeCodeForTokenRequest$ = ExchangeCodeForTokenRequest$;
|
|
2097
|
+
exports.ExchangeCodeForTokenRequestBody$ = ExchangeCodeForTokenRequestBody$;
|
|
2098
|
+
exports.ExchangeCodeForTokenResponse$ = ExchangeCodeForTokenResponse$;
|
|
2099
|
+
exports.ExportComponents$ = ExportComponents$;
|
|
598
2100
|
exports.ExportComponentsCommand = ExportComponentsCommand;
|
|
2101
|
+
exports.ExportComponentsRequest$ = ExportComponentsRequest$;
|
|
2102
|
+
exports.ExportComponentsResponse$ = ExportComponentsResponse$;
|
|
2103
|
+
exports.ExportForms$ = ExportForms$;
|
|
599
2104
|
exports.ExportFormsCommand = ExportFormsCommand;
|
|
2105
|
+
exports.ExportFormsRequest$ = ExportFormsRequest$;
|
|
2106
|
+
exports.ExportFormsResponse$ = ExportFormsResponse$;
|
|
2107
|
+
exports.ExportThemes$ = ExportThemes$;
|
|
600
2108
|
exports.ExportThemesCommand = ExportThemesCommand;
|
|
2109
|
+
exports.ExportThemesRequest$ = ExportThemesRequest$;
|
|
2110
|
+
exports.ExportThemesResponse$ = ExportThemesResponse$;
|
|
2111
|
+
exports.FieldConfig$ = FieldConfig$;
|
|
2112
|
+
exports.FieldInputConfig$ = FieldInputConfig$;
|
|
2113
|
+
exports.FieldPosition$ = FieldPosition$;
|
|
2114
|
+
exports.FieldValidationConfiguration$ = FieldValidationConfiguration$;
|
|
2115
|
+
exports.FileUploaderFieldConfig$ = FileUploaderFieldConfig$;
|
|
601
2116
|
exports.FixedPosition = FixedPosition;
|
|
2117
|
+
exports.Form$ = Form$;
|
|
602
2118
|
exports.FormActionType = FormActionType;
|
|
2119
|
+
exports.FormBindingElement$ = FormBindingElement$;
|
|
2120
|
+
exports.FormButton$ = FormButton$;
|
|
603
2121
|
exports.FormButtonsPosition = FormButtonsPosition;
|
|
2122
|
+
exports.FormCTA$ = FormCTA$;
|
|
604
2123
|
exports.FormDataSourceType = FormDataSourceType;
|
|
2124
|
+
exports.FormDataTypeConfig$ = FormDataTypeConfig$;
|
|
2125
|
+
exports.FormInputBindingPropertiesValue$ = FormInputBindingPropertiesValue$;
|
|
2126
|
+
exports.FormInputBindingPropertiesValueProperties$ = FormInputBindingPropertiesValueProperties$;
|
|
2127
|
+
exports.FormInputValueProperty$ = FormInputValueProperty$;
|
|
2128
|
+
exports.FormInputValuePropertyBindingProperties$ = FormInputValuePropertyBindingProperties$;
|
|
2129
|
+
exports.FormStyle$ = FormStyle$;
|
|
2130
|
+
exports.FormStyleConfig$ = FormStyleConfig$;
|
|
2131
|
+
exports.FormSummary$ = FormSummary$;
|
|
605
2132
|
exports.GenericDataRelationshipType = GenericDataRelationshipType;
|
|
2133
|
+
exports.GetCodegenJob$ = GetCodegenJob$;
|
|
606
2134
|
exports.GetCodegenJobCommand = GetCodegenJobCommand;
|
|
2135
|
+
exports.GetCodegenJobRequest$ = GetCodegenJobRequest$;
|
|
2136
|
+
exports.GetCodegenJobResponse$ = GetCodegenJobResponse$;
|
|
2137
|
+
exports.GetComponent$ = GetComponent$;
|
|
607
2138
|
exports.GetComponentCommand = GetComponentCommand;
|
|
2139
|
+
exports.GetComponentRequest$ = GetComponentRequest$;
|
|
2140
|
+
exports.GetComponentResponse$ = GetComponentResponse$;
|
|
2141
|
+
exports.GetForm$ = GetForm$;
|
|
608
2142
|
exports.GetFormCommand = GetFormCommand;
|
|
2143
|
+
exports.GetFormRequest$ = GetFormRequest$;
|
|
2144
|
+
exports.GetFormResponse$ = GetFormResponse$;
|
|
2145
|
+
exports.GetMetadata$ = GetMetadata$;
|
|
609
2146
|
exports.GetMetadataCommand = GetMetadataCommand;
|
|
2147
|
+
exports.GetMetadataRequest$ = GetMetadataRequest$;
|
|
2148
|
+
exports.GetMetadataResponse$ = GetMetadataResponse$;
|
|
2149
|
+
exports.GetTheme$ = GetTheme$;
|
|
610
2150
|
exports.GetThemeCommand = GetThemeCommand;
|
|
2151
|
+
exports.GetThemeRequest$ = GetThemeRequest$;
|
|
2152
|
+
exports.GetThemeResponse$ = GetThemeResponse$;
|
|
2153
|
+
exports.GraphQLRenderConfig$ = GraphQLRenderConfig$;
|
|
2154
|
+
exports.InternalServerException = InternalServerException;
|
|
2155
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2156
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
2157
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
611
2158
|
exports.JSModule = JSModule;
|
|
612
2159
|
exports.JSScript = JSScript;
|
|
613
2160
|
exports.JSTarget = JSTarget;
|
|
614
2161
|
exports.LabelDecorator = LabelDecorator;
|
|
2162
|
+
exports.ListCodegenJobs$ = ListCodegenJobs$;
|
|
615
2163
|
exports.ListCodegenJobsCommand = ListCodegenJobsCommand;
|
|
2164
|
+
exports.ListCodegenJobsRequest$ = ListCodegenJobsRequest$;
|
|
2165
|
+
exports.ListCodegenJobsResponse$ = ListCodegenJobsResponse$;
|
|
2166
|
+
exports.ListComponents$ = ListComponents$;
|
|
616
2167
|
exports.ListComponentsCommand = ListComponentsCommand;
|
|
2168
|
+
exports.ListComponentsRequest$ = ListComponentsRequest$;
|
|
2169
|
+
exports.ListComponentsResponse$ = ListComponentsResponse$;
|
|
2170
|
+
exports.ListForms$ = ListForms$;
|
|
617
2171
|
exports.ListFormsCommand = ListFormsCommand;
|
|
2172
|
+
exports.ListFormsRequest$ = ListFormsRequest$;
|
|
2173
|
+
exports.ListFormsResponse$ = ListFormsResponse$;
|
|
2174
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
618
2175
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2176
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2177
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2178
|
+
exports.ListThemes$ = ListThemes$;
|
|
619
2179
|
exports.ListThemesCommand = ListThemesCommand;
|
|
2180
|
+
exports.ListThemesRequest$ = ListThemesRequest$;
|
|
2181
|
+
exports.ListThemesResponse$ = ListThemesResponse$;
|
|
2182
|
+
exports.MutationActionSetStateParameter$ = MutationActionSetStateParameter$;
|
|
2183
|
+
exports.NoApiRenderConfig$ = NoApiRenderConfig$;
|
|
2184
|
+
exports.Predicate$ = Predicate$;
|
|
2185
|
+
exports.PutMetadataFlag$ = PutMetadataFlag$;
|
|
2186
|
+
exports.PutMetadataFlagBody$ = PutMetadataFlagBody$;
|
|
620
2187
|
exports.PutMetadataFlagCommand = PutMetadataFlagCommand;
|
|
2188
|
+
exports.PutMetadataFlagRequest$ = PutMetadataFlagRequest$;
|
|
2189
|
+
exports.ReactStartCodegenJobData$ = ReactStartCodegenJobData$;
|
|
2190
|
+
exports.RefreshToken$ = RefreshToken$;
|
|
621
2191
|
exports.RefreshTokenCommand = RefreshTokenCommand;
|
|
2192
|
+
exports.RefreshTokenRequest$ = RefreshTokenRequest$;
|
|
2193
|
+
exports.RefreshTokenRequestBody$ = RefreshTokenRequestBody$;
|
|
2194
|
+
exports.RefreshTokenResponse$ = RefreshTokenResponse$;
|
|
2195
|
+
exports.ResourceConflictException = ResourceConflictException;
|
|
2196
|
+
exports.ResourceConflictException$ = ResourceConflictException$;
|
|
2197
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2198
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2199
|
+
exports.SectionalElement$ = SectionalElement$;
|
|
2200
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2201
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
622
2202
|
exports.SortDirection = SortDirection;
|
|
2203
|
+
exports.SortProperty$ = SortProperty$;
|
|
2204
|
+
exports.StartCodegenJob$ = StartCodegenJob$;
|
|
623
2205
|
exports.StartCodegenJobCommand = StartCodegenJobCommand;
|
|
2206
|
+
exports.StartCodegenJobData$ = StartCodegenJobData$;
|
|
2207
|
+
exports.StartCodegenJobRequest$ = StartCodegenJobRequest$;
|
|
2208
|
+
exports.StartCodegenJobResponse$ = StartCodegenJobResponse$;
|
|
624
2209
|
exports.StorageAccessLevel = StorageAccessLevel;
|
|
2210
|
+
exports.TagResource$ = TagResource$;
|
|
625
2211
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2212
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2213
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2214
|
+
exports.Theme$ = Theme$;
|
|
2215
|
+
exports.ThemeSummary$ = ThemeSummary$;
|
|
2216
|
+
exports.ThemeValue$ = ThemeValue$;
|
|
2217
|
+
exports.ThemeValues$ = ThemeValues$;
|
|
2218
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2219
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
626
2220
|
exports.TokenProviders = TokenProviders;
|
|
2221
|
+
exports.UnauthorizedException = UnauthorizedException;
|
|
2222
|
+
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
2223
|
+
exports.UntagResource$ = UntagResource$;
|
|
627
2224
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2225
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2226
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2227
|
+
exports.UpdateComponent$ = UpdateComponent$;
|
|
628
2228
|
exports.UpdateComponentCommand = UpdateComponentCommand;
|
|
2229
|
+
exports.UpdateComponentData$ = UpdateComponentData$;
|
|
2230
|
+
exports.UpdateComponentRequest$ = UpdateComponentRequest$;
|
|
2231
|
+
exports.UpdateComponentResponse$ = UpdateComponentResponse$;
|
|
2232
|
+
exports.UpdateForm$ = UpdateForm$;
|
|
629
2233
|
exports.UpdateFormCommand = UpdateFormCommand;
|
|
2234
|
+
exports.UpdateFormData$ = UpdateFormData$;
|
|
2235
|
+
exports.UpdateFormRequest$ = UpdateFormRequest$;
|
|
2236
|
+
exports.UpdateFormResponse$ = UpdateFormResponse$;
|
|
2237
|
+
exports.UpdateTheme$ = UpdateTheme$;
|
|
630
2238
|
exports.UpdateThemeCommand = UpdateThemeCommand;
|
|
2239
|
+
exports.UpdateThemeData$ = UpdateThemeData$;
|
|
2240
|
+
exports.UpdateThemeRequest$ = UpdateThemeRequest$;
|
|
2241
|
+
exports.UpdateThemeResponse$ = UpdateThemeResponse$;
|
|
2242
|
+
exports.ValueMapping$ = ValueMapping$;
|
|
2243
|
+
exports.ValueMappings$ = ValueMappings$;
|
|
2244
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
631
2245
|
exports.paginateExportComponents = paginateExportComponents;
|
|
632
2246
|
exports.paginateExportForms = paginateExportForms;
|
|
633
2247
|
exports.paginateExportThemes = paginateExportThemes;
|