tradestation-client 1.0.12 → 1.0.14

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/dist/cli.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- #!/usr/bin/env npx ts-node
1
+ #!/usr/bin/env node
2
2
  export {};
3
3
  //# sourceMappingURL=cli.d.ts.map
package/dist/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env npx ts-node
1
+ #!/usr/bin/env node
2
2
  import { program } from 'commander';
3
3
  import { authenticate } from './authMiddleware.js';
4
4
  program
package/dist/cli.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cli.js","sourceRoot":"","sources":["../cli.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAElD,OAAO;KACJ,cAAc,CAAC,uBAAuB,CAAC;KACvC,cAAc,CAAC,+BAA+B,CAAC,CAAA;AAElD,OAAO,CAAC,KAAK,EAAE,CAAA;AAEf,MAAM,EAAE,QAAQ,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;AAEjD,OAAO,CAAC,GAAG,CAAC,MAAM,YAAY,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,CAAA"}
1
+ {"version":3,"file":"cli.js","sourceRoot":"","sources":["../cli.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAElD,OAAO;KACJ,cAAc,CAAC,uBAAuB,CAAC;KACvC,cAAc,CAAC,+BAA+B,CAAC,CAAA;AAElD,OAAO,CAAC,KAAK,EAAE,CAAA;AAEf,MAAM,EAAE,QAAQ,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;AAEjD,OAAO,CAAC,GAAG,CAAC,MAAM,YAAY,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "tradestation-client",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "A Node.js client for the TradeStation API with OAuth2 authentication and OpenAPI integration.",
5
5
  "type": "module",
6
6
  "bin": "./dist/cli.js",
7
7
  "scripts": {
8
8
  "test:ts": "tsc --noEmit",
9
9
  "download-openapi": "node ./downloadOpenAPI.ts",
10
- "generate-client": "openapi-typescript ./openapi.json --output client.d.ts"
10
+ "generate-client": "openapi-typescript ./openapi.json --output client.d.ts",
11
+ "build": "npm run download-openapi && npm run generate-client && tsc",
12
+ "prepublishOnly": "npm run build"
11
13
  },
12
14
  "keywords": [],
13
15
  "author": "",