@@ -41,7 +41,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
41
41
this . writeRawStringValue ( value ) ;
42
42
}
43
43
} ;
44
- private writeRawStringValue = ( value ?: string ) : void => {
44
+ private writeRawStringValue = ( value ?: string | null ) : void => {
45
45
if ( value ) {
46
46
this . writeByteArrayValue ( undefined , new TextEncoder ( ) . encode ( value ) . buffer ) ;
47
47
}
@@ -51,27 +51,27 @@ export class MultipartSerializationWriter implements SerializationWriter {
51
51
throw new Error ( `serialization of boolean values is not supported with multipart` ) ;
52
52
} ;
53
53
// 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 => {
55
55
throw new Error ( `serialization of number values is not supported with multipart` ) ;
56
56
} ;
57
57
// 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 => {
59
59
throw new Error ( `serialization of guid values is not supported with multipart` ) ;
60
60
} ;
61
61
// 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 => {
63
63
throw new Error ( `serialization of date values is not supported with multipart` ) ;
64
64
} ;
65
65
// 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 => {
67
67
throw new Error ( `serialization of date only values is not supported with multipart` ) ;
68
68
} ;
69
69
// 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 => {
71
71
throw new Error ( `serialization of time only values is not supported with multipart` ) ;
72
72
} ;
73
73
// 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 => {
75
75
throw new Error ( `serialization of duration values is not supported with multipart` ) ;
76
76
} ;
77
77
// eslint-disable-next-line @typescript-eslint/no-unused-vars
@@ -82,15 +82,15 @@ export class MultipartSerializationWriter implements SerializationWriter {
82
82
// eslint-disable-next-line @typescript-eslint/no-unused-vars
83
83
_key ?: string ,
84
84
// eslint-disable-next-line @typescript-eslint/no-unused-vars
85
- _values ?: T [ ] ,
85
+ _values ?: T [ ] | null ,
86
86
) : void => {
87
87
throw new Error ( `serialization of collections is not supported with multipart` ) ;
88
88
} ;
89
89
public writeCollectionOfObjectValues = < T extends Parsable > (
90
90
// eslint-disable-next-line @typescript-eslint/no-unused-vars
91
91
_key ?: string ,
92
92
// eslint-disable-next-line @typescript-eslint/no-unused-vars
93
- _values ?: T [ ] ,
93
+ _values ?: T [ ] | null ,
94
94
) : void => {
95
95
throw new Error ( `serialization of collections is not supported with multipart` ) ;
96
96
} ;
@@ -113,7 +113,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
113
113
// eslint-disable-next-line @typescript-eslint/no-unused-vars
114
114
key ?: string | undefined ,
115
115
// eslint-disable-next-line @typescript-eslint/no-unused-vars
116
- ...values : ( T | undefined ) [ ]
116
+ ...values : ( T | null | undefined ) [ ]
117
117
) : void => {
118
118
throw new Error ( `serialization of enum values is not supported with multipart` ) ;
119
119
} ;
0 commit comments