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
4 changes: 2 additions & 2 deletions components/brex_staging/actions/create-card/create-card.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import common from "../../../brex/actions/create-card/common.mjs";
import common from "@pipedream/brex/actions/create-card/common.mjs";
import brexApp from "../../brex_staging.app.mjs";

export default {
...common,
name: "Create Card",
description: "Creates a new card. [See the docs here](https://developer.brex.com/openapi/team_api/#operation/createCard).",
key: "brex_staging-create-card",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
brexApp,
Expand Down
4 changes: 2 additions & 2 deletions components/brex_staging/actions/invite-user/invite-user.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import brexApp from "../../brex_staging.app.mjs";
import common from "../../../brex/actions/invite-user/common.mjs";
import common from "@pipedream/brex/actions/invite-user/common.mjs";

export default {
...common,
name: "Invite User",
description: "Invites a new user as an employee. [See the docs here](https://developer.brex.com/openapi/team_api/#operation/createUser).",
key: "brex_staging-invite-user",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
brexApp,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import brexApp from "../../brex_staging.app.mjs";
import common from "../../../brex/actions/list-transactions-for-primary-card-account/common.mjs";
import common from "@pipedream/brex/actions/list-transactions-for-primary-card-account/common.mjs";

export default {
...common,
name: "List Transactions for Primary Card Account",
description: "Lists all settled transactions for the primary card account. [See the docs here](https://developer.brex.com/openapi/transactions_api/#operation/listPrimaryCardTransactions).",
key: "brex_staging-list-transactions-for-primary-card-account",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
brexApp,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import brexApp from "../../brex_staging.app.mjs";
import common from "../../../brex/actions/list-transactions-for-selected-cash-account/common.mjs";
import common from "@pipedream/brex/actions/list-transactions-for-selected-cash-account/common.mjs";

export default {
...common,
name: "List Transactions for Selected Cash Account",
description: "Lists all transactions for the specified cash account. [See the docs here](https://developer.brex.com/openapi/transactions_api/#operation/listCashTransactions).",
key: "brex_staging-list-transactions-for-selected-cash-account",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
brexApp,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import brexApp from "../../brex_staging.app.mjs";
import common from "../../../brex/actions/set-limit-for-user/common.mjs";
import common from "@pipedream/brex/actions/set-limit-for-user/common.mjs";

export default {
...common,
name: "Set Limit for User",
description: "Sets the monthly limit for a user. [See the docs here](https://developer.brex.com/openapi/team_api/#operation/setUserLimit).",
key: "brex_staging-set-limit-for-user",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
brexApp,
Expand Down
2 changes: 1 addition & 1 deletion components/brex_staging/brex_staging.app.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import commonApp from "../brex/common-app.mjs";
import commonApp from "@pipedream/brex/common-app.mjs";

export default {
...commonApp,
Expand Down
3 changes: 2 additions & 1 deletion components/brex_staging/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/brex_staging",
"version": "0.0.3",
"version": "0.0.4",
"description": "Pipedream Brex Staging Components",
"main": "brex_staging.app.js",
"keywords": [
Expand All @@ -13,6 +13,7 @@
"access": "public"
},
"dependencies": {
"@pipedream/brex": "^0.1.0",
"axios": "^0.25.0",
"crypto": "^1.0.1",
"uuid": "^8.3.2"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import common from "../../../brex/sources/new-transfer-event/common.mjs";
import common from "@pipedream/brex/sources/new-transfer-event/common.mjs";
import brexApp from "../../brex_staging.app.mjs";

export default {
Expand All @@ -8,7 +8,7 @@ export default {
key: "brex_staging-new-transfer-event",
name: "New Transfer Event (Instant)",
description: "Emit new event for new failed or processed events",
version: "0.0.1",
version: "0.0.2",
props: {
brexApp,
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
key: "canva_enterprise-create-design-from-brand-template",
name: "Create Design from Brand Template",
description: "Creates an asynchronous job to autofill a design from a brand template with your input information. [See the documentation](https://www.canva.dev/docs/connect/api-reference/autofills/create-design-autofill-job/)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
canva,
Expand All @@ -16,7 +16,7 @@
],
reloadProps: true,
},
alert: {

Check warning on line 19 in components/canva_enterprise/actions/create-design-from-brand-template/create-design-from-brand-template.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a label. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 19 in components/canva_enterprise/actions/create-design-from-brand-template/create-design-from-brand-template.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a description. See https://pipedream.com/docs/components/guidelines/#props
type: "alert",
alertType: "error",
content: "Design not fillable. Design does not have any autofill capable elements.",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import canva from "../../canva_enterprise.app.mjs";
import common from "../../../canva/actions/create-design/create-design.mjs";
import constants from "../../../canva/common/constants.mjs";
import common from "@pipedream/canva/actions/create-design/create-design.mjs";
import constants from "@pipedream/canva/common/constants.mjs";

export default {
...common,
key: "canva_enterprise-create-design",
name: "Create Design",
description: "Creates a new Canva design. [See the documentation](https://www.canva.dev/docs/connect/api-reference/designs/create-design/)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
canva,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import canva from "../../canva_enterprise.app.mjs";
import common from "../../../canva/actions/export-design/export-design.mjs";
import constants from "../../../canva/common/constants.mjs";
import common from "@pipedream/canva/actions/export-design/export-design.mjs";
import constants from "@pipedream/canva/common/constants.mjs";

export default {
...common,
key: "canva_enterprise-export-design",
name: "Export Design",
description: "Starts a new job to export a file from Canva. [See the documentation](https://www.canva.dev/docs/connect/api-reference/exports/create-design-export-job/)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
canva,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import canva from "../../canva_enterprise.app.mjs";
import common from "../../../canva/actions/upload-asset/upload-asset.mjs";
import common from "@pipedream/canva/actions/upload-asset/upload-asset.mjs";

export default {
...common,
key: "canva_enterprise-upload-asset",
name: "Upload Asset",
description: "Uploads an asset to Canva. [See the documentation](https://www.canva.dev/docs/connect/api-reference/assets/create-asset-upload-job/)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
canva,
Expand Down
2 changes: 1 addition & 1 deletion components/canva_enterprise/canva_enterprise.app.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import common from "../canva/canva.app.mjs";
import common from "@pipedream/canva";

export default {
...common,
Expand Down
3 changes: 2 additions & 1 deletion components/canva_enterprise/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/canva_enterprise",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Canva Enterprise Components",
"main": "canva_enterprise.app.mjs",
"keywords": [
Expand All @@ -13,6 +13,7 @@
"access": "public"
},
"dependencies": {
"@pipedream/canva": "^0.2.3",
"@pipedream/platform": "^3.0.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import docusign from "../../docusign_developer.app.mjs";
import common from "../../../docusign/actions/common/common.mjs";
import common from "@pipedream/docusign/actions/common/common.mjs";

export default {
...common,
key: "docusign_developer-create-signature-request",
version: "0.1.1",
version: "0.1.2",
name: "Create Signature Request",
description: "Creates a signature request from a template [See the documentation](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create)",
type: "action",
Expand Down
2 changes: 1 addition & 1 deletion components/docusign_developer/docusign_developer.app.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import common from "../docusign/common.mjs";
import common from "@pipedream/docusign/common.mjs";

export default {
...common,
Expand Down
3 changes: 2 additions & 1 deletion components/docusign_developer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/docusign_developer",
"version": "0.2.0",
"version": "0.2.1",
"description": "Pipedream Docusign_developer Components",
"main": "docusign_developer.app.mjs",
"keywords": [
Expand All @@ -13,6 +13,7 @@
"access": "public"
},
"dependencies": {
"@pipedream/docusign": "^0.2.1",
"@pipedream/platform": "^3.0.3"
}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import docusign from "../../docusign_developer.app.mjs";
import common from "../../../docusign/sources/new-change-in-envelope-status/common.mjs";
import common from "@pipedream/docusign/sources/new-change-in-envelope-status/common.mjs";

export default {
...common,
key: "docusign_developer-new-change-in-envelope-status",
version: "0.0.1",
version: "0.0.2",
name: "New Change in Envelope Status",
description: "Emit new event when an envelope's status is updated",
type: "source",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import docusign from "../../docusign_developer.app.mjs";
import common from "../../../docusign/sources/new-folder/common.mjs";
import common from "@pipedream/docusign/sources/new-folder/common.mjs";

export default {
...common,
key: "docusign_developer-new-folder",
version: "0.0.2",
version: "0.0.3",
name: "New Folder",
description: "Emit new event when a new folder is created",
type: "source",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_docs-append-image",
name: "Append Image to Document",
description: "Appends an image to the end of a document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/request#InsertInlineImageRequest)",
version: "0.0.4",
version: "0.0.5",
type: "action",
props: {
googleDocs,
Expand Down
2 changes: 1 addition & 1 deletion components/google_docs/actions/append-text/append-text.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_docs-append-text",
name: "Append Text",
description: "Append text to an existing document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/request#InsertTextRequest)",
version: "0.1.3",
version: "0.1.4",
type: "action",
props: {
googleDocs,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_docs-create-document",
name: "Create a New Document",
description: "Create a new document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/create)",
version: "0.1.3",
version: "0.1.4",
type: "action",
props: {
googleDocs,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_docs-get-document",
name: "Get Document",
description: "Get the contents of the latest version of a document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/get)",
version: "0.1.2",
version: "0.1.3",
type: "action",
props: {
googleDocs,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_docs-replace-image",
name: "Replace Image",
description: "Replace image in a existing document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/request#ReplaceImageRequest)",
version: "0.0.4",
version: "0.0.5",
type: "action",
props: {
googleDocs,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_docs-replace-text",
name: "Replace Text",
description: "Replace all instances of matched text in an existing document. [See the documentation](https://developers.google.com/docs/api/reference/rest/v1/documents/request#ReplaceAllTextRequest)",
version: "0.0.4",
version: "0.0.5",
type: "action",
props: {
googleDocs,
Expand Down
2 changes: 1 addition & 1 deletion components/google_docs/google_docs.app.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import docs from "@googleapis/docs";
import googleDrive from "../google_drive/google_drive.app.mjs";
import googleDrive from "@pipedream/google_drive";

export default {
type: "app",
Expand Down
5 changes: 3 additions & 2 deletions components/google_docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/google_docs",
"version": "0.4.0",
"version": "0.4.1",
"description": "Pipedream Google_docs Components",
"main": "google_docs.app.mjs",
"keywords": [
Expand All @@ -13,6 +13,7 @@
"access": "public"
},
"dependencies": {
"@googleapis/docs": "^3.3.0"
"@googleapis/docs": "^3.3.0",
"@pipedream/google_drive": "^0.6.19"
}
}
2 changes: 1 addition & 1 deletion components/google_docs/sources/common/base.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import newFilesInstant from "../../../google_drive/sources/new-files-instant/new-files-instant.mjs";
import newFilesInstant from "@pipedream/google_drive/sources/new-files-instant/new-files-instant.mjs";
import googleDrive from "../../google_docs.app.mjs";
import { MY_DRIVE_VALUE } from "../../../google_drive/common/constants.mjs";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "google_docs-new-document-created",
name: "New Document Created (Instant)",
description: "Emit new event when a new document is created in Google Docs. [See the documentation](https://developers.google.com/drive/api/reference/rest/v3/changes/watch)",
version: "0.0.1",
version: "0.0.2",
type: "source",
dedupe: "unique",
methods: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default {
key: "google_docs-new-or-updated-document",
name: "New or Updated Document (Instant)",
description: "Emit new event when a document is created or updated in Google Docs. [See the documentation](https://developers.google.com/drive/api/reference/rest/v3/changes/watch)",
version: "0.0.1",
version: "0.0.2",
type: "source",
dedupe: "unique",
methods: {
Expand Down
2 changes: 1 addition & 1 deletion components/google_sheets/actions/add-column/add-column.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_sheets-add-column",
name: "Create Column",
description: "Create a new column in a spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate)",
version: "0.1.6",
version: "0.1.7",
type: "action",
props: {
googleSheets,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default {
key: "google_sheets-add-multiple-rows",
name: "Add Multiple Rows",
description: "Add multiple rows of data to a Google Sheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append)",
version: "0.2.9",
version: "0.2.10",
type: "action",
props: {
googleSheets,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
key: "google_sheets-add-single-row",
name: "Add Single Row",
description: "Add a single row of data to Google Sheets. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append)",
version: "2.1.11",
version: "2.1.12",
type: "action",
props: {
googleSheets,
Expand Down
2 changes: 1 addition & 1 deletion components/google_sheets/actions/clear-cell/clear-cell.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "google_sheets-clear-cell",
name: "Clear Cell",
description: "Delete the content of a specific cell in a spreadsheet. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/clear)",
version: "0.1.10",
version: "0.1.11",
type: "action",
props: {
googleSheets,
Expand Down
2 changes: 1 addition & 1 deletion components/google_sheets/actions/clear-rows/clear-rows.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "google_sheets-clear-rows",
name: "Clear Rows",
description: "Delete the content of a row or rows in a spreadsheet. Deleted rows will appear as blank rows. [See the documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/clear)",
version: "0.1.8",
version: "0.1.9",
type: "action",
props: {
googleSheets,
Expand Down
Loading
Loading