@builder.io/ai-utils 0.12.2 → 0.12.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -961,7 +961,7 @@ export type MachineConfig = (RemoteMachineConfig & {
961
961
  environment: "local";
962
962
  };
963
963
  export interface PrivacyMode {
964
- encrypt: boolean;
964
+ enabled: boolean;
965
965
  encryptKey?: string;
966
966
  /**
967
967
  * Path to a file containing the encryption key for privacy mode.
@@ -88,6 +88,9 @@ export interface AddDesignSystemInput {
88
88
  spaceId: string;
89
89
  rootOrgId: string;
90
90
  scope: DesignSystemScope;
91
+ gitOriginUrl: string | undefined;
92
+ gitRelativePath: string | undefined;
93
+ cliArgs: string[];
91
94
  }
92
95
  export interface UpdateDesignSystemInput {
93
96
  id: string;
@@ -111,6 +114,9 @@ export interface DesignSystem {
111
114
  status: "in-progress" | "completed" | "failed";
112
115
  scope: DesignSystemScope;
113
116
  deprecated: boolean;
117
+ gitOriginUrl: string | undefined;
118
+ gitRelativePath: string | undefined;
119
+ cliArgs: string[];
114
120
  }
115
121
  export interface DisplayDesignSystem extends DesignSystem {
116
122
  docCount: number;