Skip to content

Commit e8ec223

Browse files
authored
Merge branch 'master' into issue-13229
2 parents 0d4fffc + b6e4d5c commit e8ec223

File tree

517 files changed

+17664
-36877
lines changed

Some content is hidden

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

517 files changed

+17664
-36877
lines changed

.github/workflows/docs-pr.yaml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Validate MDX Links
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'docs-v2/pages/**/*.mdx'
7+
push:
8+
branches:
9+
- main
10+
paths:
11+
- 'docs-v2/pages/**/*.mdx'
12+
13+
jobs:
14+
validate-links:
15+
runs-on: ubuntu-latest
16+
defaults:
17+
run:
18+
working-directory: docs-v2
19+
20+
steps:
21+
- name: Checkout Code
22+
uses: actions/[email protected]
23+
with:
24+
# Fetch full history for checking diffs
25+
fetch-depth: 0
26+
27+
- uses: pnpm/[email protected]
28+
with:
29+
version: 9.14.2
30+
31+
- name: Get pnpm store directory
32+
id: pnpm-cache
33+
run: |
34+
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
35+
36+
- uses: actions/cache@v4
37+
name: Setup pnpm cache
38+
with:
39+
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
40+
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
41+
restore-keys: |
42+
${{ runner.os }}-pnpm-store-
43+
44+
- name: Setup Node Env
45+
uses: actions/[email protected]
46+
with:
47+
node-version: 18
48+
registry-url: https://registry.npmjs.org/
49+
cache: 'pnpm'
50+
51+
- name: Install dependencies
52+
run: pnpm install -r
53+
54+
- name: Run link validator
55+
run: node validate-mdx-links.mjs
56+
env:
57+
DEBUG: ${{ vars.DEBUG }}

.github/workflows/pipedream-sdk-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Node.js
3737
uses: actions/setup-node@v3
3838
with:
39-
node-version: '18'
39+
node-version: '22'
4040

4141
- name: Install dependencies
4242
run: pnpm install

.npmrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
auto-install-peers=true
22
enable-pre-post-scripts=true
33
save-workspace-protocol=false
4-
link-workspace-packages=false
4+
link-workspace-packages=false
5+
shamefully-hoist=true
6+
node-linker=hoisted
7+
shared-workspace-lockfile=true
8+
engine-strict=false

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 new comment on a record. [See the documentation](https://airtable.com/developers/web/api/create-comment)",
7-
version: "0.0.6",
7+
version: "0.0.7",
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
@@ -4,7 +4,7 @@ export default {
44
key: "airtable_oauth-create-field",
55
name: "Create Field",
66
description: "Create a new field in a table. [See the documentation](https://airtable.com/developers/web/api/create-field)",
7-
version: "0.0.6",
7+
version: "0.0.7",
88
type: "action",
99
props: {
1010
...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
@@ -8,7 +8,7 @@ export default {
88
key: "airtable_oauth-create-multiple-records",
99
name: "Create Multiple Records",
1010
description: "Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. [See the documentation](https://airtable.com/developers/web/api/create-records)",
11-
version: "0.0.6",
11+
version: "0.0.7",
1212
type: "action",
1313
props: {
1414
...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 Single Record Or Update",
88
description: "Updates a record if `recordId` is provided or adds a record to a table.",
9-
version: "0.0.7",
9+
version: "0.0.8",
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.7",
9+
version: "0.0.8",
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.6",
7+
version: "0.0.7",
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 record from a table by record ID. [See the documentation](https://airtable.com/developers/web/api/delete-record)",
8-
version: "0.0.6",
8+
version: "0.0.7",
99
type: "action",
1010
props: {
1111
...common.props,

0 commit comments

Comments
 (0)