View spec.json
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version_module": true, | |
"title": "Instant Messaging Private API", | |
"ownerName": "Google", | |
"basePath": "", | |
"version": "v1", | |
"resources": { | |
"group": { | |
"methods": { | |
"kickgroupusers": { |
View bigquery.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { TableSchema } from '@google-cloud/bigquery'; | |
import { TransformationType } from 'class-transformer'; | |
import { defaultMetadataStorage } from 'class-transformer/cjs/storage'; | |
import { MetadataStorage } from 'class-transformer/types/MetadataStorage'; | |
import { Enum } from './autoenum'; | |
import { ClassType } from './typeorm/class-type'; | |
const meta: MetadataStorage = defaultMetadataStorage; | |
const BigQueryTypes = Enum( | |
'STRING', |
View result.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"vehicle": 1, | |
"cost": 657, | |
"description": "{\"riderId\":\"5df8f339-0c16-47bc-b89c-85f02bba0a3f\"}", | |
"delivery": [ | |
2 | |
], | |
"amount": [ | |
2 | |
], |
View breathepay-callback.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface BreatheCallbackPayload { | |
/** | |
* Always A numeric code providing the outcome | |
* of the transaction: | |
* Possible values are: | |
* 0 - Successful / authorised transaction. | |
* 1 - Card referred – Refer to card issuer. | |
* 2 - Card referred – Special condition. | |
* 4 - Card declined – Keep card. | |
* 5 - Card declined. |
View photos-v1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"canonicalName": "Photos Library", | |
"auth": { | |
"oauth2": { | |
"scopes": { | |
"https://www.googleapis.com/auth/photoslibrary": { | |
"description": "View and manage your Google Photos library" | |
}, | |
"https://www.googleapis.com/auth/photoslibrary.readonly": { | |
"description": "View your Google Photos library" |
View takeout-discovery.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Takeout API", | |
"discoveryVersion": "v1", | |
"ownerName": "Google", | |
"version_module": true, | |
"resources": { | |
"exports": { | |
"methods": { | |
"get": { | |
"flatPath": "v2/{service}/exports/{exportId}", |
View partialMatch.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Are all the values on p present on o | |
* @param {Object} o object to search | |
* @param {Object} p object of search values | |
* @param {Boolean} [c] are loose equality matches ok? | |
* @return {Boolean} whether there are partial matches | |
*/ | |
const partialMatch = (o, p, c) => | |
Object.keys(p).every(k => | |
p[k] && o[k] |
View callstackToArray.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class test { | |
static isPrivate() { | |
let callername; | |
try { | |
throw new Error(); | |
} catch (e) { | |
/** @type {String[]} */ | |
let stack = e.stack.split("\n"); | |
let out = []; | |
for (let i = 0; i < stack.length; i++) { |