File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2121 "noShadow" : " off" ,
2222 "useNumericSeparators" : " off"
2323 },
24+ "performance" : {
25+ "noNamespaceImport" : " off"
26+ },
2427 "style" : {
2528 "noEnum" : " off" ,
2629 "noInferrableTypes" : " off" ,
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ class PangeaRequest {
118118 data : Request ,
119119 options : PostOptions = { }
120120 ) : Promise < PangeaResponse < R > | R > {
121- options = Object . assign ( { pangeaResponse : true } , options ) ;
121+ options = { pangeaResponse : true , ... options } ;
122122
123123 const url = this . getUrl ( endpoint ) ;
124124 this . checkConfigID ( data ) ;
@@ -512,10 +512,7 @@ class PangeaRequest {
512512 pangeaResponse ?: boolean ;
513513 }
514514 ) : Promise < PangeaResponse < T > | T > {
515- options = Object . assign (
516- { checkResponse : true , pangeaResponse : true } ,
517- options
518- ) ;
515+ options = { checkResponse : true , pangeaResponse : true , ...options } ;
519516
520517 const url = this . getUrl ( endpoint ) ;
521518 const response = await this . httpRequest ( url , {
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ export class ManagementService {
6767 ) : Promise < PangeaResponse < Management . Organization > > {
6868 return await this . console . request . post ( "v1beta/platform/org/update" , {
6969 id : orgId ,
70- name : name ,
70+ name,
7171 } as object ) ;
7272 }
7373
You can’t perform that action at this time.
0 commit comments