This is an automated email from the ASF dual-hosted git repository.
hanahmily pushed a change to branch main
in repository
https://gitbox.apache.org/repos/asf/skywalking-banyandb-client-proto.git
from 62bfa05 Init project
new 164447d Add proto files for Banyandb API including common, database,
measure, model, property, stream, and trace definitions
new 374f5f8 Update README.md to enhance documentation on BanyanDB client
proto definitions, including sync process, prerequisites, and project structure.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.asf.yml | 42 ++
.github/workflows/ci.yml | 87 ++++
.github/workflows/sync-proto.yml | 89 ++++
.gitignore | 10 +
.licenserc.yaml | 35 ++
.mvn/wrapper/maven-wrapper.jar | Bin 0 -> 62547 bytes
.mvn/wrapper/maven-wrapper.properties | 2 +
HEADER | 14 +
Makefile | 77 +++
README.md | 122 ++++-
mvnw | 29 ++
pom.xml | 107 +++++
proto/banyandb/v1/banyandb-common.proto | 182 +++++++
proto/banyandb/v1/banyandb-database.proto | 742 ++++++++++++++++++++++++++++
proto/banyandb/v1/banyandb-measure.proto | 219 +++++++++
proto/banyandb/v1/banyandb-model.proto | 198 ++++++++
proto/banyandb/v1/banyandb-property.proto | 112 +++++
proto/banyandb/v1/banyandb-stream.proto | 130 +++++
proto/banyandb/v1/banyandb-trace.proto | 122 +++++
scripts/sync_proto.py | 769 ++++++++++++++++++++++++++++++
20 files changed, 3082 insertions(+), 6 deletions(-)
create mode 100644 .asf.yml
create mode 100644 .github/workflows/ci.yml
create mode 100644 .github/workflows/sync-proto.yml
create mode 100644 .gitignore
create mode 100644 .licenserc.yaml
create mode 100644 .mvn/wrapper/maven-wrapper.jar
create mode 100644 .mvn/wrapper/maven-wrapper.properties
create mode 100644 HEADER
create mode 100644 Makefile
create mode 100755 mvnw
create mode 100644 pom.xml
create mode 100644 proto/banyandb/v1/banyandb-common.proto
create mode 100644 proto/banyandb/v1/banyandb-database.proto
create mode 100644 proto/banyandb/v1/banyandb-measure.proto
create mode 100644 proto/banyandb/v1/banyandb-model.proto
create mode 100644 proto/banyandb/v1/banyandb-property.proto
create mode 100644 proto/banyandb/v1/banyandb-stream.proto
create mode 100644 proto/banyandb/v1/banyandb-trace.proto
create mode 100755 scripts/sync_proto.py