@airtop/sdk 0.0.7 → 0.0.10-a
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.
- package/Client.d.ts +4 -4
- package/Client.js +5 -0
- package/README.md +6 -6
- package/api/errors/InternalServerError.d.ts +1 -1
- package/api/errors/NotFoundError.d.ts +1 -1
- package/api/errors/UnprocessableEntityError.d.ts +1 -1
- package/api/resources/index.d.ts +2 -0
- package/api/resources/index.js +3 -1
- package/api/resources/profiles/client/Client.d.ts +7 -27
- package/api/resources/profiles/client/Client.js +26 -125
- package/api/resources/profiles/client/requests/ProfilesDeleteRequest.d.ts +3 -9
- package/api/resources/profiles/client/requests/ProfilesGetRequest.d.ts +3 -9
- package/api/resources/sessions/client/Client.d.ts +16 -66
- package/api/resources/sessions/client/Client.js +55 -359
- package/api/resources/sessions/client/requests/SessionRestInputV1.d.ts +0 -2
- package/api/resources/sessions/client/requests/SessionsListRequest.d.ts +18 -2
- package/api/resources/sessions/client/requests/index.d.ts +0 -2
- package/api/resources/sessions/types/SessionsListRequestStatus.d.ts +13 -0
- package/api/resources/sessions/types/SessionsListRequestStatus.js +12 -0
- package/api/resources/sessions/types/index.d.ts +1 -0
- package/api/resources/sessions/types/index.js +1 -0
- package/api/resources/windows/client/Client.d.ts +70 -0
- package/api/resources/windows/client/Client.js +320 -0
- package/api/resources/windows/client/index.d.ts +1 -0
- package/api/resources/windows/client/index.js +17 -0
- package/api/resources/windows/client/requests/GetWindowInfoRequest.d.ts +23 -0
- package/api/resources/{sessions/client/requests/SessionPromptContentRequest.d.ts → windows/client/requests/PromptContentRequest.d.ts} +5 -5
- package/api/resources/windows/client/requests/ScrapeContentRequest.d.ts +12 -0
- package/api/resources/windows/client/requests/SummarizeContentRequest.d.ts +14 -0
- package/api/resources/windows/client/requests/index.d.ts +4 -0
- package/api/resources/windows/client/requests/index.js +2 -0
- package/api/resources/windows/index.d.ts +1 -0
- package/api/resources/windows/index.js +17 -0
- package/api/types/AiResponseEnvelope.d.ts +9 -0
- package/api/types/AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper.d.ts +10 -0
- package/api/types/ClientProvidedResponseMetadata.d.ts +1 -1
- package/api/types/DefaultMetaWrapper.d.ts +6 -0
- package/api/types/ErrorEnvelope.d.ts +12 -0
- package/api/types/ExternalProfileV1.d.ts +9 -0
- package/api/types/ExternalSessionAiResponseMetadata.d.ts +10 -0
- package/api/types/ExternalSessionAiResponseMetadataStatus.d.ts +9 -0
- package/api/types/{CleanScrapeResponseDataStatus.js → ExternalSessionAiResponseMetadataStatus.js} +3 -3
- package/api/types/ExternalSessionAiResponseMetadataUsage.d.ts +9 -0
- package/api/types/ExternalSessionConfig.d.ts +11 -0
- package/api/types/ExternalSessionWithConnectionInfo.d.ts +24 -0
- package/api/types/ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/{dist/api/types/SessionAiResponseIssue.d.ts → api/types/Issue.d.ts} +1 -1
- package/api/types/ListExternalProfileV1EnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/api/types/Pagination.d.ts +13 -0
- package/api/types/ScrapeResponseEnvelope.d.ts +9 -0
- package/api/types/ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.d.ts +10 -0
- package/api/types/{CleanScrapeResponseOutput.d.ts → ScrapeResponseOutput.d.ts} +2 -2
- package/api/types/SessionConfigV1.d.ts +1 -5
- package/api/types/SessionsWithPagination.d.ts +10 -0
- package/api/types/SessionsWithPaginationEnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/api/types/StatusMessageStatus.d.ts +2 -2
- package/api/types/StatusMessageStatus.js +1 -1
- package/api/types/Window.d.ts +9 -0
- package/api/types/WindowEnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/api/types/index.d.ts +21 -24
- package/api/types/index.js +21 -24
- package/core/auth/BasicAuth.d.ts +8 -0
- package/core/auth/BasicAuth.js +26 -0
- package/core/auth/BearerToken.d.ts +5 -0
- package/core/auth/BearerToken.js +15 -0
- package/core/auth/index.d.ts +2 -0
- package/core/auth/index.js +7 -0
- package/core/index.d.ts +1 -0
- package/core/index.js +1 -0
- package/dist/Client.d.ts +4 -4
- package/dist/Client.js +5 -0
- package/dist/api/errors/InternalServerError.d.ts +1 -1
- package/dist/api/errors/NotFoundError.d.ts +1 -1
- package/dist/api/errors/UnprocessableEntityError.d.ts +1 -1
- package/dist/api/resources/index.d.ts +2 -0
- package/dist/api/resources/index.js +3 -1
- package/dist/api/resources/profiles/client/Client.d.ts +7 -27
- package/dist/api/resources/profiles/client/Client.js +26 -125
- package/dist/api/resources/profiles/client/requests/ProfilesDeleteRequest.d.ts +3 -9
- package/dist/api/resources/profiles/client/requests/ProfilesGetRequest.d.ts +3 -9
- package/dist/api/resources/sessions/client/Client.d.ts +16 -66
- package/dist/api/resources/sessions/client/Client.js +55 -359
- package/dist/api/resources/sessions/client/requests/SessionRestInputV1.d.ts +0 -2
- package/dist/api/resources/sessions/client/requests/SessionsListRequest.d.ts +18 -2
- package/dist/api/resources/sessions/client/requests/index.d.ts +0 -2
- package/dist/api/resources/sessions/types/SessionsListRequestStatus.d.ts +13 -0
- package/dist/api/resources/sessions/types/SessionsListRequestStatus.js +12 -0
- package/dist/api/resources/sessions/types/index.d.ts +1 -0
- package/dist/api/resources/sessions/types/index.js +1 -0
- package/dist/api/resources/windows/client/Client.d.ts +70 -0
- package/dist/api/resources/windows/client/Client.js +320 -0
- package/dist/api/resources/windows/client/index.d.ts +1 -0
- package/dist/api/resources/windows/client/index.js +17 -0
- package/dist/api/resources/windows/client/requests/GetWindowInfoRequest.d.ts +23 -0
- package/dist/api/resources/{sessions/client/requests/SessionPromptContentRequest.d.ts → windows/client/requests/PromptContentRequest.d.ts} +5 -5
- package/dist/api/resources/windows/client/requests/ScrapeContentRequest.d.ts +12 -0
- package/dist/api/resources/windows/client/requests/SummarizeContentRequest.d.ts +14 -0
- package/dist/api/resources/windows/client/requests/index.d.ts +4 -0
- package/dist/api/resources/windows/client/requests/index.js +2 -0
- package/dist/api/resources/windows/index.d.ts +1 -0
- package/dist/api/resources/windows/index.js +17 -0
- package/dist/api/types/AiResponseEnvelope.d.ts +9 -0
- package/dist/api/types/AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper.d.ts +10 -0
- package/dist/api/types/ClientProvidedResponseMetadata.d.ts +1 -1
- package/dist/api/types/DefaultMetaWrapper.d.ts +6 -0
- package/dist/api/types/ErrorEnvelope.d.ts +12 -0
- package/dist/api/types/ExternalProfileV1.d.ts +9 -0
- package/dist/api/types/ExternalSessionAiResponseMetadata.d.ts +10 -0
- package/dist/api/types/ExternalSessionAiResponseMetadataStatus.d.ts +9 -0
- package/{api/types/SessionAiResponseDataStatus.js → dist/api/types/ExternalSessionAiResponseMetadataStatus.js} +3 -3
- package/dist/api/types/ExternalSessionAiResponseMetadataUsage.d.ts +9 -0
- package/dist/api/types/ExternalSessionConfig.d.ts +11 -0
- package/dist/api/types/ExternalSessionWithConnectionInfo.d.ts +24 -0
- package/dist/api/types/ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/{api/types/SessionAiResponseIssue.d.ts → dist/api/types/Issue.d.ts} +1 -1
- package/dist/api/types/ListExternalProfileV1EnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/dist/api/types/Pagination.d.ts +13 -0
- package/dist/api/types/ScrapeResponseEnvelope.d.ts +9 -0
- package/dist/api/types/ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.d.ts +10 -0
- package/dist/api/types/{CleanScrapeResponseOutput.d.ts → ScrapeResponseOutput.d.ts} +2 -2
- package/dist/api/types/SessionConfigV1.d.ts +1 -5
- package/dist/api/types/SessionsWithPagination.d.ts +10 -0
- package/dist/api/types/SessionsWithPaginationEnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/dist/api/types/StatusMessageStatus.d.ts +2 -2
- package/dist/api/types/StatusMessageStatus.js +1 -1
- package/dist/api/types/Window.d.ts +9 -0
- package/dist/api/types/WindowEnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/dist/api/types/index.d.ts +21 -24
- package/dist/api/types/index.js +21 -24
- package/dist/core/auth/BasicAuth.d.ts +8 -0
- package/dist/core/auth/BasicAuth.js +26 -0
- package/dist/core/auth/BearerToken.d.ts +5 -0
- package/dist/core/auth/BearerToken.js +15 -0
- package/dist/core/auth/index.d.ts +2 -0
- package/dist/core/auth/index.js +7 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.js +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +4 -3
- package/dist/serialization/resources/index.d.ts +2 -0
- package/dist/serialization/resources/index.js +3 -1
- package/dist/serialization/resources/sessions/client/requests/SessionRestInputV1.d.ts +0 -1
- package/dist/serialization/resources/sessions/client/requests/SessionRestInputV1.js +0 -1
- package/dist/serialization/resources/sessions/client/requests/index.d.ts +0 -2
- package/dist/serialization/resources/sessions/client/requests/index.js +1 -5
- package/dist/serialization/resources/sessions/types/SessionsListRequestStatus.d.ts +10 -0
- package/dist/serialization/resources/sessions/types/SessionsListRequestStatus.js +31 -0
- package/dist/serialization/resources/sessions/types/index.d.ts +1 -0
- package/dist/serialization/resources/sessions/types/index.js +1 -0
- package/dist/serialization/resources/windows/client/index.d.ts +1 -0
- package/dist/serialization/resources/windows/client/index.js +17 -0
- package/dist/serialization/resources/windows/client/requests/PromptContentRequest.d.ts +16 -0
- package/dist/serialization/resources/{sessions/client/requests/SessionPromptContentRequest.js → windows/client/requests/PromptContentRequest.js} +5 -5
- package/dist/serialization/resources/windows/client/requests/ScrapeContentRequest.d.ts +14 -0
- package/dist/serialization/resources/windows/client/requests/ScrapeContentRequest.js +35 -0
- package/dist/serialization/resources/windows/client/requests/SummarizeContentRequest.d.ts +15 -0
- package/{serialization/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.js → dist/serialization/resources/windows/client/requests/SummarizeContentRequest.js} +5 -6
- package/dist/serialization/resources/windows/client/requests/index.d.ts +3 -0
- package/dist/serialization/resources/windows/client/requests/index.js +9 -0
- package/dist/serialization/resources/windows/index.d.ts +1 -0
- package/dist/serialization/resources/windows/index.js +17 -0
- package/dist/serialization/types/AiResponseEnvelope.d.ts +15 -0
- package/dist/serialization/types/{ProfileOutputV1Body.js → AiResponseEnvelope.js} +6 -5
- package/dist/serialization/types/AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper.d.ts +18 -0
- package/dist/serialization/types/AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js +39 -0
- package/dist/serialization/types/ClientProvidedResponseMetadata.d.ts +1 -1
- package/dist/serialization/types/ClientProvidedResponseMetadata.js +1 -1
- package/dist/serialization/types/DefaultMetaWrapper.d.ts +12 -0
- package/dist/serialization/types/{SessionAiResponseDataStatus.js → DefaultMetaWrapper.js} +4 -2
- package/dist/serialization/types/ErrorEnvelope.d.ts +18 -0
- package/dist/serialization/types/ErrorEnvelope.js +39 -0
- package/{serialization/types/ProfileV1.d.ts → dist/serialization/types/ExternalProfileV1.d.ts} +3 -5
- package/dist/serialization/types/ExternalProfileV1.js +34 -0
- package/dist/serialization/types/ExternalSessionAiResponseMetadata.d.ts +18 -0
- package/dist/serialization/types/{SessionAiResponseMetadata.js → ExternalSessionAiResponseMetadata.js} +7 -4
- package/dist/serialization/types/ExternalSessionAiResponseMetadataStatus.d.ts +10 -0
- package/dist/serialization/types/ExternalSessionAiResponseMetadataStatus.js +31 -0
- package/dist/serialization/types/ExternalSessionAiResponseMetadataUsage.d.ts +13 -0
- package/dist/serialization/types/ExternalSessionAiResponseMetadataUsage.js +34 -0
- package/dist/serialization/types/ExternalSessionConfig.d.ts +14 -0
- package/dist/serialization/types/{ErrorDetail.js → ExternalSessionConfig.js} +5 -5
- package/dist/serialization/types/ExternalSessionWithConnectionInfo.d.ts +21 -0
- package/dist/serialization/types/{Session.js → ExternalSessionWithConnectionInfo.js} +10 -8
- package/dist/serialization/types/ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/dist/serialization/types/ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js +39 -0
- package/{serialization/types/SessionAiResponseIssue.d.ts → dist/serialization/types/Issue.d.ts} +2 -2
- package/{serialization/types/SessionAiResponseIssue.js → dist/serialization/types/Issue.js} +2 -2
- package/dist/serialization/types/ListExternalProfileV1EnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/dist/serialization/types/ListExternalProfileV1EnvelopeDefaultMetaWrapper.js +39 -0
- package/dist/serialization/types/Pagination.d.ts +19 -0
- package/dist/serialization/types/{CleanScrapeResponseData.js → Pagination.js} +10 -6
- package/dist/serialization/types/ScrapeResponseEnvelope.d.ts +16 -0
- package/dist/serialization/types/{LiveViewUrlOutputV1Body.js → ScrapeResponseEnvelope.js} +7 -6
- package/dist/serialization/types/ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.d.ts +18 -0
- package/dist/serialization/types/ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js +39 -0
- package/dist/serialization/types/{CleanScrapeResponseOutput.d.ts → ScrapeResponseOutput.d.ts} +3 -3
- package/{serialization/types/CleanScrapeResponseOutput.js → dist/serialization/types/ScrapeResponseOutput.js} +3 -3
- package/dist/serialization/types/SessionConfigV1.d.ts +3 -5
- package/dist/serialization/types/SessionConfigV1.js +3 -5
- package/dist/serialization/types/SessionsWithPagination.d.ts +15 -0
- package/dist/serialization/types/SessionsWithPagination.js +36 -0
- package/dist/serialization/types/SessionsWithPaginationEnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/dist/serialization/types/SessionsWithPaginationEnvelopeDefaultMetaWrapper.js +39 -0
- package/dist/serialization/types/StatusMessageStatus.d.ts +1 -1
- package/dist/serialization/types/StatusMessageStatus.js +1 -1
- package/dist/serialization/types/Window.d.ts +13 -0
- package/{serialization/types/CleanScrapeResponseDataStatus.js → dist/serialization/types/Window.js} +5 -2
- package/dist/serialization/types/WindowEnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/{serialization/types/CleanScrapeResponse.js → dist/serialization/types/WindowEnvelopeDefaultMetaWrapper.js} +9 -7
- package/dist/serialization/types/index.d.ts +21 -24
- package/dist/serialization/types/index.js +21 -24
- package/dist/wrapper/AirtopClient.d.ts +19 -0
- package/dist/wrapper/AirtopClient.js +32 -0
- package/dist/wrapper/AirtopSessions.d.ts +24 -0
- package/dist/wrapper/AirtopSessions.js +93 -0
- package/dist/wrapper/AirtopWindows.d.ts +18 -0
- package/dist/wrapper/AirtopWindows.js +65 -0
- package/index.d.ts +2 -1
- package/index.js +4 -3
- package/package.json +25 -4
- package/reference.md +53 -166
- package/serialization/resources/index.d.ts +2 -0
- package/serialization/resources/index.js +3 -1
- package/serialization/resources/sessions/client/requests/SessionRestInputV1.d.ts +0 -1
- package/serialization/resources/sessions/client/requests/SessionRestInputV1.js +0 -1
- package/serialization/resources/sessions/client/requests/index.d.ts +0 -2
- package/serialization/resources/sessions/client/requests/index.js +1 -5
- package/serialization/resources/sessions/types/SessionsListRequestStatus.d.ts +10 -0
- package/serialization/resources/sessions/types/SessionsListRequestStatus.js +31 -0
- package/serialization/resources/sessions/types/index.d.ts +1 -0
- package/serialization/resources/sessions/types/index.js +1 -0
- package/serialization/resources/windows/client/index.d.ts +1 -0
- package/serialization/resources/windows/client/index.js +17 -0
- package/serialization/resources/windows/client/requests/PromptContentRequest.d.ts +16 -0
- package/serialization/resources/{sessions/client/requests/SessionPromptContentRequest.js → windows/client/requests/PromptContentRequest.js} +5 -5
- package/serialization/resources/windows/client/requests/ScrapeContentRequest.d.ts +14 -0
- package/serialization/resources/windows/client/requests/ScrapeContentRequest.js +35 -0
- package/serialization/resources/windows/client/requests/SummarizeContentRequest.d.ts +15 -0
- package/{dist/serialization/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.js → serialization/resources/windows/client/requests/SummarizeContentRequest.js} +5 -6
- package/serialization/resources/windows/client/requests/index.d.ts +3 -0
- package/serialization/resources/windows/client/requests/index.js +9 -0
- package/serialization/resources/windows/index.d.ts +1 -0
- package/serialization/resources/windows/index.js +17 -0
- package/serialization/types/AiResponseEnvelope.d.ts +15 -0
- package/{dist/serialization/types/SessionAiResponseData.js → serialization/types/AiResponseEnvelope.js} +6 -5
- package/serialization/types/AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper.d.ts +18 -0
- package/serialization/types/AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js +39 -0
- package/serialization/types/ClientProvidedResponseMetadata.d.ts +1 -1
- package/serialization/types/ClientProvidedResponseMetadata.js +1 -1
- package/serialization/types/DefaultMetaWrapper.d.ts +12 -0
- package/serialization/types/{SessionAiResponseDataStatus.js → DefaultMetaWrapper.js} +4 -2
- package/serialization/types/ErrorEnvelope.d.ts +18 -0
- package/serialization/types/ErrorEnvelope.js +39 -0
- package/{dist/serialization/types/ProfileV1.d.ts → serialization/types/ExternalProfileV1.d.ts} +3 -5
- package/serialization/types/ExternalProfileV1.js +34 -0
- package/serialization/types/ExternalSessionAiResponseMetadata.d.ts +18 -0
- package/serialization/types/{SessionAiResponseMetadata.js → ExternalSessionAiResponseMetadata.js} +7 -4
- package/serialization/types/ExternalSessionAiResponseMetadataStatus.d.ts +10 -0
- package/serialization/types/ExternalSessionAiResponseMetadataStatus.js +31 -0
- package/serialization/types/ExternalSessionAiResponseMetadataUsage.d.ts +13 -0
- package/serialization/types/ExternalSessionAiResponseMetadataUsage.js +34 -0
- package/serialization/types/ExternalSessionConfig.d.ts +14 -0
- package/{dist/serialization/types/LiveViewConnectionInfo.js → serialization/types/ExternalSessionConfig.js} +5 -4
- package/serialization/types/ExternalSessionWithConnectionInfo.d.ts +21 -0
- package/serialization/types/{Session.js → ExternalSessionWithConnectionInfo.js} +10 -8
- package/serialization/types/ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/serialization/types/ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js +39 -0
- package/{dist/serialization/types/SessionAiResponseIssue.d.ts → serialization/types/Issue.d.ts} +2 -2
- package/{dist/serialization/types/SessionAiResponseIssue.js → serialization/types/Issue.js} +2 -2
- package/serialization/types/ListExternalProfileV1EnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/serialization/types/ListExternalProfileV1EnvelopeDefaultMetaWrapper.js +39 -0
- package/serialization/types/Pagination.d.ts +19 -0
- package/serialization/types/Pagination.js +40 -0
- package/serialization/types/ScrapeResponseEnvelope.d.ts +16 -0
- package/serialization/types/ScrapeResponseEnvelope.js +37 -0
- package/serialization/types/ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.d.ts +18 -0
- package/serialization/types/ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js +39 -0
- package/serialization/types/{CleanScrapeResponseOutput.d.ts → ScrapeResponseOutput.d.ts} +3 -3
- package/{dist/serialization/types/CleanScrapeResponseOutput.js → serialization/types/ScrapeResponseOutput.js} +3 -3
- package/serialization/types/SessionConfigV1.d.ts +3 -5
- package/serialization/types/SessionConfigV1.js +3 -5
- package/serialization/types/SessionsWithPagination.d.ts +15 -0
- package/serialization/types/SessionsWithPagination.js +36 -0
- package/serialization/types/SessionsWithPaginationEnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/serialization/types/SessionsWithPaginationEnvelopeDefaultMetaWrapper.js +39 -0
- package/serialization/types/StatusMessageStatus.d.ts +1 -1
- package/serialization/types/StatusMessageStatus.js +1 -1
- package/serialization/types/Window.d.ts +13 -0
- package/{dist/serialization/types/CleanScrapeResponseDataStatus.js → serialization/types/Window.js} +5 -2
- package/serialization/types/WindowEnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/{dist/serialization/types/CleanScrapeResponse.js → serialization/types/WindowEnvelopeDefaultMetaWrapper.js} +9 -7
- package/serialization/types/index.d.ts +21 -24
- package/serialization/types/index.js +21 -24
- package/wrapper/AirtopClient.d.ts +19 -0
- package/wrapper/AirtopClient.js +32 -0
- package/wrapper/AirtopSessions.d.ts +24 -0
- package/wrapper/AirtopSessions.js +93 -0
- package/wrapper/AirtopWindows.d.ts +18 -0
- package/wrapper/AirtopWindows.js +65 -0
- package/api/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.d.ts +0 -18
- package/api/types/CleanScrapeResponse.d.ts +0 -12
- package/api/types/CleanScrapeResponseData.d.ts +0 -10
- package/api/types/CleanScrapeResponseDataStatus.d.ts +0 -12
- package/api/types/ConnectionInfo.d.ts +0 -14
- package/api/types/ErrorDetail.d.ts +0 -10
- package/api/types/ErrorModel.d.ts +0 -20
- package/api/types/LiveViewConnectionInfo.d.ts +0 -9
- package/api/types/LiveViewUrlOutputV1Body.d.ts +0 -13
- package/api/types/ProfileOutputV1Body.d.ts +0 -10
- package/api/types/ProfileV1.d.ts +0 -13
- package/api/types/ProfilesOutputV1Body.d.ts +0 -9
- package/api/types/Session.d.ts +0 -20
- package/api/types/SessionAiResponse.d.ts +0 -16
- package/api/types/SessionAiResponseData.d.ts +0 -10
- package/api/types/SessionAiResponseDataStatus.d.ts +0 -12
- package/api/types/SessionAiResponseMetadata.d.ts +0 -10
- package/api/types/SessionAiResponseMetadataUsage.d.ts +0 -14
- package/api/types/SessionAiResponseResponseMetadataModelUsage.d.ts +0 -10
- package/api/types/SessionConfig.d.ts +0 -15
- package/api/types/SessionOutputV1Body.d.ts +0 -12
- package/api/types/SessionWithConnectionInfo.d.ts +0 -10
- package/api/types/SessionsOutputV1Body.d.ts +0 -10
- package/dist/api/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.d.ts +0 -18
- package/dist/api/types/CleanScrapeResponse.d.ts +0 -12
- package/dist/api/types/CleanScrapeResponseData.d.ts +0 -10
- package/dist/api/types/CleanScrapeResponseDataStatus.d.ts +0 -12
- package/dist/api/types/CleanScrapeResponseDataStatus.js +0 -11
- package/dist/api/types/ConnectionInfo.d.ts +0 -14
- package/dist/api/types/ErrorDetail.d.ts +0 -10
- package/dist/api/types/ErrorModel.d.ts +0 -20
- package/dist/api/types/LiveViewConnectionInfo.d.ts +0 -9
- package/dist/api/types/LiveViewUrlOutputV1Body.d.ts +0 -13
- package/dist/api/types/ProfileOutputV1Body.d.ts +0 -10
- package/dist/api/types/ProfileV1.d.ts +0 -13
- package/dist/api/types/ProfilesOutputV1Body.d.ts +0 -9
- package/dist/api/types/Session.d.ts +0 -20
- package/dist/api/types/SessionAiResponse.d.ts +0 -16
- package/dist/api/types/SessionAiResponseData.d.ts +0 -10
- package/dist/api/types/SessionAiResponseDataStatus.d.ts +0 -12
- package/dist/api/types/SessionAiResponseDataStatus.js +0 -11
- package/dist/api/types/SessionAiResponseMetadata.d.ts +0 -10
- package/dist/api/types/SessionAiResponseMetadataUsage.d.ts +0 -14
- package/dist/api/types/SessionAiResponseResponseMetadataModelUsage.d.ts +0 -10
- package/dist/api/types/SessionConfig.d.ts +0 -15
- package/dist/api/types/SessionOutputV1Body.d.ts +0 -12
- package/dist/api/types/SessionWithConnectionInfo.d.ts +0 -10
- package/dist/api/types/SessionsOutputV1Body.d.ts +0 -10
- package/dist/serialization/resources/sessions/client/requests/SessionPromptContentRequest.d.ts +0 -16
- package/dist/serialization/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.d.ts +0 -16
- package/dist/serialization/types/CleanScrapeResponse.d.ts +0 -16
- package/dist/serialization/types/CleanScrapeResponseData.d.ts +0 -15
- package/dist/serialization/types/CleanScrapeResponseDataStatus.d.ts +0 -10
- package/dist/serialization/types/ConnectionInfo.d.ts +0 -16
- package/dist/serialization/types/ConnectionInfo.js +0 -37
- package/dist/serialization/types/ErrorDetail.d.ts +0 -14
- package/dist/serialization/types/ErrorModel.d.ts +0 -19
- package/dist/serialization/types/ErrorModel.js +0 -40
- package/dist/serialization/types/LiveViewConnectionInfo.d.ts +0 -13
- package/dist/serialization/types/LiveViewUrlOutputV1Body.d.ts +0 -15
- package/dist/serialization/types/ProfileOutputV1Body.d.ts +0 -14
- package/dist/serialization/types/ProfileV1.js +0 -36
- package/dist/serialization/types/ProfilesOutputV1Body.d.ts +0 -14
- package/dist/serialization/types/ProfilesOutputV1Body.js +0 -35
- package/dist/serialization/types/Session.d.ts +0 -19
- package/dist/serialization/types/SessionAiResponse.d.ts +0 -19
- package/dist/serialization/types/SessionAiResponse.js +0 -40
- package/dist/serialization/types/SessionAiResponseData.d.ts +0 -14
- package/dist/serialization/types/SessionAiResponseDataStatus.d.ts +0 -10
- package/dist/serialization/types/SessionAiResponseMetadata.d.ts +0 -15
- package/dist/serialization/types/SessionAiResponseMetadataUsage.d.ts +0 -16
- package/dist/serialization/types/SessionAiResponseMetadataUsage.js +0 -37
- package/dist/serialization/types/SessionAiResponseResponseMetadataModelUsage.d.ts +0 -16
- package/dist/serialization/types/SessionAiResponseResponseMetadataModelUsage.js +0 -37
- package/dist/serialization/types/SessionConfig.d.ts +0 -16
- package/dist/serialization/types/SessionConfig.js +0 -37
- package/dist/serialization/types/SessionOutputV1Body.d.ts +0 -16
- package/dist/serialization/types/SessionOutputV1Body.js +0 -37
- package/dist/serialization/types/SessionWithConnectionInfo.d.ts +0 -15
- package/dist/serialization/types/SessionWithConnectionInfo.js +0 -36
- package/dist/serialization/types/SessionsOutputV1Body.d.ts +0 -14
- package/dist/serialization/types/SessionsOutputV1Body.js +0 -35
- package/serialization/resources/sessions/client/requests/SessionPromptContentRequest.d.ts +0 -16
- package/serialization/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.d.ts +0 -16
- package/serialization/types/CleanScrapeResponse.d.ts +0 -16
- package/serialization/types/CleanScrapeResponseData.d.ts +0 -15
- package/serialization/types/CleanScrapeResponseData.js +0 -36
- package/serialization/types/CleanScrapeResponseDataStatus.d.ts +0 -10
- package/serialization/types/ConnectionInfo.d.ts +0 -16
- package/serialization/types/ConnectionInfo.js +0 -37
- package/serialization/types/ErrorDetail.d.ts +0 -14
- package/serialization/types/ErrorDetail.js +0 -35
- package/serialization/types/ErrorModel.d.ts +0 -19
- package/serialization/types/ErrorModel.js +0 -40
- package/serialization/types/LiveViewConnectionInfo.d.ts +0 -13
- package/serialization/types/LiveViewConnectionInfo.js +0 -34
- package/serialization/types/LiveViewUrlOutputV1Body.d.ts +0 -15
- package/serialization/types/LiveViewUrlOutputV1Body.js +0 -36
- package/serialization/types/ProfileOutputV1Body.d.ts +0 -14
- package/serialization/types/ProfileOutputV1Body.js +0 -35
- package/serialization/types/ProfileV1.js +0 -36
- package/serialization/types/ProfilesOutputV1Body.d.ts +0 -14
- package/serialization/types/ProfilesOutputV1Body.js +0 -35
- package/serialization/types/Session.d.ts +0 -19
- package/serialization/types/SessionAiResponse.d.ts +0 -19
- package/serialization/types/SessionAiResponse.js +0 -40
- package/serialization/types/SessionAiResponseData.d.ts +0 -14
- package/serialization/types/SessionAiResponseData.js +0 -35
- package/serialization/types/SessionAiResponseDataStatus.d.ts +0 -10
- package/serialization/types/SessionAiResponseMetadata.d.ts +0 -15
- package/serialization/types/SessionAiResponseMetadataUsage.d.ts +0 -16
- package/serialization/types/SessionAiResponseMetadataUsage.js +0 -37
- package/serialization/types/SessionAiResponseResponseMetadataModelUsage.d.ts +0 -16
- package/serialization/types/SessionAiResponseResponseMetadataModelUsage.js +0 -37
- package/serialization/types/SessionConfig.d.ts +0 -16
- package/serialization/types/SessionConfig.js +0 -37
- package/serialization/types/SessionOutputV1Body.d.ts +0 -16
- package/serialization/types/SessionOutputV1Body.js +0 -37
- package/serialization/types/SessionWithConnectionInfo.d.ts +0 -15
- package/serialization/types/SessionWithConnectionInfo.js +0 -36
- package/serialization/types/SessionsOutputV1Body.d.ts +0 -14
- package/serialization/types/SessionsOutputV1Body.js +0 -35
- /package/api/resources/{sessions/client/requests/SessionPromptContentRequest.js → windows/client/requests/GetWindowInfoRequest.js} +0 -0
- /package/api/resources/{sessions/client/requests/SessionPromptPaginatedExtractionRequest.js → windows/client/requests/PromptContentRequest.js} +0 -0
- /package/api/{types/CleanScrapeResponse.js → resources/windows/client/requests/ScrapeContentRequest.js} +0 -0
- /package/api/{types/CleanScrapeResponseData.js → resources/windows/client/requests/SummarizeContentRequest.js} +0 -0
- /package/api/types/{CleanScrapeResponseOutput.js → AiResponseEnvelope.js} +0 -0
- /package/api/types/{ConnectionInfo.js → AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js} +0 -0
- /package/api/types/{ErrorDetail.js → DefaultMetaWrapper.js} +0 -0
- /package/api/types/{ErrorModel.js → ErrorEnvelope.js} +0 -0
- /package/api/types/{LiveViewConnectionInfo.js → ExternalProfileV1.js} +0 -0
- /package/api/types/{LiveViewUrlOutputV1Body.js → ExternalSessionAiResponseMetadata.js} +0 -0
- /package/api/types/{ProfileOutputV1Body.js → ExternalSessionAiResponseMetadataUsage.js} +0 -0
- /package/api/types/{ProfileV1.js → ExternalSessionConfig.js} +0 -0
- /package/api/types/{ProfilesOutputV1Body.js → ExternalSessionWithConnectionInfo.js} +0 -0
- /package/api/types/{Session.js → ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +0 -0
- /package/api/types/{SessionAiResponse.js → Issue.js} +0 -0
- /package/api/types/{SessionAiResponseData.js → ListExternalProfileV1EnvelopeDefaultMetaWrapper.js} +0 -0
- /package/api/types/{SessionAiResponseIssue.js → Pagination.js} +0 -0
- /package/api/types/{SessionAiResponseMetadata.js → ScrapeResponseEnvelope.js} +0 -0
- /package/api/types/{SessionAiResponseMetadataUsage.js → ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js} +0 -0
- /package/api/types/{SessionAiResponseResponseMetadataModelUsage.js → ScrapeResponseOutput.js} +0 -0
- /package/api/types/{SessionConfig.js → SessionsWithPagination.js} +0 -0
- /package/api/types/{SessionOutputV1Body.js → SessionsWithPaginationEnvelopeDefaultMetaWrapper.js} +0 -0
- /package/api/types/{SessionWithConnectionInfo.js → Window.js} +0 -0
- /package/api/types/{SessionsOutputV1Body.js → WindowEnvelopeDefaultMetaWrapper.js} +0 -0
- /package/dist/api/resources/{sessions/client/requests/SessionPromptContentRequest.js → windows/client/requests/GetWindowInfoRequest.js} +0 -0
- /package/dist/api/resources/{sessions/client/requests/SessionPromptPaginatedExtractionRequest.js → windows/client/requests/PromptContentRequest.js} +0 -0
- /package/dist/api/{types/CleanScrapeResponse.js → resources/windows/client/requests/ScrapeContentRequest.js} +0 -0
- /package/dist/api/{types/CleanScrapeResponseData.js → resources/windows/client/requests/SummarizeContentRequest.js} +0 -0
- /package/dist/api/types/{CleanScrapeResponseOutput.js → AiResponseEnvelope.js} +0 -0
- /package/dist/api/types/{ConnectionInfo.js → AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js} +0 -0
- /package/dist/api/types/{ErrorDetail.js → DefaultMetaWrapper.js} +0 -0
- /package/dist/api/types/{ErrorModel.js → ErrorEnvelope.js} +0 -0
- /package/dist/api/types/{LiveViewConnectionInfo.js → ExternalProfileV1.js} +0 -0
- /package/dist/api/types/{LiveViewUrlOutputV1Body.js → ExternalSessionAiResponseMetadata.js} +0 -0
- /package/dist/api/types/{ProfileOutputV1Body.js → ExternalSessionAiResponseMetadataUsage.js} +0 -0
- /package/dist/api/types/{ProfileV1.js → ExternalSessionConfig.js} +0 -0
- /package/dist/api/types/{ProfilesOutputV1Body.js → ExternalSessionWithConnectionInfo.js} +0 -0
- /package/dist/api/types/{Session.js → ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +0 -0
- /package/dist/api/types/{SessionAiResponse.js → Issue.js} +0 -0
- /package/dist/api/types/{SessionAiResponseData.js → ListExternalProfileV1EnvelopeDefaultMetaWrapper.js} +0 -0
- /package/dist/api/types/{SessionAiResponseIssue.js → Pagination.js} +0 -0
- /package/dist/api/types/{SessionAiResponseMetadata.js → ScrapeResponseEnvelope.js} +0 -0
- /package/dist/api/types/{SessionAiResponseMetadataUsage.js → ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js} +0 -0
- /package/dist/api/types/{SessionAiResponseResponseMetadataModelUsage.js → ScrapeResponseOutput.js} +0 -0
- /package/dist/api/types/{SessionConfig.js → SessionsWithPagination.js} +0 -0
- /package/dist/api/types/{SessionOutputV1Body.js → SessionsWithPaginationEnvelopeDefaultMetaWrapper.js} +0 -0
- /package/dist/api/types/{SessionWithConnectionInfo.js → Window.js} +0 -0
- /package/dist/api/types/{SessionsOutputV1Body.js → WindowEnvelopeDefaultMetaWrapper.js} +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
export interface ExternalSessionConfig {
|
|
5
|
+
/** Id of a profile to use with this session */
|
|
6
|
+
baseProfileId?: string;
|
|
7
|
+
/** Persist the profile */
|
|
8
|
+
persistProfile?: boolean;
|
|
9
|
+
/** Max length of session in minutes, after which it will terminate if not already deleted */
|
|
10
|
+
timeoutMinutes?: number;
|
|
11
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Airtop from "../index";
|
|
5
|
+
export interface ExternalSessionWithConnectionInfo {
|
|
6
|
+
/** Url to connect to chrome devtools protocol port on the airtop browser. Include the header 'Authorization: Bearer <api-key>.' */
|
|
7
|
+
cdpUrl?: string;
|
|
8
|
+
/** Websocket url to connect to CDP webSocketDebuggerUrl on the airtop browser. Include the header 'Authorization: Bearer <api-key>.' */
|
|
9
|
+
cdpWsUrl?: string;
|
|
10
|
+
/** Websocket url to connect to the chromedriver on the airtop browser. Include the header 'Authorization: Bearer <api-key>.' */
|
|
11
|
+
chromedriverUrl?: string;
|
|
12
|
+
/** Session configuration */
|
|
13
|
+
configuration: Airtop.ExternalSessionConfig;
|
|
14
|
+
/** Current usage in minutes */
|
|
15
|
+
currentUsage?: number;
|
|
16
|
+
/** Date the session was created */
|
|
17
|
+
dateCreated?: Date;
|
|
18
|
+
/** UUID of the session */
|
|
19
|
+
id: string;
|
|
20
|
+
/** Date of the last activity */
|
|
21
|
+
lastActivity?: Date;
|
|
22
|
+
/** Session status */
|
|
23
|
+
status: string;
|
|
24
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Airtop from "../index";
|
|
5
|
+
export interface ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper {
|
|
6
|
+
data: Airtop.ExternalSessionWithConnectionInfo;
|
|
7
|
+
errors?: Airtop.Issue[];
|
|
8
|
+
meta: Airtop.DefaultMetaWrapper;
|
|
9
|
+
warnings?: Airtop.Issue[];
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Airtop from "../index";
|
|
5
|
+
export interface ListExternalProfileV1EnvelopeDefaultMetaWrapper {
|
|
6
|
+
data?: Airtop.ExternalProfileV1[];
|
|
7
|
+
errors?: Airtop.Issue[];
|
|
8
|
+
meta: Airtop.DefaultMetaWrapper;
|
|
9
|
+
warnings?: Airtop.Issue[];
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
export interface Pagination {
|
|
5
|
+
currentLimit: number;
|
|
6
|
+
currentPage: number;
|
|
7
|
+
finalCount: number;
|
|
8
|
+
hasMore: boolean;
|
|
9
|
+
initialCount: number;
|
|
10
|
+
nextOffset: number;
|
|
11
|
+
numberOfPages: number;
|
|
12
|
+
totalItems: number;
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Airtop from "../index";
|
|
5
|
+
export interface ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper {
|
|
6
|
+
data: Airtop.ScrapeResponseEnvelope;
|
|
7
|
+
errors?: Airtop.Issue[];
|
|
8
|
+
meta: Airtop.ExternalSessionAiResponseMetadata;
|
|
9
|
+
warnings?: Airtop.Issue[];
|
|
10
|
+
}
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as Airtop from "../index";
|
|
5
|
-
export interface
|
|
5
|
+
export interface ScrapeResponseOutput {
|
|
6
6
|
/** The scraped content of the browser window */
|
|
7
7
|
scrapedContent: Airtop.ScrapeResponseContent;
|
|
8
8
|
/** Any text that was highlighted in the browser window */
|
|
9
|
-
selectedText
|
|
9
|
+
selectedText?: string;
|
|
10
10
|
/** The title of the browser page */
|
|
11
11
|
title: string;
|
|
12
12
|
}
|
|
@@ -4,12 +4,8 @@
|
|
|
4
4
|
export interface SessionConfigV1 {
|
|
5
5
|
/** Persist the profile */
|
|
6
6
|
persistProfile?: boolean;
|
|
7
|
-
/** Profile name to persist resulting profile (required when persist_profile is true). Must contain A-Za-z0-9 only */
|
|
8
|
-
persistProfileName?: string;
|
|
9
|
-
/** Profile tags */
|
|
10
|
-
persistProfileTags?: string[];
|
|
11
7
|
/** Id of a profile to use with this session */
|
|
12
8
|
profileId?: string;
|
|
13
9
|
/** Max length of session in minutes, after which it will terminate if not already deleted */
|
|
14
|
-
|
|
10
|
+
timeoutMinutes?: number;
|
|
15
11
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Airtop from "../index";
|
|
5
|
+
export interface SessionsWithPagination {
|
|
6
|
+
/** Pagination info */
|
|
7
|
+
pagination: Airtop.Pagination;
|
|
8
|
+
/** List of sessions */
|
|
9
|
+
sessions?: Airtop.ExternalSessionWithConnectionInfo[];
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Airtop from "../index";
|
|
5
|
+
export interface SessionsWithPaginationEnvelopeDefaultMetaWrapper {
|
|
6
|
+
data: Airtop.SessionsWithPagination;
|
|
7
|
+
errors?: Airtop.Issue[];
|
|
8
|
+
meta: Airtop.DefaultMetaWrapper;
|
|
9
|
+
warnings?: Airtop.Issue[];
|
|
10
|
+
}
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* Status of the session
|
|
6
6
|
*/
|
|
7
|
-
export declare type StatusMessageStatus = "
|
|
7
|
+
export declare type StatusMessageStatus = "awaitingCapacity" | "initializing" | "running" | "ended";
|
|
8
8
|
export declare const StatusMessageStatus: {
|
|
9
|
-
readonly AwaitingCapacity: "
|
|
9
|
+
readonly AwaitingCapacity: "awaitingCapacity";
|
|
10
10
|
readonly Initializing: "initializing";
|
|
11
11
|
readonly Running: "running";
|
|
12
12
|
readonly Ended: "ended";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.StatusMessageStatus = void 0;
|
|
7
7
|
exports.StatusMessageStatus = {
|
|
8
|
-
AwaitingCapacity: "
|
|
8
|
+
AwaitingCapacity: "awaitingCapacity",
|
|
9
9
|
Initializing: "initializing",
|
|
10
10
|
Running: "running",
|
|
11
11
|
Ended: "ended",
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Airtop from "../index";
|
|
5
|
+
export interface WindowEnvelopeDefaultMetaWrapper {
|
|
6
|
+
data: Airtop.Window;
|
|
7
|
+
errors?: Airtop.Issue[];
|
|
8
|
+
meta: Airtop.DefaultMetaWrapper;
|
|
9
|
+
warnings?: Airtop.Issue[];
|
|
10
|
+
}
|
|
@@ -1,30 +1,27 @@
|
|
|
1
|
-
export * from "./
|
|
2
|
-
export * from "./
|
|
3
|
-
export * from "./CleanScrapeResponseData";
|
|
4
|
-
export * from "./CleanScrapeResponseOutput";
|
|
1
|
+
export * from "./AiResponseEnvelope";
|
|
2
|
+
export * from "./AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper";
|
|
5
3
|
export * from "./ClientProvidedResponseMetadata";
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./
|
|
4
|
+
export * from "./DefaultMetaWrapper";
|
|
5
|
+
export * from "./ErrorEnvelope";
|
|
8
6
|
export * from "./ErrorMessage";
|
|
9
|
-
export * from "./
|
|
10
|
-
export * from "./
|
|
11
|
-
export * from "./
|
|
12
|
-
export * from "./
|
|
13
|
-
export * from "./
|
|
14
|
-
export * from "./
|
|
7
|
+
export * from "./ExternalProfileV1";
|
|
8
|
+
export * from "./ExternalSessionAiResponseMetadataStatus";
|
|
9
|
+
export * from "./ExternalSessionAiResponseMetadata";
|
|
10
|
+
export * from "./ExternalSessionAiResponseMetadataUsage";
|
|
11
|
+
export * from "./ExternalSessionConfig";
|
|
12
|
+
export * from "./ExternalSessionWithConnectionInfo";
|
|
13
|
+
export * from "./ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper";
|
|
14
|
+
export * from "./Issue";
|
|
15
|
+
export * from "./ListExternalProfileV1EnvelopeDefaultMetaWrapper";
|
|
16
|
+
export * from "./Pagination";
|
|
15
17
|
export * from "./ScrapeResponseContent";
|
|
16
|
-
export * from "./
|
|
17
|
-
export * from "./
|
|
18
|
-
export * from "./
|
|
19
|
-
export * from "./SessionAiResponseData";
|
|
20
|
-
export * from "./SessionAiResponseIssue";
|
|
21
|
-
export * from "./SessionAiResponseMetadata";
|
|
22
|
-
export * from "./SessionAiResponseMetadataUsage";
|
|
23
|
-
export * from "./SessionAiResponseResponseMetadataModelUsage";
|
|
24
|
-
export * from "./SessionConfig";
|
|
18
|
+
export * from "./ScrapeResponseEnvelope";
|
|
19
|
+
export * from "./ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper";
|
|
20
|
+
export * from "./ScrapeResponseOutput";
|
|
25
21
|
export * from "./SessionConfigV1";
|
|
26
|
-
export * from "./
|
|
27
|
-
export * from "./
|
|
28
|
-
export * from "./SessionsOutputV1Body";
|
|
22
|
+
export * from "./SessionsWithPagination";
|
|
23
|
+
export * from "./SessionsWithPaginationEnvelopeDefaultMetaWrapper";
|
|
29
24
|
export * from "./StatusMessageStatus";
|
|
30
25
|
export * from "./StatusMessage";
|
|
26
|
+
export * from "./Window";
|
|
27
|
+
export * from "./WindowEnvelopeDefaultMetaWrapper";
|
package/dist/api/types/index.js
CHANGED
|
@@ -14,33 +14,30 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
18
|
-
__exportStar(require("./
|
|
19
|
-
__exportStar(require("./CleanScrapeResponseData"), exports);
|
|
20
|
-
__exportStar(require("./CleanScrapeResponseOutput"), exports);
|
|
17
|
+
__exportStar(require("./AiResponseEnvelope"), exports);
|
|
18
|
+
__exportStar(require("./AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper"), exports);
|
|
21
19
|
__exportStar(require("./ClientProvidedResponseMetadata"), exports);
|
|
22
|
-
__exportStar(require("./
|
|
23
|
-
__exportStar(require("./
|
|
20
|
+
__exportStar(require("./DefaultMetaWrapper"), exports);
|
|
21
|
+
__exportStar(require("./ErrorEnvelope"), exports);
|
|
24
22
|
__exportStar(require("./ErrorMessage"), exports);
|
|
25
|
-
__exportStar(require("./
|
|
26
|
-
__exportStar(require("./
|
|
27
|
-
__exportStar(require("./
|
|
28
|
-
__exportStar(require("./
|
|
29
|
-
__exportStar(require("./
|
|
30
|
-
__exportStar(require("./
|
|
23
|
+
__exportStar(require("./ExternalProfileV1"), exports);
|
|
24
|
+
__exportStar(require("./ExternalSessionAiResponseMetadataStatus"), exports);
|
|
25
|
+
__exportStar(require("./ExternalSessionAiResponseMetadata"), exports);
|
|
26
|
+
__exportStar(require("./ExternalSessionAiResponseMetadataUsage"), exports);
|
|
27
|
+
__exportStar(require("./ExternalSessionConfig"), exports);
|
|
28
|
+
__exportStar(require("./ExternalSessionWithConnectionInfo"), exports);
|
|
29
|
+
__exportStar(require("./ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper"), exports);
|
|
30
|
+
__exportStar(require("./Issue"), exports);
|
|
31
|
+
__exportStar(require("./ListExternalProfileV1EnvelopeDefaultMetaWrapper"), exports);
|
|
32
|
+
__exportStar(require("./Pagination"), exports);
|
|
31
33
|
__exportStar(require("./ScrapeResponseContent"), exports);
|
|
32
|
-
__exportStar(require("./
|
|
33
|
-
__exportStar(require("./
|
|
34
|
-
__exportStar(require("./
|
|
35
|
-
__exportStar(require("./SessionAiResponseData"), exports);
|
|
36
|
-
__exportStar(require("./SessionAiResponseIssue"), exports);
|
|
37
|
-
__exportStar(require("./SessionAiResponseMetadata"), exports);
|
|
38
|
-
__exportStar(require("./SessionAiResponseMetadataUsage"), exports);
|
|
39
|
-
__exportStar(require("./SessionAiResponseResponseMetadataModelUsage"), exports);
|
|
40
|
-
__exportStar(require("./SessionConfig"), exports);
|
|
34
|
+
__exportStar(require("./ScrapeResponseEnvelope"), exports);
|
|
35
|
+
__exportStar(require("./ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper"), exports);
|
|
36
|
+
__exportStar(require("./ScrapeResponseOutput"), exports);
|
|
41
37
|
__exportStar(require("./SessionConfigV1"), exports);
|
|
42
|
-
__exportStar(require("./
|
|
43
|
-
__exportStar(require("./
|
|
44
|
-
__exportStar(require("./SessionsOutputV1Body"), exports);
|
|
38
|
+
__exportStar(require("./SessionsWithPagination"), exports);
|
|
39
|
+
__exportStar(require("./SessionsWithPaginationEnvelopeDefaultMetaWrapper"), exports);
|
|
45
40
|
__exportStar(require("./StatusMessageStatus"), exports);
|
|
46
41
|
__exportStar(require("./StatusMessage"), exports);
|
|
42
|
+
__exportStar(require("./Window"), exports);
|
|
43
|
+
__exportStar(require("./WindowEnvelopeDefaultMetaWrapper"), exports);
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BasicAuth = void 0;
|
|
4
|
+
const js_base64_1 = require("js-base64");
|
|
5
|
+
const BASIC_AUTH_HEADER_PREFIX = /^Basic /i;
|
|
6
|
+
exports.BasicAuth = {
|
|
7
|
+
toAuthorizationHeader: (basicAuth) => {
|
|
8
|
+
if (basicAuth == null) {
|
|
9
|
+
return undefined;
|
|
10
|
+
}
|
|
11
|
+
const token = js_base64_1.Base64.encode(`${basicAuth.username}:${basicAuth.password}`);
|
|
12
|
+
return `Basic ${token}`;
|
|
13
|
+
},
|
|
14
|
+
fromAuthorizationHeader: (header) => {
|
|
15
|
+
const credentials = header.replace(BASIC_AUTH_HEADER_PREFIX, "");
|
|
16
|
+
const decoded = js_base64_1.Base64.decode(credentials);
|
|
17
|
+
const [username, password] = decoded.split(":", 2);
|
|
18
|
+
if (username == null || password == null) {
|
|
19
|
+
throw new Error("Invalid basic auth");
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
username,
|
|
23
|
+
password,
|
|
24
|
+
};
|
|
25
|
+
},
|
|
26
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BearerToken = void 0;
|
|
4
|
+
const BEARER_AUTH_HEADER_PREFIX = /^Bearer /i;
|
|
5
|
+
exports.BearerToken = {
|
|
6
|
+
toAuthorizationHeader: (token) => {
|
|
7
|
+
if (token == null) {
|
|
8
|
+
return undefined;
|
|
9
|
+
}
|
|
10
|
+
return `Bearer ${token}`;
|
|
11
|
+
},
|
|
12
|
+
fromAuthorizationHeader: (header) => {
|
|
13
|
+
return header.replace(BEARER_AUTH_HEADER_PREFIX, "").trim();
|
|
14
|
+
},
|
|
15
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BearerToken = exports.BasicAuth = void 0;
|
|
4
|
+
var BasicAuth_1 = require("./BasicAuth");
|
|
5
|
+
Object.defineProperty(exports, "BasicAuth", { enumerable: true, get: function () { return BasicAuth_1.BasicAuth; } });
|
|
6
|
+
var BearerToken_1 = require("./BearerToken");
|
|
7
|
+
Object.defineProperty(exports, "BearerToken", { enumerable: true, get: function () { return BearerToken_1.BearerToken; } });
|
package/dist/core/index.d.ts
CHANGED
package/dist/core/index.js
CHANGED
|
@@ -28,6 +28,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.serialization = void 0;
|
|
30
30
|
__exportStar(require("./fetcher"), exports);
|
|
31
|
+
__exportStar(require("./auth"), exports);
|
|
31
32
|
__exportStar(require("./runtime"), exports);
|
|
32
33
|
__exportStar(require("./streaming-fetcher"), exports);
|
|
33
34
|
exports.serialization = __importStar(require("./schemas"));
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * as Airtop from "./api";
|
|
2
|
-
export
|
|
2
|
+
export * as Resources from './api/resources';
|
|
3
3
|
export { AirtopEnvironment } from "./environments";
|
|
4
4
|
export { AirtopError, AirtopTimeoutError } from "./errors";
|
|
5
|
+
export { AirtopClient } from './wrapper/AirtopClient';
|
package/dist/index.js
CHANGED
|
@@ -23,12 +23,13 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.AirtopTimeoutError = exports.AirtopError = exports.AirtopEnvironment = exports.
|
|
26
|
+
exports.AirtopClient = exports.AirtopTimeoutError = exports.AirtopError = exports.AirtopEnvironment = exports.Resources = exports.Airtop = void 0;
|
|
27
27
|
exports.Airtop = __importStar(require("./api"));
|
|
28
|
-
|
|
29
|
-
Object.defineProperty(exports, "AirtopClient", { enumerable: true, get: function () { return Client_1.AirtopClient; } });
|
|
28
|
+
exports.Resources = __importStar(require("./api/resources"));
|
|
30
29
|
var environments_1 = require("./environments");
|
|
31
30
|
Object.defineProperty(exports, "AirtopEnvironment", { enumerable: true, get: function () { return environments_1.AirtopEnvironment; } });
|
|
32
31
|
var errors_1 = require("./errors");
|
|
33
32
|
Object.defineProperty(exports, "AirtopError", { enumerable: true, get: function () { return errors_1.AirtopError; } });
|
|
34
33
|
Object.defineProperty(exports, "AirtopTimeoutError", { enumerable: true, get: function () { return errors_1.AirtopTimeoutError; } });
|
|
34
|
+
var AirtopClient_1 = require("./wrapper/AirtopClient");
|
|
35
|
+
Object.defineProperty(exports, "AirtopClient", { enumerable: true, get: function () { return AirtopClient_1.AirtopClient; } });
|
|
@@ -26,7 +26,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
26
26
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.sessions = void 0;
|
|
29
|
+
exports.windows = exports.sessions = void 0;
|
|
30
30
|
exports.sessions = __importStar(require("./sessions"));
|
|
31
31
|
__exportStar(require("./sessions/types"), exports);
|
|
32
32
|
__exportStar(require("./sessions/client/requests"), exports);
|
|
33
|
+
exports.windows = __importStar(require("./windows"));
|
|
34
|
+
__exportStar(require("./windows/client/requests"), exports);
|
|
@@ -8,7 +8,6 @@ import { SessionConfigV1 } from "../../../../types/SessionConfigV1";
|
|
|
8
8
|
export declare const SessionRestInputV1: core.serialization.Schema<serializers.SessionRestInputV1.Raw, Airtop.SessionRestInputV1>;
|
|
9
9
|
export declare namespace SessionRestInputV1 {
|
|
10
10
|
interface Raw {
|
|
11
|
-
$schema?: string | null;
|
|
12
11
|
configuration?: SessionConfigV1.Raw | null;
|
|
13
12
|
}
|
|
14
13
|
}
|
|
@@ -30,6 +30,5 @@ exports.SessionRestInputV1 = void 0;
|
|
|
30
30
|
const core = __importStar(require("../../../../../core"));
|
|
31
31
|
const SessionConfigV1_1 = require("../../../../types/SessionConfigV1");
|
|
32
32
|
exports.SessionRestInputV1 = core.serialization.object({
|
|
33
|
-
schema: core.serialization.property("$schema", core.serialization.string().optional()),
|
|
34
33
|
configuration: SessionConfigV1_1.SessionConfigV1.optional(),
|
|
35
34
|
});
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.SessionRestInputV1 = void 0;
|
|
4
4
|
var SessionRestInputV1_1 = require("./SessionRestInputV1");
|
|
5
5
|
Object.defineProperty(exports, "SessionRestInputV1", { enumerable: true, get: function () { return SessionRestInputV1_1.SessionRestInputV1; } });
|
|
6
|
-
var SessionPromptContentRequest_1 = require("./SessionPromptContentRequest");
|
|
7
|
-
Object.defineProperty(exports, "SessionPromptContentRequest", { enumerable: true, get: function () { return SessionPromptContentRequest_1.SessionPromptContentRequest; } });
|
|
8
|
-
var SessionPromptPaginatedExtractionRequest_1 = require("./SessionPromptPaginatedExtractionRequest");
|
|
9
|
-
Object.defineProperty(exports, "SessionPromptPaginatedExtractionRequest", { enumerable: true, get: function () { return SessionPromptPaginatedExtractionRequest_1.SessionPromptPaginatedExtractionRequest; } });
|
|
@@ -0,0 +1,10 @@
|
|
|
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 SessionsListRequestStatus: core.serialization.Schema<serializers.SessionsListRequestStatus.Raw, Airtop.SessionsListRequestStatus>;
|
|
8
|
+
export declare namespace SessionsListRequestStatus {
|
|
9
|
+
type Raw = "awaiting_capacity" | "initializing" | "running" | "ended";
|
|
10
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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.SessionsListRequestStatus = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
exports.SessionsListRequestStatus = core.serialization.enum_(["awaiting_capacity", "initializing", "running", "ended"]);
|
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./SessionsListRequestStatus"), exports);
|
|
17
18
|
__exportStar(require("./SessionsEventsResponseStatus"), exports);
|
|
18
19
|
__exportStar(require("./SessionsEventsResponseError"), exports);
|
|
19
20
|
__exportStar(require("./SessionsEventsResponse"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./requests";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./requests"), exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
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 PromptContentRequest: core.serialization.Schema<serializers.PromptContentRequest.Raw, Airtop.PromptContentRequest>;
|
|
8
|
+
export declare namespace PromptContentRequest {
|
|
9
|
+
interface Raw {
|
|
10
|
+
clientRequestId?: string | null;
|
|
11
|
+
costThresholdCredits?: number | null;
|
|
12
|
+
followPaginationLinks?: boolean | null;
|
|
13
|
+
prompt: string;
|
|
14
|
+
timeThresholdSeconds?: number | null;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -26,12 +26,12 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
26
26
|
return result;
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.
|
|
29
|
+
exports.PromptContentRequest = void 0;
|
|
30
30
|
const core = __importStar(require("../../../../../core"));
|
|
31
|
-
exports.
|
|
32
|
-
|
|
31
|
+
exports.PromptContentRequest = core.serialization.object({
|
|
32
|
+
clientRequestId: core.serialization.string().optional(),
|
|
33
33
|
costThresholdCredits: core.serialization.number().optional(),
|
|
34
|
-
|
|
34
|
+
followPaginationLinks: core.serialization.boolean().optional(),
|
|
35
35
|
prompt: core.serialization.string(),
|
|
36
|
-
|
|
36
|
+
timeThresholdSeconds: core.serialization.number().optional(),
|
|
37
37
|
});
|
|
@@ -0,0 +1,14 @@
|
|
|
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 ScrapeContentRequest: core.serialization.Schema<serializers.ScrapeContentRequest.Raw, Airtop.ScrapeContentRequest>;
|
|
8
|
+
export declare namespace ScrapeContentRequest {
|
|
9
|
+
interface Raw {
|
|
10
|
+
clientRequestId?: string | null;
|
|
11
|
+
costThresholdCredits?: number | null;
|
|
12
|
+
timeThresholdSeconds?: number | null;
|
|
13
|
+
}
|
|
14
|
+
}
|