diff --git a/.changeset/late-beers-develop.md b/.changeset/late-beers-develop.md new file mode 100644 index 00000000000..55a8e0c072b --- /dev/null +++ b/.changeset/late-beers-develop.md @@ -0,0 +1,5 @@ +--- +'firebase': major +--- + +Remove `vertexai` import path diff --git a/packages/firebase/package.json b/packages/firebase/package.json index 85bcab03aa6..e31ddbbd30f 100644 --- a/packages/firebase/package.json +++ b/packages/firebase/package.json @@ -239,18 +239,6 @@ }, "default": "./ai/dist/esm/index.esm.js" }, - "./vertexai": { - "types": "./ai/dist/ai/index.d.ts", - "node": { - "require": "./ai/dist/index.cjs.js", - "import": "./ai/dist/index.mjs" - }, - "browser": { - "require": "./ai/dist/index.cjs.js", - "import": "./ai/dist/esm/index.esm.js" - }, - "default": "./ai/dist/esm/index.esm.js" - }, "./compat/analytics": { "types": "./compat/analytics/dist/compat/analytics/index.d.ts", "node": { @@ -472,7 +460,6 @@ "messaging", "messaging/sw", "database", - "vertexai", "data-connect" ], "typings": "empty.d.ts" diff --git a/packages/firebase/vertexai/index.ts b/packages/firebase/vertexai/index.ts deleted file mode 100644 index 530f99162ed..00000000000 --- a/packages/firebase/vertexai/index.ts +++ /dev/null @@ -1,18 +0,0 @@ -/** - * @license - * Copyright 2024 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export * from '@firebase/ai'; diff --git a/packages/firebase/vertexai/package.json b/packages/firebase/vertexai/package.json deleted file mode 100644 index 3da541949dc..00000000000 --- a/packages/firebase/vertexai/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "firebase/vertexai", - "main": "dist/index.cjs.js", - "browser": "dist/esm/index.esm.js", - "module": "dist/esm/index.esm.js", - "typings": "dist/ai/index.d.ts" -}