Skip to content

Commit 2afb3e4

Browse files
authored
Fixing relative import apps (#18159)
* Fixing packages for pikaso, salesmate, trustpilot * wildberries imports + pnpm-lock * Adjusting app imports: notiff * Adjusting app imports: procore * Adjusting app imports: amazon_ses * Bumping versions of updated components * Adjusting app imports: slack_bot * Adjusting app imports: youtube_data_api_custom_app * Adjusting gitlab_developer_app and other version bumps * Fixes * pnpm and workflow cron * Removing unused component Its "parent" component was previously deleted in PR #15695 * Removing unused component Its "parent component" was removed in a previous PR
1 parent 5403da4 commit 2afb3e4

File tree

112 files changed

+356
-252
lines changed

Some content is hidden

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

112 files changed

+356
-252
lines changed

.github/workflows/scheduled-package-validation.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Scheduled Package Validation Report
22

33
on:
44
schedule:
5-
# Run every three days at midnight UTC
6-
- cron: '0 0 */3 * *'
5+
# Run weekly on Mondays at 2:00 PM UTC
6+
- cron: '0 14 * * 1'
77
workflow_dispatch: # Allow manual triggering for testing
88

99
jobs:

components/amazon_ses/actions/create-email-template/create-email-template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "amazon_ses-create-email-template",
66
name: "Create Email Template",
77
description: "Create a HTML or a plain text email template. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-sesv2/classes/createemailtemplatecommand.html)",
8-
version: "0.0.1",
8+
version: "0.0.2",
99
type: "action",
1010
props: {
1111
...base.props,

components/amazon_ses/actions/get-email-template/get-email-template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "amazon_ses-get-email-template",
55
name: "Get Email Template",
66
description: "Get an email template. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-sesv2/classes/getemailtemplatecommand.html)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
...base.props,

components/amazon_ses/actions/send-email/send-email.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "amazon_ses-send-email",
66
name: "Send Email",
77
description: "Send an email using Amazon SES. Supports simple email messaging. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-sesv2/classes/sendemailcommand.html)",
8-
version: "0.9.0",
8+
version: "0.9.1",
99
type: "action",
1010
props: {
1111
...base.props,

components/amazon_ses/actions/send-templated-email/send-templated-email.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "amazon_ses-send-templated-email",
55
name: "Send Templated Email",
66
description: "Send an email replacing the template tags with values using Amazon SES. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ses/classes/sendtemplatedemailcommand.html)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
...base.props,

components/amazon_ses/actions/update-email-template/update-email-template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "amazon_ses-update-email-template",
55
name: "Update Email Template",
66
description: "Update an email template. [See the docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-sesv2/classes/updateemailtemplatecommand.html)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
...base.props,

components/amazon_ses/amazon_ses.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import aws from "../aws/aws.app.mjs";
1+
import aws from "@pipedream/aws";
22
import {
33
SESClient,
44
SendTemplatedEmailCommand,

components/amazon_ses/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/amazon_ses",
3-
"version": "0.3.7",
3+
"version": "0.3.8",
44
"description": "Pipedream Amazon SES Components",
55
"main": "amazon_ses.app.mjs",
66
"keywords": [
@@ -13,7 +13,8 @@
1313
"@aws-sdk/client-ec2": "^3.89.0",
1414
"@aws-sdk/client-ses": "^3.95.0",
1515
"@aws-sdk/client-sesv2": "^3.87.0",
16-
"@pipedream/platform": "^0.10.0"
16+
"@pipedream/platform": "^0.10.0",
17+
"@pipedream/aws": "^1.1.0"
1718
},
1819
"gitHead": "e12480b94cc03bed4808ebc6b13e7fdb3a1ba535",
1920
"publishConfig": {

components/gitlab_developer_app/actions/create-branch/create-branch.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import app from "../../gitlab_developer_app.app.mjs";
2-
import common from "../../../gitlab/actions/create-branch/create-branch.mjs";
2+
import common from "@pipedream/gitlab/actions/create-branch/create-branch.mjs";
33

44
import { adjustPropDefinitions } from "../../common/utils.mjs";
55

@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, app);
1111
export default {
1212
...others,
1313
key: "gitlab_developer_app-create-branch",
14-
version: "0.0.1",
14+
version: "0.0.2",
1515
name,
1616
description,
1717
type,

components/gitlab_developer_app/actions/create-epic/create-epic.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import app from "../../gitlab_developer_app.app.mjs";
2-
import common from "../../../gitlab/actions/create-epic/create-epic.mjs";
2+
import common from "@pipedream/gitlab/actions/create-epic/create-epic.mjs";
33
import { adjustPropDefinitions } from "../../common/utils.mjs";
44

55
const {
@@ -10,7 +10,7 @@ const props = adjustPropDefinitions(others.props, app);
1010
export default {
1111
...others,
1212
key: "gitlab_developer_app-create-epic",
13-
version: "0.0.1",
13+
version: "0.0.2",
1414
name,
1515
description,
1616
type,

0 commit comments

Comments
 (0)