Skip to content

Commit 61e39f5

Browse files
committed
reintroduce nulls to writer methods
1 parent ffb5518 commit 61e39f5

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

packages/serialization/multipart/src/multipartSerializationWriter.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
4141
this.writeRawStringValue(value);
4242
}
4343
};
44-
private writeRawStringValue = (value?: string): void => {
44+
private writeRawStringValue = (value?: string | null): void => {
4545
if (value) {
4646
this.writeByteArrayValue(undefined, new TextEncoder().encode(value).buffer);
4747
}
@@ -51,27 +51,27 @@ export class MultipartSerializationWriter implements SerializationWriter {
5151
throw new Error(`serialization of boolean values is not supported with multipart`);
5252
};
5353
// eslint-disable-next-line @typescript-eslint/no-unused-vars
54-
public writeNumberValue = (key?: string, value?: number): void => {
54+
public writeNumberValue = (key?: string, value?: number | null): void => {
5555
throw new Error(`serialization of number values is not supported with multipart`);
5656
};
5757
// eslint-disable-next-line @typescript-eslint/no-unused-vars
58-
public writeGuidValue = (key?: string, value?: Guid): void => {
58+
public writeGuidValue = (key?: string, value?: Guid | null): void => {
5959
throw new Error(`serialization of guid values is not supported with multipart`);
6060
};
6161
// eslint-disable-next-line @typescript-eslint/no-unused-vars
62-
public writeDateValue = (key?: string, value?: Date): void => {
62+
public writeDateValue = (key?: string, value?: Date | null): void => {
6363
throw new Error(`serialization of date values is not supported with multipart`);
6464
};
6565
// eslint-disable-next-line @typescript-eslint/no-unused-vars
66-
public writeDateOnlyValue = (key?: string, value?: DateOnly): void => {
66+
public writeDateOnlyValue = (key?: string, value?: DateOnly | null): void => {
6767
throw new Error(`serialization of date only values is not supported with multipart`);
6868
};
6969
// eslint-disable-next-line @typescript-eslint/no-unused-vars
70-
public writeTimeOnlyValue = (key?: string, value?: TimeOnly): void => {
70+
public writeTimeOnlyValue = (key?: string, value?: TimeOnly | null): void => {
7171
throw new Error(`serialization of time only values is not supported with multipart`);
7272
};
7373
// eslint-disable-next-line @typescript-eslint/no-unused-vars
74-
public writeDurationValue = (key?: string, value?: Duration): void => {
74+
public writeDurationValue = (key?: string, value?: Duration | null): void => {
7575
throw new Error(`serialization of duration values is not supported with multipart`);
7676
};
7777
// eslint-disable-next-line @typescript-eslint/no-unused-vars
@@ -82,15 +82,15 @@ export class MultipartSerializationWriter implements SerializationWriter {
8282
// eslint-disable-next-line @typescript-eslint/no-unused-vars
8383
_key?: string,
8484
// eslint-disable-next-line @typescript-eslint/no-unused-vars
85-
_values?: T[],
85+
_values?: T[] | null,
8686
): void => {
8787
throw new Error(`serialization of collections is not supported with multipart`);
8888
};
8989
public writeCollectionOfObjectValues = <T extends Parsable>(
9090
// eslint-disable-next-line @typescript-eslint/no-unused-vars
9191
_key?: string,
9292
// eslint-disable-next-line @typescript-eslint/no-unused-vars
93-
_values?: T[],
93+
_values?: T[] | null,
9494
): void => {
9595
throw new Error(`serialization of collections is not supported with multipart`);
9696
};
@@ -113,7 +113,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
113113
// eslint-disable-next-line @typescript-eslint/no-unused-vars
114114
key?: string | undefined,
115115
// eslint-disable-next-line @typescript-eslint/no-unused-vars
116-
...values: (T | undefined)[]
116+
...values: (T | null | undefined)[]
117117
): void => {
118118
throw new Error(`serialization of enum values is not supported with multipart`);
119119
};

0 commit comments

Comments
 (0)