Skip to content

Commit

Permalink
chore: fix and run generator (#981)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Feb 2, 2018
1 parent a97d41d commit 0b42287
Show file tree
Hide file tree
Showing 69 changed files with 9,082 additions and 9,203 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -112,7 +112,7 @@
"@types/tmp": "0.0.33",
"@types/uuid": "^3.4.3",
"axios": "^0.17.1",
"clang-format": "^1.1.1",
"clang-format": "^1.2.2",
"codecov": "^3.0.0",
"gts": "0.5.3",
"ink-docstrap": "1.3.2",
Expand Down
1 change: 1 addition & 0 deletions src/apis/adexchangebuyer2/v2beta1.ts
Expand Up @@ -2410,6 +2410,7 @@ function Adexchangebuyer2(options) {
* @memberOf! adexchangebuyer2(v2beta1)
* @type object
* @property {string} videoUrl The URL to fetch a video ad.
* @property {string} videoVastXml The contents of a VAST document for a video ad. This document should conform to the VAST 2.0 or 3.0 standard.
*/
/**
* @typedef WatchCreativeRequest
Expand Down
55 changes: 55 additions & 0 deletions src/apis/analytics/v3.ts
Expand Up @@ -3444,6 +3444,39 @@ function Analytics(options) {
context: self
};
return createAPIRequest(parameters, callback);
}, /**
* analytics.provisioning.createAccountTree
* @desc Provision account.
* @alias analytics.provisioning.createAccountTree
* @memberOf! analytics(v3)
*
* @param {object} params Parameters for request
* @param {analytics(v3).AccountTreeRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
createAccountTree(params, options, callback) {
if (typeof options === 'function') {
callback = options;
options = {};
}
options = options || {};
const rootUrl = options.rootUrl || 'https://www.googleapis.com/';
const parameters = {
options: Object.assign(
{
url: (rootUrl + '/analytics/v3/provisioning/createAccount')
.replace(/([^:]\/)\/+/g, '$1'),
method: 'POST'
},
options),
params,
requiredParams: [],
pathParams: [],
context: self
};
return createAPIRequest(parameters, callback);
}

};
Expand Down Expand Up @@ -3518,6 +3551,28 @@ function Analytics(options) {
* @property {string} redirectUri Redirect URI where the user will be sent after accepting Terms of Service. Must be configured in APIs console as a callback URL.
* @property {analytics(v3).Webproperty} webproperty Web property for the account.
*/
/**
* @typedef AccountTreeRequest
* @memberOf! analytics(v3)
* @type object
* @property {string} accountName
* @property {object} accountSettings
* @property {string} kind Resource type for account ticket.
* @property {string} profileName
* @property {string} timezone
* @property {string} webpropertyName
* @property {string} websiteUrl
*/
/**
* @typedef AccountTreeResponse
* @memberOf! analytics(v3)
* @type object
* @property {analytics(v3).Account} account The account created.
* @property {object} accountSettings
* @property {string} kind Resource type for account ticket.
* @property {analytics(v3).Profile} profile View (Profile) for the account.
* @property {analytics(v3).Webproperty} webproperty Web property for the account.
*/
/**
* @typedef AdWordsAccount
* @memberOf! analytics(v3)
Expand Down
12 changes: 6 additions & 6 deletions src/apis/androiddeviceprovisioning/v1.ts
Expand Up @@ -38,13 +38,13 @@ function Androiddeviceprovisioning(options) {
self.customers = {
/**
* androiddeviceprovisioning.customers.list
* @desc List the user's customer accounts.
* @desc Lists the user's customer accounts.
* @alias androiddeviceprovisioning.customers.list
* @memberOf! androiddeviceprovisioning(v1)
*
* @param {object} params Parameters for request
* @param {integer=} params.pageSize The maximum number of items to return.
* @param {string=} params.pageToken The next_page_token value returned from a previous List request, if any.
* @param {integer=} params.pageSize The maximum number of customers to show in a page of results. A number between 1 and 1000 (inclusive).
* @param {string=} params.pageToken A token specifying which result page to return.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
Expand Down Expand Up @@ -326,7 +326,7 @@ function Androiddeviceprovisioning(options) {
* @memberOf! androiddeviceprovisioning(v1)
*
* @param {object} params Parameters for request
* @param {string=} params.pageSize The maximum number of devices to show in a page of results. The default value returns all the devices in a single page.
* @param {string=} params.pageSize The maximum number of devices to show in a page of results. Must be between 1 and 100 inclusive.
* @param {string=} params.pageToken A token specifying which result page to return.
* @param {string} params.parent Required. The customer managing the devices. An API resource name in the format `customers/[CUSTOMER_ID]`.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
Expand Down Expand Up @@ -986,8 +986,8 @@ function Androiddeviceprovisioning(options) {
* @typedef CustomerListCustomersResponse
* @memberOf! androiddeviceprovisioning(v1)
* @type object
* @property {androiddeviceprovisioning(v1).Company[]} customers Customers the current user can act as.
* @property {string} nextPageToken Token to retrieve the next page of results, or empty if there are no more results in the list.
* @property {androiddeviceprovisioning(v1).Company[]} customers The customer accounts the calling user is a member of.
* @property {string} nextPageToken A token used to access the next page of results. Omitted if no further results are available.
*/
/**
* @typedef CustomerListDevicesResponse
Expand Down

0 comments on commit 0b42287

Please sign in to comment.