@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.
- package/CHANGELOG.md +3 -123
- package/dist/index.d.ts +71 -2558
- package/dist/index.js +1061 -24121
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1029 -24123
- package/dist/index.mjs.map +1 -1
- package/dist/public/handlebars/member-invite.hbs +17 -16
- package/package.json +6 -17
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
<div style="font-family: Helvetica, Arial, sans-serif; min-width: 1000px; overflow: auto; line-height: 2">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
</
|
|
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
|
|
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
|
-
"@
|
|
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
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
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
|
}
|