nsekit 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,7 +6,13 @@ Unified broker abstraction for Indian stock markets. Write your trading logic on
6
6
  npm install nsekit
7
7
  ```
8
8
 
9
- [GitHub](https://github.com/ilampirai/nsekit) | [docs/broker-credentials.md](docs/broker-credentials.md) | [docs/adding-a-broker.md](docs/adding-a-broker.md)
9
+ [AI-adding-a-broker.md](docs/AI-adding-a-broker.md) | [adding-a-broker.md](docs/adding-a-broker.md) | [broker-credentials.md](docs/broker-credentials.md)
10
+
11
+ | Document | Description |
12
+ |----------|-------------|
13
+ | [AI-adding-a-broker.md](docs/AI-adding-a-broker.md) | Self-contained prompt for any AI assistant to implement a new broker adapter end to end — from reading API docs to running tests to submitting a PR. |
14
+ | [adding-a-broker.md](docs/adding-a-broker.md) | Step-by-step manual guide covering file structure, implementation order, common pitfalls, the 13-checkpoint integration test, and pull request checklist. |
15
+ | [broker-credentials.md](docs/broker-credentials.md) | Per-broker credential reference — which fields are required, where to get them, auth flow details, and security notes. |
10
16
 
11
17
  ---
12
18
 
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const VERSION = "0.1.1";
1
+ export declare const VERSION = "0.1.2";
2
2
  export * from './types/index';
3
3
  export * from './errors/index';
4
4
  export type { IBroker } from './interfaces/broker.interface';
package/dist/index.js CHANGED
@@ -23764,7 +23764,7 @@ class PaperBroker {
23764
23764
  }
23765
23765
  }
23766
23766
  // src/index.ts
23767
- var VERSION = "0.1.1";
23767
+ var VERSION = "0.1.2";
23768
23768
  function createBroker(brokerId) {
23769
23769
  switch (brokerId) {
23770
23770
  case "zerodha":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nsekit",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Unified broker abstraction for Indian stock markets - CCXT-like interface for NSE/BSE brokers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",