File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ export class Service {
317
317
return item
318
318
}
319
319
320
- private async updateOrPatch (
320
+ async # updateOrPatch(
321
321
name : string ,
322
322
id : string ,
323
323
body : Omit < Item , 'id' > = { } ,
@@ -342,15 +342,15 @@ export class Service {
342
342
id : string ,
343
343
body : Omit < Item , 'id' > = { } ,
344
344
) : Promise < Item | undefined > {
345
- return this . updateOrPatch ( name , id , body , false )
345
+ return this . # updateOrPatch( name , id , body , false )
346
346
}
347
347
348
348
async patch (
349
349
name : string ,
350
350
id : string ,
351
351
body : Omit < Item , 'id' > = { } ,
352
352
) : Promise < Item | undefined > {
353
- return this . updateOrPatch ( name , id , body , true )
353
+ return this . # updateOrPatch( name , id , body , true )
354
354
}
355
355
356
356
async destroy (
You can’t perform that action at this time.
0 commit comments