diff --git a/packages/payload/src/auth/types.ts b/packages/payload/src/auth/types.ts index e51ee42cf..2bc0162bb 100644 --- a/packages/payload/src/auth/types.ts +++ b/packages/payload/src/auth/types.ts @@ -209,7 +209,7 @@ export interface IncomingAuthType { disableLocalStrategy?: true /** * Customize the way that the forgotPassword operation functions. - * @link https://payloadcms.com/docs/beta/authentication/email#forgot-password + * @link https://payloadcms.com/docs/authentication/email#forgot-password */ forgotPassword?: { generateEmailHTML?: GenerateForgotPasswordEmailHTML @@ -222,7 +222,7 @@ export interface IncomingAuthType { /** * Ability to allow users to login with username/password. * - * @link https://payloadcms.com/docs/beta/authentication/overview#login-with-username + * @link https://payloadcms.com/docs/authentication/overview#login-with-username */ loginWithUsername?: boolean | LoginWithUsernameOptions /** @@ -235,24 +235,24 @@ export interface IncomingAuthType { removeTokenFromResponses?: true /** * Advanced - an array of custom authentification strategies to extend this collection's authentication with. - * @link https://payloadcms.com/docs/beta/authentication/custom-strategies + * @link https://payloadcms.com/docs/authentication/custom-strategies */ strategies?: AuthStrategy[] /** * Controls how many seconds the token will be valid for. Default is 2 hours. * @default 7200 - * @link https://payloadcms.com/docs/beta/authentication/overview#config-options + * @link https://payloadcms.com/docs/authentication/overview#config-options */ tokenExpiration?: number /** * Payload Authentication provides for API keys to be set on each user within an Authentication-enabled Collection. * @default false - * @link https://payloadcms.com/docs/beta/authentication/api-keys + * @link https://payloadcms.com/docs/authentication/api-keys */ useAPIKey?: boolean /** * Set to true or pass an object with verification options to require users to verify by email before they are allowed to log into your app. - * @link https://payloadcms.com/docs/beta/authentication/email#email-verification + * @link https://payloadcms.com/docs/authentication/email#email-verification */ verify?: | { diff --git a/packages/plugin-cloud-storage/README.md b/packages/plugin-cloud-storage/README.md index 6ddc8ae2d..181345296 100644 --- a/packages/plugin-cloud-storage/README.md +++ b/packages/plugin-cloud-storage/README.md @@ -6,10 +6,10 @@ This repository contains the officially supported Payload Cloud Storage plugin. | Service | Package | | -------------------- | ----------------------------------------------------------------------------------------------------------------- | -| Vercel Blob | [`@payloadcms/storage-vercel-blob`](https://github.com/payloadcms/payload/tree/beta/packages/storage-vercel-blob) | -| AWS S3 | [`@payloadcms/storage-s3`](https://github.com/payloadcms/payload/tree/beta/packages/storage-s3) | -| Azure | [`@payloadcms/storage-azure`](https://github.com/payloadcms/payload/tree/beta/packages/storage-azure) | -| Google Cloud Storage | [`@payloadcms/storage-gcs`](https://github.com/payloadcms/payload/tree/beta/packages/storage-gcs) | +| Vercel Blob | [`@payloadcms/storage-vercel-blob`](https://github.com/payloadcms/payload/tree/main/packages/storage-vercel-blob) | +| AWS S3 | [`@payloadcms/storage-s3`](https://github.com/payloadcms/payload/tree/main/packages/storage-s3) | +| Azure | [`@payloadcms/storage-azure`](https://github.com/payloadcms/payload/tree/main/packages/storage-azure) | +| Google Cloud Storage | [`@payloadcms/storage-gcs`](https://github.com/payloadcms/payload/tree/main/packages/storage-gcs) | This package is now best used for implementing custom storage solutions or third-party storage services that do not have `@payloadcms/storage-*` packages. diff --git a/packages/plugin-seo/src/types.ts b/packages/plugin-seo/src/types.ts index b8b7edafc..3e985b542 100644 --- a/packages/plugin-seo/src/types.ts +++ b/packages/plugin-seo/src/types.ts @@ -67,7 +67,7 @@ export type SEOPluginConfig = { /** * Override the default fields inserted by the SEO plugin via a function that receives the default fields and returns the new fields * - * If you need more flexibility you can insert the fields manually as needed. @link https://payloadcms.com/docs/beta/plugins/seo#direct-use-of-fields + * If you need more flexibility you can insert the fields manually as needed. @link https://payloadcms.com/docs/plugins/seo#direct-use-of-fields */ fields?: FieldsOverride generateDescription?: GenerateDescription @@ -85,7 +85,7 @@ export type SEOPluginConfig = { /** * Group fields into tabs, your content will be automatically put into a general tab and the SEO fields into an SEO tab * - * If you need more flexibility you can insert the fields manually as needed. @link https://payloadcms.com/docs/beta/plugins/seo#direct-use-of-fields + * If you need more flexibility you can insert the fields manually as needed. @link https://payloadcms.com/docs/plugins/seo#direct-use-of-fields */ tabbedUI?: boolean /** diff --git a/packages/richtext-lexical/src/lexical/LexicalProvider.tsx b/packages/richtext-lexical/src/lexical/LexicalProvider.tsx index c88740f80..cb7ec62c3 100644 --- a/packages/richtext-lexical/src/lexical/LexicalProvider.tsx +++ b/packages/richtext-lexical/src/lexical/LexicalProvider.tsx @@ -66,13 +66,13 @@ export const LexicalProvider: React.FC = (props) => { if (value && Array.isArray(value) && !('root' in value)) { throw new Error( - 'You have tried to pass in data from the old Slate editor to the new Lexical editor. The data structure is different, thus you will have to migrate your data. We offer a one-line migration script which migrates all your rich text fields: https://payloadcms.com/docs/beta/lexical/migration#migration-via-migration-script-recommended', + 'You have tried to pass in data from the old Slate editor to the new Lexical editor. The data structure is different, thus you will have to migrate your data. We offer a one-line migration script which migrates all your rich text fields: https://payloadcms.com/docs/lexical/migration#migration-via-migration-script-recommended', ) } if (value && 'jsonContent' in value) { throw new Error( - 'You have tried to pass in data from payload-plugin-lexical. The data structure is different, thus you will have to migrate your data. Migration guide: https://payloadcms.com/docs/beta/lexical/migration#migrating-from-payload-plugin-lexical', + 'You have tried to pass in data from payload-plugin-lexical. The data structure is different, thus you will have to migrate your data. Migration guide: https://payloadcms.com/docs/lexical/migration#migrating-from-payload-plugin-lexical', ) }