File tree 16 files changed +76
-0
lines changed
16 files changed +76
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ module.exports = {
2
2
"extends" : "google" ,
3
3
"parserOptions" : {
4
4
"ecmaVersion" : 8 ,
5
+ "sourceType" : "module"
5
6
} ,
6
7
"env" : {
7
8
"node" : true ,
Original file line number Diff line number Diff line change @@ -122,3 +122,8 @@ function listUsers(auth) {
122
122
} ) ;
123
123
}
124
124
// [END admin_sdk_directory_quickstart]
125
+
126
+ module . exports = {
127
+ SCOPES ,
128
+ listUsers,
129
+ } ;
Original file line number Diff line number Diff line change @@ -122,3 +122,8 @@ function listLoginEvents(auth) {
122
122
} ) ;
123
123
}
124
124
// [END admin_sdk_reports_quickstart]
125
+
126
+ module . exports = {
127
+ SCOPES ,
128
+ listLoginEvents,
129
+ } ;
Original file line number Diff line number Diff line change @@ -120,3 +120,8 @@ function listSubscriptions(auth) {
120
120
} ) ;
121
121
}
122
122
// [END admin_sdk_reseller_quickstart]
123
+
124
+ module . exports = {
125
+ SCOPES ,
126
+ listSubscriptions,
127
+ } ;
Original file line number Diff line number Diff line change @@ -117,3 +117,8 @@ function callAppsScript(auth) {
117
117
} ) ;
118
118
}
119
119
// [END apps_script_api_quickstart]
120
+
121
+ module . exports = {
122
+ SCOPES ,
123
+ callAppsScript,
124
+ } ;
Original file line number Diff line number Diff line change @@ -110,3 +110,8 @@ function listEvents(auth) {
110
110
} ) ;
111
111
}
112
112
// [END calendar_quickstart]
113
+
114
+ module . exports = {
115
+ SCOPES ,
116
+ listEvents,
117
+ } ;
Original file line number Diff line number Diff line change @@ -106,3 +106,8 @@ function listCourses(auth) {
106
106
} ) ;
107
107
}
108
108
// [END classroom_quickstart]
109
+
110
+ module . exports = {
111
+ SCOPES ,
112
+ listCourses,
113
+ } ;
Original file line number Diff line number Diff line change @@ -98,3 +98,8 @@ function printDocTitle(auth) {
98
98
} ) ;
99
99
}
100
100
// [END docs_quickstart]
101
+
102
+ module . exports = {
103
+ SCOPES ,
104
+ printDocTitle,
105
+ } ;
Original file line number Diff line number Diff line change @@ -218,3 +218,8 @@ function getTargetInfo(target) {
218
218
return `${ getOneOf ( target ) } :unknown` ;
219
219
}
220
220
// [END drive_activity_v2_quickstart]
221
+
222
+ module . exports = {
223
+ SCOPES ,
224
+ listDriveActivity,
225
+ } ;
Original file line number Diff line number Diff line change @@ -115,3 +115,8 @@ function listActivity(auth) {
115
115
} ) ;
116
116
}
117
117
// [END drive_activity_quickstart]
118
+
119
+ module . exports = {
120
+ SCOPES ,
121
+ listActivity,
122
+ } ;
Original file line number Diff line number Diff line change @@ -106,3 +106,8 @@ function listFiles(auth) {
106
106
} ) ;
107
107
}
108
108
// [END drive_quickstart]
109
+
110
+ module . exports = {
111
+ SCOPES ,
112
+ listFiles,
113
+ } ;
Original file line number Diff line number Diff line change @@ -106,3 +106,8 @@ function listLabels(auth) {
106
106
} ) ;
107
107
}
108
108
// [END gmail_quickstart]
109
+
110
+ module . exports = {
111
+ SCOPES ,
112
+ listLabels,
113
+ } ;
Original file line number Diff line number Diff line change @@ -112,3 +112,8 @@ function listConnectionNames(auth) {
112
112
} ) ;
113
113
}
114
114
// [END people_quickstart]
115
+
116
+ module . exports = {
117
+ SCOPES ,
118
+ listConnectionNames,
119
+ } ;
Original file line number Diff line number Diff line change @@ -108,3 +108,8 @@ function listMajors(auth) {
108
108
} ) ;
109
109
}
110
110
// [END sheets_quickstart]
111
+
112
+ module . exports = {
113
+ SCOPES ,
114
+ listMajors,
115
+ } ;
Original file line number Diff line number Diff line change @@ -102,3 +102,8 @@ function listSlides(auth) {
102
102
} ) ;
103
103
}
104
104
// [END slides_quickstart]
105
+
106
+ module . exports = {
107
+ SCOPES ,
108
+ listSlides,
109
+ } ;
Original file line number Diff line number Diff line change @@ -106,3 +106,8 @@ function listTaskLists(auth) {
106
106
} ) ;
107
107
}
108
108
// [END tasks_quickstart]
109
+
110
+ module . exports = {
111
+ SCOPES ,
112
+ listTaskLists,
113
+ } ;
You can’t perform that action at this time.
0 commit comments