@sylphx/sdk 0.15.2 → 0.15.4

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/index.d.ts CHANGED
@@ -8718,6 +8718,7 @@ interface ListTriggersResult {
8718
8718
  }
8719
8719
  interface PublishEventResult {
8720
8720
  dispatched: number;
8721
+ waitResolved: number;
8721
8722
  eventName: string;
8722
8723
  }
8723
8724
  /** Create a new trigger (cron or event source, task/run/http target) */
@@ -8856,6 +8857,12 @@ interface ProjectMetadata {
8856
8857
  readonly id: string;
8857
8858
  readonly name: string;
8858
8859
  readonly slug: string;
8860
+ readonly captcha?: {
8861
+ readonly enabled: true;
8862
+ readonly provider: 'turnstile' | 'hcaptcha';
8863
+ readonly siteKey: string;
8864
+ readonly action: 'register';
8865
+ };
8859
8866
  readonly [key: string]: unknown;
8860
8867
  }
8861
8868
  type ChallengeMethod = 'password' | 'email' | 'totp' | 'backup';