@airtop/sdk 0.0.6 → 0.0.7-c

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 (379) hide show
  1. package/Client.d.ts +4 -4
  2. package/Client.js +5 -0
  3. package/README.md +1 -1
  4. package/api/errors/InternalServerError.d.ts +1 -1
  5. package/api/errors/NotFoundError.d.ts +1 -1
  6. package/api/errors/UnprocessableEntityError.d.ts +1 -1
  7. package/api/resources/index.d.ts +2 -0
  8. package/api/resources/index.js +3 -1
  9. package/api/resources/profiles/client/Client.d.ts +4 -6
  10. package/api/resources/profiles/client/Client.js +23 -20
  11. package/api/resources/sessions/client/Client.d.ts +9 -65
  12. package/api/resources/sessions/client/Client.js +37 -365
  13. package/api/resources/sessions/client/requests/SessionRestInputV1.d.ts +0 -2
  14. package/api/resources/sessions/client/requests/index.d.ts +0 -3
  15. package/api/resources/windows/client/Client.d.ts +69 -0
  16. package/api/resources/windows/client/Client.js +318 -0
  17. package/api/resources/windows/client/index.d.ts +1 -0
  18. package/api/resources/windows/client/index.js +17 -0
  19. package/api/resources/windows/client/requests/GetWindowInfoRequest.d.ts +23 -0
  20. package/api/resources/windows/client/requests/PromptContentRequest.d.ts +18 -0
  21. package/api/resources/windows/client/requests/SummarizeContentRequest.d.ts +14 -0
  22. package/api/resources/windows/client/requests/index.d.ts +3 -0
  23. package/api/resources/windows/client/requests/index.js +2 -0
  24. package/api/resources/windows/index.d.ts +1 -0
  25. package/api/resources/windows/index.js +17 -0
  26. package/api/types/ClientProvidedResponseMetadata.d.ts +7 -0
  27. package/api/types/DefaultMetaWrapper.d.ts +6 -0
  28. package/api/types/ErrorEnvelope.d.ts +12 -0
  29. package/api/types/ExternalSessionAiResponseMetadata.d.ts +9 -0
  30. package/api/types/{SessionAiResponseDataStatus.d.ts → ExternalSessionAiResponseMetadataStatus.d.ts} +2 -5
  31. package/api/types/{SessionAiResponseDataStatus.js → ExternalSessionAiResponseMetadataStatus.js} +2 -2
  32. package/api/types/ExternalSessionAiResponseMetadataUsage.d.ts +9 -0
  33. package/{dist/api/types/SessionAiResponseIssue.d.ts → api/types/Issue.d.ts} +1 -1
  34. package/api/types/ListProfileV1EnvelopeDefaultMetaWrapper.d.ts +10 -0
  35. package/api/types/ListSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +10 -0
  36. package/api/types/ModelResponse.d.ts +6 -0
  37. package/api/types/ModelResponseExternalSessionAiResponseMetadataWrapper.d.ts +10 -0
  38. package/api/types/ProfileV1EnvelopeDefaultMetaWrapper.d.ts +10 -0
  39. package/api/types/ScrapeModelResponse.d.ts +7 -0
  40. package/api/types/ScrapeModelResponseExternalSessionAiResponseMetadataWrapper.d.ts +10 -0
  41. package/{dist/api/types/CleanScrapeResponseOutput.d.ts → api/types/ScrapeResponseOutput.d.ts} +2 -2
  42. package/api/types/SessionConfig.d.ts +1 -1
  43. package/api/types/SessionConfigV1.d.ts +1 -1
  44. package/api/types/SessionWithConnectionInfo.d.ts +22 -4
  45. package/api/types/SessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +10 -0
  46. package/api/types/Window.d.ts +11 -0
  47. package/api/types/WindowEnvelopeDefaultMetaWrapper.d.ts +10 -0
  48. package/api/types/index.d.ts +18 -20
  49. package/api/types/index.js +18 -20
  50. package/core/auth/BasicAuth.d.ts +8 -0
  51. package/core/auth/BasicAuth.js +26 -0
  52. package/core/auth/BearerToken.d.ts +5 -0
  53. package/core/auth/BearerToken.js +15 -0
  54. package/core/auth/index.d.ts +2 -0
  55. package/core/auth/index.js +7 -0
  56. package/core/index.d.ts +1 -0
  57. package/core/index.js +1 -0
  58. package/dist/Client.d.ts +4 -4
  59. package/dist/Client.js +5 -0
  60. package/dist/api/errors/InternalServerError.d.ts +1 -1
  61. package/dist/api/errors/NotFoundError.d.ts +1 -1
  62. package/dist/api/errors/UnprocessableEntityError.d.ts +1 -1
  63. package/dist/api/resources/index.d.ts +2 -0
  64. package/dist/api/resources/index.js +3 -1
  65. package/dist/api/resources/profiles/client/Client.d.ts +4 -6
  66. package/dist/api/resources/profiles/client/Client.js +23 -20
  67. package/dist/api/resources/sessions/client/Client.d.ts +9 -65
  68. package/dist/api/resources/sessions/client/Client.js +37 -365
  69. package/dist/api/resources/sessions/client/requests/SessionRestInputV1.d.ts +0 -2
  70. package/dist/api/resources/sessions/client/requests/index.d.ts +0 -3
  71. package/dist/api/resources/windows/client/Client.d.ts +69 -0
  72. package/dist/api/resources/windows/client/Client.js +318 -0
  73. package/dist/api/resources/windows/client/index.d.ts +1 -0
  74. package/dist/api/resources/windows/client/index.js +17 -0
  75. package/dist/api/resources/windows/client/requests/GetWindowInfoRequest.d.ts +23 -0
  76. package/dist/api/resources/windows/client/requests/PromptContentRequest.d.ts +18 -0
  77. package/dist/api/resources/windows/client/requests/SummarizeContentRequest.d.ts +14 -0
  78. package/dist/api/resources/windows/client/requests/index.d.ts +3 -0
  79. package/dist/api/resources/windows/client/requests/index.js +2 -0
  80. package/dist/api/resources/windows/index.d.ts +1 -0
  81. package/dist/api/resources/windows/index.js +17 -0
  82. package/dist/api/types/ClientProvidedResponseMetadata.d.ts +7 -0
  83. package/dist/api/types/DefaultMetaWrapper.d.ts +6 -0
  84. package/dist/api/types/ErrorEnvelope.d.ts +12 -0
  85. package/dist/api/types/ExternalSessionAiResponseMetadata.d.ts +9 -0
  86. package/dist/api/types/{SessionAiResponseDataStatus.d.ts → ExternalSessionAiResponseMetadataStatus.d.ts} +2 -5
  87. package/dist/api/types/{CleanScrapeResponseDataStatus.js → ExternalSessionAiResponseMetadataStatus.js} +2 -2
  88. package/dist/api/types/ExternalSessionAiResponseMetadataUsage.d.ts +9 -0
  89. package/{api/types/SessionAiResponseIssue.d.ts → dist/api/types/Issue.d.ts} +1 -1
  90. package/dist/api/types/ListProfileV1EnvelopeDefaultMetaWrapper.d.ts +10 -0
  91. package/dist/api/types/ListSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +10 -0
  92. package/dist/api/types/ModelResponse.d.ts +6 -0
  93. package/dist/api/types/ModelResponseExternalSessionAiResponseMetadataWrapper.d.ts +10 -0
  94. package/dist/api/types/ProfileV1EnvelopeDefaultMetaWrapper.d.ts +10 -0
  95. package/dist/api/types/ScrapeModelResponse.d.ts +7 -0
  96. package/dist/api/types/ScrapeModelResponseExternalSessionAiResponseMetadataWrapper.d.ts +10 -0
  97. package/{api/types/CleanScrapeResponseOutput.d.ts → dist/api/types/ScrapeResponseOutput.d.ts} +2 -2
  98. package/dist/api/types/SessionConfig.d.ts +1 -1
  99. package/dist/api/types/SessionConfigV1.d.ts +1 -1
  100. package/dist/api/types/SessionWithConnectionInfo.d.ts +22 -4
  101. package/dist/api/types/SessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +10 -0
  102. package/dist/api/types/Window.d.ts +11 -0
  103. package/dist/api/types/WindowEnvelopeDefaultMetaWrapper.d.ts +10 -0
  104. package/dist/api/types/index.d.ts +18 -20
  105. package/dist/api/types/index.js +18 -20
  106. package/dist/core/auth/BasicAuth.d.ts +8 -0
  107. package/dist/core/auth/BasicAuth.js +26 -0
  108. package/dist/core/auth/BearerToken.d.ts +5 -0
  109. package/dist/core/auth/BearerToken.js +15 -0
  110. package/dist/core/auth/index.d.ts +2 -0
  111. package/dist/core/auth/index.js +7 -0
  112. package/dist/core/index.d.ts +1 -0
  113. package/dist/core/index.js +1 -0
  114. package/dist/serialization/resources/index.d.ts +2 -0
  115. package/dist/serialization/resources/index.js +3 -1
  116. package/dist/serialization/resources/sessions/client/requests/SessionRestInputV1.d.ts +0 -1
  117. package/dist/serialization/resources/sessions/client/requests/SessionRestInputV1.js +0 -1
  118. package/dist/serialization/resources/sessions/client/requests/index.d.ts +0 -2
  119. package/dist/serialization/resources/sessions/client/requests/index.js +1 -5
  120. package/dist/serialization/resources/windows/client/index.d.ts +1 -0
  121. package/dist/serialization/resources/windows/client/index.js +17 -0
  122. package/dist/serialization/resources/windows/client/requests/PromptContentRequest.d.ts +16 -0
  123. package/dist/serialization/resources/{sessions/client/requests/SessionPromptContentRequest.js → windows/client/requests/PromptContentRequest.js} +6 -3
  124. package/dist/serialization/resources/windows/client/requests/SummarizeContentRequest.d.ts +15 -0
  125. package/{serialization/resources/sessions/client/requests/SessionPromptContentRequest.js → dist/serialization/resources/windows/client/requests/SummarizeContentRequest.js} +6 -4
  126. package/dist/serialization/resources/windows/client/requests/index.d.ts +2 -0
  127. package/dist/serialization/resources/windows/client/requests/index.js +7 -0
  128. package/dist/serialization/resources/windows/index.d.ts +1 -0
  129. package/dist/serialization/resources/windows/index.js +17 -0
  130. package/dist/serialization/types/ClientProvidedResponseMetadata.d.ts +13 -0
  131. package/{serialization/types/ErrorDetail.js → dist/serialization/types/ClientProvidedResponseMetadata.js} +4 -5
  132. package/dist/serialization/types/DefaultMetaWrapper.d.ts +12 -0
  133. package/dist/serialization/types/{SessionAiResponseDataStatus.js → DefaultMetaWrapper.js} +4 -2
  134. package/dist/serialization/types/ErrorEnvelope.d.ts +18 -0
  135. package/dist/serialization/types/{CleanScrapeResponseData.js → ErrorEnvelope.js} +9 -6
  136. package/dist/serialization/types/ExternalSessionAiResponseMetadata.d.ts +17 -0
  137. package/dist/serialization/types/{ConnectionInfo.js → ExternalSessionAiResponseMetadata.js} +8 -7
  138. package/dist/serialization/types/ExternalSessionAiResponseMetadataStatus.d.ts +10 -0
  139. package/dist/serialization/types/ExternalSessionAiResponseMetadataStatus.js +31 -0
  140. package/dist/serialization/types/ExternalSessionAiResponseMetadataUsage.d.ts +13 -0
  141. package/dist/serialization/types/ExternalSessionAiResponseMetadataUsage.js +34 -0
  142. package/dist/serialization/types/{SessionAiResponseIssue.d.ts → Issue.d.ts} +2 -2
  143. package/dist/serialization/types/{SessionAiResponseIssue.js → Issue.js} +2 -2
  144. package/dist/serialization/types/ListProfileV1EnvelopeDefaultMetaWrapper.d.ts +18 -0
  145. package/{serialization/types/ProfileOutputV1Body.js → dist/serialization/types/ListProfileV1EnvelopeDefaultMetaWrapper.js} +8 -4
  146. package/dist/serialization/types/ListSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +18 -0
  147. package/dist/serialization/types/ListSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js +39 -0
  148. package/dist/serialization/types/ModelResponse.d.ts +12 -0
  149. package/{serialization/types/SessionAiResponseDataStatus.js → dist/serialization/types/ModelResponse.js} +4 -2
  150. package/dist/serialization/types/ModelResponseExternalSessionAiResponseMetadataWrapper.d.ts +18 -0
  151. package/dist/serialization/types/ModelResponseExternalSessionAiResponseMetadataWrapper.js +39 -0
  152. package/dist/serialization/types/ProfileV1EnvelopeDefaultMetaWrapper.d.ts +18 -0
  153. package/dist/serialization/types/{ProfileOutputV1Body.js → ProfileV1EnvelopeDefaultMetaWrapper.js} +8 -4
  154. package/dist/serialization/types/ScrapeModelResponse.d.ts +13 -0
  155. package/dist/serialization/types/ScrapeModelResponse.js +34 -0
  156. package/dist/serialization/types/ScrapeModelResponseExternalSessionAiResponseMetadataWrapper.d.ts +18 -0
  157. package/dist/serialization/types/ScrapeModelResponseExternalSessionAiResponseMetadataWrapper.js +39 -0
  158. package/{serialization/types/CleanScrapeResponseOutput.d.ts → dist/serialization/types/ScrapeResponseOutput.d.ts} +3 -3
  159. package/{serialization/types/CleanScrapeResponseOutput.js → dist/serialization/types/ScrapeResponseOutput.js} +3 -3
  160. package/dist/serialization/types/SessionConfig.d.ts +1 -1
  161. package/dist/serialization/types/SessionConfig.js +1 -1
  162. package/dist/serialization/types/SessionConfigV1.d.ts +1 -1
  163. package/dist/serialization/types/SessionConfigV1.js +1 -1
  164. package/dist/serialization/types/SessionWithConnectionInfo.d.ts +13 -4
  165. package/dist/serialization/types/SessionWithConnectionInfo.js +13 -4
  166. package/dist/serialization/types/SessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +18 -0
  167. package/dist/serialization/types/{SessionsOutputV1Body.js → SessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +8 -4
  168. package/dist/serialization/types/Window.d.ts +14 -0
  169. package/dist/serialization/types/Window.js +35 -0
  170. package/dist/serialization/types/WindowEnvelopeDefaultMetaWrapper.d.ts +18 -0
  171. package/{serialization/types/CleanScrapeResponse.js → dist/serialization/types/WindowEnvelopeDefaultMetaWrapper.js} +9 -7
  172. package/dist/serialization/types/index.d.ts +18 -20
  173. package/dist/serialization/types/index.js +18 -20
  174. package/package.json +20 -3
  175. package/reference.md +40 -100
  176. package/serialization/resources/index.d.ts +2 -0
  177. package/serialization/resources/index.js +3 -1
  178. package/serialization/resources/sessions/client/requests/SessionRestInputV1.d.ts +0 -1
  179. package/serialization/resources/sessions/client/requests/SessionRestInputV1.js +0 -1
  180. package/serialization/resources/sessions/client/requests/index.d.ts +0 -2
  181. package/serialization/resources/sessions/client/requests/index.js +1 -5
  182. package/serialization/resources/windows/client/index.d.ts +1 -0
  183. package/serialization/resources/windows/client/index.js +17 -0
  184. package/serialization/resources/windows/client/requests/PromptContentRequest.d.ts +16 -0
  185. package/{dist/serialization/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.js → serialization/resources/windows/client/requests/PromptContentRequest.js} +6 -3
  186. package/serialization/resources/windows/client/requests/SummarizeContentRequest.d.ts +15 -0
  187. package/serialization/resources/{sessions/client/requests/SessionPromptPaginatedExtractionRequest.js → windows/client/requests/SummarizeContentRequest.js} +6 -4
  188. package/serialization/resources/windows/client/requests/index.d.ts +2 -0
  189. package/serialization/resources/windows/client/requests/index.js +7 -0
  190. package/serialization/resources/windows/index.d.ts +1 -0
  191. package/serialization/resources/windows/index.js +17 -0
  192. package/serialization/types/ClientProvidedResponseMetadata.d.ts +13 -0
  193. package/{dist/serialization/types/LiveViewUrlOutputV1Body.js → serialization/types/ClientProvidedResponseMetadata.js} +4 -4
  194. package/serialization/types/DefaultMetaWrapper.d.ts +12 -0
  195. package/serialization/types/{CleanScrapeResponseDataStatus.js → DefaultMetaWrapper.js} +4 -2
  196. package/serialization/types/ErrorEnvelope.d.ts +18 -0
  197. package/serialization/types/ErrorEnvelope.js +39 -0
  198. package/serialization/types/ExternalSessionAiResponseMetadata.d.ts +17 -0
  199. package/serialization/types/ExternalSessionAiResponseMetadata.js +38 -0
  200. package/serialization/types/ExternalSessionAiResponseMetadataStatus.d.ts +10 -0
  201. package/serialization/types/ExternalSessionAiResponseMetadataStatus.js +31 -0
  202. package/serialization/types/ExternalSessionAiResponseMetadataUsage.d.ts +13 -0
  203. package/serialization/types/ExternalSessionAiResponseMetadataUsage.js +34 -0
  204. package/serialization/types/{SessionAiResponseIssue.d.ts → Issue.d.ts} +2 -2
  205. package/serialization/types/{SessionAiResponseIssue.js → Issue.js} +2 -2
  206. package/serialization/types/ListProfileV1EnvelopeDefaultMetaWrapper.d.ts +18 -0
  207. package/serialization/types/{ProfilesOutputV1Body.js → ListProfileV1EnvelopeDefaultMetaWrapper.js} +8 -4
  208. package/serialization/types/ListSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +18 -0
  209. package/serialization/types/ListSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js +39 -0
  210. package/serialization/types/ModelResponse.d.ts +12 -0
  211. package/{dist/serialization/types/CleanScrapeResponseDataStatus.js → serialization/types/ModelResponse.js} +4 -2
  212. package/serialization/types/ModelResponseExternalSessionAiResponseMetadataWrapper.d.ts +18 -0
  213. package/serialization/types/ModelResponseExternalSessionAiResponseMetadataWrapper.js +39 -0
  214. package/serialization/types/ProfileV1EnvelopeDefaultMetaWrapper.d.ts +18 -0
  215. package/{dist/serialization/types/ProfilesOutputV1Body.js → serialization/types/ProfileV1EnvelopeDefaultMetaWrapper.js} +8 -4
  216. package/serialization/types/ScrapeModelResponse.d.ts +13 -0
  217. package/serialization/types/ScrapeModelResponse.js +34 -0
  218. package/serialization/types/ScrapeModelResponseExternalSessionAiResponseMetadataWrapper.d.ts +18 -0
  219. package/serialization/types/ScrapeModelResponseExternalSessionAiResponseMetadataWrapper.js +39 -0
  220. package/{dist/serialization/types/CleanScrapeResponseOutput.d.ts → serialization/types/ScrapeResponseOutput.d.ts} +3 -3
  221. package/{dist/serialization/types/CleanScrapeResponseOutput.js → serialization/types/ScrapeResponseOutput.js} +3 -3
  222. package/serialization/types/SessionConfig.d.ts +1 -1
  223. package/serialization/types/SessionConfig.js +1 -1
  224. package/serialization/types/SessionConfigV1.d.ts +1 -1
  225. package/serialization/types/SessionConfigV1.js +1 -1
  226. package/serialization/types/SessionWithConnectionInfo.d.ts +13 -4
  227. package/serialization/types/SessionWithConnectionInfo.js +13 -4
  228. package/serialization/types/SessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +18 -0
  229. package/serialization/types/{SessionsOutputV1Body.js → SessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +8 -4
  230. package/serialization/types/Window.d.ts +14 -0
  231. package/serialization/types/Window.js +35 -0
  232. package/serialization/types/WindowEnvelopeDefaultMetaWrapper.d.ts +18 -0
  233. package/{dist/serialization/types/CleanScrapeResponse.js → serialization/types/WindowEnvelopeDefaultMetaWrapper.js} +9 -7
  234. package/serialization/types/index.d.ts +18 -20
  235. package/serialization/types/index.js +18 -20
  236. package/api/resources/sessions/client/requests/CreateLiveViewUrlRequest.d.ts +0 -20
  237. package/api/resources/sessions/client/requests/SessionPromptContentRequest.d.ts +0 -15
  238. package/api/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.d.ts +0 -15
  239. package/api/types/CleanScrapeResponse.d.ts +0 -12
  240. package/api/types/CleanScrapeResponseData.d.ts +0 -10
  241. package/api/types/CleanScrapeResponseDataStatus.d.ts +0 -12
  242. package/api/types/CleanScrapeResponseDataStatus.js +0 -11
  243. package/api/types/ConnectionInfo.d.ts +0 -14
  244. package/api/types/ErrorDetail.d.ts +0 -10
  245. package/api/types/ErrorModel.d.ts +0 -20
  246. package/api/types/LiveViewUrlOutputV1Body.d.ts +0 -9
  247. package/api/types/ProfileOutputV1Body.d.ts +0 -10
  248. package/api/types/ProfilesOutputV1Body.d.ts +0 -9
  249. package/api/types/Session.d.ts +0 -20
  250. package/api/types/SessionAiResponse.d.ts +0 -16
  251. package/api/types/SessionAiResponseData.d.ts +0 -10
  252. package/api/types/SessionAiResponseMetadata.d.ts +0 -8
  253. package/api/types/SessionAiResponseMetadataUsage.d.ts +0 -14
  254. package/api/types/SessionAiResponseResponseMetadataModelUsage.d.ts +0 -10
  255. package/api/types/SessionOutputV1Body.d.ts +0 -12
  256. package/api/types/SessionsOutputV1Body.d.ts +0 -10
  257. package/dist/api/resources/sessions/client/requests/CreateLiveViewUrlRequest.d.ts +0 -20
  258. package/dist/api/resources/sessions/client/requests/SessionPromptContentRequest.d.ts +0 -15
  259. package/dist/api/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.d.ts +0 -15
  260. package/dist/api/types/CleanScrapeResponse.d.ts +0 -12
  261. package/dist/api/types/CleanScrapeResponseData.d.ts +0 -10
  262. package/dist/api/types/CleanScrapeResponseDataStatus.d.ts +0 -12
  263. package/dist/api/types/ConnectionInfo.d.ts +0 -14
  264. package/dist/api/types/ErrorDetail.d.ts +0 -10
  265. package/dist/api/types/ErrorModel.d.ts +0 -20
  266. package/dist/api/types/LiveViewUrlOutputV1Body.d.ts +0 -9
  267. package/dist/api/types/ProfileOutputV1Body.d.ts +0 -10
  268. package/dist/api/types/ProfilesOutputV1Body.d.ts +0 -9
  269. package/dist/api/types/Session.d.ts +0 -20
  270. package/dist/api/types/SessionAiResponse.d.ts +0 -16
  271. package/dist/api/types/SessionAiResponseData.d.ts +0 -10
  272. package/dist/api/types/SessionAiResponseDataStatus.js +0 -11
  273. package/dist/api/types/SessionAiResponseMetadata.d.ts +0 -8
  274. package/dist/api/types/SessionAiResponseMetadataUsage.d.ts +0 -14
  275. package/dist/api/types/SessionAiResponseResponseMetadataModelUsage.d.ts +0 -10
  276. package/dist/api/types/SessionOutputV1Body.d.ts +0 -12
  277. package/dist/api/types/SessionOutputV1Body.js +0 -5
  278. package/dist/api/types/SessionsOutputV1Body.d.ts +0 -10
  279. package/dist/api/types/SessionsOutputV1Body.js +0 -5
  280. package/dist/serialization/resources/sessions/client/requests/SessionPromptContentRequest.d.ts +0 -13
  281. package/dist/serialization/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.d.ts +0 -13
  282. package/dist/serialization/types/CleanScrapeResponse.d.ts +0 -16
  283. package/dist/serialization/types/CleanScrapeResponseData.d.ts +0 -15
  284. package/dist/serialization/types/CleanScrapeResponseDataStatus.d.ts +0 -10
  285. package/dist/serialization/types/ConnectionInfo.d.ts +0 -16
  286. package/dist/serialization/types/ErrorDetail.d.ts +0 -14
  287. package/dist/serialization/types/ErrorDetail.js +0 -35
  288. package/dist/serialization/types/ErrorModel.d.ts +0 -19
  289. package/dist/serialization/types/ErrorModel.js +0 -40
  290. package/dist/serialization/types/LiveViewUrlOutputV1Body.d.ts +0 -13
  291. package/dist/serialization/types/ProfileOutputV1Body.d.ts +0 -14
  292. package/dist/serialization/types/ProfilesOutputV1Body.d.ts +0 -14
  293. package/dist/serialization/types/Session.d.ts +0 -19
  294. package/dist/serialization/types/Session.js +0 -40
  295. package/dist/serialization/types/SessionAiResponse.d.ts +0 -19
  296. package/dist/serialization/types/SessionAiResponse.js +0 -40
  297. package/dist/serialization/types/SessionAiResponseData.d.ts +0 -14
  298. package/dist/serialization/types/SessionAiResponseData.js +0 -35
  299. package/dist/serialization/types/SessionAiResponseDataStatus.d.ts +0 -10
  300. package/dist/serialization/types/SessionAiResponseMetadata.d.ts +0 -13
  301. package/dist/serialization/types/SessionAiResponseMetadata.js +0 -34
  302. package/dist/serialization/types/SessionAiResponseMetadataUsage.d.ts +0 -16
  303. package/dist/serialization/types/SessionAiResponseMetadataUsage.js +0 -37
  304. package/dist/serialization/types/SessionAiResponseResponseMetadataModelUsage.d.ts +0 -16
  305. package/dist/serialization/types/SessionAiResponseResponseMetadataModelUsage.js +0 -37
  306. package/dist/serialization/types/SessionOutputV1Body.d.ts +0 -16
  307. package/dist/serialization/types/SessionOutputV1Body.js +0 -37
  308. package/dist/serialization/types/SessionsOutputV1Body.d.ts +0 -14
  309. package/serialization/resources/sessions/client/requests/SessionPromptContentRequest.d.ts +0 -13
  310. package/serialization/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.d.ts +0 -13
  311. package/serialization/types/CleanScrapeResponse.d.ts +0 -16
  312. package/serialization/types/CleanScrapeResponseData.d.ts +0 -15
  313. package/serialization/types/CleanScrapeResponseData.js +0 -36
  314. package/serialization/types/CleanScrapeResponseDataStatus.d.ts +0 -10
  315. package/serialization/types/ConnectionInfo.d.ts +0 -16
  316. package/serialization/types/ConnectionInfo.js +0 -37
  317. package/serialization/types/ErrorDetail.d.ts +0 -14
  318. package/serialization/types/ErrorModel.d.ts +0 -19
  319. package/serialization/types/ErrorModel.js +0 -40
  320. package/serialization/types/LiveViewUrlOutputV1Body.d.ts +0 -13
  321. package/serialization/types/LiveViewUrlOutputV1Body.js +0 -34
  322. package/serialization/types/ProfileOutputV1Body.d.ts +0 -14
  323. package/serialization/types/ProfilesOutputV1Body.d.ts +0 -14
  324. package/serialization/types/Session.d.ts +0 -19
  325. package/serialization/types/Session.js +0 -40
  326. package/serialization/types/SessionAiResponse.d.ts +0 -19
  327. package/serialization/types/SessionAiResponse.js +0 -40
  328. package/serialization/types/SessionAiResponseData.d.ts +0 -14
  329. package/serialization/types/SessionAiResponseData.js +0 -35
  330. package/serialization/types/SessionAiResponseDataStatus.d.ts +0 -10
  331. package/serialization/types/SessionAiResponseMetadata.d.ts +0 -13
  332. package/serialization/types/SessionAiResponseMetadata.js +0 -34
  333. package/serialization/types/SessionAiResponseMetadataUsage.d.ts +0 -16
  334. package/serialization/types/SessionAiResponseMetadataUsage.js +0 -37
  335. package/serialization/types/SessionAiResponseResponseMetadataModelUsage.d.ts +0 -16
  336. package/serialization/types/SessionAiResponseResponseMetadataModelUsage.js +0 -37
  337. package/serialization/types/SessionOutputV1Body.d.ts +0 -16
  338. package/serialization/types/SessionOutputV1Body.js +0 -37
  339. package/serialization/types/SessionsOutputV1Body.d.ts +0 -14
  340. /package/api/resources/{sessions/client/requests/CreateLiveViewUrlRequest.js → windows/client/requests/GetWindowInfoRequest.js} +0 -0
  341. /package/api/resources/{sessions/client/requests/SessionPromptContentRequest.js → windows/client/requests/PromptContentRequest.js} +0 -0
  342. /package/api/resources/{sessions/client/requests/SessionPromptPaginatedExtractionRequest.js → windows/client/requests/SummarizeContentRequest.js} +0 -0
  343. /package/api/types/{CleanScrapeResponse.js → ClientProvidedResponseMetadata.js} +0 -0
  344. /package/api/types/{CleanScrapeResponseData.js → DefaultMetaWrapper.js} +0 -0
  345. /package/api/types/{CleanScrapeResponseOutput.js → ErrorEnvelope.js} +0 -0
  346. /package/api/types/{ConnectionInfo.js → ExternalSessionAiResponseMetadata.js} +0 -0
  347. /package/api/types/{ErrorDetail.js → ExternalSessionAiResponseMetadataUsage.js} +0 -0
  348. /package/api/types/{ErrorModel.js → Issue.js} +0 -0
  349. /package/api/types/{LiveViewUrlOutputV1Body.js → ListProfileV1EnvelopeDefaultMetaWrapper.js} +0 -0
  350. /package/api/types/{ProfileOutputV1Body.js → ListSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +0 -0
  351. /package/api/types/{ProfilesOutputV1Body.js → ModelResponse.js} +0 -0
  352. /package/api/types/{Session.js → ModelResponseExternalSessionAiResponseMetadataWrapper.js} +0 -0
  353. /package/api/types/{SessionAiResponse.js → ProfileV1EnvelopeDefaultMetaWrapper.js} +0 -0
  354. /package/api/types/{SessionAiResponseData.js → ScrapeModelResponse.js} +0 -0
  355. /package/api/types/{SessionAiResponseIssue.js → ScrapeModelResponseExternalSessionAiResponseMetadataWrapper.js} +0 -0
  356. /package/api/types/{SessionAiResponseMetadata.js → ScrapeResponseOutput.js} +0 -0
  357. /package/api/types/{SessionAiResponseMetadataUsage.js → SessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +0 -0
  358. /package/api/types/{SessionAiResponseResponseMetadataModelUsage.js → Window.js} +0 -0
  359. /package/api/types/{SessionOutputV1Body.js → WindowEnvelopeDefaultMetaWrapper.js} +0 -0
  360. /package/{api/types/SessionsOutputV1Body.js → dist/api/resources/windows/client/requests/GetWindowInfoRequest.js} +0 -0
  361. /package/dist/api/resources/{sessions/client/requests/CreateLiveViewUrlRequest.js → windows/client/requests/PromptContentRequest.js} +0 -0
  362. /package/dist/api/resources/{sessions/client/requests/SessionPromptContentRequest.js → windows/client/requests/SummarizeContentRequest.js} +0 -0
  363. /package/dist/api/{resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.js → types/ClientProvidedResponseMetadata.js} +0 -0
  364. /package/dist/api/types/{CleanScrapeResponse.js → DefaultMetaWrapper.js} +0 -0
  365. /package/dist/api/types/{CleanScrapeResponseData.js → ErrorEnvelope.js} +0 -0
  366. /package/dist/api/types/{CleanScrapeResponseOutput.js → ExternalSessionAiResponseMetadata.js} +0 -0
  367. /package/dist/api/types/{ConnectionInfo.js → ExternalSessionAiResponseMetadataUsage.js} +0 -0
  368. /package/dist/api/types/{ErrorDetail.js → Issue.js} +0 -0
  369. /package/dist/api/types/{ErrorModel.js → ListProfileV1EnvelopeDefaultMetaWrapper.js} +0 -0
  370. /package/dist/api/types/{LiveViewUrlOutputV1Body.js → ListSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +0 -0
  371. /package/dist/api/types/{ProfileOutputV1Body.js → ModelResponse.js} +0 -0
  372. /package/dist/api/types/{ProfilesOutputV1Body.js → ModelResponseExternalSessionAiResponseMetadataWrapper.js} +0 -0
  373. /package/dist/api/types/{Session.js → ProfileV1EnvelopeDefaultMetaWrapper.js} +0 -0
  374. /package/dist/api/types/{SessionAiResponse.js → ScrapeModelResponse.js} +0 -0
  375. /package/dist/api/types/{SessionAiResponseData.js → ScrapeModelResponseExternalSessionAiResponseMetadataWrapper.js} +0 -0
  376. /package/dist/api/types/{SessionAiResponseIssue.js → ScrapeResponseOutput.js} +0 -0
  377. /package/dist/api/types/{SessionAiResponseMetadata.js → SessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +0 -0
  378. /package/dist/api/types/{SessionAiResponseMetadataUsage.js → Window.js} +0 -0
  379. /package/dist/api/types/{SessionAiResponseResponseMetadataModelUsage.js → WindowEnvelopeDefaultMetaWrapper.js} +0 -0
@@ -1,8 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface SessionAiResponseMetadata {
6
- /** The usage metadata for this request */
7
- usage: Airtop.SessionAiResponseMetadataUsage;
8
- }
@@ -1,14 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface SessionAiResponseMetadataUsage {
6
- /** The credit usage for this request */
7
- credits: number;
8
- /** The id of the request */
9
- id: string;
10
- /** The private usage data about specific models for this request */
11
- models?: Airtop.SessionAiResponseResponseMetadataModelUsage[];
12
- /** The total internal cost of this request */
13
- totalCost: number;
14
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- export interface SessionAiResponseResponseMetadataModelUsage {
5
- cost: number;
6
- credits: number;
7
- inputTokens: number;
8
- modelName: string;
9
- outputTokens: number;
10
- }
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface SessionOutputV1Body {
6
- /** A URL to the JSON Schema for this object. */
7
- schema?: string;
8
- /** Connection info for the session */
9
- connectionInfo?: Airtop.ConnectionInfo;
10
- /** Session */
11
- session: Airtop.Session;
12
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface SessionsOutputV1Body {
6
- /** A URL to the JSON Schema for this object. */
7
- schema?: string;
8
- /** List of sessions */
9
- sessions?: Airtop.SessionWithConnectionInfo[];
10
- }
@@ -1,20 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- /**
5
- * @example
6
- * {
7
- * browserId: "7334da2a-91b0-42c5-6156-76a5eba87430",
8
- * targetId: "123456"
9
- * }
10
- */
11
- export interface CreateLiveViewUrlRequest {
12
- /**
13
- * id of the browser to create a url for
14
- */
15
- browserId?: string;
16
- /**
17
- * id of the target to create a url for
18
- */
19
- targetId?: string;
20
- }
@@ -1,15 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- /**
5
- * @example
6
- * {
7
- * prompt: "What is the main idea of this page?"
8
- * }
9
- */
10
- export interface SessionPromptContentRequest {
11
- /** A URL to the JSON Schema for this object. */
12
- schema?: string;
13
- /** The prompt to submit about the content in the browser window */
14
- prompt: string;
15
- }
@@ -1,15 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- /**
5
- * @example
6
- * {
7
- * prompt: "For each page on return all the items listed including a subfield"
8
- * }
9
- */
10
- export interface SessionPromptPaginatedExtractionRequest {
11
- /** A URL to the JSON Schema for this object. */
12
- schema?: string;
13
- /** The prompt to perform a paginated extraction with */
14
- prompt: string;
15
- }
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface CleanScrapeResponse {
6
- /** A URL to the JSON Schema for this object. */
7
- schema?: string;
8
- /** The data about the scraped browser window */
9
- data: Airtop.CleanScrapeResponseData;
10
- /** Metadata about the response */
11
- meta: Airtop.SessionAiResponseMetadata;
12
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface CleanScrapeResponseData {
6
- /** The response to the question about this specific browser window */
7
- output: Airtop.CleanScrapeResponseOutput;
8
- /** outcome of the operation */
9
- status: Airtop.CleanScrapeResponseDataStatus;
10
- }
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- /**
5
- * outcome of the operation
6
- */
7
- export declare type CleanScrapeResponseDataStatus = "success" | "partial_success" | "failure";
8
- export declare const CleanScrapeResponseDataStatus: {
9
- readonly Success: "success";
10
- readonly PartialSuccess: "partial_success";
11
- readonly Failure: "failure";
12
- };
@@ -1,14 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface ConnectionInfo {
6
- /** Url to connect to chrome devtools protocol port on the airtop browser. Include the header 'x-airtop-token: <api-key>.' */
7
- cdpUrl?: string;
8
- /** Websocket url to connect to CDP webSocketDebuggerUrl on the airtop browser. Include the header 'x-airtop-token: <api-key>.' */
9
- cdpWsUrl?: string;
10
- /** Websocket url to connect to the chromedriver on the airtop browser. Include the header 'x-airtop-token: <api-key>.' */
11
- chromedriverUrl?: string;
12
- /** Connection info for the live view */
13
- liveView?: Airtop.LiveViewConnectionInfo;
14
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- export interface ErrorDetail {
5
- /** Where the error occurred, e.g. 'body.items[3].tags' or 'path.thing-id' */
6
- location?: string;
7
- /** Error message text */
8
- message?: string;
9
- value?: unknown;
10
- }
@@ -1,20 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface ErrorModel {
6
- /** A URL to the JSON Schema for this object. */
7
- schema?: string;
8
- /** A human-readable explanation specific to this occurrence of the problem. */
9
- detail?: string;
10
- /** Optional list of individual error details */
11
- errors?: Airtop.ErrorDetail[];
12
- /** A URI reference that identifies the specific occurrence of the problem. */
13
- instance?: string;
14
- /** HTTP status code */
15
- status?: number;
16
- /** A short, human-readable summary of the problem type. This value should not change between occurrences of the error. */
17
- title?: string;
18
- /** A URI reference to human-readable documentation for the error. */
19
- type?: string;
20
- }
@@ -1,9 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- export interface LiveViewUrlOutputV1Body {
5
- /** A URL to the JSON Schema for this object. */
6
- schema?: string;
7
- /** Url for live view session */
8
- url: string;
9
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface ProfileOutputV1Body {
6
- /** A URL to the JSON Schema for this object. */
7
- schema?: string;
8
- /** created Profile */
9
- profile: Airtop.ProfileV1;
10
- }
@@ -1,9 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface ProfilesOutputV1Body {
6
- /** A URL to the JSON Schema for this object. */
7
- schema?: string;
8
- profiles?: Airtop.ProfileV1[];
9
- }
@@ -1,20 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface Session {
6
- /** Session configuration */
7
- configuration: Airtop.SessionConfig;
8
- /** Current usage in minutes */
9
- currentUsage?: number;
10
- /** Date the session was created */
11
- dateCreated?: Date;
12
- /** UUID of the session */
13
- id: string;
14
- /** Date of the last activity */
15
- lastActivity?: Date;
16
- /** Session status */
17
- status: string;
18
- /** URL of the session */
19
- url?: string;
20
- }
@@ -1,16 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface SessionAiResponse {
6
- /** A URL to the JSON Schema for this object. */
7
- schema?: string;
8
- /** The response data from the prompt about the browser window */
9
- data: Airtop.SessionAiResponseData;
10
- /** Any errors that occurred while processing the request */
11
- errors?: Airtop.SessionAiResponseIssue[];
12
- /** Metadata about the response */
13
- meta: Airtop.SessionAiResponseMetadata;
14
- /** Any warnings that occurred while processing the request */
15
- warnings?: Airtop.SessionAiResponseIssue[];
16
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface SessionAiResponseData {
6
- /** The response to the prompt about this specific browser window */
7
- output: string;
8
- /** outcome of the operation */
9
- status: Airtop.SessionAiResponseDataStatus;
10
- }
@@ -1,11 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.SessionAiResponseDataStatus = void 0;
7
- exports.SessionAiResponseDataStatus = {
8
- Success: "success",
9
- PartialSuccess: "partial_success",
10
- Failure: "failure",
11
- };
@@ -1,8 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface SessionAiResponseMetadata {
6
- /** The usage metadata for this request */
7
- usage: Airtop.SessionAiResponseMetadataUsage;
8
- }
@@ -1,14 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface SessionAiResponseMetadataUsage {
6
- /** The credit usage for this request */
7
- credits: number;
8
- /** The id of the request */
9
- id: string;
10
- /** The private usage data about specific models for this request */
11
- models?: Airtop.SessionAiResponseResponseMetadataModelUsage[];
12
- /** The total internal cost of this request */
13
- totalCost: number;
14
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- export interface SessionAiResponseResponseMetadataModelUsage {
5
- cost: number;
6
- credits: number;
7
- inputTokens: number;
8
- modelName: string;
9
- outputTokens: number;
10
- }
@@ -1,12 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface SessionOutputV1Body {
6
- /** A URL to the JSON Schema for this object. */
7
- schema?: string;
8
- /** Connection info for the session */
9
- connectionInfo?: Airtop.ConnectionInfo;
10
- /** Session */
11
- session: Airtop.Session;
12
- }
@@ -1,5 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as Airtop from "../index";
5
- export interface SessionsOutputV1Body {
6
- /** A URL to the JSON Schema for this object. */
7
- schema?: string;
8
- /** List of sessions */
9
- sessions?: Airtop.SessionWithConnectionInfo[];
10
- }
@@ -1,5 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,13 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../../index";
5
- import * as Airtop from "../../../../../api/index";
6
- import * as core from "../../../../../core";
7
- export declare const SessionPromptContentRequest: core.serialization.Schema<serializers.SessionPromptContentRequest.Raw, Airtop.SessionPromptContentRequest>;
8
- export declare namespace SessionPromptContentRequest {
9
- interface Raw {
10
- $schema?: string | null;
11
- prompt: string;
12
- }
13
- }
@@ -1,13 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../../../../index";
5
- import * as Airtop from "../../../../../api/index";
6
- import * as core from "../../../../../core";
7
- export declare const SessionPromptPaginatedExtractionRequest: core.serialization.Schema<serializers.SessionPromptPaginatedExtractionRequest.Raw, Airtop.SessionPromptPaginatedExtractionRequest>;
8
- export declare namespace SessionPromptPaginatedExtractionRequest {
9
- interface Raw {
10
- $schema?: string | null;
11
- prompt: string;
12
- }
13
- }
@@ -1,16 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../index";
5
- import * as Airtop from "../../api/index";
6
- import * as core from "../../core";
7
- import { CleanScrapeResponseData } from "./CleanScrapeResponseData";
8
- import { SessionAiResponseMetadata } from "./SessionAiResponseMetadata";
9
- export declare const CleanScrapeResponse: core.serialization.ObjectSchema<serializers.CleanScrapeResponse.Raw, Airtop.CleanScrapeResponse>;
10
- export declare namespace CleanScrapeResponse {
11
- interface Raw {
12
- $schema?: string | null;
13
- data: CleanScrapeResponseData.Raw;
14
- meta: SessionAiResponseMetadata.Raw;
15
- }
16
- }
@@ -1,15 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../index";
5
- import * as Airtop from "../../api/index";
6
- import * as core from "../../core";
7
- import { CleanScrapeResponseOutput } from "./CleanScrapeResponseOutput";
8
- import { CleanScrapeResponseDataStatus } from "./CleanScrapeResponseDataStatus";
9
- export declare const CleanScrapeResponseData: core.serialization.ObjectSchema<serializers.CleanScrapeResponseData.Raw, Airtop.CleanScrapeResponseData>;
10
- export declare namespace CleanScrapeResponseData {
11
- interface Raw {
12
- output: CleanScrapeResponseOutput.Raw;
13
- status: CleanScrapeResponseDataStatus.Raw;
14
- }
15
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../index";
5
- import * as Airtop from "../../api/index";
6
- import * as core from "../../core";
7
- export declare const CleanScrapeResponseDataStatus: core.serialization.Schema<serializers.CleanScrapeResponseDataStatus.Raw, Airtop.CleanScrapeResponseDataStatus>;
8
- export declare namespace CleanScrapeResponseDataStatus {
9
- type Raw = "success" | "partial_success" | "failure";
10
- }
@@ -1,16 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../index";
5
- import * as Airtop from "../../api/index";
6
- import * as core from "../../core";
7
- import { LiveViewConnectionInfo } from "./LiveViewConnectionInfo";
8
- export declare const ConnectionInfo: core.serialization.ObjectSchema<serializers.ConnectionInfo.Raw, Airtop.ConnectionInfo>;
9
- export declare namespace ConnectionInfo {
10
- interface Raw {
11
- cdp_url?: string | null;
12
- cdp_ws_url?: string | null;
13
- chromedriver_url?: string | null;
14
- live_view?: LiveViewConnectionInfo.Raw | null;
15
- }
16
- }
@@ -1,14 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../index";
5
- import * as Airtop from "../../api/index";
6
- import * as core from "../../core";
7
- export declare const ErrorDetail: core.serialization.ObjectSchema<serializers.ErrorDetail.Raw, Airtop.ErrorDetail>;
8
- export declare namespace ErrorDetail {
9
- interface Raw {
10
- location?: string | null;
11
- message?: string | null;
12
- value?: unknown | null;
13
- }
14
- }
@@ -1,35 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || function (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
- };
28
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.ErrorDetail = void 0;
30
- const core = __importStar(require("../../core"));
31
- exports.ErrorDetail = core.serialization.object({
32
- location: core.serialization.string().optional(),
33
- message: core.serialization.string().optional(),
34
- value: core.serialization.unknown().optional(),
35
- });
@@ -1,19 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../index";
5
- import * as Airtop from "../../api/index";
6
- import * as core from "../../core";
7
- import { ErrorDetail } from "./ErrorDetail";
8
- export declare const ErrorModel: core.serialization.ObjectSchema<serializers.ErrorModel.Raw, Airtop.ErrorModel>;
9
- export declare namespace ErrorModel {
10
- interface Raw {
11
- $schema?: string | null;
12
- detail?: string | null;
13
- errors?: ErrorDetail.Raw[] | null;
14
- instance?: string | null;
15
- status?: number | null;
16
- title?: string | null;
17
- type?: string | null;
18
- }
19
- }
@@ -1,40 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file was auto-generated by Fern from our API Definition.
4
- */
5
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- var desc = Object.getOwnPropertyDescriptor(m, k);
8
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
- desc = { enumerable: true, get: function() { return m[k]; } };
10
- }
11
- Object.defineProperty(o, k2, desc);
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
- Object.defineProperty(o, "default", { enumerable: true, value: v });
18
- }) : function(o, v) {
19
- o["default"] = v;
20
- });
21
- var __importStar = (this && this.__importStar) || function (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
- };
28
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.ErrorModel = void 0;
30
- const core = __importStar(require("../../core"));
31
- const ErrorDetail_1 = require("./ErrorDetail");
32
- exports.ErrorModel = core.serialization.object({
33
- schema: core.serialization.property("$schema", core.serialization.string().optional()),
34
- detail: core.serialization.string().optional(),
35
- errors: core.serialization.list(ErrorDetail_1.ErrorDetail).optional(),
36
- instance: core.serialization.string().optional(),
37
- status: core.serialization.number().optional(),
38
- title: core.serialization.string().optional(),
39
- type: core.serialization.string().optional(),
40
- });
@@ -1,13 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../index";
5
- import * as Airtop from "../../api/index";
6
- import * as core from "../../core";
7
- export declare const LiveViewUrlOutputV1Body: core.serialization.ObjectSchema<serializers.LiveViewUrlOutputV1Body.Raw, Airtop.LiveViewUrlOutputV1Body>;
8
- export declare namespace LiveViewUrlOutputV1Body {
9
- interface Raw {
10
- $schema?: string | null;
11
- url: string;
12
- }
13
- }
@@ -1,14 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../index";
5
- import * as Airtop from "../../api/index";
6
- import * as core from "../../core";
7
- import { ProfileV1 } from "./ProfileV1";
8
- export declare const ProfileOutputV1Body: core.serialization.ObjectSchema<serializers.ProfileOutputV1Body.Raw, Airtop.ProfileOutputV1Body>;
9
- export declare namespace ProfileOutputV1Body {
10
- interface Raw {
11
- $schema?: string | null;
12
- profile: ProfileV1.Raw;
13
- }
14
- }
@@ -1,14 +0,0 @@
1
- /**
2
- * This file was auto-generated by Fern from our API Definition.
3
- */
4
- import * as serializers from "../index";
5
- import * as Airtop from "../../api/index";
6
- import * as core from "../../core";
7
- import { ProfileV1 } from "./ProfileV1";
8
- export declare const ProfilesOutputV1Body: core.serialization.ObjectSchema<serializers.ProfilesOutputV1Body.Raw, Airtop.ProfilesOutputV1Body>;
9
- export declare namespace ProfilesOutputV1Body {
10
- interface Raw {
11
- $schema?: string | null;
12
- profiles?: ProfileV1.Raw[] | null;
13
- }
14
- }