intercom-client 6.1.1 → 6.2.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 (319) hide show
  1. package/Client.d.ts +2 -0
  2. package/README.md +21 -21
  3. package/api/errors/BadRequestError.js +17 -7
  4. package/api/errors/ForbiddenError.js +17 -7
  5. package/api/errors/NotFoundError.js +17 -7
  6. package/api/errors/UnauthorizedError.js +17 -7
  7. package/api/errors/UnprocessableEntityError.js +17 -7
  8. package/api/resources/admins/client/Client.d.ts +2 -0
  9. package/api/resources/admins/client/Client.js +34 -24
  10. package/api/resources/aiAgent/types/AiAgent.js +1 -1
  11. package/api/resources/aiContentSource/types/ContentSource.js +1 -1
  12. package/api/resources/articles/client/Client.d.ts +2 -0
  13. package/api/resources/articles/client/Client.js +41 -31
  14. package/api/resources/articles/client/requests/CreateArticleRequest.js +1 -1
  15. package/api/resources/articles/client/requests/UpdateArticleRequest.js +1 -1
  16. package/api/resources/articles/types/ArticleListItem.js +1 -1
  17. package/api/resources/articles/types/ArticleSearchHighlights.js +1 -1
  18. package/api/resources/companies/client/Client.d.ts +2 -0
  19. package/api/resources/companies/client/Client.js +60 -50
  20. package/api/resources/contacts/client/Client.d.ts +2 -0
  21. package/api/resources/contacts/client/Client.js +66 -56
  22. package/api/resources/conversations/client/Client.d.ts +2 -0
  23. package/api/resources/conversations/client/Client.js +57 -47
  24. package/api/resources/conversations/client/requests/CreateConversationRequest.js +1 -1
  25. package/api/resources/conversations/types/Conversation.js +1 -1
  26. package/api/resources/conversations/types/ConversationsManageRequestBody.d.ts +1 -1
  27. package/api/resources/dataAttributes/client/Client.d.ts +2 -0
  28. package/api/resources/dataAttributes/client/Client.js +30 -20
  29. package/api/resources/dataAttributes/client/requests/CreateDataAttributeRequest.js +1 -1
  30. package/api/resources/dataAttributes/types/DataAttribute.js +1 -1
  31. package/api/resources/dataAttributes/types/DataAttributesListRequestModel.d.ts +1 -1
  32. package/api/resources/dataExport/client/Client.d.ts +2 -0
  33. package/api/resources/dataExport/client/Client.js +31 -21
  34. package/api/resources/dataExport/types/DataExport.js +1 -1
  35. package/api/resources/events/client/Client.d.ts +2 -0
  36. package/api/resources/events/client/Client.js +30 -20
  37. package/api/resources/helpCenters/client/Client.d.ts +2 -0
  38. package/api/resources/helpCenters/client/Client.js +27 -17
  39. package/api/resources/helpCenters/resources/collections/client/Client.d.ts +2 -0
  40. package/api/resources/helpCenters/resources/collections/client/Client.js +36 -26
  41. package/api/resources/helpCenters/resources/index.js +17 -7
  42. package/api/resources/index.js +17 -7
  43. package/api/resources/messages/client/Client.d.ts +2 -0
  44. package/api/resources/messages/client/Client.js +22 -12
  45. package/api/resources/messages/types/Message.js +1 -1
  46. package/api/resources/news/client/Client.d.ts +2 -12
  47. package/api/resources/news/resources/feeds/client/Client.d.ts +2 -0
  48. package/api/resources/news/resources/feeds/client/Client.js +28 -18
  49. package/api/resources/news/resources/index.js +17 -7
  50. package/api/resources/news/resources/items/client/Client.d.ts +2 -0
  51. package/api/resources/news/resources/items/client/Client.js +34 -24
  52. package/api/resources/news/types/NewsItem.js +1 -1
  53. package/api/resources/notes/client/Client.d.ts +2 -0
  54. package/api/resources/notes/client/Client.js +28 -18
  55. package/api/resources/phoneCallRedirects/client/Client.d.ts +2 -0
  56. package/api/resources/phoneCallRedirects/client/Client.js +22 -12
  57. package/api/resources/segments/client/Client.d.ts +2 -0
  58. package/api/resources/segments/client/Client.js +27 -17
  59. package/api/resources/segments/types/Segment.js +1 -1
  60. package/api/resources/subscriptionTypes/client/Client.d.ts +2 -0
  61. package/api/resources/subscriptionTypes/client/Client.js +22 -12
  62. package/api/resources/subscriptionTypes/types/SubscriptionType.js +1 -1
  63. package/api/resources/tags/client/Client.d.ts +2 -0
  64. package/api/resources/tags/client/Client.js +49 -39
  65. package/api/resources/tags/types/TagsCreateRequestBody.d.ts +1 -1
  66. package/api/resources/teams/client/Client.d.ts +2 -0
  67. package/api/resources/teams/client/Client.js +25 -15
  68. package/api/resources/ticketTypes/client/Client.d.ts +2 -0
  69. package/api/resources/ticketTypes/client/Client.js +31 -21
  70. package/api/resources/ticketTypes/client/requests/CreateTicketTypeRequest.js +1 -1
  71. package/api/resources/ticketTypes/client/requests/UpdateTicketTypeRequest.js +1 -1
  72. package/api/resources/ticketTypes/resources/attributes/client/Client.d.ts +2 -0
  73. package/api/resources/ticketTypes/resources/attributes/client/Client.js +25 -15
  74. package/api/resources/ticketTypes/resources/attributes/client/requests/CreateTicketTypeAttributeRequest.js +1 -1
  75. package/api/resources/ticketTypes/resources/index.js +17 -7
  76. package/api/resources/tickets/client/Client.d.ts +2 -0
  77. package/api/resources/tickets/client/Client.js +34 -24
  78. package/api/resources/tickets/client/requests/UpdateTicketRequest.js +1 -1
  79. package/api/resources/tickets/types/Ticket.js +1 -1
  80. package/api/resources/tickets/types/TicketPart.js +1 -1
  81. package/api/resources/tickets/types/TicketType.js +1 -1
  82. package/api/resources/tickets/types/TicketsReplyRequestBody.d.ts +1 -1
  83. package/api/resources/visitors/client/Client.d.ts +2 -0
  84. package/api/resources/visitors/client/Client.js +28 -18
  85. package/api/types/ActionComponent.d.ts +1 -1
  86. package/api/types/ActivityLog.js +1 -1
  87. package/api/types/AdminReplyConversationRequest.js +1 -1
  88. package/api/types/AdminReplyTicketRequest.js +1 -1
  89. package/api/types/ArticleContent.js +1 -1
  90. package/api/types/AssignConversationRequest.js +1 -1
  91. package/api/types/ButtonComponent.js +1 -1
  92. package/api/types/CheckboxComponent.js +1 -1
  93. package/api/types/Component.d.ts +1 -1
  94. package/api/types/ConfigureRequest.d.ts +1 -1
  95. package/api/types/ConfigureResponse.d.ts +1 -1
  96. package/api/types/ContactReplyConversationRequest.d.ts +1 -1
  97. package/api/types/ContactReplyTicketRequest.d.ts +1 -1
  98. package/api/types/Context.js +1 -1
  99. package/api/types/ConversationSource.js +1 -1
  100. package/api/types/CreateContactRequest.d.ts +1 -1
  101. package/api/types/CreateDataEventRequest.d.ts +1 -1
  102. package/api/types/CreateMessageRequest.d.ts +1 -1
  103. package/api/types/CreateMessageRequest.js +1 -1
  104. package/api/types/CreateTicketReplyWithCommentRequest.d.ts +1 -1
  105. package/api/types/CustomAttributes.d.ts +1 -1
  106. package/api/types/CustomerRequest.d.ts +1 -1
  107. package/api/types/DropdownComponent.js +1 -1
  108. package/api/types/ImageComponent.js +1 -1
  109. package/api/types/InputComponent.js +1 -1
  110. package/api/types/LinkedObject.js +1 -1
  111. package/api/types/MultipleFilterSearchRequest.js +1 -1
  112. package/api/types/MultipleOrSingleFilterSearchRequest.d.ts +1 -1
  113. package/api/types/NewsItemRequest.js +1 -1
  114. package/api/types/RedactConversationRequest.d.ts +1 -1
  115. package/api/types/ReplyConversationRequest.d.ts +1 -1
  116. package/api/types/SingleFilterSearchRequest.js +1 -1
  117. package/api/types/SingleSelectComponent.js +1 -1
  118. package/api/types/SlaApplied.js +1 -1
  119. package/api/types/SpacerComponent.js +1 -1
  120. package/api/types/TextComponent.js +1 -1
  121. package/api/types/TicketCustomAttributes.d.ts +1 -1
  122. package/api/types/TicketPartAuthor.js +1 -1
  123. package/api/types/TicketReply.js +1 -1
  124. package/api/types/TicketRequestCustomAttributes.d.ts +1 -1
  125. package/api/types/TicketTypeAttribute.js +1 -1
  126. package/api/types/UpdateVisitorRequest.d.ts +1 -1
  127. package/api/version.d.ts +1 -1
  128. package/core/auth/BearerToken.d.ts +1 -1
  129. package/core/fetcher/APIResponse.d.ts +1 -1
  130. package/core/fetcher/Fetcher.d.ts +2 -2
  131. package/core/fetcher/Fetcher.js +6 -5
  132. package/core/fetcher/Supplier.d.ts +1 -1
  133. package/core/fetcher/createRequestUrl.d.ts +1 -1
  134. package/core/fetcher/createRequestUrl.js +1 -2
  135. package/core/fetcher/getFetchFn.js +18 -9
  136. package/core/fetcher/getHeader.js +1 -2
  137. package/core/fetcher/getRequestBody.js +5 -5
  138. package/core/fetcher/getResponseBody.js +1 -2
  139. package/core/fetcher/makeRequest.d.ts +1 -1
  140. package/core/fetcher/requestWithRetries.js +4 -5
  141. package/core/fetcher/signals.d.ts +0 -1
  142. package/core/fetcher/signals.js +2 -3
  143. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -1
  144. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
  145. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +1 -1
  146. package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
  147. package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +18 -9
  148. package/core/json.d.ts +15 -0
  149. package/core/json.js +24 -0
  150. package/core/pagination/Page.js +9 -6
  151. package/core/runtime/runtime.d.ts +1 -1
  152. package/core/runtime/runtime.js +51 -41
  153. package/core/utils/setObjectProperty.js +1 -2
  154. package/dist/Client.d.ts +2 -0
  155. package/dist/api/errors/BadRequestError.js +17 -7
  156. package/dist/api/errors/ForbiddenError.js +17 -7
  157. package/dist/api/errors/NotFoundError.js +17 -7
  158. package/dist/api/errors/UnauthorizedError.js +17 -7
  159. package/dist/api/errors/UnprocessableEntityError.js +17 -7
  160. package/dist/api/resources/admins/client/Client.d.ts +2 -0
  161. package/dist/api/resources/admins/client/Client.js +34 -24
  162. package/dist/api/resources/aiAgent/types/AiAgent.js +1 -1
  163. package/dist/api/resources/aiContentSource/types/ContentSource.js +1 -1
  164. package/dist/api/resources/articles/client/Client.d.ts +2 -0
  165. package/dist/api/resources/articles/client/Client.js +41 -31
  166. package/dist/api/resources/articles/client/requests/CreateArticleRequest.js +1 -1
  167. package/dist/api/resources/articles/client/requests/UpdateArticleRequest.js +1 -1
  168. package/dist/api/resources/articles/types/ArticleListItem.js +1 -1
  169. package/dist/api/resources/articles/types/ArticleSearchHighlights.js +1 -1
  170. package/dist/api/resources/companies/client/Client.d.ts +2 -0
  171. package/dist/api/resources/companies/client/Client.js +60 -50
  172. package/dist/api/resources/contacts/client/Client.d.ts +2 -0
  173. package/dist/api/resources/contacts/client/Client.js +66 -56
  174. package/dist/api/resources/conversations/client/Client.d.ts +2 -0
  175. package/dist/api/resources/conversations/client/Client.js +57 -47
  176. package/dist/api/resources/conversations/client/requests/CreateConversationRequest.js +1 -1
  177. package/dist/api/resources/conversations/types/Conversation.js +1 -1
  178. package/dist/api/resources/conversations/types/ConversationsManageRequestBody.d.ts +1 -1
  179. package/dist/api/resources/dataAttributes/client/Client.d.ts +2 -0
  180. package/dist/api/resources/dataAttributes/client/Client.js +30 -20
  181. package/dist/api/resources/dataAttributes/client/requests/CreateDataAttributeRequest.js +1 -1
  182. package/dist/api/resources/dataAttributes/types/DataAttribute.js +1 -1
  183. package/dist/api/resources/dataAttributes/types/DataAttributesListRequestModel.d.ts +1 -1
  184. package/dist/api/resources/dataExport/client/Client.d.ts +2 -0
  185. package/dist/api/resources/dataExport/client/Client.js +31 -21
  186. package/dist/api/resources/dataExport/types/DataExport.js +1 -1
  187. package/dist/api/resources/events/client/Client.d.ts +2 -0
  188. package/dist/api/resources/events/client/Client.js +30 -20
  189. package/dist/api/resources/helpCenters/client/Client.d.ts +2 -0
  190. package/dist/api/resources/helpCenters/client/Client.js +27 -17
  191. package/dist/api/resources/helpCenters/resources/collections/client/Client.d.ts +2 -0
  192. package/dist/api/resources/helpCenters/resources/collections/client/Client.js +36 -26
  193. package/dist/api/resources/helpCenters/resources/index.js +17 -7
  194. package/dist/api/resources/index.js +17 -7
  195. package/dist/api/resources/messages/client/Client.d.ts +2 -0
  196. package/dist/api/resources/messages/client/Client.js +22 -12
  197. package/dist/api/resources/messages/types/Message.js +1 -1
  198. package/dist/api/resources/news/client/Client.d.ts +2 -12
  199. package/dist/api/resources/news/resources/feeds/client/Client.d.ts +2 -0
  200. package/dist/api/resources/news/resources/feeds/client/Client.js +28 -18
  201. package/dist/api/resources/news/resources/index.js +17 -7
  202. package/dist/api/resources/news/resources/items/client/Client.d.ts +2 -0
  203. package/dist/api/resources/news/resources/items/client/Client.js +34 -24
  204. package/dist/api/resources/news/types/NewsItem.js +1 -1
  205. package/dist/api/resources/notes/client/Client.d.ts +2 -0
  206. package/dist/api/resources/notes/client/Client.js +28 -18
  207. package/dist/api/resources/phoneCallRedirects/client/Client.d.ts +2 -0
  208. package/dist/api/resources/phoneCallRedirects/client/Client.js +22 -12
  209. package/dist/api/resources/segments/client/Client.d.ts +2 -0
  210. package/dist/api/resources/segments/client/Client.js +27 -17
  211. package/dist/api/resources/segments/types/Segment.js +1 -1
  212. package/dist/api/resources/subscriptionTypes/client/Client.d.ts +2 -0
  213. package/dist/api/resources/subscriptionTypes/client/Client.js +22 -12
  214. package/dist/api/resources/subscriptionTypes/types/SubscriptionType.js +1 -1
  215. package/dist/api/resources/tags/client/Client.d.ts +2 -0
  216. package/dist/api/resources/tags/client/Client.js +49 -39
  217. package/dist/api/resources/tags/types/TagsCreateRequestBody.d.ts +1 -1
  218. package/dist/api/resources/teams/client/Client.d.ts +2 -0
  219. package/dist/api/resources/teams/client/Client.js +25 -15
  220. package/dist/api/resources/ticketTypes/client/Client.d.ts +2 -0
  221. package/dist/api/resources/ticketTypes/client/Client.js +31 -21
  222. package/dist/api/resources/ticketTypes/client/requests/CreateTicketTypeRequest.js +1 -1
  223. package/dist/api/resources/ticketTypes/client/requests/UpdateTicketTypeRequest.js +1 -1
  224. package/dist/api/resources/ticketTypes/resources/attributes/client/Client.d.ts +2 -0
  225. package/dist/api/resources/ticketTypes/resources/attributes/client/Client.js +25 -15
  226. package/dist/api/resources/ticketTypes/resources/attributes/client/requests/CreateTicketTypeAttributeRequest.js +1 -1
  227. package/dist/api/resources/ticketTypes/resources/index.js +17 -7
  228. package/dist/api/resources/tickets/client/Client.d.ts +2 -0
  229. package/dist/api/resources/tickets/client/Client.js +34 -24
  230. package/dist/api/resources/tickets/client/requests/UpdateTicketRequest.js +1 -1
  231. package/dist/api/resources/tickets/types/Ticket.js +1 -1
  232. package/dist/api/resources/tickets/types/TicketPart.js +1 -1
  233. package/dist/api/resources/tickets/types/TicketType.js +1 -1
  234. package/dist/api/resources/tickets/types/TicketsReplyRequestBody.d.ts +1 -1
  235. package/dist/api/resources/visitors/client/Client.d.ts +2 -0
  236. package/dist/api/resources/visitors/client/Client.js +28 -18
  237. package/dist/api/types/ActionComponent.d.ts +1 -1
  238. package/dist/api/types/ActivityLog.js +1 -1
  239. package/dist/api/types/AdminReplyConversationRequest.js +1 -1
  240. package/dist/api/types/AdminReplyTicketRequest.js +1 -1
  241. package/dist/api/types/ArticleContent.js +1 -1
  242. package/dist/api/types/AssignConversationRequest.js +1 -1
  243. package/dist/api/types/ButtonComponent.js +1 -1
  244. package/dist/api/types/CheckboxComponent.js +1 -1
  245. package/dist/api/types/Component.d.ts +1 -1
  246. package/dist/api/types/ConfigureRequest.d.ts +1 -1
  247. package/dist/api/types/ConfigureResponse.d.ts +1 -1
  248. package/dist/api/types/ContactReplyConversationRequest.d.ts +1 -1
  249. package/dist/api/types/ContactReplyTicketRequest.d.ts +1 -1
  250. package/dist/api/types/Context.js +1 -1
  251. package/dist/api/types/ConversationSource.js +1 -1
  252. package/dist/api/types/CreateContactRequest.d.ts +1 -1
  253. package/dist/api/types/CreateDataEventRequest.d.ts +1 -1
  254. package/dist/api/types/CreateMessageRequest.d.ts +1 -1
  255. package/dist/api/types/CreateMessageRequest.js +1 -1
  256. package/dist/api/types/CreateTicketReplyWithCommentRequest.d.ts +1 -1
  257. package/dist/api/types/CustomAttributes.d.ts +1 -1
  258. package/dist/api/types/CustomerRequest.d.ts +1 -1
  259. package/dist/api/types/DropdownComponent.js +1 -1
  260. package/dist/api/types/ImageComponent.js +1 -1
  261. package/dist/api/types/InputComponent.js +1 -1
  262. package/dist/api/types/LinkedObject.js +1 -1
  263. package/dist/api/types/MultipleFilterSearchRequest.js +1 -1
  264. package/dist/api/types/MultipleOrSingleFilterSearchRequest.d.ts +1 -1
  265. package/dist/api/types/NewsItemRequest.js +1 -1
  266. package/dist/api/types/RedactConversationRequest.d.ts +1 -1
  267. package/dist/api/types/ReplyConversationRequest.d.ts +1 -1
  268. package/dist/api/types/SingleFilterSearchRequest.js +1 -1
  269. package/dist/api/types/SingleSelectComponent.js +1 -1
  270. package/dist/api/types/SlaApplied.js +1 -1
  271. package/dist/api/types/SpacerComponent.js +1 -1
  272. package/dist/api/types/TextComponent.js +1 -1
  273. package/dist/api/types/TicketCustomAttributes.d.ts +1 -1
  274. package/dist/api/types/TicketPartAuthor.js +1 -1
  275. package/dist/api/types/TicketReply.js +1 -1
  276. package/dist/api/types/TicketRequestCustomAttributes.d.ts +1 -1
  277. package/dist/api/types/TicketTypeAttribute.js +1 -1
  278. package/dist/api/types/UpdateVisitorRequest.d.ts +1 -1
  279. package/dist/api/version.d.ts +1 -1
  280. package/dist/core/auth/BearerToken.d.ts +1 -1
  281. package/dist/core/fetcher/APIResponse.d.ts +1 -1
  282. package/dist/core/fetcher/Fetcher.d.ts +2 -2
  283. package/dist/core/fetcher/Fetcher.js +6 -5
  284. package/dist/core/fetcher/Supplier.d.ts +1 -1
  285. package/dist/core/fetcher/createRequestUrl.d.ts +1 -1
  286. package/dist/core/fetcher/createRequestUrl.js +1 -2
  287. package/dist/core/fetcher/getFetchFn.js +18 -9
  288. package/dist/core/fetcher/getHeader.js +1 -2
  289. package/dist/core/fetcher/getRequestBody.js +5 -5
  290. package/dist/core/fetcher/getResponseBody.js +1 -2
  291. package/dist/core/fetcher/makeRequest.d.ts +1 -1
  292. package/dist/core/fetcher/requestWithRetries.js +4 -5
  293. package/dist/core/fetcher/signals.d.ts +0 -1
  294. package/dist/core/fetcher/signals.js +2 -3
  295. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -1
  296. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
  297. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +1 -1
  298. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
  299. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +18 -9
  300. package/dist/core/json.d.ts +15 -0
  301. package/dist/core/json.js +24 -0
  302. package/dist/core/pagination/Page.js +9 -6
  303. package/dist/core/runtime/runtime.d.ts +1 -1
  304. package/dist/core/runtime/runtime.js +51 -41
  305. package/dist/core/utils/setObjectProperty.js +1 -2
  306. package/dist/environments.d.ts +1 -1
  307. package/dist/errors/IntercomError.js +2 -1
  308. package/dist/index.js +17 -7
  309. package/dist/version.d.ts +1 -1
  310. package/dist/version.js +1 -1
  311. package/environments.d.ts +1 -1
  312. package/errors/IntercomError.js +2 -1
  313. package/index.js +17 -7
  314. package/{jest.config.js → jest.config.mjs} +4 -1
  315. package/package.json +16 -16
  316. package/reference.md +32 -32
  317. package/scripts/rename-to-esm-files.js +115 -0
  318. package/version.d.ts +1 -1
  319. package/version.js +1 -1
@@ -1,5 +1,5 @@
1
1
  import { StreamWrapper } from "./chooseStreamWrapper";
2
- declare type EventCallback = (data?: any) => void;
2
+ type EventCallback = (data?: any) => void;
3
3
  export declare class UndiciStreamWrapper<ReadFormat extends Uint8Array | Uint16Array | Uint32Array> implements StreamWrapper<UndiciStreamWrapper<ReadFormat> | WritableStream<ReadFormat>, ReadFormat> {
4
4
  private readableStream;
5
5
  private reader;
@@ -1,4 +1,4 @@
1
- export declare type EventCallback = (data?: any) => void;
1
+ export type EventCallback = (data?: any) => void;
2
2
  export interface StreamWrapper<WritableStream, ReadFormat> {
3
3
  setEncoding(encoding?: string): void;
4
4
  on(event: string, callback: EventCallback): void;
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
26
36
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
27
37
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -32,7 +42,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
32
42
  });
33
43
  };
34
44
  Object.defineProperty(exports, "__esModule", { value: true });
35
- exports.chooseStreamWrapper = void 0;
45
+ exports.chooseStreamWrapper = chooseStreamWrapper;
36
46
  const runtime_1 = require("../../runtime");
37
47
  function chooseStreamWrapper(responseBody) {
38
48
  return __awaiter(this, void 0, void 0, function* () {
@@ -47,4 +57,3 @@ function chooseStreamWrapper(responseBody) {
47
57
  }
48
58
  });
49
59
  }
50
- exports.chooseStreamWrapper = chooseStreamWrapper;
@@ -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,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.toJson = void 0;
4
+ exports.fromJson = fromJson;
5
+ /**
6
+ * Serialize a value to JSON
7
+ * @param value A JavaScript value, usually an object or array, to be converted.
8
+ * @param replacer A function that transforms the results.
9
+ * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
10
+ * @returns JSON string
11
+ */
12
+ const toJson = (value, replacer, space) => {
13
+ return JSON.stringify(value, replacer, space);
14
+ };
15
+ exports.toJson = toJson;
16
+ /**
17
+ * Parse JSON string to object, array, or other type
18
+ * @param text A valid JSON string.
19
+ * @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.
20
+ * @returns Parsed object, array, or other type
21
+ */
22
+ function fromJson(text, reviver) {
23
+ return JSON.parse(text, reviver);
24
+ }
@@ -12,8 +12,9 @@ var __await = (this && this.__await) || function (v) { return this instanceof __
12
12
  var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) {
13
13
  if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
14
14
  var g = generator.apply(thisArg, _arguments || []), i, q = [];
15
- return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
16
- function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
15
+ return i = Object.create((typeof AsyncIterator === "function" ? AsyncIterator : Object).prototype), verb("next"), verb("throw"), verb("return", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;
16
+ function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }
17
+ function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }
17
18
  function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
18
19
  function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
19
20
  function fulfill(value) { resume("next", value); }
@@ -74,17 +75,19 @@ class Page {
74
75
  }
75
76
  [Symbol.asyncIterator]() {
76
77
  return __asyncGenerator(this, arguments, function* _a() {
77
- var e_1, _b;
78
+ var _b, e_1, _c, _d;
78
79
  try {
79
- for (var _c = __asyncValues(this.iterMessages()), _d; _d = yield __await(_c.next()), !_d.done;) {
80
- const message = _d.value;
80
+ for (var _e = true, _f = __asyncValues(this.iterMessages()), _g; _g = yield __await(_f.next()), _b = _g.done, !_b; _e = true) {
81
+ _d = _g.value;
82
+ _e = false;
83
+ const message = _d;
81
84
  yield yield __await(message);
82
85
  }
83
86
  }
84
87
  catch (e_1_1) { e_1 = { error: e_1_1 }; }
85
88
  finally {
86
89
  try {
87
- if (_d && !_d.done && (_b = _c.return)) yield __await(_b.call(_c));
90
+ if (!_e && !_b && (_c = _f.return)) yield __await(_c.call(_f));
88
91
  }
89
92
  finally { if (e_1) throw e_1.error; }
90
93
  }
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export declare const RUNTIME: Runtime;
5
5
  export interface Runtime {
6
- type: "browser" | "web-worker" | "deno" | "bun" | "node" | "react-native" | "unknown" | "workerd";
6
+ type: "browser" | "web-worker" | "deno" | "bun" | "node" | "react-native" | "unknown" | "workerd" | "edge-runtime";
7
7
  version?: string;
8
8
  parsedVersion?: number;
9
9
  }
@@ -1,80 +1,85 @@
1
1
  "use strict";
2
- var _a, _b, _c, _d, _e;
3
2
  Object.defineProperty(exports, "__esModule", { value: true });
4
3
  exports.RUNTIME = void 0;
5
- /**
6
- * A constant that indicates whether the environment the code is running is a Web Browser.
7
- */
8
- const isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined";
9
- /**
10
- * A constant that indicates whether the environment the code is running is a Web Worker.
11
- */
12
- const isWebWorker = typeof self === "object" &&
13
- // @ts-ignore
14
- typeof (self === null || self === void 0 ? void 0 : self.importScripts) === "function" &&
15
- (((_a = self.constructor) === null || _a === void 0 ? void 0 : _a.name) === "DedicatedWorkerGlobalScope" ||
16
- ((_b = self.constructor) === null || _b === void 0 ? void 0 : _b.name) === "ServiceWorkerGlobalScope" ||
17
- ((_c = self.constructor) === null || _c === void 0 ? void 0 : _c.name) === "SharedWorkerGlobalScope");
18
- /**
19
- * A constant that indicates whether the environment the code is running is Deno.
20
- */
21
- const isDeno = typeof Deno !== "undefined" && typeof Deno.version !== "undefined" && typeof Deno.version.deno !== "undefined";
22
- /**
23
- * A constant that indicates whether the environment the code is running is Bun.sh.
24
- */
25
- const isBun = typeof Bun !== "undefined" && typeof Bun.version !== "undefined";
26
- /**
27
- * A constant that indicates whether the environment the code is running is Node.JS.
28
- */
29
- const isNode = typeof process !== "undefined" &&
30
- Boolean(process.version) &&
31
- Boolean((_d = process.versions) === null || _d === void 0 ? void 0 : _d.node) &&
32
- // Deno spoofs process.versions.node, see https://deno.land/std@0.177.0/node/process.ts?s=versions
33
- !isDeno &&
34
- !isBun;
35
- /**
36
- * A constant that indicates whether the environment the code is running is in React-Native.
37
- * https://github.com/facebook/react-native/blob/main/packages/react-native/Libraries/Core/setUpNavigator.js
38
- */
39
- const isReactNative = typeof navigator !== "undefined" && (navigator === null || navigator === void 0 ? void 0 : navigator.product) === "ReactNative";
40
- /**
41
- * A constant that indicates whether the environment the code is running is Cloudflare.
42
- * https://developers.cloudflare.com/workers/runtime-apis/web-standards/#navigatoruseragent
43
- */
44
- const isCloudflare = typeof globalThis !== "undefined" && ((_e = globalThis === null || globalThis === void 0 ? void 0 : globalThis.navigator) === null || _e === void 0 ? void 0 : _e.userAgent) === "Cloudflare-Workers";
45
4
  /**
46
5
  * A constant that indicates which environment and version the SDK is running in.
47
6
  */
48
7
  exports.RUNTIME = evaluateRuntime();
49
8
  function evaluateRuntime() {
9
+ var _a, _b, _c, _d, _e;
10
+ /**
11
+ * A constant that indicates whether the environment the code is running is a Web Browser.
12
+ */
13
+ const isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined";
50
14
  if (isBrowser) {
51
15
  return {
52
16
  type: "browser",
53
17
  version: window.navigator.userAgent,
54
18
  };
55
19
  }
20
+ /**
21
+ * A constant that indicates whether the environment the code is running is Cloudflare.
22
+ * https://developers.cloudflare.com/workers/runtime-apis/web-standards/#navigatoruseragent
23
+ */
24
+ 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";
56
25
  if (isCloudflare) {
57
26
  return {
58
27
  type: "workerd",
59
28
  };
60
29
  }
30
+ /**
31
+ * A constant that indicates whether the environment the code is running is Edge Runtime.
32
+ * https://vercel.com/docs/functions/runtimes/edge-runtime#check-if-you're-running-on-the-edge-runtime
33
+ */
34
+ const isEdgeRuntime = typeof EdgeRuntime === "string";
35
+ if (isEdgeRuntime) {
36
+ return {
37
+ type: "edge-runtime",
38
+ };
39
+ }
40
+ /**
41
+ * A constant that indicates whether the environment the code is running is a Web Worker.
42
+ */
43
+ const isWebWorker = typeof self === "object" &&
44
+ // @ts-ignore
45
+ typeof (self === null || self === void 0 ? void 0 : self.importScripts) === "function" &&
46
+ (((_b = self.constructor) === null || _b === void 0 ? void 0 : _b.name) === "DedicatedWorkerGlobalScope" ||
47
+ ((_c = self.constructor) === null || _c === void 0 ? void 0 : _c.name) === "ServiceWorkerGlobalScope" ||
48
+ ((_d = self.constructor) === null || _d === void 0 ? void 0 : _d.name) === "SharedWorkerGlobalScope");
61
49
  if (isWebWorker) {
62
50
  return {
63
51
  type: "web-worker",
64
52
  };
65
53
  }
54
+ /**
55
+ * A constant that indicates whether the environment the code is running is Deno.
56
+ * FYI Deno spoofs process.versions.node, see https://deno.land/std@0.177.0/node/process.ts?s=versions
57
+ */
58
+ const isDeno = typeof Deno !== "undefined" && typeof Deno.version !== "undefined" && typeof Deno.version.deno !== "undefined";
66
59
  if (isDeno) {
67
60
  return {
68
61
  type: "deno",
69
62
  version: Deno.version.deno,
70
63
  };
71
64
  }
65
+ /**
66
+ * A constant that indicates whether the environment the code is running is Bun.sh.
67
+ */
68
+ const isBun = typeof Bun !== "undefined" && typeof Bun.version !== "undefined";
72
69
  if (isBun) {
73
70
  return {
74
71
  type: "bun",
75
72
  version: Bun.version,
76
73
  };
77
74
  }
75
+ /**
76
+ * A constant that indicates whether the environment the code is running is Node.JS.
77
+ */
78
+ const isNode = typeof process !== "undefined" &&
79
+ "version" in process &&
80
+ !!process.version &&
81
+ "versions" in process &&
82
+ !!((_e = process.versions) === null || _e === void 0 ? void 0 : _e.node);
78
83
  if (isNode) {
79
84
  return {
80
85
  type: "node",
@@ -82,6 +87,11 @@ function evaluateRuntime() {
82
87
  parsedVersion: Number(process.versions.node.split(".")[0]),
83
88
  };
84
89
  }
90
+ /**
91
+ * A constant that indicates whether the environment the code is running is in React-Native.
92
+ * https://github.com/facebook/react-native/blob/main/packages/react-native/Libraries/Core/setUpNavigator.js
93
+ */
94
+ const isReactNative = typeof navigator !== "undefined" && (navigator === null || navigator === void 0 ? void 0 : navigator.product) === "ReactNative";
85
95
  if (isReactNative) {
86
96
  return {
87
97
  type: "react-native",
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.setObjectProperty = void 0;
3
+ exports.setObjectProperty = setObjectProperty;
4
4
  /**
5
5
  * Sets the value at path of object. If a portion of path doesn’t exist it’s created. This is
6
6
  * inspired by Lodash's set function, but is simplified to accommodate our use case.
@@ -40,4 +40,3 @@ function setObjectProperty(object, path, value) {
40
40
  current[lastKey] = value;
41
41
  return object;
42
42
  }
43
- exports.setObjectProperty = setObjectProperty;
@@ -6,4 +6,4 @@ export declare const IntercomEnvironment: {
6
6
  readonly EuProduction: "https://api.eu.intercom.io";
7
7
  readonly AuProduction: "https://api.au.intercom.io";
8
8
  };
9
- export declare type IntercomEnvironment = typeof IntercomEnvironment.UsProduction | typeof IntercomEnvironment.EuProduction | typeof IntercomEnvironment.AuProduction;
9
+ export type IntercomEnvironment = typeof IntercomEnvironment.UsProduction | typeof IntercomEnvironment.EuProduction | typeof IntercomEnvironment.AuProduction;
@@ -4,6 +4,7 @@
4
4
  */
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.IntercomError = void 0;
7
+ const json_1 = require("../core/json");
7
8
  class IntercomError extends Error {
8
9
  constructor({ message, statusCode, body }) {
9
10
  super(buildMessage({ message, statusCode, body }));
@@ -26,7 +27,7 @@ function buildMessage({ message, statusCode, body, }) {
26
27
  lines.push(`Status code: ${statusCode.toString()}`);
27
28
  }
28
29
  if (body != null) {
29
- lines.push(`Body: ${JSON.stringify(body, undefined, 2)}`);
30
+ lines.push(`Body: ${(0, json_1.toJson)(body, undefined, 2)}`);
30
31
  }
31
32
  return lines.join("\n");
32
33
  }
package/dist/index.js CHANGED
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  Object.defineProperty(exports, "__esModule", { value: true });
26
36
  exports.IntercomTimeoutError = exports.IntercomError = exports.IntercomEnvironment = exports.IntercomClient = exports.Intercom = void 0;
27
37
  exports.Intercom = __importStar(require("./api"));
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "v6.1.1";
1
+ export declare const SDK_VERSION = "6.2.0";
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "v6.1.1";
4
+ exports.SDK_VERSION = "6.2.0";
package/environments.d.ts CHANGED
@@ -6,4 +6,4 @@ export declare const IntercomEnvironment: {
6
6
  readonly EuProduction: "https://api.eu.intercom.io";
7
7
  readonly AuProduction: "https://api.au.intercom.io";
8
8
  };
9
- export declare type IntercomEnvironment = typeof IntercomEnvironment.UsProduction | typeof IntercomEnvironment.EuProduction | typeof IntercomEnvironment.AuProduction;
9
+ export type IntercomEnvironment = typeof IntercomEnvironment.UsProduction | typeof IntercomEnvironment.EuProduction | typeof IntercomEnvironment.AuProduction;
@@ -4,6 +4,7 @@
4
4
  */
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.IntercomError = void 0;
7
+ const json_1 = require("../core/json");
7
8
  class IntercomError extends Error {
8
9
  constructor({ message, statusCode, body }) {
9
10
  super(buildMessage({ message, statusCode, body }));
@@ -26,7 +27,7 @@ function buildMessage({ message, statusCode, body, }) {
26
27
  lines.push(`Status code: ${statusCode.toString()}`);
27
28
  }
28
29
  if (body != null) {
29
- lines.push(`Body: ${JSON.stringify(body, undefined, 2)}`);
30
+ lines.push(`Body: ${(0, json_1.toJson)(body, undefined, 2)}`);
30
31
  }
31
32
  return lines.join("\n");
32
33
  }
package/index.js CHANGED
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  Object.defineProperty(exports, "__esModule", { value: true });
26
36
  exports.IntercomTimeoutError = exports.IntercomError = exports.IntercomEnvironment = exports.IntercomClient = exports.Intercom = void 0;
27
37
  exports.Intercom = __importStar(require("./api"));
@@ -1,5 +1,8 @@
1
1
  /** @type {import('jest').Config} */
2
- module.exports = {
2
+ export default {
3
3
  preset: "ts-jest",
4
4
  testEnvironment: "node",
5
+ moduleNameMapper: {
6
+ "(.+)\.js$": "$1",
7
+ },
5
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intercom-client",
3
- "version": "v6.1.1",
3
+ "version": "6.2.0",
4
4
  "private": false,
5
5
  "repository": "https://github.com/intercom/intercom-node",
6
6
  "main": "./index.js",
@@ -15,25 +15,25 @@
15
15
  "url-join": "4.0.1",
16
16
  "form-data": "^4.0.0",
17
17
  "formdata-node": "^6.0.3",
18
- "node-fetch": "2.7.0",
19
- "qs": "6.11.2",
18
+ "node-fetch": "^2.7.0",
19
+ "qs": "^6.13.1",
20
20
  "readable-stream": "^4.5.2",
21
- "js-base64": "3.7.2"
21
+ "js-base64": "3.7.7"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@types/url-join": "4.0.1",
25
- "@types/qs": "6.9.8",
26
- "@types/node-fetch": "2.6.9",
27
- "@types/readable-stream": "^4.0.15",
28
- "webpack": "^5.94.0",
29
- "ts-loader": "^9.3.1",
30
- "jest": "29.7.0",
31
- "@types/jest": "29.5.5",
32
- "ts-jest": "29.1.1",
33
- "jest-environment-jsdom": "29.7.0",
34
- "@types/node": "17.0.33",
35
- "prettier": "2.7.1",
36
- "typescript": "4.6.4"
25
+ "@types/qs": "^6.9.17",
26
+ "@types/node-fetch": "^2.6.12",
27
+ "@types/readable-stream": "^4.0.18",
28
+ "webpack": "^5.97.1",
29
+ "ts-loader": "^9.5.1",
30
+ "jest": "^29.7.0",
31
+ "@types/jest": "^29.5.14",
32
+ "ts-jest": "^29.1.1",
33
+ "jest-environment-jsdom": "^29.7.0",
34
+ "@types/node": "^18.19.70",
35
+ "prettier": "^3.4.2",
36
+ "typescript": "~5.7.2"
37
37
  },
38
38
  "browser": {
39
39
  "fs": false,
package/reference.md CHANGED
@@ -1457,9 +1457,9 @@ while (page.hasNextPage()) {
1457
1457
 
1458
1458
  The `list all companies` functionality does not work well for huge datasets, and can result in errors and performance problems when paging deeply. The Scroll API provides an efficient mechanism for iterating over all companies in a dataset.
1459
1459
 
1460
- - Each app can only have 1 scroll open at a time. You'll get an error message if you try to have more than one open per app.
1461
- - If the scroll isn't used for 1 minute, it expires and calls with that scroll param will fail
1462
- - If the end of the scroll is reached, "companies" will be empty and the scroll parameter will expire
1460
+ - Each app can only have 1 scroll open at a time. You'll get an error message if you try to have more than one open per app.
1461
+ - If the scroll isn't used for 1 minute, it expires and calls with that scroll param will fail
1462
+ - If the end of the scroll is reached, "companies" will be empty and the scroll parameter will expire
1463
1463
 
1464
1464
  {% admonition type="info" name="Scroll Parameter" %}
1465
1465
  You can get the first page of companies by simply sending a GET request to the scroll endpoint.
@@ -2376,8 +2376,8 @@ If a contact has recently been created, there is a possibility that it will not
2376
2376
  You can nest these filters in order to get even more granular insights that pinpoint exactly what you need. Example: (1 OR 2) AND (3 OR 4).
2377
2377
  There are some limitations to the amount of multiple's there can be:
2378
2378
 
2379
- - There's a limit of max 2 nested filters
2380
- - There's a limit of max 15 filters for each AND or OR group
2379
+ - There's a limit of max 2 nested filters
2380
+ - There's a limit of max 15 filters for each AND or OR group
2381
2381
 
2382
2382
  ### Searching for Timestamp Fields
2383
2383
 
@@ -4023,8 +4023,8 @@ See the [pagination section](https://developers.intercom.com/docs/build-an-integ
4023
4023
  You can nest these filters in order to get even more granular insights that pinpoint exactly what you need. Example: (1 OR 2) AND (3 OR 4).
4024
4024
  There are some limitations to the amount of multiple's there can be:
4025
4025
 
4026
- - There's a limit of max 2 nested filters
4027
- - There's a limit of max 15 filters for each AND or OR group
4026
+ - There's a limit of max 2 nested filters
4027
+ - There's a limit of max 15 filters for each AND or OR group
4028
4028
 
4029
4029
  ### Accepted Fields
4030
4030
 
@@ -4278,14 +4278,14 @@ await client.conversations.reply({
4278
4278
 
4279
4279
  For managing conversations you can:
4280
4280
 
4281
- - Close a conversation
4282
- - Snooze a conversation to reopen on a future date
4283
- - Open a conversation which is `snoozed` or `closed`
4284
- - Assign a conversation to an admin and/or team.
4285
- </dd>
4286
- </dl>
4287
- </dd>
4288
- </dl>
4281
+ - Close a conversation
4282
+ - Snooze a conversation to reopen on a future date
4283
+ - Open a conversation which is `snoozed` or `closed`
4284
+ - Assign a conversation to an admin and/or team.
4285
+ </dd>
4286
+ </dl>
4287
+ </dd>
4288
+ </dl>
4289
4289
 
4290
4290
  #### 🔌 Usage
4291
4291
 
@@ -4921,9 +4921,9 @@ await client.dataAttributes.update({
4921
4921
 
4922
4922
  The events belonging to a customer can be listed by sending a GET request to `https://api.intercom.io/events` with a user or lead identifier along with a `type` parameter. The identifier parameter can be one of `user_id`, `email` or `intercom_user_id`. The `type` parameter value must be `user`.
4923
4923
 
4924
- - `https://api.intercom.io/events?type=user&user_id={user_id}`
4925
- - `https://api.intercom.io/events?type=user&email={email}`
4926
- - `https://api.intercom.io/events?type=user&intercom_user_id={id}` (this call can be used to list leads)
4924
+ - `https://api.intercom.io/events?type=user&user_id={user_id}`
4925
+ - `https://api.intercom.io/events?type=user&email={email}`
4926
+ - `https://api.intercom.io/events?type=user&intercom_user_id={id}` (this call can be used to list leads)
4927
4927
 
4928
4928
  The `email` parameter value should be [url encoded](http://en.wikipedia.org/wiki/Percent-encoding) when sending.
4929
4929
 
@@ -5015,9 +5015,9 @@ When submitting events for Leads, you will need to specify the Lead's `id`.
5015
5015
 
5016
5016
  **Metadata behaviour**
5017
5017
 
5018
- - We currently limit the number of tracked metadata keys to 10 per event. Once the quota is reached, we ignore any further keys we receive. The first 10 metadata keys are determined by the order in which they are sent in with the event.
5019
- - It is not possible to change the metadata keys once the event has been sent. A new event will need to be created with the new keys and you can archive the old one.
5020
- - There might be up to 24 hrs delay when you send a new metadata for an existing event.
5018
+ - We currently limit the number of tracked metadata keys to 10 per event. Once the quota is reached, we ignore any further keys we receive. The first 10 metadata keys are determined by the order in which they are sent in with the event.
5019
+ - It is not possible to change the metadata keys once the event has been sent. A new event will need to be created with the new keys and you can archive the old one.
5020
+ - There might be up to 24 hrs delay when you send a new metadata for an existing event.
5021
5021
 
5022
5022
  **Event de-duplication**
5023
5023
 
@@ -5027,15 +5027,15 @@ Duplicated events are responded to using the normal `202 Accepted` code - an err
5027
5027
 
5028
5028
  ### HTTP API Responses
5029
5029
 
5030
- - Successful responses to submitted events return `202 Accepted` with an empty body.
5031
- - Unauthorised access will be rejected with a `401 Unauthorized` or `403 Forbidden` response code.
5032
- - Events sent about users that cannot be found will return a `404 Not Found`.
5033
- - Event lists containing duplicate events will have those duplicates ignored.
5034
- - Server errors will return a `500` response code and may contain an error message in the body.
5035
- </dd>
5036
- </dl>
5037
- </dd>
5038
- </dl>
5030
+ - Successful responses to submitted events return `202 Accepted` with an empty body.
5031
+ - Unauthorised access will be rejected with a `401 Unauthorized` or `403 Forbidden` response code.
5032
+ - Events sent about users that cannot be found will return a `404 Not Found`.
5033
+ - Event lists containing duplicate events will have those duplicates ignored.
5034
+ - Server errors will return a `500` response code and may contain an error message in the body.
5035
+ </dd>
5036
+ </dl>
5037
+ </dd>
5038
+ </dl>
5039
5039
 
5040
5040
  #### 🔌 Usage
5041
5041
 
@@ -6488,8 +6488,8 @@ See the [pagination section](https://developers.intercom.com/docs/build-an-integ
6488
6488
  You can nest these filters in order to get even more granular insights that pinpoint exactly what you need. Example: (1 OR 2) AND (3 OR 4).
6489
6489
  There are some limitations to the amount of multiples there can be:
6490
6490
 
6491
- - There's a limit of max 2 nested filters
6492
- - There's a limit of max 15 filters for each AND or OR group
6491
+ - There's a limit of max 2 nested filters
6492
+ - There's a limit of max 15 filters for each AND or OR group
6493
6493
 
6494
6494
  ### Accepted Fields
6495
6495