swc/bundler/tests/.cache/deno/552152ba99e3dd3ca555ef74a8d03c1d0f2ed89e.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

325 lines
9.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Loaded from https://deno.land/x/mongo@v0.20.0/src/types.ts
import { Bson } from "../deps.ts";
export type Document = Bson.Document;
export interface ConnectOptions {
servers: {
host: string;
port: number;
domainSocket?: string;
}[];
auth?: {
user: string;
password: string;
};
dbName?: string;
[key: string]: any;
}
export interface CountOptions {
limit?: number;
skip?: number;
hint?: Document | string;
comment?: Document;
readConcern?: Document;
collation?: Document;
}
export interface FindOptions {
findOne?: boolean;
skip?: number;
limit?: number;
projection?: Document;
}
export interface ListDatabaseInfo {
name: string;
sizeOnDisk?: number;
empty?: false;
}
export interface InsertOptions {
/**
* Optional. If true, then when an insert of a document fails, return without inserting any remaining documents listed in the inserts array.
* If false, then when an insert of a document fails, continue to insert the remaining documents. Defaults to true.
*/
ordered?: boolean;
/**
* Optional. A document that expresses the write concern of the insert command. Omit to use the default write concern.
* Do not explicitly set the write concern for the operation if run in a transaction. To use write concern with transactions, see Transactions and Write Concern.
*/
writeConcern?: Document;
/**
* Optional. Enables insert to bypass document validation during the operation. This lets you insert documents that do not meet the validation requirements.
*/
bypassDocumentValidation?: boolean;
/**
* Optional. A user-provided comment to attach to this command.
*/
comment?: Document;
}
export interface UpdateOptions {
/**
* Optional. A document expressing the write concern of the update command. Omit to use the default write concern.
*/
writeConcern?: Document;
/**
* Optional. If true, then when an update statement fails, return without performing the remaining update statements.
* If false, then when an update fails, continue with the remaining update statements, if any. Defaults to true.
*/
ordered?: boolean;
/**
* Optional. If true, updates all documents that meet the query criteria.
* If false, limit the update to one document that meet the query criteria. Defaults to false.
*/
multi?: boolean;
/**
* optional list of array filters referenced in filtered positional operators
*/
arrayFilters?: Document[];
/**
* Specify collation (MongoDB 3.4 or higher) settings for update operation (see 3.4 documentation for available fields).
*/
collation?: Document;
/**
* Allow driver to bypass schema validation in MongoDB 3.2 or higher
*/
bypassDocumentValidation?: boolean;
/**
* An optional hint for query optimization. See the update (https://docs.mongodb.com/manual/reference/command/update/#update-command-hint) command reference for more information.
*/
hint?: Document;
/**
* When true, creates a new document if no document matches the query.
*/
upsert?: boolean;
/**
* The write concern timeout.
*/
wtimeout?: number;
/**
* If true, will throw if bson documents start with $ or include a . in any key value
*/
checkKeys?: boolean;
/**
* Serialize functions on any object.
*/
serializeFunctions?: boolean;
/**
* Specify if the BSON serializer should ignore undefined fields.
*/
ignoreUndefined?: boolean;
/**
* Optional. A user-provided comment to attach to this command.
*/
comment?: Document;
/**
* optional session to use for this operation
*/
// session?: ClientSession
}
export interface DeleteOptions {
/**
* Optional. If true, then when a delete statement fails, return without performing the remaining delete statements.
* If false, then when a delete statement fails, continue with the remaining delete statements, if any. Defaults to true.
*/
ordered?: boolean;
/**
* Optional. A document expressing the write concern of the delete command. Omit to use the default write concern.
*/
writeConcern?: Document;
/**
* Optional. Specifies the collation to use for the operation.
* See https://docs.mongodb.com/manual/reference/command/delete/#deletes-array-collation
*/
collation?: Document;
/**
* Optional. A user-provided comment to attach to this command.
*/
comment?: Document;
/**
* The number of matching documents to delete. Specify either a 0 to delete all matching documents or 1 to delete a single document.
*/
limit?: number;
/**
* Optional. A document or string that specifies the index to use to support the query predicate.
* The option can take an index specification document or the index name string.
* If you specify an index that does not exist, the operation errors.
*/
hint?: Document | string;
}
export interface DropOptions {
/**
* Optional. A document expressing the write concern of the drop command. Omit to use the default write concern.
*/
writeConcern?: Document;
/**
* Optional. A user-provided comment to attach to this command.
*/
comment?: any;
}
export interface DistinctOptions {
/**
* The preferred read preference (ReadPreference.PRIMARY, ReadPreference.PRIMARY_PREFERRED, ReadPreference.SECONDARY, ReadPreference.SECONDARY_PREFERRED, ReadPreference.NEAREST).
*/
readPreference?: string;
/**
* Number of milliseconds to wait before aborting the query.
*/
maxTimeMS?: number;
/**
* pecify collation settings for operation. See aggregation documentation(https://docs.mongodb.com/manual/reference/command/aggregate).
*/
collation?: Document;
/**
* optional session to use for this operation
*/
// session?:ClientSession;
}
export interface AggregateOptions {
/**
* The preferred read preference (ReadPreference.PRIMARY, ReadPreference.PRIMARY_PREFERRED, ReadPreference.SECONDARY, ReadPreference.SECONDARY_PREFERRED, ReadPreference.NEAREST).
*/
readPreference?: string;
/**
* @default 1000
* The number of documents to return per batch. See aggregation documentation(https://docs.mongodb.com/manual/reference/command/aggregate).
*/
batchSize?: number;
/**
* @default false
* Explain returns the aggregation execution plan (requires mongodb 2.6 >).
*/
explain?: boolean;
/**
* @default false
* allowDiskUse lets the server know if it can use disk to store temporary results for the aggregation (requires mongodb 2.6 >).
*/
allowDiskUse?: boolean;
/**
* maxTimeMS specifies a cumulative time limit in milliseconds for processing operations on the cursor. MongoDB interrupts the operation at the earliest following interrupt point.
*/
maxTimeMS?: number;
/**
* @default false
* Allow driver to bypass schema validation in MongoDB 3.2 or higher.
*/
bypassDocumentValidation?: boolean;
/**
* @default false
*Return document results as raw BSON buffers.
*/
raw?: boolean;
/**
* @default true
* Promotes Long values to number if they fit inside the 53 bits resolution.
*/
promoteLongs?: boolean;
/**
* @default true
* Promotes BSON values to native types where possible, set to false to only receive wrapper types.
*/
promoteValues?: boolean;
/**
* @default false
* Promotes Binary BSON values to native Node Buffers.
*/
promoteBuffers?: boolean;
/**
* Specify collation settings for operation. See aggregation documentation(https://docs.mongodb.com/manual/reference/command/aggregate).
*/
collation?: Document;
/**
* Add a comment to an aggregation command
*/
comment?: string;
/**
* Add an index selection hint to an aggregation command
*/
hint?: string | Document;
/**
* optional session to use for this operation
*/
// session?:ClientSession;
}
export interface CreateUserOptions {
/**
* The name of the new user.
*/
username?: string;
/**
* The users password. The pwd field is not required if you run createUser on the $external database to create users who have credentials stored externally to MongoDB.
*/
password?: string;
/**
* Optional. Any arbitrary information. This field can be used to store any data an admin wishes to associate with this particular user. For example, this could be the users full name or employee id.
*/
customData?: Document;
/**
* The roles granted to the user. Can specify an empty array [] to create users without roles.
*/
roles?: (string | {
role: string;
db: string;
})[];
/**
* Optional. Indicates whether the server or the client digests the password.
* See https://docs.mongodb.com/manual/reference/command/createUser/#dbcmd.createUser
*/
digestPassword?: boolean;
/**
* Optional. The level of write concern for the creation operation. The writeConcern document takes the same fields as the getLastError command.
*/
writeConcern?: Document;
/**
* Optional. The authentication restrictions the server enforces on the created user. Specifies a list of IP addresses and CIDR ranges from which the user is allowed to connect to the server or from which the server can accept users.
*/
authenticationRestrictions?: Document[];
/**
* Optional. Specify the specific SCRAM mechanism or mechanisms for creating SCRAM user credentials.
*/
mechanisms?: ("SCRAM-SHA-1" | "SCRAM-SHA-256")[];
/**
* Optional. A user-provided comment to attach to this command.
*/
comment?: Document;
}