Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-create-collection-item",
key: "webflow-create-collection-item",
name: "Create Collection Item",
description: "Create new collection item. [See the docs here](https://developers.webflow.com/#create-new-collection-item)",
version: "0.0.1",
description: "Create new collection item. [See the documentation](https://developers.webflow.com/data/reference/cms/collection-items/staged-items/create-item)",
version: "1.0.0",
Comment on lines +4 to +7
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Version inconsistency found in Webflow components

Almost all Webflow components are at version 1.0.0, except for:

  • webflow-update-item-inventory which is at version 0.0.5

This inconsistency should be addressed to maintain version alignment across the Webflow integration components.

🔗 Analysis chain

Verify the impact of version bump to 1.0.0

The metadata changes look good:

  • Removed v2 from the key
  • Added specific documentation link
  • Version bump to 1.0.0 indicates stable API

Let's verify version consistency across Webflow components:

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check version numbers across Webflow components

# Find all Webflow component files and grep for version numbers
fd -e mjs . components/webflow/ -x rg -A 1 '"version":'

Length of output: 57


Script:

#!/bin/bash
# Let's try a different approach to find version fields in Webflow components
# Using ripgrep directly with more flexible pattern matching

rg -U "version.*['\"][\d\.]+['\"]" components/webflow/ --type js

Length of output: 70


Script:

#!/bin/bash
# Let's try a simpler approach by first listing all .mjs files in webflow directory
# and then using grep with context to find version information
find components/webflow -name "*.mjs" -type f -exec grep -A 5 -B 5 "version:" {} \;

Length of output: 9076

type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-delete-collection-item",
key: "webflow-delete-collection-item",
name: "Delete Collection Item",
description: "Delete Item of a Collection. [See the docs here](https://developers.webflow.com/#remove-collection-item)",
version: "0.0.1",
description: "Delete Item of a Collection. [See the documentation](https://developers.webflow.com/data/reference/cms/collection-items/staged-items/delete-item)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-fulfill-order",
key: "webflow-fulfill-order",
name: "Fulfill Order",
description: "Fulfill an order. [See the docs here](https://developers.webflow.com/#fulfill-order)",
version: "0.0.1",
description: "Fulfill an order. [See the documentation](https://developers.webflow.com/data/reference/ecommerce/orders/update-fulfill)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-get-collection-item",
key: "webflow-get-collection-item",
name: "Get Collection Item",
description: "Get a Collection Item. [See the docs here](https://developers.webflow.com/#get-single-item)",
version: "0.0.1",
description: "Get a Collection Item. [See the documentation](https://developers.webflow.com/data/reference/cms/collection-items/staged-items/get-item)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-get-collection",
key: "webflow-get-collection",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Component metadata needs attention for complete consistency

The verification revealed two inconsistencies that need to be addressed:

  • All component keys have been properly updated to the simplified format without version suffixes (webflow-*)
  • Most components are at version 1.0.0, but update-item-inventory is still at version 0.0.5
🔗 Analysis chain

Component metadata updates look consistent

The changes align with the Webflow migration follow-up:

  • Simplified key by removing version suffix
  • Updated documentation link to the new API reference
  • Version bump to 1.0.0 indicates stable API

Let's verify the consistency of these changes across other Webflow components:

Also applies to: 6-7


Let me verify the component keys to ensure complete consistency.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify consistent metadata updates across Webflow components
# Expected: All components should follow the same pattern

echo "Checking for any remaining versioned keys..."
rg -g '*.{mjs,js}' 'key: "webflow_v2-' components/webflow/

echo "Checking version numbers..."
rg -g '*.{mjs,js}' 'version: "' components/webflow/

Length of output: 2560


Script:

#!/bin/bash
# Check all Webflow component keys
rg -g '*.{mjs,js}' 'key: "webflow-' components/webflow/

Length of output: 2765

name: "Get Collection",
description: "Get a collection. [See the docs here](https://developers.webflow.com/#get-collection-with-full-schema)",
version: "0.0.1",
description: "Get a collection. [See the documentation](https://developers.webflow.com/data/reference/cms/collections/get)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-get-item-inventory",
key: "webflow-get-item-inventory",
name: "Get Item Inventory",
description: "Get the inventory of a specific item. [See the docs here](https://developers.webflow.com/#item-inventory)",
version: "0.0.1",
description: "Get the inventory of a specific item. [See the documentation](https://developers.webflow.com/data/reference/ecommerce/inventory/list)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-get-order",
key: "webflow-get-order",
name: "Get Order",
description: "Get info on an order. [See the docs here](https://developers.webflow.com/#get-order)",
version: "0.0.1",
description: "Get info on an order. [See the documentation](https://developers.webflow.com/data/reference/ecommerce/orders/get)",
version: "1.0.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Version 1.0.0 is consistent with most actions, but one action needs attention

Almost all Webflow actions are at version 1.0.0, but the update-item-inventory action is still at version 0.0.5. This inconsistency should be addressed.

  • components/webflow/actions/update-item-inventory/update-item-inventory.mjs needs to be updated from version 0.0.5 to 1.0.0 to maintain consistency across the component.
🔗 Analysis chain

Version bump to 1.0.0 is appropriate

The version increment to 1.0.0 aligns with the broader component updates.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify consistent version numbers across components

# Check version numbers across Webflow components
rg '"version":.*"[0-9]+\.[0-9]+\.[0-9]+"' components/webflow/

Length of output: 117


Script:

#!/bin/bash
# Let's check version numbers in all action files within webflow components
fd -e mjs -e js . components/webflow/actions -x grep -l "version.*[0-9]"

# Also get the content of these files to verify version consistency
fd -e mjs -e js . components/webflow/actions -x grep -A 1 -B 1 "version.*[0-9]"

Length of output: 4481

type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-get-site",
key: "webflow-get-site",
name: "Get Site",
description: "Get a site. [See the docs here](https://developers.webflow.com/#get-specific-site)",
version: "0.0.1",
description: "Get a site. [See the documentation](https://developers.webflow.com/data/reference/sites/get)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-list-collection-items",
key: "webflow-list-collection-items",
name: "List Collection Items",
description: "List Items of a collection. [See the docs here](https://developers.webflow.com/#get-all-items-for-a-collection)",
version: "0.0.1",
description: "List Items of a collection. [See the documentation](https://developers.webflow.com/data/reference/cms/collection-items/bulk-items/list-items)",
version: "1.0.0",
Comment on lines +4 to +7
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Version inconsistency found in Webflow components

The metadata changes are mostly consistent across components, but there's one inconsistency:

  • All components use the simplified webflow- key prefix (no v2 references)
  • Most components are at version 1.0.0
  • However, update-item-inventory is still at version 0.0.5
🔗 Analysis chain

Verify version bump consistency across components.

The metadata changes look good:

  • Simplified key aligns with the migration strategy
  • More specific documentation link improves developer experience
  • Version bump to 1.0.0 indicates stability
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify consistent versioning and key naming across Webflow components

# Check for any remaining v2 keys
rg '"webflow_v2-' components/webflow/

# Check for version consistency across components
rg '"version":\s*"[^"]*"' components/webflow/ --type js

Length of output: 97


Script:

#!/bin/bash
# Let's try a different approach to check component metadata
# Search for key and version fields in action files
rg -A 2 '"key":\s*"[^"]*"' --type js components/webflow/actions/

# Also check for any remaining v2 references with a broader pattern
rg -i 'webflow.*v2' components/webflow/

Length of output: 108


Script:

#!/bin/bash
# Try a different approach using the .mjs extension and looking at the actual content structure
rg -A 3 'key:.*"webflow' components/webflow/actions/**/*.mjs

# Also check version fields specifically in .mjs files
rg 'version:.*"[0-9]+\.[0-9]+\.[0-9]+"' components/webflow/actions/**/*.mjs

Length of output: 12571

type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-list-collections",
key: "webflow-list-collections",
name: "List Collections",
description: "List collections. [See the docs here](https://developers.webflow.com/#list-collections)",
version: "0.0.1",
description: "List collections. [See the documentation](https://developers.webflow.com/data/reference/cms/collections/list)",
version: "1.0.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Version inconsistency detected in Webflow components

All Webflow components are at version 1.0.0 except for update-item-inventory which is still at 0.0.5. This inconsistency should be addressed to maintain version alignment across the component suite.

  • components/webflow/actions/update-item-inventory/update-item-inventory.mjs needs to be bumped to version 1.0.0
🔗 Analysis chain

Version bump is appropriate

The version bump to 1.0.0 correctly reflects the breaking changes in the component key and import path.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for consistent version bumps across related Webflow components

# Find all Webflow component files and check their versions
echo "Checking versions in Webflow components..."
fd -e mjs . components/webflow/ -x grep -l "version:" {} | xargs grep "version:"

Length of output: 2457

type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";
import constants from "../common/constants.mjs";

export default {
key: "webflow_v2-list-orders",
key: "webflow-list-orders",
name: "List Orders",
description: "List orders. [See the docs here](https://developers.webflow.com/#get-all-orders)",
version: "0.0.1",
description: "List orders. [See the documentation](https://developers.webflow.com/data/reference/ecommerce/orders/list)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-list-sites",
key: "webflow-list-sites",
name: "List Sites",
description: "List sites. [See the docs here](https://developers.webflow.com/#list-sites)",
version: "0.0.1",
description: "List sites. [See the documentation](https://developers.webflow.com/data/reference/sites/list)",
version: "1.0.0",
Comment on lines +4 to +7
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Update version number for update-item-inventory action

The verification reveals that most changes are consistent across Webflow actions:

  • All action keys follow the standardized format without "v2" prefix
  • Documentation links follow the new format
  • Most actions are at version "1.0.0"

However, the update-item-inventory action is still at version "0.0.5" and should be updated to "1.0.0" for consistency.

components/webflow/actions/update-item-inventory/update-item-inventory.mjs: Update version to "1.0.0"

🔗 Analysis chain

Verify consistency of version and key changes across Webflow actions

The changes include:

  1. Removal of v2 from the action key
  2. Updated documentation link
  3. Version bump to 1.0.0

These changes suggest a breaking change and standardization effort.


Let me gather more information to verify the key format and version numbers.


Let me try one more search with a different pattern to catch the key and version fields.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify consistency of version and key changes across Webflow actions

# Check for any remaining v2 references in keys
echo "=== Checking for remaining v2 references in keys ==="
rg '"webflow_v2-' components/webflow/

# Check version numbers across Webflow actions
echo "=== Checking version numbers ==="
rg '"version":' components/webflow/actions/

# Verify documentation link format
echo "=== Checking documentation link format ==="
rg 'developers\.webflow\.com/data/reference' components/webflow/

Length of output: 6077


Script:

#!/bin/bash
# Check key format and version numbers in all Webflow action files

# Check all keys in action files
echo "=== Checking action keys format ==="
rg '"key":' components/webflow/actions/

# Check version numbers in action files
echo "=== Checking version numbers in actions ==="
rg '"version":' components/webflow/actions/

Length of output: 265


Script:

#!/bin/bash
# Search for key and version fields with more flexible pattern

echo "=== Checking action keys format ==="
rg "key: " components/webflow/actions/

echo "=== Checking version numbers ==="
rg "version: " components/webflow/actions/

Length of output: 3516

type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-publish-site",
key: "webflow-publish-site",
name: "Publish Site",
description: "Publish a site. [See the docs here](https://developers.webflow.com/#publish-site)",
version: "0.0.1",
description: "Publish a site. [See the documentation](https://developers.webflow.com/data/reference/sites/publish)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-refund-order",
key: "webflow-refund-order",
name: "Refund Order",
description: "Refund an order. [See the docs here](https://developers.webflow.com/#refund-order)",
version: "0.0.1",
description: "Refund an order. [See the documentation](https://developers.webflow.com/data/reference/ecommerce/orders/refund)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-unfulfill-order",
key: "webflow-unfulfill-order",
name: "Unfulfill Order",
description: "Unfulfill an order. [See the docs here](https://developers.webflow.com/#unfulfill-order)",
version: "0.0.1",
description: "Unfulfill an order. [See the documentation](https://developers.webflow.com/data/reference/ecommerce/orders/update-unfulfill)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-update-collection-item",
key: "webflow-update-collection-item",
name: "Update Collection Item",
description:
"Update collection item. [See the documentation](https://developers.webflow.com/#update-collection-item)",
version: "0.0.1",
"Update collection item. [See the documentation](https://developers.webflow.com/data/reference/cms/collection-items/bulk-items/update-items)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-update-item-inventory",
key: "webflow-update-item-inventory",
name: "Update Item Inventory",
description: "Update the inventory of a specific item. [See the docs here](https://developers.webflow.com/#update-item-inventory)",
description: "Update the inventory of a specific item. [See the documentation](https://developers.webflow.com/data/reference/ecommerce/inventory/update)",
version: "0.0.5",
type: "action",
props: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";

export default {
key: "webflow_v2-update-order",
key: "webflow-update-order",
name: "Update Order",
description: "Update an order. [See the docs here](https://developers.webflow.com/#update-order)",
version: "0.0.1",
description: "Update an order. [See the documentation](https://developers.webflow.com/data/reference/ecommerce/orders/update)",
version: "1.0.0",
type: "action",
props: {
app,
Expand Down
7 changes: 3 additions & 4 deletions components/webflow/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/webflow",
"version": "0.4.6",
"version": "1.0.0",
"description": "Pipedream Webflow Components",
"main": "webflow.app.mjs",
"keywords": [
Expand All @@ -10,10 +10,9 @@
"homepage": "https://pipedream.com/apps/webflow",
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
"dependencies": {
"@pipedream/platform": "^1.1.0",
"webflow-api": "1.3.1"
"@pipedream/platform": "^3.0.3",
"webflow-api": "2.4.2"
},
"gitHead": "e12480b94cc03bed4808ebc6b13e7fdb3a1ba535",
"publishConfig": {
"access": "public"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

export default {
type: "source",
key: "webflow_v2-changed-collection-item",
key: "webflow-changed-collection-item",
name: "Collection Item Updated",

Check warning on line 6 in components/webflow/sources/changed-collection-item/changed-collection-item.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source names should start with "New". See https://pipedream.com/docs/components/guidelines/#source-name
description: "Emit new event when a collection item is changed. [See the docs here](https://developers.webflow.com/#model16)",
version: "0.0.1",
description: "Emit new event when a collection item is changed. [See the documentation](https://developers.webflow.com/data/reference/webhooks/events/collection-item-changed)",
version: "1.0.0",
...common,
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

export default {
type: "source",
key: "webflow_v2-changed-ecommerce-inventory",
key: "webflow-changed-ecommerce-inventory",
name: "E-commerce Inventory Updated",

Check warning on line 6 in components/webflow/sources/changed-ecommerce-inventory/changed-ecommerce-inventory.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source names should start with "New". See https://pipedream.com/docs/components/guidelines/#source-name
description: "Emit new event when an e-commerce inventory level changes. [See the docs here](https://developers.webflow.com/#item-inventory)",
version: "0.0.1",
description: "Emit new event when an e-commerce inventory level changes. [See the documentation](https://developers.webflow.com/data/reference/webhooks/events/ecomm-inventory-changed)",
version: "1.0.0",
...common,
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

export default {
type: "source",
key: "webflow_v2-changed-ecommerce-order",
key: "webflow-changed-ecommerce-order",
name: "E-commerce Order Updated",

Check warning on line 6 in components/webflow/sources/changed-ecommerce-order/changed-ecommerce-order.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source names should start with "New". See https://pipedream.com/docs/components/guidelines/#source-name
description: "Emit new event when an e-commerce order is changed. [See the docs here](https://developers.webflow.com/#order-model)",
version: "0.0.1",
description: "Emit new event when an e-commerce order is changed. [See the documentation](https://developers.webflow.com/data/reference/webhooks/events/ecomm-order-changed)",
version: "1.0.0",
...common,
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import app from "../../webflow_v2.app.mjs";
import app from "../../webflow.app.mjs";
import { v4 as uuid } from "uuid";
import constants from "../../common/constants.mjs";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import common from "../common/common.mjs";

export default {
type: "source",
key: "webflow_v2-new-collection-item",
key: "webflow-new-collection-item",
name: "New Collection Item Created",
description: "Emit new event when a collection item is created. [See the docs here](https://developers.webflow.com/#item-model)",
version: "0.0.1",
description: "Emit new event when a collection item is created. [See the documentation](https://developers.webflow.com/data/reference/webhooks/events/collection-item-created)",
version: "1.0.0",
...common,
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

export default {
type: "source",
key: "webflow_v2-new-deleted-collection-item",
key: "webflow-new-deleted-collection-item",
name: "Collection Item Deleted",

Check warning on line 6 in components/webflow/sources/new-deleted-collection-item/new-deleted-collection-item.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Source names should start with "New". See https://pipedream.com/docs/components/guidelines/#source-name
description: "Emit new event when a collection item is deleted. [See the docs here](https://developers.webflow.com/#item-model)",
version: "0.0.1",
description: "Emit new event when a collection item is deleted. [See the documentation](https://developers.webflow.com/data/reference/webhooks/events/collection-item-deleted)",
version: "1.0.0",
...common,
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import common from "../common/common.mjs";

export default {
type: "source",
key: "webflow_v2-new-ecommerce-order",
key: "webflow-new-ecommerce-order",
name: "New E-commerce Order",
description:
"Emit new event when an e-commerce order is created. [See the docs here](https://developers.webflow.com/#order-model)",
version: "0.0.1",
"Emit new event when an e-commerce order is created. [See the documentation](https://developers.webflow.com/data/reference/webhooks/events/ecomm-new-order)",
version: "1.0.0",
...common,
hooks: {
...common.hooks,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import sampleEmit from "./test-event.mjs";

export default {
type: "source",
key: "webflow_v2-new-form-submission",
key: "webflow-new-form-submission",
name: "New Form Submission",
description: "Emit new event when a form is submitted. [See the docs here](https://developers.webflow.com/#trigger-types)",
version: "0.0.1",
description: "Emit new event when a form is submitted. [See the documentation](https://developers.webflow.com/data/reference/webhooks/events/form-submission)",
version: "1.0.0",
...common,
methods: {
...common.methods,
Expand Down
Loading
Loading