Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update apr 22 #35

Merged
merged 1 commit into from
Apr 22, 2024
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
239 changes: 138 additions & 101 deletions Cargo.lock

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions proto/gen/es/quary/service/v1/project_file_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ export class ProjectFile_Model extends Message<ProjectFile_Model> {
name = "";

/**
* Tags are used to group different parts of the project together. For example, you could tag all models that are
* related to a specific department with the same tag.
*
* @generated from field: repeated string tags = 6;
*/
tags: string[] = [];
Expand Down Expand Up @@ -133,6 +136,19 @@ export class ProjectFile_Snapshot extends Message<ProjectFile_Snapshot> {
*/
name = "";

/**
* Tags are used to group different parts of the project together. For example, you could tag all models that are
* related to a specific department with the same tag.
*
* @generated from field: repeated string tags = 4;
*/
tags: string[] = [];

/**
* @generated from field: optional string description = 5;
*/
description?: string;

/**
* @generated from field: string unique_key = 2;
*/
Expand All @@ -152,6 +168,8 @@ export class ProjectFile_Snapshot extends Message<ProjectFile_Snapshot> {
static readonly typeName = "quary.service.v1.ProjectFile.Snapshot";
static readonly fields: FieldList = proto3.util.newFieldList(() => [
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 4, name: "tags", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
{ no: 5, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
{ no: 2, name: "unique_key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 3, name: "strategy", kind: "message", T: ProjectFile_SnapshotStrategy },
]);
Expand Down Expand Up @@ -263,6 +281,9 @@ export class ProjectFileSource extends Message<ProjectFileSource> {
name = "";

/**
* Tags are used to group different parts of the project together. For example, you could tag all sources that are
* related to a specific department with the same tag.
*
* @generated from field: repeated string tags = 6;
*/
tags: string[] = [];
Expand Down
18 changes: 18 additions & 0 deletions proto/gen/es/quary/service/v1/types_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,8 @@ export class Model extends Message<Model> {
description?: string;

/**
* Tags are used to group different parts of the project together.
*
* @generated from field: repeated string tags = 4;
*/
tags: string[] = [];
Expand Down Expand Up @@ -881,6 +883,18 @@ export class Snapshot extends Message<Snapshot> {
*/
name = "";

/**
* @generated from field: optional string description = 2;
*/
description?: string;

/**
* Tags are used to group different parts of the project together.
*
* @generated from field: repeated string tags = 8;
*/
tags: string[] = [];

/**
* @generated from field: string file_path = 3;
*/
Expand Down Expand Up @@ -918,6 +932,8 @@ export class Snapshot extends Message<Snapshot> {
static readonly typeName = "quary.service.v1.Snapshot";
static readonly fields: FieldList = proto3.util.newFieldList(() => [
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 2, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
{ no: 8, name: "tags", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
{ no: 3, name: "file_path", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 4, name: "file_sha256_hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 5, name: "unique_key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
Expand Down Expand Up @@ -1093,6 +1109,8 @@ export class Source extends Message<Source> {
path = "";

/**
* Tags are used to group different parts of the project together.
*
* @generated from field: repeated string tags = 6;
*/
tags: string[] = [];
Expand Down
3 changes: 2 additions & 1 deletion proto/gen/json_schema/ListSourcesResponse.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@
"items": {
"type": "string"
},
"type": "array"
"type": "array",
"description": "Tags are used to group different parts of the project together. For example, you could tag all sources that are related to a specific department with the same tag."
},
"description": {
"type": "string"
Expand Down
3 changes: 2 additions & 1 deletion proto/gen/json_schema/Model.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"items": {
"type": "string"
},
"type": "array"
"type": "array",
"description": "Tags are used to group different parts of the project together."
},
"file_path": {
"type": "string"
Expand Down
32 changes: 28 additions & 4 deletions proto/gen/json_schema/Project.json
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@
"items": {
"type": "string"
},
"type": "array"
"type": "array",
"description": "Tags are used to group different parts of the project together."
},
"file_path": {
"type": "string"
Expand Down Expand Up @@ -307,7 +308,8 @@
"items": {
"type": "string"
},
"type": "array"
"type": "array",
"description": "Tags are used to group different parts of the project together. For example, you could tag all models that are related to a specific department with the same tag."
},
"description": {
"type": "string"
Expand Down Expand Up @@ -338,6 +340,16 @@
"name": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array",
"description": "Tags are used to group different parts of the project together. For example, you could tag all models that are related to a specific department with the same tag."
},
"description": {
"type": "string"
},
"unique_key": {
"type": "string"
},
Expand Down Expand Up @@ -400,7 +412,8 @@
"items": {
"type": "string"
},
"type": "array"
"type": "array",
"description": "Tags are used to group different parts of the project together. For example, you could tag all sources that are related to a specific department with the same tag."
},
"description": {
"type": "string"
Expand Down Expand Up @@ -447,6 +460,16 @@
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array",
"description": "Tags are used to group different parts of the project together."
},
"file_path": {
"type": "string"
},
Expand Down Expand Up @@ -508,7 +531,8 @@
"items": {
"type": "string"
},
"type": "array"
"type": "array",
"description": "Tags are used to group different parts of the project together."
},
"file_path": {
"type": "string",
Expand Down
16 changes: 14 additions & 2 deletions proto/gen/json_schema/ProjectFile.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
"items": {
"type": "string"
},
"type": "array"
"type": "array",
"description": "Tags are used to group different parts of the project together. For example, you could tag all models that are related to a specific department with the same tag."
},
"description": {
"type": "string"
Expand Down Expand Up @@ -99,6 +100,16 @@
"name": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array",
"description": "Tags are used to group different parts of the project together. For example, you could tag all models that are related to a specific department with the same tag."
},
"description": {
"type": "string"
},
"unique_key": {
"type": "string"
},
Expand Down Expand Up @@ -161,7 +172,8 @@
"items": {
"type": "string"
},
"type": "array"
"type": "array",
"description": "Tags are used to group different parts of the project together. For example, you could tag all sources that are related to a specific department with the same tag."
},
"description": {
"type": "string"
Expand Down
3 changes: 2 additions & 1 deletion proto/gen/json_schema/ProjectFileSource.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"items": {
"type": "string"
},
"type": "array"
"type": "array",
"description": "Tags are used to group different parts of the project together. For example, you could tag all sources that are related to a specific department with the same tag."
},
"description": {
"type": "string"
Expand Down
10 changes: 10 additions & 0 deletions proto/gen/json_schema/Snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array",
"description": "Tags are used to group different parts of the project together."
},
"file_path": {
"type": "string"
},
Expand Down
3 changes: 2 additions & 1 deletion proto/gen/json_schema/Source.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"items": {
"type": "string"
},
"type": "array"
"type": "array",
"description": "Tags are used to group different parts of the project together."
},
"file_path": {
"type": "string",
Expand Down
Loading
Loading