Skip to content

Commit eabc8bc

Browse files
committed
versions
1 parent 971d7ab commit eabc8bc

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

components/miro_custom_app/actions/create-board/create-board.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import app from "../../miro_custom_app.app.mjs";
22

33
export default {
44
name: "Create Board",
5-
version: "0.0.1",
5+
version: "0.0.2",
66
key: "miro_custom_app-create-board",
77
description: "Creates a Miro board. [See the docs](https://developers.miro.com/reference/create-board).",
88
type: "action",

components/miro_custom_app/actions/create-shape/create-shape.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { app } = common.props;
44

55
export default {
66
name: "Create Shape",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
key: "miro_custom_app-create-shape",
99
description: "Creates a shape on a Miro board. [See the docs](https://developers.miro.com/reference/create-shape-item).",
1010
type: "action",

components/miro_custom_app/actions/create-sticky-note/create-sticky-note.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const { app } = common.props;
55

66
export default {
77
name: "Create Sticky Note",
8-
version: "0.0.1",
8+
version: "0.0.2",
99
key: "miro_custom_app-create-sticky-note",
1010
description: "Creates a sticky note on a Miro board. [See the docs](https://developers.miro.com/reference/create-sticky-note-item).",
1111
type: "action",

components/miro_custom_app/actions/delete-board/delete-board.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import common from "../common/base.mjs";
33
export default {
44
...common,
55
name: "Delete Board",
6-
version: "0.0.1",
6+
version: "0.0.2",
77
key: "miro_custom_app-delete-board",
88
description: "Deletes a Miro board. [See the docs](https://developers.miro.com/reference/delete-board).",
99
type: "action",

components/miro_custom_app/actions/delete-item/delete-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { app } = common.props;
44

55
export default {
66
name: "Delete Item",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
key: "miro_custom_app-delete-item",
99
description: "Deletes an item from a Miro board. [See the docs](https://developers.miro.com/reference/delete-item).",
1010
type: "action",

components/miro_custom_app/actions/get-board/get-board.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import common from "../common/base.mjs";
33
export default {
44
...common,
55
name: "Get Board",
6-
version: "0.0.1",
6+
version: "0.0.2",
77
key: "miro_custom_app-get-board",
88
description: "Returns a Miro board. [See the docs](https://developers.miro.com/reference/get-specific-board).",
99
type: "action",

components/miro_custom_app/actions/get-items/get-items.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import utils from "../../common/utils.mjs";
44

55
export default {
66
name: "Get Items",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
key: "miro_custom_app-get-items",
99
description: "Returns items on a Miro board. [See the docs](https://developers.miro.com/reference/get-items).",
1010
type: "action",

components/miro_custom_app/actions/get-specific-item/get-specific-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { app } = common.props;
44

55
export default {
66
name: "Get Specific Item",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
key: "miro_custom_app-get-specific-item",
99
description: "Returns a specific item on a Miro board. [See the docs](https://developers.miro.com/reference/get-specific-item).",
1010
type: "action",

components/miro_custom_app/actions/list-boards/list-boards.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import utils from "../../common/utils.mjs";
44

55
export default {
66
name: "List Boards",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
key: "miro_custom_app-list-boards",
99
description: "Returns a user's Miro boards. [See the docs](https://developers.miro.com/reference/get-boards).",
1010
type: "action",

components/miro_custom_app/actions/update-board/update-board.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { app } = common.props;
44

55
export default {
66
name: "Update Board",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
key: "miro_custom_app-update-board",
99
description: "Updates a Miro board. [See the docs](https://developers.miro.com/reference/update-board).",
1010
type: "action",

0 commit comments

Comments
 (0)