@builder.io/ai-utils 0.7.3 → 0.7.5

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.7.3",
3
+ "version": "0.7.5",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.d.ts CHANGED
@@ -6,3 +6,4 @@ export * from "./mapping.js";
6
6
  export * from "./codegen.js";
7
7
  export * from "./projects.js";
8
8
  export * from "./repo-indexing.js";
9
+ export * from "./organization.js";
package/src/index.js CHANGED
@@ -6,3 +6,4 @@ export * from "./mapping.js";
6
6
  export * from "./codegen.js";
7
7
  export * from "./projects.js";
8
8
  export * from "./repo-indexing.js";
9
+ export * from "./organization.js";
@@ -9,6 +9,13 @@ interface OrganizationSettings {
9
9
  enforceMaxUsers?: boolean;
10
10
  ssoRestrictedMode?: boolean;
11
11
  isUserPluginIntegrationRequestGranted?: boolean;
12
+ githubEnterpriseSetupValue?: {
13
+ host: string;
14
+ clientId: string;
15
+ clientSecret: string;
16
+ appId: string;
17
+ pem: string;
18
+ };
12
19
  }
13
20
  interface RoleOptions {
14
21
  read?: boolean;
@@ -32,6 +39,16 @@ interface RoleLocales {
32
39
  allowedLocalesEditList?: string[];
33
40
  canEditAllLocales?: boolean;
34
41
  }
42
+ export interface ProjectRole {
43
+ options?: {
44
+ view?: boolean;
45
+ editCode?: boolean;
46
+ sendPullRequests?: boolean;
47
+ createBranches?: boolean;
48
+ modifyMcpServers?: boolean;
49
+ modifyProjectSettings?: boolean;
50
+ };
51
+ }
35
52
  interface Role {
36
53
  id?: string;
37
54
  name?: string;
@@ -41,6 +58,7 @@ interface Role {
41
58
  models?: string;
42
59
  environment?: RoleEnvironment;
43
60
  locales?: RoleLocales;
61
+ projects?: "all" | Record<string, ProjectRole>;
44
62
  }
45
63
  export interface Organization {
46
64
  name?: string;
@@ -65,5 +83,7 @@ export interface Organization {
65
83
  totalBytesStored?: number;
66
84
  lastUpdateBy?: string | null;
67
85
  enterpriseTrialEndDate?: number;
86
+ fusionReferrals?: string;
87
+ githubInstallationIds?: number[];
68
88
  }
69
89
  export {};
package/src/projects.d.ts CHANGED
@@ -135,12 +135,13 @@ export interface ReadyMessage extends BaseMessage {
135
135
  export type MachineState = "unknown" | "created" | "starting" | "started" | "stopping" | "stopped" | "suspending" | "suspended" | "replacing" | "destroying" | "destroyed" | "not-found" | "running" | "failed";
136
136
  export type FlyVolumeState = "unknown" | "creating" | "created" | "extending" | "restoring" | "enabling_remote_export" | "hydrating" | "recovering" | "scheduling_destroy" | "pending_destroy" | "failed";
137
137
  export type GitAuthErrorCode = "git-auth-failed" | "git-auth-failed-root-repo" | "git-auth-failed-folder-added-by" | "git-auth-failed-folder-created-by" | "git-auth-failed-folder-server-token" | "git-auth-failed-root-repo-server-token";
138
- export type EnsureContainerErrorCode = "FLY_APP_CHECK_ERROR" | "FLY_CAPACITY_ERROR" | "FLY_PERMISSIONS_TOKEN_ERROR" | "FLY_VOLUME_CREATE_ERROR" | "FLY_VOLUME_FORK_ERROR" | "FLY_VOLUME_DELETE_RECENTLY_FORKED_ERROR" | "FLY_MACHINE_CREATE_ERROR" | "FLY_VOLUME_CHECK_ERROR" | "FLY_NON_MOUNTABLE_VOLUME_ERROR" | "FLY_DEPRECATED_REGION_ERROR" | "FLY_VOLUME_NOT_FOUND" | "ensure-checking-existing-machines" | "found-multiple-failed-machine" | "maximun-retries-machine-creation" | GitAuthErrorCode | "unknown" | "project-bad-state" | "project-not-found" | "project-branch-not-found" | "project-branch-no-session-id" | "project-repo-full-name-not-found" | "project-org-not-found" | "no-available-regions" | "invalid-backup-without-volume-id" | "missing-app-with-machine-or-volume" | "update-branch-info-in-firebase" | "update-branch-app-name-in-firebase" | `machine-status-polling-${MachineState}` | `volume-not-found-${FlyVolumeState}` | "trying-to-remove-used-volume" | "timeout" | "fatal:zod-validation-error" | `fatal:${string}`;
138
+ export type EnsureContainerErrorCode = "FLY_APP_CHECK_ERROR" | "FLY_CAPACITY_ERROR" | "FLY_PERMISSIONS_TOKEN_ERROR" | "FLY_VOLUME_CREATE_ERROR" | "FLY_VOLUME_FORK_ERROR" | "FLY_VOLUME_DELETE_RECENTLY_FORKED_ERROR" | "FLY_MACHINE_CREATE_ERROR" | "FLY_VOLUME_CHECK_ERROR" | "FLY_NON_MOUNTABLE_VOLUME_ERROR" | "FLY_DEPRECATED_REGION_ERROR" | "FLY_VOLUME_NOT_FOUND" | "ensure-checking-existing-machines" | "found-multiple-failed-machine" | "maximun-retries-machine-creation" | GitAuthErrorCode | "unknown" | "project-bad-state" | "project-not-found" | "project-branch-not-found" | "project-branch-no-session-id" | "project-repo-full-name-not-found" | "project-org-not-found" | "invalid-project-repo-url-already-in-use" | "no-available-regions" | "invalid-backup-without-volume-id" | "missing-app-with-machine-or-volume" | "update-branch-info-in-firebase" | "update-branch-app-name-in-firebase" | `machine-status-polling-${MachineState}` | `volume-not-found-${FlyVolumeState}` | "trying-to-remove-used-volume" | "timeout" | "fatal:zod-validation-error" | `fatal:${string}`;
139
139
  export interface ErrorStateMessage extends BaseMessage {
140
140
  state: "error";
141
141
  message: string;
142
142
  error: string;
143
143
  code: EnsureContainerErrorCode;
144
+ causeError: string;
144
145
  }
145
146
  export interface CleanupCompletedMessage extends BaseMessage {
146
147
  state: "cleanupCompleted";
@@ -158,6 +159,7 @@ export type GitConfigs = Record<string, GitConfig>;
158
159
  export declare const EXAMPLE_REPOS: string[];
159
160
  export declare const STARTER_REPO = "BuilderIO/fusion-starter";
160
161
  export declare const EXAMPLE_OR_STARTER_REPOS: string[];
162
+ export declare const EXAMPLE_OR_STARTER_REPOS_URLS: string[];
161
163
  export interface GitBackupUploadUrlResult {
162
164
  signedUrl: string;
163
165
  filePath: string;
package/src/projects.js CHANGED
@@ -9,3 +9,4 @@ export const EXAMPLE_REPOS = [
9
9
  ];
10
10
  export const STARTER_REPO = "BuilderIO/fusion-starter";
11
11
  export const EXAMPLE_OR_STARTER_REPOS = [...EXAMPLE_REPOS, STARTER_REPO];
12
+ export const EXAMPLE_OR_STARTER_REPOS_URLS = EXAMPLE_OR_STARTER_REPOS.map((repo) => `https://github.com/${repo}`);