@@ -355,31 +355,33 @@ export class BookingsController_2024_04_15 {
355
355
oAuthClientId ?: string ,
356
356
platformBookingLocation ?: string
357
357
) : Promise < NextApiRequest & { userId ?: number } & OAuthRequestParams > {
358
+ const clone = { ...req } ;
358
359
const userId = ( await this . getOwnerId ( req ) ) ?? - 1 ;
359
360
const oAuthParams = oAuthClientId
360
361
? await this . getOAuthClientsParams ( oAuthClientId )
361
362
: DEFAULT_PLATFORM_PARAMS ;
362
- Object . assign ( req , { userId, ...oAuthParams , platformBookingLocation } ) ;
363
- req . body = { ...req . body , noEmail : ! oAuthParams . arePlatformEmailsEnabled } ;
364
- return req as unknown as NextApiRequest & { userId ?: number } & OAuthRequestParams ;
363
+ Object . assign ( clone , { userId, ...oAuthParams , platformBookingLocation } ) ;
364
+ clone . body = { ...clone . body , noEmail : ! oAuthParams . arePlatformEmailsEnabled } ;
365
+ return clone as unknown as NextApiRequest & { userId ?: number } & OAuthRequestParams ;
365
366
}
366
367
367
368
private async createNextApiRecurringBookingRequest (
368
369
req : BookingRequest ,
369
370
oAuthClientId ?: string ,
370
371
platformBookingLocation ?: string
371
372
) : Promise < NextApiRequest & { userId ?: number } & OAuthRequestParams > {
373
+ const clone = { ...req } ;
372
374
const userId = ( await this . getOwnerId ( req ) ) ?? - 1 ;
373
375
const oAuthParams = oAuthClientId
374
376
? await this . getOAuthClientsParams ( oAuthClientId )
375
377
: DEFAULT_PLATFORM_PARAMS ;
376
- Object . assign ( req , {
378
+ Object . assign ( clone , {
377
379
userId,
378
380
...oAuthParams ,
379
381
platformBookingLocation,
380
382
noEmail : ! oAuthParams . arePlatformEmailsEnabled ,
381
383
} ) ;
382
- return req as unknown as NextApiRequest & { userId ?: number } & OAuthRequestParams ;
384
+ return clone as unknown as NextApiRequest & { userId ?: number } & OAuthRequestParams ;
383
385
}
384
386
385
387
private handleBookingErrors (
0 commit comments