pulse-ts-sdk 0.0.51 → 0.0.52

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 (338) hide show
  1. package/dist/cjs/BaseClient.d.ts +39 -0
  2. package/dist/cjs/BaseClient.js +62 -0
  3. package/dist/cjs/Client.d.ts +57 -0
  4. package/dist/cjs/Client.js +189 -0
  5. package/dist/cjs/api/errors/BadRequestError.d.ts +5 -0
  6. package/dist/cjs/api/errors/BadRequestError.js +54 -0
  7. package/dist/cjs/api/errors/ForbiddenError.d.ts +5 -0
  8. package/dist/cjs/api/errors/ForbiddenError.js +54 -0
  9. package/dist/cjs/api/errors/InternalServerError.d.ts +5 -0
  10. package/dist/cjs/api/errors/InternalServerError.js +54 -0
  11. package/dist/cjs/api/errors/NotFoundError.d.ts +5 -0
  12. package/dist/cjs/api/errors/NotFoundError.js +54 -0
  13. package/dist/cjs/api/errors/TooManyRequestsError.d.ts +5 -0
  14. package/dist/cjs/api/errors/TooManyRequestsError.js +54 -0
  15. package/dist/cjs/api/errors/UnauthorizedError.d.ts +5 -0
  16. package/dist/cjs/api/errors/UnauthorizedError.js +54 -0
  17. package/dist/cjs/api/errors/index.d.ts +6 -0
  18. package/dist/cjs/api/errors/index.js +22 -0
  19. package/dist/cjs/api/index.d.ts +3 -0
  20. package/dist/cjs/api/index.js +19 -0
  21. package/dist/cjs/api/resources/index.d.ts +4 -0
  22. package/dist/cjs/api/resources/index.js +43 -0
  23. package/dist/cjs/api/resources/jobs/client/Client.d.ts +53 -0
  24. package/dist/cjs/api/resources/jobs/client/Client.js +185 -0
  25. package/dist/cjs/api/resources/jobs/client/index.d.ts +1 -0
  26. package/dist/cjs/api/resources/jobs/client/index.js +17 -0
  27. package/dist/cjs/api/resources/jobs/client/requests/CancelJobRequest.d.ts +10 -0
  28. package/dist/cjs/api/resources/jobs/client/requests/CancelJobRequest.js +3 -0
  29. package/dist/cjs/api/resources/jobs/client/requests/GetJobRequest.d.ts +10 -0
  30. package/dist/cjs/api/resources/jobs/client/requests/GetJobRequest.js +3 -0
  31. package/dist/cjs/api/resources/jobs/client/requests/index.d.ts +2 -0
  32. package/dist/cjs/api/resources/jobs/client/requests/index.js +2 -0
  33. package/dist/cjs/api/resources/jobs/index.d.ts +1 -0
  34. package/dist/cjs/api/resources/jobs/index.js +17 -0
  35. package/dist/cjs/api/resources/webhooks/client/Client.d.ts +26 -0
  36. package/dist/cjs/api/resources/webhooks/client/Client.js +108 -0
  37. package/dist/cjs/api/resources/webhooks/client/index.d.ts +1 -0
  38. package/dist/cjs/api/resources/webhooks/client/index.js +2 -0
  39. package/dist/cjs/api/resources/webhooks/index.d.ts +2 -0
  40. package/dist/cjs/api/resources/webhooks/index.js +18 -0
  41. package/dist/cjs/api/resources/webhooks/types/CreateWebhookLinkResponse.d.ts +4 -0
  42. package/dist/cjs/api/resources/webhooks/types/CreateWebhookLinkResponse.js +3 -0
  43. package/dist/cjs/api/resources/webhooks/types/index.d.ts +1 -0
  44. package/dist/cjs/api/resources/webhooks/types/index.js +17 -0
  45. package/dist/cjs/api/types/ExtractAsyncInput.d.ts +1 -0
  46. package/dist/cjs/api/types/ExtractAsyncInput.js +3 -0
  47. package/dist/cjs/api/types/ExtractAsyncResponse.d.ts +22 -0
  48. package/dist/cjs/api/types/ExtractAsyncResponse.js +15 -0
  49. package/dist/cjs/api/types/ExtractInput.d.ts +1 -0
  50. package/dist/cjs/api/types/ExtractInput.js +3 -0
  51. package/dist/cjs/api/types/ExtractJsonInput.d.ts +61 -0
  52. package/dist/cjs/api/types/ExtractJsonInput.js +3 -0
  53. package/dist/cjs/api/types/ExtractMultipartInput.d.ts +59 -0
  54. package/dist/cjs/api/types/ExtractMultipartInput.js +3 -0
  55. package/dist/cjs/api/types/ExtractOptions.d.ts +59 -0
  56. package/dist/cjs/api/types/ExtractOptions.js +3 -0
  57. package/dist/cjs/api/types/ExtractResponse.d.ts +17 -0
  58. package/dist/cjs/api/types/ExtractResponse.js +3 -0
  59. package/dist/cjs/api/types/JobCancellationResponse.d.ts +9 -0
  60. package/dist/cjs/api/types/JobCancellationResponse.js +3 -0
  61. package/dist/cjs/api/types/JobStatus.d.ts +9 -0
  62. package/dist/cjs/api/types/JobStatus.js +12 -0
  63. package/dist/cjs/api/types/JobStatusResponse.d.ts +17 -0
  64. package/dist/cjs/api/types/JobStatusResponse.js +3 -0
  65. package/dist/cjs/api/types/JsonSource.d.ts +7 -0
  66. package/dist/cjs/api/types/JsonSource.js +3 -0
  67. package/dist/cjs/api/types/MultipartSource.d.ts +10 -0
  68. package/dist/cjs/api/types/MultipartSource.js +3 -0
  69. package/dist/cjs/api/types/index.d.ts +12 -0
  70. package/dist/cjs/api/types/index.js +28 -0
  71. package/dist/cjs/auth/HeaderAuthProvider.d.ts +16 -0
  72. package/dist/cjs/auth/HeaderAuthProvider.js +71 -0
  73. package/dist/cjs/auth/index.d.ts +1 -0
  74. package/dist/cjs/auth/index.js +5 -0
  75. package/dist/cjs/core/auth/AuthProvider.d.ts +7 -0
  76. package/dist/cjs/core/auth/AuthProvider.js +2 -0
  77. package/dist/cjs/core/auth/AuthRequest.d.ts +9 -0
  78. package/dist/cjs/core/auth/AuthRequest.js +2 -0
  79. package/dist/cjs/core/auth/BasicAuth.d.ts +8 -0
  80. package/dist/cjs/core/auth/BasicAuth.js +27 -0
  81. package/dist/cjs/core/auth/BearerToken.d.ts +7 -0
  82. package/dist/cjs/core/auth/BearerToken.js +16 -0
  83. package/dist/cjs/core/auth/NoOpAuthProvider.d.ts +5 -0
  84. package/dist/cjs/core/auth/NoOpAuthProvider.js +9 -0
  85. package/dist/cjs/core/auth/index.d.ts +5 -0
  86. package/dist/cjs/core/auth/index.js +9 -0
  87. package/dist/cjs/core/base64.d.ts +2 -0
  88. package/dist/cjs/core/base64.js +26 -0
  89. package/dist/cjs/core/exports.d.ts +1 -0
  90. package/dist/cjs/core/exports.js +17 -0
  91. package/dist/cjs/core/fetcher/APIResponse.d.ts +20 -0
  92. package/dist/cjs/core/fetcher/APIResponse.js +2 -0
  93. package/dist/cjs/core/fetcher/BinaryResponse.d.ts +19 -0
  94. package/dist/cjs/core/fetcher/BinaryResponse.js +17 -0
  95. package/dist/cjs/core/fetcher/EndpointMetadata.d.ts +13 -0
  96. package/dist/cjs/core/fetcher/EndpointMetadata.js +2 -0
  97. package/dist/cjs/core/fetcher/EndpointSupplier.d.ts +12 -0
  98. package/dist/cjs/core/fetcher/EndpointSupplier.js +22 -0
  99. package/dist/cjs/core/fetcher/Fetcher.d.ts +49 -0
  100. package/dist/cjs/core/fetcher/Fetcher.js +316 -0
  101. package/dist/cjs/core/fetcher/Headers.d.ts +2 -0
  102. package/dist/cjs/core/fetcher/Headers.js +84 -0
  103. package/dist/cjs/core/fetcher/HttpResponsePromise.d.ts +58 -0
  104. package/dist/cjs/core/fetcher/HttpResponsePromise.js +103 -0
  105. package/dist/cjs/core/fetcher/RawResponse.d.ts +29 -0
  106. package/dist/cjs/core/fetcher/RawResponse.js +44 -0
  107. package/dist/cjs/core/fetcher/Supplier.d.ts +4 -0
  108. package/dist/cjs/core/fetcher/Supplier.js +22 -0
  109. package/dist/cjs/core/fetcher/createRequestUrl.d.ts +1 -0
  110. package/dist/cjs/core/fetcher/createRequestUrl.js +8 -0
  111. package/dist/cjs/core/fetcher/getErrorResponseBody.d.ts +1 -0
  112. package/dist/cjs/core/fetcher/getErrorResponseBody.js +45 -0
  113. package/dist/cjs/core/fetcher/getFetchFn.d.ts +1 -0
  114. package/dist/cjs/core/fetcher/getFetchFn.js +17 -0
  115. package/dist/cjs/core/fetcher/getHeader.d.ts +1 -0
  116. package/dist/cjs/core/fetcher/getHeader.js +11 -0
  117. package/dist/cjs/core/fetcher/getRequestBody.d.ts +7 -0
  118. package/dist/cjs/core/fetcher/getRequestBody.js +27 -0
  119. package/dist/cjs/core/fetcher/getResponseBody.d.ts +1 -0
  120. package/dist/cjs/core/fetcher/getResponseBody.js +69 -0
  121. package/dist/cjs/core/fetcher/index.d.ts +11 -0
  122. package/dist/cjs/core/fetcher/index.js +17 -0
  123. package/dist/cjs/core/fetcher/makeRequest.d.ts +1 -0
  124. package/dist/cjs/core/fetcher/makeRequest.js +40 -0
  125. package/dist/cjs/core/fetcher/requestWithRetries.d.ts +1 -0
  126. package/dist/cjs/core/fetcher/requestWithRetries.js +67 -0
  127. package/dist/cjs/core/fetcher/signals.d.ts +5 -0
  128. package/dist/cjs/core/fetcher/signals.js +24 -0
  129. package/dist/cjs/core/headers.d.ts +2 -0
  130. package/dist/cjs/core/headers.js +31 -0
  131. package/dist/cjs/core/index.d.ts +6 -0
  132. package/dist/cjs/core/index.js +45 -0
  133. package/dist/cjs/core/json.d.ts +15 -0
  134. package/dist/cjs/core/json.js +24 -0
  135. package/dist/cjs/core/logging/exports.d.ts +18 -0
  136. package/dist/cjs/core/logging/exports.js +45 -0
  137. package/dist/cjs/core/logging/index.d.ts +1 -0
  138. package/dist/cjs/core/logging/index.js +17 -0
  139. package/dist/cjs/core/logging/logger.d.ts +126 -0
  140. package/dist/cjs/core/logging/logger.js +144 -0
  141. package/dist/cjs/core/runtime/index.d.ts +1 -0
  142. package/dist/cjs/core/runtime/index.js +5 -0
  143. package/dist/cjs/core/runtime/runtime.d.ts +9 -0
  144. package/dist/cjs/core/runtime/runtime.js +103 -0
  145. package/dist/cjs/core/url/encodePathParam.d.ts +1 -0
  146. package/dist/cjs/core/url/encodePathParam.js +21 -0
  147. package/dist/cjs/core/url/index.d.ts +3 -0
  148. package/dist/cjs/core/url/index.js +9 -0
  149. package/dist/cjs/core/url/join.d.ts +1 -0
  150. package/dist/cjs/core/url/join.js +68 -0
  151. package/dist/cjs/core/url/qs.d.ts +6 -0
  152. package/dist/cjs/core/url/qs.js +64 -0
  153. package/dist/cjs/environments.d.ts +4 -0
  154. package/dist/cjs/environments.js +7 -0
  155. package/dist/cjs/errors/PulseError.d.ts +12 -0
  156. package/dist/cjs/errors/PulseError.js +32 -0
  157. package/dist/cjs/errors/PulseTimeoutError.d.ts +3 -0
  158. package/dist/cjs/errors/PulseTimeoutError.js +15 -0
  159. package/dist/cjs/errors/handleNonStatusCodeError.d.ts +2 -0
  160. package/dist/cjs/errors/handleNonStatusCodeError.js +65 -0
  161. package/dist/cjs/errors/index.d.ts +2 -0
  162. package/dist/cjs/errors/index.js +7 -0
  163. package/dist/cjs/exports.d.ts +1 -0
  164. package/dist/cjs/exports.js +17 -0
  165. package/dist/cjs/index.d.ts +6 -0
  166. package/dist/cjs/index.js +48 -0
  167. package/dist/cjs/version.d.ts +1 -0
  168. package/dist/cjs/version.js +4 -0
  169. package/dist/esm/BaseClient.d.mts +39 -0
  170. package/dist/esm/BaseClient.mjs +25 -0
  171. package/dist/esm/Client.d.mts +57 -0
  172. package/dist/esm/Client.mjs +152 -0
  173. package/dist/esm/api/errors/BadRequestError.d.mts +5 -0
  174. package/dist/esm/api/errors/BadRequestError.mjs +17 -0
  175. package/dist/esm/api/errors/ForbiddenError.d.mts +5 -0
  176. package/dist/esm/api/errors/ForbiddenError.mjs +17 -0
  177. package/dist/esm/api/errors/InternalServerError.d.mts +5 -0
  178. package/dist/esm/api/errors/InternalServerError.mjs +17 -0
  179. package/dist/esm/api/errors/NotFoundError.d.mts +5 -0
  180. package/dist/esm/api/errors/NotFoundError.mjs +17 -0
  181. package/dist/esm/api/errors/TooManyRequestsError.d.mts +5 -0
  182. package/dist/esm/api/errors/TooManyRequestsError.mjs +17 -0
  183. package/dist/esm/api/errors/UnauthorizedError.d.mts +5 -0
  184. package/dist/esm/api/errors/UnauthorizedError.mjs +17 -0
  185. package/dist/esm/api/errors/index.d.mts +6 -0
  186. package/dist/esm/api/errors/index.mjs +6 -0
  187. package/dist/esm/api/index.d.mts +3 -0
  188. package/dist/esm/api/index.mjs +3 -0
  189. package/dist/esm/api/resources/index.d.mts +4 -0
  190. package/dist/esm/api/resources/index.mjs +4 -0
  191. package/dist/esm/api/resources/jobs/client/Client.d.mts +53 -0
  192. package/dist/esm/api/resources/jobs/client/Client.mjs +148 -0
  193. package/dist/esm/api/resources/jobs/client/index.d.mts +1 -0
  194. package/dist/esm/api/resources/jobs/client/index.mjs +1 -0
  195. package/dist/esm/api/resources/jobs/client/requests/CancelJobRequest.d.mts +10 -0
  196. package/dist/esm/api/resources/jobs/client/requests/CancelJobRequest.mjs +2 -0
  197. package/dist/esm/api/resources/jobs/client/requests/GetJobRequest.d.mts +10 -0
  198. package/dist/esm/api/resources/jobs/client/requests/GetJobRequest.mjs +2 -0
  199. package/dist/esm/api/resources/jobs/client/requests/index.d.mts +2 -0
  200. package/dist/esm/api/resources/jobs/client/requests/index.mjs +1 -0
  201. package/dist/esm/api/resources/jobs/index.d.mts +1 -0
  202. package/dist/esm/api/resources/jobs/index.mjs +1 -0
  203. package/dist/esm/api/resources/webhooks/client/Client.d.mts +26 -0
  204. package/dist/esm/api/resources/webhooks/client/Client.mjs +71 -0
  205. package/dist/esm/api/resources/webhooks/client/index.d.mts +1 -0
  206. package/dist/esm/api/resources/webhooks/client/index.mjs +1 -0
  207. package/dist/esm/api/resources/webhooks/index.d.mts +2 -0
  208. package/dist/esm/api/resources/webhooks/index.mjs +2 -0
  209. package/dist/esm/api/resources/webhooks/types/CreateWebhookLinkResponse.d.mts +4 -0
  210. package/dist/esm/api/resources/webhooks/types/CreateWebhookLinkResponse.mjs +2 -0
  211. package/dist/esm/api/resources/webhooks/types/index.d.mts +1 -0
  212. package/dist/esm/api/resources/webhooks/types/index.mjs +1 -0
  213. package/dist/esm/api/types/ExtractAsyncInput.d.mts +1 -0
  214. package/dist/esm/api/types/ExtractAsyncInput.mjs +2 -0
  215. package/dist/esm/api/types/ExtractAsyncResponse.d.mts +22 -0
  216. package/dist/esm/api/types/ExtractAsyncResponse.mjs +12 -0
  217. package/dist/esm/api/types/ExtractInput.d.mts +1 -0
  218. package/dist/esm/api/types/ExtractInput.mjs +2 -0
  219. package/dist/esm/api/types/ExtractJsonInput.d.mts +61 -0
  220. package/dist/esm/api/types/ExtractJsonInput.mjs +2 -0
  221. package/dist/esm/api/types/ExtractMultipartInput.d.mts +59 -0
  222. package/dist/esm/api/types/ExtractMultipartInput.mjs +2 -0
  223. package/dist/esm/api/types/ExtractOptions.d.mts +59 -0
  224. package/dist/esm/api/types/ExtractOptions.mjs +2 -0
  225. package/dist/esm/api/types/ExtractResponse.d.mts +17 -0
  226. package/dist/esm/api/types/ExtractResponse.mjs +2 -0
  227. package/dist/esm/api/types/JobCancellationResponse.d.mts +9 -0
  228. package/dist/esm/api/types/JobCancellationResponse.mjs +2 -0
  229. package/dist/esm/api/types/JobStatus.d.mts +9 -0
  230. package/dist/esm/api/types/JobStatus.mjs +9 -0
  231. package/dist/esm/api/types/JobStatusResponse.d.mts +17 -0
  232. package/dist/esm/api/types/JobStatusResponse.mjs +2 -0
  233. package/dist/esm/api/types/JsonSource.d.mts +7 -0
  234. package/dist/esm/api/types/JsonSource.mjs +2 -0
  235. package/dist/esm/api/types/MultipartSource.d.mts +10 -0
  236. package/dist/esm/api/types/MultipartSource.mjs +2 -0
  237. package/dist/esm/api/types/index.d.mts +12 -0
  238. package/dist/esm/api/types/index.mjs +12 -0
  239. package/dist/esm/auth/HeaderAuthProvider.d.mts +16 -0
  240. package/dist/esm/auth/HeaderAuthProvider.mjs +34 -0
  241. package/dist/esm/auth/index.d.mts +1 -0
  242. package/dist/esm/auth/index.mjs +1 -0
  243. package/dist/esm/core/auth/AuthProvider.d.mts +7 -0
  244. package/dist/esm/core/auth/AuthProvider.mjs +1 -0
  245. package/dist/esm/core/auth/AuthRequest.d.mts +9 -0
  246. package/dist/esm/core/auth/AuthRequest.mjs +1 -0
  247. package/dist/esm/core/auth/BasicAuth.d.mts +8 -0
  248. package/dist/esm/core/auth/BasicAuth.mjs +24 -0
  249. package/dist/esm/core/auth/BearerToken.d.mts +7 -0
  250. package/dist/esm/core/auth/BearerToken.mjs +13 -0
  251. package/dist/esm/core/auth/NoOpAuthProvider.d.mts +5 -0
  252. package/dist/esm/core/auth/NoOpAuthProvider.mjs +5 -0
  253. package/dist/esm/core/auth/index.d.mts +5 -0
  254. package/dist/esm/core/auth/index.mjs +3 -0
  255. package/dist/esm/core/base64.d.mts +2 -0
  256. package/dist/esm/core/base64.mjs +22 -0
  257. package/dist/esm/core/exports.d.mts +1 -0
  258. package/dist/esm/core/exports.mjs +1 -0
  259. package/dist/esm/core/fetcher/APIResponse.d.mts +20 -0
  260. package/dist/esm/core/fetcher/APIResponse.mjs +1 -0
  261. package/dist/esm/core/fetcher/BinaryResponse.d.mts +19 -0
  262. package/dist/esm/core/fetcher/BinaryResponse.mjs +14 -0
  263. package/dist/esm/core/fetcher/EndpointMetadata.d.mts +13 -0
  264. package/dist/esm/core/fetcher/EndpointMetadata.mjs +1 -0
  265. package/dist/esm/core/fetcher/EndpointSupplier.d.mts +12 -0
  266. package/dist/esm/core/fetcher/EndpointSupplier.mjs +19 -0
  267. package/dist/esm/core/fetcher/Fetcher.d.mts +49 -0
  268. package/dist/esm/core/fetcher/Fetcher.mjs +312 -0
  269. package/dist/esm/core/fetcher/Headers.d.mts +2 -0
  270. package/dist/esm/core/fetcher/Headers.mjs +82 -0
  271. package/dist/esm/core/fetcher/HttpResponsePromise.d.mts +58 -0
  272. package/dist/esm/core/fetcher/HttpResponsePromise.mjs +99 -0
  273. package/dist/esm/core/fetcher/RawResponse.d.mts +29 -0
  274. package/dist/esm/core/fetcher/RawResponse.mjs +40 -0
  275. package/dist/esm/core/fetcher/Supplier.d.mts +4 -0
  276. package/dist/esm/core/fetcher/Supplier.mjs +19 -0
  277. package/dist/esm/core/fetcher/createRequestUrl.d.mts +1 -0
  278. package/dist/esm/core/fetcher/createRequestUrl.mjs +5 -0
  279. package/dist/esm/core/fetcher/getErrorResponseBody.d.mts +1 -0
  280. package/dist/esm/core/fetcher/getErrorResponseBody.mjs +42 -0
  281. package/dist/esm/core/fetcher/getFetchFn.d.mts +1 -0
  282. package/dist/esm/core/fetcher/getFetchFn.mjs +14 -0
  283. package/dist/esm/core/fetcher/getHeader.d.mts +1 -0
  284. package/dist/esm/core/fetcher/getHeader.mjs +8 -0
  285. package/dist/esm/core/fetcher/getRequestBody.d.mts +7 -0
  286. package/dist/esm/core/fetcher/getRequestBody.mjs +24 -0
  287. package/dist/esm/core/fetcher/getResponseBody.d.mts +1 -0
  288. package/dist/esm/core/fetcher/getResponseBody.mjs +66 -0
  289. package/dist/esm/core/fetcher/index.d.mts +11 -0
  290. package/dist/esm/core/fetcher/index.mjs +6 -0
  291. package/dist/esm/core/fetcher/makeRequest.d.mts +1 -0
  292. package/dist/esm/core/fetcher/makeRequest.mjs +36 -0
  293. package/dist/esm/core/fetcher/requestWithRetries.d.mts +1 -0
  294. package/dist/esm/core/fetcher/requestWithRetries.mjs +64 -0
  295. package/dist/esm/core/fetcher/signals.d.mts +5 -0
  296. package/dist/esm/core/fetcher/signals.mjs +20 -0
  297. package/dist/esm/core/headers.d.mts +2 -0
  298. package/dist/esm/core/headers.mjs +27 -0
  299. package/dist/esm/core/index.d.mts +6 -0
  300. package/dist/esm/core/index.mjs +6 -0
  301. package/dist/esm/core/json.d.mts +15 -0
  302. package/dist/esm/core/json.mjs +19 -0
  303. package/dist/esm/core/logging/exports.d.mts +18 -0
  304. package/dist/esm/core/logging/exports.mjs +9 -0
  305. package/dist/esm/core/logging/index.d.mts +1 -0
  306. package/dist/esm/core/logging/index.mjs +1 -0
  307. package/dist/esm/core/logging/logger.d.mts +126 -0
  308. package/dist/esm/core/logging/logger.mjs +138 -0
  309. package/dist/esm/core/runtime/index.d.mts +1 -0
  310. package/dist/esm/core/runtime/index.mjs +1 -0
  311. package/dist/esm/core/runtime/runtime.d.mts +9 -0
  312. package/dist/esm/core/runtime/runtime.mjs +100 -0
  313. package/dist/esm/core/url/encodePathParam.d.mts +1 -0
  314. package/dist/esm/core/url/encodePathParam.mjs +18 -0
  315. package/dist/esm/core/url/index.d.mts +3 -0
  316. package/dist/esm/core/url/index.mjs +3 -0
  317. package/dist/esm/core/url/join.d.mts +1 -0
  318. package/dist/esm/core/url/join.mjs +65 -0
  319. package/dist/esm/core/url/qs.d.mts +6 -0
  320. package/dist/esm/core/url/qs.mjs +61 -0
  321. package/dist/esm/environments.d.mts +4 -0
  322. package/dist/esm/environments.mjs +4 -0
  323. package/dist/esm/errors/PulseError.d.mts +12 -0
  324. package/dist/esm/errors/PulseError.mjs +28 -0
  325. package/dist/esm/errors/PulseTimeoutError.d.mts +3 -0
  326. package/dist/esm/errors/PulseTimeoutError.mjs +11 -0
  327. package/dist/esm/errors/handleNonStatusCodeError.d.mts +2 -0
  328. package/dist/esm/errors/handleNonStatusCodeError.mjs +29 -0
  329. package/dist/esm/errors/index.d.mts +2 -0
  330. package/dist/esm/errors/index.mjs +2 -0
  331. package/dist/esm/exports.d.mts +1 -0
  332. package/dist/esm/exports.mjs +1 -0
  333. package/dist/esm/index.d.mts +6 -0
  334. package/dist/esm/index.mjs +5 -0
  335. package/dist/esm/version.d.mts +1 -0
  336. package/dist/esm/version.mjs +1 -0
  337. package/package.json +1 -1
  338. package/reference.md +6 -6
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Serialize a value to JSON
3
+ * @param value A JavaScript value, usually an object or array, to be converted.
4
+ * @param replacer A function that transforms the results.
5
+ * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
6
+ * @returns JSON string
7
+ */
8
+ export declare const toJson: (value: unknown, replacer?: (this: unknown, key: string, value: unknown) => unknown, space?: string | number) => string;
9
+ /**
10
+ * Parse JSON string to object, array, or other type
11
+ * @param text A valid JSON string.
12
+ * @param reviver A function that transforms the results. This function is called for each member of the object. If a member contains nested objects, the nested objects are transformed before the parent object is.
13
+ * @returns Parsed object, array, or other type
14
+ */
15
+ export declare function fromJson<T = unknown>(text: string, reviver?: (this: unknown, key: string, value: unknown) => unknown): T;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Serialize a value to JSON
3
+ * @param value A JavaScript value, usually an object or array, to be converted.
4
+ * @param replacer A function that transforms the results.
5
+ * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
6
+ * @returns JSON string
7
+ */
8
+ export const toJson = (value, replacer, space) => {
9
+ return JSON.stringify(value, replacer, space);
10
+ };
11
+ /**
12
+ * Parse JSON string to object, array, or other type
13
+ * @param text A valid JSON string.
14
+ * @param reviver A function that transforms the results. This function is called for each member of the object. If a member contains nested objects, the nested objects are transformed before the parent object is.
15
+ * @returns Parsed object, array, or other type
16
+ */
17
+ export function fromJson(text, reviver) {
18
+ return JSON.parse(text, reviver);
19
+ }
@@ -0,0 +1,18 @@
1
+ import * as logger from "./logger.mjs";
2
+ export declare namespace logging {
3
+ /**
4
+ * Configuration for logger instances.
5
+ */
6
+ type LogConfig = logger.LogConfig;
7
+ type LogLevel = logger.LogLevel;
8
+ const LogLevel: typeof logger.LogLevel;
9
+ type ILogger = logger.ILogger;
10
+ /**
11
+ * Console logger implementation that outputs to the console.
12
+ */
13
+ type ConsoleLogger = logger.ConsoleLogger;
14
+ /**
15
+ * Console logger implementation that outputs to the console.
16
+ */
17
+ const ConsoleLogger: typeof logger.ConsoleLogger;
18
+ }
@@ -0,0 +1,9 @@
1
+ import * as logger from "./logger.mjs";
2
+ export var logging;
3
+ (function (logging) {
4
+ logging.LogLevel = logger.LogLevel;
5
+ /**
6
+ * Console logger implementation that outputs to the console.
7
+ */
8
+ logging.ConsoleLogger = logger.ConsoleLogger;
9
+ })(logging || (logging = {}));
@@ -0,0 +1 @@
1
+ export * from "./logger.mjs";
@@ -0,0 +1 @@
1
+ export * from "./logger.mjs";
@@ -0,0 +1,126 @@
1
+ export declare const LogLevel: {
2
+ readonly Debug: "debug";
3
+ readonly Info: "info";
4
+ readonly Warn: "warn";
5
+ readonly Error: "error";
6
+ };
7
+ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
8
+ export interface ILogger {
9
+ /**
10
+ * Logs a debug message.
11
+ * @param message - The message to log
12
+ * @param args - Additional arguments to log
13
+ */
14
+ debug(message: string, ...args: unknown[]): void;
15
+ /**
16
+ * Logs an info message.
17
+ * @param message - The message to log
18
+ * @param args - Additional arguments to log
19
+ */
20
+ info(message: string, ...args: unknown[]): void;
21
+ /**
22
+ * Logs a warning message.
23
+ * @param message - The message to log
24
+ * @param args - Additional arguments to log
25
+ */
26
+ warn(message: string, ...args: unknown[]): void;
27
+ /**
28
+ * Logs an error message.
29
+ * @param message - The message to log
30
+ * @param args - Additional arguments to log
31
+ */
32
+ error(message: string, ...args: unknown[]): void;
33
+ }
34
+ /**
35
+ * Configuration for logger initialization.
36
+ */
37
+ export interface LogConfig {
38
+ /**
39
+ * Minimum log level to output.
40
+ * @default LogLevel.Info
41
+ */
42
+ level?: LogLevel;
43
+ /**
44
+ * Logger implementation to use.
45
+ * @default new ConsoleLogger()
46
+ */
47
+ logger?: ILogger;
48
+ /**
49
+ * Whether logging should be silenced.
50
+ * @default true
51
+ */
52
+ silent?: boolean;
53
+ }
54
+ /**
55
+ * Default console-based logger implementation.
56
+ */
57
+ export declare class ConsoleLogger implements ILogger {
58
+ debug(message: string, ...args: unknown[]): void;
59
+ info(message: string, ...args: unknown[]): void;
60
+ warn(message: string, ...args: unknown[]): void;
61
+ error(message: string, ...args: unknown[]): void;
62
+ }
63
+ /**
64
+ * Logger class that provides level-based logging functionality.
65
+ */
66
+ export declare class Logger {
67
+ private readonly level;
68
+ private readonly logger;
69
+ private readonly silent;
70
+ /**
71
+ * Creates a new logger instance.
72
+ * @param config - Logger configuration
73
+ */
74
+ constructor(config: Required<LogConfig>);
75
+ /**
76
+ * Checks if a log level should be output based on configuration.
77
+ * @param level - The log level to check
78
+ * @returns True if the level should be logged
79
+ */
80
+ shouldLog(level: LogLevel): boolean;
81
+ /**
82
+ * Checks if debug logging is enabled.
83
+ * @returns True if debug logs should be output
84
+ */
85
+ isDebug(): boolean;
86
+ /**
87
+ * Logs a debug message if debug logging is enabled.
88
+ * @param message - The message to log
89
+ * @param args - Additional arguments to log
90
+ */
91
+ debug(message: string, ...args: unknown[]): void;
92
+ /**
93
+ * Checks if info logging is enabled.
94
+ * @returns True if info logs should be output
95
+ */
96
+ isInfo(): boolean;
97
+ /**
98
+ * Logs an info message if info logging is enabled.
99
+ * @param message - The message to log
100
+ * @param args - Additional arguments to log
101
+ */
102
+ info(message: string, ...args: unknown[]): void;
103
+ /**
104
+ * Checks if warning logging is enabled.
105
+ * @returns True if warning logs should be output
106
+ */
107
+ isWarn(): boolean;
108
+ /**
109
+ * Logs a warning message if warning logging is enabled.
110
+ * @param message - The message to log
111
+ * @param args - Additional arguments to log
112
+ */
113
+ warn(message: string, ...args: unknown[]): void;
114
+ /**
115
+ * Checks if error logging is enabled.
116
+ * @returns True if error logs should be output
117
+ */
118
+ isError(): boolean;
119
+ /**
120
+ * Logs an error message if error logging is enabled.
121
+ * @param message - The message to log
122
+ * @param args - Additional arguments to log
123
+ */
124
+ error(message: string, ...args: unknown[]): void;
125
+ }
126
+ export declare function createLogger(config?: LogConfig | Logger): Logger;
@@ -0,0 +1,138 @@
1
+ export const LogLevel = {
2
+ Debug: "debug",
3
+ Info: "info",
4
+ Warn: "warn",
5
+ Error: "error",
6
+ };
7
+ const logLevelMap = {
8
+ [LogLevel.Debug]: 1,
9
+ [LogLevel.Info]: 2,
10
+ [LogLevel.Warn]: 3,
11
+ [LogLevel.Error]: 4,
12
+ };
13
+ /**
14
+ * Default console-based logger implementation.
15
+ */
16
+ export class ConsoleLogger {
17
+ debug(message, ...args) {
18
+ console.debug(message, ...args);
19
+ }
20
+ info(message, ...args) {
21
+ console.info(message, ...args);
22
+ }
23
+ warn(message, ...args) {
24
+ console.warn(message, ...args);
25
+ }
26
+ error(message, ...args) {
27
+ console.error(message, ...args);
28
+ }
29
+ }
30
+ /**
31
+ * Logger class that provides level-based logging functionality.
32
+ */
33
+ export class Logger {
34
+ /**
35
+ * Creates a new logger instance.
36
+ * @param config - Logger configuration
37
+ */
38
+ constructor(config) {
39
+ this.level = logLevelMap[config.level];
40
+ this.logger = config.logger;
41
+ this.silent = config.silent;
42
+ }
43
+ /**
44
+ * Checks if a log level should be output based on configuration.
45
+ * @param level - The log level to check
46
+ * @returns True if the level should be logged
47
+ */
48
+ shouldLog(level) {
49
+ return !this.silent && this.level <= logLevelMap[level];
50
+ }
51
+ /**
52
+ * Checks if debug logging is enabled.
53
+ * @returns True if debug logs should be output
54
+ */
55
+ isDebug() {
56
+ return this.shouldLog(LogLevel.Debug);
57
+ }
58
+ /**
59
+ * Logs a debug message if debug logging is enabled.
60
+ * @param message - The message to log
61
+ * @param args - Additional arguments to log
62
+ */
63
+ debug(message, ...args) {
64
+ if (this.isDebug()) {
65
+ this.logger.debug(message, ...args);
66
+ }
67
+ }
68
+ /**
69
+ * Checks if info logging is enabled.
70
+ * @returns True if info logs should be output
71
+ */
72
+ isInfo() {
73
+ return this.shouldLog(LogLevel.Info);
74
+ }
75
+ /**
76
+ * Logs an info message if info logging is enabled.
77
+ * @param message - The message to log
78
+ * @param args - Additional arguments to log
79
+ */
80
+ info(message, ...args) {
81
+ if (this.isInfo()) {
82
+ this.logger.info(message, ...args);
83
+ }
84
+ }
85
+ /**
86
+ * Checks if warning logging is enabled.
87
+ * @returns True if warning logs should be output
88
+ */
89
+ isWarn() {
90
+ return this.shouldLog(LogLevel.Warn);
91
+ }
92
+ /**
93
+ * Logs a warning message if warning logging is enabled.
94
+ * @param message - The message to log
95
+ * @param args - Additional arguments to log
96
+ */
97
+ warn(message, ...args) {
98
+ if (this.isWarn()) {
99
+ this.logger.warn(message, ...args);
100
+ }
101
+ }
102
+ /**
103
+ * Checks if error logging is enabled.
104
+ * @returns True if error logs should be output
105
+ */
106
+ isError() {
107
+ return this.shouldLog(LogLevel.Error);
108
+ }
109
+ /**
110
+ * Logs an error message if error logging is enabled.
111
+ * @param message - The message to log
112
+ * @param args - Additional arguments to log
113
+ */
114
+ error(message, ...args) {
115
+ if (this.isError()) {
116
+ this.logger.error(message, ...args);
117
+ }
118
+ }
119
+ }
120
+ export function createLogger(config) {
121
+ var _a, _b, _c;
122
+ if (config == null) {
123
+ return defaultLogger;
124
+ }
125
+ if (config instanceof Logger) {
126
+ return config;
127
+ }
128
+ config = config !== null && config !== void 0 ? config : {};
129
+ (_a = config.level) !== null && _a !== void 0 ? _a : (config.level = LogLevel.Info);
130
+ (_b = config.logger) !== null && _b !== void 0 ? _b : (config.logger = new ConsoleLogger());
131
+ (_c = config.silent) !== null && _c !== void 0 ? _c : (config.silent = true);
132
+ return new Logger(config);
133
+ }
134
+ const defaultLogger = new Logger({
135
+ level: LogLevel.Info,
136
+ logger: new ConsoleLogger(),
137
+ silent: true,
138
+ });
@@ -0,0 +1 @@
1
+ export { RUNTIME } from "./runtime.mjs";
@@ -0,0 +1 @@
1
+ export { RUNTIME } from "./runtime.mjs";
@@ -0,0 +1,9 @@
1
+ /**
2
+ * A constant that indicates which environment and version the SDK is running in.
3
+ */
4
+ export declare const RUNTIME: Runtime;
5
+ export interface Runtime {
6
+ type: "browser" | "web-worker" | "deno" | "bun" | "node" | "react-native" | "unknown" | "workerd" | "edge-runtime";
7
+ version?: string;
8
+ parsedVersion?: number;
9
+ }
@@ -0,0 +1,100 @@
1
+ /**
2
+ * A constant that indicates which environment and version the SDK is running in.
3
+ */
4
+ export const RUNTIME = evaluateRuntime();
5
+ function evaluateRuntime() {
6
+ var _a, _b, _c, _d, _e;
7
+ /**
8
+ * A constant that indicates whether the environment the code is running is a Web Browser.
9
+ */
10
+ const isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined";
11
+ if (isBrowser) {
12
+ return {
13
+ type: "browser",
14
+ version: window.navigator.userAgent,
15
+ };
16
+ }
17
+ /**
18
+ * A constant that indicates whether the environment the code is running is Cloudflare.
19
+ * https://developers.cloudflare.com/workers/runtime-apis/web-standards/#navigatoruseragent
20
+ */
21
+ const isCloudflare = typeof globalThis !== "undefined" && ((_a = globalThis === null || globalThis === void 0 ? void 0 : globalThis.navigator) === null || _a === void 0 ? void 0 : _a.userAgent) === "Cloudflare-Workers";
22
+ if (isCloudflare) {
23
+ return {
24
+ type: "workerd",
25
+ };
26
+ }
27
+ /**
28
+ * A constant that indicates whether the environment the code is running is Edge Runtime.
29
+ * https://vercel.com/docs/functions/runtimes/edge-runtime#check-if-you're-running-on-the-edge-runtime
30
+ */
31
+ const isEdgeRuntime = typeof EdgeRuntime === "string";
32
+ if (isEdgeRuntime) {
33
+ return {
34
+ type: "edge-runtime",
35
+ };
36
+ }
37
+ /**
38
+ * A constant that indicates whether the environment the code is running is a Web Worker.
39
+ */
40
+ const isWebWorker = typeof self === "object" &&
41
+ typeof (self === null || self === void 0 ? void 0 : self.importScripts) === "function" &&
42
+ (((_b = self.constructor) === null || _b === void 0 ? void 0 : _b.name) === "DedicatedWorkerGlobalScope" ||
43
+ ((_c = self.constructor) === null || _c === void 0 ? void 0 : _c.name) === "ServiceWorkerGlobalScope" ||
44
+ ((_d = self.constructor) === null || _d === void 0 ? void 0 : _d.name) === "SharedWorkerGlobalScope");
45
+ if (isWebWorker) {
46
+ return {
47
+ type: "web-worker",
48
+ };
49
+ }
50
+ /**
51
+ * A constant that indicates whether the environment the code is running is Deno.
52
+ * FYI Deno spoofs process.versions.node, see https://deno.land/std@0.177.0/node/process.ts?s=versions
53
+ */
54
+ const isDeno = typeof Deno !== "undefined" && typeof Deno.version !== "undefined" && typeof Deno.version.deno !== "undefined";
55
+ if (isDeno) {
56
+ return {
57
+ type: "deno",
58
+ version: Deno.version.deno,
59
+ };
60
+ }
61
+ /**
62
+ * A constant that indicates whether the environment the code is running is Bun.sh.
63
+ */
64
+ const isBun = typeof Bun !== "undefined" && typeof Bun.version !== "undefined";
65
+ if (isBun) {
66
+ return {
67
+ type: "bun",
68
+ version: Bun.version,
69
+ };
70
+ }
71
+ /**
72
+ * A constant that indicates whether the environment the code is running is in React-Native.
73
+ * This check should come before Node.js detection since React Native may have a process polyfill.
74
+ * https://github.com/facebook/react-native/blob/main/packages/react-native/Libraries/Core/setUpNavigator.js
75
+ */
76
+ const isReactNative = typeof navigator !== "undefined" && (navigator === null || navigator === void 0 ? void 0 : navigator.product) === "ReactNative";
77
+ if (isReactNative) {
78
+ return {
79
+ type: "react-native",
80
+ };
81
+ }
82
+ /**
83
+ * A constant that indicates whether the environment the code is running is Node.JS.
84
+ */
85
+ const isNode = typeof process !== "undefined" &&
86
+ "version" in process &&
87
+ !!process.version &&
88
+ "versions" in process &&
89
+ !!((_e = process.versions) === null || _e === void 0 ? void 0 : _e.node);
90
+ if (isNode) {
91
+ return {
92
+ type: "node",
93
+ version: process.versions.node,
94
+ parsedVersion: Number(process.versions.node.split(".")[0]),
95
+ };
96
+ }
97
+ return {
98
+ type: "unknown",
99
+ };
100
+ }
@@ -0,0 +1 @@
1
+ export declare function encodePathParam(param: unknown): string;
@@ -0,0 +1,18 @@
1
+ export function encodePathParam(param) {
2
+ if (param === null) {
3
+ return "null";
4
+ }
5
+ const typeofParam = typeof param;
6
+ switch (typeofParam) {
7
+ case "undefined":
8
+ return "undefined";
9
+ case "string":
10
+ case "number":
11
+ case "boolean":
12
+ break;
13
+ default:
14
+ param = String(param);
15
+ break;
16
+ }
17
+ return encodeURIComponent(param);
18
+ }
@@ -0,0 +1,3 @@
1
+ export { encodePathParam } from "./encodePathParam.mjs";
2
+ export { join } from "./join.mjs";
3
+ export { toQueryString } from "./qs.mjs";
@@ -0,0 +1,3 @@
1
+ export { encodePathParam } from "./encodePathParam.mjs";
2
+ export { join } from "./join.mjs";
3
+ export { toQueryString } from "./qs.mjs";
@@ -0,0 +1 @@
1
+ export declare function join(base: string, ...segments: string[]): string;
@@ -0,0 +1,65 @@
1
+ export function join(base, ...segments) {
2
+ if (!base) {
3
+ return "";
4
+ }
5
+ if (segments.length === 0) {
6
+ return base;
7
+ }
8
+ if (base.includes("://")) {
9
+ let url;
10
+ try {
11
+ url = new URL(base);
12
+ }
13
+ catch (_a) {
14
+ return joinPath(base, ...segments);
15
+ }
16
+ const lastSegment = segments[segments.length - 1];
17
+ const shouldPreserveTrailingSlash = lastSegment === null || lastSegment === void 0 ? void 0 : lastSegment.endsWith("/");
18
+ for (const segment of segments) {
19
+ const cleanSegment = trimSlashes(segment);
20
+ if (cleanSegment) {
21
+ url.pathname = joinPathSegments(url.pathname, cleanSegment);
22
+ }
23
+ }
24
+ if (shouldPreserveTrailingSlash && !url.pathname.endsWith("/")) {
25
+ url.pathname += "/";
26
+ }
27
+ return url.toString();
28
+ }
29
+ return joinPath(base, ...segments);
30
+ }
31
+ function joinPath(base, ...segments) {
32
+ if (segments.length === 0) {
33
+ return base;
34
+ }
35
+ let result = base;
36
+ const lastSegment = segments[segments.length - 1];
37
+ const shouldPreserveTrailingSlash = lastSegment === null || lastSegment === void 0 ? void 0 : lastSegment.endsWith("/");
38
+ for (const segment of segments) {
39
+ const cleanSegment = trimSlashes(segment);
40
+ if (cleanSegment) {
41
+ result = joinPathSegments(result, cleanSegment);
42
+ }
43
+ }
44
+ if (shouldPreserveTrailingSlash && !result.endsWith("/")) {
45
+ result += "/";
46
+ }
47
+ return result;
48
+ }
49
+ function joinPathSegments(left, right) {
50
+ if (left.endsWith("/")) {
51
+ return left + right;
52
+ }
53
+ return `${left}/${right}`;
54
+ }
55
+ function trimSlashes(str) {
56
+ if (!str)
57
+ return str;
58
+ let start = 0;
59
+ let end = str.length;
60
+ if (str.startsWith("/"))
61
+ start = 1;
62
+ if (str.endsWith("/"))
63
+ end = str.length - 1;
64
+ return start === 0 && end === str.length ? str : str.slice(start, end);
65
+ }
@@ -0,0 +1,6 @@
1
+ interface QueryStringOptions {
2
+ arrayFormat?: "indices" | "repeat";
3
+ encode?: boolean;
4
+ }
5
+ export declare function toQueryString(obj: unknown, options?: QueryStringOptions): string;
6
+ export {};
@@ -0,0 +1,61 @@
1
+ const defaultQsOptions = {
2
+ arrayFormat: "indices",
3
+ encode: true,
4
+ };
5
+ function encodeValue(value, shouldEncode) {
6
+ if (value === undefined) {
7
+ return "";
8
+ }
9
+ if (value === null) {
10
+ return "";
11
+ }
12
+ const stringValue = String(value);
13
+ return shouldEncode ? encodeURIComponent(stringValue) : stringValue;
14
+ }
15
+ function stringifyObject(obj, prefix = "", options) {
16
+ const parts = [];
17
+ for (const [key, value] of Object.entries(obj)) {
18
+ const fullKey = prefix ? `${prefix}[${key}]` : key;
19
+ if (value === undefined) {
20
+ continue;
21
+ }
22
+ if (Array.isArray(value)) {
23
+ if (value.length === 0) {
24
+ continue;
25
+ }
26
+ for (let i = 0; i < value.length; i++) {
27
+ const item = value[i];
28
+ if (item === undefined) {
29
+ continue;
30
+ }
31
+ if (typeof item === "object" && !Array.isArray(item) && item !== null) {
32
+ const arrayKey = options.arrayFormat === "indices" ? `${fullKey}[${i}]` : fullKey;
33
+ parts.push(...stringifyObject(item, arrayKey, options));
34
+ }
35
+ else {
36
+ const arrayKey = options.arrayFormat === "indices" ? `${fullKey}[${i}]` : fullKey;
37
+ const encodedKey = options.encode ? encodeURIComponent(arrayKey) : arrayKey;
38
+ parts.push(`${encodedKey}=${encodeValue(item, options.encode)}`);
39
+ }
40
+ }
41
+ }
42
+ else if (typeof value === "object" && value !== null) {
43
+ if (Object.keys(value).length === 0) {
44
+ continue;
45
+ }
46
+ parts.push(...stringifyObject(value, fullKey, options));
47
+ }
48
+ else {
49
+ const encodedKey = options.encode ? encodeURIComponent(fullKey) : fullKey;
50
+ parts.push(`${encodedKey}=${encodeValue(value, options.encode)}`);
51
+ }
52
+ }
53
+ return parts;
54
+ }
55
+ export function toQueryString(obj, options) {
56
+ if (obj == null || typeof obj !== "object") {
57
+ return "";
58
+ }
59
+ const parts = stringifyObject(obj, "", Object.assign(Object.assign({}, defaultQsOptions), options));
60
+ return parts.join("&");
61
+ }
@@ -0,0 +1,4 @@
1
+ export declare const PulseEnvironment: {
2
+ readonly Default: "https://api.pulse.dev";
3
+ };
4
+ export type PulseEnvironment = typeof PulseEnvironment.Default;
@@ -0,0 +1,4 @@
1
+ // This file was auto-generated by Fern from our API Definition.
2
+ export const PulseEnvironment = {
3
+ Default: "https://api.pulse.dev",
4
+ };
@@ -0,0 +1,12 @@
1
+ import type * as core from "../core/index.mjs";
2
+ export declare class PulseError extends Error {
3
+ readonly statusCode?: number;
4
+ readonly body?: unknown;
5
+ readonly rawResponse?: core.RawResponse;
6
+ constructor({ message, statusCode, body, rawResponse, }: {
7
+ message?: string;
8
+ statusCode?: number;
9
+ body?: unknown;
10
+ rawResponse?: core.RawResponse;
11
+ });
12
+ }
@@ -0,0 +1,28 @@
1
+ // This file was auto-generated by Fern from our API Definition.
2
+ import { toJson } from "../core/json.mjs";
3
+ export class PulseError extends Error {
4
+ constructor({ message, statusCode, body, rawResponse, }) {
5
+ super(buildMessage({ message, statusCode, body }));
6
+ Object.setPrototypeOf(this, new.target.prototype);
7
+ if (Error.captureStackTrace) {
8
+ Error.captureStackTrace(this, this.constructor);
9
+ }
10
+ this.name = this.constructor.name;
11
+ this.statusCode = statusCode;
12
+ this.body = body;
13
+ this.rawResponse = rawResponse;
14
+ }
15
+ }
16
+ function buildMessage({ message, statusCode, body, }) {
17
+ const lines = [];
18
+ if (message != null) {
19
+ lines.push(message);
20
+ }
21
+ if (statusCode != null) {
22
+ lines.push(`Status code: ${statusCode.toString()}`);
23
+ }
24
+ if (body != null) {
25
+ lines.push(`Body: ${toJson(body, undefined, 2)}`);
26
+ }
27
+ return lines.join("\n");
28
+ }