Skip to content
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

feat: export protos in src/index.ts #296

Merged
merged 6 commits into from
Feb 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions baselines/dlp/src/index.ts.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ export {v2, DlpServiceClient};
// For compatibility with JavaScript libraries we need to provide this default export:
// tslint:disable-next-line no-default-export
export default {v2, DlpServiceClient};
import * as protos from '../protos/protos';
export {protos}
2 changes: 2 additions & 0 deletions baselines/kms/src/index.ts.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ export {v1, KeyManagementServiceClient};
// For compatibility with JavaScript libraries we need to provide this default export:
// tslint:disable-next-line no-default-export
export default {v1, KeyManagementServiceClient};
import * as protos from '../protos/protos';
export {protos}
2 changes: 2 additions & 0 deletions baselines/monitoring/src/index.ts.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ export {v3, AlertPolicyServiceClient, GroupServiceClient, MetricServiceClient, N
// For compatibility with JavaScript libraries we need to provide this default export:
// tslint:disable-next-line no-default-export
export default {v3, AlertPolicyServiceClient, GroupServiceClient, MetricServiceClient, NotificationChannelServiceClient, ServiceMonitoringServiceClient, UptimeCheckServiceClient};
import * as protos from '../protos/protos';
export {protos}
2 changes: 2 additions & 0 deletions baselines/redis/src/index.ts.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ export {v1beta1, CloudRedisClient};
// For compatibility with JavaScript libraries we need to provide this default export:
// tslint:disable-next-line no-default-export
export default {v1beta1, CloudRedisClient};
import * as protos from '../protos/protos';
export {protos}
2 changes: 2 additions & 0 deletions baselines/showcase/src/index.ts.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ export {v1beta1, EchoClient, IdentityClient, MessagingClient, TestingClient};
// For compatibility with JavaScript libraries we need to provide this default export:
// tslint:disable-next-line no-default-export
export default {v1beta1, EchoClient, IdentityClient, MessagingClient, TestingClient};
import * as protos from '../protos/protos';
export {protos}
2 changes: 2 additions & 0 deletions baselines/texttospeech/src/index.ts.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ export {v1, TextToSpeechClient};
// For compatibility with JavaScript libraries we need to provide this default export:
// tslint:disable-next-line no-default-export
export default {v1, TextToSpeechClient};
import * as protos from '../protos/protos';
export {protos}
2 changes: 2 additions & 0 deletions baselines/translate/src/index.ts.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ export {v3beta1, TranslationServiceClient};
// For compatibility with JavaScript libraries we need to provide this default export:
// tslint:disable-next-line no-default-export
export default {v3beta1, TranslationServiceClient};
import * as protos from '../protos/protos';
export {protos}
2 changes: 2 additions & 0 deletions templates/typescript_gapic/src/index.ts.njk
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ export default { {{- api.naming.version }}
, {{ service.name.toPascalCase() + 'Client' }}
{%- endfor -%}
};
import * as protos from '../protos/protos';
export {protos}