diff --git a/docs/_quarto.yml b/docs/_quarto.yml index acc400f29482..0d0b8ece36f2 100644 --- a/docs/_quarto.yml +++ b/docs/_quarto.yml @@ -367,9 +367,60 @@ quartodoc: name: Temporal expressions desc: Dates, times, timestamps and intervals. contents: - - TimestampValue - - DateValue - - TimeValue + - name: TimestampValue + members: + - add + - radd + - sub + - between + - bucket + - date + - day + - day_of_week + - day_of_year + - delta + - epoch_seconds + - hour + - microsecond + - millisecond + - minute + - month + - quarter + - second + - strftime + - time + - truncate + - week_of_year + - year + - name: DateValue + members: + - add + - radd + - sub + - day + - day_of_week + - day_of_year + - epoch_seconds + - month + - quarter + - strftime + - truncate + - week_of_year + - year + - name: TimeValue + members: + - add + - radd + - sub + - between + - hour + - microsecond + - millisecond + - minute + - second + - strftime + - time + - truncate - IntervalValue - DayOfWeek - name: now @@ -392,7 +443,6 @@ quartodoc: package: ibis dynamic: true signature_name: full - - kind: page path: expression-collections package: ibis diff --git a/justfile b/justfile index b6e08f881a25..5f19041af580 100644 --- a/justfile +++ b/justfile @@ -160,6 +160,11 @@ docs-render: docs-preview: quarto preview docs +# regen api and preview docs +docs-api-preview: + just docs-apigen --verbose + quarto preview docs + # deploy docs to netlify docs-deploy: quarto publish --no-prompt --no-browser --no-render netlify docs