Add new record types ApplicationRecord, WebAppDeploymentRecord, GeneralRecord #113

Merged
telackey merged 3 commits from telackey/newtypes into main 2023-11-20 22:01:04 +00:00
Member

See also: WIP: cerc-io/laconic-sdk#44

message ApplicationRecord {
  string type           = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
  string name           = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""];
  string description    = 3 [(gogoproto.moretags) = "json:\"description\" yaml:\"description\""];
  string version        = 4 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
  string homepage       = 5 [(gogoproto.moretags) = "json:\"homepage\" yaml:\"homepage\""];
  string license        = 6 [(gogoproto.moretags) = "json:\"license\" yaml:\"license\""];
  string author         = 7 [(gogoproto.moretags) = "json:\"author\" yaml:\"author\""];
  string repository     = 8 [(gogoproto.moretags) = "json:\"repository\" yaml:\"repository\""];
  string repository_tag = 9 [(gogoproto.moretags) = "json:\"repositoryTag\" yaml:\"repositoryTag\""];
  string app_version    = 10 [(gogoproto.moretags) = "json:\"appVersion\" yaml:\"appVersion\""];
  string app_type       = 11 [(gogoproto.moretags) = "json:\"appType\" yaml:\"appType\""];
  string meta           = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""];
  repeated string tags  = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""];
}

message WebAppDeploymentRecord {
  string type           = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
  string name           = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""];
  string description    = 3 [(gogoproto.moretags) = "json:\"description\" yaml:\"description\""];
  string version        = 4 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
  string application    = 5 [(gogoproto.moretags) = "json:\"application\" yaml:\"application\""];
  string url            = 6 [(gogoproto.moretags) = "json:\"\" yaml:\"name\""];
  string meta           = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""];
  repeated string tags  = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""];
}

message GeneralRecord {
  string type           = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
  string name           = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""];
  string description    = 3 [(gogoproto.moretags) = "json:\"description\" yaml:\"description\""];
  string version        = 4 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
  string category       = 5 [(gogoproto.moretags) = "json:\"category\" yaml:\"category\""];
  string value          = 6 [(gogoproto.moretags) = "json:\"value\" yaml:\"value\""];
  string meta           = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""];
  repeated string tags  = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""];
See also: WIP: https://git.vdb.to/cerc-io/laconic-sdk/pulls/44 ``` message ApplicationRecord { string type = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""]; string name = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""]; string description = 3 [(gogoproto.moretags) = "json:\"description\" yaml:\"description\""]; string version = 4 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""]; string homepage = 5 [(gogoproto.moretags) = "json:\"homepage\" yaml:\"homepage\""]; string license = 6 [(gogoproto.moretags) = "json:\"license\" yaml:\"license\""]; string author = 7 [(gogoproto.moretags) = "json:\"author\" yaml:\"author\""]; string repository = 8 [(gogoproto.moretags) = "json:\"repository\" yaml:\"repository\""]; string repository_tag = 9 [(gogoproto.moretags) = "json:\"repositoryTag\" yaml:\"repositoryTag\""]; string app_version = 10 [(gogoproto.moretags) = "json:\"appVersion\" yaml:\"appVersion\""]; string app_type = 11 [(gogoproto.moretags) = "json:\"appType\" yaml:\"appType\""]; string meta = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""]; repeated string tags = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""]; } message WebAppDeploymentRecord { string type = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""]; string name = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""]; string description = 3 [(gogoproto.moretags) = "json:\"description\" yaml:\"description\""]; string version = 4 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""]; string application = 5 [(gogoproto.moretags) = "json:\"application\" yaml:\"application\""]; string url = 6 [(gogoproto.moretags) = "json:\"\" yaml:\"name\""]; string meta = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""]; repeated string tags = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""]; } message GeneralRecord { string type = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""]; string name = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""]; string description = 3 [(gogoproto.moretags) = "json:\"description\" yaml:\"description\""]; string version = 4 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""]; string category = 5 [(gogoproto.moretags) = "json:\"category\" yaml:\"category\""]; string value = 6 [(gogoproto.moretags) = "json:\"value\" yaml:\"value\""]; string meta = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""]; repeated string tags = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""]; ```
telackey added 2 commits 2023-11-17 23:04:11 +00:00
WIP: Add new record types ApplicationRecord, WebAppDeploymentRecord, GeneralRecord
Some checks failed
Build / cleanup-runs (pull_request) Successful in 7s
Deploy Contract / cleanup-runs (pull_request) Successful in 4s
Build / build (pull_request) Failing after 1m15s
Deploy Contract / deploy (pull_request) Failing after 1m6s
Pull Request Labeler / triage (pull_request) Failing after 13s
CodeQL / Analyze (go) (pull_request) Failing after 2m11s
Lint / Run flake8 on python integration tests (pull_request) Failing after 47s
Protobuf / lint (pull_request) Successful in 20s
Lint / Run golangci-lint (pull_request) Failing after 1m17s
Dependency Review / dependency-review (pull_request) Failing after 2m41s
Protobuf / break-check (pull_request) Successful in 39s
Semgrep / Scan (pull_request) Failing after 25s
Run Gosec / Gosec (pull_request) Failing after 48s
Tests / cleanup-runs (pull_request) Failing after 42s
Tests / test-rpc (pull_request) Failing after 36s
Tests / test-unit-cover (pull_request) Failing after 1m32s
Tests / test-importer (pull_request) Failing after 1m24s
Tests / sdk_tests (pull_request) Failing after 3m7s
7ea9a26cc8
telackey requested review from dboreham 2023-11-17 23:04:17 +00:00
telackey self-assigned this 2023-11-17 23:05:02 +00:00
dboreham approved these changes 2023-11-20 16:39:47 +00:00
telackey added 1 commit 2023-11-20 20:46:12 +00:00
Fix case
Some checks failed
Build / cleanup-runs (pull_request) Successful in 5s
Build / build (pull_request) Successful in 25s
Deploy Contract / cleanup-runs (pull_request) Failing after 8s
CodeQL / Analyze (go) (pull_request) Successful in 49s
Pull Request Labeler / triage (pull_request) Failing after 22s
Dependency Review / dependency-review (pull_request) Successful in 1m15s
Deploy Contract / deploy (pull_request) Failing after 50s
Lint / Run flake8 on python integration tests (pull_request) Failing after 22s
Protobuf / lint (pull_request) Successful in 23s
Lint / Run golangci-lint (pull_request) Successful in 40s
Tests / cleanup-runs (pull_request) Failing after 11s
Semgrep / Scan (pull_request) Failing after 27s
Run Gosec / Gosec (pull_request) Successful in 21s
Protobuf / break-check (pull_request) Successful in 31s
Tests / test-importer (pull_request) Successful in 35s
Tests / test-rpc (pull_request) Successful in 34s
Tests / test-unit-cover (pull_request) Successful in 59s
Tests / sdk_tests (pull_request) Failing after 1m29s
a3e1eec0c8
telackey changed title from WIP: Add new record types ApplicationRecord, WebAppDeploymentRecord, GeneralRecord to Add new record types ApplicationRecord, WebAppDeploymentRecord, GeneralRecord 2023-11-20 22:00:51 +00:00
telackey merged commit 072b174c9b into main 2023-11-20 22:01:04 +00:00
Sign in to join this conversation.
No reviewers
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: cerc-io/laconicd#113
No description provided.