@keystrokehq/platform 0.0.136 → 0.0.137
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/run.cjs +1 -1
- package/dist/run.mjs +1 -1
- package/dist/{start-AL_o2HoK.cjs → start-BuRTgJlJ.cjs} +77 -2
- package/dist/start-BuRTgJlJ.cjs.map +1 -0
- package/dist/{start-pFr_c6SD.mjs → start-yehsjk2a.mjs} +77 -2
- package/dist/start-yehsjk2a.mjs.map +1 -0
- package/dist/start.cjs +1 -1
- package/dist/start.d.cts +14 -0
- package/dist/start.d.mts +14 -0
- package/dist/start.mjs +1 -1
- package/package.json +1 -1
- package/dist/start-AL_o2HoK.cjs.map +0 -1
- package/dist/start-pFr_c6SD.mjs.map +0 -1
package/dist/start.cjs
CHANGED
package/dist/start.d.cts
CHANGED
|
@@ -711,6 +711,20 @@ declare function createAuthInstance(options: Required<Pick<CreateAuthOptions, "s
|
|
|
711
711
|
onDeviceAuthRequest?: ((clientId: string, scope: string | undefined) => void | Promise<void>) | undefined;
|
|
712
712
|
verificationUri?: string | undefined;
|
|
713
713
|
}>;
|
|
714
|
+
}, {
|
|
715
|
+
id: string;
|
|
716
|
+
endpoints: {
|
|
717
|
+
attachOrganization: import("better-auth").StrictEndpoint<"/device/attach-organization", {
|
|
718
|
+
method: "POST";
|
|
719
|
+
body: import("zod").ZodObject<{
|
|
720
|
+
userCode: import("zod").ZodString;
|
|
721
|
+
organizationId: import("zod").ZodString;
|
|
722
|
+
}, import("zod/v4/core").$strip>;
|
|
723
|
+
requireHeaders: true;
|
|
724
|
+
}, {
|
|
725
|
+
success: boolean;
|
|
726
|
+
}>;
|
|
727
|
+
};
|
|
714
728
|
}, {
|
|
715
729
|
id: "bearer";
|
|
716
730
|
version: string;
|
package/dist/start.d.mts
CHANGED
|
@@ -713,6 +713,20 @@ declare function createAuthInstance(options: Required<Pick<CreateAuthOptions, "s
|
|
|
713
713
|
onDeviceAuthRequest?: ((clientId: string, scope: string | undefined) => void | Promise<void>) | undefined;
|
|
714
714
|
verificationUri?: string | undefined;
|
|
715
715
|
}>;
|
|
716
|
+
}, {
|
|
717
|
+
id: string;
|
|
718
|
+
endpoints: {
|
|
719
|
+
attachOrganization: import("better-auth").StrictEndpoint<"/device/attach-organization", {
|
|
720
|
+
method: "POST";
|
|
721
|
+
body: import("zod").ZodObject<{
|
|
722
|
+
userCode: import("zod").ZodString;
|
|
723
|
+
organizationId: import("zod").ZodString;
|
|
724
|
+
}, import("zod/v4/core").$strip>;
|
|
725
|
+
requireHeaders: true;
|
|
726
|
+
}, {
|
|
727
|
+
success: boolean;
|
|
728
|
+
}>;
|
|
729
|
+
};
|
|
716
730
|
}, {
|
|
717
731
|
id: "bearer";
|
|
718
732
|
version: string;
|
package/dist/start.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as startPlatformServer } from "./start-
|
|
1
|
+
import { t as startPlatformServer } from "./start-yehsjk2a.mjs";
|
|
2
2
|
export { startPlatformServer };
|