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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "strapi-plugin-firebase-authentication",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "Allows easy integration between clients utilizing Firebase for authentication and Strapi",
5
5
  "license": "MIT",
6
6
  "repository": {