@goweekdays/core 0.0.21 → 0.1.0

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.
@@ -1,16 +1,17 @@
1
- <div style="font-family: Helvetica, Arial, sans-serif; min-width: 1000px; overflow: auto; line-height: 2">
2
- <div style="margin: 50px auto; width: 70%; padding: 20px 0;">
3
- <div
4
- style="border-bottom: 1px solid #eee; font-size: 1.4em; color: #00466a; text-decoration: none; font-weight: 600; text-align: center;">
5
- Team Member Invitation
6
- </div>
7
- <p>Dear {{teamMemberName}},</p>
8
- <p>You have been invited to join the team "{{teamName}}" on our platform. Please use the link below to accept the invitation and complete your registration. This link is valid for {{validity}}.</p>
9
- <div style="text-align: center; margin: 20px 0;">
10
- <a href="{{link}}" style="padding: 10px 20px; color: #fff; background: #00466a; text-decoration: none; border-radius: 5px;">Accept Invitation</a>
11
- </div>
12
- <p>If you did not expect this email or were added to this team by mistake, please ignore this invitation.</p>
13
- <p>Best regards,</p>
14
- <p>DepEd Team</p>
15
- </div>
16
- </div>
1
+ <div style="font-family: Helvetica, Arial, sans-serif; min-width: 1000px; overflow: auto; line-height: 2;">
2
+ </div>
3
+ <div style="margin: 50px auto; width: 70%; padding: 20px 0;">
4
+ <div style="border-bottom: 1px solid #eee; font-size: 1.4em; color: #00466a; text-decoration: none; font-weight: 600; text-align: center;">
5
+ Organization Invitation
6
+ </div>
7
+ <p>
8
+ You have been invited to join <strong>{{organization_name}}</strong> on our platform.
9
+ Click the link below to accept the invitation and join the organization. The link is valid for {{validity}}.
10
+ </p>
11
+ <div>
12
+ <a href="{{link}}" target="_blank">{{link}}</a>
13
+ </div>
14
+ <p>
15
+ If you did not expect this email or do not recognize the organization, feel free to ignore it.
16
+ </p>
17
+ </div>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@goweekdays/core",
3
3
  "license": "MIT",
4
- "version": "0.0.21",
4
+ "version": "0.1.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
@@ -12,31 +12,20 @@
12
12
  },
13
13
  "devDependencies": {
14
14
  "@changesets/cli": "^2.26.0",
15
- "@types/axios": "^0.14.4",
16
- "@types/bcrypt": "^5.0.2",
17
15
  "@types/express": "^5.0.0",
18
- "@types/jsonwebtoken": "^9.0.6",
19
16
  "@types/multer": "^1.4.12",
20
- "@types/node-cron": "^3.0.11",
21
17
  "@types/nodemailer": "^6.4.15",
22
18
  "tsup": "^6.5.0",
23
19
  "typescript": "^4.9.4"
24
20
  },
25
21
  "dependencies": {
26
- "@aws-sdk/client-s3": "^3.666.0",
27
- "@goweekdays/utils": "^1.0.16",
28
- "bcrypt": "^5.1.1",
22
+ "@eeplatform/nodejs-utils": "^1.2.0",
29
23
  "dotenv": "^16.4.5",
30
24
  "express": "^4.21.2",
31
25
  "handlebars": "^4.7.8",
32
26
  "joi": "^17.13.3",
33
- "jsonwebtoken": "^9.0.2",
34
- "mongodb": "^6.13.0",
35
- "multer": "^1.4.5-lts.1",
36
- "node-cron": "^3.0.3",
37
- "nodemailer": "^6.9.14",
38
- "redis": "^4.6.15",
39
- "winston": "^3.13.0",
40
- "zod": "^3.24.2"
41
- }
27
+ "mongodb": "^6.17.0",
28
+ "multer": "^1.4.5-lts.1"
29
+ },
30
+ "packageManager": "yarn@1.22.22"
42
31
  }