@aphexcms/postgresql-adapter 2.0.6 → 2.0.7
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/schema.d.ts +6 -6
- package/package.json +3 -3
package/dist/schema.d.ts
CHANGED
|
@@ -229,7 +229,7 @@ export declare const organizationMembers: import("drizzle-orm/pg-core").PgTableW
|
|
|
229
229
|
tableName: "cms_organization_members";
|
|
230
230
|
dataType: "string";
|
|
231
231
|
columnType: "PgEnumColumn";
|
|
232
|
-
data: "
|
|
232
|
+
data: "admin" | "editor" | "viewer" | "owner";
|
|
233
233
|
driverParam: string;
|
|
234
234
|
notNull: true;
|
|
235
235
|
hasDefault: false;
|
|
@@ -376,7 +376,7 @@ export declare const invitations: import("drizzle-orm/pg-core").PgTableWithColum
|
|
|
376
376
|
tableName: "cms_invitations";
|
|
377
377
|
dataType: "string";
|
|
378
378
|
columnType: "PgEnumColumn";
|
|
379
|
-
data: "
|
|
379
|
+
data: "admin" | "editor" | "viewer" | "owner";
|
|
380
380
|
driverParam: string;
|
|
381
381
|
notNull: true;
|
|
382
382
|
hasDefault: false;
|
|
@@ -1501,7 +1501,7 @@ export declare const userProfiles: import("drizzle-orm/pg-core").PgTableWithColu
|
|
|
1501
1501
|
tableName: "cms_user_profiles";
|
|
1502
1502
|
dataType: "string";
|
|
1503
1503
|
columnType: "PgText";
|
|
1504
|
-
data: "
|
|
1504
|
+
data: "super_admin" | "admin" | "editor" | "viewer";
|
|
1505
1505
|
driverParam: string;
|
|
1506
1506
|
notNull: true;
|
|
1507
1507
|
hasDefault: true;
|
|
@@ -1807,7 +1807,7 @@ export declare const cmsSchema: {
|
|
|
1807
1807
|
tableName: "cms_organization_members";
|
|
1808
1808
|
dataType: "string";
|
|
1809
1809
|
columnType: "PgEnumColumn";
|
|
1810
|
-
data: "
|
|
1810
|
+
data: "admin" | "editor" | "viewer" | "owner";
|
|
1811
1811
|
driverParam: string;
|
|
1812
1812
|
notNull: true;
|
|
1813
1813
|
hasDefault: false;
|
|
@@ -1954,7 +1954,7 @@ export declare const cmsSchema: {
|
|
|
1954
1954
|
tableName: "cms_invitations";
|
|
1955
1955
|
dataType: "string";
|
|
1956
1956
|
columnType: "PgEnumColumn";
|
|
1957
|
-
data: "
|
|
1957
|
+
data: "admin" | "editor" | "viewer" | "owner";
|
|
1958
1958
|
driverParam: string;
|
|
1959
1959
|
notNull: true;
|
|
1960
1960
|
hasDefault: false;
|
|
@@ -3079,7 +3079,7 @@ export declare const cmsSchema: {
|
|
|
3079
3079
|
tableName: "cms_user_profiles";
|
|
3080
3080
|
dataType: "string";
|
|
3081
3081
|
columnType: "PgText";
|
|
3082
|
-
data: "
|
|
3082
|
+
data: "super_admin" | "admin" | "editor" | "viewer";
|
|
3083
3083
|
driverParam: string;
|
|
3084
3084
|
notNull: true;
|
|
3085
3085
|
hasDefault: true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aphexcms/postgresql-adapter",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "PostgreSQL database adapter for Aphex CMS using Drizzle ORM",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"postgres": "^3.4.7"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@aphexcms/cms-core": "2.0.
|
|
37
|
+
"@aphexcms/cms-core": "2.0.7"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"tsup": "^8.5.1",
|
|
41
41
|
"typescript": "^5.9.3",
|
|
42
|
-
"@aphexcms/cms-core": "2.0.
|
|
42
|
+
"@aphexcms/cms-core": "2.0.7"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "tsc && node ../../scripts/fix-imports.js ./dist",
|