payload-zitadel-plugin 0.2.10 → 0.2.11

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -12,7 +12,7 @@ Thus the user collection in PayloadCMS becomes just a shadow of the information
12
12
  ## Install
13
13
 
14
14
  ```shell
15
- pnpm add payload-zitadel-plugin@0.2.10
15
+ pnpm add payload-zitadel-plugin@0.2.11
16
16
  ```
17
17
 
18
18
  ## Configuration
@@ -84,7 +84,7 @@ ZITADEL_API_KEY='-----BEGIN RSA PRIVATE KEY----- ... ----END RSA PRIVATE KEY----
84
84
 
85
85
  or use the Next.js Config file:
86
86
 
87
- #### next.config.js
87
+ #### next.config.ts
88
88
 
89
89
  ```typescript
90
90
  import {withPayload} from '@payloadcms/next/withPayload'
@@ -113,7 +113,7 @@ you have to manually add the asset URL to the Next.js config file.
113
113
  Also if you want to automatically redirect to Zitadel without asking the user to click on the login button,
114
114
  you have to add the redirect manually to the Next.js config file.
115
115
 
116
- #### next.config.js
116
+ #### next.config.ts
117
117
 
118
118
  ```typescript
119
119
  import {withPayload} from '@payloadcms/next/withPayload'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payload-zitadel-plugin",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "plugin for Payload CMS, which enables authentication via Zitadel IdP",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -36,12 +36,12 @@
36
36
  "dist"
37
37
  ],
38
38
  "dependencies": {
39
- "@payloadcms/next": "3.0.0-beta.69",
40
- "@payloadcms/translations": "3.0.0-beta.69",
41
- "@payloadcms/ui": "3.0.0-beta.69",
39
+ "@payloadcms/next": "3.0.0-beta.70",
40
+ "@payloadcms/translations": "3.0.0-beta.70",
41
+ "@payloadcms/ui": "3.0.0-beta.70",
42
42
  "jsonwebtoken": "^9.0.2",
43
- "next": "^15.0.0-canary.84",
44
- "payload": "3.0.0-beta.69",
43
+ "next": "^15.0.0-canary.85",
44
+ "payload": "3.0.0-beta.70",
45
45
  "react": "rc",
46
46
  "react-dom": "rc"
47
47
  },