@paid-ai/paid-node 0.5.0-alpha2 → 0.5.0

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 (269) hide show
  1. package/README.md +118 -36
  2. package/dist/cjs/Client.d.ts +35 -3
  3. package/dist/cjs/Client.js +57 -19
  4. package/dist/cjs/api/errors/InternalServerError.d.ts +9 -0
  5. package/dist/cjs/api/errors/InternalServerError.js +52 -0
  6. package/dist/cjs/api/errors/index.d.ts +1 -0
  7. package/dist/cjs/api/errors/index.js +1 -0
  8. package/dist/cjs/api/index.d.ts +1 -1
  9. package/dist/cjs/api/index.js +1 -1
  10. package/dist/cjs/api/resources/agents/client/Client.d.ts +16 -0
  11. package/dist/cjs/api/resources/agents/client/Client.js +16 -0
  12. package/dist/cjs/api/resources/customers/client/Client.d.ts +38 -0
  13. package/dist/cjs/api/resources/customers/client/Client.js +164 -0
  14. package/dist/cjs/api/resources/customers/client/requests/CustomerCreate.d.ts +2 -0
  15. package/dist/cjs/api/resources/customers/client/requests/CustomersGetCostsByExternalIdRequest.d.ts +30 -0
  16. package/dist/cjs/api/resources/customers/client/requests/CustomersGetUsageByExternalIdRequest.d.ts +30 -0
  17. package/dist/cjs/api/resources/customers/client/requests/CustomersGetUsageByExternalIdRequest.js +5 -0
  18. package/dist/cjs/api/resources/customers/client/requests/index.d.ts +2 -0
  19. package/dist/cjs/api/resources/index.d.ts +8 -1
  20. package/dist/cjs/api/resources/index.js +9 -2
  21. package/dist/cjs/api/resources/orders/client/requests/OrderCreate.d.ts +2 -0
  22. package/dist/cjs/api/resources/orders/resources/lines/client/Client.d.ts +0 -2
  23. package/dist/cjs/api/resources/orders/resources/lines/client/Client.js +0 -2
  24. package/dist/cjs/api/resources/orders/resources/lines/client/requests/LinesUpdateRequest.d.ts +0 -2
  25. package/dist/cjs/api/resources/plans/client/Client.d.ts +75 -0
  26. package/dist/cjs/api/resources/plans/client/Client.js +272 -0
  27. package/dist/cjs/api/resources/plans/client/index.d.ts +1 -0
  28. package/dist/cjs/api/resources/plans/client/index.js +17 -0
  29. package/dist/cjs/api/resources/plans/client/requests/PlansGetUsageRequest.d.ts +35 -0
  30. package/dist/cjs/api/resources/plans/client/requests/PlansGetUsageRequest.js +5 -0
  31. package/dist/cjs/api/resources/plans/client/requests/index.d.ts +1 -0
  32. package/dist/cjs/api/resources/plans/client/requests/index.js +2 -0
  33. package/dist/cjs/api/resources/plans/index.d.ts +1 -0
  34. package/dist/cjs/api/resources/plans/index.js +17 -0
  35. package/dist/cjs/api/resources/products/client/Client.d.ts +109 -0
  36. package/dist/cjs/api/resources/products/client/Client.js +470 -0
  37. package/dist/cjs/api/resources/products/client/index.d.ts +1 -0
  38. package/dist/cjs/api/resources/products/client/index.js +17 -0
  39. package/dist/cjs/api/resources/products/client/requests/ProductCreate.d.ts +29 -0
  40. package/dist/cjs/api/resources/products/client/requests/ProductCreate.js +14 -0
  41. package/dist/cjs/api/resources/products/client/requests/index.d.ts +1 -0
  42. package/dist/cjs/api/resources/products/client/requests/index.js +2 -0
  43. package/dist/cjs/api/resources/products/index.d.ts +1 -0
  44. package/dist/cjs/api/resources/products/index.js +17 -0
  45. package/dist/cjs/api/resources/traces/client/Client.d.ts +52 -0
  46. package/dist/cjs/api/resources/traces/client/Client.js +166 -0
  47. package/dist/cjs/api/resources/traces/client/index.d.ts +1 -0
  48. package/dist/cjs/api/resources/traces/client/index.js +17 -0
  49. package/dist/cjs/api/resources/traces/client/requests/GetTracesRequest.d.ts +50 -0
  50. package/dist/cjs/api/resources/traces/client/requests/GetTracesRequest.js +5 -0
  51. package/dist/cjs/api/resources/traces/client/requests/index.d.ts +1 -0
  52. package/dist/cjs/api/resources/traces/client/requests/index.js +2 -0
  53. package/dist/cjs/api/resources/traces/index.d.ts +1 -0
  54. package/dist/cjs/api/resources/traces/index.js +17 -0
  55. package/dist/cjs/api/resources/usage/client/Client.d.ts +47 -0
  56. package/dist/cjs/api/resources/usage/client/Client.js +146 -0
  57. package/dist/cjs/api/resources/usage/client/requests/UsageCheckUsageRequest.d.ts +28 -0
  58. package/dist/cjs/api/resources/usage/client/requests/UsageCheckUsageRequest.js +5 -0
  59. package/dist/cjs/api/resources/usage/client/requests/UsageRecordBulkV2Request.d.ts +29 -0
  60. package/dist/cjs/api/resources/usage/client/requests/UsageRecordBulkV2Request.js +5 -0
  61. package/dist/cjs/api/resources/usage/client/requests/index.d.ts +2 -0
  62. package/dist/cjs/api/resources/usage/index.d.ts +1 -0
  63. package/dist/cjs/api/resources/usage/index.js +1 -0
  64. package/dist/cjs/api/resources/usage/types/UsageCheckUsageResponse.d.ts +17 -0
  65. package/dist/cjs/api/resources/usage/types/UsageCheckUsageResponse.js +5 -0
  66. package/dist/cjs/api/resources/usage/types/index.d.ts +1 -0
  67. package/dist/cjs/api/resources/usage/types/index.js +17 -0
  68. package/dist/cjs/api/types/CostAmount.d.ts +12 -0
  69. package/dist/cjs/api/types/CostAmount.js +5 -0
  70. package/dist/cjs/api/types/CostTrace.d.ts +22 -0
  71. package/dist/cjs/api/types/CostTrace.js +5 -0
  72. package/dist/cjs/api/types/CostTracesResponse.d.ts +11 -0
  73. package/dist/cjs/api/types/CostTracesResponse.js +5 -0
  74. package/dist/cjs/api/types/Customer.d.ts +2 -0
  75. package/dist/cjs/api/types/CustomerUpdate.d.ts +2 -0
  76. package/dist/cjs/api/types/OrderLineAttributeCreateOne.d.ts +4 -0
  77. package/dist/cjs/api/types/OrderLineAttributeCreateOne.js +5 -0
  78. package/dist/cjs/api/types/OrderLineCreate.d.ts +10 -4
  79. package/dist/cjs/api/types/PaginationMeta.d.ts +28 -0
  80. package/dist/cjs/api/types/PaginationMeta.js +5 -0
  81. package/dist/cjs/api/types/Plan.d.ts +58 -0
  82. package/dist/cjs/api/types/Plan.js +5 -0
  83. package/dist/cjs/api/types/PlanGroup.d.ts +23 -0
  84. package/dist/cjs/api/types/PlanGroup.js +5 -0
  85. package/dist/cjs/api/types/Product.d.ts +36 -0
  86. package/dist/cjs/api/types/Product.js +14 -0
  87. package/dist/cjs/api/types/ProductUpdate.d.ts +23 -0
  88. package/dist/cjs/api/types/ProductUpdate.js +14 -0
  89. package/dist/cjs/api/types/Signal.d.ts +7 -2
  90. package/dist/cjs/api/types/SignalV2.d.ts +22 -0
  91. package/dist/cjs/api/types/SignalV2.js +5 -0
  92. package/dist/cjs/api/types/Trace.d.ts +26 -0
  93. package/dist/cjs/api/types/Trace.js +5 -0
  94. package/dist/cjs/api/types/TracesResponse.d.ts +11 -0
  95. package/dist/cjs/api/types/TracesResponse.js +5 -0
  96. package/dist/cjs/api/types/UsagePaginationMeta.d.ts +16 -0
  97. package/dist/cjs/api/types/UsagePaginationMeta.js +5 -0
  98. package/dist/cjs/api/types/UsageSummariesResponse.d.ts +11 -0
  99. package/dist/cjs/api/types/UsageSummariesResponse.js +5 -0
  100. package/dist/cjs/api/types/UsageSummary.d.ts +58 -0
  101. package/dist/cjs/api/types/UsageSummary.js +5 -0
  102. package/dist/cjs/api/types/index.d.ts +15 -1
  103. package/dist/cjs/api/types/index.js +15 -1
  104. package/dist/cjs/index.d.ts +1 -0
  105. package/dist/cjs/index.js +4 -0
  106. package/dist/cjs/integrations/adapters/expressjs/base-adapter.d.ts +17 -0
  107. package/dist/cjs/integrations/adapters/expressjs/base-adapter.js +71 -0
  108. package/dist/cjs/integrations/adapters/expressjs/index.d.ts +6 -0
  109. package/dist/cjs/integrations/adapters/expressjs/index.js +20 -0
  110. package/dist/cjs/integrations/adapters/expressjs/routes.d.ts +162 -0
  111. package/dist/cjs/integrations/adapters/expressjs/routes.js +269 -0
  112. package/dist/cjs/integrations/adapters/nestjs/index.d.ts +7 -0
  113. package/dist/cjs/integrations/adapters/nestjs/index.js +23 -0
  114. package/dist/cjs/tracing/autoInstrumentation.d.ts +10 -0
  115. package/dist/cjs/tracing/autoInstrumentation.js +57 -0
  116. package/dist/cjs/tracing/index.d.ts +4 -0
  117. package/dist/cjs/tracing/index.js +12 -0
  118. package/dist/cjs/tracing/signal.d.ts +18 -1
  119. package/dist/cjs/tracing/signal.js +29 -13
  120. package/dist/cjs/tracing/spanProcessor.d.ts +10 -0
  121. package/dist/cjs/tracing/spanProcessor.js +82 -0
  122. package/dist/cjs/tracing/tracing.d.ts +12 -6
  123. package/dist/cjs/tracing/tracing.js +65 -58
  124. package/dist/cjs/tracing/tracingContext.d.ts +8 -0
  125. package/dist/cjs/tracing/tracingContext.js +28 -0
  126. package/dist/cjs/tracing/wrappers/anthropicWrapper.js +11 -7
  127. package/dist/cjs/tracing/wrappers/langchainCallback.js +11 -7
  128. package/dist/cjs/tracing/wrappers/mistralWrapper.js +11 -7
  129. package/dist/cjs/tracing/wrappers/openAiWrapper.js +24 -23
  130. package/dist/cjs/tracing/wrappers/vercelAIWrapper.js +68 -43
  131. package/dist/cjs/version.d.ts +1 -1
  132. package/dist/cjs/version.js +1 -1
  133. package/dist/esm/Client.d.mts +35 -3
  134. package/dist/esm/Client.mjs +54 -16
  135. package/dist/esm/api/errors/InternalServerError.d.mts +9 -0
  136. package/dist/esm/api/errors/InternalServerError.mjs +15 -0
  137. package/dist/esm/api/errors/index.d.mts +1 -0
  138. package/dist/esm/api/errors/index.mjs +1 -0
  139. package/dist/esm/api/index.d.mts +1 -1
  140. package/dist/esm/api/index.mjs +1 -1
  141. package/dist/esm/api/resources/agents/client/Client.d.mts +16 -0
  142. package/dist/esm/api/resources/agents/client/Client.mjs +16 -0
  143. package/dist/esm/api/resources/customers/client/Client.d.mts +38 -0
  144. package/dist/esm/api/resources/customers/client/Client.mjs +164 -0
  145. package/dist/esm/api/resources/customers/client/requests/CustomerCreate.d.mts +2 -0
  146. package/dist/esm/api/resources/customers/client/requests/CustomersGetCostsByExternalIdRequest.d.mts +30 -0
  147. package/dist/esm/api/resources/customers/client/requests/CustomersGetUsageByExternalIdRequest.d.mts +30 -0
  148. package/dist/esm/api/resources/customers/client/requests/CustomersGetUsageByExternalIdRequest.mjs +4 -0
  149. package/dist/esm/api/resources/customers/client/requests/index.d.mts +2 -0
  150. package/dist/esm/api/resources/index.d.mts +8 -1
  151. package/dist/esm/api/resources/index.mjs +8 -1
  152. package/dist/esm/api/resources/orders/client/requests/OrderCreate.d.mts +2 -0
  153. package/dist/esm/api/resources/orders/resources/lines/client/Client.d.mts +0 -2
  154. package/dist/esm/api/resources/orders/resources/lines/client/Client.mjs +0 -2
  155. package/dist/esm/api/resources/orders/resources/lines/client/requests/LinesUpdateRequest.d.mts +0 -2
  156. package/dist/esm/api/resources/plans/client/Client.d.mts +75 -0
  157. package/dist/esm/api/resources/plans/client/Client.mjs +232 -0
  158. package/dist/esm/api/resources/plans/client/index.d.mts +1 -0
  159. package/dist/esm/api/resources/plans/client/index.mjs +1 -0
  160. package/dist/esm/api/resources/plans/client/requests/PlansGetUsageRequest.d.mts +35 -0
  161. package/dist/esm/api/resources/plans/client/requests/PlansGetUsageRequest.mjs +4 -0
  162. package/dist/esm/api/resources/plans/client/requests/index.d.mts +1 -0
  163. package/dist/esm/api/resources/plans/client/requests/index.mjs +1 -0
  164. package/dist/esm/api/resources/plans/index.d.mts +1 -0
  165. package/dist/esm/api/resources/plans/index.mjs +1 -0
  166. package/dist/esm/api/resources/products/client/Client.d.mts +109 -0
  167. package/dist/esm/api/resources/products/client/Client.mjs +430 -0
  168. package/dist/esm/api/resources/products/client/index.d.mts +1 -0
  169. package/dist/esm/api/resources/products/client/index.mjs +1 -0
  170. package/dist/esm/api/resources/products/client/requests/ProductCreate.d.mts +29 -0
  171. package/dist/esm/api/resources/products/client/requests/ProductCreate.mjs +11 -0
  172. package/dist/esm/api/resources/products/client/requests/index.d.mts +1 -0
  173. package/dist/esm/api/resources/products/client/requests/index.mjs +1 -0
  174. package/dist/esm/api/resources/products/index.d.mts +1 -0
  175. package/dist/esm/api/resources/products/index.mjs +1 -0
  176. package/dist/esm/api/resources/traces/client/Client.d.mts +52 -0
  177. package/dist/esm/api/resources/traces/client/Client.mjs +126 -0
  178. package/dist/esm/api/resources/traces/client/index.d.mts +1 -0
  179. package/dist/esm/api/resources/traces/client/index.mjs +1 -0
  180. package/dist/esm/api/resources/traces/client/requests/GetTracesRequest.d.mts +50 -0
  181. package/dist/esm/api/resources/traces/client/requests/GetTracesRequest.mjs +4 -0
  182. package/dist/esm/api/resources/traces/client/requests/index.d.mts +1 -0
  183. package/dist/esm/api/resources/traces/client/requests/index.mjs +1 -0
  184. package/dist/esm/api/resources/traces/index.d.mts +1 -0
  185. package/dist/esm/api/resources/traces/index.mjs +1 -0
  186. package/dist/esm/api/resources/usage/client/Client.d.mts +47 -0
  187. package/dist/esm/api/resources/usage/client/Client.mjs +146 -0
  188. package/dist/esm/api/resources/usage/client/requests/UsageCheckUsageRequest.d.mts +28 -0
  189. package/dist/esm/api/resources/usage/client/requests/UsageCheckUsageRequest.mjs +4 -0
  190. package/dist/esm/api/resources/usage/client/requests/UsageRecordBulkV2Request.d.mts +29 -0
  191. package/dist/esm/api/resources/usage/client/requests/UsageRecordBulkV2Request.mjs +4 -0
  192. package/dist/esm/api/resources/usage/client/requests/index.d.mts +2 -0
  193. package/dist/esm/api/resources/usage/index.d.mts +1 -0
  194. package/dist/esm/api/resources/usage/index.mjs +1 -0
  195. package/dist/esm/api/resources/usage/types/UsageCheckUsageResponse.d.mts +17 -0
  196. package/dist/esm/api/resources/usage/types/UsageCheckUsageResponse.mjs +4 -0
  197. package/dist/esm/api/resources/usage/types/index.d.mts +1 -0
  198. package/dist/esm/api/resources/usage/types/index.mjs +1 -0
  199. package/dist/esm/api/types/CostAmount.d.mts +12 -0
  200. package/dist/esm/api/types/CostAmount.mjs +4 -0
  201. package/dist/esm/api/types/CostTrace.d.mts +22 -0
  202. package/dist/esm/api/types/CostTrace.mjs +4 -0
  203. package/dist/esm/api/types/CostTracesResponse.d.mts +11 -0
  204. package/dist/esm/api/types/CostTracesResponse.mjs +4 -0
  205. package/dist/esm/api/types/Customer.d.mts +2 -0
  206. package/dist/esm/api/types/CustomerUpdate.d.mts +2 -0
  207. package/dist/esm/api/types/OrderLineAttributeCreateOne.d.mts +4 -0
  208. package/dist/esm/api/types/OrderLineAttributeCreateOne.mjs +4 -0
  209. package/dist/esm/api/types/OrderLineCreate.d.mts +10 -4
  210. package/dist/esm/api/types/PaginationMeta.d.mts +28 -0
  211. package/dist/esm/api/types/PaginationMeta.mjs +4 -0
  212. package/dist/esm/api/types/Plan.d.mts +58 -0
  213. package/dist/esm/api/types/Plan.mjs +4 -0
  214. package/dist/esm/api/types/PlanGroup.d.mts +23 -0
  215. package/dist/esm/api/types/PlanGroup.mjs +4 -0
  216. package/dist/esm/api/types/Product.d.mts +36 -0
  217. package/dist/esm/api/types/Product.mjs +11 -0
  218. package/dist/esm/api/types/ProductUpdate.d.mts +23 -0
  219. package/dist/esm/api/types/ProductUpdate.mjs +11 -0
  220. package/dist/esm/api/types/Signal.d.mts +7 -2
  221. package/dist/esm/api/types/SignalV2.d.mts +22 -0
  222. package/dist/esm/api/types/SignalV2.mjs +4 -0
  223. package/dist/esm/api/types/Trace.d.mts +26 -0
  224. package/dist/esm/api/types/Trace.mjs +4 -0
  225. package/dist/esm/api/types/TracesResponse.d.mts +11 -0
  226. package/dist/esm/api/types/TracesResponse.mjs +4 -0
  227. package/dist/esm/api/types/UsagePaginationMeta.d.mts +16 -0
  228. package/dist/esm/api/types/UsagePaginationMeta.mjs +4 -0
  229. package/dist/esm/api/types/UsageSummariesResponse.d.mts +11 -0
  230. package/dist/esm/api/types/UsageSummariesResponse.mjs +4 -0
  231. package/dist/esm/api/types/UsageSummary.d.mts +58 -0
  232. package/dist/esm/api/types/UsageSummary.mjs +4 -0
  233. package/dist/esm/api/types/index.d.mts +15 -1
  234. package/dist/esm/api/types/index.mjs +15 -1
  235. package/dist/esm/index.d.mts +1 -0
  236. package/dist/esm/index.mjs +1 -0
  237. package/dist/esm/integrations/adapters/expressjs/base-adapter.d.mts +17 -0
  238. package/dist/esm/integrations/adapters/expressjs/base-adapter.mjs +67 -0
  239. package/dist/esm/integrations/adapters/expressjs/index.d.mts +6 -0
  240. package/dist/esm/integrations/adapters/expressjs/index.mjs +6 -0
  241. package/dist/esm/integrations/adapters/expressjs/routes.d.mts +162 -0
  242. package/dist/esm/integrations/adapters/expressjs/routes.mjs +258 -0
  243. package/dist/esm/integrations/adapters/nestjs/index.d.mts +7 -0
  244. package/dist/esm/integrations/adapters/nestjs/index.mjs +7 -0
  245. package/dist/esm/tracing/autoInstrumentation.d.mts +10 -0
  246. package/dist/esm/tracing/autoInstrumentation.mjs +54 -0
  247. package/dist/esm/tracing/index.d.mts +4 -0
  248. package/dist/esm/tracing/index.mjs +4 -0
  249. package/dist/esm/tracing/signal.d.mts +18 -1
  250. package/dist/esm/tracing/signal.mjs +28 -12
  251. package/dist/esm/tracing/spanProcessor.d.mts +10 -0
  252. package/dist/esm/tracing/spanProcessor.mjs +78 -0
  253. package/dist/esm/tracing/tracing.d.mts +12 -6
  254. package/dist/esm/tracing/tracing.mjs +59 -52
  255. package/dist/esm/tracing/tracingContext.d.mts +8 -0
  256. package/dist/esm/tracing/tracingContext.mjs +23 -0
  257. package/dist/esm/tracing/wrappers/anthropicWrapper.mjs +11 -7
  258. package/dist/esm/tracing/wrappers/langchainCallback.mjs +11 -7
  259. package/dist/esm/tracing/wrappers/mistralWrapper.mjs +11 -7
  260. package/dist/esm/tracing/wrappers/openAiWrapper.mjs +24 -23
  261. package/dist/esm/tracing/wrappers/vercelAIWrapper.mjs +68 -43
  262. package/dist/esm/version.d.mts +1 -1
  263. package/dist/esm/version.mjs +1 -1
  264. package/package.json +41 -4
  265. package/reference.md +1147 -153
  266. package/dist/cjs/api/types/OrderLineAttributeCreate.d.ts +0 -12
  267. package/dist/esm/api/types/OrderLineAttributeCreate.d.mts +0 -12
  268. /package/dist/cjs/api/{types/OrderLineAttributeCreate.js → resources/customers/client/requests/CustomersGetCostsByExternalIdRequest.js} +0 -0
  269. /package/dist/esm/api/{types/OrderLineAttributeCreate.mjs → resources/customers/client/requests/CustomersGetCostsByExternalIdRequest.mjs} +0 -0
@@ -0,0 +1,272 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
39
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
40
+ return new (P || (P = Promise))(function (resolve, reject) {
41
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
42
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
43
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
44
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
45
+ });
46
+ };
47
+ var __importDefault = (this && this.__importDefault) || function (mod) {
48
+ return (mod && mod.__esModule) ? mod : { "default": mod };
49
+ };
50
+ Object.defineProperty(exports, "__esModule", { value: true });
51
+ exports.Plans = void 0;
52
+ const environments = __importStar(require("../../../../environments.js"));
53
+ const core = __importStar(require("../../../../core/index.js"));
54
+ const Paid = __importStar(require("../../../index.js"));
55
+ const headers_js_1 = require("../../../../core/headers.js");
56
+ const url_join_1 = __importDefault(require("url-join"));
57
+ const errors = __importStar(require("../../../../errors/index.js"));
58
+ class Plans {
59
+ constructor(_options = {}) {
60
+ this._options = _options;
61
+ }
62
+ /**
63
+ * @param {string} planId - The ID of the plan
64
+ * @param {Plans.RequestOptions} requestOptions - Request-specific configuration.
65
+ *
66
+ * @throws {@link Paid.ForbiddenError}
67
+ * @throws {@link Paid.NotFoundError}
68
+ *
69
+ * @example
70
+ * await client.plans.getById("planId")
71
+ */
72
+ getById(planId, requestOptions) {
73
+ return core.HttpResponsePromise.fromPromise(this.__getById(planId, requestOptions));
74
+ }
75
+ __getById(planId, requestOptions) {
76
+ return __awaiter(this, void 0, void 0, function* () {
77
+ var _a, _b, _c;
78
+ const _response = yield core.fetcher({
79
+ url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.PaidEnvironment.Production, `plans/${encodeURIComponent(planId)}`),
80
+ method: "GET",
81
+ headers: (0, headers_js_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)({ Authorization: yield this._getAuthorizationHeader() }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
82
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
83
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
84
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
85
+ });
86
+ if (_response.ok) {
87
+ return { data: _response.body, rawResponse: _response.rawResponse };
88
+ }
89
+ if (_response.error.reason === "status-code") {
90
+ switch (_response.error.statusCode) {
91
+ case 403:
92
+ throw new Paid.ForbiddenError(_response.error.body, _response.rawResponse);
93
+ case 404:
94
+ throw new Paid.NotFoundError(_response.error.body, _response.rawResponse);
95
+ default:
96
+ throw new errors.PaidError({
97
+ statusCode: _response.error.statusCode,
98
+ body: _response.error.body,
99
+ rawResponse: _response.rawResponse,
100
+ });
101
+ }
102
+ }
103
+ switch (_response.error.reason) {
104
+ case "non-json":
105
+ throw new errors.PaidError({
106
+ statusCode: _response.error.statusCode,
107
+ body: _response.error.rawBody,
108
+ rawResponse: _response.rawResponse,
109
+ });
110
+ case "timeout":
111
+ throw new errors.PaidTimeoutError("Timeout exceeded when calling GET /plans/{planId}.");
112
+ case "unknown":
113
+ throw new errors.PaidError({
114
+ message: _response.error.errorMessage,
115
+ rawResponse: _response.rawResponse,
116
+ });
117
+ }
118
+ });
119
+ }
120
+ /**
121
+ * @param {string} planId - The ID of the plan
122
+ * @param {Paid.PlansGetUsageRequest} request
123
+ * @param {Plans.RequestOptions} requestOptions - Request-specific configuration.
124
+ *
125
+ * @throws {@link Paid.BadRequestError}
126
+ * @throws {@link Paid.ForbiddenError}
127
+ * @throws {@link Paid.NotFoundError}
128
+ *
129
+ * @example
130
+ * await client.plans.getUsage("planId", {
131
+ * externalId: "externalId",
132
+ * limit: 1,
133
+ * offset: 1,
134
+ * startTime: "2024-01-15T09:30:00Z",
135
+ * endTime: "2024-01-15T09:30:00Z"
136
+ * })
137
+ */
138
+ getUsage(planId, request, requestOptions) {
139
+ return core.HttpResponsePromise.fromPromise(this.__getUsage(planId, request, requestOptions));
140
+ }
141
+ __getUsage(planId, request, requestOptions) {
142
+ return __awaiter(this, void 0, void 0, function* () {
143
+ var _a, _b, _c;
144
+ const { externalId, limit, offset, startTime, endTime } = request;
145
+ const _queryParams = {};
146
+ _queryParams["externalId"] = externalId;
147
+ if (limit != null) {
148
+ _queryParams["limit"] = limit.toString();
149
+ }
150
+ if (offset != null) {
151
+ _queryParams["offset"] = offset.toString();
152
+ }
153
+ if (startTime != null) {
154
+ _queryParams["startTime"] = startTime;
155
+ }
156
+ if (endTime != null) {
157
+ _queryParams["endTime"] = endTime;
158
+ }
159
+ const _response = yield core.fetcher({
160
+ url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.PaidEnvironment.Production, `plans/${encodeURIComponent(planId)}/usage`),
161
+ method: "GET",
162
+ headers: (0, headers_js_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)({ Authorization: yield this._getAuthorizationHeader() }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
163
+ queryParameters: _queryParams,
164
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
165
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
166
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
167
+ });
168
+ if (_response.ok) {
169
+ return { data: _response.body, rawResponse: _response.rawResponse };
170
+ }
171
+ if (_response.error.reason === "status-code") {
172
+ switch (_response.error.statusCode) {
173
+ case 400:
174
+ throw new Paid.BadRequestError(_response.error.body, _response.rawResponse);
175
+ case 403:
176
+ throw new Paid.ForbiddenError(_response.error.body, _response.rawResponse);
177
+ case 404:
178
+ throw new Paid.NotFoundError(_response.error.body, _response.rawResponse);
179
+ default:
180
+ throw new errors.PaidError({
181
+ statusCode: _response.error.statusCode,
182
+ body: _response.error.body,
183
+ rawResponse: _response.rawResponse,
184
+ });
185
+ }
186
+ }
187
+ switch (_response.error.reason) {
188
+ case "non-json":
189
+ throw new errors.PaidError({
190
+ statusCode: _response.error.statusCode,
191
+ body: _response.error.rawBody,
192
+ rawResponse: _response.rawResponse,
193
+ });
194
+ case "timeout":
195
+ throw new errors.PaidTimeoutError("Timeout exceeded when calling GET /plans/{planId}/usage.");
196
+ case "unknown":
197
+ throw new errors.PaidError({
198
+ message: _response.error.errorMessage,
199
+ rawResponse: _response.rawResponse,
200
+ });
201
+ }
202
+ });
203
+ }
204
+ /**
205
+ * @param {string} planGroupId - The ID of the plan group
206
+ * @param {Plans.RequestOptions} requestOptions - Request-specific configuration.
207
+ *
208
+ * @throws {@link Paid.ForbiddenError}
209
+ * @throws {@link Paid.NotFoundError}
210
+ *
211
+ * @example
212
+ * await client.plans.getGroupById("planGroupId")
213
+ */
214
+ getGroupById(planGroupId, requestOptions) {
215
+ return core.HttpResponsePromise.fromPromise(this.__getGroupById(planGroupId, requestOptions));
216
+ }
217
+ __getGroupById(planGroupId, requestOptions) {
218
+ return __awaiter(this, void 0, void 0, function* () {
219
+ var _a, _b, _c;
220
+ const _response = yield core.fetcher({
221
+ url: (0, url_join_1.default)((_b = (_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.PaidEnvironment.Production, `plans/group/${encodeURIComponent(planGroupId)}`),
222
+ method: "GET",
223
+ headers: (0, headers_js_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)({ Authorization: yield this._getAuthorizationHeader() }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
224
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
225
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
226
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
227
+ });
228
+ if (_response.ok) {
229
+ return { data: _response.body, rawResponse: _response.rawResponse };
230
+ }
231
+ if (_response.error.reason === "status-code") {
232
+ switch (_response.error.statusCode) {
233
+ case 403:
234
+ throw new Paid.ForbiddenError(_response.error.body, _response.rawResponse);
235
+ case 404:
236
+ throw new Paid.NotFoundError(_response.error.body, _response.rawResponse);
237
+ default:
238
+ throw new errors.PaidError({
239
+ statusCode: _response.error.statusCode,
240
+ body: _response.error.body,
241
+ rawResponse: _response.rawResponse,
242
+ });
243
+ }
244
+ }
245
+ switch (_response.error.reason) {
246
+ case "non-json":
247
+ throw new errors.PaidError({
248
+ statusCode: _response.error.statusCode,
249
+ body: _response.error.rawBody,
250
+ rawResponse: _response.rawResponse,
251
+ });
252
+ case "timeout":
253
+ throw new errors.PaidTimeoutError("Timeout exceeded when calling GET /plans/group/{planGroupId}.");
254
+ case "unknown":
255
+ throw new errors.PaidError({
256
+ message: _response.error.errorMessage,
257
+ rawResponse: _response.rawResponse,
258
+ });
259
+ }
260
+ });
261
+ }
262
+ _getAuthorizationHeader() {
263
+ return __awaiter(this, void 0, void 0, function* () {
264
+ const bearer = yield core.Supplier.get(this._options.token);
265
+ if (bearer != null) {
266
+ return `Bearer ${bearer}`;
267
+ }
268
+ return undefined;
269
+ });
270
+ }
271
+ }
272
+ exports.Plans = Plans;
@@ -0,0 +1 @@
1
+ export * from "./requests/index.js";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./requests/index.js"), exports);
@@ -0,0 +1,35 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * @example
6
+ * {
7
+ * externalId: "externalId",
8
+ * limit: 1,
9
+ * offset: 1,
10
+ * startTime: "2024-01-15T09:30:00Z",
11
+ * endTime: "2024-01-15T09:30:00Z"
12
+ * }
13
+ */
14
+ export interface PlansGetUsageRequest {
15
+ /**
16
+ * The external ID of the customer
17
+ */
18
+ externalId: string;
19
+ /**
20
+ * Maximum number of usage summaries to return (1-1000)
21
+ */
22
+ limit?: number;
23
+ /**
24
+ * Number of usage summaries to skip for pagination
25
+ */
26
+ offset?: number;
27
+ /**
28
+ * Filter usage summaries starting from this time (ISO 8601 format). Returns summaries that overlap with the time range.
29
+ */
30
+ startTime?: string;
31
+ /**
32
+ * Filter usage summaries up to this time (ISO 8601 format). Returns summaries that overlap with the time range.
33
+ */
34
+ endTime?: string;
35
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export { type PlansGetUsageRequest } from "./PlansGetUsageRequest.js";
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export * from "./client/index.js";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./client/index.js"), exports);
@@ -0,0 +1,109 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as environments from "../../../../environments.js";
5
+ import * as core from "../../../../core/index.js";
6
+ import * as Paid from "../../../index.js";
7
+ export declare namespace Products {
8
+ interface Options {
9
+ environment?: core.Supplier<environments.PaidEnvironment | string>;
10
+ /** Specify a custom URL to connect the client to. */
11
+ baseUrl?: core.Supplier<string>;
12
+ token?: core.Supplier<core.BearerToken | undefined>;
13
+ /** Additional headers to include in requests. */
14
+ headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
15
+ }
16
+ interface RequestOptions {
17
+ /** The maximum time to wait for a response in seconds. */
18
+ timeoutInSeconds?: number;
19
+ /** The number of times to retry the request. Defaults to 2. */
20
+ maxRetries?: number;
21
+ /** A hook to abort the request. */
22
+ abortSignal?: AbortSignal;
23
+ /** Additional headers to include in the request. */
24
+ headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
25
+ }
26
+ }
27
+ export declare class Products {
28
+ protected readonly _options: Products.Options;
29
+ constructor(_options?: Products.Options);
30
+ /**
31
+ * @param {Products.RequestOptions} requestOptions - Request-specific configuration.
32
+ *
33
+ * @example
34
+ * await client.products.list()
35
+ */
36
+ list(requestOptions?: Products.RequestOptions): core.HttpResponsePromise<Paid.Product[]>;
37
+ private __list;
38
+ /**
39
+ * @param {Paid.ProductCreate} request
40
+ * @param {Products.RequestOptions} requestOptions - Request-specific configuration.
41
+ *
42
+ * @example
43
+ * await client.products.create({
44
+ * name: "Acme Product",
45
+ * description: "Acme Product does amazing things.",
46
+ * externalId: "acme-product",
47
+ * type: "product"
48
+ * })
49
+ */
50
+ create(request: Paid.ProductCreate, requestOptions?: Products.RequestOptions): core.HttpResponsePromise<Paid.Product>;
51
+ private __create;
52
+ /**
53
+ * @param {string} productId
54
+ * @param {Products.RequestOptions} requestOptions - Request-specific configuration.
55
+ *
56
+ * @example
57
+ * await client.products.get("productId")
58
+ */
59
+ get(productId: string, requestOptions?: Products.RequestOptions): core.HttpResponsePromise<Paid.Product>;
60
+ private __get;
61
+ /**
62
+ * @param {string} productId
63
+ * @param {Paid.ProductUpdate} request
64
+ * @param {Products.RequestOptions} requestOptions - Request-specific configuration.
65
+ *
66
+ * @example
67
+ * await client.products.update("productId", {})
68
+ */
69
+ update(productId: string, request: Paid.ProductUpdate, requestOptions?: Products.RequestOptions): core.HttpResponsePromise<Paid.Product>;
70
+ private __update;
71
+ /**
72
+ * @param {string} productId
73
+ * @param {Products.RequestOptions} requestOptions - Request-specific configuration.
74
+ *
75
+ * @example
76
+ * await client.products.delete("productId")
77
+ */
78
+ delete(productId: string, requestOptions?: Products.RequestOptions): core.HttpResponsePromise<void>;
79
+ private __delete;
80
+ /**
81
+ * @param {string} externalId
82
+ * @param {Products.RequestOptions} requestOptions - Request-specific configuration.
83
+ *
84
+ * @example
85
+ * await client.products.getByExternalId("externalId")
86
+ */
87
+ getByExternalId(externalId: string, requestOptions?: Products.RequestOptions): core.HttpResponsePromise<Paid.Product>;
88
+ private __getByExternalId;
89
+ /**
90
+ * @param {string} externalId
91
+ * @param {Paid.ProductUpdate} request
92
+ * @param {Products.RequestOptions} requestOptions - Request-specific configuration.
93
+ *
94
+ * @example
95
+ * await client.products.updateByExternalId("externalId", {})
96
+ */
97
+ updateByExternalId(externalId: string, request: Paid.ProductUpdate, requestOptions?: Products.RequestOptions): core.HttpResponsePromise<Paid.Product>;
98
+ private __updateByExternalId;
99
+ /**
100
+ * @param {string} externalId
101
+ * @param {Products.RequestOptions} requestOptions - Request-specific configuration.
102
+ *
103
+ * @example
104
+ * await client.products.deleteByExternalId("externalId")
105
+ */
106
+ deleteByExternalId(externalId: string, requestOptions?: Products.RequestOptions): core.HttpResponsePromise<void>;
107
+ private __deleteByExternalId;
108
+ protected _getAuthorizationHeader(): Promise<string | undefined>;
109
+ }