@discomedia/utils 1.0.3

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.
Files changed (70) hide show
  1. package/README.md +25 -0
  2. package/dist/index-frontend.cjs +7798 -0
  3. package/dist/index-frontend.cjs.map +1 -0
  4. package/dist/index-frontend.mjs +7792 -0
  5. package/dist/index-frontend.mjs.map +1 -0
  6. package/dist/index.cjs +17747 -0
  7. package/dist/index.cjs.map +1 -0
  8. package/dist/index.mjs +17741 -0
  9. package/dist/index.mjs.map +1 -0
  10. package/dist/test.js +6783 -0
  11. package/dist/test.js.map +1 -0
  12. package/dist/types/alpaca-market-data-api.d.ts +384 -0
  13. package/dist/types/alpaca-market-data-api.d.ts.map +1 -0
  14. package/dist/types/alpaca-trading-api.d.ts +318 -0
  15. package/dist/types/alpaca-trading-api.d.ts.map +1 -0
  16. package/dist/types/format-tools.d.ts +46 -0
  17. package/dist/types/format-tools.d.ts.map +1 -0
  18. package/dist/types/index-frontend.d.ts +18 -0
  19. package/dist/types/index-frontend.d.ts.map +1 -0
  20. package/dist/types/index.d.ts +150 -0
  21. package/dist/types/index.d.ts.map +1 -0
  22. package/dist/types/json-tools.d.ts +33 -0
  23. package/dist/types/json-tools.d.ts.map +1 -0
  24. package/dist/types/llm-config.d.ts +36 -0
  25. package/dist/types/llm-config.d.ts.map +1 -0
  26. package/dist/types/llm-deepseek.d.ts +12 -0
  27. package/dist/types/llm-deepseek.d.ts.map +1 -0
  28. package/dist/types/llm-images.d.ts +49 -0
  29. package/dist/types/llm-images.d.ts.map +1 -0
  30. package/dist/types/llm-openai.d.ts +64 -0
  31. package/dist/types/llm-openai.d.ts.map +1 -0
  32. package/dist/types/llm-utils.d.ts +16 -0
  33. package/dist/types/llm-utils.d.ts.map +1 -0
  34. package/dist/types/logging.d.ts +12 -0
  35. package/dist/types/logging.d.ts.map +1 -0
  36. package/dist/types/market-hours.d.ts +24 -0
  37. package/dist/types/market-hours.d.ts.map +1 -0
  38. package/dist/types/market-time.d.ts +184 -0
  39. package/dist/types/market-time.d.ts.map +1 -0
  40. package/dist/types/misc-utils.d.ts +49 -0
  41. package/dist/types/misc-utils.d.ts.map +1 -0
  42. package/dist/types/polygon-indices.d.ts +85 -0
  43. package/dist/types/polygon-indices.d.ts.map +1 -0
  44. package/dist/types/polygon.d.ts +126 -0
  45. package/dist/types/polygon.d.ts.map +1 -0
  46. package/dist/types/technical-analysis.d.ts +90 -0
  47. package/dist/types/technical-analysis.d.ts.map +1 -0
  48. package/dist/types/test.d.ts +2 -0
  49. package/dist/types/test.d.ts.map +1 -0
  50. package/dist/types/testing/frontend-test.d.ts +2 -0
  51. package/dist/types/testing/frontend-test.d.ts.map +1 -0
  52. package/dist/types/time-utils.d.ts +17 -0
  53. package/dist/types/time-utils.d.ts.map +1 -0
  54. package/dist/types/types/alpaca-types.d.ts +962 -0
  55. package/dist/types/types/alpaca-types.d.ts.map +1 -0
  56. package/dist/types/types/index.d.ts +7 -0
  57. package/dist/types/types/index.d.ts.map +1 -0
  58. package/dist/types/types/llm-types.d.ts +82 -0
  59. package/dist/types/types/llm-types.d.ts.map +1 -0
  60. package/dist/types/types/logging-types.d.ts +10 -0
  61. package/dist/types/types/logging-types.d.ts.map +1 -0
  62. package/dist/types/types/market-time-types.d.ts +59 -0
  63. package/dist/types/types/market-time-types.d.ts.map +1 -0
  64. package/dist/types/types/polygon-indices-types.d.ts +190 -0
  65. package/dist/types/types/polygon-indices-types.d.ts.map +1 -0
  66. package/dist/types/types/polygon-types.d.ts +204 -0
  67. package/dist/types/types/polygon-types.d.ts.map +1 -0
  68. package/dist/types/types/ta-types.d.ts +89 -0
  69. package/dist/types/types/ta-types.d.ts.map +1 -0
  70. package/package.json +50 -0
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # Disco media Utils
2
+
3
+ Last updated: 08 Jul 2025
4
+
5
+ A comprehensive utility library for Disco Media apps.
6
+
7
+ NPM repo: https://www.npmjs.com/package/@discomedia/utils
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ npm install @discomedia/utils
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ Import the functions from the library and use them.
18
+
19
+ ## Contributing to the Repository
20
+
21
+ Contributions are welcome! Please submit a pull request or open an issue for any enhancements or bug fixes.
22
+
23
+ ## Author
24
+
25
+ This project is a product of [Disco Media](https://discomedia.co).