Skip to content

Commit 03f25c5

Browse files
authored
Update app files that use relative references to point to packages instead (#15110)
1 parent 40dff13 commit 03f25c5

File tree

206 files changed

+494
-336
lines changed

Some content is hidden

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

206 files changed

+494
-336
lines changed

components/brex_staging/actions/create-card/create-card.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import common from "../../../brex/actions/create-card/common.mjs";
1+
import common from "@pipedream/brex/actions/create-card/common.mjs";
22
import brexApp from "../../brex_staging.app.mjs";
33

44
export default {
55
...common,
66
name: "Create Card",
77
description: "Creates a new card. [See the docs here](https://developer.brex.com/openapi/team_api/#operation/createCard).",
88
key: "brex_staging-create-card",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "action",
1111
props: {
1212
brexApp,

components/brex_staging/actions/invite-user/invite-user.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import brexApp from "../../brex_staging.app.mjs";
2-
import common from "../../../brex/actions/invite-user/common.mjs";
2+
import common from "@pipedream/brex/actions/invite-user/common.mjs";
33

44
export default {
55
...common,
66
name: "Invite User",
77
description: "Invites a new user as an employee. [See the docs here](https://developer.brex.com/openapi/team_api/#operation/createUser).",
88
key: "brex_staging-invite-user",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "action",
1111
props: {
1212
brexApp,

components/brex_staging/actions/list-transactions-for-primary-card-account/list-transactions-for-primary-card-account.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import brexApp from "../../brex_staging.app.mjs";
2-
import common from "../../../brex/actions/list-transactions-for-primary-card-account/common.mjs";
2+
import common from "@pipedream/brex/actions/list-transactions-for-primary-card-account/common.mjs";
33

44
export default {
55
...common,
66
name: "List Transactions for Primary Card Account",
77
description: "Lists all settled transactions for the primary card account. [See the docs here](https://developer.brex.com/openapi/transactions_api/#operation/listPrimaryCardTransactions).",
88
key: "brex_staging-list-transactions-for-primary-card-account",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "action",
1111
props: {
1212
brexApp,

components/brex_staging/actions/list-transactions-for-selected-cash-account/list-transactions-for-selected-cash-account.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import brexApp from "../../brex_staging.app.mjs";
2-
import common from "../../../brex/actions/list-transactions-for-selected-cash-account/common.mjs";
2+
import common from "@pipedream/brex/actions/list-transactions-for-selected-cash-account/common.mjs";
33

44
export default {
55
...common,
66
name: "List Transactions for Selected Cash Account",
77
description: "Lists all transactions for the specified cash account. [See the docs here](https://developer.brex.com/openapi/transactions_api/#operation/listCashTransactions).",
88
key: "brex_staging-list-transactions-for-selected-cash-account",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "action",
1111
props: {
1212
brexApp,

components/brex_staging/actions/set-limit-for-user/set-limit-for-user.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import brexApp from "../../brex_staging.app.mjs";
2-
import common from "../../../brex/actions/set-limit-for-user/common.mjs";
2+
import common from "@pipedream/brex/actions/set-limit-for-user/common.mjs";
33

44
export default {
55
...common,
66
name: "Set Limit for User",
77
description: "Sets the monthly limit for a user. [See the docs here](https://developer.brex.com/openapi/team_api/#operation/setUserLimit).",
88
key: "brex_staging-set-limit-for-user",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "action",
1111
props: {
1212
brexApp,

components/brex_staging/brex_staging.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import commonApp from "../brex/common-app.mjs";
1+
import commonApp from "@pipedream/brex/common-app.mjs";
22

33
export default {
44
...commonApp,

components/brex_staging/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/brex_staging",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "Pipedream Brex Staging Components",
55
"main": "brex_staging.app.js",
66
"keywords": [
@@ -13,6 +13,7 @@
1313
"access": "public"
1414
},
1515
"dependencies": {
16+
"@pipedream/brex": "^0.1.0",
1617
"axios": "^0.25.0",
1718
"crypto": "^1.0.1",
1819
"uuid": "^8.3.2"

components/brex_staging/sources/new-transfer-event/new-transfer-event.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import common from "../../../brex/sources/new-transfer-event/common.mjs";
1+
import common from "@pipedream/brex/sources/new-transfer-event/common.mjs";
22
import brexApp from "../../brex_staging.app.mjs";
33

44
export default {
@@ -8,7 +8,7 @@ export default {
88
key: "brex_staging-new-transfer-event",
99
name: "New Transfer Event (Instant)",
1010
description: "Emit new event for new failed or processed events",
11-
version: "0.0.1",
11+
version: "0.0.2",
1212
props: {
1313
brexApp,
1414
...common.props,

components/canva_enterprise/actions/create-design-from-brand-template/create-design-from-brand-template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "canva_enterprise-create-design-from-brand-template",
66
name: "Create Design from Brand Template",
77
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/)",
8-
version: "0.0.1",
8+
version: "0.0.2",
99
type: "action",
1010
props: {
1111
canva,

components/canva_enterprise/actions/create-design/create-design.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import canva from "../../canva_enterprise.app.mjs";
2-
import common from "../../../canva/actions/create-design/create-design.mjs";
3-
import constants from "../../../canva/common/constants.mjs";
2+
import common from "@pipedream/canva/actions/create-design/create-design.mjs";
3+
import constants from "@pipedream/canva/common/constants.mjs";
44

55
export default {
66
...common,
77
key: "canva_enterprise-create-design",
88
name: "Create Design",
99
description: "Creates a new Canva design. [See the documentation](https://www.canva.dev/docs/connect/api-reference/designs/create-design/)",
10-
version: "0.0.1",
10+
version: "0.0.2",
1111
type: "action",
1212
props: {
1313
canva,

0 commit comments

Comments
 (0)