@aiworkforge/piece-imap-extended 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.imapExtended = void 0;
4
4
  const pieces_framework_1 = require("@activepieces/pieces-framework");
5
- const shared_1 = require("@activepieces/shared");
6
5
  const move_email_1 = require("./lib/actions/move-email");
7
6
  const create_draft_1 = require("./lib/actions/create-draft");
8
7
  const auth_1 = require("./lib/auth");
@@ -12,7 +11,7 @@ exports.imapExtended = (0, pieces_framework_1.createPiece)({
12
11
  auth: auth_1.imapAuth,
13
12
  minimumSupportedRelease: '0.36.1',
14
13
  logoUrl: 'https://cdn.activepieces.com/pieces/imap.png',
15
- categories: [shared_1.PieceCategory.COMMUNICATION],
14
+ categories: [],
16
15
  authors: ['AIWorkForge'],
17
16
  actions: [move_email_1.moveEmail, create_draft_1.createDraft],
18
17
  triggers: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiworkforge/piece-imap-extended",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "IMAP Extended piece for Activepieces - Move emails and create drafts",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,7 +8,12 @@
8
8
  "build": "tsc",
9
9
  "prepublishOnly": "npm run build"
10
10
  },
11
- "keywords": ["activepieces", "imap", "email", "draft"],
11
+ "keywords": [
12
+ "activepieces",
13
+ "imap",
14
+ "email",
15
+ "draft"
16
+ ],
12
17
  "author": "AIWorkForge",
13
18
  "license": "MIT",
14
19
  "dependencies": {
@@ -19,4 +24,4 @@
19
24
  "typescript": "^5.0.0",
20
25
  "@types/node": "^20.0.0"
21
26
  }
22
- }
27
+ }
package/src/index.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  import { createPiece } from '@activepieces/pieces-framework';
2
- import { PieceCategory } from '@activepieces/shared';
3
2
  import { moveEmail } from './lib/actions/move-email';
4
3
  import { createDraft } from './lib/actions/create-draft';
5
4
  import { imapAuth } from './lib/auth';
@@ -10,7 +9,7 @@ export const imapExtended = createPiece({
10
9
  auth: imapAuth,
11
10
  minimumSupportedRelease: '0.36.1',
12
11
  logoUrl: 'https://cdn.activepieces.com/pieces/imap.png',
13
- categories: [PieceCategory.COMMUNICATION],
12
+ categories: [],
14
13
  authors: ['AIWorkForge'],
15
14
  actions: [moveEmail, createDraft],
16
15
  triggers: [],