/
var
/
www
/
p4ela.kz
/
server
/
delivery
/
node_modules
/
@google-cloud
/
firestore
/
build
/
src
/
/var/www/p4ela.kz/server/delivery/node_modules/@google-cloud/firestore/build/src
mkdir
upload
Name
Size
Mode
Actions
v1/
-
0755
rm
v1beta1/
-
0755
rm
backoff.d.ts
5547
0644
edit
dl
rm
backoff.js
7650
0644
edit
dl
rm
bulk-writer.d.ts
19241
0644
edit
dl
rm
bulk-writer.js
36076
0644
edit
dl
rm
bundle.d.ts
835
0644
edit
dl
rm
bundle.js
8427
0644
edit
dl
rm
collection-group.d.ts
3610
0644
edit
dl
rm
collection-group.js
4520
0644
edit
dl
rm
convert.d.ts
2776
0644
edit
dl
rm
convert.js
7167
0644
edit
dl
rm
document-change.d.ts
5041
0644
edit
dl
rm
document-change.js
5292
0644
edit
dl
rm
document-reader.d.ts
1842
0644
edit
dl
rm
document-reader.js
5353
0644
edit
dl
rm
document.d.ts
18136
0644
edit
dl
rm
document.js
30411
0644
edit
dl
rm
field-value.d.ts
8618
0644
edit
dl
rm
field-value.js
13904
0644
edit
dl
rm
geo-point.d.ts
2644
0644
edit
dl
rm
geo-point.js
3217
0644
edit
dl
rm
index.d.ts
36511
0644
edit
dl
rm
index.js
59421
0644
edit
dl
rm
logger.d.ts
1310
0644
edit
dl
rm
logger.js
2112
0644
edit
dl
rm
order.d.ts
1096
0644
edit
dl
rm
order.js
7525
0644
edit
dl
rm
path.d.ts
12126
0644
edit
dl
rm
path.js
19003
0644
edit
dl
rm
pool.d.ts
4116
0644
edit
dl
rm
pool.js
8859
0644
edit
dl
rm
query-partition.d.ts
4019
0644
edit
dl
rm
query-partition.js
5769
0644
edit
dl
rm
rate-limiter.d.ts
3015
0644
edit
dl
rm
rate-limiter.js
5850
0644
edit
dl
rm
recursive-delete.d.ts
5714
0644
edit
dl
rm
recursive-delete.js
10010
0644
edit
dl
rm
reference.d.ts
45610
0644
edit
dl
rm
reference.js
89449
0644
edit
dl
rm
serializer.d.ts
2942
0644
edit
dl
rm
serializer.js
12813
0644
edit
dl
rm
status-code.d.ts
1121
0644
edit
dl
rm
status-code.js
712
0644
edit
dl
rm
timestamp.d.ts
6987
0644
edit
dl
rm
timestamp.js
9697
0644
edit
dl
rm
transaction.d.ts
9673
0644
edit
dl
rm
transaction.js
18889
0644
edit
dl
rm
types.d.ts
3869
0644
edit
dl
rm
types.js
1387
0644
edit
dl
rm
util.d.ts
3463
0644
edit
dl
rm
util.js
6023
0644
edit
dl
rm
validate.d.ts
6527
0644
edit
dl
rm
validate.js
12314
0644
edit
dl
rm
watch.d.ts
9762
0644
edit
dl
rm
watch.js
24972
0644
edit
dl
rm
write-batch.d.ts
10533
0644
edit
dl
rm
write-batch.js
27234
0644
edit
dl
rm
Edit:
/var/www/p4ela.kz/server/delivery/node_modules/@google-cloud/firestore/build/src/path.d.ts
(12126B)
/*! * Copyright 2017 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. */ import * as firestore from '@google-cloud/firestore'; import { google } from '../protos/firestore_v1_proto_api'; import api = google.firestore.v1; /*! * The default database ID for this Firestore client. We do not yet expose the * ability to use different databases. */ export declare const DEFAULT_DATABASE_ID = "(default)"; /** * An abstract class representing a Firestore path. * * Subclasses have to implement `split()` and `canonicalString()`. * * @private * @internal * @class */ declare abstract class Path<T> { protected readonly segments: string[]; /** * Creates a new Path with the given segments. * * @private * @internal * @hideconstructor * @param segments Sequence of parts of a path. */ constructor(segments: string[]); /** * Returns the number of segments of this field path. * * @private * @internal */ get size(): number; abstract construct(segments: string[] | string): T; abstract split(relativePath: string): string[]; /** * Create a child path beneath the current level. * * @private * @internal * @param relativePath Relative path to append to the current path. * @returns The new path. */ append(relativePath: Path<T> | string): T; /** * Returns the path of the parent node. * * @private * @internal * @returns The new path or null if we are already at the root. */ parent(): T | null; /** * Checks whether the current path is a prefix of the specified path. * * @private * @internal * @param other The path to check against. * @returns 'true' iff the current path is a prefix match with 'other'. */ isPrefixOf(other: Path<T>): boolean; /** * Compare the current path against another Path object. * * @private * @internal * @param other The path to compare to. * @returns -1 if current < other, 1 if current > other, 0 if equal */ compareTo(other: Path<T>): number; /** * Returns a copy of the underlying segments. * * @private * @internal * @returns A copy of the segments that make up this path. */ toArray(): string[]; /** * Pops the last segment from this `Path` and returns a newly constructed * `Path`. * * @private * @internal * @returns The newly created Path. */ popLast(): T; /** * Returns true if this `Path` is equal to the provided value. * * @private * @internal * @param other The value to compare against. * @return true if this `Path` is equal to the provided value. */ isEqual(other: Path<T>): boolean; } /** * A slash-separated path for navigating resources within the current Firestore * instance. * * @private * @internal */ export declare class ResourcePath extends Path<ResourcePath> { /** * A default instance pointing to the root collection. * @private * @internal */ static EMPTY: ResourcePath; /** * Constructs a ResourcePath. * * @private * @internal * @param segments Sequence of names of the parts of the path. */ constructor(...segments: string[]); /** * Indicates whether this path points to a document. * @private * @internal */ get isDocument(): boolean; /** * Indicates whether this path points to a collection. * @private * @internal */ get isCollection(): boolean; /** * The last component of the path. * @private * @internal */ get id(): string | null; /** * Returns the location of this path relative to the root of the project's * database. * @private * @internal */ get relativeName(): string; /** * Constructs a new instance of ResourcePath. * * @private * @internal * @param segments Sequence of parts of the path. * @returns The newly created ResourcePath. */ construct(segments: string[]): ResourcePath; /** * Splits a string into path segments, using slashes as separators. * * @private * @internal * @param relativePath The path to split. * @returns The split path segments. */ split(relativePath: string): string[]; /** * Converts this path to a fully qualified ResourcePath. * * @private * @internal * @param projectIdIfMissing The project ID of the current Firestore project. * The project ID is only used if it's not provided as part of this * ResourcePath. * @return A fully-qualified resource path pointing to the same element. */ toQualifiedResourcePath(projectIdIfMissing: string): QualifiedResourcePath; } /** * A slash-separated path that includes a project and database ID for referring * to resources in any Firestore project. * * @private * @internal */ export declare class QualifiedResourcePath extends ResourcePath { /** * The project ID of this path. */ readonly projectId: string; /** * The database ID of this path. */ readonly databaseId: string; /** * Constructs a Firestore Resource Path. * * @private * @internal * @param projectId The Firestore project id. * @param databaseId The Firestore database id. * @param segments Sequence of names of the parts of the path. */ constructor(projectId: string, databaseId: string, ...segments: string[]); /** * String representation of the path relative to the database root. * @private * @internal */ get relativeName(): string; /** * Creates a resource path from an absolute Firestore path. * * @private * @internal * @param absolutePath A string representation of a Resource Path. * @returns The new ResourcePath. */ static fromSlashSeparatedString(absolutePath: string): QualifiedResourcePath; /** * Create a child path beneath the current level. * * @private * @internal * @param relativePath Relative path to append to the current path. * @returns The new path. */ append(relativePath: ResourcePath | string): QualifiedResourcePath; /** * Create a child path beneath the current level. * * @private * @internal * @returns The new path. */ parent(): QualifiedResourcePath | null; /** * String representation of a ResourcePath as expected by the API. * * @private * @internal * @returns The representation as expected by the API. */ get formattedName(): string; /** * Constructs a new instance of ResourcePath. We need this instead of using * the normal constructor because polymorphic 'this' doesn't work on static * methods. * * @private * @internal * @param segments Sequence of names of the parts of the path. * @returns The newly created QualifiedResourcePath. */ construct(segments: string[]): QualifiedResourcePath; /** * Convenience method to match the ResourcePath API. This method always * returns the current instance. * * @private * @internal */ toQualifiedResourcePath(): QualifiedResourcePath; /** * Compare the current path against another ResourcePath object. * * @private * @internal * @param other The path to compare to. * @returns -1 if current < other, 1 if current > other, 0 if equal */ compareTo(other: ResourcePath): number; /** * Converts this ResourcePath to the Firestore Proto representation. * @private * @internal */ toProto(): api.IValue; } /** * Validates that the given string can be used as a relative or absolute * resource path. * * @private * @internal * @param arg The argument name or argument index (for varargs methods). * @param resourcePath The path to validate. * @throws if the string can't be used as a resource path. */ export declare function validateResourcePath(arg: string | number, resourcePath: string): void; /** * A dot-separated path for navigating sub-objects (e.g. nested maps) within a document. * * @class */ export declare class FieldPath extends Path<FieldPath> implements firestore.FieldPath { /** * A special sentinel value to refer to the ID of a document. * * @private * @internal */ private static _DOCUMENT_ID; /** * Constructs a Firestore Field Path. * * @param {...string} segments Sequence of field names that form this path. * * @example * ``` * let query = firestore.collection('col'); * let fieldPath = new FieldPath('f.o.o', 'bar'); * * query.where(fieldPath, '==', 42).get().then(snapshot => { * snapshot.forEach(document => { * console.log(`Document contains {'f.o.o' : {'bar' : 42}}`); * }); * }); * ``` */ constructor(...segments: string[]); /** * A special FieldPath value to refer to the ID of a document. It can be used * in queries to sort or filter by the document ID. * * @returns {FieldPath} */ static documentId(): FieldPath; /** * Turns a field path argument into a [FieldPath]{@link FieldPath}. * Supports FieldPaths as input (which are passed through) and dot-separated * strings. * * @private * @internal * @param {string|FieldPath} fieldPath The FieldPath to create. * @returns {FieldPath} A field path representation. */ static fromArgument(fieldPath: string | firestore.FieldPath): FieldPath; /** * String representation of a FieldPath as expected by the API. * * @private * @internal * @override * @returns {string} The representation as expected by the API. */ get formattedName(): string; /** * Returns a string representation of this path. * * @private * @internal * @returns A string representing this path. */ toString(): string; /** * Splits a string into path segments, using dots as separators. * * @private * @internal * @override * @param {string} fieldPath The path to split. * @returns {Array.<string>} - The split path segments. */ split(fieldPath: string): string[]; /** * Constructs a new instance of FieldPath. We need this instead of using * the normal constructor because polymorphic 'this' doesn't work on static * methods. * * @private * @internal * @override * @param segments Sequence of field names. * @returns The newly created FieldPath. */ construct(segments: string[]): FieldPath; /** * Returns true if this `FieldPath` is equal to the provided value. * * @param {*} other The value to compare against. * @return {boolean} true if this `FieldPath` is equal to the provided value. */ isEqual(other: FieldPath): boolean; } /** * Validates that the provided value can be used as a field path argument. * * @private * @internal * @param arg The argument name or argument index (for varargs methods). * @param fieldPath The value to verify. * @throws if the string can't be used as a field path. */ export declare function validateFieldPath(arg: string | number, fieldPath: unknown): asserts fieldPath is string | FieldPath; export {};
Save
cmd:
run