@types/parse
Advanced tools
Comparing version 2.4.4 to 2.4.5
@@ -9,3 +9,3 @@ // Type definitions for parse 2.4 | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
// TypeScript Version: 2.3 | ||
// TypeScript Version: 2.4 | ||
@@ -911,6 +911,2 @@ /// <reference types="node" /> | ||
interface BeforeFindTriggerRequest extends TriggerRequest { | ||
query?: Query | ||
count?: boolean | ||
} | ||
@@ -922,8 +918,20 @@ interface AfterSaveRequest extends TriggerRequest { } | ||
interface BeforeSaveRequest extends TriggerRequest { } | ||
interface BeforeFindRequest extends BeforeFindTriggerRequest { } | ||
interface BeforeSaveResponse extends FunctionResponse { | ||
success: () => void; | ||
} | ||
// Read preference describes how MongoDB driver route read operations to the members of a replica set. | ||
enum ReadPreferenceOption { | ||
Primary = 'PRIMARY', | ||
PrimaryPreferred = 'PRIMARY_PREFERRED', | ||
Secondary = 'SECONDARY', | ||
SecondaryPreferred = 'SECONDARY_PREFERRED', | ||
Nearest = 'NEAREST' | ||
} | ||
interface BeforeFindRequest extends TriggerRequest { | ||
query: Query; | ||
query: Query | ||
count: boolean | ||
isGet: boolean | ||
readPreference?: ReadPreferenceOption | ||
} | ||
@@ -930,0 +938,0 @@ |
{ | ||
"name": "@types/parse", | ||
"version": "2.4.4", | ||
"version": "2.4.5", | ||
"description": "TypeScript definitions for parse", | ||
@@ -43,4 +43,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "0dfe10130623ec42f3947b803c1777d18465506a0073dc161f9c42689ec9f7ac", | ||
"typeScriptVersion": "2.3" | ||
"typesPublisherContentHash": "e41562572cec41244bbce68e4a94e9d9a45bd78ada2dd81cee7db4454622f943", | ||
"typeScriptVersion": "2.4" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Tue, 13 Feb 2018 20:54:40 GMT | ||
* Last updated: Tue, 20 Feb 2018 21:50:34 GMT | ||
* Dependencies: node, jquery, underscore | ||
@@ -14,0 +14,0 @@ * Global values: Parse |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44440
993