@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 +7 -0
- package/dist/index.mjs +123 -4524
- package/dist/index.mjs.map +1 -1
- package/dist/nextjs/index.d.ts +277 -276
- package/dist/nextjs/index.mjs +198 -194
- package/dist/nextjs/index.mjs.map +1 -1
- package/dist/react/index.d.ts +12 -12
- package/dist/react/index.mjs +32 -3295
- package/dist/react/index.mjs.map +1 -1
- package/dist/server/index.d.ts +12 -0
- package/dist/server/index.mjs.map +1 -1
- package/package.json +2 -2
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';
|