Skip to content

Commit 1264657

Browse files
committed
added indexes path
1 parent cc7ac18 commit 1264657

File tree

18 files changed

+1737
-1426
lines changed

18 files changed

+1737
-1426
lines changed

package-lock.json

Lines changed: 1183 additions & 1118 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"license": "ISC",
2020
"dependencies": {
2121
"@apollo/client": "^3.7.16",
22-
"@terminusdb/terminusdb-client": "^10.0.24",
22+
"@terminusdb/terminusdb-client": "^10.0.29",
2323
"@types/swagger-ui-express": "^4.1.3",
2424
"apollo-cache-inmemory": "^1.6.6",
2525
"apollo-client": "^2.6.10",

src/api/ClassDocuments.js

Lines changed: 0 additions & 152 deletions
This file was deleted.

src/api/api-doc.json

Lines changed: 70 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,17 @@
3131
"message"
3232
]
3333
},
34+
"SearchIndexText":{
35+
"type":"object",
36+
"properties":{
37+
"search":{
38+
"type":"string"
39+
}
40+
},
41+
"required":[
42+
"search"
43+
]
44+
},
3445
"PostChangeRequest":{
3546
"type":"object",
3647
"properties":{
@@ -85,7 +96,16 @@
8596
"origin_database"
8697
]
8798
},
88-
"ChangeRequest":{
99+
"IndexedCommits":{
100+
"type":"object",
101+
"properties":{
102+
"@type":{ "type":"string"},
103+
"api:status":{ "type":"string"},
104+
"api:variable_names": { "type":"array"},
105+
"bindings": {"type":"array"}
106+
}
107+
},
108+
"ChangeRequest":{
89109
"type":"object",
90110
"properties":{
91111
"id":{
@@ -138,6 +158,25 @@
138158
"diff"
139159
]
140160
},
161+
"OpenAIStatus":{
162+
"type":"object",
163+
"properties":{
164+
"key":{
165+
"type":"string"
166+
}
167+
}
168+
},
169+
"UpdateIndexedCommitDocument":{
170+
"type":"object",
171+
"properties":{
172+
"status":{
173+
"type":"string"
174+
}
175+
},
176+
"required":[
177+
"status"
178+
]
179+
},
141180
"TablesConfig":{
142181
"type":"object",
143182
"properties":{
@@ -154,8 +193,37 @@
154193
"type":"object"
155194
}
156195
}
157-
}
196+
},
197+
"CheckIndexedCommitTask":{
198+
"type":"object",
199+
"properties":{
200+
"@id":{
201+
"type":"string"
202+
},
203+
"change_request_commit_id": {
204+
"type":"string"
205+
},
206+
"indexed_at": {
207+
"type":"number"
208+
},
209+
"indexing_status": {
210+
"type":"string"
211+
},
212+
"searchable_branch_commit_id":{
213+
"type":"string"
214+
},
215+
"searchable_branch_name":{
216+
"type":"string"
217+
},
218+
"task_id":{
219+
"type":"string"
220+
},
221+
"error_message":{
222+
"type":"string"
223+
}
224+
}
158225

226+
}
159227
},
160228

161229
"paths":{

0 commit comments

Comments
 (0)