"use strict"; /** * Copyright 2015 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* jshint maxlen: false */ const apirequest_1 = require("../../lib/apirequest"); /** * Google Play Developer API * * Lets Android application developers access their Google Play accounts. * * @example * const google = require('googleapis'); * const androidpublisher = google.androidpublisher('v1'); * * @namespace androidpublisher * @type {Function} * @version v1 * @variation v1 * @param {object=} options Options for Androidpublisher */ function Androidpublisher(options) { const self = this; self._options = options || {}; self.purchases = { /** * androidpublisher.purchases.cancel * * @desc Cancels a user's subscription purchase. The subscription remains valid until its expiration time. * * @alias androidpublisher.purchases.cancel * @memberOf! androidpublisher(v1) * * @param {object} params Parameters for request * @param {string} params.packageName The package name of the application for which this subscription was purchased (for example, 'com.some.thing'). * @param {string} params.subscriptionId The purchased subscription ID (for example, 'monthly001'). * @param {string} params.token The token provided to the user's device when the subscription was purchased. * @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 */ cancel: function (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 + '/androidpublisher/v1/applications/{packageName}/subscriptions/{subscriptionId}/purchases/{token}/cancel').replace(/([^:]\/)\/+/g, '$1'), method: 'POST' }, options), params: params, requiredParams: ['packageName', 'subscriptionId', 'token'], pathParams: ['packageName', 'subscriptionId', 'token'], context: self }; return apirequest_1.default(parameters, callback); }, /** * androidpublisher.purchases.get * * @desc Checks whether a user's subscription purchase is valid and returns its expiry time. * * @alias androidpublisher.purchases.get * @memberOf! androidpublisher(v1) * * @param {object} params Parameters for request * @param {string} params.packageName The package name of the application for which this subscription was purchased (for example, 'com.some.thing'). * @param {string} params.subscriptionId The purchased subscription ID (for example, 'monthly001'). * @param {string} params.token The token provided to the user's device when the subscription was purchased. * @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 */ get: function (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 + '/androidpublisher/v1/applications/{packageName}/subscriptions/{subscriptionId}/purchases/{token}').replace(/([^:]\/)\/+/g, '$1'), method: 'GET' }, options), params: params, requiredParams: ['packageName', 'subscriptionId', 'token'], pathParams: ['packageName', 'subscriptionId', 'token'], context: self }; return apirequest_1.default(parameters, callback); } }; } module.exports = Androidpublisher; //# sourceMappingURL=v1.js.map