@maestro-js/agent-skills 1.0.0-alpha.21 → 1.0.0-alpha.22
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/package.json +1 -1
- package/skills/maestro-examples/references/cadence/cadence-web/app/features/request-context.server.ts +1 -1
- package/skills/maestro-examples/references/cadence/cadence-web/package.json +6 -6
- package/skills/maestro-examples/references/cadence/package.json +4 -4
- package/skills/maestro-examples/references/cadence/packages/schemas/package.json +1 -1
- package/skills/maestro-examples/references/cadence/packages/services/package.json +19 -19
- package/skills/maestro-examples/references/cadence/packages/services/src/maestro.ts +2 -5
- package/skills/maestro-examples/references/chorus/chorus-web/app/features/request-context.server.ts +2 -2
- package/skills/maestro-examples/references/chorus/chorus-web/package.json +5 -5
- package/skills/maestro-examples/references/chorus/infrastructure/package.json +2 -2
- package/skills/maestro-examples/references/chorus/package.json +4 -4
- package/skills/maestro-examples/references/chorus/packages/schemas/package.json +1 -1
- package/skills/maestro-examples/references/chorus/packages/services/package.json +21 -21
- package/skills/maestro-examples/references/chorus/packages/services/src/maestro.ts +4 -5
- package/skills/maestro-examples/references/setlist/infrastructure/package.json +2 -2
- package/skills/maestro-examples/references/setlist/package.json +4 -4
- package/skills/maestro-examples/references/setlist/packages/schemas/package.json +1 -1
- package/skills/maestro-examples/references/setlist/packages/services/package.json +15 -15
- package/skills/maestro-examples/references/setlist/queue-processor/package.json +2 -2
- package/skills/maestro-examples/references/setlist/setlist-web/app/features/request-context.server.ts +1 -1
- package/skills/maestro-examples/references/setlist/setlist-web/package.json +3 -3
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@ export const requestContextMiddleware: MiddlewareFunction<Response> = async ({ r
|
|
|
17
17
|
const requestId = randomUUID()
|
|
18
18
|
const cookieHeader = request.headers.get('Cookie')
|
|
19
19
|
const session = await Session.getSession(cookieHeader)
|
|
20
|
-
const deviceContext = Helpers.getDeviceContext(request)
|
|
20
|
+
const deviceContext = Helpers.getDeviceContext(request, 'none')
|
|
21
21
|
const authResult = await Auth.authenticate({ session, cookieHeader, deviceContext })
|
|
22
22
|
const profile = authResult.id ? await AuthService.GetProfileByUserId({ userId: authResult.id }) : null
|
|
23
23
|
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"@cadence/schemas": "workspace:*",
|
|
15
15
|
"@cadence/services": "workspace:*",
|
|
16
16
|
"@internationalized/date": "^3.11.0",
|
|
17
|
-
"@maestro-js/custom-errors": "^1.0.0-alpha.
|
|
18
|
-
"@maestro-js/log": "^1.0.0-alpha.
|
|
19
|
-
"@maestro-js/form": "^1.0.0-alpha.
|
|
20
|
-
"@maestro-js/permissions": "^1.0.0-alpha.
|
|
17
|
+
"@maestro-js/custom-errors": "^1.0.0-alpha.22",
|
|
18
|
+
"@maestro-js/log": "^1.0.0-alpha.22",
|
|
19
|
+
"@maestro-js/form": "^1.0.0-alpha.22",
|
|
20
|
+
"@maestro-js/permissions": "^1.0.0-alpha.22",
|
|
21
21
|
"@react-aria/interactions": "^3.27.0",
|
|
22
22
|
"@react-aria/utils": "^3.33.0",
|
|
23
23
|
"@react-router/node": "^7.9.0",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"zod": "^4.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@maestro-js/cli": "^1.0.0-alpha.
|
|
45
|
-
"@maestro-js/react-router-file-routes": "^1.0.0-alpha.
|
|
44
|
+
"@maestro-js/cli": "^1.0.0-alpha.22",
|
|
45
|
+
"@maestro-js/react-router-file-routes": "^1.0.0-alpha.22",
|
|
46
46
|
"@playwright/test": "^1.52.0",
|
|
47
47
|
"@react-router/dev": "^7.9.0",
|
|
48
48
|
"@tailwindcss/typography": "^0.5.19",
|
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"fks-restrict": "maestro config:run --config services -- node ./scripts/foreign-key-delete-behavior.ts restrict"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@maestro-js/config": "^1.0.0-alpha.
|
|
9
|
+
"@maestro-js/config": "^1.0.0-alpha.22"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@maestro-js/cli": "^1.0.0-alpha.
|
|
13
|
-
"@maestro-js/db-migrate": "^1.0.0-alpha.
|
|
14
|
-
"@maestro-js/db": "^1.0.0-alpha.
|
|
12
|
+
"@maestro-js/cli": "^1.0.0-alpha.22",
|
|
13
|
+
"@maestro-js/db-migrate": "^1.0.0-alpha.22",
|
|
14
|
+
"@maestro-js/db": "^1.0.0-alpha.22",
|
|
15
15
|
"@types/node": "^22.19.11"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -12,30 +12,30 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@aws-sdk/client-ses": "^3.1004.0",
|
|
14
14
|
"@cadence/schemas": "workspace:*",
|
|
15
|
-
"@maestro-js/auth": "^1.0.0-alpha.
|
|
16
|
-
"@maestro-js/cache": "^1.0.0-alpha.
|
|
17
|
-
"@maestro-js/config": "^1.0.0-alpha.
|
|
18
|
-
"@maestro-js/crypt": "^1.0.0-alpha.
|
|
19
|
-
"@maestro-js/custom-errors": "^1.0.0-alpha.
|
|
20
|
-
"@maestro-js/db": "^1.0.0-alpha.
|
|
21
|
-
"@maestro-js/exceptions": "^1.0.0-alpha.
|
|
22
|
-
"@maestro-js/hash": "^1.0.0-alpha.
|
|
23
|
-
"@maestro-js/helpers": "^1.0.0-alpha.
|
|
24
|
-
"@maestro-js/iso-zod": "^1.0.0-alpha.
|
|
25
|
-
"@maestro-js/log": "^1.0.0-alpha.
|
|
26
|
-
"@maestro-js/mail": "^1.0.0-alpha.
|
|
27
|
-
"@maestro-js/password": "^1.0.0-alpha.
|
|
28
|
-
"@maestro-js/permissions": "^1.0.0-alpha.
|
|
29
|
-
"@maestro-js/queue": "^1.0.0-alpha.
|
|
30
|
-
"@maestro-js/rate-limiting": "^1.0.0-alpha.
|
|
31
|
-
"@maestro-js/recurring-jobs": "^1.0.0-alpha.
|
|
32
|
-
"@maestro-js/session": "^1.0.0-alpha.
|
|
15
|
+
"@maestro-js/auth": "^1.0.0-alpha.22",
|
|
16
|
+
"@maestro-js/cache": "^1.0.0-alpha.22",
|
|
17
|
+
"@maestro-js/config": "^1.0.0-alpha.22",
|
|
18
|
+
"@maestro-js/crypt": "^1.0.0-alpha.22",
|
|
19
|
+
"@maestro-js/custom-errors": "^1.0.0-alpha.22",
|
|
20
|
+
"@maestro-js/db": "^1.0.0-alpha.22",
|
|
21
|
+
"@maestro-js/exceptions": "^1.0.0-alpha.22",
|
|
22
|
+
"@maestro-js/hash": "^1.0.0-alpha.22",
|
|
23
|
+
"@maestro-js/helpers": "^1.0.0-alpha.22",
|
|
24
|
+
"@maestro-js/iso-zod": "^1.0.0-alpha.22",
|
|
25
|
+
"@maestro-js/log": "^1.0.0-alpha.22",
|
|
26
|
+
"@maestro-js/mail": "^1.0.0-alpha.22",
|
|
27
|
+
"@maestro-js/password": "^1.0.0-alpha.22",
|
|
28
|
+
"@maestro-js/permissions": "^1.0.0-alpha.22",
|
|
29
|
+
"@maestro-js/queue": "^1.0.0-alpha.22",
|
|
30
|
+
"@maestro-js/rate-limiting": "^1.0.0-alpha.22",
|
|
31
|
+
"@maestro-js/recurring-jobs": "^1.0.0-alpha.22",
|
|
32
|
+
"@maestro-js/session": "^1.0.0-alpha.22",
|
|
33
33
|
"iso-fns": "npm:iso-fns@2.0.0-alpha.26",
|
|
34
34
|
"sanitize-html": "^2.17.2",
|
|
35
35
|
"zod": "^4.3.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@maestro-js/cli": "^1.0.0-alpha.
|
|
38
|
+
"@maestro-js/cli": "^1.0.0-alpha.22",
|
|
39
39
|
"@types/node": "^22.0.0",
|
|
40
40
|
"@types/sanitize-html": "^2.16.1",
|
|
41
41
|
"beartest-js": "^8.0.2"
|
|
@@ -5,7 +5,7 @@ import { Cache } from '@maestro-js/cache'
|
|
|
5
5
|
import { Hash } from '@maestro-js/hash'
|
|
6
6
|
import { Crypt } from '@maestro-js/crypt'
|
|
7
7
|
import { Auth } from '@maestro-js/auth'
|
|
8
|
-
import { Password
|
|
8
|
+
import { Password } from '@maestro-js/password'
|
|
9
9
|
import { Session } from '@maestro-js/session'
|
|
10
10
|
import { RateLimiting } from '@maestro-js/rate-limiting'
|
|
11
11
|
import { Queue } from '@maestro-js/queue'
|
|
@@ -58,10 +58,7 @@ Password.Provider.register(
|
|
|
58
58
|
updatePasswordHash: authDbProvider.updatePasswordHash,
|
|
59
59
|
updateCredentialsInvalidBefore: authDbProvider.updateCredentialsInvalidBefore,
|
|
60
60
|
hash: Hash.provider('bcrypt'),
|
|
61
|
-
|
|
62
|
-
...authDbProvider.passwordResetToken,
|
|
63
|
-
hash: Hash.provider('bcrypt')
|
|
64
|
-
})
|
|
61
|
+
passwordResetOptions: authDbProvider.passwordResetToken
|
|
65
62
|
})
|
|
66
63
|
)
|
|
67
64
|
|
package/skills/maestro-examples/references/chorus/chorus-web/app/features/request-context.server.ts
CHANGED
|
@@ -17,8 +17,8 @@ export const requestContextMiddleware: MiddlewareFunction<Response> = async ({ r
|
|
|
17
17
|
const requestId = randomUUID()
|
|
18
18
|
const cookieHeader = request.headers.get('Cookie')
|
|
19
19
|
const session = await Session.getSession(cookieHeader)
|
|
20
|
-
const deviceContext = Helpers.getDeviceContext(request)
|
|
21
|
-
const authResult = await Auth.authenticate({ session, cookieHeader, deviceContext
|
|
20
|
+
const deviceContext = Helpers.getDeviceContext(request, 'none')
|
|
21
|
+
const authResult = await Auth.authenticate({ session, cookieHeader, deviceContext })
|
|
22
22
|
const profile = authResult.id ? await AuthService.GetProfileById({ profileId: authResult.id }) : null
|
|
23
23
|
|
|
24
24
|
context.set(requestContext, { profile, requestId, session, deviceContext })
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@bundled-es-modules/pdfjs-dist": "3.6.172-alpha.1",
|
|
15
15
|
"@internationalized/date": "^3.11.0",
|
|
16
|
-
"@maestro-js/form": "^1.0.0-alpha.
|
|
17
|
-
"@maestro-js/permissions": "^1.0.0-alpha.
|
|
18
|
-
"@maestro-js/custom-errors": "^1.0.0-alpha.
|
|
16
|
+
"@maestro-js/form": "^1.0.0-alpha.22",
|
|
17
|
+
"@maestro-js/permissions": "^1.0.0-alpha.22",
|
|
18
|
+
"@maestro-js/custom-errors": "^1.0.0-alpha.22",
|
|
19
19
|
"@react-aria/interactions": "^3.27.0",
|
|
20
20
|
"@react-aria/utils": "^3.33.0",
|
|
21
21
|
"@react-router/node": "^7.9.0",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"@sentry/react-router": "^9"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@maestro-js/cli": "^1.0.0-alpha.
|
|
40
|
-
"@maestro-js/react-router-file-routes": "^1.0.0-alpha.
|
|
39
|
+
"@maestro-js/cli": "^1.0.0-alpha.22",
|
|
40
|
+
"@maestro-js/react-router-file-routes": "^1.0.0-alpha.22",
|
|
41
41
|
"@playwright/test": "^1.58.2",
|
|
42
42
|
"@react-router/dev": "^7.9.0",
|
|
43
43
|
"@tailwindcss/vite": "^4.2.0",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"aws-whoami": "aws sts get-caller-identity"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@maestro-js/aws-cdk-recipes": "^1.0.0-alpha.
|
|
14
|
-
"@maestro-js/db-migrate": "^1.0.0-alpha.
|
|
13
|
+
"@maestro-js/aws-cdk-recipes": "^1.0.0-alpha.22",
|
|
14
|
+
"@maestro-js/db-migrate": "^1.0.0-alpha.22",
|
|
15
15
|
"aws-cdk": "^2.1106.1",
|
|
16
16
|
"aws-cdk-lib": "^2.178.0",
|
|
17
17
|
"constructs": "^10.4.2",
|
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"fks-restrict": "maestro config:run --config services -- node ./scripts/foreign-key-delete-behavior.ts restrict"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@maestro-js/config": "^1.0.0-alpha.
|
|
9
|
+
"@maestro-js/config": "^1.0.0-alpha.22"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@maestro-js/cli": "^1.0.0-alpha.
|
|
13
|
-
"@maestro-js/db-migrate": "^1.0.0-alpha.
|
|
14
|
-
"@maestro-js/db": "^1.0.0-alpha.
|
|
12
|
+
"@maestro-js/cli": "^1.0.0-alpha.22",
|
|
13
|
+
"@maestro-js/db-migrate": "^1.0.0-alpha.22",
|
|
14
|
+
"@maestro-js/db": "^1.0.0-alpha.22",
|
|
15
15
|
"@types/node": "^22.19.11"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -14,33 +14,33 @@
|
|
|
14
14
|
"@aws-sdk/client-ses": "^3.1004.0",
|
|
15
15
|
"@dicebear/collection": "^9.4.0",
|
|
16
16
|
"@dicebear/core": "^9.4.0",
|
|
17
|
-
"@maestro-js/auth": "^1.0.0-alpha.
|
|
18
|
-
"@maestro-js/cache": "^1.0.0-alpha.
|
|
19
|
-
"@maestro-js/config": "^1.0.0-alpha.
|
|
20
|
-
"@maestro-js/crypt": "^1.0.0-alpha.
|
|
21
|
-
"@maestro-js/custom-errors": "^1.0.0-alpha.
|
|
22
|
-
"@maestro-js/db": "^1.0.0-alpha.
|
|
23
|
-
"@maestro-js/exceptions": "^1.0.0-alpha.
|
|
24
|
-
"@maestro-js/file-storage": "^1.0.0-alpha.
|
|
25
|
-
"@maestro-js/hash": "^1.0.0-alpha.
|
|
26
|
-
"@maestro-js/helpers": "^1.0.0-alpha.
|
|
27
|
-
"@maestro-js/iso-zod": "^1.0.0-alpha.
|
|
28
|
-
"@maestro-js/log": "^1.0.0-alpha.
|
|
29
|
-
"@maestro-js/mail": "^1.0.0-alpha.
|
|
30
|
-
"@maestro-js/password": "^1.0.0-alpha.
|
|
31
|
-
"@maestro-js/permissions": "^1.0.0-alpha.
|
|
32
|
-
"@maestro-js/queue": "^1.0.0-alpha.
|
|
33
|
-
"@maestro-js/rate-limiting": "^1.0.0-alpha.
|
|
34
|
-
"@maestro-js/recurring-jobs": "^1.0.0-alpha.
|
|
35
|
-
"@maestro-js/session": "^1.0.0-alpha.
|
|
36
|
-
"@maestro-js/signed-url": "^1.0.0-alpha.
|
|
17
|
+
"@maestro-js/auth": "^1.0.0-alpha.22",
|
|
18
|
+
"@maestro-js/cache": "^1.0.0-alpha.22",
|
|
19
|
+
"@maestro-js/config": "^1.0.0-alpha.22",
|
|
20
|
+
"@maestro-js/crypt": "^1.0.0-alpha.22",
|
|
21
|
+
"@maestro-js/custom-errors": "^1.0.0-alpha.22",
|
|
22
|
+
"@maestro-js/db": "^1.0.0-alpha.22",
|
|
23
|
+
"@maestro-js/exceptions": "^1.0.0-alpha.22",
|
|
24
|
+
"@maestro-js/file-storage": "^1.0.0-alpha.22",
|
|
25
|
+
"@maestro-js/hash": "^1.0.0-alpha.22",
|
|
26
|
+
"@maestro-js/helpers": "^1.0.0-alpha.22",
|
|
27
|
+
"@maestro-js/iso-zod": "^1.0.0-alpha.22",
|
|
28
|
+
"@maestro-js/log": "^1.0.0-alpha.22",
|
|
29
|
+
"@maestro-js/mail": "^1.0.0-alpha.22",
|
|
30
|
+
"@maestro-js/password": "^1.0.0-alpha.22",
|
|
31
|
+
"@maestro-js/permissions": "^1.0.0-alpha.22",
|
|
32
|
+
"@maestro-js/queue": "^1.0.0-alpha.22",
|
|
33
|
+
"@maestro-js/rate-limiting": "^1.0.0-alpha.22",
|
|
34
|
+
"@maestro-js/recurring-jobs": "^1.0.0-alpha.22",
|
|
35
|
+
"@maestro-js/session": "^1.0.0-alpha.22",
|
|
36
|
+
"@maestro-js/signed-url": "^1.0.0-alpha.22",
|
|
37
37
|
"@chorus/email-templates": "workspace:*",
|
|
38
38
|
"@chorus/schemas": "workspace:*",
|
|
39
39
|
"iso-fns": "npm:iso-fns@2.0.0-alpha.26",
|
|
40
40
|
"zod": "^4.3.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@maestro-js/cli": "^1.0.0-alpha.
|
|
43
|
+
"@maestro-js/cli": "^1.0.0-alpha.22",
|
|
44
44
|
"@types/node": "^22.0.0",
|
|
45
45
|
"beartest-js": "^8.0.2"
|
|
46
46
|
}
|
|
@@ -3,7 +3,7 @@ import { Cache } from '@maestro-js/cache'
|
|
|
3
3
|
import { Hash } from '@maestro-js/hash'
|
|
4
4
|
import { Crypt } from '@maestro-js/crypt'
|
|
5
5
|
import { Auth } from '@maestro-js/auth'
|
|
6
|
-
import { Password
|
|
6
|
+
import { Password } from '@maestro-js/password'
|
|
7
7
|
import { authenticatableDbProvider } from './auth/authenticatable-db-provider.ts'
|
|
8
8
|
import { rememberMeTokenDbProvider } from './auth/remember-me-token-db-provider.ts'
|
|
9
9
|
import { passwordResetTokenDbProvider } from './auth/password-reset-token-db-provider.ts'
|
|
@@ -70,10 +70,9 @@ Password.Provider.register(
|
|
|
70
70
|
updatePasswordHash: authenticatableDbProvider.updatePasswordHash,
|
|
71
71
|
updateCredentialsInvalidBefore: authenticatableDbProvider.updateCredentialsInvalidBefore,
|
|
72
72
|
hash: Hash.provider('bcrypt'),
|
|
73
|
-
|
|
74
|
-
...passwordResetTokenDbProvider
|
|
75
|
-
|
|
76
|
-
})
|
|
73
|
+
passwordResetOptions: {
|
|
74
|
+
...passwordResetTokenDbProvider
|
|
75
|
+
}
|
|
77
76
|
})
|
|
78
77
|
)
|
|
79
78
|
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"aws-whoami": "aws sts get-caller-identity"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@maestro-js/aws-cdk-recipes": "^1.0.0-alpha.
|
|
14
|
-
"@maestro-js/db-migrate": "^1.0.0-alpha.
|
|
13
|
+
"@maestro-js/aws-cdk-recipes": "^1.0.0-alpha.22",
|
|
14
|
+
"@maestro-js/db-migrate": "^1.0.0-alpha.22",
|
|
15
15
|
"aws-cdk": "^2.1106.1",
|
|
16
16
|
"aws-cdk-lib": "^2.178.0",
|
|
17
17
|
"constructs": "^10.4.2",
|
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
"fks-restrict": "maestro config:run --config services -- node ./scripts/foreign-key-delete-behavior.ts restrict"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@maestro-js/config": "^1.0.0-alpha.
|
|
9
|
+
"@maestro-js/config": "^1.0.0-alpha.22",
|
|
10
10
|
"@setlist/services": "workspace:*"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@maestro-js/cli": "^1.0.0-alpha.
|
|
14
|
-
"@maestro-js/db-migrate": "^1.0.0-alpha.
|
|
15
|
-
"@maestro-js/db": "^1.0.0-alpha.
|
|
13
|
+
"@maestro-js/cli": "^1.0.0-alpha.22",
|
|
14
|
+
"@maestro-js/db-migrate": "^1.0.0-alpha.22",
|
|
15
|
+
"@maestro-js/db": "^1.0.0-alpha.22",
|
|
16
16
|
"@types/node": "^22.19.11",
|
|
17
17
|
"tsx": "^4.21.0"
|
|
18
18
|
}
|
|
@@ -10,27 +10,27 @@
|
|
|
10
10
|
"typecheck": "tsc --noEmit"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@maestro-js/auth": "^1.0.0-alpha.
|
|
14
|
-
"@maestro-js/cache": "^1.0.0-alpha.
|
|
15
|
-
"@maestro-js/crypt": "^1.0.0-alpha.
|
|
16
|
-
"@maestro-js/custom-errors": "^1.0.0-alpha.
|
|
17
|
-
"@maestro-js/db": "^1.0.0-alpha.
|
|
18
|
-
"@maestro-js/iso-zod": "^1.0.0-alpha.
|
|
19
|
-
"@maestro-js/hash": "^1.0.0-alpha.
|
|
20
|
-
"@maestro-js/helpers": "^1.0.0-alpha.
|
|
21
|
-
"@maestro-js/log": "^1.0.0-alpha.
|
|
22
|
-
"@maestro-js/mail": "^1.0.0-alpha.
|
|
23
|
-
"@maestro-js/queue": "^1.0.0-alpha.
|
|
24
|
-
"@maestro-js/rate-limiting": "^1.0.0-alpha.
|
|
25
|
-
"@maestro-js/recurring-jobs": "^1.0.0-alpha.
|
|
26
|
-
"@maestro-js/session": "^1.0.0-alpha.
|
|
13
|
+
"@maestro-js/auth": "^1.0.0-alpha.22",
|
|
14
|
+
"@maestro-js/cache": "^1.0.0-alpha.22",
|
|
15
|
+
"@maestro-js/crypt": "^1.0.0-alpha.22",
|
|
16
|
+
"@maestro-js/custom-errors": "^1.0.0-alpha.22",
|
|
17
|
+
"@maestro-js/db": "^1.0.0-alpha.22",
|
|
18
|
+
"@maestro-js/iso-zod": "^1.0.0-alpha.22",
|
|
19
|
+
"@maestro-js/hash": "^1.0.0-alpha.22",
|
|
20
|
+
"@maestro-js/helpers": "^1.0.0-alpha.22",
|
|
21
|
+
"@maestro-js/log": "^1.0.0-alpha.22",
|
|
22
|
+
"@maestro-js/mail": "^1.0.0-alpha.22",
|
|
23
|
+
"@maestro-js/queue": "^1.0.0-alpha.22",
|
|
24
|
+
"@maestro-js/rate-limiting": "^1.0.0-alpha.22",
|
|
25
|
+
"@maestro-js/recurring-jobs": "^1.0.0-alpha.22",
|
|
26
|
+
"@maestro-js/session": "^1.0.0-alpha.22",
|
|
27
27
|
"@setlist/email-templates": "workspace:*",
|
|
28
28
|
"@setlist/schemas": "workspace:*",
|
|
29
29
|
"iso-fns": "npm:iso-fns@2.0.0-alpha.26",
|
|
30
30
|
"zod": "^4.3.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@maestro-js/cli": "^1.0.0-alpha.
|
|
33
|
+
"@maestro-js/cli": "^1.0.0-alpha.22",
|
|
34
34
|
"@aws-sdk/client-ses": "^3.0.0",
|
|
35
35
|
"@types/node": "^22.0.0",
|
|
36
36
|
"mailtrap": "^4.0.0",
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
"start": "maestro config:run --config queue-processor -- tsx src/index.ts"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@maestro-js/config": "^1.0.0-alpha.
|
|
9
|
+
"@maestro-js/config": "^1.0.0-alpha.22",
|
|
10
10
|
"@setlist/services": "workspace:*"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@maestro-js/cli": "^1.0.0-alpha.
|
|
13
|
+
"@maestro-js/cli": "^1.0.0-alpha.22",
|
|
14
14
|
"@types/node": "^22.19.11",
|
|
15
15
|
"tsx": "^4.21.0"
|
|
16
16
|
}
|
|
@@ -21,7 +21,7 @@ export const requestContextMiddleware: MiddlewareFunction<Response> = async ({ r
|
|
|
21
21
|
const requestId = randomUUID()
|
|
22
22
|
const cookieHeader = request.headers.get('Cookie')
|
|
23
23
|
const session = await Session.getSession(cookieHeader)
|
|
24
|
-
const deviceContext = Helpers.getDeviceContext(request)
|
|
24
|
+
const deviceContext = Helpers.getDeviceContext(request, 'none')
|
|
25
25
|
const authResult = await Auth.authenticate({ session, cookieHeader, deviceContext })
|
|
26
26
|
|
|
27
27
|
let user: User | null = null
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"@dnd-kit/core": "^6.3.1",
|
|
17
17
|
"@dnd-kit/sortable": "^10.0.0",
|
|
18
18
|
"@dnd-kit/utilities": "^3.2.2",
|
|
19
|
-
"@maestro-js/form": "^1.0.0-alpha.
|
|
20
|
-
"@maestro-js/react-router-file-routes": "^1.0.0-alpha.
|
|
19
|
+
"@maestro-js/form": "^1.0.0-alpha.22",
|
|
20
|
+
"@maestro-js/react-router-file-routes": "^1.0.0-alpha.22",
|
|
21
21
|
"@react-aria/interactions": "^3.27.0",
|
|
22
22
|
"@react-aria/utils": "^3.33.0",
|
|
23
23
|
"@react-router/node": "^7.9.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"zod": "^4.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@maestro-js/cli": "^1.0.0-alpha.
|
|
39
|
+
"@maestro-js/cli": "^1.0.0-alpha.22",
|
|
40
40
|
"@react-router/dev": "^7.9.0",
|
|
41
41
|
"@tailwindcss/vite": "^4.2.0",
|
|
42
42
|
"@types/node": "^22.19.11",
|