@builder.io/ai-utils 0.11.28 → 0.11.30
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 +8 -0
- package/src/organization.d.ts +2 -0
package/package.json
CHANGED
package/src/codegen.d.ts
CHANGED
|
@@ -1271,6 +1271,13 @@ export interface SetupRequirement {
|
|
|
1271
1271
|
tool: string;
|
|
1272
1272
|
version?: string;
|
|
1273
1273
|
}
|
|
1274
|
+
export interface GuessedSettings {
|
|
1275
|
+
id: string;
|
|
1276
|
+
setupCommand: string;
|
|
1277
|
+
devCommand: string;
|
|
1278
|
+
setupDependencies: SetupDependency[];
|
|
1279
|
+
autoDetectDevServer: boolean;
|
|
1280
|
+
}
|
|
1274
1281
|
export interface RepoMetrics {
|
|
1275
1282
|
languages: LanguageInfo[];
|
|
1276
1283
|
isEmpty: boolean;
|
|
@@ -1282,5 +1289,6 @@ export interface RepoMetrics {
|
|
|
1282
1289
|
buildTools: string[];
|
|
1283
1290
|
environmentVariables?: EnvVariableInfo[];
|
|
1284
1291
|
possibleMonorepoRoots?: string[];
|
|
1292
|
+
guessedSettings?: GuessedSettings;
|
|
1285
1293
|
errors?: string[];
|
|
1286
1294
|
}
|
package/src/organization.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ interface OrganizationSettings {
|
|
|
27
27
|
githubEnterpriseSetupValue?: GithubEnterpriseSetupValue;
|
|
28
28
|
bitbucketEnterprisePAT?: BitbucketEnterprisePAT;
|
|
29
29
|
useProxy?: boolean;
|
|
30
|
+
fusionShareableUrlSuffix?: string;
|
|
30
31
|
}
|
|
31
32
|
interface RoleOptions {
|
|
32
33
|
read?: boolean;
|
|
@@ -40,6 +41,7 @@ interface RoleOptions {
|
|
|
40
41
|
editLayers?: boolean;
|
|
41
42
|
editContentPriority?: boolean;
|
|
42
43
|
editFolders?: boolean;
|
|
44
|
+
indexDesignSystems?: boolean;
|
|
43
45
|
}
|
|
44
46
|
interface RoleEnvironment {
|
|
45
47
|
pushAllowedOrgIds?: string[];
|