-
Notifications
You must be signed in to change notification settings - Fork 924
Fix compilation and tests failures #8902
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
Conversation
|
Vertex AI Mock Responses Check
|
4ff3404
to
3ce820b
Compare
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.
@MarkDuckworth PTAL
I also realized that you were right, there was a getDocs(realtimePipeline) impl. I removed it for now, we can discuss with the team if an execute(realtimePipeline) is wanted.
import { RealtimePipeline } from '../../../src/api/realtime_pipeline'; | ||
import { onPipelineSnapshot } from '../../../src/api/reference_impl'; |
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.
@MarkDuckworth This import is suspicious, just to call it out.
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.
I'll take another look.
@@ -55,7 +55,7 @@ const browserPlugins = [ | |||
abortOnError: true, | |||
transformers: [util.removeAssertAndPrefixInternalTransformer] | |||
}), | |||
json({ preferConst: true }), | |||
json({ preferConst: true }) | |||
//terser(util.manglePrivatePropertiesOptions) |
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.
needs to be re-enabled
@@ -130,7 +130,7 @@ exports.removeAssertTransformer = removeAssertTransformer; | |||
*/ | |||
const removeAssertAndPrefixInternalTransformer = service => ({ | |||
before: [ | |||
removeAsserts(service.getProgram()), | |||
removeAsserts(service.getProgram()) | |||
// renameInternals(service.getProgram(), { | |||
// publicIdentifiers, | |||
// prefix: '__PRIVATE_' |
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.
to be re-enabled
import { RealtimePipeline } from '../../../src/api/realtime_pipeline'; | ||
import { onPipelineSnapshot } from '../../../src/api/reference_impl'; |
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.
I'll take another look.
No description provided.