File tree Expand file tree Collapse file tree 6 files changed +36
-11
lines changed Expand file tree Collapse file tree 6 files changed +36
-11
lines changed Original file line number Diff line number Diff line change 1- "95FJOuWe9QdOljMvtEYMArTvwNI/UIyAkv_5pk3lLRK5A-ipqJHG-Ic "
1+ "DsY8aw3zSOMYNAy_X4JnK21hrvA/siVICUeZLnFB8qfi0VAL8DWHtuw "
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ part of youtubeanalytics_v1beta1_api_browser;
44/** Retrieve your YouTube Analytics reports. */
55class YoutubeAnalytics extends BrowserClient {
66
7- ReportsResource _reports;
8- ReportsResource get reports => _reports;
7+ ReportsResource_ _reports;
8+ ReportsResource_ get reports => _reports;
99
1010 /** OAuth Scope2: View YouTube Analytics monetary reports for your YouTube content */
1111 static const core.String YT_ANALYTICS_MONETARY_READONLY_SCOPE = "https://www.googleapis.com/auth/yt-analytics-monetary.readonly" ;
@@ -65,6 +65,6 @@ class YoutubeAnalytics extends BrowserClient {
6565 YoutubeAnalytics ([oauth.OAuth2 auth]) : super (auth) {
6666 basePath = "/youtube/analytics/v1beta1/" ;
6767 rootUrl = "https://www.googleapis.com:443/" ;
68- _reports = new ReportsResource (this );
68+ _reports = new ReportsResource_ (this );
6969 }
7070}
Original file line number Diff line number Diff line change 11part of youtubeanalytics_v1beta1_api_client;
22
3- class ReportsResource extends Resource {
3+ class ReportsResource_ extends Resource {
44
5- ReportsResource (Client client) : super (client) {
5+ ReportsResource_ (Client client) : super (client) {
66 }
77
88 /**
@@ -61,7 +61,7 @@ class ReportsResource extends Resource {
6161 }
6262
6363 if (! paramErrors.isEmpty) {
64- completer.completeError (new ArgumentError (paramErrors.join (" / " )));
64+ completer.completeError (new core. ArgumentError (paramErrors.join (" / " )));
6565 return completer.future;
6666 }
6767
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ part of youtubeanalytics_v1beta1_api_console;
44/** Retrieve your YouTube Analytics reports. */
55class YoutubeAnalytics extends ConsoleClient {
66
7- ReportsResource _reports;
8- ReportsResource get reports => _reports;
7+ ReportsResource_ _reports;
8+ ReportsResource_ get reports => _reports;
99
1010 /** OAuth Scope2: View YouTube Analytics monetary reports for your YouTube content */
1111 static const core.String YT_ANALYTICS_MONETARY_READONLY_SCOPE = "https://www.googleapis.com/auth/yt-analytics-monetary.readonly" ;
@@ -65,6 +65,6 @@ class YoutubeAnalytics extends ConsoleClient {
6565 YoutubeAnalytics ([oauth2.OAuth2Console auth]) : super (auth) {
6666 basePath = "/youtube/analytics/v1beta1/" ;
6767 rootUrl = "https://www.googleapis.com:443/" ;
68- _reports = new ReportsResource (this );
68+ _reports = new ReportsResource_ (this );
6969 }
7070}
Original file line number Diff line number Diff line change 11name : google_youtubeanalytics_v1beta1_api
2- version : 0.1.4
2+ version : 0.1.5
33description : Auto-generated client library for accessing the youtubeAnalytics v1beta1 API
44homepage : https://github.com/dart-gde/discovery_api_dart_client_generator
55authors :
@@ -10,3 +10,4 @@ environment:
1010dependencies :
1111 js : ' >=0.0.20'
1212 google_oauth2_client : ' >=0.2.11'
13+ hop : any
Original file line number Diff line number Diff line change 1+
2+ library hop_runner;
3+
4+ import 'dart:async' ;
5+ import 'dart:io' ;
6+ import 'package:hop/hop.dart' ;
7+ import 'package:hop/hop_tasks.dart' ;
8+
9+ void main () {
10+
11+ List pathList = [
12+ 'lib/youtubeanalytics_v1beta1_api_browser.dart'
13+ ,'lib/youtubeanalytics_v1beta1_api_console.dart'
14+ ,'lib/youtubeanalytics_v1beta1_api_client.dart'
15+ ];
16+
17+ addTask ('docs' , createDartDocTask (pathList, linkApi: true ));
18+
19+ addTask ('analyze' , createDartAnalyzerTask (pathList));
20+
21+ runHop ();
22+
23+ }
24+
You can’t perform that action at this time.
0 commit comments