This repository was archived by the owner on May 11, 2022. It is now read-only.
File tree 10 files changed +305
-265
lines changed
env/docker/storage/context/initdb.d
10 files changed +305
-265
lines changed Original file line number Diff line number Diff line change 29
29
"SourceNodeMeta" : {
30
30
"type" : " object" ,
31
31
"properties" : {
32
- "desc " : {
32
+ "description " : {
33
33
"type" : " string"
34
34
},
35
35
"name" : {
50
50
"type" : " string" ,
51
51
"format" : " date-time"
52
52
},
53
- "desc " : {
53
+ "description " : {
54
54
"type" : " string"
55
55
},
56
56
"emoji" : {
87
87
"type" : " string" ,
88
88
"format" : " date-time"
89
89
},
90
- "desc " : {
90
+ "description " : {
91
91
"type" : " string"
92
92
},
93
93
"emoji" : {
127
127
"type" : " string" ,
128
128
"format" : " date-time"
129
129
},
130
- "desc " : {
130
+ "description " : {
131
131
"type" : " string"
132
132
},
133
133
"emoji" : {
154
154
"$ref" : " #/definitions/v1BatchRequestColumn"
155
155
}
156
156
},
157
- "desc " : {
157
+ "description " : {
158
158
"type" : " string"
159
159
},
160
160
"emoji" : {
180
180
"v1BatchRequestCard" : {
181
181
"type" : " object" ,
182
182
"properties" : {
183
- "desc " : {
183
+ "description " : {
184
184
"type" : " string"
185
185
},
186
186
"emoji" : {
209
209
"$ref" : " #/definitions/v1BatchRequestCard"
210
210
}
211
211
},
212
- "desc " : {
212
+ "description " : {
213
213
"type" : " string"
214
214
},
215
215
"emoji" : {
301
301
"v1Source" : {
302
302
"type" : " object" ,
303
303
"properties" : {
304
- "desc " : {
304
+ "description " : {
305
305
"type" : " string"
306
306
},
307
307
"id" : {
353
353
"v1Vendor" : {
354
354
"type" : " object" ,
355
355
"properties" : {
356
- "desc " : {
356
+ "description " : {
357
357
"type" : " string"
358
358
},
359
359
"id" : {
Original file line number Diff line number Diff line change 39
39
"type" : " string" ,
40
40
"format" : " date-time"
41
41
},
42
- "desc " : {
42
+ "description " : {
43
43
"type" : " string"
44
44
},
45
45
"emoji" : {
76
76
"type" : " string" ,
77
77
"format" : " date-time"
78
78
},
79
- "desc " : {
79
+ "description " : {
80
80
"type" : " string"
81
81
},
82
82
"emoji" : {
116
116
"type" : " string" ,
117
117
"format" : " date-time"
118
118
},
119
- "desc " : {
119
+ "description " : {
120
120
"type" : " string"
121
121
},
122
122
"emoji" : {
153
153
"v1Source" : {
154
154
"type" : " object" ,
155
155
"properties" : {
156
- "desc " : {
156
+ "description " : {
157
157
"type" : " string"
158
158
},
159
159
"id" : {
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ message BatchRequest {
32
32
message Board {
33
33
string title = 1 ;
34
34
string emoji = 2 ;
35
- string desc = 3 ;
35
+ string description = 3 ;
36
36
37
37
repeated Column columns = 4 ;
38
38
repeated Filter filters = 5 ;
@@ -42,15 +42,15 @@ message BatchRequest {
42
42
message Column {
43
43
string title = 1 ;
44
44
string emoji = 2 ;
45
- string desc = 3 ;
45
+ string description = 3 ;
46
46
47
47
repeated Card cards = 4 ;
48
48
}
49
49
50
50
message Card {
51
51
string title = 1 ;
52
52
string emoji = 2 ;
53
- string desc = 3 ;
53
+ string description = 3 ;
54
54
string url = 4 ;
55
55
repeated string labels = 5 ;
56
56
}
@@ -88,17 +88,19 @@ message BatchResponse {
88
88
message Criteria {}
89
89
90
90
message NewBoard {
91
- string title = 1 ;
92
- string emoji = 2 ;
93
- string desc = 3 ;
91
+ URI id = 1 ;
92
+
93
+ string title = 2 ;
94
+ string emoji = 3 ;
95
+ string description = 4 ;
94
96
}
95
97
96
98
message Board {
97
99
URI id = 1 ;
98
100
99
101
string title = 2 ;
100
102
string emoji = 3 ;
101
- string desc = 4 ;
103
+ string description = 4 ;
102
104
103
105
repeated Column columns = 5 ;
104
106
repeated Filter filters = 6 ;
@@ -113,19 +115,20 @@ message BoardList {
113
115
}
114
116
115
117
message NewColumn {
116
- URI board_id = 1 ;
118
+ URI id = 1 ;
119
+ URI board_id = 2 ;
117
120
118
- string title = 2 ;
119
- string emoji = 3 ;
120
- string desc = 4 ;
121
+ string title = 3 ;
122
+ string emoji = 4 ;
123
+ string description = 5 ;
121
124
}
122
125
123
126
message Column {
124
127
URI id = 1 ;
125
128
126
129
string title = 3 ;
127
130
string emoji = 4 ;
128
- string desc = 5 ;
131
+ string description = 5 ;
129
132
130
133
repeated Card cards = 6 ;
131
134
@@ -134,21 +137,22 @@ message Column {
134
137
}
135
138
136
139
message NewCard {
137
- URI column_id = 1 ;
140
+ URI id = 1 ;
141
+ URI column_id = 2 ;
138
142
139
- string title = 2 ;
140
- string emoji = 3 ;
141
- string desc = 4 ;
142
- string url = 5 ;
143
- repeated string labels = 6 ;
143
+ string title = 3 ;
144
+ string emoji = 4 ;
145
+ string description = 5 ;
146
+ string url = 6 ;
147
+ repeated string labels = 7 ;
144
148
}
145
149
146
150
message Card {
147
151
URI id = 1 ;
148
152
149
153
string title = 3 ;
150
154
string emoji = 4 ;
151
- string desc = 5 ;
155
+ string description = 5 ;
152
156
string url = 6 ;
153
157
repeated string labels = 7 ;
154
158
Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ service VendorService {
21
21
message Secret {
22
22
string token = 1 ;
23
23
string name = 2 ;
24
- string desc = 3 ;
24
+ string description = 3 ;
25
25
Provider provider = 4 ;
26
26
}
27
27
28
28
message Vendor {
29
29
URI id = 1 ;
30
30
string name = 2 ;
31
- string desc = 3 ;
31
+ string description = 3 ;
32
32
Provider type = 4 ;
33
33
}
34
34
@@ -39,7 +39,7 @@ message VendorList {
39
39
message Source {
40
40
URI id = 1 ;
41
41
string name = 2 ;
42
- string desc = 3 ;
42
+ string description = 3 ;
43
43
}
44
44
45
45
message SourceList {
@@ -49,7 +49,7 @@ message SourceList {
49
49
message SourceNode {
50
50
message Meta {
51
51
string name = 1 ;
52
- string desc = 2 ;
52
+ string description = 2 ;
53
53
}
54
54
55
55
Meta meta = 1 ;
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ CREATE TABLE "column"
26
26
" deleted_at" TIMESTAMP NULL DEFAULT NULL
27
27
);
28
28
29
+ -- TODO:debt add
30
+ -- - string url
31
+ -- - repeated string labels
32
+
29
33
CREATE TABLE "card "
30
34
(
31
35
" id" UUID NOT NULL PRIMARY KEY DEFAULT uuid_generate_v4(),
You can’t perform that action at this time.
0 commit comments