@aws-sdk/client-amplifyuibuilder 3.261.0 → 3.262.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.
|
@@ -2057,11 +2057,11 @@ const deserializeAws_restJson1Component = (output, context) => {
|
|
|
2057
2057
|
? deserializeAws_restJson1ComponentCollectionProperties(output.collectionProperties, context)
|
|
2058
2058
|
: undefined,
|
|
2059
2059
|
componentType: (0, smithy_client_1.expectString)(output.componentType),
|
|
2060
|
-
createdAt: output.createdAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
2060
|
+
createdAt: output.createdAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.createdAt)) : undefined,
|
|
2061
2061
|
environmentName: (0, smithy_client_1.expectString)(output.environmentName),
|
|
2062
2062
|
events: output.events != null ? deserializeAws_restJson1ComponentEvents(output.events, context) : undefined,
|
|
2063
2063
|
id: (0, smithy_client_1.expectString)(output.id),
|
|
2064
|
-
modifiedAt: output.modifiedAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
2064
|
+
modifiedAt: output.modifiedAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.modifiedAt)) : undefined,
|
|
2065
2065
|
name: (0, smithy_client_1.expectString)(output.name),
|
|
2066
2066
|
overrides: output.overrides != null ? deserializeAws_restJson1ComponentOverrides(output.overrides, context) : undefined,
|
|
2067
2067
|
properties: output.properties != null ? deserializeAws_restJson1ComponentProperties(output.properties, context) : undefined,
|
|
@@ -2586,10 +2586,10 @@ const deserializeAws_restJson1Tags = (output, context) => {
|
|
|
2586
2586
|
const deserializeAws_restJson1Theme = (output, context) => {
|
|
2587
2587
|
return {
|
|
2588
2588
|
appId: (0, smithy_client_1.expectString)(output.appId),
|
|
2589
|
-
createdAt: output.createdAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
2589
|
+
createdAt: output.createdAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.createdAt)) : undefined,
|
|
2590
2590
|
environmentName: (0, smithy_client_1.expectString)(output.environmentName),
|
|
2591
2591
|
id: (0, smithy_client_1.expectString)(output.id),
|
|
2592
|
-
modifiedAt: output.modifiedAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
2592
|
+
modifiedAt: output.modifiedAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.modifiedAt)) : undefined,
|
|
2593
2593
|
name: (0, smithy_client_1.expectString)(output.name),
|
|
2594
2594
|
overrides: output.overrides != null ? deserializeAws_restJson1ThemeValuesList(output.overrides, context) : undefined,
|
|
2595
2595
|
tags: output.tags != null ? deserializeAws_restJson1Tags(output.tags, context) : undefined,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
|
|
2
|
-
import { decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, expectUnion as __expectUnion, limitedParseFloat32 as __limitedParseFloat32, map as __map,
|
|
2
|
+
import { decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, expectUnion as __expectUnion, limitedParseFloat32 as __limitedParseFloat32, map as __map, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, resolvedPath as __resolvedPath, serializeFloat as __serializeFloat, throwDefaultError, } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
4
4
|
import { AmplifyUIBuilderServiceException as __BaseException } from "../models/AmplifyUIBuilderServiceException";
|
|
5
5
|
import { FieldPosition, FormStyleConfig, InternalServerException, InvalidParameterException, ResourceConflictException, ResourceNotFoundException, ServiceQuotaExceededException, UnauthorizedException, } from "../models/models_0";
|
|
@@ -2010,11 +2010,11 @@ const deserializeAws_restJson1Component = (output, context) => {
|
|
|
2010
2010
|
? deserializeAws_restJson1ComponentCollectionProperties(output.collectionProperties, context)
|
|
2011
2011
|
: undefined,
|
|
2012
2012
|
componentType: __expectString(output.componentType),
|
|
2013
|
-
createdAt: output.createdAt != null ? __expectNonNull(
|
|
2013
|
+
createdAt: output.createdAt != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.createdAt)) : undefined,
|
|
2014
2014
|
environmentName: __expectString(output.environmentName),
|
|
2015
2015
|
events: output.events != null ? deserializeAws_restJson1ComponentEvents(output.events, context) : undefined,
|
|
2016
2016
|
id: __expectString(output.id),
|
|
2017
|
-
modifiedAt: output.modifiedAt != null ? __expectNonNull(
|
|
2017
|
+
modifiedAt: output.modifiedAt != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.modifiedAt)) : undefined,
|
|
2018
2018
|
name: __expectString(output.name),
|
|
2019
2019
|
overrides: output.overrides != null ? deserializeAws_restJson1ComponentOverrides(output.overrides, context) : undefined,
|
|
2020
2020
|
properties: output.properties != null ? deserializeAws_restJson1ComponentProperties(output.properties, context) : undefined,
|
|
@@ -2539,10 +2539,10 @@ const deserializeAws_restJson1Tags = (output, context) => {
|
|
|
2539
2539
|
const deserializeAws_restJson1Theme = (output, context) => {
|
|
2540
2540
|
return {
|
|
2541
2541
|
appId: __expectString(output.appId),
|
|
2542
|
-
createdAt: output.createdAt != null ? __expectNonNull(
|
|
2542
|
+
createdAt: output.createdAt != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.createdAt)) : undefined,
|
|
2543
2543
|
environmentName: __expectString(output.environmentName),
|
|
2544
2544
|
id: __expectString(output.id),
|
|
2545
|
-
modifiedAt: output.modifiedAt != null ? __expectNonNull(
|
|
2545
|
+
modifiedAt: output.modifiedAt != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.modifiedAt)) : undefined,
|
|
2546
2546
|
name: __expectString(output.name),
|
|
2547
2547
|
overrides: output.overrides != null ? deserializeAws_restJson1ThemeValuesList(output.overrides, context) : undefined,
|
|
2548
2548
|
tags: output.tags != null ? deserializeAws_restJson1Tags(output.tags, context) : undefined,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amplifyuibuilder",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amplifyuibuilder Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.262.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.262.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.259.0",
|
|
25
25
|
"@aws-sdk/credential-provider-node": "3.261.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.257.0",
|