@stacksjs/database 0.72.27 → 0.72.28
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/dist/framework-schema.d.ts +12 -0
- package/package.json +10 -10
|
@@ -1952,12 +1952,24 @@ export declare interface FrameworkSchema {
|
|
|
1952
1952
|
uuid: string
|
|
1953
1953
|
created_at: string
|
|
1954
1954
|
updated_at: string | null
|
|
1955
|
+
email_verified_at: string | null
|
|
1956
|
+
password_changed_at: string | null
|
|
1957
|
+
two_factor_secret: string | null
|
|
1958
|
+
two_factor_enabled: boolean | null
|
|
1959
|
+
two_factor_last_used_step: number | null
|
|
1960
|
+
stripe_id: string | null
|
|
1955
1961
|
name: string
|
|
1956
1962
|
email: string
|
|
1957
1963
|
password: string
|
|
1958
1964
|
avatar: string
|
|
1959
1965
|
createdAt: string
|
|
1960
1966
|
updatedAt: string | null
|
|
1967
|
+
emailVerifiedAt: string | null
|
|
1968
|
+
passwordChangedAt: string | null
|
|
1969
|
+
twoFactorSecret: string | null
|
|
1970
|
+
twoFactorEnabled: boolean | null
|
|
1971
|
+
twoFactorLastUsedStep: number | null
|
|
1972
|
+
stripeId: string | null
|
|
1961
1973
|
}
|
|
1962
1974
|
waitlist_products: {
|
|
1963
1975
|
id: number
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@stacksjs/database",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "0.72.
|
|
5
|
+
"version": "0.72.28",
|
|
6
6
|
"description": "The Stacks database integration.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"contributors": [
|
|
@@ -65,15 +65,15 @@
|
|
|
65
65
|
"dynamodb-tooling": "^0.3.2"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@stacksjs/cli": "0.72.
|
|
69
|
-
"@stacksjs/config": "0.72.
|
|
70
|
-
"@stacksjs/logging": "0.72.
|
|
71
|
-
"@stacksjs/router": "0.72.
|
|
68
|
+
"@stacksjs/cli": "0.72.28",
|
|
69
|
+
"@stacksjs/config": "0.72.28",
|
|
70
|
+
"@stacksjs/logging": "0.72.28",
|
|
71
|
+
"@stacksjs/router": "0.72.28",
|
|
72
72
|
"better-dx": "^0.2.23",
|
|
73
|
-
"@stacksjs/path": "0.72.
|
|
74
|
-
"@stacksjs/query-builder": "0.72.
|
|
75
|
-
"@stacksjs/storage": "0.72.
|
|
76
|
-
"@stacksjs/strings": "0.72.
|
|
77
|
-
"@stacksjs/utils": "0.72.
|
|
73
|
+
"@stacksjs/path": "0.72.28",
|
|
74
|
+
"@stacksjs/query-builder": "0.72.28",
|
|
75
|
+
"@stacksjs/storage": "0.72.28",
|
|
76
|
+
"@stacksjs/strings": "0.72.28",
|
|
77
|
+
"@stacksjs/utils": "0.72.28"
|
|
78
78
|
}
|
|
79
79
|
}
|