@angular/fire 19.0.0 → 19.1.0-canary.20bee94
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/ai/ai.d.ts +13 -0
- package/ai/ai.module.d.ts +15 -0
- package/ai/firebase.d.ts +6 -0
- package/ai/index.d.ts +5 -0
- package/ai/package.json +3 -0
- package/ai/public_api.d.ts +3 -0
- package/fesm2022/angular-fire-ai.mjs +102 -0
- package/fesm2022/angular-fire-ai.mjs.map +1 -0
- package/fesm2022/angular-fire-vertexai.mjs +4 -2
- package/fesm2022/angular-fire-vertexai.mjs.map +1 -1
- package/package.json +6 -2
- package/publish.sh +1 -1
- package/schematics/deploy/builder.js +229 -91
- package/schematics/setup/index.js +196 -58
- package/vertexai/firebase.d.ts +3 -1
- package/vertexai/vertexai.d.ts +1 -1
package/vertexai/firebase.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from 'firebase/vertexai';
|
|
2
|
-
import { getGenerativeModel as _getGenerativeModel, getVertexAI as _getVertexAI } from 'firebase/vertexai';
|
|
2
|
+
import { getAI as _getAI, getGenerativeModel as _getGenerativeModel, getImagenModel as _getImagenModel, getVertexAI as _getVertexAI } from 'firebase/vertexai';
|
|
3
|
+
export declare const getAI: typeof _getAI;
|
|
3
4
|
export declare const getGenerativeModel: typeof _getGenerativeModel;
|
|
5
|
+
export declare const getImagenModel: typeof _getImagenModel;
|
|
4
6
|
export declare const getVertexAI: typeof _getVertexAI;
|
package/vertexai/vertexai.d.ts
CHANGED
|
@@ -10,4 +10,4 @@ export interface VertexAIInstances extends Array<FirebaseVertexAI> {
|
|
|
10
10
|
export declare class VertexAIInstances {
|
|
11
11
|
constructor();
|
|
12
12
|
}
|
|
13
|
-
export declare const vertexAIInstance$: import("rxjs").Observable<
|
|
13
|
+
export declare const vertexAIInstance$: import("rxjs").Observable<import("firebase/vertexai").AI>;
|