-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BREAKING CHANGE(js)!: Reconcile authPolicy. add firebase and api key helpers #1743
Merged
Merged
Changes from 10 commits
Commits
Show all changes
52 commits
Select commit
Hold shift + click to select a range
24c8b08
Checkpoint. Need to remove firebase/functions
inlined b4f16f2
Revert removal of middleware.ts
inlined 473468e
Merge remote-tracking branch 'origin/main' into inlined.auth
inlined 496dede
firebaseAuth sans integration tests
inlined 5a201d9
Merge remote-tracking branch 'origin' into inlined.auth
inlined 0924ab9
API key module
inlined c6492ec
Update error type to match Callable protocol
inlined 2e0fa7e
Checkpoint. Merging UserFacingError with GenkitError
inlined d67b9be
Checkpoint. Refactored policy & error. Updated express. Strange errors
inlined b68d638
Whoops. Missing files
inlined dd15fa0
Tests passing again! Onto Next.js
inlined 73afde8
Next.js works! Theres' enough testing I think we can GA it
inlined 118bf91
Fix esm stuff; update docs
inlined 347aa88
Remove last reference to onCallFlow
inlined 042bd45
a few fixes for #1743 (#1880)
pavelgj 4be1e3a
Adding missing files; PR feedback
inlined dad4a0a
docs: vertexai updates (#1841)
ifielker 4f71804
breaking(js/ai): drop ToolDefinition from ToolArgument (and generate …
pavelgj 5e744c9
chore: bump @genkit-ai/tools-common version to @genkit-ai/tools-commo…
gh-action-bump-version 8a36c92
chore: bump genkit-cli version to [email protected]
gh-action-bump-version 413f82b
chore: bump @genkit-ai/telemetry-server version to @genkit-ai/telemet…
gh-action-bump-version 26ca0d8
chore: bump @genkit-ai/core version to @genkit-ai/[email protected]
gh-action-bump-version f67f4e5
chore: bump @genkit-ai/ai version to @genkit-ai/[email protected]
gh-action-bump-version 73f8610
chore: bump genkit version to [email protected]
gh-action-bump-version d289a7d
chore: bump genkitx-chromadb version to [email protected]
gh-action-bump-version 4ac6af2
chore: bump @genkit-ai/dev-local-vectorstore version to @genkit-ai/de…
gh-action-bump-version 306c9a3
chore: bump @genkit-ai/evaluator version to @genkit-ai/[email protected].…
gh-action-bump-version 1631611
chore: bump @genkit-ai/firebase version to @genkit-ai/[email protected]…
gh-action-bump-version 74e6b29
chore: bump @genkit-ai/google-cloud version to @genkit-ai/google-clou…
gh-action-bump-version e08bc1f
chore: bump @genkit-ai/googleai version to @genkit-ai/[email protected]…
gh-action-bump-version c02a8bc
chore: bump genkitx-langchain version to [email protected]
gh-action-bump-version 79f233a
chore: bump genkitx-ollama version to [email protected]
gh-action-bump-version a75fe7c
chore: bump genkitx-pinecone version to [email protected]
gh-action-bump-version 9298eee
chore: bump @genkit-ai/vertexai version to @genkit-ai/[email protected]…
gh-action-bump-version 11663a2
chore: bump @genkit-ai/checks version to @genkit-ai/[email protected]
gh-action-bump-version 7286715
chore: bump genkitx-mcp version to [email protected]
gh-action-bump-version a2cb532
chore: bump @genkit-ai/express version to @genkit-ai/[email protected]
gh-action-bump-version d364a19
chore: added next plugin to release script
pavelgj 163ca84
docs: Restructuring of codelab-chat-with-a-pdf.md (#1836)
thedmail 5c7ba1f
docs(js): Adds doc for context. (#1843)
mbleigh 398e1b3
feat: support model validation (#1868)
ssbushi 9552866
docs: 2nd tranche of docs updates for 6 Feb GA release (#1865)
thedmail a08c69a
fix(js): stream tool message generated by interrupt resume (#1870)
mbleigh 2dcf527
feature(go): add support for multiple model versions (#1575)
hugoaguirre c3b91ab
docs: Third tranche of docs updates (#1871)
thedmail 39a17bb
feat(js/ai): allow explicit constrained gen option, allow simulation …
pavelgj 961feae
fix: update-samples-to-v17 (#1867)
i2amsam 55e10ab
fix: update js-chatbot to work in IDX preview (#1874)
i2amsam 652a5a6
fix: use correct idx link in js api readme (#1877)
tonybaroneee 72f3ad0
fix: minor fixes in ollama plugin doc (#1875)
shrutip90 0f2d3f7
PR feedback
inlined 9a07808
PR feedback & merge conflicts. Testing async
inlined File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -156,6 +156,12 @@ | |||||
"require": "./lib/client/index.js", | ||||||
"import": "./lib/client/index.mjs", | ||||||
"default": "./lib/client/index.js" | ||||||
}, | ||||||
"./authPolicy": { | ||||||
"types": "./lib/authPolicy.d.ts", | ||||||
pavelgj marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
"require": "./lib/authPolicy.js", | ||||||
"import": "./lib/authPolicy.mjs", | ||||||
"default": "./lib/authPolicy.js" | ||||||
} | ||||||
}, | ||||||
"typesVersions": { | ||||||
|
@@ -216,6 +222,9 @@ | |||||
], | ||||||
"beta/client": [ | ||||||
"lib/client/index" | ||||||
], | ||||||
"authPolicy": [ | ||||||
inlined marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"lib/authPolicy" | ||||||
] | ||||||
} | ||||||
} | ||||||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We talked about this being context, right?