@builder.io/data-plugin-tools deprecation

I am looking to create a new data plugin that can query content from other builder spaces (I will also log a feature request for this as it really should be something builder provides as a headless cms) and all the examples reference using the @builder.io/data-plugins like so:
import { registerDataPlugin } from ‘@builder.io/data-plugin-tools’;

I installed this package and it has tons of warnings and deprecated dependencies. So i looked around the builder.io git repo to look at the code for this package and can’t find it. I did however find:

Has this package (@builder.io/plugin-tools) replaced @builder.io/data-plugin-tools?

Thanks,
John

Please fill out as many of the following questions as possible so we can help you promptly! If you don’t know how to answer or it does not apply, feel free to remove it or leave it blank.

Builder content link
e.g. Builder.io: Visual Development Platform

Builder public api key
go to Builder.io: Visual Development Platform and copy your PUBLIC api key

What are you trying to accomplish
e.g. I want to integrate builder on a landing page

Screenshots or video link
Screenshots of your issue, or even better a link to a video of what is happening or what you are trying to accomplish. We love using loom for that sort of thing

Code stack you are integrating Builder with
e.g. NextJS, react, Shopify

Reproducible code example
If you are having integration errors, please link to codesandbox or copy and paste your problematic code here. The more detail the better!

Hi John​,

Yes — @ builder.io/plugin-tools replaced @builder.io/data-plugin-tools.

Use the new package in your code:

import { registerDataPlugin } from '@builder.io/plugin-tools';
// or if you're building an editor, maybe registerPlugin or registerCommercePlugin

Then follow the Extending Builder with Plugins docs — they show how to register your data plugin and connect your other spaces.

Thanks