@builder.io/ai-utils 0.12.25 → 0.12.26
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/package.json +1 -1
- package/src/codegen.d.ts +3 -0
- package/src/organization.d.ts +1 -0
package/package.json
CHANGED
package/src/codegen.d.ts
CHANGED
|
@@ -786,6 +786,7 @@ export interface GetSessionTurnsResult {
|
|
|
786
786
|
updatedUnixTime: number | undefined;
|
|
787
787
|
canLoadMore: boolean;
|
|
788
788
|
sessionMode?: SessionMode;
|
|
789
|
+
metadata?: Record<string, any>;
|
|
789
790
|
}
|
|
790
791
|
export interface CodegenFeedback {
|
|
791
792
|
id: string;
|
|
@@ -810,10 +811,12 @@ export interface CodegenFinalize {
|
|
|
810
811
|
afterCommit?: string;
|
|
811
812
|
lastCommit?: string;
|
|
812
813
|
commitFailed?: boolean;
|
|
814
|
+
metadata?: Record<string, any>;
|
|
813
815
|
}
|
|
814
816
|
export interface CodegenSetLastCompletion {
|
|
815
817
|
sessionId: string;
|
|
816
818
|
lastCompletionId: string | undefined;
|
|
819
|
+
metadata?: Record<string, any>;
|
|
817
820
|
}
|
|
818
821
|
export interface GenerateCodeEventDone {
|
|
819
822
|
type: "done";
|
package/src/organization.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ interface OrganizationSettings {
|
|
|
32
32
|
autoDetectDevServerPatterns?: string[];
|
|
33
33
|
environmentVariables?: EnvironmentVariable[];
|
|
34
34
|
fusionPrLabel?: string;
|
|
35
|
+
fusionPrQuietMode?: boolean;
|
|
35
36
|
runInPty?: boolean;
|
|
36
37
|
privacyMode?: Pick<PrivacyMode, "mcpServers" | "redactUserMessages" | "redactLLMMessages"> & {
|
|
37
38
|
enabled?: boolean;
|