@openmeter/client 1.0.0-beta.228

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 (122) hide show
  1. package/README.md +318 -0
  2. package/dist/core.d.ts +10 -0
  3. package/dist/core.js +38 -0
  4. package/dist/funcs/addons.d.ts +11 -0
  5. package/dist/funcs/addons.js +49 -0
  6. package/dist/funcs/apps.d.ts +6 -0
  7. package/dist/funcs/apps.js +18 -0
  8. package/dist/funcs/billing.d.ts +9 -0
  9. package/dist/funcs/billing.js +35 -0
  10. package/dist/funcs/currencies.d.ts +8 -0
  11. package/dist/funcs/currencies.js +35 -0
  12. package/dist/funcs/customers.d.ts +21 -0
  13. package/dist/funcs/customers.js +127 -0
  14. package/dist/funcs/defaults.d.ts +6 -0
  15. package/dist/funcs/defaults.js +13 -0
  16. package/dist/funcs/entitlements.d.ts +5 -0
  17. package/dist/funcs/entitlements.js +10 -0
  18. package/dist/funcs/events.d.ts +6 -0
  19. package/dist/funcs/events.js +19 -0
  20. package/dist/funcs/features.d.ts +10 -0
  21. package/dist/funcs/features.js +43 -0
  22. package/dist/funcs/governance.d.ts +5 -0
  23. package/dist/funcs/governance.js +12 -0
  24. package/dist/funcs/index.d.ts +17 -0
  25. package/dist/funcs/index.js +17 -0
  26. package/dist/funcs/llmCost.d.ts +9 -0
  27. package/dist/funcs/llmCost.js +40 -0
  28. package/dist/funcs/meters.d.ts +10 -0
  29. package/dist/funcs/meters.js +43 -0
  30. package/dist/funcs/planAddons.d.ts +9 -0
  31. package/dist/funcs/planAddons.js +37 -0
  32. package/dist/funcs/plans.d.ts +11 -0
  33. package/dist/funcs/plans.js +49 -0
  34. package/dist/funcs/subscriptions.d.ts +12 -0
  35. package/dist/funcs/subscriptions.js +59 -0
  36. package/dist/funcs/tax.d.ts +9 -0
  37. package/dist/funcs/tax.js +36 -0
  38. package/dist/index.d.ts +42 -0
  39. package/dist/index.js +23 -0
  40. package/dist/lib/config.d.ts +14 -0
  41. package/dist/lib/config.js +13 -0
  42. package/dist/lib/encodings.d.ts +8 -0
  43. package/dist/lib/encodings.js +56 -0
  44. package/dist/lib/request.d.ts +3 -0
  45. package/dist/lib/request.js +11 -0
  46. package/dist/lib/to-error.d.ts +2 -0
  47. package/dist/lib/to-error.js +16 -0
  48. package/dist/lib/types.d.ts +15 -0
  49. package/dist/lib/types.js +13 -0
  50. package/dist/models/errors.d.ts +16 -0
  51. package/dist/models/errors.js +28 -0
  52. package/dist/models/operations/addons.d.ts +38 -0
  53. package/dist/models/operations/addons.js +2 -0
  54. package/dist/models/operations/apps.d.ts +17 -0
  55. package/dist/models/operations/apps.js +2 -0
  56. package/dist/models/operations/billing.d.ts +26 -0
  57. package/dist/models/operations/billing.js +2 -0
  58. package/dist/models/operations/currencies.d.ts +35 -0
  59. package/dist/models/operations/currencies.js +2 -0
  60. package/dist/models/operations/customers.d.ts +117 -0
  61. package/dist/models/operations/customers.js +2 -0
  62. package/dist/models/operations/defaults.d.ts +6 -0
  63. package/dist/models/operations/defaults.js +2 -0
  64. package/dist/models/operations/entitlements.d.ts +6 -0
  65. package/dist/models/operations/entitlements.js +2 -0
  66. package/dist/models/operations/events.d.ts +13 -0
  67. package/dist/models/operations/events.js +2 -0
  68. package/dist/models/operations/features.d.ts +35 -0
  69. package/dist/models/operations/features.js +2 -0
  70. package/dist/models/operations/governance.d.ts +9 -0
  71. package/dist/models/operations/governance.js +2 -0
  72. package/dist/models/operations/llmCost.d.ts +35 -0
  73. package/dist/models/operations/llmCost.js +2 -0
  74. package/dist/models/operations/meters.d.ts +35 -0
  75. package/dist/models/operations/meters.js +2 -0
  76. package/dist/models/operations/planAddons.d.ts +34 -0
  77. package/dist/models/operations/planAddons.js +2 -0
  78. package/dist/models/operations/plans.d.ts +38 -0
  79. package/dist/models/operations/plans.js +2 -0
  80. package/dist/models/operations/subscriptions.d.ts +52 -0
  81. package/dist/models/operations/subscriptions.js +2 -0
  82. package/dist/models/operations/tax.d.ts +28 -0
  83. package/dist/models/operations/tax.js +2 -0
  84. package/dist/models/schemas.d.ts +11372 -0
  85. package/dist/models/schemas.js +4026 -0
  86. package/dist/models/types.d.ts +3385 -0
  87. package/dist/models/types.js +2 -0
  88. package/dist/sdk/addons.d.ts +15 -0
  89. package/dist/sdk/addons.js +30 -0
  90. package/dist/sdk/apps.d.ts +10 -0
  91. package/dist/sdk/apps.js +15 -0
  92. package/dist/sdk/billing.d.ts +13 -0
  93. package/dist/sdk/billing.js +24 -0
  94. package/dist/sdk/currencies.d.ts +12 -0
  95. package/dist/sdk/currencies.js +21 -0
  96. package/dist/sdk/customers.d.ts +67 -0
  97. package/dist/sdk/customers.js +130 -0
  98. package/dist/sdk/defaults.d.ts +10 -0
  99. package/dist/sdk/defaults.js +15 -0
  100. package/dist/sdk/entitlements.d.ts +9 -0
  101. package/dist/sdk/entitlements.js +12 -0
  102. package/dist/sdk/events.d.ts +10 -0
  103. package/dist/sdk/events.js +15 -0
  104. package/dist/sdk/features.d.ts +14 -0
  105. package/dist/sdk/features.js +27 -0
  106. package/dist/sdk/governance.d.ts +9 -0
  107. package/dist/sdk/governance.js +12 -0
  108. package/dist/sdk/llmCost.d.ts +13 -0
  109. package/dist/sdk/llmCost.js +24 -0
  110. package/dist/sdk/meters.d.ts +14 -0
  111. package/dist/sdk/meters.js +27 -0
  112. package/dist/sdk/planAddons.d.ts +13 -0
  113. package/dist/sdk/planAddons.js +24 -0
  114. package/dist/sdk/plans.d.ts +15 -0
  115. package/dist/sdk/plans.js +30 -0
  116. package/dist/sdk/sdk.d.ts +52 -0
  117. package/dist/sdk/sdk.js +84 -0
  118. package/dist/sdk/subscriptions.d.ts +16 -0
  119. package/dist/sdk/subscriptions.js +33 -0
  120. package/dist/sdk/tax.d.ts +13 -0
  121. package/dist/sdk/tax.js +24 -0
  122. package/package.json +33 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.