@aws-sdk/client-amplifyuibuilder 3.987.0 → 3.988.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 +47 -1470
- package/dist-cjs/models/AmplifyUIBuilderServiceException.js +12 -0
- package/dist-cjs/models/errors.js +95 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1218 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +91 -85
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var AmplifyUIBuilderServiceException = require('./models/AmplifyUIBuilderServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1286 +113,6 @@ class AmplifyUIBuilderClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class AmplifyUIBuilderServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, AmplifyUIBuilderServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class InternalServerException extends AmplifyUIBuilderServiceException {
|
|
121
|
-
name = "InternalServerException";
|
|
122
|
-
$fault = "server";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "InternalServerException",
|
|
126
|
-
$fault: "server",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InvalidParameterException extends AmplifyUIBuilderServiceException {
|
|
133
|
-
name = "InvalidParameterException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InvalidParameterException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ResourceNotFoundException extends AmplifyUIBuilderServiceException {
|
|
145
|
-
name = "ResourceNotFoundException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ResourceNotFoundException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ThrottlingException extends AmplifyUIBuilderServiceException {
|
|
157
|
-
name = "ThrottlingException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ThrottlingException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class ResourceConflictException extends AmplifyUIBuilderServiceException {
|
|
169
|
-
name = "ResourceConflictException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "ResourceConflictException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, ResourceConflictException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class ServiceQuotaExceededException extends AmplifyUIBuilderServiceException {
|
|
181
|
-
name = "ServiceQuotaExceededException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "ServiceQuotaExceededException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class UnauthorizedException extends AmplifyUIBuilderServiceException {
|
|
193
|
-
name = "UnauthorizedException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "UnauthorizedException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
const _AC = "ApiConfiguration";
|
|
206
|
-
const _AP = "ActionParameters";
|
|
207
|
-
const _C = "Component";
|
|
208
|
-
const _CBP = "ComponentBindingProperties";
|
|
209
|
-
const _CBPV = "ComponentBindingPropertiesValue";
|
|
210
|
-
const _CBPVP = "ComponentBindingPropertiesValueProperties";
|
|
211
|
-
const _CC = "ComponentChild";
|
|
212
|
-
const _CCD = "CreateComponentData";
|
|
213
|
-
const _CCL = "ComponentChildList";
|
|
214
|
-
const _CCP = "ComponentConditionProperty";
|
|
215
|
-
const _CCPo = "ComponentCollectionProperties";
|
|
216
|
-
const _CCR = "CreateComponentRequest";
|
|
217
|
-
const _CCRr = "CreateComponentResponse";
|
|
218
|
-
const _CCr = "CreateComponent";
|
|
219
|
-
const _CD = "CodegenDependency";
|
|
220
|
-
const _CDC = "ComponentDataConfiguration";
|
|
221
|
-
const _CDo = "CodegenDependencies";
|
|
222
|
-
const _CE = "ComponentEvent";
|
|
223
|
-
const _CEo = "ComponentEvents";
|
|
224
|
-
const _CF = "CreateForm";
|
|
225
|
-
const _CFD = "CreateFormData";
|
|
226
|
-
const _CFF = "CodegenFeatureFlags";
|
|
227
|
-
const _CFR = "CreateFormRequest";
|
|
228
|
-
const _CFRr = "CreateFormResponse";
|
|
229
|
-
const _CGDE = "CodegenGenericDataEnum";
|
|
230
|
-
const _CGDEo = "CodegenGenericDataEnums";
|
|
231
|
-
const _CGDF = "CodegenGenericDataField";
|
|
232
|
-
const _CGDFo = "CodegenGenericDataFields";
|
|
233
|
-
const _CGDM = "CodegenGenericDataModel";
|
|
234
|
-
const _CGDMo = "CodegenGenericDataModels";
|
|
235
|
-
const _CGDNM = "CodegenGenericDataNonModel";
|
|
236
|
-
const _CGDNMF = "CodegenGenericDataNonModelFields";
|
|
237
|
-
const _CGDNMo = "CodegenGenericDataNonModels";
|
|
238
|
-
const _CGDRT = "CodegenGenericDataRelationshipType";
|
|
239
|
-
const _CJ = "CodegenJob";
|
|
240
|
-
const _CJA = "CodegenJobAsset";
|
|
241
|
-
const _CJGDS = "CodegenJobGenericDataSchema";
|
|
242
|
-
const _CJRC = "CodegenJobRenderConfig";
|
|
243
|
-
const _CJS = "CodegenJobSummary";
|
|
244
|
-
const _CJSL = "CodegenJobSummaryList";
|
|
245
|
-
const _CL = "ComponentList";
|
|
246
|
-
const _CO = "ComponentOverrides";
|
|
247
|
-
const _CP = "ComponentProperty";
|
|
248
|
-
const _CPBP = "ComponentPropertyBindingProperties";
|
|
249
|
-
const _CPL = "ComponentPropertyList";
|
|
250
|
-
const _CPo = "ComponentProperties";
|
|
251
|
-
const _CS = "ComponentSummary";
|
|
252
|
-
const _CSL = "ComponentSummaryList";
|
|
253
|
-
const _CT = "CreateTheme";
|
|
254
|
-
const _CTD = "CreateThemeData";
|
|
255
|
-
const _CTR = "CreateThemeRequest";
|
|
256
|
-
const _CTRr = "CreateThemeResponse";
|
|
257
|
-
const _CV = "ComponentVariant";
|
|
258
|
-
const _CVo = "ComponentVariants";
|
|
259
|
-
const _DC = "DeleteComponent";
|
|
260
|
-
const _DCR = "DeleteComponentRequest";
|
|
261
|
-
const _DF = "DeleteForm";
|
|
262
|
-
const _DFR = "DeleteFormRequest";
|
|
263
|
-
const _DSRC = "DataStoreRenderConfig";
|
|
264
|
-
const _DT = "DeleteTheme";
|
|
265
|
-
const _DTR = "DeleteThemeRequest";
|
|
266
|
-
const _EC = "ExportComponents";
|
|
267
|
-
const _ECFT = "ExchangeCodeForToken";
|
|
268
|
-
const _ECFTR = "ExchangeCodeForTokenRequest";
|
|
269
|
-
const _ECFTRB = "ExchangeCodeForTokenRequestBody";
|
|
270
|
-
const _ECFTRx = "ExchangeCodeForTokenResponse";
|
|
271
|
-
const _ECR = "ExportComponentsRequest";
|
|
272
|
-
const _ECRx = "ExportComponentsResponse";
|
|
273
|
-
const _EF = "ExportForms";
|
|
274
|
-
const _EFR = "ExportFormsRequest";
|
|
275
|
-
const _EFRx = "ExportFormsResponse";
|
|
276
|
-
const _ET = "ExportThemes";
|
|
277
|
-
const _ETR = "ExportThemesRequest";
|
|
278
|
-
const _ETRx = "ExportThemesResponse";
|
|
279
|
-
const _F = "Form";
|
|
280
|
-
const _FB = "FormButton";
|
|
281
|
-
const _FBE = "FormBindingElement";
|
|
282
|
-
const _FBo = "FormBindings";
|
|
283
|
-
const _FC = "FieldConfig";
|
|
284
|
-
const _FCTA = "FormCTA";
|
|
285
|
-
const _FDTC = "FormDataTypeConfig";
|
|
286
|
-
const _FIBP = "FormInputBindingProperties";
|
|
287
|
-
const _FIBPV = "FormInputBindingPropertiesValue";
|
|
288
|
-
const _FIBPVP = "FormInputBindingPropertiesValueProperties";
|
|
289
|
-
const _FIC = "FieldInputConfig";
|
|
290
|
-
const _FIVP = "FormInputValueProperty";
|
|
291
|
-
const _FIVPBP = "FormInputValuePropertyBindingProperties";
|
|
292
|
-
const _FIVPL = "FormInputValuePropertyList";
|
|
293
|
-
const _FL = "FormList";
|
|
294
|
-
const _FM = "FieldsMap";
|
|
295
|
-
const _FP = "FieldPosition";
|
|
296
|
-
const _FS = "FormStyle";
|
|
297
|
-
const _FSC = "FormStyleConfig";
|
|
298
|
-
const _FSL = "FormSummaryList";
|
|
299
|
-
const _FSo = "FormSummary";
|
|
300
|
-
const _FUFC = "FileUploaderFieldConfig";
|
|
301
|
-
const _FVC = "FieldValidationConfiguration";
|
|
302
|
-
const _GC = "GetComponent";
|
|
303
|
-
const _GCJ = "GetCodegenJob";
|
|
304
|
-
const _GCJR = "GetCodegenJobRequest";
|
|
305
|
-
const _GCJRe = "GetCodegenJobResponse";
|
|
306
|
-
const _GCR = "GetComponentRequest";
|
|
307
|
-
const _GCRe = "GetComponentResponse";
|
|
308
|
-
const _GF = "GetForm";
|
|
309
|
-
const _GFR = "GetFormRequest";
|
|
310
|
-
const _GFRe = "GetFormResponse";
|
|
311
|
-
const _GM = "GetMetadata";
|
|
312
|
-
const _GMR = "GetMetadataRequest";
|
|
313
|
-
const _GMRe = "GetMetadataResponse";
|
|
314
|
-
const _GQLRC = "GraphQLRenderConfig";
|
|
315
|
-
const _GT = "GetTheme";
|
|
316
|
-
const _GTR = "GetThemeRequest";
|
|
317
|
-
const _GTRe = "GetThemeResponse";
|
|
318
|
-
const _IPE = "InvalidParameterException";
|
|
319
|
-
const _ISE = "InternalServerException";
|
|
320
|
-
const _LC = "ListComponents";
|
|
321
|
-
const _LCJ = "ListCodegenJobs";
|
|
322
|
-
const _LCJR = "ListCodegenJobsRequest";
|
|
323
|
-
const _LCJRi = "ListCodegenJobsResponse";
|
|
324
|
-
const _LCR = "ListComponentsRequest";
|
|
325
|
-
const _LCRi = "ListComponentsResponse";
|
|
326
|
-
const _LF = "ListForms";
|
|
327
|
-
const _LFR = "ListFormsRequest";
|
|
328
|
-
const _LFRi = "ListFormsResponse";
|
|
329
|
-
const _LT = "ListThemes";
|
|
330
|
-
const _LTFR = "ListTagsForResource";
|
|
331
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
332
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
333
|
-
const _LTR = "ListThemesRequest";
|
|
334
|
-
const _LTRi = "ListThemesResponse";
|
|
335
|
-
const _MASSP = "MutationActionSetStateParameter";
|
|
336
|
-
const _NARC = "NoApiRenderConfig";
|
|
337
|
-
const _P = "Predicate";
|
|
338
|
-
const _PL = "PredicateList";
|
|
339
|
-
const _PMF = "PutMetadataFlag";
|
|
340
|
-
const _PMFB = "PutMetadataFlagBody";
|
|
341
|
-
const _PMFR = "PutMetadataFlagRequest";
|
|
342
|
-
const _RCE = "ResourceConflictException";
|
|
343
|
-
const _RNFE = "ResourceNotFoundException";
|
|
344
|
-
const _RSCJD = "ReactStartCodegenJobData";
|
|
345
|
-
const _RT = "RefreshToken";
|
|
346
|
-
const _RTR = "RefreshTokenRequest";
|
|
347
|
-
const _RTRB = "RefreshTokenRequestBody";
|
|
348
|
-
const _RTRe = "RefreshTokenResponse";
|
|
349
|
-
const _SCJ = "StartCodegenJob";
|
|
350
|
-
const _SCJD = "StartCodegenJobData";
|
|
351
|
-
const _SCJR = "StartCodegenJobRequest";
|
|
352
|
-
const _SCJRt = "StartCodegenJobResponse";
|
|
353
|
-
const _SE = "SectionalElement";
|
|
354
|
-
const _SEM = "SectionalElementMap";
|
|
355
|
-
const _SP = "SortProperty";
|
|
356
|
-
const _SPL = "SortPropertyList";
|
|
357
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
358
|
-
const _SS = "SensitiveString";
|
|
359
|
-
const _T = "Theme";
|
|
360
|
-
const _TE = "ThrottlingException";
|
|
361
|
-
const _TL = "ThemeList";
|
|
362
|
-
const _TR = "TagResource";
|
|
363
|
-
const _TRR = "TagResourceRequest";
|
|
364
|
-
const _TRRa = "TagResourceResponse";
|
|
365
|
-
const _TS = "ThemeSummary";
|
|
366
|
-
const _TSL = "ThemeSummaryList";
|
|
367
|
-
const _TV = "ThemeValue";
|
|
368
|
-
const _TVL = "ThemeValuesList";
|
|
369
|
-
const _TVh = "ThemeValues";
|
|
370
|
-
const _UC = "UpdateComponent";
|
|
371
|
-
const _UCD = "UpdateComponentData";
|
|
372
|
-
const _UCR = "UpdateComponentRequest";
|
|
373
|
-
const _UCRp = "UpdateComponentResponse";
|
|
374
|
-
const _UE = "UnauthorizedException";
|
|
375
|
-
const _UF = "UpdateForm";
|
|
376
|
-
const _UFD = "UpdateFormData";
|
|
377
|
-
const _UFR = "UpdateFormRequest";
|
|
378
|
-
const _UFRp = "UpdateFormResponse";
|
|
379
|
-
const _UR = "UntagResource";
|
|
380
|
-
const _URR = "UntagResourceRequest";
|
|
381
|
-
const _URRn = "UntagResourceResponse";
|
|
382
|
-
const _UT = "UpdateTheme";
|
|
383
|
-
const _UTD = "UpdateThemeData";
|
|
384
|
-
const _UTR = "UpdateThemeRequest";
|
|
385
|
-
const _UTRp = "UpdateThemeResponse";
|
|
386
|
-
const _VL = "ValidationsList";
|
|
387
|
-
const _VM = "ValueMapping";
|
|
388
|
-
const _VML = "ValueMappingList";
|
|
389
|
-
const _VMa = "ValueMappings";
|
|
390
|
-
const _a = "anchor";
|
|
391
|
-
const _aC = "apiConfiguration";
|
|
392
|
-
const _aF = "associatedFields";
|
|
393
|
-
const _aFT = "acceptedFileTypes";
|
|
394
|
-
const _aGF = "autoGenerateForms";
|
|
395
|
-
const _aI = "appId";
|
|
396
|
-
const _aL = "accessLevel";
|
|
397
|
-
const _aT = "accessToken";
|
|
398
|
-
const _ac = "action";
|
|
399
|
-
const _an = "and";
|
|
400
|
-
const _as = "asset";
|
|
401
|
-
const _b = "bucket";
|
|
402
|
-
const _bE = "bindingEvent";
|
|
403
|
-
const _bP = "bindingProperties";
|
|
404
|
-
const _bTFORM = "belongsToFieldOnRelatedModel";
|
|
405
|
-
const _be = "below";
|
|
406
|
-
const _bi = "bindings";
|
|
407
|
-
const _bo = "body";
|
|
408
|
-
const _c = "children";
|
|
409
|
-
const _cA = "createdAt";
|
|
410
|
-
const _cBP = "collectionBindingProperties";
|
|
411
|
-
const _cI = "clientId";
|
|
412
|
-
const _cJTC = "codegenJobToCreate";
|
|
413
|
-
const _cN = "componentName";
|
|
414
|
-
const _cP = "collectionProperties";
|
|
415
|
-
const _cT = "componentType";
|
|
416
|
-
const _cTC = "componentToCreate";
|
|
417
|
-
const _cTl = "clientToken";
|
|
418
|
-
const _cUAM = "canUnlinkAssociatedModel";
|
|
419
|
-
const _ca = "cancel";
|
|
420
|
-
const _cl = "clear";
|
|
421
|
-
const _cli = "client";
|
|
422
|
-
const _co = "concat";
|
|
423
|
-
const _cod = "code";
|
|
424
|
-
const _com = "component";
|
|
425
|
-
const _con = "condition";
|
|
426
|
-
const _conf = "configured";
|
|
427
|
-
const _ct = "cta";
|
|
428
|
-
const _d = "dependencies";
|
|
429
|
-
const _dC = "defaultChecked";
|
|
430
|
-
const _dCC = "defaultCountryCode";
|
|
431
|
-
const _dSC = "dataStoreConfig";
|
|
432
|
-
const _dST = "dataSourceType";
|
|
433
|
-
const _dT = "dataType";
|
|
434
|
-
const _dTN = "dataTypeName";
|
|
435
|
-
const _dTV = "dataTypeValue";
|
|
436
|
-
const _dTe = "descriptiveText";
|
|
437
|
-
const _dU = "downloadUrl";
|
|
438
|
-
const _dV = "defaultValue";
|
|
439
|
-
const _dVi = "displayValue";
|
|
440
|
-
const _di = "direction";
|
|
441
|
-
const _e = "enums";
|
|
442
|
-
const _eI = "expiresIn";
|
|
443
|
-
const _eN = "environmentName";
|
|
444
|
-
const _el = "else";
|
|
445
|
-
const _ele = "element";
|
|
446
|
-
const _en = "entity";
|
|
447
|
-
const _ent = "entities";
|
|
448
|
-
const _er = "error";
|
|
449
|
-
const _ev = "events";
|
|
450
|
-
const _eve = "event";
|
|
451
|
-
const _ex = "excluded";
|
|
452
|
-
const _f = "fields";
|
|
453
|
-
const _fAT = "formActionType";
|
|
454
|
-
const _fFP = "fragmentsFilePath";
|
|
455
|
-
const _fN = "featureName";
|
|
456
|
-
const _fTC = "formToCreate";
|
|
457
|
-
const _fUC = "fileUploaderConfig";
|
|
458
|
-
const _fe = "features";
|
|
459
|
-
const _fi = "field";
|
|
460
|
-
const _fix = "fixed";
|
|
461
|
-
const _fo = "form";
|
|
462
|
-
const _g = "global";
|
|
463
|
-
const _gDS = "genericDataSchema";
|
|
464
|
-
const _gQLC = "graphQLConfig";
|
|
465
|
-
const _h = "http";
|
|
466
|
-
const _hE = "httpError";
|
|
467
|
-
const _hG = "horizontalGap";
|
|
468
|
-
const _hQ = "httpQuery";
|
|
469
|
-
const _i = "id";
|
|
470
|
-
const _iA = "isArray";
|
|
471
|
-
const _iHMI = "isHasManyIndex";
|
|
472
|
-
const _iJT = "isJoinTable";
|
|
473
|
-
const _iNMS = "isNonModelSupported";
|
|
474
|
-
const _iR = "isResumable";
|
|
475
|
-
const _iRS = "isRelationshipSupported";
|
|
476
|
-
const _iSM = "inlineSourceMap";
|
|
477
|
-
const _iSV = "isSemVer";
|
|
478
|
-
const _iT = "idempotencyToken";
|
|
479
|
-
const _iTn = "inputType";
|
|
480
|
-
const _iV = "importedValue";
|
|
481
|
-
const _id = "identifiers";
|
|
482
|
-
const _j = "job";
|
|
483
|
-
const _k = "key";
|
|
484
|
-
const _l = "label";
|
|
485
|
-
const _lD = "labelDecorator";
|
|
486
|
-
const _le = "level";
|
|
487
|
-
const _m = "model";
|
|
488
|
-
const _mA = "modifiedAt";
|
|
489
|
-
const _mFC = "maxFileCount";
|
|
490
|
-
const _mFP = "mutationsFilePath";
|
|
491
|
-
const _mR = "maxResults";
|
|
492
|
-
const _mS = "maxSize";
|
|
493
|
-
const _mV = "minValue";
|
|
494
|
-
const _mVa = "maxValue";
|
|
495
|
-
const _me = "message";
|
|
496
|
-
const _mo = "models";
|
|
497
|
-
const _mod = "module";
|
|
498
|
-
const _n = "name";
|
|
499
|
-
const _nAC = "noApiConfig";
|
|
500
|
-
const _nM = "nonModels";
|
|
501
|
-
const _nT = "nextToken";
|
|
502
|
-
const _nV = "numValues";
|
|
503
|
-
const _nVe = "newValue";
|
|
504
|
-
const _o = "overrides";
|
|
505
|
-
const _oP = "outerPadding";
|
|
506
|
-
const _oT = "operandType";
|
|
507
|
-
const _op = "operator";
|
|
508
|
-
const _ope = "operand";
|
|
509
|
-
const _or = "or";
|
|
510
|
-
const _ori = "orientation";
|
|
511
|
-
const _p = "properties";
|
|
512
|
-
const _pK = "primaryKeys";
|
|
513
|
-
const _pa = "parameters";
|
|
514
|
-
const _pl = "placeholder";
|
|
515
|
-
const _po = "position";
|
|
516
|
-
const _pr = "predicates";
|
|
517
|
-
const _pre = "predicate";
|
|
518
|
-
const _pro = "property";
|
|
519
|
-
const _prov = "provider";
|
|
520
|
-
const _qFP = "queriesFilePath";
|
|
521
|
-
const _r = "reason";
|
|
522
|
-
const _rA = "resourceArn";
|
|
523
|
-
const _rC = "renderConfig";
|
|
524
|
-
const _rJFN = "relatedJoinFieldName";
|
|
525
|
-
const _rJTN = "relatedJoinTableName";
|
|
526
|
-
const _rMF = "relatedModelFields";
|
|
527
|
-
const _rMN = "relatedModelName";
|
|
528
|
-
const _rO = "readOnly";
|
|
529
|
-
const _rOi = "rightOf";
|
|
530
|
-
const _rT = "refreshToken";
|
|
531
|
-
const _rTB = "refreshTokenBody";
|
|
532
|
-
const _rTD = "renderTypeDeclarations";
|
|
533
|
-
const _rU = "redirectUri";
|
|
534
|
-
const _re = "required";
|
|
535
|
-
const _rea = "react";
|
|
536
|
-
const _rel = "relationship";
|
|
537
|
-
const _req = "request";
|
|
538
|
-
const _s = "state";
|
|
539
|
-
const _sE = "sectionalElements";
|
|
540
|
-
const _sFP = "subscriptionsFilePath";
|
|
541
|
-
const _sI = "sourceId";
|
|
542
|
-
const _sM = "statusMessage";
|
|
543
|
-
const _sN = "slotName";
|
|
544
|
-
const _sT = "showThumbnails";
|
|
545
|
-
const _sV = "supportedVersion";
|
|
546
|
-
const _sVc = "schemaVersion";
|
|
547
|
-
const _sVt = "strValues";
|
|
548
|
-
const _sc = "script";
|
|
549
|
-
const _se = "server";
|
|
550
|
-
const _set = "set";
|
|
551
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.amplifyuibuilder";
|
|
552
|
-
const _so = "sort";
|
|
553
|
-
const _st = "status";
|
|
554
|
-
const _ste = "step";
|
|
555
|
-
const _sty = "style";
|
|
556
|
-
const _su = "submit";
|
|
557
|
-
const _t = "type";
|
|
558
|
-
const _tFP = "typesFilePath";
|
|
559
|
-
const _tK = "tagKeys";
|
|
560
|
-
const _tR = "tokenReference";
|
|
561
|
-
const _tTC = "themeToCreate";
|
|
562
|
-
const _ta = "target";
|
|
563
|
-
const _tag = "tags";
|
|
564
|
-
const _te = "text";
|
|
565
|
-
const _th = "then";
|
|
566
|
-
const _the = "theme";
|
|
567
|
-
const _to = "token";
|
|
568
|
-
const _u = "url";
|
|
569
|
-
const _uA = "userAttribute";
|
|
570
|
-
const _uC = "updatedComponent";
|
|
571
|
-
const _uF = "updatedForm";
|
|
572
|
-
const _uT = "updatedTheme";
|
|
573
|
-
const _v = "values";
|
|
574
|
-
const _vG = "verticalGap";
|
|
575
|
-
const _vM = "valueMappings";
|
|
576
|
-
const _vMa = "validationMessage";
|
|
577
|
-
const _vV = "variantValues";
|
|
578
|
-
const _va = "variants";
|
|
579
|
-
const _val = "value";
|
|
580
|
-
const _vali = "validations";
|
|
581
|
-
const n0 = "com.amazonaws.amplifyuibuilder";
|
|
582
|
-
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
583
|
-
var ActionParameters$ = [3, n0, _AP,
|
|
584
|
-
0,
|
|
585
|
-
[_t, _u, _a, _ta, _g, _m, _i, _f, _s],
|
|
586
|
-
[() => ComponentProperty$, () => ComponentProperty$, () => ComponentProperty$, () => ComponentProperty$, () => ComponentProperty$, 0, () => ComponentProperty$, () => ComponentProperties, () => MutationActionSetStateParameter$]
|
|
587
|
-
];
|
|
588
|
-
var CodegenDependency$ = [3, n0, _CD,
|
|
589
|
-
0,
|
|
590
|
-
[_n, _sV, _iSV, _r],
|
|
591
|
-
[0, 0, 2, 0]
|
|
592
|
-
];
|
|
593
|
-
var CodegenFeatureFlags$ = [3, n0, _CFF,
|
|
594
|
-
0,
|
|
595
|
-
[_iRS, _iNMS],
|
|
596
|
-
[2, 2]
|
|
597
|
-
];
|
|
598
|
-
var CodegenGenericDataEnum$ = [3, n0, _CGDE,
|
|
599
|
-
0,
|
|
600
|
-
[_v],
|
|
601
|
-
[64 | 0], 1
|
|
602
|
-
];
|
|
603
|
-
var CodegenGenericDataField$ = [3, n0, _CGDF,
|
|
604
|
-
0,
|
|
605
|
-
[_dT, _dTV, _re, _rO, _iA, _rel],
|
|
606
|
-
[0, 0, 2, 2, 2, () => CodegenGenericDataRelationshipType$], 5
|
|
607
|
-
];
|
|
608
|
-
var CodegenGenericDataModel$ = [3, n0, _CGDM,
|
|
609
|
-
0,
|
|
610
|
-
[_f, _pK, _iJT],
|
|
611
|
-
[() => CodegenGenericDataFields, 64 | 0, 2], 2
|
|
612
|
-
];
|
|
613
|
-
var CodegenGenericDataNonModel$ = [3, n0, _CGDNM,
|
|
614
|
-
0,
|
|
615
|
-
[_f],
|
|
616
|
-
[() => CodegenGenericDataNonModelFields], 1
|
|
617
|
-
];
|
|
618
|
-
var CodegenGenericDataRelationshipType$ = [3, n0, _CGDRT,
|
|
619
|
-
0,
|
|
620
|
-
[_t, _rMN, _rMF, _cUAM, _rJFN, _rJTN, _bTFORM, _aF, _iHMI],
|
|
621
|
-
[0, 0, 64 | 0, 2, 0, 0, 0, 64 | 0, 2], 2
|
|
622
|
-
];
|
|
623
|
-
var CodegenJob$ = [3, n0, _CJ,
|
|
624
|
-
0,
|
|
625
|
-
[_i, _aI, _eN, _rC, _gDS, _aGF, _fe, _st, _sM, _as, _tag, _cA, _mA, _d],
|
|
626
|
-
[0, 0, 0, () => CodegenJobRenderConfig$, () => CodegenJobGenericDataSchema$, 2, () => CodegenFeatureFlags$, 0, 0, () => CodegenJobAsset$, 128 | 0, 5, 5, () => CodegenDependencies], 3
|
|
627
|
-
];
|
|
628
|
-
var CodegenJobAsset$ = [3, n0, _CJA,
|
|
629
|
-
0,
|
|
630
|
-
[_dU],
|
|
631
|
-
[0]
|
|
632
|
-
];
|
|
633
|
-
var CodegenJobGenericDataSchema$ = [3, n0, _CJGDS,
|
|
634
|
-
0,
|
|
635
|
-
[_dST, _mo, _e, _nM],
|
|
636
|
-
[0, () => CodegenGenericDataModels, () => CodegenGenericDataEnums, () => CodegenGenericDataNonModels], 4
|
|
637
|
-
];
|
|
638
|
-
var CodegenJobSummary$ = [3, n0, _CJS,
|
|
639
|
-
0,
|
|
640
|
-
[_aI, _eN, _i, _cA, _mA],
|
|
641
|
-
[0, 0, 0, 5, 5], 3
|
|
642
|
-
];
|
|
643
|
-
var Component$ = [3, n0, _C,
|
|
644
|
-
0,
|
|
645
|
-
[_aI, _eN, _i, _n, _cT, _p, _va, _o, _bP, _cA, _sI, _c, _cP, _mA, _tag, _ev, _sVc],
|
|
646
|
-
[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
|
|
647
|
-
];
|
|
648
|
-
var ComponentBindingPropertiesValue$ = [3, n0, _CBPV,
|
|
649
|
-
0,
|
|
650
|
-
[_t, _bP, _dV],
|
|
651
|
-
[0, () => ComponentBindingPropertiesValueProperties$, 0]
|
|
652
|
-
];
|
|
653
|
-
var ComponentBindingPropertiesValueProperties$ = [3, n0, _CBPVP,
|
|
654
|
-
0,
|
|
655
|
-
[_m, _fi, _pr, _uA, _b, _k, _dV, _sN],
|
|
656
|
-
[0, 0, () => PredicateList, 0, 0, 0, 0, 0]
|
|
657
|
-
];
|
|
658
|
-
var ComponentChild$ = [3, n0, _CC,
|
|
659
|
-
0,
|
|
660
|
-
[_cT, _n, _p, _c, _ev, _sI],
|
|
661
|
-
[0, 0, () => ComponentProperties, () => ComponentChildList, () => ComponentEvents, 0], 3
|
|
662
|
-
];
|
|
663
|
-
var ComponentConditionProperty$ = [3, n0, _CCP,
|
|
664
|
-
0,
|
|
665
|
-
[_pro, _fi, _op, _ope, _th, _el, _oT],
|
|
666
|
-
[0, 0, 0, 0, () => ComponentProperty$, () => ComponentProperty$, 0]
|
|
667
|
-
];
|
|
668
|
-
var ComponentDataConfiguration$ = [3, n0, _CDC,
|
|
669
|
-
0,
|
|
670
|
-
[_m, _so, _pre, _id],
|
|
671
|
-
[0, () => SortPropertyList, () => Predicate$, 64 | 0], 1
|
|
672
|
-
];
|
|
673
|
-
var ComponentEvent$ = [3, n0, _CE,
|
|
674
|
-
0,
|
|
675
|
-
[_ac, _pa, _bE],
|
|
676
|
-
[0, () => ActionParameters$, 0]
|
|
677
|
-
];
|
|
678
|
-
var ComponentProperty$ = [3, n0, _CP,
|
|
679
|
-
0,
|
|
680
|
-
[_val, _bP, _cBP, _dV, _m, _bi, _eve, _uA, _co, _con, _conf, _t, _iV, _cN, _pro],
|
|
681
|
-
[0, () => ComponentPropertyBindingProperties$, () => ComponentPropertyBindingProperties$, 0, 0, () => FormBindings, 0, 0, () => ComponentPropertyList, () => ComponentConditionProperty$, 2, 0, 0, 0, 0]
|
|
682
|
-
];
|
|
683
|
-
var ComponentPropertyBindingProperties$ = [3, n0, _CPBP,
|
|
684
|
-
0,
|
|
685
|
-
[_pro, _fi],
|
|
686
|
-
[0, 0], 1
|
|
687
|
-
];
|
|
688
|
-
var ComponentSummary$ = [3, n0, _CS,
|
|
689
|
-
0,
|
|
690
|
-
[_aI, _eN, _i, _n, _cT],
|
|
691
|
-
[0, 0, 0, 0, 0], 5
|
|
692
|
-
];
|
|
693
|
-
var ComponentVariant$ = [3, n0, _CV,
|
|
694
|
-
0,
|
|
695
|
-
[_vV, _o],
|
|
696
|
-
[128 | 0, [2, n0, _CO, 0, 0, 128 | 0]]
|
|
697
|
-
];
|
|
698
|
-
var CreateComponentData$ = [3, n0, _CCD,
|
|
699
|
-
0,
|
|
700
|
-
[_n, _cT, _p, _va, _o, _bP, _sI, _c, _cP, _tag, _ev, _sVc],
|
|
701
|
-
[0, 0, () => ComponentProperties, () => ComponentVariants, [2, n0, _CO, 0, 0, 128 | 0], () => ComponentBindingProperties, 0, () => ComponentChildList, () => ComponentCollectionProperties, 128 | 0, () => ComponentEvents, 0], 6
|
|
702
|
-
];
|
|
703
|
-
var CreateComponentRequest$ = [3, n0, _CCR,
|
|
704
|
-
0,
|
|
705
|
-
[_aI, _eN, _cTC, _cTl],
|
|
706
|
-
[[0, 1], [0, 1], [() => CreateComponentData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 3
|
|
707
|
-
];
|
|
708
|
-
var CreateComponentResponse$ = [3, n0, _CCRr,
|
|
709
|
-
0,
|
|
710
|
-
[_en],
|
|
711
|
-
[[() => Component$, 16]]
|
|
712
|
-
];
|
|
713
|
-
var CreateFormData$ = [3, n0, _CFD,
|
|
714
|
-
0,
|
|
715
|
-
[_n, _dT, _fAT, _f, _sty, _sE, _sVc, _ct, _tag, _lD],
|
|
716
|
-
[0, () => FormDataTypeConfig$, 0, () => FieldsMap, () => FormStyle$, () => SectionalElementMap, 0, () => FormCTA$, 128 | 0, 0], 7
|
|
717
|
-
];
|
|
718
|
-
var CreateFormRequest$ = [3, n0, _CFR,
|
|
719
|
-
0,
|
|
720
|
-
[_aI, _eN, _fTC, _cTl],
|
|
721
|
-
[[0, 1], [0, 1], [() => CreateFormData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 3
|
|
722
|
-
];
|
|
723
|
-
var CreateFormResponse$ = [3, n0, _CFRr,
|
|
724
|
-
0,
|
|
725
|
-
[_en],
|
|
726
|
-
[[() => Form$, 16]]
|
|
727
|
-
];
|
|
728
|
-
var CreateThemeData$ = [3, n0, _CTD,
|
|
729
|
-
0,
|
|
730
|
-
[_n, _v, _o, _tag],
|
|
731
|
-
[0, () => ThemeValuesList, () => ThemeValuesList, 128 | 0], 2
|
|
732
|
-
];
|
|
733
|
-
var CreateThemeRequest$ = [3, n0, _CTR,
|
|
734
|
-
0,
|
|
735
|
-
[_aI, _eN, _tTC, _cTl],
|
|
736
|
-
[[0, 1], [0, 1], [() => CreateThemeData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 3
|
|
737
|
-
];
|
|
738
|
-
var CreateThemeResponse$ = [3, n0, _CTRr,
|
|
739
|
-
0,
|
|
740
|
-
[_en],
|
|
741
|
-
[[() => Theme$, 16]]
|
|
742
|
-
];
|
|
743
|
-
var DataStoreRenderConfig$ = [3, n0, _DSRC,
|
|
744
|
-
0,
|
|
745
|
-
[],
|
|
746
|
-
[]
|
|
747
|
-
];
|
|
748
|
-
var DeleteComponentRequest$ = [3, n0, _DCR,
|
|
749
|
-
0,
|
|
750
|
-
[_aI, _eN, _i],
|
|
751
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
752
|
-
];
|
|
753
|
-
var DeleteFormRequest$ = [3, n0, _DFR,
|
|
754
|
-
0,
|
|
755
|
-
[_aI, _eN, _i],
|
|
756
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
757
|
-
];
|
|
758
|
-
var DeleteThemeRequest$ = [3, n0, _DTR,
|
|
759
|
-
0,
|
|
760
|
-
[_aI, _eN, _i],
|
|
761
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
762
|
-
];
|
|
763
|
-
var ExchangeCodeForTokenRequest$ = [3, n0, _ECFTR,
|
|
764
|
-
0,
|
|
765
|
-
[_prov, _req],
|
|
766
|
-
[[0, 1], [() => ExchangeCodeForTokenRequestBody$, 16]], 2
|
|
767
|
-
];
|
|
768
|
-
var ExchangeCodeForTokenRequestBody$ = [3, n0, _ECFTRB,
|
|
769
|
-
0,
|
|
770
|
-
[_cod, _rU, _cI],
|
|
771
|
-
[[() => SensitiveString, 0], 0, [() => SensitiveString, 0]], 2
|
|
772
|
-
];
|
|
773
|
-
var ExchangeCodeForTokenResponse$ = [3, n0, _ECFTRx,
|
|
774
|
-
0,
|
|
775
|
-
[_aT, _eI, _rT],
|
|
776
|
-
[[() => SensitiveString, 0], 1, [() => SensitiveString, 0]], 3
|
|
777
|
-
];
|
|
778
|
-
var ExportComponentsRequest$ = [3, n0, _ECR,
|
|
779
|
-
0,
|
|
780
|
-
[_aI, _eN, _nT],
|
|
781
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }]], 2
|
|
782
|
-
];
|
|
783
|
-
var ExportComponentsResponse$ = [3, n0, _ECRx,
|
|
784
|
-
0,
|
|
785
|
-
[_ent, _nT],
|
|
786
|
-
[() => ComponentList, 0], 1
|
|
787
|
-
];
|
|
788
|
-
var ExportFormsRequest$ = [3, n0, _EFR,
|
|
789
|
-
0,
|
|
790
|
-
[_aI, _eN, _nT],
|
|
791
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }]], 2
|
|
792
|
-
];
|
|
793
|
-
var ExportFormsResponse$ = [3, n0, _EFRx,
|
|
794
|
-
0,
|
|
795
|
-
[_ent, _nT],
|
|
796
|
-
[() => FormList, 0], 1
|
|
797
|
-
];
|
|
798
|
-
var ExportThemesRequest$ = [3, n0, _ETR,
|
|
799
|
-
0,
|
|
800
|
-
[_aI, _eN, _nT],
|
|
801
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }]], 2
|
|
802
|
-
];
|
|
803
|
-
var ExportThemesResponse$ = [3, n0, _ETRx,
|
|
804
|
-
0,
|
|
805
|
-
[_ent, _nT],
|
|
806
|
-
[() => ThemeList, 0], 1
|
|
807
|
-
];
|
|
808
|
-
var FieldConfig$ = [3, n0, _FC,
|
|
809
|
-
0,
|
|
810
|
-
[_l, _po, _ex, _iTn, _vali],
|
|
811
|
-
[0, () => FieldPosition$, 2, () => FieldInputConfig$, () => ValidationsList]
|
|
812
|
-
];
|
|
813
|
-
var FieldInputConfig$ = [3, n0, _FIC,
|
|
814
|
-
0,
|
|
815
|
-
[_t, _re, _rO, _pl, _dV, _dTe, _dC, _dCC, _vM, _n, _mV, _mVa, _ste, _val, _iA, _fUC],
|
|
816
|
-
[0, 2, 2, 0, 0, 0, 2, 0, () => ValueMappings$, 0, 1, 1, 1, 0, 2, () => FileUploaderFieldConfig$], 1
|
|
817
|
-
];
|
|
818
|
-
var FieldValidationConfiguration$ = [3, n0, _FVC,
|
|
819
|
-
0,
|
|
820
|
-
[_t, _sVt, _nV, _vMa],
|
|
821
|
-
[0, 64 | 0, 64 | 1, 0], 1
|
|
822
|
-
];
|
|
823
|
-
var FileUploaderFieldConfig$ = [3, n0, _FUFC,
|
|
824
|
-
0,
|
|
825
|
-
[_aL, _aFT, _sT, _iR, _mFC, _mS],
|
|
826
|
-
[0, 64 | 0, 2, 2, 1, 1], 2
|
|
827
|
-
];
|
|
828
|
-
var Form$ = [3, n0, _F,
|
|
829
|
-
0,
|
|
830
|
-
[_aI, _eN, _i, _n, _fAT, _sty, _dT, _f, _sE, _sVc, _tag, _ct, _lD],
|
|
831
|
-
[0, 0, 0, 0, 0, () => FormStyle$, () => FormDataTypeConfig$, () => FieldsMap, () => SectionalElementMap, 0, 128 | 0, () => FormCTA$, 0], 10
|
|
832
|
-
];
|
|
833
|
-
var FormBindingElement$ = [3, n0, _FBE,
|
|
834
|
-
0,
|
|
835
|
-
[_ele, _pro],
|
|
836
|
-
[0, 0], 2
|
|
837
|
-
];
|
|
838
|
-
var FormButton$ = [3, n0, _FB,
|
|
839
|
-
0,
|
|
840
|
-
[_ex, _c, _po],
|
|
841
|
-
[2, 0, () => FieldPosition$]
|
|
842
|
-
];
|
|
843
|
-
var FormCTA$ = [3, n0, _FCTA,
|
|
844
|
-
0,
|
|
845
|
-
[_po, _cl, _ca, _su],
|
|
846
|
-
[0, () => FormButton$, () => FormButton$, () => FormButton$]
|
|
847
|
-
];
|
|
848
|
-
var FormDataTypeConfig$ = [3, n0, _FDTC,
|
|
849
|
-
0,
|
|
850
|
-
[_dST, _dTN],
|
|
851
|
-
[0, 0], 2
|
|
852
|
-
];
|
|
853
|
-
var FormInputBindingPropertiesValue$ = [3, n0, _FIBPV,
|
|
854
|
-
0,
|
|
855
|
-
[_t, _bP],
|
|
856
|
-
[0, () => FormInputBindingPropertiesValueProperties$]
|
|
857
|
-
];
|
|
858
|
-
var FormInputBindingPropertiesValueProperties$ = [3, n0, _FIBPVP,
|
|
859
|
-
0,
|
|
860
|
-
[_m],
|
|
861
|
-
[0]
|
|
862
|
-
];
|
|
863
|
-
var FormInputValueProperty$ = [3, n0, _FIVP,
|
|
864
|
-
0,
|
|
865
|
-
[_val, _bP, _co],
|
|
866
|
-
[0, () => FormInputValuePropertyBindingProperties$, () => FormInputValuePropertyList]
|
|
867
|
-
];
|
|
868
|
-
var FormInputValuePropertyBindingProperties$ = [3, n0, _FIVPBP,
|
|
869
|
-
0,
|
|
870
|
-
[_pro, _fi],
|
|
871
|
-
[0, 0], 1
|
|
872
|
-
];
|
|
873
|
-
var FormStyle$ = [3, n0, _FS,
|
|
874
|
-
0,
|
|
875
|
-
[_hG, _vG, _oP],
|
|
876
|
-
[() => FormStyleConfig$, () => FormStyleConfig$, () => FormStyleConfig$]
|
|
877
|
-
];
|
|
878
|
-
var FormSummary$ = [3, n0, _FSo,
|
|
879
|
-
0,
|
|
880
|
-
[_aI, _dT, _eN, _fAT, _i, _n],
|
|
881
|
-
[0, () => FormDataTypeConfig$, 0, 0, 0, 0], 6
|
|
882
|
-
];
|
|
883
|
-
var GetCodegenJobRequest$ = [3, n0, _GCJR,
|
|
884
|
-
0,
|
|
885
|
-
[_aI, _eN, _i],
|
|
886
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
887
|
-
];
|
|
888
|
-
var GetCodegenJobResponse$ = [3, n0, _GCJRe,
|
|
889
|
-
0,
|
|
890
|
-
[_j],
|
|
891
|
-
[[() => CodegenJob$, 16]]
|
|
892
|
-
];
|
|
893
|
-
var GetComponentRequest$ = [3, n0, _GCR,
|
|
894
|
-
0,
|
|
895
|
-
[_aI, _eN, _i],
|
|
896
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
897
|
-
];
|
|
898
|
-
var GetComponentResponse$ = [3, n0, _GCRe,
|
|
899
|
-
0,
|
|
900
|
-
[_com],
|
|
901
|
-
[[() => Component$, 16]]
|
|
902
|
-
];
|
|
903
|
-
var GetFormRequest$ = [3, n0, _GFR,
|
|
904
|
-
0,
|
|
905
|
-
[_aI, _eN, _i],
|
|
906
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
907
|
-
];
|
|
908
|
-
var GetFormResponse$ = [3, n0, _GFRe,
|
|
909
|
-
0,
|
|
910
|
-
[_fo],
|
|
911
|
-
[[() => Form$, 16]]
|
|
912
|
-
];
|
|
913
|
-
var GetMetadataRequest$ = [3, n0, _GMR,
|
|
914
|
-
0,
|
|
915
|
-
[_aI, _eN],
|
|
916
|
-
[[0, 1], [0, 1]], 2
|
|
917
|
-
];
|
|
918
|
-
var GetMetadataResponse$ = [3, n0, _GMRe,
|
|
919
|
-
0,
|
|
920
|
-
[_fe],
|
|
921
|
-
[128 | 0], 1
|
|
922
|
-
];
|
|
923
|
-
var GetThemeRequest$ = [3, n0, _GTR,
|
|
924
|
-
0,
|
|
925
|
-
[_aI, _eN, _i],
|
|
926
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
927
|
-
];
|
|
928
|
-
var GetThemeResponse$ = [3, n0, _GTRe,
|
|
929
|
-
0,
|
|
930
|
-
[_the],
|
|
931
|
-
[[() => Theme$, 16]]
|
|
932
|
-
];
|
|
933
|
-
var GraphQLRenderConfig$ = [3, n0, _GQLRC,
|
|
934
|
-
0,
|
|
935
|
-
[_tFP, _qFP, _mFP, _sFP, _fFP],
|
|
936
|
-
[0, 0, 0, 0, 0], 5
|
|
937
|
-
];
|
|
938
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
939
|
-
{ [_er]: _se, [_hE]: 500 },
|
|
940
|
-
[_me],
|
|
941
|
-
[0]
|
|
942
|
-
];
|
|
943
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
944
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
945
|
-
{ [_er]: _cli, [_hE]: 400 },
|
|
946
|
-
[_me],
|
|
947
|
-
[0]
|
|
948
|
-
];
|
|
949
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
950
|
-
var ListCodegenJobsRequest$ = [3, n0, _LCJR,
|
|
951
|
-
0,
|
|
952
|
-
[_aI, _eN, _nT, _mR],
|
|
953
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
954
|
-
];
|
|
955
|
-
var ListCodegenJobsResponse$ = [3, n0, _LCJRi,
|
|
956
|
-
0,
|
|
957
|
-
[_ent, _nT],
|
|
958
|
-
[() => CodegenJobSummaryList, 0], 1
|
|
959
|
-
];
|
|
960
|
-
var ListComponentsRequest$ = [3, n0, _LCR,
|
|
961
|
-
0,
|
|
962
|
-
[_aI, _eN, _nT, _mR],
|
|
963
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
964
|
-
];
|
|
965
|
-
var ListComponentsResponse$ = [3, n0, _LCRi,
|
|
966
|
-
0,
|
|
967
|
-
[_ent, _nT],
|
|
968
|
-
[() => ComponentSummaryList, 0], 1
|
|
969
|
-
];
|
|
970
|
-
var ListFormsRequest$ = [3, n0, _LFR,
|
|
971
|
-
0,
|
|
972
|
-
[_aI, _eN, _nT, _mR],
|
|
973
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
974
|
-
];
|
|
975
|
-
var ListFormsResponse$ = [3, n0, _LFRi,
|
|
976
|
-
0,
|
|
977
|
-
[_ent, _nT],
|
|
978
|
-
[() => FormSummaryList, 0], 1
|
|
979
|
-
];
|
|
980
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
981
|
-
0,
|
|
982
|
-
[_rA],
|
|
983
|
-
[[0, 1]], 1
|
|
984
|
-
];
|
|
985
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
986
|
-
0,
|
|
987
|
-
[_tag],
|
|
988
|
-
[128 | 0], 1
|
|
989
|
-
];
|
|
990
|
-
var ListThemesRequest$ = [3, n0, _LTR,
|
|
991
|
-
0,
|
|
992
|
-
[_aI, _eN, _nT, _mR],
|
|
993
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
994
|
-
];
|
|
995
|
-
var ListThemesResponse$ = [3, n0, _LTRi,
|
|
996
|
-
0,
|
|
997
|
-
[_ent, _nT],
|
|
998
|
-
[() => ThemeSummaryList, 0], 1
|
|
999
|
-
];
|
|
1000
|
-
var MutationActionSetStateParameter$ = [3, n0, _MASSP,
|
|
1001
|
-
0,
|
|
1002
|
-
[_cN, _pro, _set],
|
|
1003
|
-
[0, 0, () => ComponentProperty$], 3
|
|
1004
|
-
];
|
|
1005
|
-
var NoApiRenderConfig$ = [3, n0, _NARC,
|
|
1006
|
-
0,
|
|
1007
|
-
[],
|
|
1008
|
-
[]
|
|
1009
|
-
];
|
|
1010
|
-
var Predicate$ = [3, n0, _P,
|
|
1011
|
-
0,
|
|
1012
|
-
[_or, _an, _fi, _op, _ope, _oT],
|
|
1013
|
-
[() => PredicateList, () => PredicateList, 0, 0, 0, 0]
|
|
1014
|
-
];
|
|
1015
|
-
var PutMetadataFlagBody$ = [3, n0, _PMFB,
|
|
1016
|
-
0,
|
|
1017
|
-
[_nVe],
|
|
1018
|
-
[0], 1
|
|
1019
|
-
];
|
|
1020
|
-
var PutMetadataFlagRequest$ = [3, n0, _PMFR,
|
|
1021
|
-
0,
|
|
1022
|
-
[_aI, _eN, _fN, _bo],
|
|
1023
|
-
[[0, 1], [0, 1], [0, 1], [() => PutMetadataFlagBody$, 16]], 4
|
|
1024
|
-
];
|
|
1025
|
-
var ReactStartCodegenJobData$ = [3, n0, _RSCJD,
|
|
1026
|
-
0,
|
|
1027
|
-
[_mod, _ta, _sc, _rTD, _iSM, _aC, _d],
|
|
1028
|
-
[0, 0, 0, 2, 2, () => ApiConfiguration$, 128 | 0]
|
|
1029
|
-
];
|
|
1030
|
-
var RefreshTokenRequest$ = [3, n0, _RTR,
|
|
1031
|
-
0,
|
|
1032
|
-
[_prov, _rTB],
|
|
1033
|
-
[[0, 1], [() => RefreshTokenRequestBody$, 16]], 2
|
|
1034
|
-
];
|
|
1035
|
-
var RefreshTokenRequestBody$ = [3, n0, _RTRB,
|
|
1036
|
-
0,
|
|
1037
|
-
[_to, _cI],
|
|
1038
|
-
[[() => SensitiveString, 0], [() => SensitiveString, 0]], 1
|
|
1039
|
-
];
|
|
1040
|
-
var RefreshTokenResponse$ = [3, n0, _RTRe,
|
|
1041
|
-
0,
|
|
1042
|
-
[_aT, _eI],
|
|
1043
|
-
[[() => SensitiveString, 0], 1], 2
|
|
1044
|
-
];
|
|
1045
|
-
var ResourceConflictException$ = [-3, n0, _RCE,
|
|
1046
|
-
{ [_er]: _cli, [_hE]: 409 },
|
|
1047
|
-
[_me],
|
|
1048
|
-
[0]
|
|
1049
|
-
];
|
|
1050
|
-
schema.TypeRegistry.for(n0).registerError(ResourceConflictException$, ResourceConflictException);
|
|
1051
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1052
|
-
{ [_er]: _cli, [_hE]: 404 },
|
|
1053
|
-
[_me],
|
|
1054
|
-
[0]
|
|
1055
|
-
];
|
|
1056
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1057
|
-
var SectionalElement$ = [3, n0, _SE,
|
|
1058
|
-
0,
|
|
1059
|
-
[_t, _po, _te, _le, _ori, _ex],
|
|
1060
|
-
[0, () => FieldPosition$, 0, 1, 0, 2], 1
|
|
1061
|
-
];
|
|
1062
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1063
|
-
{ [_er]: _cli, [_hE]: 402 },
|
|
1064
|
-
[_me],
|
|
1065
|
-
[0]
|
|
1066
|
-
];
|
|
1067
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1068
|
-
var SortProperty$ = [3, n0, _SP,
|
|
1069
|
-
0,
|
|
1070
|
-
[_fi, _di],
|
|
1071
|
-
[0, 0], 2
|
|
1072
|
-
];
|
|
1073
|
-
var StartCodegenJobData$ = [3, n0, _SCJD,
|
|
1074
|
-
0,
|
|
1075
|
-
[_rC, _gDS, _aGF, _fe, _tag],
|
|
1076
|
-
[() => CodegenJobRenderConfig$, () => CodegenJobGenericDataSchema$, 2, () => CodegenFeatureFlags$, 128 | 0], 1
|
|
1077
|
-
];
|
|
1078
|
-
var StartCodegenJobRequest$ = [3, n0, _SCJR,
|
|
1079
|
-
0,
|
|
1080
|
-
[_aI, _eN, _cJTC, _cTl],
|
|
1081
|
-
[[0, 1], [0, 1], [() => StartCodegenJobData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 3
|
|
1082
|
-
];
|
|
1083
|
-
var StartCodegenJobResponse$ = [3, n0, _SCJRt,
|
|
1084
|
-
0,
|
|
1085
|
-
[_en],
|
|
1086
|
-
[[() => CodegenJob$, 16]]
|
|
1087
|
-
];
|
|
1088
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1089
|
-
0,
|
|
1090
|
-
[_rA, _tag],
|
|
1091
|
-
[[0, 1], 128 | 0], 2
|
|
1092
|
-
];
|
|
1093
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1094
|
-
0,
|
|
1095
|
-
[],
|
|
1096
|
-
[]
|
|
1097
|
-
];
|
|
1098
|
-
var Theme$ = [3, n0, _T,
|
|
1099
|
-
0,
|
|
1100
|
-
[_aI, _eN, _i, _n, _cA, _v, _mA, _o, _tag],
|
|
1101
|
-
[0, 0, 0, 0, 5, () => ThemeValuesList, 5, () => ThemeValuesList, 128 | 0], 6
|
|
1102
|
-
];
|
|
1103
|
-
var ThemeSummary$ = [3, n0, _TS,
|
|
1104
|
-
0,
|
|
1105
|
-
[_aI, _eN, _i, _n],
|
|
1106
|
-
[0, 0, 0, 0], 4
|
|
1107
|
-
];
|
|
1108
|
-
var ThemeValue$ = [3, n0, _TV,
|
|
1109
|
-
0,
|
|
1110
|
-
[_val, _c],
|
|
1111
|
-
[0, () => ThemeValuesList]
|
|
1112
|
-
];
|
|
1113
|
-
var ThemeValues$ = [3, n0, _TVh,
|
|
1114
|
-
0,
|
|
1115
|
-
[_k, _val],
|
|
1116
|
-
[0, () => ThemeValue$]
|
|
1117
|
-
];
|
|
1118
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1119
|
-
{ [_er]: _cli, [_hE]: 429 },
|
|
1120
|
-
[_me],
|
|
1121
|
-
[0]
|
|
1122
|
-
];
|
|
1123
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1124
|
-
var UnauthorizedException$ = [-3, n0, _UE,
|
|
1125
|
-
{ [_er]: _cli, [_hE]: 401 },
|
|
1126
|
-
[_me],
|
|
1127
|
-
[0]
|
|
1128
|
-
];
|
|
1129
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
1130
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1131
|
-
0,
|
|
1132
|
-
[_rA, _tK],
|
|
1133
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1134
|
-
];
|
|
1135
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1136
|
-
0,
|
|
1137
|
-
[],
|
|
1138
|
-
[]
|
|
1139
|
-
];
|
|
1140
|
-
var UpdateComponentData$ = [3, n0, _UCD,
|
|
1141
|
-
0,
|
|
1142
|
-
[_i, _n, _sI, _cT, _p, _c, _va, _o, _bP, _cP, _ev, _sVc],
|
|
1143
|
-
[0, 0, 0, 0, () => ComponentProperties, () => ComponentChildList, () => ComponentVariants, [2, n0, _CO, 0, 0, 128 | 0], () => ComponentBindingProperties, () => ComponentCollectionProperties, () => ComponentEvents, 0]
|
|
1144
|
-
];
|
|
1145
|
-
var UpdateComponentRequest$ = [3, n0, _UCR,
|
|
1146
|
-
0,
|
|
1147
|
-
[_aI, _eN, _i, _uC, _cTl],
|
|
1148
|
-
[[0, 1], [0, 1], [0, 1], [() => UpdateComponentData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 4
|
|
1149
|
-
];
|
|
1150
|
-
var UpdateComponentResponse$ = [3, n0, _UCRp,
|
|
1151
|
-
0,
|
|
1152
|
-
[_en],
|
|
1153
|
-
[[() => Component$, 16]]
|
|
1154
|
-
];
|
|
1155
|
-
var UpdateFormData$ = [3, n0, _UFD,
|
|
1156
|
-
0,
|
|
1157
|
-
[_n, _dT, _fAT, _f, _sty, _sE, _sVc, _ct, _lD],
|
|
1158
|
-
[0, () => FormDataTypeConfig$, 0, () => FieldsMap, () => FormStyle$, () => SectionalElementMap, 0, () => FormCTA$, 0]
|
|
1159
|
-
];
|
|
1160
|
-
var UpdateFormRequest$ = [3, n0, _UFR,
|
|
1161
|
-
0,
|
|
1162
|
-
[_aI, _eN, _i, _uF, _cTl],
|
|
1163
|
-
[[0, 1], [0, 1], [0, 1], [() => UpdateFormData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 4
|
|
1164
|
-
];
|
|
1165
|
-
var UpdateFormResponse$ = [3, n0, _UFRp,
|
|
1166
|
-
0,
|
|
1167
|
-
[_en],
|
|
1168
|
-
[[() => Form$, 16]]
|
|
1169
|
-
];
|
|
1170
|
-
var UpdateThemeData$ = [3, n0, _UTD,
|
|
1171
|
-
0,
|
|
1172
|
-
[_v, _i, _n, _o],
|
|
1173
|
-
[() => ThemeValuesList, 0, 0, () => ThemeValuesList], 1
|
|
1174
|
-
];
|
|
1175
|
-
var UpdateThemeRequest$ = [3, n0, _UTR,
|
|
1176
|
-
0,
|
|
1177
|
-
[_aI, _eN, _i, _uT, _cTl],
|
|
1178
|
-
[[0, 1], [0, 1], [0, 1], [() => UpdateThemeData$, 16], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 4
|
|
1179
|
-
];
|
|
1180
|
-
var UpdateThemeResponse$ = [3, n0, _UTRp,
|
|
1181
|
-
0,
|
|
1182
|
-
[_en],
|
|
1183
|
-
[[() => Theme$, 16]]
|
|
1184
|
-
];
|
|
1185
|
-
var ValueMapping$ = [3, n0, _VM,
|
|
1186
|
-
0,
|
|
1187
|
-
[_val, _dVi],
|
|
1188
|
-
[() => FormInputValueProperty$, () => FormInputValueProperty$], 1
|
|
1189
|
-
];
|
|
1190
|
-
var ValueMappings$ = [3, n0, _VMa,
|
|
1191
|
-
0,
|
|
1192
|
-
[_v, _bP],
|
|
1193
|
-
[() => ValueMappingList, () => FormInputBindingProperties], 1
|
|
1194
|
-
];
|
|
1195
|
-
var __Unit = "unit";
|
|
1196
|
-
var AmplifyUIBuilderServiceException$ = [-3, _sm, "AmplifyUIBuilderServiceException", 0, [], []];
|
|
1197
|
-
schema.TypeRegistry.for(_sm).registerError(AmplifyUIBuilderServiceException$, AmplifyUIBuilderServiceException);
|
|
1198
|
-
var CodegenDependencies = [1, n0, _CDo,
|
|
1199
|
-
0, () => CodegenDependency$
|
|
1200
|
-
];
|
|
1201
|
-
var CodegenJobSummaryList = [1, n0, _CJSL,
|
|
1202
|
-
0, () => CodegenJobSummary$
|
|
1203
|
-
];
|
|
1204
|
-
var ComponentChildList = [1, n0, _CCL,
|
|
1205
|
-
0, () => ComponentChild$
|
|
1206
|
-
];
|
|
1207
|
-
var ComponentList = [1, n0, _CL,
|
|
1208
|
-
0, () => Component$
|
|
1209
|
-
];
|
|
1210
|
-
var ComponentPropertyList = [1, n0, _CPL,
|
|
1211
|
-
0, () => ComponentProperty$
|
|
1212
|
-
];
|
|
1213
|
-
var ComponentSummaryList = [1, n0, _CSL,
|
|
1214
|
-
0, () => ComponentSummary$
|
|
1215
|
-
];
|
|
1216
|
-
var ComponentVariants = [1, n0, _CVo,
|
|
1217
|
-
0, () => ComponentVariant$
|
|
1218
|
-
];
|
|
1219
|
-
var FormInputValuePropertyList = [1, n0, _FIVPL,
|
|
1220
|
-
0, () => FormInputValueProperty$
|
|
1221
|
-
];
|
|
1222
|
-
var FormList = [1, n0, _FL,
|
|
1223
|
-
0, () => Form$
|
|
1224
|
-
];
|
|
1225
|
-
var FormSummaryList = [1, n0, _FSL,
|
|
1226
|
-
0, () => FormSummary$
|
|
1227
|
-
];
|
|
1228
|
-
var PredicateList = [1, n0, _PL,
|
|
1229
|
-
0, () => Predicate$
|
|
1230
|
-
];
|
|
1231
|
-
var SortPropertyList = [1, n0, _SPL,
|
|
1232
|
-
0, () => SortProperty$
|
|
1233
|
-
];
|
|
1234
|
-
var ThemeList = [1, n0, _TL,
|
|
1235
|
-
0, () => Theme$
|
|
1236
|
-
];
|
|
1237
|
-
var ThemeSummaryList = [1, n0, _TSL,
|
|
1238
|
-
0, () => ThemeSummary$
|
|
1239
|
-
];
|
|
1240
|
-
var ThemeValuesList = [1, n0, _TVL,
|
|
1241
|
-
0, () => ThemeValues$
|
|
1242
|
-
];
|
|
1243
|
-
var ValidationsList = [1, n0, _VL,
|
|
1244
|
-
0, () => FieldValidationConfiguration$
|
|
1245
|
-
];
|
|
1246
|
-
var ValueMappingList = [1, n0, _VML,
|
|
1247
|
-
0, () => ValueMapping$
|
|
1248
|
-
];
|
|
1249
|
-
var CodegenGenericDataEnums = [2, n0, _CGDEo,
|
|
1250
|
-
0, 0, () => CodegenGenericDataEnum$
|
|
1251
|
-
];
|
|
1252
|
-
var CodegenGenericDataFields = [2, n0, _CGDFo,
|
|
1253
|
-
0, 0, () => CodegenGenericDataField$
|
|
1254
|
-
];
|
|
1255
|
-
var CodegenGenericDataModels = [2, n0, _CGDMo,
|
|
1256
|
-
0, 0, () => CodegenGenericDataModel$
|
|
1257
|
-
];
|
|
1258
|
-
var CodegenGenericDataNonModelFields = [2, n0, _CGDNMF,
|
|
1259
|
-
0, 0, () => CodegenGenericDataField$
|
|
1260
|
-
];
|
|
1261
|
-
var CodegenGenericDataNonModels = [2, n0, _CGDNMo,
|
|
1262
|
-
0, 0, () => CodegenGenericDataNonModel$
|
|
1263
|
-
];
|
|
1264
|
-
var ComponentBindingProperties = [2, n0, _CBP,
|
|
1265
|
-
0, 0, () => ComponentBindingPropertiesValue$
|
|
1266
|
-
];
|
|
1267
|
-
var ComponentCollectionProperties = [2, n0, _CCPo,
|
|
1268
|
-
0, 0, () => ComponentDataConfiguration$
|
|
1269
|
-
];
|
|
1270
|
-
var ComponentEvents = [2, n0, _CEo,
|
|
1271
|
-
0, 0, () => ComponentEvent$
|
|
1272
|
-
];
|
|
1273
|
-
var ComponentProperties = [2, n0, _CPo,
|
|
1274
|
-
0, 0, () => ComponentProperty$
|
|
1275
|
-
];
|
|
1276
|
-
var FieldsMap = [2, n0, _FM,
|
|
1277
|
-
0, 0, () => FieldConfig$
|
|
1278
|
-
];
|
|
1279
|
-
var FormBindings = [2, n0, _FBo,
|
|
1280
|
-
0, 0, () => FormBindingElement$
|
|
1281
|
-
];
|
|
1282
|
-
var FormInputBindingProperties = [2, n0, _FIBP,
|
|
1283
|
-
0, 0, () => FormInputBindingPropertiesValue$
|
|
1284
|
-
];
|
|
1285
|
-
var SectionalElementMap = [2, n0, _SEM,
|
|
1286
|
-
0, 0, () => SectionalElement$
|
|
1287
|
-
];
|
|
1288
|
-
var ApiConfiguration$ = [4, n0, _AC,
|
|
1289
|
-
0,
|
|
1290
|
-
[_gQLC, _dSC, _nAC],
|
|
1291
|
-
[() => GraphQLRenderConfig$, () => DataStoreRenderConfig$, () => NoApiRenderConfig$]
|
|
1292
|
-
];
|
|
1293
|
-
var CodegenJobRenderConfig$ = [4, n0, _CJRC,
|
|
1294
|
-
0,
|
|
1295
|
-
[_rea],
|
|
1296
|
-
[() => ReactStartCodegenJobData$]
|
|
1297
|
-
];
|
|
1298
|
-
var FieldPosition$ = [4, n0, _FP,
|
|
1299
|
-
0,
|
|
1300
|
-
[_fix, _rOi, _be],
|
|
1301
|
-
[0, 0, 0]
|
|
1302
|
-
];
|
|
1303
|
-
var FormStyleConfig$ = [4, n0, _FSC,
|
|
1304
|
-
0,
|
|
1305
|
-
[_tR, _val],
|
|
1306
|
-
[0, 0]
|
|
1307
|
-
];
|
|
1308
|
-
var CreateComponent$ = [9, n0, _CCr,
|
|
1309
|
-
{ [_h]: ["POST", "/app/{appId}/environment/{environmentName}/components", 200] }, () => CreateComponentRequest$, () => CreateComponentResponse$
|
|
1310
|
-
];
|
|
1311
|
-
var CreateForm$ = [9, n0, _CF,
|
|
1312
|
-
{ [_h]: ["POST", "/app/{appId}/environment/{environmentName}/forms", 200] }, () => CreateFormRequest$, () => CreateFormResponse$
|
|
1313
|
-
];
|
|
1314
|
-
var CreateTheme$ = [9, n0, _CT,
|
|
1315
|
-
{ [_h]: ["POST", "/app/{appId}/environment/{environmentName}/themes", 200] }, () => CreateThemeRequest$, () => CreateThemeResponse$
|
|
1316
|
-
];
|
|
1317
|
-
var DeleteComponent$ = [9, n0, _DC,
|
|
1318
|
-
{ [_h]: ["DELETE", "/app/{appId}/environment/{environmentName}/components/{id}", 200] }, () => DeleteComponentRequest$, () => __Unit
|
|
1319
|
-
];
|
|
1320
|
-
var DeleteForm$ = [9, n0, _DF,
|
|
1321
|
-
{ [_h]: ["DELETE", "/app/{appId}/environment/{environmentName}/forms/{id}", 200] }, () => DeleteFormRequest$, () => __Unit
|
|
1322
|
-
];
|
|
1323
|
-
var DeleteTheme$ = [9, n0, _DT,
|
|
1324
|
-
{ [_h]: ["DELETE", "/app/{appId}/environment/{environmentName}/themes/{id}", 200] }, () => DeleteThemeRequest$, () => __Unit
|
|
1325
|
-
];
|
|
1326
|
-
var ExchangeCodeForToken$ = [9, n0, _ECFT,
|
|
1327
|
-
{ [_h]: ["POST", "/tokens/{provider}", 200] }, () => ExchangeCodeForTokenRequest$, () => ExchangeCodeForTokenResponse$
|
|
1328
|
-
];
|
|
1329
|
-
var ExportComponents$ = [9, n0, _EC,
|
|
1330
|
-
{ [_h]: ["GET", "/export/app/{appId}/environment/{environmentName}/components", 200] }, () => ExportComponentsRequest$, () => ExportComponentsResponse$
|
|
1331
|
-
];
|
|
1332
|
-
var ExportForms$ = [9, n0, _EF,
|
|
1333
|
-
{ [_h]: ["GET", "/export/app/{appId}/environment/{environmentName}/forms", 200] }, () => ExportFormsRequest$, () => ExportFormsResponse$
|
|
1334
|
-
];
|
|
1335
|
-
var ExportThemes$ = [9, n0, _ET,
|
|
1336
|
-
{ [_h]: ["GET", "/export/app/{appId}/environment/{environmentName}/themes", 200] }, () => ExportThemesRequest$, () => ExportThemesResponse$
|
|
1337
|
-
];
|
|
1338
|
-
var GetCodegenJob$ = [9, n0, _GCJ,
|
|
1339
|
-
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/codegen-jobs/{id}", 200] }, () => GetCodegenJobRequest$, () => GetCodegenJobResponse$
|
|
1340
|
-
];
|
|
1341
|
-
var GetComponent$ = [9, n0, _GC,
|
|
1342
|
-
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/components/{id}", 200] }, () => GetComponentRequest$, () => GetComponentResponse$
|
|
1343
|
-
];
|
|
1344
|
-
var GetForm$ = [9, n0, _GF,
|
|
1345
|
-
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/forms/{id}", 200] }, () => GetFormRequest$, () => GetFormResponse$
|
|
1346
|
-
];
|
|
1347
|
-
var GetMetadata$ = [9, n0, _GM,
|
|
1348
|
-
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/metadata", 200] }, () => GetMetadataRequest$, () => GetMetadataResponse$
|
|
1349
|
-
];
|
|
1350
|
-
var GetTheme$ = [9, n0, _GT,
|
|
1351
|
-
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/themes/{id}", 200] }, () => GetThemeRequest$, () => GetThemeResponse$
|
|
1352
|
-
];
|
|
1353
|
-
var ListCodegenJobs$ = [9, n0, _LCJ,
|
|
1354
|
-
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/codegen-jobs", 200] }, () => ListCodegenJobsRequest$, () => ListCodegenJobsResponse$
|
|
1355
|
-
];
|
|
1356
|
-
var ListComponents$ = [9, n0, _LC,
|
|
1357
|
-
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/components", 200] }, () => ListComponentsRequest$, () => ListComponentsResponse$
|
|
1358
|
-
];
|
|
1359
|
-
var ListForms$ = [9, n0, _LF,
|
|
1360
|
-
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/forms", 200] }, () => ListFormsRequest$, () => ListFormsResponse$
|
|
1361
|
-
];
|
|
1362
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1363
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1364
|
-
];
|
|
1365
|
-
var ListThemes$ = [9, n0, _LT,
|
|
1366
|
-
{ [_h]: ["GET", "/app/{appId}/environment/{environmentName}/themes", 200] }, () => ListThemesRequest$, () => ListThemesResponse$
|
|
1367
|
-
];
|
|
1368
|
-
var PutMetadataFlag$ = [9, n0, _PMF,
|
|
1369
|
-
{ [_h]: ["PUT", "/app/{appId}/environment/{environmentName}/metadata/features/{featureName}", 200] }, () => PutMetadataFlagRequest$, () => __Unit
|
|
1370
|
-
];
|
|
1371
|
-
var RefreshToken$ = [9, n0, _RT,
|
|
1372
|
-
{ [_h]: ["POST", "/tokens/{provider}/refresh", 200] }, () => RefreshTokenRequest$, () => RefreshTokenResponse$
|
|
1373
|
-
];
|
|
1374
|
-
var StartCodegenJob$ = [9, n0, _SCJ,
|
|
1375
|
-
{ [_h]: ["POST", "/app/{appId}/environment/{environmentName}/codegen-jobs", 200] }, () => StartCodegenJobRequest$, () => StartCodegenJobResponse$
|
|
1376
|
-
];
|
|
1377
|
-
var TagResource$ = [9, n0, _TR,
|
|
1378
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1379
|
-
];
|
|
1380
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1381
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1382
|
-
];
|
|
1383
|
-
var UpdateComponent$ = [9, n0, _UC,
|
|
1384
|
-
{ [_h]: ["PATCH", "/app/{appId}/environment/{environmentName}/components/{id}", 200] }, () => UpdateComponentRequest$, () => UpdateComponentResponse$
|
|
1385
|
-
];
|
|
1386
|
-
var UpdateForm$ = [9, n0, _UF,
|
|
1387
|
-
{ [_h]: ["PATCH", "/app/{appId}/environment/{environmentName}/forms/{id}", 200] }, () => UpdateFormRequest$, () => UpdateFormResponse$
|
|
1388
|
-
];
|
|
1389
|
-
var UpdateTheme$ = [9, n0, _UT,
|
|
1390
|
-
{ [_h]: ["PATCH", "/app/{appId}/environment/{environmentName}/themes/{id}", 200] }, () => UpdateThemeRequest$, () => UpdateThemeResponse$
|
|
1391
|
-
];
|
|
1392
|
-
|
|
1393
116
|
class CreateComponentCommand extends smithyClient.Command
|
|
1394
117
|
.classBuilder()
|
|
1395
118
|
.ep(commonParams)
|
|
@@ -1398,7 +121,7 @@ class CreateComponentCommand extends smithyClient.Command
|
|
|
1398
121
|
})
|
|
1399
122
|
.s("AmplifyUIBuilder", "CreateComponent", {})
|
|
1400
123
|
.n("AmplifyUIBuilderClient", "CreateComponentCommand")
|
|
1401
|
-
.sc(CreateComponent$)
|
|
124
|
+
.sc(schemas_0.CreateComponent$)
|
|
1402
125
|
.build() {
|
|
1403
126
|
}
|
|
1404
127
|
|
|
@@ -1410,7 +133,7 @@ class CreateFormCommand extends smithyClient.Command
|
|
|
1410
133
|
})
|
|
1411
134
|
.s("AmplifyUIBuilder", "CreateForm", {})
|
|
1412
135
|
.n("AmplifyUIBuilderClient", "CreateFormCommand")
|
|
1413
|
-
.sc(CreateForm$)
|
|
136
|
+
.sc(schemas_0.CreateForm$)
|
|
1414
137
|
.build() {
|
|
1415
138
|
}
|
|
1416
139
|
|
|
@@ -1422,7 +145,7 @@ class CreateThemeCommand extends smithyClient.Command
|
|
|
1422
145
|
})
|
|
1423
146
|
.s("AmplifyUIBuilder", "CreateTheme", {})
|
|
1424
147
|
.n("AmplifyUIBuilderClient", "CreateThemeCommand")
|
|
1425
|
-
.sc(CreateTheme$)
|
|
148
|
+
.sc(schemas_0.CreateTheme$)
|
|
1426
149
|
.build() {
|
|
1427
150
|
}
|
|
1428
151
|
|
|
@@ -1434,7 +157,7 @@ class DeleteComponentCommand extends smithyClient.Command
|
|
|
1434
157
|
})
|
|
1435
158
|
.s("AmplifyUIBuilder", "DeleteComponent", {})
|
|
1436
159
|
.n("AmplifyUIBuilderClient", "DeleteComponentCommand")
|
|
1437
|
-
.sc(DeleteComponent$)
|
|
160
|
+
.sc(schemas_0.DeleteComponent$)
|
|
1438
161
|
.build() {
|
|
1439
162
|
}
|
|
1440
163
|
|
|
@@ -1446,7 +169,7 @@ class DeleteFormCommand extends smithyClient.Command
|
|
|
1446
169
|
})
|
|
1447
170
|
.s("AmplifyUIBuilder", "DeleteForm", {})
|
|
1448
171
|
.n("AmplifyUIBuilderClient", "DeleteFormCommand")
|
|
1449
|
-
.sc(DeleteForm$)
|
|
172
|
+
.sc(schemas_0.DeleteForm$)
|
|
1450
173
|
.build() {
|
|
1451
174
|
}
|
|
1452
175
|
|
|
@@ -1458,7 +181,7 @@ class DeleteThemeCommand extends smithyClient.Command
|
|
|
1458
181
|
})
|
|
1459
182
|
.s("AmplifyUIBuilder", "DeleteTheme", {})
|
|
1460
183
|
.n("AmplifyUIBuilderClient", "DeleteThemeCommand")
|
|
1461
|
-
.sc(DeleteTheme$)
|
|
184
|
+
.sc(schemas_0.DeleteTheme$)
|
|
1462
185
|
.build() {
|
|
1463
186
|
}
|
|
1464
187
|
|
|
@@ -1470,7 +193,7 @@ class ExchangeCodeForTokenCommand extends smithyClient.Command
|
|
|
1470
193
|
})
|
|
1471
194
|
.s("AmplifyUIBuilder", "ExchangeCodeForToken", {})
|
|
1472
195
|
.n("AmplifyUIBuilderClient", "ExchangeCodeForTokenCommand")
|
|
1473
|
-
.sc(ExchangeCodeForToken$)
|
|
196
|
+
.sc(schemas_0.ExchangeCodeForToken$)
|
|
1474
197
|
.build() {
|
|
1475
198
|
}
|
|
1476
199
|
|
|
@@ -1482,7 +205,7 @@ class ExportComponentsCommand extends smithyClient.Command
|
|
|
1482
205
|
})
|
|
1483
206
|
.s("AmplifyUIBuilder", "ExportComponents", {})
|
|
1484
207
|
.n("AmplifyUIBuilderClient", "ExportComponentsCommand")
|
|
1485
|
-
.sc(ExportComponents$)
|
|
208
|
+
.sc(schemas_0.ExportComponents$)
|
|
1486
209
|
.build() {
|
|
1487
210
|
}
|
|
1488
211
|
|
|
@@ -1494,7 +217,7 @@ class ExportFormsCommand extends smithyClient.Command
|
|
|
1494
217
|
})
|
|
1495
218
|
.s("AmplifyUIBuilder", "ExportForms", {})
|
|
1496
219
|
.n("AmplifyUIBuilderClient", "ExportFormsCommand")
|
|
1497
|
-
.sc(ExportForms$)
|
|
220
|
+
.sc(schemas_0.ExportForms$)
|
|
1498
221
|
.build() {
|
|
1499
222
|
}
|
|
1500
223
|
|
|
@@ -1506,7 +229,7 @@ class ExportThemesCommand extends smithyClient.Command
|
|
|
1506
229
|
})
|
|
1507
230
|
.s("AmplifyUIBuilder", "ExportThemes", {})
|
|
1508
231
|
.n("AmplifyUIBuilderClient", "ExportThemesCommand")
|
|
1509
|
-
.sc(ExportThemes$)
|
|
232
|
+
.sc(schemas_0.ExportThemes$)
|
|
1510
233
|
.build() {
|
|
1511
234
|
}
|
|
1512
235
|
|
|
@@ -1518,7 +241,7 @@ class GetCodegenJobCommand extends smithyClient.Command
|
|
|
1518
241
|
})
|
|
1519
242
|
.s("AmplifyUIBuilder", "GetCodegenJob", {})
|
|
1520
243
|
.n("AmplifyUIBuilderClient", "GetCodegenJobCommand")
|
|
1521
|
-
.sc(GetCodegenJob$)
|
|
244
|
+
.sc(schemas_0.GetCodegenJob$)
|
|
1522
245
|
.build() {
|
|
1523
246
|
}
|
|
1524
247
|
|
|
@@ -1530,7 +253,7 @@ class GetComponentCommand extends smithyClient.Command
|
|
|
1530
253
|
})
|
|
1531
254
|
.s("AmplifyUIBuilder", "GetComponent", {})
|
|
1532
255
|
.n("AmplifyUIBuilderClient", "GetComponentCommand")
|
|
1533
|
-
.sc(GetComponent$)
|
|
256
|
+
.sc(schemas_0.GetComponent$)
|
|
1534
257
|
.build() {
|
|
1535
258
|
}
|
|
1536
259
|
|
|
@@ -1542,7 +265,7 @@ class GetFormCommand extends smithyClient.Command
|
|
|
1542
265
|
})
|
|
1543
266
|
.s("AmplifyUIBuilder", "GetForm", {})
|
|
1544
267
|
.n("AmplifyUIBuilderClient", "GetFormCommand")
|
|
1545
|
-
.sc(GetForm$)
|
|
268
|
+
.sc(schemas_0.GetForm$)
|
|
1546
269
|
.build() {
|
|
1547
270
|
}
|
|
1548
271
|
|
|
@@ -1554,7 +277,7 @@ class GetMetadataCommand extends smithyClient.Command
|
|
|
1554
277
|
})
|
|
1555
278
|
.s("AmplifyUIBuilder", "GetMetadata", {})
|
|
1556
279
|
.n("AmplifyUIBuilderClient", "GetMetadataCommand")
|
|
1557
|
-
.sc(GetMetadata$)
|
|
280
|
+
.sc(schemas_0.GetMetadata$)
|
|
1558
281
|
.build() {
|
|
1559
282
|
}
|
|
1560
283
|
|
|
@@ -1566,7 +289,7 @@ class GetThemeCommand extends smithyClient.Command
|
|
|
1566
289
|
})
|
|
1567
290
|
.s("AmplifyUIBuilder", "GetTheme", {})
|
|
1568
291
|
.n("AmplifyUIBuilderClient", "GetThemeCommand")
|
|
1569
|
-
.sc(GetTheme$)
|
|
292
|
+
.sc(schemas_0.GetTheme$)
|
|
1570
293
|
.build() {
|
|
1571
294
|
}
|
|
1572
295
|
|
|
@@ -1578,7 +301,7 @@ class ListCodegenJobsCommand extends smithyClient.Command
|
|
|
1578
301
|
})
|
|
1579
302
|
.s("AmplifyUIBuilder", "ListCodegenJobs", {})
|
|
1580
303
|
.n("AmplifyUIBuilderClient", "ListCodegenJobsCommand")
|
|
1581
|
-
.sc(ListCodegenJobs$)
|
|
304
|
+
.sc(schemas_0.ListCodegenJobs$)
|
|
1582
305
|
.build() {
|
|
1583
306
|
}
|
|
1584
307
|
|
|
@@ -1590,7 +313,7 @@ class ListComponentsCommand extends smithyClient.Command
|
|
|
1590
313
|
})
|
|
1591
314
|
.s("AmplifyUIBuilder", "ListComponents", {})
|
|
1592
315
|
.n("AmplifyUIBuilderClient", "ListComponentsCommand")
|
|
1593
|
-
.sc(ListComponents$)
|
|
316
|
+
.sc(schemas_0.ListComponents$)
|
|
1594
317
|
.build() {
|
|
1595
318
|
}
|
|
1596
319
|
|
|
@@ -1602,7 +325,7 @@ class ListFormsCommand extends smithyClient.Command
|
|
|
1602
325
|
})
|
|
1603
326
|
.s("AmplifyUIBuilder", "ListForms", {})
|
|
1604
327
|
.n("AmplifyUIBuilderClient", "ListFormsCommand")
|
|
1605
|
-
.sc(ListForms$)
|
|
328
|
+
.sc(schemas_0.ListForms$)
|
|
1606
329
|
.build() {
|
|
1607
330
|
}
|
|
1608
331
|
|
|
@@ -1614,7 +337,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1614
337
|
})
|
|
1615
338
|
.s("AmplifyUIBuilder", "ListTagsForResource", {})
|
|
1616
339
|
.n("AmplifyUIBuilderClient", "ListTagsForResourceCommand")
|
|
1617
|
-
.sc(ListTagsForResource$)
|
|
340
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1618
341
|
.build() {
|
|
1619
342
|
}
|
|
1620
343
|
|
|
@@ -1626,7 +349,7 @@ class ListThemesCommand extends smithyClient.Command
|
|
|
1626
349
|
})
|
|
1627
350
|
.s("AmplifyUIBuilder", "ListThemes", {})
|
|
1628
351
|
.n("AmplifyUIBuilderClient", "ListThemesCommand")
|
|
1629
|
-
.sc(ListThemes$)
|
|
352
|
+
.sc(schemas_0.ListThemes$)
|
|
1630
353
|
.build() {
|
|
1631
354
|
}
|
|
1632
355
|
|
|
@@ -1638,7 +361,7 @@ class PutMetadataFlagCommand extends smithyClient.Command
|
|
|
1638
361
|
})
|
|
1639
362
|
.s("AmplifyUIBuilder", "PutMetadataFlag", {})
|
|
1640
363
|
.n("AmplifyUIBuilderClient", "PutMetadataFlagCommand")
|
|
1641
|
-
.sc(PutMetadataFlag$)
|
|
364
|
+
.sc(schemas_0.PutMetadataFlag$)
|
|
1642
365
|
.build() {
|
|
1643
366
|
}
|
|
1644
367
|
|
|
@@ -1650,7 +373,7 @@ class RefreshTokenCommand extends smithyClient.Command
|
|
|
1650
373
|
})
|
|
1651
374
|
.s("AmplifyUIBuilder", "RefreshToken", {})
|
|
1652
375
|
.n("AmplifyUIBuilderClient", "RefreshTokenCommand")
|
|
1653
|
-
.sc(RefreshToken$)
|
|
376
|
+
.sc(schemas_0.RefreshToken$)
|
|
1654
377
|
.build() {
|
|
1655
378
|
}
|
|
1656
379
|
|
|
@@ -1662,7 +385,7 @@ class StartCodegenJobCommand extends smithyClient.Command
|
|
|
1662
385
|
})
|
|
1663
386
|
.s("AmplifyUIBuilder", "StartCodegenJob", {})
|
|
1664
387
|
.n("AmplifyUIBuilderClient", "StartCodegenJobCommand")
|
|
1665
|
-
.sc(StartCodegenJob$)
|
|
388
|
+
.sc(schemas_0.StartCodegenJob$)
|
|
1666
389
|
.build() {
|
|
1667
390
|
}
|
|
1668
391
|
|
|
@@ -1674,7 +397,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1674
397
|
})
|
|
1675
398
|
.s("AmplifyUIBuilder", "TagResource", {})
|
|
1676
399
|
.n("AmplifyUIBuilderClient", "TagResourceCommand")
|
|
1677
|
-
.sc(TagResource$)
|
|
400
|
+
.sc(schemas_0.TagResource$)
|
|
1678
401
|
.build() {
|
|
1679
402
|
}
|
|
1680
403
|
|
|
@@ -1686,7 +409,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1686
409
|
})
|
|
1687
410
|
.s("AmplifyUIBuilder", "UntagResource", {})
|
|
1688
411
|
.n("AmplifyUIBuilderClient", "UntagResourceCommand")
|
|
1689
|
-
.sc(UntagResource$)
|
|
412
|
+
.sc(schemas_0.UntagResource$)
|
|
1690
413
|
.build() {
|
|
1691
414
|
}
|
|
1692
415
|
|
|
@@ -1698,7 +421,7 @@ class UpdateComponentCommand extends smithyClient.Command
|
|
|
1698
421
|
})
|
|
1699
422
|
.s("AmplifyUIBuilder", "UpdateComponent", {})
|
|
1700
423
|
.n("AmplifyUIBuilderClient", "UpdateComponentCommand")
|
|
1701
|
-
.sc(UpdateComponent$)
|
|
424
|
+
.sc(schemas_0.UpdateComponent$)
|
|
1702
425
|
.build() {
|
|
1703
426
|
}
|
|
1704
427
|
|
|
@@ -1710,7 +433,7 @@ class UpdateFormCommand extends smithyClient.Command
|
|
|
1710
433
|
})
|
|
1711
434
|
.s("AmplifyUIBuilder", "UpdateForm", {})
|
|
1712
435
|
.n("AmplifyUIBuilderClient", "UpdateFormCommand")
|
|
1713
|
-
.sc(UpdateForm$)
|
|
436
|
+
.sc(schemas_0.UpdateForm$)
|
|
1714
437
|
.build() {
|
|
1715
438
|
}
|
|
1716
439
|
|
|
@@ -1722,7 +445,7 @@ class UpdateThemeCommand extends smithyClient.Command
|
|
|
1722
445
|
})
|
|
1723
446
|
.s("AmplifyUIBuilder", "UpdateTheme", {})
|
|
1724
447
|
.n("AmplifyUIBuilderClient", "UpdateThemeCommand")
|
|
1725
|
-
.sc(UpdateTheme$)
|
|
448
|
+
.sc(schemas_0.UpdateTheme$)
|
|
1726
449
|
.build() {
|
|
1727
450
|
}
|
|
1728
451
|
|
|
@@ -1870,213 +593,55 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1870
593
|
enumerable: true,
|
|
1871
594
|
get: function () { return smithyClient.Client; }
|
|
1872
595
|
});
|
|
1873
|
-
exports
|
|
596
|
+
Object.defineProperty(exports, "AmplifyUIBuilderServiceException", {
|
|
597
|
+
enumerable: true,
|
|
598
|
+
get: function () { return AmplifyUIBuilderServiceException.AmplifyUIBuilderServiceException; }
|
|
599
|
+
});
|
|
1874
600
|
exports.AmplifyUIBuilder = AmplifyUIBuilder;
|
|
1875
601
|
exports.AmplifyUIBuilderClient = AmplifyUIBuilderClient;
|
|
1876
|
-
exports.AmplifyUIBuilderServiceException = AmplifyUIBuilderServiceException;
|
|
1877
|
-
exports.AmplifyUIBuilderServiceException$ = AmplifyUIBuilderServiceException$;
|
|
1878
|
-
exports.ApiConfiguration$ = ApiConfiguration$;
|
|
1879
|
-
exports.CodegenDependency$ = CodegenDependency$;
|
|
1880
|
-
exports.CodegenFeatureFlags$ = CodegenFeatureFlags$;
|
|
1881
|
-
exports.CodegenGenericDataEnum$ = CodegenGenericDataEnum$;
|
|
1882
|
-
exports.CodegenGenericDataField$ = CodegenGenericDataField$;
|
|
1883
602
|
exports.CodegenGenericDataFieldDataType = CodegenGenericDataFieldDataType;
|
|
1884
|
-
exports.CodegenGenericDataModel$ = CodegenGenericDataModel$;
|
|
1885
|
-
exports.CodegenGenericDataNonModel$ = CodegenGenericDataNonModel$;
|
|
1886
|
-
exports.CodegenGenericDataRelationshipType$ = CodegenGenericDataRelationshipType$;
|
|
1887
|
-
exports.CodegenJob$ = CodegenJob$;
|
|
1888
|
-
exports.CodegenJobAsset$ = CodegenJobAsset$;
|
|
1889
|
-
exports.CodegenJobGenericDataSchema$ = CodegenJobGenericDataSchema$;
|
|
1890
603
|
exports.CodegenJobGenericDataSourceType = CodegenJobGenericDataSourceType;
|
|
1891
|
-
exports.CodegenJobRenderConfig$ = CodegenJobRenderConfig$;
|
|
1892
604
|
exports.CodegenJobStatus = CodegenJobStatus;
|
|
1893
|
-
exports.CodegenJobSummary$ = CodegenJobSummary$;
|
|
1894
|
-
exports.Component$ = Component$;
|
|
1895
|
-
exports.ComponentBindingPropertiesValue$ = ComponentBindingPropertiesValue$;
|
|
1896
|
-
exports.ComponentBindingPropertiesValueProperties$ = ComponentBindingPropertiesValueProperties$;
|
|
1897
|
-
exports.ComponentChild$ = ComponentChild$;
|
|
1898
|
-
exports.ComponentConditionProperty$ = ComponentConditionProperty$;
|
|
1899
|
-
exports.ComponentDataConfiguration$ = ComponentDataConfiguration$;
|
|
1900
|
-
exports.ComponentEvent$ = ComponentEvent$;
|
|
1901
|
-
exports.ComponentProperty$ = ComponentProperty$;
|
|
1902
|
-
exports.ComponentPropertyBindingProperties$ = ComponentPropertyBindingProperties$;
|
|
1903
|
-
exports.ComponentSummary$ = ComponentSummary$;
|
|
1904
|
-
exports.ComponentVariant$ = ComponentVariant$;
|
|
1905
|
-
exports.CreateComponent$ = CreateComponent$;
|
|
1906
605
|
exports.CreateComponentCommand = CreateComponentCommand;
|
|
1907
|
-
exports.CreateComponentData$ = CreateComponentData$;
|
|
1908
|
-
exports.CreateComponentRequest$ = CreateComponentRequest$;
|
|
1909
|
-
exports.CreateComponentResponse$ = CreateComponentResponse$;
|
|
1910
|
-
exports.CreateForm$ = CreateForm$;
|
|
1911
606
|
exports.CreateFormCommand = CreateFormCommand;
|
|
1912
|
-
exports.CreateFormData$ = CreateFormData$;
|
|
1913
|
-
exports.CreateFormRequest$ = CreateFormRequest$;
|
|
1914
|
-
exports.CreateFormResponse$ = CreateFormResponse$;
|
|
1915
|
-
exports.CreateTheme$ = CreateTheme$;
|
|
1916
607
|
exports.CreateThemeCommand = CreateThemeCommand;
|
|
1917
|
-
exports.CreateThemeData$ = CreateThemeData$;
|
|
1918
|
-
exports.CreateThemeRequest$ = CreateThemeRequest$;
|
|
1919
|
-
exports.CreateThemeResponse$ = CreateThemeResponse$;
|
|
1920
|
-
exports.DataStoreRenderConfig$ = DataStoreRenderConfig$;
|
|
1921
|
-
exports.DeleteComponent$ = DeleteComponent$;
|
|
1922
608
|
exports.DeleteComponentCommand = DeleteComponentCommand;
|
|
1923
|
-
exports.DeleteComponentRequest$ = DeleteComponentRequest$;
|
|
1924
|
-
exports.DeleteForm$ = DeleteForm$;
|
|
1925
609
|
exports.DeleteFormCommand = DeleteFormCommand;
|
|
1926
|
-
exports.DeleteFormRequest$ = DeleteFormRequest$;
|
|
1927
|
-
exports.DeleteTheme$ = DeleteTheme$;
|
|
1928
610
|
exports.DeleteThemeCommand = DeleteThemeCommand;
|
|
1929
|
-
exports.DeleteThemeRequest$ = DeleteThemeRequest$;
|
|
1930
|
-
exports.ExchangeCodeForToken$ = ExchangeCodeForToken$;
|
|
1931
611
|
exports.ExchangeCodeForTokenCommand = ExchangeCodeForTokenCommand;
|
|
1932
|
-
exports.ExchangeCodeForTokenRequest$ = ExchangeCodeForTokenRequest$;
|
|
1933
|
-
exports.ExchangeCodeForTokenRequestBody$ = ExchangeCodeForTokenRequestBody$;
|
|
1934
|
-
exports.ExchangeCodeForTokenResponse$ = ExchangeCodeForTokenResponse$;
|
|
1935
|
-
exports.ExportComponents$ = ExportComponents$;
|
|
1936
612
|
exports.ExportComponentsCommand = ExportComponentsCommand;
|
|
1937
|
-
exports.ExportComponentsRequest$ = ExportComponentsRequest$;
|
|
1938
|
-
exports.ExportComponentsResponse$ = ExportComponentsResponse$;
|
|
1939
|
-
exports.ExportForms$ = ExportForms$;
|
|
1940
613
|
exports.ExportFormsCommand = ExportFormsCommand;
|
|
1941
|
-
exports.ExportFormsRequest$ = ExportFormsRequest$;
|
|
1942
|
-
exports.ExportFormsResponse$ = ExportFormsResponse$;
|
|
1943
|
-
exports.ExportThemes$ = ExportThemes$;
|
|
1944
614
|
exports.ExportThemesCommand = ExportThemesCommand;
|
|
1945
|
-
exports.ExportThemesRequest$ = ExportThemesRequest$;
|
|
1946
|
-
exports.ExportThemesResponse$ = ExportThemesResponse$;
|
|
1947
|
-
exports.FieldConfig$ = FieldConfig$;
|
|
1948
|
-
exports.FieldInputConfig$ = FieldInputConfig$;
|
|
1949
|
-
exports.FieldPosition$ = FieldPosition$;
|
|
1950
|
-
exports.FieldValidationConfiguration$ = FieldValidationConfiguration$;
|
|
1951
|
-
exports.FileUploaderFieldConfig$ = FileUploaderFieldConfig$;
|
|
1952
615
|
exports.FixedPosition = FixedPosition;
|
|
1953
|
-
exports.Form$ = Form$;
|
|
1954
616
|
exports.FormActionType = FormActionType;
|
|
1955
|
-
exports.FormBindingElement$ = FormBindingElement$;
|
|
1956
|
-
exports.FormButton$ = FormButton$;
|
|
1957
617
|
exports.FormButtonsPosition = FormButtonsPosition;
|
|
1958
|
-
exports.FormCTA$ = FormCTA$;
|
|
1959
618
|
exports.FormDataSourceType = FormDataSourceType;
|
|
1960
|
-
exports.FormDataTypeConfig$ = FormDataTypeConfig$;
|
|
1961
|
-
exports.FormInputBindingPropertiesValue$ = FormInputBindingPropertiesValue$;
|
|
1962
|
-
exports.FormInputBindingPropertiesValueProperties$ = FormInputBindingPropertiesValueProperties$;
|
|
1963
|
-
exports.FormInputValueProperty$ = FormInputValueProperty$;
|
|
1964
|
-
exports.FormInputValuePropertyBindingProperties$ = FormInputValuePropertyBindingProperties$;
|
|
1965
|
-
exports.FormStyle$ = FormStyle$;
|
|
1966
|
-
exports.FormStyleConfig$ = FormStyleConfig$;
|
|
1967
|
-
exports.FormSummary$ = FormSummary$;
|
|
1968
619
|
exports.GenericDataRelationshipType = GenericDataRelationshipType;
|
|
1969
|
-
exports.GetCodegenJob$ = GetCodegenJob$;
|
|
1970
620
|
exports.GetCodegenJobCommand = GetCodegenJobCommand;
|
|
1971
|
-
exports.GetCodegenJobRequest$ = GetCodegenJobRequest$;
|
|
1972
|
-
exports.GetCodegenJobResponse$ = GetCodegenJobResponse$;
|
|
1973
|
-
exports.GetComponent$ = GetComponent$;
|
|
1974
621
|
exports.GetComponentCommand = GetComponentCommand;
|
|
1975
|
-
exports.GetComponentRequest$ = GetComponentRequest$;
|
|
1976
|
-
exports.GetComponentResponse$ = GetComponentResponse$;
|
|
1977
|
-
exports.GetForm$ = GetForm$;
|
|
1978
622
|
exports.GetFormCommand = GetFormCommand;
|
|
1979
|
-
exports.GetFormRequest$ = GetFormRequest$;
|
|
1980
|
-
exports.GetFormResponse$ = GetFormResponse$;
|
|
1981
|
-
exports.GetMetadata$ = GetMetadata$;
|
|
1982
623
|
exports.GetMetadataCommand = GetMetadataCommand;
|
|
1983
|
-
exports.GetMetadataRequest$ = GetMetadataRequest$;
|
|
1984
|
-
exports.GetMetadataResponse$ = GetMetadataResponse$;
|
|
1985
|
-
exports.GetTheme$ = GetTheme$;
|
|
1986
624
|
exports.GetThemeCommand = GetThemeCommand;
|
|
1987
|
-
exports.GetThemeRequest$ = GetThemeRequest$;
|
|
1988
|
-
exports.GetThemeResponse$ = GetThemeResponse$;
|
|
1989
|
-
exports.GraphQLRenderConfig$ = GraphQLRenderConfig$;
|
|
1990
|
-
exports.InternalServerException = InternalServerException;
|
|
1991
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1992
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
1993
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
1994
625
|
exports.JSModule = JSModule;
|
|
1995
626
|
exports.JSScript = JSScript;
|
|
1996
627
|
exports.JSTarget = JSTarget;
|
|
1997
628
|
exports.LabelDecorator = LabelDecorator;
|
|
1998
|
-
exports.ListCodegenJobs$ = ListCodegenJobs$;
|
|
1999
629
|
exports.ListCodegenJobsCommand = ListCodegenJobsCommand;
|
|
2000
|
-
exports.ListCodegenJobsRequest$ = ListCodegenJobsRequest$;
|
|
2001
|
-
exports.ListCodegenJobsResponse$ = ListCodegenJobsResponse$;
|
|
2002
|
-
exports.ListComponents$ = ListComponents$;
|
|
2003
630
|
exports.ListComponentsCommand = ListComponentsCommand;
|
|
2004
|
-
exports.ListComponentsRequest$ = ListComponentsRequest$;
|
|
2005
|
-
exports.ListComponentsResponse$ = ListComponentsResponse$;
|
|
2006
|
-
exports.ListForms$ = ListForms$;
|
|
2007
631
|
exports.ListFormsCommand = ListFormsCommand;
|
|
2008
|
-
exports.ListFormsRequest$ = ListFormsRequest$;
|
|
2009
|
-
exports.ListFormsResponse$ = ListFormsResponse$;
|
|
2010
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2011
632
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2012
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2013
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2014
|
-
exports.ListThemes$ = ListThemes$;
|
|
2015
633
|
exports.ListThemesCommand = ListThemesCommand;
|
|
2016
|
-
exports.ListThemesRequest$ = ListThemesRequest$;
|
|
2017
|
-
exports.ListThemesResponse$ = ListThemesResponse$;
|
|
2018
|
-
exports.MutationActionSetStateParameter$ = MutationActionSetStateParameter$;
|
|
2019
|
-
exports.NoApiRenderConfig$ = NoApiRenderConfig$;
|
|
2020
|
-
exports.Predicate$ = Predicate$;
|
|
2021
|
-
exports.PutMetadataFlag$ = PutMetadataFlag$;
|
|
2022
|
-
exports.PutMetadataFlagBody$ = PutMetadataFlagBody$;
|
|
2023
634
|
exports.PutMetadataFlagCommand = PutMetadataFlagCommand;
|
|
2024
|
-
exports.PutMetadataFlagRequest$ = PutMetadataFlagRequest$;
|
|
2025
|
-
exports.ReactStartCodegenJobData$ = ReactStartCodegenJobData$;
|
|
2026
|
-
exports.RefreshToken$ = RefreshToken$;
|
|
2027
635
|
exports.RefreshTokenCommand = RefreshTokenCommand;
|
|
2028
|
-
exports.RefreshTokenRequest$ = RefreshTokenRequest$;
|
|
2029
|
-
exports.RefreshTokenRequestBody$ = RefreshTokenRequestBody$;
|
|
2030
|
-
exports.RefreshTokenResponse$ = RefreshTokenResponse$;
|
|
2031
|
-
exports.ResourceConflictException = ResourceConflictException;
|
|
2032
|
-
exports.ResourceConflictException$ = ResourceConflictException$;
|
|
2033
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2034
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2035
|
-
exports.SectionalElement$ = SectionalElement$;
|
|
2036
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2037
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2038
636
|
exports.SortDirection = SortDirection;
|
|
2039
|
-
exports.SortProperty$ = SortProperty$;
|
|
2040
|
-
exports.StartCodegenJob$ = StartCodegenJob$;
|
|
2041
637
|
exports.StartCodegenJobCommand = StartCodegenJobCommand;
|
|
2042
|
-
exports.StartCodegenJobData$ = StartCodegenJobData$;
|
|
2043
|
-
exports.StartCodegenJobRequest$ = StartCodegenJobRequest$;
|
|
2044
|
-
exports.StartCodegenJobResponse$ = StartCodegenJobResponse$;
|
|
2045
638
|
exports.StorageAccessLevel = StorageAccessLevel;
|
|
2046
|
-
exports.TagResource$ = TagResource$;
|
|
2047
639
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2048
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2049
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2050
|
-
exports.Theme$ = Theme$;
|
|
2051
|
-
exports.ThemeSummary$ = ThemeSummary$;
|
|
2052
|
-
exports.ThemeValue$ = ThemeValue$;
|
|
2053
|
-
exports.ThemeValues$ = ThemeValues$;
|
|
2054
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2055
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
2056
640
|
exports.TokenProviders = TokenProviders;
|
|
2057
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
2058
|
-
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
2059
|
-
exports.UntagResource$ = UntagResource$;
|
|
2060
641
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2061
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2062
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2063
|
-
exports.UpdateComponent$ = UpdateComponent$;
|
|
2064
642
|
exports.UpdateComponentCommand = UpdateComponentCommand;
|
|
2065
|
-
exports.UpdateComponentData$ = UpdateComponentData$;
|
|
2066
|
-
exports.UpdateComponentRequest$ = UpdateComponentRequest$;
|
|
2067
|
-
exports.UpdateComponentResponse$ = UpdateComponentResponse$;
|
|
2068
|
-
exports.UpdateForm$ = UpdateForm$;
|
|
2069
643
|
exports.UpdateFormCommand = UpdateFormCommand;
|
|
2070
|
-
exports.UpdateFormData$ = UpdateFormData$;
|
|
2071
|
-
exports.UpdateFormRequest$ = UpdateFormRequest$;
|
|
2072
|
-
exports.UpdateFormResponse$ = UpdateFormResponse$;
|
|
2073
|
-
exports.UpdateTheme$ = UpdateTheme$;
|
|
2074
644
|
exports.UpdateThemeCommand = UpdateThemeCommand;
|
|
2075
|
-
exports.UpdateThemeData$ = UpdateThemeData$;
|
|
2076
|
-
exports.UpdateThemeRequest$ = UpdateThemeRequest$;
|
|
2077
|
-
exports.UpdateThemeResponse$ = UpdateThemeResponse$;
|
|
2078
|
-
exports.ValueMapping$ = ValueMapping$;
|
|
2079
|
-
exports.ValueMappings$ = ValueMappings$;
|
|
2080
645
|
exports.paginateExportComponents = paginateExportComponents;
|
|
2081
646
|
exports.paginateExportForms = paginateExportForms;
|
|
2082
647
|
exports.paginateExportThemes = paginateExportThemes;
|
|
@@ -2084,3 +649,15 @@ exports.paginateListCodegenJobs = paginateListCodegenJobs;
|
|
|
2084
649
|
exports.paginateListComponents = paginateListComponents;
|
|
2085
650
|
exports.paginateListForms = paginateListForms;
|
|
2086
651
|
exports.paginateListThemes = paginateListThemes;
|
|
652
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
653
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
654
|
+
enumerable: true,
|
|
655
|
+
get: function () { return schemas_0[k]; }
|
|
656
|
+
});
|
|
657
|
+
});
|
|
658
|
+
Object.keys(errors).forEach(function (k) {
|
|
659
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
660
|
+
enumerable: true,
|
|
661
|
+
get: function () { return errors[k]; }
|
|
662
|
+
});
|
|
663
|
+
});
|