stacks 0.47.2 → 0.47.4
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/buddy/package.json +1 -1
- package/core/actions/package.json +1 -1
- package/core/ai/package.json +1 -1
- package/core/alias/package.json +1 -1
- package/core/alias/src/index.ts +8 -0
- package/core/arrays/package.json +1 -1
- package/core/auth/package.json +1 -1
- package/core/build/package.json +1 -1
- package/core/cache/package.json +1 -1
- package/core/chat/package.json +4 -5
- package/core/cli/package.json +1 -1
- package/core/cloud/package.json +1 -1
- package/core/collections/package.json +1 -1
- package/core/config/package.json +1 -1
- package/core/dashboard/package.json +1 -1
- package/core/database/package.json +1 -1
- package/core/datetime/package.json +1 -1
- package/core/desktop/package.json +1 -1
- package/core/docs/package.json +1 -1
- package/core/domains/package.json +1 -1
- package/core/drivers/package.json +1 -1
- package/core/email/package.json +10 -2
- package/core/email/src/utils/config.ts +1 -1
- package/core/error-handling/package.json +1 -1
- package/core/events/package.json +1 -1
- package/core/git/package.json +1 -1
- package/core/health/package.json +1 -1
- package/core/lint/package.json +1 -1
- package/core/logging/package.json +1 -1
- package/core/modules/package.json +1 -1
- package/core/notifications/package.json +5 -1
- package/core/notifications/src/drivers/chat.ts +1 -0
- package/core/notifications/src/drivers/email.ts +1 -0
- package/core/notifications/src/drivers/push.ts +1 -0
- package/core/notifications/src/drivers/sms.ts +1 -0
- package/core/notifications/src/utils/config.ts +2 -2
- package/core/objects/package.json +1 -1
- package/core/path/package.json +1 -1
- package/core/path/src/index.ts +20 -0
- package/core/payments/package.json +1 -1
- package/core/push/package.json +1 -1
- package/core/realtime/package.json +1 -1
- package/core/router/package.json +1 -1
- package/core/search-engine/package.json +1 -1
- package/core/security/package.json +1 -1
- package/core/server/package.json +1 -1
- package/core/sms/package.json +10 -4
- package/core/storage/package.json +1 -1
- package/core/strings/package.json +1 -1
- package/core/testing/package.json +1 -1
- package/core/types/package.json +1 -1
- package/core/ui/package.json +1 -1
- package/core/utils/package.json +1 -1
- package/core/x-ray/package.json +1 -1
- package/package.json +2 -2
- package/core/notifications/src/drivers/chat/discord.ts +0 -15
- package/core/notifications/src/drivers/chat/index.ts +0 -2
- package/core/notifications/src/drivers/chat/slack.ts +0 -22
- package/core/notifications/src/drivers/email/actions/send.ts +0 -36
- package/core/notifications/src/drivers/email/emailjs.ts +0 -21
- package/core/notifications/src/drivers/email/index.ts +0 -9
- package/core/notifications/src/drivers/email/mailgun.ts +0 -19
- package/core/notifications/src/drivers/email/mailjet.ts +0 -18
- package/core/notifications/src/drivers/email/mandrill.ts +0 -17
- package/core/notifications/src/drivers/email/netcore.ts +0 -17
- package/core/notifications/src/drivers/email/nodemailer.ts +0 -21
- package/core/notifications/src/drivers/email/postmark.ts +0 -17
- package/core/notifications/src/drivers/email/sendgrid.ts +0 -18
- package/core/notifications/src/drivers/email/ses.ts +0 -19
- package/core/notifications/src/drivers/push/expo.ts +0 -19
- package/core/notifications/src/drivers/push/fcm.ts +0 -19
- package/core/notifications/src/drivers/sms/gupshup.ts +0 -21
- package/core/notifications/src/drivers/sms/index.ts +0 -8
- package/core/notifications/src/drivers/sms/nexmo.ts +0 -22
- package/core/notifications/src/drivers/sms/plivo.ts +0 -22
- package/core/notifications/src/drivers/sms/sms77.ts +0 -21
- package/core/notifications/src/drivers/sms/sns.ts +0 -22
- package/core/notifications/src/drivers/sms/telnyx.ts +0 -22
- package/core/notifications/src/drivers/sms/termii.ts +0 -21
- package/core/notifications/src/drivers/sms/twilio.ts +0 -22
package/buddy/package.json
CHANGED
package/core/ai/package.json
CHANGED
package/core/alias/package.json
CHANGED
package/core/alias/src/index.ts
CHANGED
|
@@ -19,6 +19,8 @@ const alias: Record<string, string> = {
|
|
|
19
19
|
'@stacksjs/build/*': p.buildPath('src/*'),
|
|
20
20
|
'@stacksjs/cache': p.cachePath('src/index.ts'),
|
|
21
21
|
'@stacksjs/cache/*': p.cachePath('src/*'),
|
|
22
|
+
'@stacksjs/chat': p.chatPath('src/index.ts'),
|
|
23
|
+
'@stacksjs/chat/*': p.chatPath('src/*'),
|
|
22
24
|
'@stacksjs/cli': p.cliPath('src/index.ts'),
|
|
23
25
|
'@stacksjs/cli/*': p.cliPath('src/*'),
|
|
24
26
|
'@stacksjs/collections': p.collectionsPath('src/index.ts'),
|
|
@@ -35,6 +37,8 @@ const alias: Record<string, string> = {
|
|
|
35
37
|
'@stacksjs/domains/*': p.domainsPath('src/*'),
|
|
36
38
|
'@stacksjs/drivers': p.driversPath('src/index.ts'),
|
|
37
39
|
'@stacksjs/drivers/*': p.driversPath('src/*'),
|
|
40
|
+
'@stacksjs/email': p.emailPath('src/index.ts'),
|
|
41
|
+
'@stacksjs/email/*': p.emailPath('src/*'),
|
|
38
42
|
'@stacksjs/error-handling': p.errorHandlingPath('src/index.ts'),
|
|
39
43
|
'@stacksjs/error-handling/*': p.errorHandlingPath('src/*'),
|
|
40
44
|
'@stacksjs/storage': p.fsPath('src/index.ts'),
|
|
@@ -54,6 +58,8 @@ const alias: Record<string, string> = {
|
|
|
54
58
|
'@stacksjs/objects/*': p.objectsPath('src/*'),
|
|
55
59
|
'@stacksjs/path': p.pathPath('src/index.ts'), // 🤦🏼♂️
|
|
56
60
|
'@stacksjs/path/*': p.pathPath('src/*'),
|
|
61
|
+
'@stacksjs/push': p.pushPath('src/index.ts'),
|
|
62
|
+
'@stacksjs/push/*': p.pushPath('src/*'),
|
|
57
63
|
'@stacksjs/router': p.routerPath('src/index.ts'),
|
|
58
64
|
'@stacksjs/router/*': p.routerPath('src/*'),
|
|
59
65
|
'@stacksjs/search-engine': p.searchEnginePath('src/index.ts'),
|
|
@@ -64,6 +70,8 @@ const alias: Record<string, string> = {
|
|
|
64
70
|
'@stacksjs/server/*': p.serverPath('src/*'),
|
|
65
71
|
'@stacksjs/serverless': p.serverlessPath('src/index.ts'),
|
|
66
72
|
'@stacksjs/serverless/*': p.serverlessPath('src/*'),
|
|
73
|
+
'@stacksjs/sms': p.smsPath('src/index.ts'),
|
|
74
|
+
'@stacksjs/sms/*': p.smsPath('src/*'),
|
|
67
75
|
'@stacksjs/strings': p.stringsPath('src/index.ts'),
|
|
68
76
|
'@stacksjs/strings/*': p.stringsPath('src/*'),
|
|
69
77
|
'@stacksjs/testing/*': p.testingPath('*'),
|
package/core/arrays/package.json
CHANGED
package/core/auth/package.json
CHANGED
package/core/build/package.json
CHANGED
package/core/cache/package.json
CHANGED
package/core/chat/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/chat",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.47.
|
|
4
|
+
"version": "0.47.4",
|
|
5
5
|
"packageManager": "pnpm@7.21.0",
|
|
6
6
|
"description": "The Stacks Chat Integration. Easy sending of messages for chat services",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -18,10 +18,9 @@
|
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
20
|
"chat",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"stacks"
|
|
21
|
+
"stacks",
|
|
22
|
+
"discord",
|
|
23
|
+
"slack"
|
|
25
24
|
],
|
|
26
25
|
"main": "dist/index.mjs",
|
|
27
26
|
"module": "dist/index.mjs",
|
package/core/cli/package.json
CHANGED
package/core/cloud/package.json
CHANGED
package/core/config/package.json
CHANGED
package/core/docs/package.json
CHANGED
package/core/email/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/email",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.47.
|
|
4
|
+
"version": "0.47.4",
|
|
5
5
|
"packageManager": "pnpm@7.21.0",
|
|
6
6
|
"description": "The Stacks Email integration. Painlessly create & manage your inboxes, templates, and send emails.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -21,7 +21,15 @@
|
|
|
21
21
|
"ses",
|
|
22
22
|
"aws",
|
|
23
23
|
"maizzle",
|
|
24
|
-
"stacks"
|
|
24
|
+
"stacks",
|
|
25
|
+
"emailjs",
|
|
26
|
+
"mailgun",
|
|
27
|
+
"mailjet",
|
|
28
|
+
"mandrill",
|
|
29
|
+
"netcore",
|
|
30
|
+
"nodemailer",
|
|
31
|
+
"postmark",
|
|
32
|
+
"sendgrid"
|
|
25
33
|
],
|
|
26
34
|
"main": "dist/index.mjs",
|
|
27
35
|
"module": "dist/index.mjs",
|
package/core/events/package.json
CHANGED
package/core/git/package.json
CHANGED
package/core/health/package.json
CHANGED
package/core/lint/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/notifications",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.47.
|
|
4
|
+
"version": "0.47.4",
|
|
5
5
|
"packageManager": "pnpm@7.21.0",
|
|
6
6
|
"description": "The Stacks notifications integration.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -74,9 +74,13 @@
|
|
|
74
74
|
"@novu/telnyx": "^0.10.0",
|
|
75
75
|
"@novu/termii": "^0.10.0",
|
|
76
76
|
"@novu/twilio": "^0.10.0",
|
|
77
|
+
"@stacksjs/chat": "workspace:*",
|
|
77
78
|
"@stacksjs/cli": "workspace:*",
|
|
78
79
|
"@stacksjs/config": "workspace:*",
|
|
80
|
+
"@stacksjs/email": "workspace:*",
|
|
79
81
|
"@stacksjs/error-handling": "workspace:*",
|
|
82
|
+
"@stacksjs/push": "workspace:*",
|
|
83
|
+
"@stacksjs/sms": "workspace:*",
|
|
80
84
|
"@stacksjs/types": "workspace:*"
|
|
81
85
|
},
|
|
82
86
|
"devDependencies": {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as chat from '@stacksjs/chat'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as email from '@stacksjs/email'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as push from '@stacksjs/push'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as sms from '@stacksjs/sms'
|
package/core/path/package.json
CHANGED
package/core/path/src/index.ts
CHANGED
|
@@ -82,6 +82,10 @@ export function cachePath(path?: string) {
|
|
|
82
82
|
return corePath(`cache/${path || ''}`)
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
+
export function chatPath(path?: string) {
|
|
86
|
+
return corePath(`chat/${path || ''}`)
|
|
87
|
+
}
|
|
88
|
+
|
|
85
89
|
export function cliPath(path?: string) {
|
|
86
90
|
return corePath(`cli/${path || ''}`)
|
|
87
91
|
}
|
|
@@ -126,6 +130,10 @@ export function customElementsDataPath() {
|
|
|
126
130
|
return frameworkPath('custom-elements.json')
|
|
127
131
|
}
|
|
128
132
|
|
|
133
|
+
export function emailPath(path?: string) {
|
|
134
|
+
return corePath(`email/${path || ''}`)
|
|
135
|
+
}
|
|
136
|
+
|
|
129
137
|
export function errorHandlingPath(path?: string) {
|
|
130
138
|
return corePath(`error-handling/${path || ''}`)
|
|
131
139
|
}
|
|
@@ -222,6 +230,10 @@ export function projectPath(filePath = '') {
|
|
|
222
230
|
return resolve(path, filePath)
|
|
223
231
|
}
|
|
224
232
|
|
|
233
|
+
export function pushPath(path?: string) {
|
|
234
|
+
return corePath(`push/${path || ''}`)
|
|
235
|
+
}
|
|
236
|
+
|
|
225
237
|
export function routerPath(path?: string) {
|
|
226
238
|
return corePath(`router/${path || ''}`)
|
|
227
239
|
}
|
|
@@ -230,6 +242,10 @@ export function searchEnginePath(path?: string) {
|
|
|
230
242
|
return corePath(`search-engine/${path || ''}`)
|
|
231
243
|
}
|
|
232
244
|
|
|
245
|
+
export function smsPath(path?: string) {
|
|
246
|
+
return corePath(`sms/${path || ''}`)
|
|
247
|
+
}
|
|
248
|
+
|
|
233
249
|
export function routesPath(path?: string) {
|
|
234
250
|
return projectPath(`routes/${path || ''}`)
|
|
235
251
|
}
|
|
@@ -288,6 +304,7 @@ export const path = {
|
|
|
288
304
|
buildEntriesPath,
|
|
289
305
|
buildPath,
|
|
290
306
|
cachePath,
|
|
307
|
+
chatPath,
|
|
291
308
|
cliPath,
|
|
292
309
|
collectionsPath,
|
|
293
310
|
componentsPath,
|
|
@@ -299,6 +316,7 @@ export const path = {
|
|
|
299
316
|
docsPath,
|
|
300
317
|
domainsPath,
|
|
301
318
|
driversPath,
|
|
319
|
+
emailPath,
|
|
302
320
|
errorHandlingPath,
|
|
303
321
|
examplesPath,
|
|
304
322
|
frameworkPath,
|
|
@@ -317,8 +335,10 @@ export const path = {
|
|
|
317
335
|
pagesPath,
|
|
318
336
|
pathPath,
|
|
319
337
|
projectPath,
|
|
338
|
+
pushPath,
|
|
320
339
|
routerPath,
|
|
321
340
|
searchEnginePath,
|
|
341
|
+
smsPath,
|
|
322
342
|
routesPath,
|
|
323
343
|
scriptsPath,
|
|
324
344
|
securityPath,
|
package/core/push/package.json
CHANGED
package/core/router/package.json
CHANGED
package/core/server/package.json
CHANGED
package/core/sms/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/sms",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.47.
|
|
4
|
+
"version": "0.47.4",
|
|
5
5
|
"packageManager": "pnpm@7.21.0",
|
|
6
6
|
"description": "The Stacks SMS integration. Painlessly create & manage your inboxes, templates, and send sms.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -19,9 +19,15 @@
|
|
|
19
19
|
"keywords": [
|
|
20
20
|
"sms",
|
|
21
21
|
"ses",
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
22
|
+
"stacks",
|
|
23
|
+
"gupshup",
|
|
24
|
+
"nexmo",
|
|
25
|
+
"plivo",
|
|
26
|
+
"sms77",
|
|
27
|
+
"sns",
|
|
28
|
+
"telnyx",
|
|
29
|
+
"termii",
|
|
30
|
+
"twilio"
|
|
25
31
|
],
|
|
26
32
|
"main": "dist/index.mjs",
|
|
27
33
|
"module": "dist/index.mjs",
|