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

fix: correct api/v1 doc section relative to the timestamp field in upserts #11490

Merged
merged 2 commits into from
Mar 20, 2025
Merged
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
Original file line number Diff line number Diff line change
@@ -151,7 +151,7 @@ export const config = {
* description: Tags to associate with the document.
* timestamp:
* type: number
* description: Reserved for internal use, should not be set. Unix timestamp (in seconds) of the time the document was last updated (e.g. 1698225000).
* description: Unix timestamp (in milliseconds) for the document (e.g. 1736365559000).
* light_document_output:
* type: boolean
* description: If true, a lightweight version of the document will be returned in the response (excluding the text, chunks and vectors). Defaults to false.
Original file line number Diff line number Diff line change
@@ -104,7 +104,7 @@ import { CoreAPI } from "@app/types";
* description: Description of the table
* timestamp:
* type: number
* description: Reserved for internal use, should not be set. Unix timestamp (in seconds) of the time the document was last updated (e.g. 1698225000).
* description: Unix timestamp (in milliseconds) for the table (e.g. 1736365559000).
* tags:
* type: array
* items:
4 changes: 2 additions & 2 deletions front/public/swagger.json
Original file line number Diff line number Diff line change
@@ -2384,7 +2384,7 @@
},
"timestamp": {
"type": "number",
"description": "Reserved for internal use, should not be set. Unix timestamp (in seconds) of the time the document was last updated (e.g. 1698225000)."
"description": "Unix timestamp (in milliseconds) for the document (e.g. 1736365559000)."
},
"light_document_output": {
"type": "boolean",
@@ -3552,7 +3552,7 @@
},
"timestamp": {
"type": "number",
"description": "Reserved for internal use, should not be set. Unix timestamp (in seconds) of the time the document was last updated (e.g. 1698225000)."
"description": "Unix timestamp (in milliseconds) for the table (e.g. 1736365559000)."
},
"tags": {
"type": "array",
Loading