@stacksjs/orm 0.61.17 → 0.61.19
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/index.js +1 -0
- package/package.json +1 -1
- package/src/generated/types.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -108213,6 +108213,7 @@ var Action;
|
|
|
108213
108213
|
Action2["LintFix"] = "lint/fix";
|
|
108214
108214
|
Action2["Prepublish"] = "prepublish";
|
|
108215
108215
|
Action2["Release"] = "release";
|
|
108216
|
+
Action2["RouteList"] = "route/list";
|
|
108216
108217
|
Action2["ShowFeatureTestReport"] = "show-feature-test-report";
|
|
108217
108218
|
Action2["Test"] = "test";
|
|
108218
108219
|
Action2["TestUi"] = "test-ui";
|
package/package.json
CHANGED
package/src/generated/types.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { ProjectsTable } from '../../../../orm/src/models/Project'
|
|
2
|
+
import type { SubscriberEmailsTable } from '../../../../orm/src/models/SubscriberEmail'
|
|
2
3
|
import type { AccessTokensTable } from '../../../../orm/src/models/AccessToken'
|
|
3
4
|
import type { TeamsTable } from '../../../../orm/src/models/Team'
|
|
4
5
|
import type { SubscribersTable } from '../../../../orm/src/models/Subscriber'
|
|
@@ -14,6 +15,7 @@ export interface TeamAccessTokensTable {
|
|
|
14
15
|
}
|
|
15
16
|
export interface Database {
|
|
16
17
|
projects: ProjectsTable
|
|
18
|
+
subscriber_emails: SubscriberEmailsTable
|
|
17
19
|
access_tokens: AccessTokensTable
|
|
18
20
|
team_access_tokens: TeamAccessTokensTable
|
|
19
21
|
teams: TeamsTable
|