We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e08cf6 commit bf0e314Copy full SHA for bf0e314
packages/core/src/submodules/protocols/xml/XmlShapeDeserializer.ts
@@ -58,6 +58,11 @@ export class XmlShapeDeserializer extends SerdeContextConfig implements ShapeDes
58
59
public readSchema(_schema: Schema, value: any): any {
60
const ns = NormalizedSchema.of(_schema);
61
+
62
+ if (ns.isUnitSchema()) {
63
+ return;
64
+ }
65
66
const traits = ns.getMergedTraits();
67
68
if (ns.isListSchema() && !Array.isArray(value)) {
0 commit comments