📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 00:39:15
📂
/ (Root)
/
home
/
orkouolp
/
nodevenv
/
node_js
/
orkofarms.com
/
18
/
lib
/
node_modules
/
googleapis
/
build
/
src
/
generator
📍 /home/orkouolp/nodevenv/node_js/orkofarms.com/18/lib/node_modules/googleapis/build/src/generator
🔄 Refresh
✏️
Editing: download.d.ts
Writable
import * as gapi from 'googleapis-common'; export type Schema = { [index: string]: {}; }; export declare const DISCOVERY_URL = "https://www.googleapis.com/discovery/v1/apis/"; export interface Change { action: 'ADDED' | 'DELETED' | 'CHANGED'; keyName: string; } export interface ChangeSet { changes: Change[]; api: gapi.Schema; } export interface DownloadOptions { includePrivate?: boolean; discoveryUrl: string; downloadPath: string; } export declare const gfs: { mkdir: (dir: string) => Promise<any>; writeFile: (path: string, obj: {}) => void; readFile: (path: string) => string; }; /** * Download all discovery documents into the /discovery directory. * @param options */ export declare function downloadDiscoveryDocs(options: DownloadOptions): Promise<ChangeSet[]>; /** * Determine if any of the changes in the discovery docs were interesting * @param newDoc New downloaded schema * @param oldDoc The existing schema from disk */ export declare function shouldUpdate(newDoc: {}, oldDoc: {}): boolean; /** * Given an arbitrary object, recursively sort the properties on the object * by the name of the key. For example: * { * b: 1, * a: 2 * } * becomes.... * { * a: 2, * b: 1 * } * @param obj Object to be sorted * @returns object with sorted keys */ export declare function sortKeys(obj: Schema): Schema; /** * Get a diff between the two */ export declare function getDiffs(oldDoc: Schema, newDoc: Schema): Change[]; /** * Given a complex nested object, flatten the key paths so this: * { * a: { * b: 2 * }, * c: 3 * } * becomes ... * { * 'a.b': 2 * c: 3 * } */ export declare function flattenObject(doc: Schema, flat?: Schema, prefix?: string): Schema;
💾 Save Changes
❌ Cancel