Skip to content

Commit 9b082f1

Browse files
authored
Merge branch 'master' into postgresql-default-only-load-public-schema
2 parents 8d619d1 + b04188f commit 9b082f1

File tree

437 files changed

+18406
-6127
lines changed

Some content is hidden

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

437 files changed

+18406
-6127
lines changed

.github/ISSUE_TEMPLATE/app---service-integration.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ name: App / Integration Request
33
about: Request for a new API integration
44
title: "[APP]"
55
labels: app, enhancement
6-
assignees: ''
7-
6+
assignees: ""
87
---
98

109
**Name of app / service**
1110

1211
**Link to developer documentation**
1312

14-
**Is lack of support preventing you from building workflows, or do you have a workaround?**
13+
**Is lack of support preventing you from moving forward, or do you have a workaround?**
1514

16-
**Are there specific actions, or triggers, you'd like to see for this app? Please let us know here or use the Action and Trigger issue templates to open requests for each!**
15+
**Are there specific actions or triggers, you'd like to see for this app? Please let us know here or use the Action and Trigger issue templates to open requests for each!**

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ name: Bug report
33
about: File bugs here
44
title: "[BUG] "
55
labels: bug
6-
assignees: ''
7-
6+
assignees: ""
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is. Note that this issue will be displayed publicly.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
@@ -23,16 +23,5 @@ A clear and concise description of what you expected to happen.
2323
**Screenshots**
2424
If applicable, add screenshots to help explain your problem. Note that the screenshots will be displayed publicly.
2525

26-
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
30-
31-
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
36-
3726
**Additional context**
3827
Add any other context about the problem here.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ docs/.vuepress/dist
1818
components/**/package-lock.json
1919
/packages/evals/
2020
/packages/sdk/examples/.next/
21+
22+
**/.claude/settings.local.json

components/airtable_oauth/actions/create-comment/create-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "airtable_oauth-create-comment",
55
name: "Create Comment",
66
description: "Create a comment on a selected record. [See the documentation](https://airtable.com/developers/web/api/create-comment)",
7-
version: "0.0.10",
7+
version: "0.0.11",
88
type: "action",
99
props: {
1010
...common.props,

components/airtable_oauth/actions/create-field/create-field.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "airtable_oauth-create-field",
66
name: "Create Field",
77
description: "Create a new field in a table. [See the documentation](https://airtable.com/developers/web/api/create-field)",
8-
version: "0.1.2",
8+
version: "0.1.3",
99
type: "action",
1010
props: {
1111
...common.props,

components/airtable_oauth/actions/create-multiple-records/create-multiple-records.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
key: "airtable_oauth-create-multiple-records",
1010
name: "Create Multiple Records",
1111
description: "Create one or more records in a table in a single operation with an array. [See the documentation](https://airtable.com/developers/web/api/create-records)",
12-
version: "0.0.10",
12+
version: "0.0.11",
1313
type: "action",
1414
props: {
1515
...common.props,

components/airtable_oauth/actions/create-or-update-record/create-or-update-record.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "airtable_oauth-create-or-update-record",
77
name: "Create or Update Record",
88
description: "Create a new record or update an existing one. [See the documentation](https://airtable.com/developers/web/api/create-records)",
9-
version: "0.1.2",
9+
version: "0.1.3",
1010
type: "action",
1111
props: {
1212
...common.props,

components/airtable_oauth/actions/create-single-record/create-single-record.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "airtable_oauth-create-single-record",
77
name: "Create Single Record",
88
description: "Adds a record to a table.",
9-
version: "0.0.11",
9+
version: "0.0.12",
1010
type: "action",
1111
props: {
1212
...common.props,

components/airtable_oauth/actions/create-table/create-table.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "airtable_oauth-create-table",
55
name: "Create Table",
66
description: "Create a new table. [See the documentation](https://airtable.com/developers/web/api/create-table)",
7-
version: "0.0.10",
7+
version: "0.0.11",
88
type: "action",
99
props: {
1010
airtable,

components/airtable_oauth/actions/delete-record/delete-record.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "airtable_oauth-delete-record",
66
name: "Delete Record",
77
description: "Delete a selected record from a table. [See the documentation](https://airtable.com/developers/web/api/delete-record)",
8-
version: "0.0.10",
8+
version: "0.0.11",
99
type: "action",
1010
props: {
1111
...common.props,

0 commit comments

Comments
 (0)