Skip to content

Commit 6ec6350

Browse files
github-automation-metabaseMetabase Docs bot
andauthored
[auto] adding content to release-x.57.x->release-x.57.x (#826)
Co-authored-by: Metabase Docs bot <[email protected]>
1 parent 7c485d1 commit 6ec6350

File tree

592 files changed

+2038
-1968
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

592 files changed

+2038
-1968
lines changed

_docs/latest/api.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1463,6 +1463,9 @@
14631463
"metabase-enterprise.metabot-v3.tools.api.column" : {
14641464
"type" : "object",
14651465
"properties" : {
1466+
"database_type" : {
1467+
"type" : "string"
1468+
},
14661469
"description" : {
14671470
"type" : "string"
14681471
},
@@ -2641,7 +2644,7 @@
26412644
"properties" : {
26422645
"field_granularity" : {
26432646
"type" : "string",
2644-
"enum" : [ "day", "week", "month", "quarter", "year" ]
2647+
"enum" : [ "minute", "hour", "day", "week", "month", "quarter", "year", "day-of-week" ]
26452648
},
26462649
"field_id" : {
26472650
"type" : "string"
@@ -3085,6 +3088,9 @@
30853088
"metabase-enterprise.metabot-v3.tools.api.table-result" : {
30863089
"type" : "object",
30873090
"properties" : {
3091+
"database_engine" : {
3092+
"type" : "string"
3093+
},
30883094
"id" : {
30893095
"type" : "integer"
30903096
},
@@ -3100,6 +3106,9 @@
31003106
"$ref" : "#/components/schemas/metabase-enterprise.metabot-v3.tools.api.table-result"
31013107
}
31023108
},
3109+
"related_by" : {
3110+
"type" : "string"
3111+
},
31033112
"display_name" : {
31043113
"type" : "string"
31053114
},
@@ -3123,7 +3132,7 @@
31233132
"type" : "string"
31243133
}
31253134
},
3126-
"required" : [ "id", "type", "name", "display_name", "database_id", "fields" ]
3135+
"required" : [ "id", "type", "name", "display_name", "database_id", "database_engine", "fields" ]
31273136
},
31283137
"metabase-enterprise.metabot-v3.tools.api.temporal-extraction-filter" : {
31293138
"allOf" : [ {
@@ -4351,6 +4360,14 @@
43514360
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.UnnamedAggregation"
43524361
} ]
43534362
},
4363+
"metabase.legacy-mbql.schema.AggregationArg" : {
4364+
"description" : "Schema for the argument to an aggregation clause like `:sum`.\n\n Strings are allowed as literals here, unlike at the top level as `::Expressions`, so `::FieldOrExpressionDef` is\n not enough. However, nested aggregations are not allowed here, so we can't use `::ExpressionArg` either. (#66199)",
4365+
"anyOf" : [ {
4366+
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.FieldOrExpressionDef"
4367+
}, {
4368+
"type" : "string"
4369+
} ]
4370+
},
43544371
"metabase.legacy-mbql.schema.AggregationOptionsOptions" : {
43554372
"description" : "Additional options for any aggregation clause when wrapping it in `:aggregation-options`.",
43564373
"type" : "object",

_docs/latest/data-modeling/editable-tables.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,16 @@ Admins can enable editable table data in Metabase.
2020

2121
![Edit table](./images/edit-table.png)
2222

23+
## Databases that support editable tables
24+
25+
Currently, editable tables are available for the following databases:
26+
27+
- PostgreSQL
28+
- MySQL
29+
- Metabase Sample Database
30+
2331
## Setting up editable tables
2432

25-
_Currently, editable table data is only available for PostgreSQL and MySQL._
2633

2734
To set up table editing, admins can:
2835

_docs/latest/installation-and-operation/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Metabase will print out the help text for available commands.
2929

3030
## `api-documentation`
3131

32-
Generate an HTML and JSON files for all API endpoints.
32+
Generate an HTML file and a JSON file for Scalar docs for the Metabase API.
3333

3434
## `command-documentation`
3535

_docs/v0.57/api.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1463,6 +1463,9 @@
14631463
"metabase-enterprise.metabot-v3.tools.api.column" : {
14641464
"type" : "object",
14651465
"properties" : {
1466+
"database_type" : {
1467+
"type" : "string"
1468+
},
14661469
"description" : {
14671470
"type" : "string"
14681471
},
@@ -2641,7 +2644,7 @@
26412644
"properties" : {
26422645
"field_granularity" : {
26432646
"type" : "string",
2644-
"enum" : [ "day", "week", "month", "quarter", "year" ]
2647+
"enum" : [ "minute", "hour", "day", "week", "month", "quarter", "year", "day-of-week" ]
26452648
},
26462649
"field_id" : {
26472650
"type" : "string"
@@ -3085,6 +3088,9 @@
30853088
"metabase-enterprise.metabot-v3.tools.api.table-result" : {
30863089
"type" : "object",
30873090
"properties" : {
3091+
"database_engine" : {
3092+
"type" : "string"
3093+
},
30883094
"id" : {
30893095
"type" : "integer"
30903096
},
@@ -3100,6 +3106,9 @@
31003106
"$ref" : "#/components/schemas/metabase-enterprise.metabot-v3.tools.api.table-result"
31013107
}
31023108
},
3109+
"related_by" : {
3110+
"type" : "string"
3111+
},
31033112
"display_name" : {
31043113
"type" : "string"
31053114
},
@@ -3123,7 +3132,7 @@
31233132
"type" : "string"
31243133
}
31253134
},
3126-
"required" : [ "id", "type", "name", "display_name", "database_id", "fields" ]
3135+
"required" : [ "id", "type", "name", "display_name", "database_id", "database_engine", "fields" ]
31273136
},
31283137
"metabase-enterprise.metabot-v3.tools.api.temporal-extraction-filter" : {
31293138
"allOf" : [ {
@@ -4351,6 +4360,14 @@
43514360
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.UnnamedAggregation"
43524361
} ]
43534362
},
4363+
"metabase.legacy-mbql.schema.AggregationArg" : {
4364+
"description" : "Schema for the argument to an aggregation clause like `:sum`.\n\n Strings are allowed as literals here, unlike at the top level as `::Expressions`, so `::FieldOrExpressionDef` is\n not enough. However, nested aggregations are not allowed here, so we can't use `::ExpressionArg` either. (#66199)",
4365+
"anyOf" : [ {
4366+
"$ref" : "#/components/schemas/metabase.legacy-mbql.schema.FieldOrExpressionDef"
4367+
}, {
4368+
"type" : "string"
4369+
} ]
4370+
},
43544371
"metabase.legacy-mbql.schema.AggregationOptionsOptions" : {
43554372
"description" : "Additional options for any aggregation clause when wrapping it in `:aggregation-options`.",
43564373
"type" : "object",

_docs/v0.57/data-modeling/editable-tables.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,16 @@ Admins can enable editable table data in Metabase.
1818

1919
![Edit table](./images/edit-table.png)
2020

21+
## Databases that support editable tables
22+
23+
Currently, editable tables are available for the following databases:
24+
25+
- PostgreSQL
26+
- MySQL
27+
- Metabase Sample Database
28+
2129
## Setting up editable tables
2230

23-
_Currently, editable table data is only available for PostgreSQL and MySQL._
2431

2532
To set up table editing, admins can:
2633

_docs/v0.57/installation-and-operation/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Metabase will print out the help text for available commands.
2525

2626
## `api-documentation`
2727

28-
Generate an HTML and JSON files for all API endpoints.
28+
Generate an HTML file and a JSON file for Scalar docs for the Metabase API.
2929

3030
## `command-documentation`
3131

_site/docs/latest/CONTRIBUTING.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>
297297

298298
<div>
299299
<span class="menu-link-heading">
300-
Analytics dashboards
300+
Dashboards and reporting
301301
</span>
302302

303303

@@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>
10381038

10391039
<div>
10401040
<span class="menu-link-heading">
1041-
Analytics dashboards
1041+
Dashboards and reporting
10421042
</span>
10431043

10441044

@@ -5714,7 +5714,7 @@ <h6>Features</h6>
57145714
<a href="/features/drill-through">Drill Through</a>
57155715
<a href="/features/collections">Collections</a>
57165716
<a href="/features/usage-analytics">Usage analytics</a>
5717-
<a href="/features/analytics-dashboards">Analytics dashboards</a>
5717+
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
57185718
<a href="/features/sql-editor">SQL editor</a>
57195719
<a href="/features/data-segregation">Data segregation</a>
57205720
<a href="/features/semantic-layer">Semantic layer</a>

_site/docs/latest/actions/basic.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>
297297

298298
<div>
299299
<span class="menu-link-heading">
300-
Analytics dashboards
300+
Dashboards and reporting
301301
</span>
302302

303303

@@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>
10381038

10391039
<div>
10401040
<span class="menu-link-heading">
1041-
Analytics dashboards
1041+
Dashboards and reporting
10421042
</span>
10431043

10441044

@@ -5689,7 +5689,7 @@ <h6>Features</h6>
56895689
<a href="/features/drill-through">Drill Through</a>
56905690
<a href="/features/collections">Collections</a>
56915691
<a href="/features/usage-analytics">Usage analytics</a>
5692-
<a href="/features/analytics-dashboards">Analytics dashboards</a>
5692+
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
56935693
<a href="/features/sql-editor">SQL editor</a>
56945694
<a href="/features/data-segregation">Data segregation</a>
56955695
<a href="/features/semantic-layer">Semantic layer</a>

_site/docs/latest/actions/custom.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>
297297

298298
<div>
299299
<span class="menu-link-heading">
300-
Analytics dashboards
300+
Dashboards and reporting
301301
</span>
302302

303303

@@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>
10381038

10391039
<div>
10401040
<span class="menu-link-heading">
1041-
Analytics dashboards
1041+
Dashboards and reporting
10421042
</span>
10431043

10441044

@@ -5774,7 +5774,7 @@ <h6>Features</h6>
57745774
<a href="/features/drill-through">Drill Through</a>
57755775
<a href="/features/collections">Collections</a>
57765776
<a href="/features/usage-analytics">Usage analytics</a>
5777-
<a href="/features/analytics-dashboards">Analytics dashboards</a>
5777+
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
57785778
<a href="/features/sql-editor">SQL editor</a>
57795779
<a href="/features/data-segregation">Data segregation</a>
57805780
<a href="/features/semantic-layer">Semantic layer</a>

_site/docs/latest/actions/introduction.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ <h6>Embedded Analytics</h6>
297297

298298
<div>
299299
<span class="menu-link-heading">
300-
Analytics dashboards
300+
Dashboards and reporting
301301
</span>
302302

303303

@@ -1038,7 +1038,7 @@ <h6>Embedded Analytics</h6>
10381038

10391039
<div>
10401040
<span class="menu-link-heading">
1041-
Analytics dashboards
1041+
Dashboards and reporting
10421042
</span>
10431043

10441044

@@ -5697,7 +5697,7 @@ <h6>Features</h6>
56975697
<a href="/features/drill-through">Drill Through</a>
56985698
<a href="/features/collections">Collections</a>
56995699
<a href="/features/usage-analytics">Usage analytics</a>
5700-
<a href="/features/analytics-dashboards">Analytics dashboards</a>
5700+
<a href="/features/analytics-dashboards">Dashboards and reporting</a>
57015701
<a href="/features/sql-editor">SQL editor</a>
57025702
<a href="/features/data-segregation">Data segregation</a>
57035703
<a href="/features/semantic-layer">Semantic layer</a>

0 commit comments

Comments
 (0)