Skip to content

Commit

Permalink
Nov 7 partial changelog (#943)
Browse files Browse the repository at this point in the history
* feat: catching up on SDK updates

* feat: plugins updates

* cleaning up right sidebar

* feat: Nov 13 changelog

* feat; Nov 7 partial changelog
  • Loading branch information
ashleygmulligan2 authored and madaley1 committed Nov 16, 2023
1 parent 62791e4 commit 39cfd75
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 8 deletions.
12 changes: 12 additions & 0 deletions blueprint/sheet-options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,15 @@ Sheets have some basic options that determine their behavior.
Use `metadata` to store any extra contextual information about your Sheet.
Must be valid JSON.
</ParamField>

<ParamField
path="mappingConfidenceThreshold"
default=".5"
type="number"
id="mappingConfidenceThreshold"
>
Use `mappingConfidenceThreshold` to configure the minimum required confidence
for mapping jobs targeting that sheet. This can be used to tune the behavior
of fuzzy matches, or disable fuzzy matches entirely. **Must be greater than 0
and less than or equal to 1 (exact match)**
</ParamField>
53 changes: 45 additions & 8 deletions changelog/platform.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ icon: "layer-group"

## November

## November 13, 2023
### November 13, 2023

<div style={{ display: "table", width: "auto" }}>

<div style={{ display: "table-row", width: "auto" }}>
<Snippet file="chips/dataxp.mdx" />
<div style={{ display: "table-row", width: "auto" }}>
<Snippet file="chips/spaces.mdx" />
<div
style={{
float: "left",
Expand All @@ -35,8 +35,8 @@ icon: "layer-group"
</div>

</div>
<div style={{ display: "table-row", width: "auto" }}>
<Snippet file="chips/dataxp.mdx" />
<div style={{ display: "table-row", width: "auto" }}>
<Snippet file="chips/spaces.mdx" />
<div
style={{
float: "left",
Expand All @@ -54,17 +54,16 @@ icon: "layer-group"

To accommodate your preferences, we've introduced the option to hide this Space tooltip. To make this adjustment, you can utilize the "Update Environment" patch available in our [API Reference](https://reference.flatfile.com/docs/api/20058726b7884-update-an-environment).

```json
```jsx
metadata: {
showSpaceInfo: false
}
```
</div>

</div>

<div style={{ display: "table-row", width: "auto" }}>
<Snippet file="chips/dataxp.mdx" />
<Snippet file="chips/core.mdx" />
<div
style={{
float: "left",
Expand Down Expand Up @@ -99,6 +98,44 @@ icon: "layer-group"
</div>
</div>

### November 7, 2023

<div style={{ display: "table", width: "auto" }}>
<div style={{ display: "table-row", width: "auto" }}>
<Snippet file="chips/dataxp.mdx" />
<div
style={{
float: "left",
display: "table-column",
paddingLeft: "30px",
width: "calc(80% - 30px)",
}}
>

**Control your mapping accuracy**

We're excited to announce a new parameter within Sheet configuration, aptly named `mappingConfidenceThreshold`. This parameter empowers you to fine-tune your experience when working with automatically suggested fields during mapping jobs.

With `mappingConfidenceThreshold`, you have the flexibility to configure the minimum required confidence level. Think of it as a precision control, offering you the choice between conservative (exact match) or liberal (fuzzy matching) settings.

**How it works**

Set the value greater than 0 and up to a maximum of 1, for a more precise control over the mapping process:

```jsx workbook.js
sheets: [
mappingConfidenceThreshold: .6,
{...}
]
```

[Learn more](https://flatfile.com/docs/blueprint/sheet-options#mappingConfidenceThreshold)

</div>

</div>
</div>

## October (21)

##### October 25, 2023
Expand Down

0 comments on commit 39cfd75

Please sign in to comment.