Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@apitizer/query

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@apitizer/query - npm Package Compare versions

Comparing version 0.0.4-alpha.10 to 0.0.4-alpha.11

README.md

12

lib/cjs/index.d.ts

@@ -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"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc