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
@@ -7,6 +7,8 @@ import * as Intercom from "../../../index";
7
7
  export declare namespace Segments {
8
8
  interface Options {
9
9
  environment?: core.Supplier<environments.IntercomEnvironment | string>;
10
+ /** Specify a custom URL to connect the client to. */
11
+ baseUrl?: core.Supplier<string>;
10
12
  token?: core.Supplier<core.BearerToken | undefined>;
11
13
  /** Override the Intercom-Version header */
12
14
  version?: "1.0" | "1.1" | "1.2" | "1.3" | "1.4" | "2.0" | "2.1" | "2.2" | "2.3" | "2.4" | "2.5" | "2.6" | "2.7" | "2.8" | "2.9" | "2.10" | "2.11" | "Unstable";
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
18
18
  }) : function(o, v) {
19
19
  o["default"] = v;
20
20
  });
21
- var __importStar = (this && this.__importStar) || function (mod) {
22
- if (mod && mod.__esModule) return mod;
23
- var result = {};
24
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
- __setModuleDefault(result, mod);
26
- return result;
27
- };
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
28
38
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
29
39
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
30
40
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -62,18 +72,18 @@ class Segments {
62
72
  * @example
63
73
  * await client.segments.list()
64
74
  */
65
- list(request = {}, requestOptions) {
66
- var _a, _b, _c, _d, _e;
67
- return __awaiter(this, void 0, void 0, function* () {
75
+ list() {
76
+ return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
77
+ var _a, _b, _c, _d, _e, _f;
68
78
  const { include_count: includeCount } = request;
69
79
  const _queryParams = {};
70
80
  if (includeCount != null) {
71
81
  _queryParams["include_count"] = includeCount.toString();
72
82
  }
73
83
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
74
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, "segments"),
84
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, "segments"),
75
85
  method: "GET",
76
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
86
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
77
87
  contentType: "application/json",
78
88
  queryParameters: _queryParams,
79
89
  requestType: "json",
@@ -125,13 +135,13 @@ class Segments {
125
135
  * })
126
136
  */
127
137
  find(request, requestOptions) {
128
- var _a, _b, _c, _d, _e;
129
138
  return __awaiter(this, void 0, void 0, function* () {
139
+ var _a, _b, _c, _d, _e, _f;
130
140
  const { segment_id: segmentId } = request;
131
141
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
132
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, `segments/${encodeURIComponent(segmentId)}`),
142
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, `segments/${encodeURIComponent(segmentId)}`),
133
143
  method: "GET",
134
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
144
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
135
145
  contentType: "application/json",
136
146
  requestType: "json",
137
147
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 20000,
@@ -170,12 +180,12 @@ class Segments {
170
180
  });
171
181
  }
172
182
  _getAuthorizationHeader() {
173
- var _a;
174
183
  return __awaiter(this, void 0, void 0, function* () {
184
+ var _a;
175
185
  const bearer = (_a = (yield core.Supplier.get(this._options.token))) !== null && _a !== void 0 ? _a : process === null || process === void 0 ? void 0 : process.env["INTERCOM_API_KEY"];
176
186
  if (bearer == null) {
177
187
  throw new errors.IntercomError({
178
- message: "Please specify INTERCOM_API_KEY when instantiating the client.",
188
+ message: "Please specify a bearer by either passing it in to the constructor or initializing a INTERCOM_API_KEY environment variable",
179
189
  });
180
190
  }
181
191
  return `Bearer ${bearer}`;
@@ -10,4 +10,4 @@ var Segment;
10
10
  Contact: "contact",
11
11
  User: "user",
12
12
  };
13
- })(Segment = exports.Segment || (exports.Segment = {}));
13
+ })(Segment || (exports.Segment = Segment = {}));
@@ -7,6 +7,8 @@ import * as Intercom from "../../../index";
7
7
  export declare namespace SubscriptionTypes {
8
8
  interface Options {
9
9
  environment?: core.Supplier<environments.IntercomEnvironment | string>;
10
+ /** Specify a custom URL to connect the client to. */
11
+ baseUrl?: core.Supplier<string>;
10
12
  token?: core.Supplier<core.BearerToken | undefined>;
11
13
  /** Override the Intercom-Version header */
12
14
  version?: "1.0" | "1.1" | "1.2" | "1.3" | "1.4" | "2.0" | "2.1" | "2.2" | "2.3" | "2.4" | "2.5" | "2.6" | "2.7" | "2.8" | "2.9" | "2.10" | "2.11" | "Unstable";
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
18
18
  }) : function(o, v) {
19
19
  o["default"] = v;
20
20
  });
21
- var __importStar = (this && this.__importStar) || function (mod) {
22
- if (mod && mod.__esModule) return mod;
23
- var result = {};
24
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
- __setModuleDefault(result, mod);
26
- return result;
27
- };
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
28
38
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
29
39
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
30
40
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -62,12 +72,12 @@ class SubscriptionTypes {
62
72
  * await client.subscriptionTypes.list()
63
73
  */
64
74
  list(requestOptions) {
65
- var _a, _b, _c, _d, _e;
66
75
  return __awaiter(this, void 0, void 0, function* () {
76
+ var _a, _b, _c, _d, _e, _f;
67
77
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
68
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, "subscription_types"),
78
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, "subscription_types"),
69
79
  method: "GET",
70
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
80
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
71
81
  contentType: "application/json",
72
82
  requestType: "json",
73
83
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 20000,
@@ -104,12 +114,12 @@ class SubscriptionTypes {
104
114
  });
105
115
  }
106
116
  _getAuthorizationHeader() {
107
- var _a;
108
117
  return __awaiter(this, void 0, void 0, function* () {
118
+ var _a;
109
119
  const bearer = (_a = (yield core.Supplier.get(this._options.token))) !== null && _a !== void 0 ? _a : process === null || process === void 0 ? void 0 : process.env["INTERCOM_API_KEY"];
110
120
  if (bearer == null) {
111
121
  throw new errors.IntercomError({
112
- message: "Please specify INTERCOM_API_KEY when instantiating the client.",
122
+ message: "Please specify a bearer by either passing it in to the constructor or initializing a INTERCOM_API_KEY environment variable",
113
123
  });
114
124
  }
115
125
  return `Bearer ${bearer}`;
@@ -22,4 +22,4 @@ var SubscriptionType;
22
22
  SmsMessage: "sms_message",
23
23
  };
24
24
  })(ContentTypes = SubscriptionType.ContentTypes || (SubscriptionType.ContentTypes = {}));
25
- })(SubscriptionType = exports.SubscriptionType || (exports.SubscriptionType = {}));
25
+ })(SubscriptionType || (exports.SubscriptionType = SubscriptionType = {}));
@@ -7,6 +7,8 @@ import * as Intercom from "../../../index";
7
7
  export declare namespace Tags {
8
8
  interface Options {
9
9
  environment?: core.Supplier<environments.IntercomEnvironment | string>;
10
+ /** Specify a custom URL to connect the client to. */
11
+ baseUrl?: core.Supplier<string>;
10
12
  token?: core.Supplier<core.BearerToken | undefined>;
11
13
  /** Override the Intercom-Version header */
12
14
  version?: "1.0" | "1.1" | "1.2" | "1.3" | "1.4" | "2.0" | "2.1" | "2.2" | "2.3" | "2.4" | "2.5" | "2.6" | "2.7" | "2.8" | "2.9" | "2.10" | "2.11" | "Unstable";
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
18
18
  }) : function(o, v) {
19
19
  o["default"] = v;
20
20
  });
21
- var __importStar = (this && this.__importStar) || function (mod) {
22
- if (mod && mod.__esModule) return mod;
23
- var result = {};
24
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
- __setModuleDefault(result, mod);
26
- return result;
27
- };
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
28
38
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
29
39
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
30
40
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -84,13 +94,13 @@ class Tags {
84
94
  * })
85
95
  */
86
96
  tagContact(request, requestOptions) {
87
- var _a, _b, _c, _d, _e;
88
97
  return __awaiter(this, void 0, void 0, function* () {
98
+ var _a, _b, _c, _d, _e, _f;
89
99
  const { contact_id: contactId } = request, _body = __rest(request, ["contact_id"]);
90
100
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
91
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, `contacts/${encodeURIComponent(contactId)}/tags`),
101
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, `contacts/${encodeURIComponent(contactId)}/tags`),
92
102
  method: "POST",
93
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
103
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
94
104
  contentType: "application/json",
95
105
  requestType: "json",
96
106
  body: _body,
@@ -145,13 +155,13 @@ class Tags {
145
155
  * })
146
156
  */
147
157
  untagContact(request, requestOptions) {
148
- var _a, _b, _c, _d, _e;
149
158
  return __awaiter(this, void 0, void 0, function* () {
159
+ var _a, _b, _c, _d, _e, _f;
150
160
  const { contact_id: contactId, tag_id: tagId } = request;
151
161
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
152
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, `contacts/${encodeURIComponent(contactId)}/tags/${encodeURIComponent(tagId)}`),
162
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, `contacts/${encodeURIComponent(contactId)}/tags/${encodeURIComponent(tagId)}`),
153
163
  method: "DELETE",
154
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
164
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
155
165
  contentType: "application/json",
156
166
  requestType: "json",
157
167
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 20000,
@@ -206,13 +216,13 @@ class Tags {
206
216
  * })
207
217
  */
208
218
  tagConversation(request, requestOptions) {
209
- var _a, _b, _c, _d, _e;
210
219
  return __awaiter(this, void 0, void 0, function* () {
220
+ var _a, _b, _c, _d, _e, _f;
211
221
  const { conversation_id: conversationId } = request, _body = __rest(request, ["conversation_id"]);
212
222
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
213
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, `conversations/${encodeURIComponent(conversationId)}/tags`),
223
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, `conversations/${encodeURIComponent(conversationId)}/tags`),
214
224
  method: "POST",
215
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
225
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
216
226
  contentType: "application/json",
217
227
  requestType: "json",
218
228
  body: _body,
@@ -268,13 +278,13 @@ class Tags {
268
278
  * })
269
279
  */
270
280
  untagConversation(request, requestOptions) {
271
- var _a, _b, _c, _d, _e;
272
281
  return __awaiter(this, void 0, void 0, function* () {
282
+ var _a, _b, _c, _d, _e, _f;
273
283
  const { conversation_id: conversationId, tag_id: tagId } = request, _body = __rest(request, ["conversation_id", "tag_id"]);
274
284
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
275
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, `conversations/${encodeURIComponent(conversationId)}/tags/${encodeURIComponent(tagId)}`),
285
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, `conversations/${encodeURIComponent(conversationId)}/tags/${encodeURIComponent(tagId)}`),
276
286
  method: "DELETE",
277
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
287
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
278
288
  contentType: "application/json",
279
289
  requestType: "json",
280
290
  body: _body,
@@ -324,12 +334,12 @@ class Tags {
324
334
  * await client.tags.list()
325
335
  */
326
336
  list(requestOptions) {
327
- var _a, _b, _c, _d, _e;
328
337
  return __awaiter(this, void 0, void 0, function* () {
338
+ var _a, _b, _c, _d, _e, _f;
329
339
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
330
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, "tags"),
340
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, "tags"),
331
341
  method: "GET",
332
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
342
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
333
343
  contentType: "application/json",
334
344
  requestType: "json",
335
345
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 20000,
@@ -414,12 +424,12 @@ class Tags {
414
424
  * })
415
425
  */
416
426
  create(request, requestOptions) {
417
- var _a, _b, _c, _d, _e;
418
427
  return __awaiter(this, void 0, void 0, function* () {
428
+ var _a, _b, _c, _d, _e, _f;
419
429
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
420
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, "tags"),
430
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, "tags"),
421
431
  method: "POST",
422
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
432
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
423
433
  contentType: "application/json",
424
434
  requestType: "json",
425
435
  body: request,
@@ -476,13 +486,13 @@ class Tags {
476
486
  * })
477
487
  */
478
488
  find(request, requestOptions) {
479
- var _a, _b, _c, _d, _e;
480
489
  return __awaiter(this, void 0, void 0, function* () {
490
+ var _a, _b, _c, _d, _e, _f;
481
491
  const { tag_id: tagId } = request;
482
492
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
483
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, `tags/${encodeURIComponent(tagId)}`),
493
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, `tags/${encodeURIComponent(tagId)}`),
484
494
  method: "GET",
485
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
495
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
486
496
  contentType: "application/json",
487
497
  requestType: "json",
488
498
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 20000,
@@ -536,13 +546,13 @@ class Tags {
536
546
  * })
537
547
  */
538
548
  delete(request, requestOptions) {
539
- var _a, _b, _c, _d, _e;
540
549
  return __awaiter(this, void 0, void 0, function* () {
550
+ var _a, _b, _c, _d, _e, _f;
541
551
  const { tag_id: tagId } = request;
542
552
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
543
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, `tags/${encodeURIComponent(tagId)}`),
553
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, `tags/${encodeURIComponent(tagId)}`),
544
554
  method: "DELETE",
545
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
555
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
546
556
  contentType: "application/json",
547
557
  requestType: "json",
548
558
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 20000,
@@ -599,13 +609,13 @@ class Tags {
599
609
  * })
600
610
  */
601
611
  tagTicket(request, requestOptions) {
602
- var _a, _b, _c, _d, _e;
603
612
  return __awaiter(this, void 0, void 0, function* () {
613
+ var _a, _b, _c, _d, _e, _f;
604
614
  const { ticket_id: ticketId } = request, _body = __rest(request, ["ticket_id"]);
605
615
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
606
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, `tickets/${encodeURIComponent(ticketId)}/tags`),
616
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, `tickets/${encodeURIComponent(ticketId)}/tags`),
607
617
  method: "POST",
608
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
618
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
609
619
  contentType: "application/json",
610
620
  requestType: "json",
611
621
  body: _body,
@@ -661,13 +671,13 @@ class Tags {
661
671
  * })
662
672
  */
663
673
  untagTicket(request, requestOptions) {
664
- var _a, _b, _c, _d, _e;
665
674
  return __awaiter(this, void 0, void 0, function* () {
675
+ var _a, _b, _c, _d, _e, _f;
666
676
  const { ticket_id: ticketId, tag_id: tagId } = request, _body = __rest(request, ["ticket_id", "tag_id"]);
667
677
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
668
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, `tickets/${encodeURIComponent(ticketId)}/tags/${encodeURIComponent(tagId)}`),
678
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, `tickets/${encodeURIComponent(ticketId)}/tags/${encodeURIComponent(tagId)}`),
669
679
  method: "DELETE",
670
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
680
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
671
681
  contentType: "application/json",
672
682
  requestType: "json",
673
683
  body: _body,
@@ -707,12 +717,12 @@ class Tags {
707
717
  });
708
718
  }
709
719
  _getAuthorizationHeader() {
710
- var _a;
711
720
  return __awaiter(this, void 0, void 0, function* () {
721
+ var _a;
712
722
  const bearer = (_a = (yield core.Supplier.get(this._options.token))) !== null && _a !== void 0 ? _a : process === null || process === void 0 ? void 0 : process.env["INTERCOM_API_KEY"];
713
723
  if (bearer == null) {
714
724
  throw new errors.IntercomError({
715
- message: "Please specify INTERCOM_API_KEY when instantiating the client.",
725
+ message: "Please specify a bearer by either passing it in to the constructor or initializing a INTERCOM_API_KEY environment variable",
716
726
  });
717
727
  }
718
728
  return `Bearer ${bearer}`;
@@ -2,4 +2,4 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Intercom from "../../../index";
5
- export declare type TagsCreateRequestBody = Intercom.CreateOrUpdateTagRequest | Intercom.TagCompanyRequest | Intercom.UntagCompanyRequest | Intercom.TagMultipleUsersRequest;
5
+ export type TagsCreateRequestBody = Intercom.CreateOrUpdateTagRequest | Intercom.TagCompanyRequest | Intercom.UntagCompanyRequest | Intercom.TagMultipleUsersRequest;
@@ -7,6 +7,8 @@ import * as Intercom from "../../../index";
7
7
  export declare namespace Teams {
8
8
  interface Options {
9
9
  environment?: core.Supplier<environments.IntercomEnvironment | string>;
10
+ /** Specify a custom URL to connect the client to. */
11
+ baseUrl?: core.Supplier<string>;
10
12
  token?: core.Supplier<core.BearerToken | undefined>;
11
13
  /** Override the Intercom-Version header */
12
14
  version?: "1.0" | "1.1" | "1.2" | "1.3" | "1.4" | "2.0" | "2.1" | "2.2" | "2.3" | "2.4" | "2.5" | "2.6" | "2.7" | "2.8" | "2.9" | "2.10" | "2.11" | "Unstable";
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
18
18
  }) : function(o, v) {
19
19
  o["default"] = v;
20
20
  });
21
- var __importStar = (this && this.__importStar) || function (mod) {
22
- if (mod && mod.__esModule) return mod;
23
- var result = {};
24
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
- __setModuleDefault(result, mod);
26
- return result;
27
- };
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
28
38
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
29
39
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
30
40
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -62,12 +72,12 @@ class Teams {
62
72
  * await client.teams.list()
63
73
  */
64
74
  list(requestOptions) {
65
- var _a, _b, _c, _d, _e;
66
75
  return __awaiter(this, void 0, void 0, function* () {
76
+ var _a, _b, _c, _d, _e, _f;
67
77
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
68
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, "teams"),
78
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, "teams"),
69
79
  method: "GET",
70
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
80
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
71
81
  contentType: "application/json",
72
82
  requestType: "json",
73
83
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 20000,
@@ -118,13 +128,13 @@ class Teams {
118
128
  * })
119
129
  */
120
130
  find(request, requestOptions) {
121
- var _a, _b, _c, _d, _e;
122
131
  return __awaiter(this, void 0, void 0, function* () {
132
+ var _a, _b, _c, _d, _e, _f;
123
133
  const { team_id: teamId } = request;
124
134
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
125
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.IntercomEnvironment.UsProduction, `teams/${encodeURIComponent(teamId)}`),
135
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.IntercomEnvironment.UsProduction, `teams/${encodeURIComponent(teamId)}`),
126
136
  method: "GET",
127
- headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "v6.1.1", "User-Agent": "intercom-client/v6.1.1", "Intercom-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.version) !== null && _e !== void 0 ? _e : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
137
+ headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "intercom-client", "X-Fern-SDK-Version": "6.2.0", "User-Agent": "intercom-client/6.2.0", "Intercom-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.version) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.version) !== null && _f !== void 0 ? _f : "2.11", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
128
138
  contentType: "application/json",
129
139
  requestType: "json",
130
140
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 20000,
@@ -163,12 +173,12 @@ class Teams {
163
173
  });
164
174
  }
165
175
  _getAuthorizationHeader() {
166
- var _a;
167
176
  return __awaiter(this, void 0, void 0, function* () {
177
+ var _a;
168
178
  const bearer = (_a = (yield core.Supplier.get(this._options.token))) !== null && _a !== void 0 ? _a : process === null || process === void 0 ? void 0 : process.env["INTERCOM_API_KEY"];
169
179
  if (bearer == null) {
170
180
  throw new errors.IntercomError({
171
- message: "Please specify INTERCOM_API_KEY when instantiating the client.",
181
+ message: "Please specify a bearer by either passing it in to the constructor or initializing a INTERCOM_API_KEY environment variable",
172
182
  });
173
183
  }
174
184
  return `Bearer ${bearer}`;
@@ -8,6 +8,8 @@ import { Attributes } from "../resources/attributes/client/Client";
8
8
  export declare namespace TicketTypes {
9
9
  interface Options {
10
10
  environment?: core.Supplier<environments.IntercomEnvironment | string>;
11
+ /** Specify a custom URL to connect the client to. */
12
+ baseUrl?: core.Supplier<string>;
11
13
  token?: core.Supplier<core.BearerToken | undefined>;
12
14
  /** Override the Intercom-Version header */
13
15
  version?: "1.0" | "1.1" | "1.2" | "1.3" | "1.4" | "2.0" | "2.1" | "2.2" | "2.3" | "2.4" | "2.5" | "2.6" | "2.7" | "2.8" | "2.9" | "2.10" | "2.11" | "Unstable";