Skip to content

Commit 7e56ad8

Browse files
committed
migrated components
1 parent 5561c97 commit 7e56ad8

File tree

21 files changed

+453
-8
lines changed

21 files changed

+453
-8
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../monday_oauth.app.mjs";
2+
import common from "../../../monday/actions/create-board/create-board.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "monday_oauth-create-board",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
monday: app,
20+
...props,
21+
},
22+
};
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../monday_oauth.app.mjs";
2+
import common from "../../../monday/actions/create-column/create-column.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "monday_oauth-create-column",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
monday: app,
20+
...props,
21+
},
22+
};
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../monday_oauth.app.mjs";
2+
import common from "../../../monday/actions/create-group/create-group.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "monday_oauth-create-group",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
monday: app,
20+
...props,
21+
},
22+
};
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../monday_oauth.app.mjs";
2+
import common from "../../../monday/actions/create-item/create-item.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "monday_oauth-create-item",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
monday: app,
20+
...props,
21+
},
22+
};
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../monday_oauth.app.mjs";
2+
import common from "../../../monday/actions/create-subitem/create-subitem.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "monday_oauth-create-subitem",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
monday: app,
20+
...props,
21+
},
22+
};
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../monday_oauth.app.mjs";
2+
import common from "../../../monday/actions/create-update/create-update.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "monday_oauth-create-update",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
monday: app,
20+
...props,
21+
},
22+
};
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../monday_oauth.app.mjs";
2+
import common from "../../../monday/actions/get-column-values/get-column-values.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "monday_oauth-get-column-values",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
monday: app,
20+
...props,
21+
},
22+
};
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../monday_oauth.app.mjs";
2+
import common from "../../../monday/actions/get-items-by-column-value/get-items-by-column-value.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "monday_oauth-get-items-by-column-value",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
monday: app,
20+
...props,
21+
},
22+
};
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../monday_oauth.app.mjs";
2+
import common from "../../../monday/actions/update-column-values/update-column-values.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "monday_oauth-update-column-values",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
monday: app,
20+
...props,
21+
},
22+
};
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../monday_oauth.app.mjs";
2+
import common from "../../../monday/actions/update-item-name/update-item-name.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "monday_oauth-update-item-name",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
monday: app,
20+
...props,
21+
},
22+
};

0 commit comments

Comments
 (0)