docs: add deprecation warnings for addNoun and addVerb methods
- Add @deprecated JSDoc tags to TypeScript definitions
- Update all documentation examples to use modern add() and relate() API
- Preserve batch operations (addNouns, addVerbs) as they remain current
- Mark deprecated methods in both source and compiled definitions
Migration guide:
- addNoun(data, type, metadata) → add(data, { nounType: type, ...metadata })
- addVerb(source, target, type, metadata) → relate(source, target, type, metadata)
This commit is contained in:
parent
6e299c576c
commit
e311a149df
21 changed files with 343 additions and 331 deletions
|
|
@ -404,7 +404,7 @@ const brain = new BrainyData()
|
|||
await brain.init()
|
||||
|
||||
// You're now running the same tech as Fortune 500 companies
|
||||
await brain.addNoun("Your data is enterprise-grade", {
|
||||
await brain.add("Your data is enterprise-grade", {
|
||||
secure: true,
|
||||
durable: true,
|
||||
scalable: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue