civicrm-api
Advanced tools
Comparing version 0.4.2 to 0.4.3
@@ -18,3 +18,3 @@ import { RequestBuilder } from "./request-builder"; | ||
}; | ||
type Value = string | number | string[] | number[] | boolean | boolean[] | null; | ||
type Value = string | number | string[] | number[] | boolean | boolean[] | null | undefined; | ||
type Params = Record<string, Value>; | ||
@@ -21,0 +21,0 @@ type Options = Record<string, Value>; |
@@ -17,3 +17,3 @@ import { BaseRequestFn } from "../types"; | ||
} | ||
export type Value = string | number | string[] | number[] | boolean | boolean[] | null | Date; | ||
export type Value = string | number | string[] | number[] | boolean | boolean[] | null | Date | undefined; | ||
type Many<T> = T | readonly T[]; | ||
@@ -20,0 +20,0 @@ type WhereOperator = "=" | "<=" | ">=" | ">" | "<" | "LIKE" | "<>" | "!=" | "NOT LIKE" | "IN" | "NOT IN" | "BETWEEN" | "NOT BETWEEN" | "IS NOT NULL" | "IS NULL" | "CONTAINS" | "NOT CONTAINS" | "IS EMPTY" | "IS NOT EMPTY" | "REGEXP" | "NOT REGEXP"; |
{ | ||
"name": "civicrm-api", | ||
"version": "0.4.2", | ||
"version": "0.4.3", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "TypeScript client for the CiviCRM API, supporting both API v4 and v3.", |
@@ -35,3 +35,4 @@ import { RequestBuilder } from "./request-builder"; | ||
| boolean[] | ||
| null; | ||
| null | ||
| undefined; | ||
@@ -38,0 +39,0 @@ export type Params = Record<string, Value>; |
@@ -29,3 +29,4 @@ import { BaseRequestFn } from "../types"; | ||
| null | ||
| Date; | ||
| Date | ||
| undefined; | ||
@@ -32,0 +33,0 @@ type Many<T> = T | readonly T[]; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
729122
1790