As the Title states using for example: ``` getCheckoutSessionParams: async ({ user, session, plan, subscription }, request) => { return { params: { allow_promotion_codes: true, tax_id_collection: { enabled: true }, billing_address_collection: 'required', customer_update: { address: 'auto' }, custom_text: { submit: { message: 'Submitted' } }, metadata: { userId: user.id, planName: plan.name } }, options: { idempotencyKey: `sub_${user.id}_${plan.name}_${Date.now()}` } }; } ``` Bring the error: Received unknown parameters: params, options Something wrong in the Types maybe?