@apitizer/query
Advanced tools
Comparing version 0.0.4-alpha.10 to 0.0.4-alpha.11
@@ -1,5 +0,2 @@ | ||
export declare type MaybeParams = Record<string, string | undefined>; | ||
export declare type Params = Record<string, string>; | ||
export declare type MaybeParamPair = [string, string | undefined]; | ||
export declare type ParamPair = [string, string]; | ||
declare type Params = Record<string, string>; | ||
/** | ||
@@ -37,2 +34,9 @@ * Defines a query builder. | ||
} | ||
/** | ||
* Creates a new query object. | ||
* | ||
* @see Query | ||
* @param params Initial params. | ||
*/ | ||
export declare function query(params?: Params): Query; | ||
export {}; |
@@ -31,2 +31,8 @@ "use strict"; | ||
} | ||
/** | ||
* Creates a new query object. | ||
* | ||
* @see Query | ||
* @param params Initial params. | ||
*/ | ||
function query(params) { | ||
@@ -33,0 +39,0 @@ if (params === void 0) { params = {}; } |
@@ -1,5 +0,2 @@ | ||
export declare type MaybeParams = Record<string, string | undefined>; | ||
export declare type Params = Record<string, string>; | ||
export declare type MaybeParamPair = [string, string | undefined]; | ||
export declare type ParamPair = [string, string]; | ||
declare type Params = Record<string, string>; | ||
/** | ||
@@ -37,2 +34,9 @@ * Defines a query builder. | ||
} | ||
/** | ||
* Creates a new query object. | ||
* | ||
* @see Query | ||
* @param params Initial params. | ||
*/ | ||
export declare function query(params?: Params): Query; | ||
export {}; |
@@ -29,2 +29,8 @@ var __assign = (this && this.__assign) || function () { | ||
} | ||
/** | ||
* Creates a new query object. | ||
* | ||
* @see Query | ||
* @param params Initial params. | ||
*/ | ||
export function query(params) { | ||
@@ -31,0 +37,0 @@ if (params === void 0) { params = {}; } |
@@ -6,3 +6,3 @@ { | ||
"description": "The Query Builder for the delightful rest api utility", | ||
"version": "0.0.4-alpha.10+5085c33", | ||
"version": "0.0.4-alpha.11+c8c02a3", | ||
"license": "MIT", | ||
@@ -27,5 +27,10 @@ "publishConfig": { | ||
"compile:cjs": "rm -rf lib/cjs && tsc --p tsconfig.cjs.json", | ||
"compile:esm": "rm -rf lib/esm && tsc --p tsconfig.esm.json" | ||
"compile:esm": "rm -rf lib/esm && tsc --p tsconfig.esm.json", | ||
"docs:generate": "typedoc --excludeNotExported --plugin typedoc-plugin-markdown --exclude ./src/__tests__ --readme none --mode library --out ./docs ./src/index.ts" | ||
}, | ||
"gitHead": "5085c335fd7bb7bb5921fa6cb0f51443ab269117" | ||
"devDependencies": { | ||
"typedoc": "^0.17.0-3", | ||
"typedoc-plugin-markdown": "^2.2.17" | ||
}, | ||
"gitHead": "c8c02a375e713ccaaa61fbfae0ebebb84ac0c4c2" | ||
} |
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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
9559
8
191
1
62
2