strapi-plugin-firebase-authentication 1.2.4 → 1.2.5
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/_chunks/{App-Dg_AxJhA.js → App-BmP-duLn.js} +93 -114
- package/dist/_chunks/{App-J0Ks5XlI.mjs → App-DjamRMm8.mjs} +114 -93
- package/dist/_chunks/{api-FVfrlu9T.js → api-Bg075IIT.js} +1 -1
- package/dist/_chunks/{api-NexSh9zC.mjs → api-CLQa5PFi.mjs} +1 -1
- package/dist/_chunks/{index-B9spFspk.mjs → index-B2NvsXdF.mjs} +2 -2
- package/dist/_chunks/{index-D41v41O3.js → index-B4ptk_Em.js} +62 -7
- package/dist/_chunks/{index-Bdn3O-sg.mjs → index-CAZnRswo.mjs} +62 -7
- package/dist/_chunks/{index-ROJyqJld.js → index-CyOVjVQb.js} +2 -2
- package/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/dist/admin/src/pages/Settings/api.d.ts +4 -0
- package/dist/server/index.js +57 -10
- package/dist/server/index.mjs +57 -10
- package/dist/server/src/content-types/index.d.ts +10 -0
- package/dist/server/src/index.d.ts +12 -0
- package/dist/server/src/services/index.d.ts +2 -0
- package/dist/server/src/services/settingsService.d.ts +2 -0
- package/package.json +1 -1
|
@@ -75,6 +75,16 @@ declare const _default: {
|
|
|
75
75
|
type: string;
|
|
76
76
|
default: string;
|
|
77
77
|
};
|
|
78
|
+
includeCredentialsInPasswordResetLink: {
|
|
79
|
+
type: string;
|
|
80
|
+
default: boolean;
|
|
81
|
+
description: string;
|
|
82
|
+
};
|
|
83
|
+
includeCredentialsInVerificationLink: {
|
|
84
|
+
type: string;
|
|
85
|
+
default: boolean;
|
|
86
|
+
description: string;
|
|
87
|
+
};
|
|
78
88
|
};
|
|
79
89
|
};
|
|
80
90
|
};
|
|
@@ -106,6 +106,8 @@ declare const _default: {
|
|
|
106
106
|
magicLinkExpiryHours: any;
|
|
107
107
|
emailVerificationUrl: any;
|
|
108
108
|
emailVerificationEmailSubject: any;
|
|
109
|
+
includeCredentialsInPasswordResetLink: any;
|
|
110
|
+
includeCredentialsInVerificationLink: any;
|
|
109
111
|
}>;
|
|
110
112
|
setFirebaseConfigJson(requestBody: any): Promise<any>;
|
|
111
113
|
delFirebaseConfigJson: () => Promise<any>;
|
|
@@ -344,6 +346,16 @@ declare const _default: {
|
|
|
344
346
|
type: string;
|
|
345
347
|
default: string;
|
|
346
348
|
};
|
|
349
|
+
includeCredentialsInPasswordResetLink: {
|
|
350
|
+
type: string;
|
|
351
|
+
default: boolean;
|
|
352
|
+
description: string;
|
|
353
|
+
};
|
|
354
|
+
includeCredentialsInVerificationLink: {
|
|
355
|
+
type: string;
|
|
356
|
+
default: boolean;
|
|
357
|
+
description: string;
|
|
358
|
+
};
|
|
347
359
|
};
|
|
348
360
|
};
|
|
349
361
|
};
|
|
@@ -17,6 +17,8 @@ declare const _default: {
|
|
|
17
17
|
magicLinkExpiryHours: any;
|
|
18
18
|
emailVerificationUrl: any;
|
|
19
19
|
emailVerificationEmailSubject: any;
|
|
20
|
+
includeCredentialsInPasswordResetLink: any;
|
|
21
|
+
includeCredentialsInVerificationLink: any;
|
|
20
22
|
}>;
|
|
21
23
|
setFirebaseConfigJson(requestBody: any): Promise<any>;
|
|
22
24
|
delFirebaseConfigJson: () => Promise<any>;
|
|
@@ -31,6 +31,8 @@ declare const _default: ({ strapi }: {
|
|
|
31
31
|
magicLinkExpiryHours: any;
|
|
32
32
|
emailVerificationUrl: any;
|
|
33
33
|
emailVerificationEmailSubject: any;
|
|
34
|
+
includeCredentialsInPasswordResetLink: any;
|
|
35
|
+
includeCredentialsInVerificationLink: any;
|
|
34
36
|
}>;
|
|
35
37
|
/**
|
|
36
38
|
* Stores and encrypts Firebase configuration including Web API key and password reset settings
|
package/package.json
CHANGED