Skip to content

Commit

Permalink
fix: add white space between clients (#462)
Browse files Browse the repository at this point in the history
* fix: add new line between multiple client

* remove extra files
  • Loading branch information
summer-ji-eng committed May 5, 2020
1 parent cfaef54 commit 5305fcd
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
5 changes: 4 additions & 1 deletion baselines/disable-packing-test/src/v1beta1/index.ts.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **

export {EchoClient} from './echo_client';export {IdentityClient} from './identity_client';export {MessagingClient} from './messaging_client';export {TestingClient} from './testing_client';
export {EchoClient} from './echo_client';
export {IdentityClient} from './identity_client';
export {MessagingClient} from './messaging_client';
export {TestingClient} from './testing_client';
4 changes: 3 additions & 1 deletion baselines/logging/src/v2/index.ts.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **

export {ConfigServiceV2Client} from './config_service_v2_client';export {LoggingServiceV2Client} from './logging_service_v2_client';export {MetricsServiceV2Client} from './metrics_service_v2_client';
export {ConfigServiceV2Client} from './config_service_v2_client';
export {LoggingServiceV2Client} from './logging_service_v2_client';
export {MetricsServiceV2Client} from './metrics_service_v2_client';
7 changes: 6 additions & 1 deletion baselines/monitoring/src/v3/index.ts.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **

export {AlertPolicyServiceClient} from './alert_policy_service_client';export {GroupServiceClient} from './group_service_client';export {MetricServiceClient} from './metric_service_client';export {NotificationChannelServiceClient} from './notification_channel_service_client';export {ServiceMonitoringServiceClient} from './service_monitoring_service_client';export {UptimeCheckServiceClient} from './uptime_check_service_client';
export {AlertPolicyServiceClient} from './alert_policy_service_client';
export {GroupServiceClient} from './group_service_client';
export {MetricServiceClient} from './metric_service_client';
export {NotificationChannelServiceClient} from './notification_channel_service_client';
export {ServiceMonitoringServiceClient} from './service_monitoring_service_client';
export {UptimeCheckServiceClient} from './uptime_check_service_client';
5 changes: 4 additions & 1 deletion baselines/showcase/src/v1beta1/index.ts.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **

export {EchoClient} from './echo_client';export {IdentityClient} from './identity_client';export {MessagingClient} from './messaging_client';export {TestingClient} from './testing_client';
export {EchoClient} from './echo_client';
export {IdentityClient} from './identity_client';
export {MessagingClient} from './messaging_client';
export {TestingClient} from './testing_client';
2 changes: 1 addition & 1 deletion templates/typescript_gapic/src/$version/index.ts.njk
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ limitations under the License.
{{license.license(commonParameters.copyrightYear)}}
{% for service in api.services -%}
export {{ '{' + service.name.toPascalCase() + 'Client}' }} from './{{ service.name.toSnakeCase() }}_client';
{%- endfor %}
{% endfor -%}

0 comments on commit 5305fcd

Please sign in to comment.