mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
Compare commits
3 Commits
@auth/soli
...
docs/remov
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b1774ca9bd | ||
|
|
57356021fb | ||
|
|
006ee59a2a |
@@ -59,7 +59,8 @@
|
|||||||
],
|
],
|
||||||
"pnpm": {
|
"pnpm": {
|
||||||
"patchedDependencies": {
|
"patchedDependencies": {
|
||||||
"@balazsorban/monorepo-release@0.1.8": "patches/@balazsorban__monorepo-release@0.1.8.patch"
|
"@balazsorban/monorepo-release@0.1.8": "patches/@balazsorban__monorepo-release@0.1.8.patch",
|
||||||
|
"typedoc-plugin-markdown@4.0.0-next.3": "patches/typedoc-plugin-markdown@4.0.0-next.3.patch"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,13 +64,13 @@ export interface FirebaseAdapterConfig extends AppOptions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ## Setup
|
* ### Setup
|
||||||
*
|
*
|
||||||
* First, create a Firebase project and generate a service account key. Visit: `https://console.firebase.google.com/u/0/project/{project-id}/settings/serviceaccounts/adminsdk` (replace `{project-id}` with your project's id)
|
* First, create a Firebase project and generate a service account key. Visit: `https://console.firebase.google.com/u/0/project/{project-id}/settings/serviceaccounts/adminsdk` (replace `{project-id}` with your project's id)
|
||||||
*
|
*
|
||||||
* Now you have a few options to authenticate with the Firebase Admin SDK in your app:
|
* Now you have a few options to authenticate with the Firebase Admin SDK in your app:
|
||||||
*
|
*
|
||||||
* ### Environment variables
|
* #### Environment variables
|
||||||
* - Download the service account key and save it in your project. (Make sure to add the file to your `.gitignore`!)
|
* - Download the service account key and save it in your project. (Make sure to add the file to your `.gitignore`!)
|
||||||
* - Add [`GOOGLE_APPLICATION_CREDENTIALS`](https://cloud.google.com/docs/authentication/application-default-credentials#GAC) to your environment variables and point it to the service account key file.
|
* - Add [`GOOGLE_APPLICATION_CREDENTIALS`](https://cloud.google.com/docs/authentication/application-default-credentials#GAC) to your environment variables and point it to the service account key file.
|
||||||
* - The adapter will automatically pick up the environment variable and use it to authenticate with the Firebase Admin SDK.
|
* - The adapter will automatically pick up the environment variable and use it to authenticate with the Firebase Admin SDK.
|
||||||
@@ -86,7 +86,7 @@ export interface FirebaseAdapterConfig extends AppOptions {
|
|||||||
* })
|
* })
|
||||||
* ```
|
* ```
|
||||||
*
|
*
|
||||||
* ### Service account values
|
* #### Service account values
|
||||||
*
|
*
|
||||||
* - Download the service account key to a temporary location. (Make sure to not commit this file to your repository!)
|
* - Download the service account key to a temporary location. (Make sure to not commit this file to your repository!)
|
||||||
* - Add the following environment variables to your project: `FIREBASE_PROJECT_ID`, `FIREBASE_CLIENT_EMAIL`, `FIREBASE_PRIVATE_KEY`.
|
* - Add the following environment variables to your project: `FIREBASE_PROJECT_ID`, `FIREBASE_CLIENT_EMAIL`, `FIREBASE_PRIVATE_KEY`.
|
||||||
@@ -110,7 +110,7 @@ export interface FirebaseAdapterConfig extends AppOptions {
|
|||||||
* })
|
* })
|
||||||
* ```
|
* ```
|
||||||
*
|
*
|
||||||
* ### Using an existing Firestore instance
|
* #### Using an existing Firestore instance
|
||||||
*
|
*
|
||||||
* If you already have a Firestore instance, you can pass that to the adapter directly instead.
|
* If you already have a Firestore instance, you can pass that to the adapter directly instead.
|
||||||
*
|
*
|
||||||
|
|||||||
30
patches/typedoc-plugin-markdown@4.0.0-next.3.patch
Normal file
30
patches/typedoc-plugin-markdown@4.0.0-next.3.patch
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
diff --git a/dist/partials/members.js b/dist/partials/members.js
|
||||||
|
index 4fe981318e71ea716da9fca652ce6a0dc5a3e6df..e888cb3a4bc0a838229ae00b409b748a236b254c 100644
|
||||||
|
--- a/dist/partials/members.js
|
||||||
|
+++ b/dist/partials/members.js
|
||||||
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
exports.members = void 0;
|
||||||
|
const typedoc_1 = require("typedoc");
|
||||||
|
const els_1 = require("../support/els");
|
||||||
|
-const helpers_1 = require("../support/helpers");
|
||||||
|
+// const helpers_1 = require("../support/helpers");
|
||||||
|
function members(context, container) {
|
||||||
|
var _a;
|
||||||
|
const md = [];
|
||||||
|
@@ -18,14 +18,14 @@ function members(context, container) {
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
(_a = container.groups) === null || _a === void 0 ? void 0 : _a.filter((group) => !group.allChildrenHaveOwnDocument()).forEach((group) => {
|
||||||
|
- const headingLevel = (0, helpers_1.getGroupHeadingLevel)(container);
|
||||||
|
+ // const headingLevel = (0, helpers_1.getGroupHeadingLevel)(container);
|
||||||
|
if (group.categories) {
|
||||||
|
group.categories.forEach((groupItem) => groupItem.children.forEach((item) => {
|
||||||
|
md.push(context.partials.member(item));
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
- md.push((0, els_1.heading)(headingLevel, group.title));
|
||||||
|
+ // md.push((0, els_1.heading)(headingLevel, group.title));
|
||||||
|
group.children
|
||||||
|
.filter((item) => !item.hasOwnDocument)
|
||||||
|
.forEach((groupChild, index) => {
|
||||||
22
pnpm-lock.yaml
generated
22
pnpm-lock.yaml
generated
@@ -4,6 +4,9 @@ patchedDependencies:
|
|||||||
'@balazsorban/monorepo-release@0.1.8':
|
'@balazsorban/monorepo-release@0.1.8':
|
||||||
hash: 75pao37sq3m6hqdrtxyjcxjfry
|
hash: 75pao37sq3m6hqdrtxyjcxjfry
|
||||||
path: patches/@balazsorban__monorepo-release@0.1.8.patch
|
path: patches/@balazsorban__monorepo-release@0.1.8.patch
|
||||||
|
typedoc-plugin-markdown@4.0.0-next.3:
|
||||||
|
hash: dfxwapne6mt4slxu4ntv7vwzie
|
||||||
|
path: patches/typedoc-plugin-markdown@4.0.0-next.3.patch
|
||||||
|
|
||||||
importers:
|
importers:
|
||||||
|
|
||||||
@@ -202,7 +205,7 @@ importers:
|
|||||||
'@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
|
'@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
|
||||||
docusaurus-plugin-typedoc: 1.0.0-next.2_uohvtzr4yhotvxhnypob3homwy
|
docusaurus-plugin-typedoc: 1.0.0-next.2_uohvtzr4yhotvxhnypob3homwy
|
||||||
typedoc: 0.23.28
|
typedoc: 0.23.28
|
||||||
typedoc-plugin-markdown: 4.0.0-next.3_typedoc@0.23.28
|
typedoc-plugin-markdown: 4.0.0-next.3_pmni4sq27g34nk7tmvb4ojzswm_typedoc@0.23.28
|
||||||
|
|
||||||
packages/adapter-dgraph:
|
packages/adapter-dgraph:
|
||||||
specifiers:
|
specifiers:
|
||||||
@@ -11655,6 +11658,15 @@ packages:
|
|||||||
indent-string: 4.0.0
|
indent-string: 4.0.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/ajv-formats/2.1.1:
|
||||||
|
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
|
||||||
|
peerDependenciesMeta:
|
||||||
|
ajv:
|
||||||
|
optional: true
|
||||||
|
dependencies:
|
||||||
|
ajv: 8.11.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
/ajv-formats/2.1.1_ajv@8.11.0:
|
/ajv-formats/2.1.1_ajv@8.11.0:
|
||||||
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
|
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -15524,7 +15536,7 @@ packages:
|
|||||||
typedoc-plugin-markdown: '>=4.0.0-next.2'
|
typedoc-plugin-markdown: '>=4.0.0-next.2'
|
||||||
dependencies:
|
dependencies:
|
||||||
typedoc: 0.23.28
|
typedoc: 0.23.28
|
||||||
typedoc-plugin-markdown: 4.0.0-next.3_typedoc@0.23.28
|
typedoc-plugin-markdown: 4.0.0-next.3_pmni4sq27g34nk7tmvb4ojzswm_typedoc@0.23.28
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/dom-accessibility-api/0.5.14:
|
/dom-accessibility-api/0.5.14:
|
||||||
@@ -24079,6 +24091,7 @@ packages:
|
|||||||
/mimic-response/3.1.0:
|
/mimic-response/3.1.0:
|
||||||
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
|
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
|
requiresBuild: true
|
||||||
|
|
||||||
/mimic-response/4.0.0:
|
/mimic-response/4.0.0:
|
||||||
resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
|
resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
|
||||||
@@ -28714,7 +28727,7 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@types/json-schema': 7.0.11
|
'@types/json-schema': 7.0.11
|
||||||
ajv: 8.11.0
|
ajv: 8.11.0
|
||||||
ajv-formats: 2.1.1_ajv@8.11.0
|
ajv-formats: 2.1.1
|
||||||
ajv-keywords: 5.1.0_ajv@8.11.0
|
ajv-keywords: 5.1.0_ajv@8.11.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
@@ -31053,13 +31066,14 @@ packages:
|
|||||||
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
|
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/typedoc-plugin-markdown/4.0.0-next.3_typedoc@0.23.28:
|
/typedoc-plugin-markdown/4.0.0-next.3_pmni4sq27g34nk7tmvb4ojzswm_typedoc@0.23.28:
|
||||||
resolution: {integrity: sha512-Koim98xkXOoY8KPlMNH/cKTfqTEocVEYMa3XZgoPX/DkGp7ioB6nl38p6Snl7rEmhcbHkFktcUoOQLn04Kk3sg==}
|
resolution: {integrity: sha512-Koim98xkXOoY8KPlMNH/cKTfqTEocVEYMa3XZgoPX/DkGp7ioB6nl38p6Snl7rEmhcbHkFktcUoOQLn04Kk3sg==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
typedoc: '>=0.23.0'
|
typedoc: '>=0.23.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
typedoc: 0.23.28
|
typedoc: 0.23.28
|
||||||
dev: true
|
dev: true
|
||||||
|
patched: true
|
||||||
|
|
||||||
/typedoc/0.23.28:
|
/typedoc/0.23.28:
|
||||||
resolution: {integrity: sha512-9x1+hZWTHEQcGoP7qFmlo4unUoVJLB0H/8vfO/7wqTnZxg4kPuji9y3uRzEu0ZKez63OJAUmiGhUrtukC6Uj3w==}
|
resolution: {integrity: sha512-9x1+hZWTHEQcGoP7qFmlo4unUoVJLB0H/8vfO/7wqTnZxg4kPuji9y3uRzEu0ZKez63OJAUmiGhUrtukC6Uj3w==}
|
||||||
|
|||||||
Reference in New Issue
Block a user