..
This commit is contained in:
148
backend/node_modules/googleapis/apis/androidpublisher/v1.1.js
generated
vendored
Normal file
148
backend/node_modules/googleapis/apis/androidpublisher/v1.1.js
generated
vendored
Normal file
@@ -0,0 +1,148 @@
|
||||
"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.1');
|
||||
*
|
||||
* @namespace androidpublisher
|
||||
* @type {Function}
|
||||
* @version v1.1
|
||||
* @variation v1.1
|
||||
* @param {object=} options Options for Androidpublisher
|
||||
*/
|
||||
function Androidpublisher(options) {
|
||||
const self = this;
|
||||
self._options = options || {};
|
||||
self.inapppurchases = {
|
||||
/**
|
||||
* androidpublisher.inapppurchases.get
|
||||
*
|
||||
* @desc Checks the purchase and consumption status of an inapp item.
|
||||
*
|
||||
* @alias androidpublisher.inapppurchases.get
|
||||
* @memberOf! androidpublisher(v1.1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.packageName The package name of the application the inapp product was sold in (for example, 'com.some.thing').
|
||||
* @param {string} params.productId The inapp product SKU (for example, 'com.some.thing.inapp1').
|
||||
* @param {string} params.token The token provided to the user's device when the inapp product 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.1/applications/{packageName}/inapp/{productId}/purchases/{token}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['packageName', 'productId', 'token'],
|
||||
pathParams: ['packageName', 'productId', 'token'],
|
||||
context: self
|
||||
};
|
||||
return apirequest_1.default(parameters, callback);
|
||||
}
|
||||
};
|
||||
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.1)
|
||||
*
|
||||
* @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.1/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.1)
|
||||
*
|
||||
* @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.1/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.1.js.map
|
||||
1
backend/node_modules/googleapis/apis/androidpublisher/v1.1.js.map
generated
vendored
Normal file
1
backend/node_modules/googleapis/apis/androidpublisher/v1.1.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"v1.1.js","sourceRoot":"","sources":["v1.1.ts"],"names":[],"mappings":"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"}
|
||||
191
backend/node_modules/googleapis/apis/androidpublisher/v1.1.ts
generated
vendored
Normal file
191
backend/node_modules/googleapis/apis/androidpublisher/v1.1.ts
generated
vendored
Normal file
@@ -0,0 +1,191 @@
|
||||
/**
|
||||
* 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 */
|
||||
|
||||
import createAPIRequest from '../../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.1');
|
||||
*
|
||||
* @namespace androidpublisher
|
||||
* @type {Function}
|
||||
* @version v1.1
|
||||
* @variation v1.1
|
||||
* @param {object=} options Options for Androidpublisher
|
||||
*/
|
||||
function Androidpublisher(options) { // eslint-disable-line
|
||||
const self = this;
|
||||
self._options = options || {};
|
||||
|
||||
self.inapppurchases = {
|
||||
|
||||
/**
|
||||
* androidpublisher.inapppurchases.get
|
||||
*
|
||||
* @desc Checks the purchase and consumption status of an inapp item.
|
||||
*
|
||||
* @alias androidpublisher.inapppurchases.get
|
||||
* @memberOf! androidpublisher(v1.1)
|
||||
*
|
||||
* @param {object} params Parameters for request
|
||||
* @param {string} params.packageName The package name of the application the inapp product was sold in (for example, 'com.some.thing').
|
||||
* @param {string} params.productId The inapp product SKU (for example, 'com.some.thing.inapp1').
|
||||
* @param {string} params.token The token provided to the user's device when the inapp product 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.1/applications/{packageName}/inapp/{productId}/purchases/{token}').replace(/([^:]\/)\/+/g, '$1'),
|
||||
method: 'GET'
|
||||
}, options),
|
||||
params: params,
|
||||
requiredParams: ['packageName', 'productId', 'token'],
|
||||
pathParams: ['packageName', 'productId', 'token'],
|
||||
context: self
|
||||
};
|
||||
|
||||
return createAPIRequest(parameters, callback);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
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.1)
|
||||
*
|
||||
* @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.1/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 createAPIRequest(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.1)
|
||||
*
|
||||
* @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.1/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 createAPIRequest(parameters, callback);
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @typedef InappPurchase
|
||||
* @memberOf! androidpublisher(v1.1)
|
||||
* @type object
|
||||
* @property {integer} consumptionState The consumption state of the inapp product. Possible values are:
|
||||
- Yet to be consumed
|
||||
- Consumed
|
||||
* @property {string} developerPayload A developer-specified string that contains supplemental information about an order.
|
||||
* @property {string} kind This kind represents an inappPurchase object in the androidpublisher service.
|
||||
* @property {string} orderId The order id associated with the purchase of the inapp product.
|
||||
* @property {integer} purchaseState The purchase state of the order. Possible values are:
|
||||
- Purchased
|
||||
- Cancelled
|
||||
* @property {string} purchaseTime The time the product was purchased, in milliseconds since the epoch (Jan 1, 1970).
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef SubscriptionPurchase
|
||||
* @memberOf! androidpublisher(v1.1)
|
||||
* @type object
|
||||
* @property {boolean} autoRenewing Whether the subscription will automatically be renewed when it reaches its current expiry time.
|
||||
* @property {string} initiationTimestampMsec Time at which the subscription was granted, in milliseconds since the Epoch.
|
||||
* @property {string} kind This kind represents a subscriptionPurchase object in the androidpublisher service.
|
||||
* @property {string} validUntilTimestampMsec Time at which the subscription will expire, in milliseconds since the Epoch.
|
||||
*/
|
||||
export = Androidpublisher;
|
||||
111
backend/node_modules/googleapis/apis/androidpublisher/v1.js
generated
vendored
Normal file
111
backend/node_modules/googleapis/apis/androidpublisher/v1.js
generated
vendored
Normal file
@@ -0,0 +1,111 @@
|
||||
"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
|
||||
1
backend/node_modules/googleapis/apis/androidpublisher/v1.js.map
generated
vendored
Normal file
1
backend/node_modules/googleapis/apis/androidpublisher/v1.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"v1.js","sourceRoot":"","sources":["v1.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;AAEH,0BAA0B;AAE1B,qDAAoD;AAEpD;;;;;;;;;;;;;;GAcG;AACH,0BAA0B,OAAO;IAC/B,MAAM,IAAI,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,QAAQ,GAAG,OAAO,IAAI,EAAE,CAAC;IAE9B,IAAI,CAAC,SAAS,GAAG;QAEf;;;;;;;;;;;;;;;WAeG;QACH,MAAM,EAAE,UAAU,MAAM,EAAE,OAAO,EAAE,QAAQ;YACzC,EAAE,CAAC,CAAC,OAAO,OAAO,KAAK,UAAU,CAAC,CAAC,CAAC;gBAClC,QAAQ,GAAG,OAAO,CAAC;gBACnB,OAAO,GAAG,EAAE,CAAC;YACf,CAAC;YACD,OAAO,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC,CAAC;YAE1B,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,IAAI,6BAA6B,CAAC;YAEjE,MAAM,UAAU,GAAG;gBACjB,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC;oBACrB,GAAG,EAAE,CAAC,OAAO,GAAG,yGAAyG,CAAC,CAAC,OAAO,CAAC,cAAc,EAAE,IAAI,CAAC;oBACxJ,MAAM,EAAE,MAAM;iBACf,EAAE,OAAO,CAAC;gBACX,MAAM,EAAE,MAAM;gBACd,cAAc,EAAE,CAAC,aAAa,EAAE,gBAAgB,EAAE,OAAO,CAAC;gBAC1D,UAAU,EAAE,CAAC,aAAa,EAAE,gBAAgB,EAAE,OAAO,CAAC;gBACtD,OAAO,EAAE,IAAI;aACd,CAAC;YAEF,MAAM,CAAC,oBAAgB,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAChD,CAAC;QAED;;;;;;;;;;;;;;;WAeG;QACH,GAAG,EAAE,UAAU,MAAM,EAAE,OAAO,EAAE,QAAQ;YACtC,EAAE,CAAC,CAAC,OAAO,OAAO,KAAK,UAAU,CAAC,CAAC,CAAC;gBAClC,QAAQ,GAAG,OAAO,CAAC;gBACnB,OAAO,GAAG,EAAE,CAAC;YACf,CAAC;YACD,OAAO,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC,CAAC;YAE1B,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,IAAI,6BAA6B,CAAC;YAEjE,MAAM,UAAU,GAAG;gBACjB,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC;oBACrB,GAAG,EAAE,CAAC,OAAO,GAAG,kGAAkG,CAAC,CAAC,OAAO,CAAC,cAAc,EAAE,IAAI,CAAC;oBACjJ,MAAM,EAAE,KAAK;iBACd,EAAE,OAAO,CAAC;gBACX,MAAM,EAAE,MAAM;gBACd,cAAc,EAAE,CAAC,aAAa,EAAE,gBAAgB,EAAE,OAAO,CAAC;gBAC1D,UAAU,EAAE,CAAC,aAAa,EAAE,gBAAgB,EAAE,OAAO,CAAC;gBACtD,OAAO,EAAE,IAAI;aACd,CAAC;YAEF,MAAM,CAAC,oBAAgB,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QAChD,CAAC;KAEF,CAAC;AACJ,CAAC;AAWD,iBAAS,gBAAgB,CAAC"}
|
||||
132
backend/node_modules/googleapis/apis/androidpublisher/v1.ts
generated
vendored
Normal file
132
backend/node_modules/googleapis/apis/androidpublisher/v1.ts
generated
vendored
Normal file
@@ -0,0 +1,132 @@
|
||||
/**
|
||||
* 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 */
|
||||
|
||||
import createAPIRequest from '../../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) { // eslint-disable-line
|
||||
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 createAPIRequest(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 createAPIRequest(parameters, callback);
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @typedef SubscriptionPurchase
|
||||
* @memberOf! androidpublisher(v1)
|
||||
* @type object
|
||||
* @property {boolean} autoRenewing Whether the subscription will automatically be renewed when it reaches its current expiry time.
|
||||
* @property {string} initiationTimestampMsec Time at which the subscription was granted, in milliseconds since the Epoch.
|
||||
* @property {string} kind This kind represents a subscriptionPurchase object in the androidpublisher service.
|
||||
* @property {string} validUntilTimestampMsec Time at which the subscription will expire, in milliseconds since the Epoch.
|
||||
*/
|
||||
export = Androidpublisher;
|
||||
2104
backend/node_modules/googleapis/apis/androidpublisher/v2.js
generated
vendored
Normal file
2104
backend/node_modules/googleapis/apis/androidpublisher/v2.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
backend/node_modules/googleapis/apis/androidpublisher/v2.js.map
generated
vendored
Normal file
1
backend/node_modules/googleapis/apis/androidpublisher/v2.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
2893
backend/node_modules/googleapis/apis/androidpublisher/v2.ts
generated
vendored
Normal file
2893
backend/node_modules/googleapis/apis/androidpublisher/v2.ts
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user