@mars-stack/cli 8.0.2 → 8.0.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mars-stack/cli",
3
- "version": "8.0.2",
3
+ "version": "8.0.3",
4
4
  "description": "MARS CLI: scaffold, configure, and maintain SaaS apps",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -52,6 +52,6 @@
52
52
  "@types/prompts": "^2.4.0",
53
53
  "tsup": "^8.0.0",
54
54
  "typescript": "^5.7.0",
55
- "vitest": "^4.1.1"
55
+ "vitest": "^4.1.2"
56
56
  }
57
57
  }
@@ -30,8 +30,8 @@
30
30
  "dependencies": {
31
31
  "@mars-stack/core": "*",
32
32
  "@mars-stack/ui": "*",
33
- "@prisma/adapter-pg": "^7.5.0",
34
- "@prisma/client": "^7.5.0",
33
+ "@prisma/adapter-pg": "^7.6.0",
34
+ "@prisma/client": "^7.6.0",
35
35
  "dotenv": "^17.3.1",
36
36
  "@react-email/components": "^1.0.10",
37
37
  "@sendgrid/mail": "^8.1.0",
@@ -47,7 +47,7 @@
47
47
  "react-dom": "^19.0.0",
48
48
  "react-email": "^5.2.10",
49
49
  "server-only": "^0.0.1",
50
- "stripe": "^20.4.1",
50
+ "stripe": "^21.0.1",
51
51
  "zod": "^4.3.6"
52
52
  },
53
53
  "prisma": {
@@ -71,10 +71,10 @@
71
71
  "postcss": "^8.5.0",
72
72
  "prettier": "^3.5.0",
73
73
  "prettier-plugin-tailwindcss": "^0.7.2",
74
- "prisma": "^7.5.0",
74
+ "prisma": "^7.6.0",
75
75
  "tailwindcss": "^4.0.0",
76
76
  "tsx": "^4.0.0",
77
77
  "typescript": "^5.7.0",
78
- "vitest": "^4.1.1"
78
+ "vitest": "^4.1.2"
79
79
  }
80
80
  }
@@ -17,8 +17,8 @@ import type * as Prisma from "./prismaNamespace"
17
17
 
18
18
  const config: runtime.GetPrismaClientConfig = {
19
19
  "previewFeatures": [],
20
- "clientVersion": "7.5.0",
21
- "engineVersion": "280c870be64f457428992c43c1f6d557fab6e29e",
20
+ "clientVersion": "7.6.0",
21
+ "engineVersion": "75cbdc1eb7150937890ad5465d861175c6624711",
22
22
  "activeProvider": "postgresql",
23
23
  "inlineSchema": "model User {\n id String @id @default(cuid())\n email String @unique\n name String?\n password String?\n role String @default(\"user\")\n emailVerified DateTime?\n image String?\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n failedLoginAttempts Int @default(0)\n lastFailedLogin DateTime?\n lockedUntil DateTime?\n\n termsAcceptedAt DateTime?\n privacyAcceptedAt DateTime?\n marketingOptIn Boolean @default(false)\n marketingOptInAt DateTime?\n\n accounts Account[]\n sessions Session[]\n files File[]\n subscription Subscription?\n\n @@index([email])\n @@index([role])\n}\n\nmodel Account {\n id String @id @default(cuid())\n userId String\n provider String\n providerAccountId String\n refreshToken String?\n accessToken String?\n expiresAt Int?\n tokenType String?\n scope String?\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@unique([provider, providerAccountId])\n @@index([userId])\n}\n\nmodel Session {\n id String @id @default(cuid())\n userId String\n token String @unique\n expiresAt DateTime\n createdAt DateTime @default(now())\n ipAddress String?\n userAgent String?\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n @@index([token])\n @@index([expiresAt])\n}\n\nmodel VerificationToken {\n identifier String\n token String @unique\n expires DateTime\n\n @@unique([identifier, token])\n}\n\ndatasource db {\n provider = \"postgresql\"\n}\n\ngenerator client {\n provider = \"prisma-client\"\n output = \"../generated/prisma\"\n}\n\nmodel File {\n id String @id @default(cuid())\n userId String\n filename String\n url String\n contentType String\n size Int\n access String @default(\"private\")\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n}\n\nmodel Subscription {\n id String @id @default(cuid())\n userId String @unique\n stripeCustomerId String @unique\n stripePriceId String?\n stripeSubscriptionId String? @unique\n status String @default(\"inactive\")\n currentPeriodEnd DateTime?\n cancelAtPeriodEnd Boolean @default(false)\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([stripeCustomerId])\n @@index([stripeSubscriptionId])\n}\n",
24
24
  "runtimeDataModel": {
@@ -80,12 +80,12 @@ export type PrismaVersion = {
80
80
  }
81
81
 
82
82
  /**
83
- * Prisma Client JS version: 7.5.0
84
- * Query Engine version: 280c870be64f457428992c43c1f6d557fab6e29e
83
+ * Prisma Client JS version: 7.6.0
84
+ * Query Engine version: 75cbdc1eb7150937890ad5465d861175c6624711
85
85
  */
86
86
  export const prismaVersion: PrismaVersion = {
87
- client: "7.5.0",
88
- engine: "280c870be64f457428992c43c1f6d557fab6e29e"
87
+ client: "7.6.0",
88
+ engine: "75cbdc1eb7150937890ad5465d861175c6624711"
89
89
  }
90
90
 
91
91
  /**
@@ -220,7 +220,7 @@ export type AccountGroupByOutputType = {
220
220
  _max: AccountMaxAggregateOutputType | null
221
221
  }
222
222
 
223
- type GetAccountGroupByPayload<T extends AccountGroupByArgs> = Prisma.PrismaPromise<
223
+ export type GetAccountGroupByPayload<T extends AccountGroupByArgs> = Prisma.PrismaPromise<
224
224
  Array<
225
225
  Prisma.PickEnumerable<AccountGroupByOutputType, T['by']> &
226
226
  {
@@ -220,7 +220,7 @@ export type FileGroupByOutputType = {
220
220
  _max: FileMaxAggregateOutputType | null
221
221
  }
222
222
 
223
- type GetFileGroupByPayload<T extends FileGroupByArgs> = Prisma.PrismaPromise<
223
+ export type GetFileGroupByPayload<T extends FileGroupByArgs> = Prisma.PrismaPromise<
224
224
  Array<
225
225
  Prisma.PickEnumerable<FileGroupByOutputType, T['by']> &
226
226
  {
@@ -172,7 +172,7 @@ export type SessionGroupByOutputType = {
172
172
  _max: SessionMaxAggregateOutputType | null
173
173
  }
174
174
 
175
- type GetSessionGroupByPayload<T extends SessionGroupByArgs> = Prisma.PrismaPromise<
175
+ export type GetSessionGroupByPayload<T extends SessionGroupByArgs> = Prisma.PrismaPromise<
176
176
  Array<
177
177
  Prisma.PickEnumerable<SessionGroupByOutputType, T['by']> &
178
178
  {
@@ -193,7 +193,7 @@ export type SubscriptionGroupByOutputType = {
193
193
  _max: SubscriptionMaxAggregateOutputType | null
194
194
  }
195
195
 
196
- type GetSubscriptionGroupByPayload<T extends SubscriptionGroupByArgs> = Prisma.PrismaPromise<
196
+ export type GetSubscriptionGroupByPayload<T extends SubscriptionGroupByArgs> = Prisma.PrismaPromise<
197
197
  Array<
198
198
  Prisma.PickEnumerable<SubscriptionGroupByOutputType, T['by']> &
199
199
  {
@@ -269,7 +269,7 @@ export type UserGroupByOutputType = {
269
269
  _max: UserMaxAggregateOutputType | null
270
270
  }
271
271
 
272
- type GetUserGroupByPayload<T extends UserGroupByArgs> = Prisma.PrismaPromise<
272
+ export type GetUserGroupByPayload<T extends UserGroupByArgs> = Prisma.PrismaPromise<
273
273
  Array<
274
274
  Prisma.PickEnumerable<UserGroupByOutputType, T['by']> &
275
275
  {
@@ -144,7 +144,7 @@ export type VerificationTokenGroupByOutputType = {
144
144
  _max: VerificationTokenMaxAggregateOutputType | null
145
145
  }
146
146
 
147
- type GetVerificationTokenGroupByPayload<T extends VerificationTokenGroupByArgs> = Prisma.PrismaPromise<
147
+ export type GetVerificationTokenGroupByPayload<T extends VerificationTokenGroupByArgs> = Prisma.PrismaPromise<
148
148
  Array<
149
149
  Prisma.PickEnumerable<VerificationTokenGroupByOutputType, T['by']> &
150
150
  {