@waline/client 2.9.0 → 2.10.0

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/waline.d.cts CHANGED
@@ -117,6 +117,10 @@ interface WalineCommentData {
117
117
  * Comment link
118
118
  */
119
119
  url: string;
120
+ /**
121
+ * Recaptcha Token
122
+ */
123
+ recaptchaV3?: string;
120
124
  }
121
125
  declare type WalineCommentStatus = 'approved' | 'waiting' | 'spam';
122
126
  interface WalineComment extends Exclude<WalineCommentData, 'ua'> {
@@ -384,6 +388,10 @@ interface WalineProps {
384
388
  * @default true
385
389
  */
386
390
  copyright?: boolean;
391
+ /**
392
+ * recaptcha v3 client key
393
+ */
394
+ recaptchaV3Key?: string;
387
395
  }
388
396
 
389
397
  interface WalineInitOptions extends Omit<WalineProps, 'path'> {
package/dist/waline.d.mts CHANGED
@@ -117,6 +117,10 @@ interface WalineCommentData {
117
117
  * Comment link
118
118
  */
119
119
  url: string;
120
+ /**
121
+ * Recaptcha Token
122
+ */
123
+ recaptchaV3?: string;
120
124
  }
121
125
  declare type WalineCommentStatus = 'approved' | 'waiting' | 'spam';
122
126
  interface WalineComment extends Exclude<WalineCommentData, 'ua'> {
@@ -384,6 +388,10 @@ interface WalineProps {
384
388
  * @default true
385
389
  */
386
390
  copyright?: boolean;
391
+ /**
392
+ * recaptcha v3 client key
393
+ */
394
+ recaptchaV3Key?: string;
387
395
  }
388
396
 
389
397
  interface WalineInitOptions extends Omit<WalineProps, 'path'> {
package/dist/waline.d.ts CHANGED
@@ -117,6 +117,10 @@ interface WalineCommentData {
117
117
  * Comment link
118
118
  */
119
119
  url: string;
120
+ /**
121
+ * Recaptcha Token
122
+ */
123
+ recaptchaV3?: string;
120
124
  }
121
125
  declare type WalineCommentStatus = 'approved' | 'waiting' | 'spam';
122
126
  interface WalineComment extends Exclude<WalineCommentData, 'ua'> {
@@ -384,6 +388,10 @@ interface WalineProps {
384
388
  * @default true
385
389
  */
386
390
  copyright?: boolean;
391
+ /**
392
+ * recaptcha v3 client key
393
+ */
394
+ recaptchaV3Key?: string;
387
395
  }
388
396
 
389
397
  interface WalineInitOptions extends Omit<WalineProps, 'path'> {