Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

docs: Object API deprecation #4214

Merged
merged 1 commit into from
Sep 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/core-api/OBJECT.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Object API <!-- omit in toc -->

> ⚠️ Object API is [deprecated](https://github.com/ipfs/go-ipfs/issues/7936), use [FILES](FILES.md) and [DAG](DAG.md) APIs instead.

- [`ipfs.object.new([options])`](#ipfsobjectnewoptions)
- [Parameters](#parameters)
- [Options](#options)
Expand Down
6 changes: 3 additions & 3 deletions docs/core-api/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# IPFS Core API

This directory contains the description of the core JS IPFS API. In order to be considered "valid", a JS IPFS core implementation must expose the API described here.
This directory contains the description of the core JS IPFS API. In order to be considered "valid", a JS IPFS core implementation must expose the API described here.
This abstraction allows for different implementations including:
1. Full JavaScript native implementation
2. Delgate implementation that invokes another IPFS implementation (e.g., Kubo)

You can use this loose spec as documentation for consuming the core APIs.
You can use this loose spec as documentation for consuming the core APIs.

It is broken up into the following sections:

Expand All @@ -19,7 +19,7 @@ It is broken up into the following sections:
* [KEY.md](KEY.md)
* [MISCELLANEOUS.md](MISCELLANEOUS.md)
* [NAME.md](NAME.md)
* [OBJECT.md](OBJECT.md)
* [OBJECT.md](OBJECT.md) ([deprecated](https://github.com/ipfs/go-ipfs/issues/7936), use the [DAG API](DAG.md) instead)
* [PIN.md](PIN.md)
* [PUBSUB.md](PUBSUB.md)
* [REFS.md](REFS.md)
Expand Down