@fork-api/chat-sdk 0.1.169 → 0.1.171
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.cjs +8 -8
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +8 -8
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -757,6 +757,10 @@ interface ManifestModuleEntry {
|
|
|
757
757
|
}
|
|
758
758
|
interface Manifest {
|
|
759
759
|
containerId: string | null;
|
|
760
|
+
/** True when the user self-paused their container (the on/off switch):
|
|
761
|
+
* containerId still resolves, slots/modules arrive empty, and the host
|
|
762
|
+
* renders the base experience. Absent/false on pre-pause API versions. */
|
|
763
|
+
forksPaused?: boolean;
|
|
760
764
|
slots: Record<string, ManifestEntry>;
|
|
761
765
|
modules: Record<string, ManifestModuleEntry>;
|
|
762
766
|
generatedAt: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -757,6 +757,10 @@ interface ManifestModuleEntry {
|
|
|
757
757
|
}
|
|
758
758
|
interface Manifest {
|
|
759
759
|
containerId: string | null;
|
|
760
|
+
/** True when the user self-paused their container (the on/off switch):
|
|
761
|
+
* containerId still resolves, slots/modules arrive empty, and the host
|
|
762
|
+
* renders the base experience. Absent/false on pre-pause API versions. */
|
|
763
|
+
forksPaused?: boolean;
|
|
760
764
|
slots: Record<string, ManifestEntry>;
|
|
761
765
|
modules: Record<string, ManifestModuleEntry>;
|
|
762
766
|
generatedAt: string;
|