Skip to content

Commit 4ad020d

Browse files
committed
chore: Update dependencies
1 parent ebe2b25 commit 4ad020d

File tree

3 files changed

+410
-552
lines changed

3 files changed

+410
-552
lines changed

dev/src/payload-types.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export interface Config {
1313
collections: {
1414
examples: Example;
1515
users: User;
16+
'payload-locked-documents': PayloadLockedDocument;
1617
'payload-preferences': PayloadPreference;
1718
'payload-migrations': PayloadMigration;
1819
};
@@ -89,6 +90,29 @@ export interface User {
8990
updatedAt: string;
9091
createdAt: string;
9192
}
93+
/**
94+
* This interface was referenced by `Config`'s JSON-Schema
95+
* via the `definition` "payload-locked-documents".
96+
*/
97+
export interface PayloadLockedDocument {
98+
id: number;
99+
document?:
100+
| ({
101+
relationTo: 'examples';
102+
value: number | Example;
103+
} | null)
104+
| ({
105+
relationTo: 'users';
106+
value: string | User;
107+
} | null);
108+
globalSlug?: string | null;
109+
user: {
110+
relationTo: 'users';
111+
value: string | User;
112+
};
113+
updatedAt: string;
114+
createdAt: string;
115+
}
92116
/**
93117
* This interface was referenced by `Config`'s JSON-Schema
94118
* via the `definition` "payload-preferences".

package.json

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,21 @@
5050
"author": "crawlercode@outlook.de",
5151
"license": "MIT",
5252
"peerDependencies": {
53-
"next-auth": "5.0.0-beta.20",
54-
"payload": "beta"
53+
"@payloadcms/next": "^3.0.0-beta.111",
54+
"@payloadcms/ui": "^3.0.0-beta.111",
55+
"next": "^15.0.0-canary.173",
56+
"next-auth": "^5.0.0-beta.22",
57+
"payload": "^3.0.0-beta.111"
5558
},
5659
"devDependencies": {
5760
"@nx/eslint": "19.7.2",
5861
"@nx/jest": "19.7.2",
5962
"@nx/js": "19.7.2",
6063
"@nx/next": "19.7.2",
61-
"@payloadcms/db-postgres": "3.0.0-beta.103",
64+
"@payloadcms/db-postgres": "3.0.0-beta.111",
6265
"@payloadcms/eslint-config": "^1",
63-
"@payloadcms/next": "3.0.0-beta.103",
64-
"@payloadcms/ui": "3.0.0-beta.103",
66+
"@payloadcms/next": "3.0.0-beta.111",
67+
"@payloadcms/ui": "3.0.0-beta.111",
6568
"@swc-node/register": "~1.10.9",
6669
"@swc/core": "~1.7.26",
6770
"@swc/helpers": "~0.5.13",
@@ -80,13 +83,14 @@
8083
"eslint-plugin-prettier": "^5.2.1",
8184
"jest": "^29.7.0",
8285
"jsonwebtoken": "^9.0.2",
83-
"next": "^15.0.0-canary.104",
86+
"next": "^15.0.0-canary.173",
87+
"next-auth": "5.0.0-beta.22",
8488
"nodemailer": "^6.9.15",
8589
"nx": "19.7.2",
86-
"payload": "3.0.0-beta.90",
90+
"payload": "3.0.0-beta.111",
8791
"prettier": "^3.3.3",
88-
"react": "19.0.0-rc-06d0b89e-20240801",
89-
"react-dom": "19.0.0-rc-06d0b89e-20240801",
92+
"react": "19.0.0-rc-3edc000d-20240926",
93+
"react-dom": "19.0.0-rc-3edc000d-20240926",
9094
"sharp": "^0.33.5",
9195
"typescript": "^5.6.2"
9296
},

0 commit comments

Comments
 (0)