Skip to content

Commit 7e1e7b8

Browse files
committed
enable nulls
1 parent a4fceb0 commit 7e1e7b8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/abstractions/src/multipartBody.ts

-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ export function serializeMultipartBody(writer: SerializationWriter, multipartBod
114114
let first = true;
115115
for (const partName in parts) {
116116
if (Object.prototype.hasOwnProperty.call(parts, partName)) {
117-
// Added guard
118117
if (first) {
119118
first = false;
120119
} else {

packages/serialization/multipart/src/multipartSerializationWriter.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
3030
public onBeforeObjectSerialization: ((value: Parsable) => void) | undefined;
3131
public onAfterObjectSerialization: ((value: Parsable) => void) | undefined;
3232
public onStartObjectSerialization: ((value: Parsable, writer: SerializationWriter) => void) | undefined;
33-
public writeStringValue = (key?: string, value?: string): void => {
33+
public writeStringValue = (key?: string, value?: string | null): void => {
3434
if (key) {
3535
this.writeRawStringValue(key);
3636
}
@@ -47,7 +47,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
4747
}
4848
};
4949
// eslint-disable-next-line @typescript-eslint/no-unused-vars
50-
public writeBooleanValue = (key?: string, value?: boolean): void => {
50+
public writeBooleanValue = (key?: string, value?: boolean | null): void => {
5151
throw new Error(`serialization of boolean values is not supported with multipart`);
5252
};
5353
// eslint-disable-next-line @typescript-eslint/no-unused-vars

0 commit comments

Comments
 (0)