Skip to content

Commit 4bd0d5a

Browse files
committed
Version bumps and text improvements
1 parent 1da42bd commit 4bd0d5a

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

components/short/actions/create-a-link/create-a-link.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ const {
1010

1111
export default {
1212
key: "short-create-a-link",
13-
name: "Create a Short Link",
14-
description: "Create a Short Link. [See the docs](https://developers.short.io/reference/linkspost).",
15-
version: "0.1.{{ts}}",
13+
name: "Create Link",
14+
description: "Create a Short Link. [See the documentation](https://developers.short.io/reference/linkspost).",
15+
version: "0.2.0",
1616
type: "action",
1717
props: {
1818
shortApp,

components/short/actions/delete-a-link/delete-a-link.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import shortApp from "../../short.app.mjs";
22

33
export default {
44
key: "short-delete-a-link",
5-
name: "Delete a Short Link",
6-
description: "Delete a Short Link. [See the docs](https://developers.short.io/reference/linksbylinkiddelete).",
5+
name: "Delete Link",
6+
description: "Delete a Short Link. [See the documentation](https://developers.short.io/reference/linksbylinkiddelete).",
77
version: "0.0.1",
88
type: "action",
99
props: {

components/short/actions/domain-statistics/domain-statistics.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import lodash from "lodash";
33

44
export default {
55
key: "short-domain-statistics",
6-
name: "Domain Statistics.",
7-
description: "Returns detailed statistics for domain in given period. [See the docs](https://developers.short.io/reference/getdomaindomainid).",
8-
version: "0.0.1",
6+
name: "Get Domain Statistics",
7+
description: "Returns detailed statistics for a domain in given period. [See the documentation](https://developers.short.io/reference/getdomaindomainid).",
8+
version: "0.0.2",
99
type: "action",
1010
props: {
1111
shortApp,

components/short/actions/expire-a-link/expire-a-link.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import lodash from "lodash";
33

44
export default {
55
key: "short-expire-a-link",
6-
name: "Expire a Link.",
7-
description: "Expire a link by id. [See the docs](https://developers.short.io/reference/linksbylinkidpost).",
6+
name: "Expire Link",
7+
description: "Expire a short link by id. [See the documentation](https://developers.short.io/reference/linksbylinkidpost).",
88
version: "0.0.1",
99
type: "action",
1010
props: {

components/short/actions/update-a-link/update-a-link.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import lodash from "lodash";
44

55
export default {
66
key: "short-update-a-link",
7-
name: "Update a Short Link.",
8-
description: "Update original url, title or path for existing URL by id. [See the docs](https://developers.short.io/reference/linksbylinkidpost).",
7+
name: "Update Link",
8+
description: "Update original URL, title or path for existing URL by id. [See the documentation](https://developers.short.io/reference/linksbylinkidpost).",
99
version: "0.0.1",
1010
type: "action",
1111
props: {

components/short/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/short",
3-
"version": "0.0.5",
3+
"version": "0.1.0",
44
"description": "Pipedream Short.io Components",
55
"main": "short.app.mjs",
66
"keywords": [

components/short/sources/new-link-created/new-link-created.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
33

44
export default {
55
key: "short-new-link-created",
6-
name: "New event for each link created.",
6+
name: "New Link Created",
77
description: "Emit new event when a link is created.",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
type: "source",
1010
dedupe: "unique",
1111
props: {

0 commit comments

Comments
 (0)