@airtop/sdk 0.0.7 → 0.0.8
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/index.d.ts +1 -1
- package/api/index.js +1 -1
- package/api/resources/index.d.ts +3 -2
- package/api/resources/index.js +4 -3
- 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 +10 -67
- package/api/resources/sessions/client/Client.js +33 -441
- package/api/resources/sessions/client/requests/SessionRestInputV1.d.ts +0 -2
- package/api/resources/sessions/client/requests/index.d.ts +0 -2
- package/api/resources/sessions/index.d.ts +0 -1
- package/api/resources/sessions/index.js +0 -1
- 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/{serialization/resources/sessions/types → api/resources/windows/client}/index.js +1 -3
- 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/{sessions/types → windows}/index.js +1 -3
- 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/{dist/api/types/ProfileV1.d.ts → api/types/ExternalProfileV1.d.ts} +3 -5
- 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/ListExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/api/types/ScrapeResponseEnvelope.d.ts +9 -0
- package/api/types/ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.d.ts +10 -0
- package/{dist/api/types/CleanScrapeResponseOutput.d.ts → api/types/ScrapeResponseOutput.d.ts} +2 -2
- package/api/types/SessionConfigV1.d.ts +1 -5
- package/api/types/Window.d.ts +11 -0
- package/api/types/WindowEnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/api/types/index.d.ts +19 -27
- package/api/types/index.js +19 -27
- 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 -1
- package/core/index.js +1 -1
- 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/index.d.ts +1 -1
- package/dist/api/index.js +1 -1
- package/dist/api/resources/index.d.ts +3 -2
- package/dist/api/resources/index.js +4 -3
- 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 +10 -67
- package/dist/api/resources/sessions/client/Client.js +33 -441
- package/dist/api/resources/sessions/client/requests/SessionRestInputV1.d.ts +0 -2
- package/dist/api/resources/sessions/client/requests/index.d.ts +0 -2
- package/dist/api/resources/sessions/index.d.ts +0 -1
- package/dist/api/resources/sessions/index.js +0 -1
- 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/{serialization/resources/sessions/types → api/resources/windows/client}/index.js +1 -3
- 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/{sessions/types → windows}/index.js +1 -3
- 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/{api/types/ProfileV1.d.ts → dist/api/types/ExternalProfileV1.d.ts} +3 -5
- 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/ListExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/dist/api/types/ScrapeResponseEnvelope.d.ts +9 -0
- package/dist/api/types/ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.d.ts +10 -0
- package/{api/types/CleanScrapeResponseOutput.d.ts → dist/api/types/ScrapeResponseOutput.d.ts} +2 -2
- package/dist/api/types/SessionConfigV1.d.ts +1 -5
- package/dist/api/types/Window.d.ts +11 -0
- package/dist/api/types/WindowEnvelopeDefaultMetaWrapper.d.ts +10 -0
- package/dist/api/types/index.d.ts +19 -27
- package/dist/api/types/index.js +19 -27
- 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 -1
- package/dist/core/index.js +1 -1
- package/dist/serialization/index.d.ts +1 -1
- package/dist/serialization/index.js +1 -1
- package/dist/serialization/resources/index.d.ts +2 -1
- package/dist/serialization/resources/index.js +3 -2
- 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/index.d.ts +0 -1
- package/dist/serialization/resources/sessions/index.js +0 -1
- 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/{serialization/resources/sessions/client/requests/SessionPromptContentRequest.js → dist/serialization/resources/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/dist/serialization/resources/{sessions/client/requests/SessionPromptPaginatedExtractionRequest.js → 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/{ErrorMessage.d.ts → AiResponseEnvelope.d.ts} +6 -5
- package/dist/serialization/types/AiResponseEnvelope.js +36 -0
- 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/{StatusMessageStatus.js → DefaultMetaWrapper.js} +4 -2
- package/dist/serialization/types/ErrorEnvelope.d.ts +18 -0
- package/dist/serialization/types/{CleanScrapeResponseData.js → ErrorEnvelope.js} +9 -6
- package/{serialization/types/ProfileV1.d.ts → dist/serialization/types/ExternalProfileV1.d.ts} +4 -5
- package/dist/serialization/types/{ErrorDetail.js → ExternalProfileV1.js} +5 -5
- 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/{CleanScrapeResponseDataStatus.js → ExternalSessionAiResponseMetadataStatus.js} +2 -2
- 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/{LiveViewConnectionInfo.js → ExternalSessionConfig.js} +5 -4
- 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/dist/serialization/types/{SessionAiResponseIssue.js → Issue.js} +2 -2
- package/dist/serialization/types/ListExternalProfileV1EnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/dist/serialization/types/{ConnectionInfo.js → ListExternalProfileV1EnvelopeDefaultMetaWrapper.js} +9 -7
- package/dist/serialization/types/ListExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/dist/serialization/types/ListExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js +39 -0
- package/dist/serialization/types/ScrapeResponseEnvelope.d.ts +16 -0
- package/dist/serialization/types/ScrapeResponseEnvelope.js +37 -0
- package/dist/serialization/types/ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.d.ts +18 -0
- package/dist/serialization/types/ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js +39 -0
- package/{serialization/types/CleanScrapeResponseOutput.d.ts → dist/serialization/types/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/Window.d.ts +14 -0
- package/{serialization/types/ErrorMessage.js → dist/serialization/types/Window.js} +5 -5
- 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 +19 -27
- package/dist/serialization/types/index.js +19 -27
- package/package.json +20 -3
- package/reference.md +45 -224
- package/serialization/index.d.ts +1 -1
- package/serialization/index.js +1 -1
- package/serialization/resources/index.d.ts +2 -1
- package/serialization/resources/index.js +3 -2
- 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/index.d.ts +0 -1
- package/serialization/resources/sessions/index.js +0 -1
- 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/{dist/serialization/resources/sessions/client/requests/SessionPromptContentRequest.js → serialization/resources/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/serialization/resources/{sessions/client/requests/SessionPromptPaginatedExtractionRequest.js → 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/{ErrorMessage.d.ts → AiResponseEnvelope.d.ts} +6 -5
- package/serialization/types/AiResponseEnvelope.js +36 -0
- 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/{dist/serialization/types/SessionAiResponseDataStatus.js → serialization/types/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} +4 -5
- package/serialization/types/{ErrorDetail.js → ExternalProfileV1.js} +5 -5
- 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/{CleanScrapeResponseDataStatus.js → ExternalSessionAiResponseMetadataStatus.js} +2 -2
- 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/ProfileOutputV1Body.js → serialization/types/ExternalSessionConfig.js} +5 -5
- 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/serialization/types/{SessionAiResponseIssue.js → Issue.js} +2 -2
- package/serialization/types/ListExternalProfileV1EnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/serialization/types/ListExternalProfileV1EnvelopeDefaultMetaWrapper.js +39 -0
- package/serialization/types/ListExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.d.ts +18 -0
- package/serialization/types/ListExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js +39 -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/{dist/serialization/types/CleanScrapeResponseOutput.d.ts → serialization/types/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/Window.d.ts +14 -0
- package/{dist/serialization/types/ErrorMessage.js → serialization/types/Window.js} +5 -5
- 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 +19 -27
- package/serialization/types/index.js +19 -27
- package/api/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.d.ts +0 -18
- package/api/resources/sessions/types/SessionsEventsResponse.d.ts +0 -16
- package/api/resources/sessions/types/SessionsEventsResponseError.d.ts +0 -11
- package/api/resources/sessions/types/SessionsEventsResponseStatus.d.ts +0 -11
- package/api/resources/sessions/types/index.d.ts +0 -3
- 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/ErrorMessage.d.ts +0 -11
- 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/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/api/types/StatusMessage.d.ts +0 -14
- package/api/types/StatusMessageStatus.d.ts +0 -13
- package/api/types/StatusMessageStatus.js +0 -12
- package/core/streaming-fetcher/Stream.d.ts +0 -48
- package/core/streaming-fetcher/Stream.js +0 -170
- package/core/streaming-fetcher/index.d.ts +0 -1
- package/core/streaming-fetcher/index.js +0 -5
- package/dist/api/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.d.ts +0 -18
- package/dist/api/resources/sessions/types/SessionsEventsResponse.d.ts +0 -16
- package/dist/api/resources/sessions/types/SessionsEventsResponseError.d.ts +0 -11
- package/dist/api/resources/sessions/types/SessionsEventsResponseStatus.d.ts +0 -11
- package/dist/api/resources/sessions/types/index.d.ts +0 -3
- 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/ErrorMessage.d.ts +0 -11
- 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.js +0 -5
- package/dist/api/types/ProfilesOutputV1Body.d.ts +0 -9
- package/dist/api/types/ProfilesOutputV1Body.js +0 -5
- package/dist/api/types/Session.d.ts +0 -20
- package/dist/api/types/Session.js +0 -5
- package/dist/api/types/SessionAiResponse.d.ts +0 -16
- package/dist/api/types/SessionAiResponse.js +0 -5
- package/dist/api/types/SessionAiResponseData.d.ts +0 -10
- package/dist/api/types/SessionAiResponseData.js +0 -5
- package/dist/api/types/SessionAiResponseDataStatus.d.ts +0 -12
- package/dist/api/types/SessionAiResponseDataStatus.js +0 -11
- package/dist/api/types/SessionAiResponseIssue.js +0 -5
- package/dist/api/types/SessionAiResponseMetadata.d.ts +0 -10
- package/dist/api/types/SessionAiResponseMetadata.js +0 -5
- package/dist/api/types/SessionAiResponseMetadataUsage.d.ts +0 -14
- package/dist/api/types/SessionAiResponseMetadataUsage.js +0 -5
- package/dist/api/types/SessionAiResponseResponseMetadataModelUsage.d.ts +0 -10
- package/dist/api/types/SessionAiResponseResponseMetadataModelUsage.js +0 -5
- package/dist/api/types/SessionConfig.d.ts +0 -15
- package/dist/api/types/SessionConfig.js +0 -5
- package/dist/api/types/SessionOutputV1Body.d.ts +0 -12
- package/dist/api/types/SessionOutputV1Body.js +0 -5
- package/dist/api/types/SessionWithConnectionInfo.d.ts +0 -10
- package/dist/api/types/SessionWithConnectionInfo.js +0 -5
- package/dist/api/types/SessionsOutputV1Body.d.ts +0 -10
- package/dist/api/types/SessionsOutputV1Body.js +0 -5
- package/dist/api/types/StatusMessage.d.ts +0 -14
- package/dist/api/types/StatusMessage.js +0 -5
- package/dist/api/types/StatusMessageStatus.d.ts +0 -13
- package/dist/api/types/StatusMessageStatus.js +0 -12
- package/dist/core/streaming-fetcher/Stream.d.ts +0 -48
- package/dist/core/streaming-fetcher/Stream.js +0 -170
- package/dist/core/streaming-fetcher/index.d.ts +0 -1
- package/dist/core/streaming-fetcher/index.js +0 -5
- 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/resources/sessions/types/SessionsEventsResponse.d.ts +0 -18
- package/dist/serialization/resources/sessions/types/SessionsEventsResponse.js +0 -41
- package/dist/serialization/resources/sessions/types/SessionsEventsResponseError.d.ts +0 -15
- package/dist/serialization/resources/sessions/types/SessionsEventsResponseError.js +0 -36
- package/dist/serialization/resources/sessions/types/SessionsEventsResponseStatus.d.ts +0 -15
- package/dist/serialization/resources/sessions/types/SessionsEventsResponseStatus.js +0 -36
- package/dist/serialization/resources/sessions/types/index.d.ts +0 -3
- 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/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/LiveViewUrlOutputV1Body.js +0 -36
- 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/SessionAiResponseData.js +0 -35
- 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/dist/serialization/types/StatusMessage.d.ts +0 -16
- package/dist/serialization/types/StatusMessage.js +0 -37
- package/dist/serialization/types/StatusMessageStatus.d.ts +0 -10
- package/serialization/resources/sessions/client/requests/SessionPromptContentRequest.d.ts +0 -16
- package/serialization/resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.d.ts +0 -16
- package/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +0 -18
- package/serialization/resources/sessions/types/SessionsEventsResponse.js +0 -41
- package/serialization/resources/sessions/types/SessionsEventsResponseError.d.ts +0 -15
- package/serialization/resources/sessions/types/SessionsEventsResponseError.js +0 -36
- package/serialization/resources/sessions/types/SessionsEventsResponseStatus.d.ts +0 -15
- package/serialization/resources/sessions/types/SessionsEventsResponseStatus.js +0 -36
- package/serialization/resources/sessions/types/index.d.ts +0 -3
- 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/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/SessionAiResponseDataStatus.js +0 -31
- 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/serialization/types/StatusMessage.d.ts +0 -16
- package/serialization/types/StatusMessage.js +0 -37
- package/serialization/types/StatusMessageStatus.d.ts +0 -10
- package/serialization/types/StatusMessageStatus.js +0 -31
- /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/resources/{sessions/types/SessionsEventsResponse.js → windows/client/requests/ScrapeContentRequest.js} +0 -0
- /package/api/resources/{sessions/types/SessionsEventsResponseError.js → windows/client/requests/SummarizeContentRequest.js} +0 -0
- /package/api/{resources/sessions/types/SessionsEventsResponseStatus.js → types/AiResponseEnvelope.js} +0 -0
- /package/api/types/{CleanScrapeResponse.js → AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js} +0 -0
- /package/api/types/{CleanScrapeResponseData.js → DefaultMetaWrapper.js} +0 -0
- /package/api/types/{CleanScrapeResponseOutput.js → ErrorEnvelope.js} +0 -0
- /package/api/types/{ConnectionInfo.js → ExternalProfileV1.js} +0 -0
- /package/api/types/{ErrorDetail.js → ExternalSessionAiResponseMetadata.js} +0 -0
- /package/api/types/{ErrorMessage.js → ExternalSessionAiResponseMetadataUsage.js} +0 -0
- /package/api/types/{ErrorModel.js → ExternalSessionConfig.js} +0 -0
- /package/api/types/{LiveViewConnectionInfo.js → ExternalSessionWithConnectionInfo.js} +0 -0
- /package/api/types/{LiveViewUrlOutputV1Body.js → ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +0 -0
- /package/api/types/{ProfileOutputV1Body.js → Issue.js} +0 -0
- /package/api/types/{ProfileV1.js → ListExternalProfileV1EnvelopeDefaultMetaWrapper.js} +0 -0
- /package/api/types/{ProfilesOutputV1Body.js → ListExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +0 -0
- /package/api/types/{Session.js → ScrapeResponseEnvelope.js} +0 -0
- /package/api/types/{SessionAiResponse.js → ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js} +0 -0
- /package/api/types/{SessionAiResponseData.js → ScrapeResponseOutput.js} +0 -0
- /package/api/types/{SessionAiResponseIssue.js → Window.js} +0 -0
- /package/api/types/{SessionAiResponseMetadata.js → WindowEnvelopeDefaultMetaWrapper.js} +0 -0
- /package/{api/types/SessionAiResponseMetadataUsage.js → dist/api/resources/windows/client/requests/GetWindowInfoRequest.js} +0 -0
- /package/{api/types/SessionAiResponseResponseMetadataModelUsage.js → dist/api/resources/windows/client/requests/PromptContentRequest.js} +0 -0
- /package/{api/types/SessionConfig.js → dist/api/resources/windows/client/requests/ScrapeContentRequest.js} +0 -0
- /package/{api/types/SessionOutputV1Body.js → dist/api/resources/windows/client/requests/SummarizeContentRequest.js} +0 -0
- /package/{api/types/SessionWithConnectionInfo.js → dist/api/types/AiResponseEnvelope.js} +0 -0
- /package/{api/types/SessionsOutputV1Body.js → dist/api/types/AiResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js} +0 -0
- /package/{api/types/StatusMessage.js → dist/api/types/DefaultMetaWrapper.js} +0 -0
- /package/dist/api/{resources/sessions/client/requests/SessionPromptContentRequest.js → types/ErrorEnvelope.js} +0 -0
- /package/dist/api/{resources/sessions/client/requests/SessionPromptPaginatedExtractionRequest.js → types/ExternalProfileV1.js} +0 -0
- /package/dist/api/{resources/sessions/types/SessionsEventsResponse.js → types/ExternalSessionAiResponseMetadata.js} +0 -0
- /package/dist/api/{resources/sessions/types/SessionsEventsResponseError.js → types/ExternalSessionAiResponseMetadataUsage.js} +0 -0
- /package/dist/api/{resources/sessions/types/SessionsEventsResponseStatus.js → types/ExternalSessionConfig.js} +0 -0
- /package/dist/api/types/{CleanScrapeResponse.js → ExternalSessionWithConnectionInfo.js} +0 -0
- /package/dist/api/types/{CleanScrapeResponseData.js → ExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +0 -0
- /package/dist/api/types/{CleanScrapeResponseOutput.js → Issue.js} +0 -0
- /package/dist/api/types/{ConnectionInfo.js → ListExternalProfileV1EnvelopeDefaultMetaWrapper.js} +0 -0
- /package/dist/api/types/{ErrorDetail.js → ListExternalSessionWithConnectionInfoEnvelopeDefaultMetaWrapper.js} +0 -0
- /package/dist/api/types/{ErrorMessage.js → ScrapeResponseEnvelope.js} +0 -0
- /package/dist/api/types/{ErrorModel.js → ScrapeResponseEnvelopeExternalSessionAiResponseMetadataWrapper.js} +0 -0
- /package/dist/api/types/{LiveViewConnectionInfo.js → ScrapeResponseOutput.js} +0 -0
- /package/dist/api/types/{LiveViewUrlOutputV1Body.js → Window.js} +0 -0
- /package/dist/api/types/{ProfileOutputV1Body.js → WindowEnvelopeDefaultMetaWrapper.js} +0 -0
@@ -1,41 +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.SessionsEventsResponse = void 0;
|
30
|
-
const core = __importStar(require("../../../../core"));
|
31
|
-
const SessionsEventsResponseStatus_1 = require("./SessionsEventsResponseStatus");
|
32
|
-
const SessionsEventsResponseError_1 = require("./SessionsEventsResponseError");
|
33
|
-
exports.SessionsEventsResponse = core.serialization
|
34
|
-
.union("event", {
|
35
|
-
status: SessionsEventsResponseStatus_1.SessionsEventsResponseStatus,
|
36
|
-
error: SessionsEventsResponseError_1.SessionsEventsResponseError,
|
37
|
-
})
|
38
|
-
.transform({
|
39
|
-
transform: (value) => value,
|
40
|
-
untransform: (value) => value,
|
41
|
-
});
|
@@ -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 { ErrorMessage } from "../../../types/ErrorMessage";
|
8
|
-
export declare const SessionsEventsResponseError: core.serialization.ObjectSchema<serializers.SessionsEventsResponseError.Raw, Airtop.SessionsEventsResponseError>;
|
9
|
-
export declare namespace SessionsEventsResponseError {
|
10
|
-
interface Raw {
|
11
|
-
data: ErrorMessage.Raw;
|
12
|
-
id?: number | null;
|
13
|
-
retry?: number | null;
|
14
|
-
}
|
15
|
-
}
|
@@ -1,36 +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.SessionsEventsResponseError = void 0;
|
30
|
-
const core = __importStar(require("../../../../core"));
|
31
|
-
const ErrorMessage_1 = require("../../../types/ErrorMessage");
|
32
|
-
exports.SessionsEventsResponseError = core.serialization.object({
|
33
|
-
data: ErrorMessage_1.ErrorMessage,
|
34
|
-
id: core.serialization.number().optional(),
|
35
|
-
retry: core.serialization.number().optional(),
|
36
|
-
});
|
@@ -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 { StatusMessage } from "../../../types/StatusMessage";
|
8
|
-
export declare const SessionsEventsResponseStatus: core.serialization.ObjectSchema<serializers.SessionsEventsResponseStatus.Raw, Airtop.SessionsEventsResponseStatus>;
|
9
|
-
export declare namespace SessionsEventsResponseStatus {
|
10
|
-
interface Raw {
|
11
|
-
data: StatusMessage.Raw;
|
12
|
-
id?: number | null;
|
13
|
-
retry?: number | null;
|
14
|
-
}
|
15
|
-
}
|
@@ -1,36 +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.SessionsEventsResponseStatus = void 0;
|
30
|
-
const core = __importStar(require("../../../../core"));
|
31
|
-
const StatusMessage_1 = require("../../../types/StatusMessage");
|
32
|
-
exports.SessionsEventsResponseStatus = core.serialization.object({
|
33
|
-
data: StatusMessage_1.StatusMessage,
|
34
|
-
id: core.serialization.number().optional(),
|
35
|
-
retry: core.serialization.number().optional(),
|
36
|
-
});
|
@@ -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,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 LiveViewConnectionInfo: core.serialization.ObjectSchema<serializers.LiveViewConnectionInfo.Raw, Airtop.LiveViewConnectionInfo>;
|
8
|
-
export declare namespace LiveViewConnectionInfo {
|
9
|
-
interface Raw {
|
10
|
-
airtop_browser_url: string;
|
11
|
-
token?: string | null;
|
12
|
-
}
|
13
|
-
}
|
@@ -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
|
-
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
|
-
browserId: string;
|
12
|
-
token: string;
|
13
|
-
url: string;
|
14
|
-
}
|
15
|
-
}
|
@@ -1,36 +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.LiveViewUrlOutputV1Body = void 0;
|
30
|
-
const core = __importStar(require("../../core"));
|
31
|
-
exports.LiveViewUrlOutputV1Body = core.serialization.object({
|
32
|
-
schema: core.serialization.property("$schema", core.serialization.string().optional()),
|
33
|
-
browserId: core.serialization.string(),
|
34
|
-
token: core.serialization.string(),
|
35
|
-
url: core.serialization.string(),
|
36
|
-
});
|
@@ -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,36 +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.ProfileV1 = void 0;
|
30
|
-
const core = __importStar(require("../../core"));
|
31
|
-
exports.ProfileV1 = core.serialization.object({
|
32
|
-
name: core.serialization.string(),
|
33
|
-
status: core.serialization.string().optional(),
|
34
|
-
tags: core.serialization.list(core.serialization.string()).optional(),
|
35
|
-
uploadUri: core.serialization.property("upload_uri", core.serialization.string().optional()),
|
36
|
-
});
|
@@ -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
|
-
}
|
@@ -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.ProfilesOutputV1Body = void 0;
|
30
|
-
const core = __importStar(require("../../core"));
|
31
|
-
const ProfileV1_1 = require("./ProfileV1");
|
32
|
-
exports.ProfilesOutputV1Body = core.serialization.object({
|
33
|
-
schema: core.serialization.property("$schema", core.serialization.string().optional()),
|
34
|
-
profiles: core.serialization.list(ProfileV1_1.ProfileV1).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 { SessionConfig } from "./SessionConfig";
|
8
|
-
export declare const Session: core.serialization.ObjectSchema<serializers.Session.Raw, Airtop.Session>;
|
9
|
-
export declare namespace Session {
|
10
|
-
interface Raw {
|
11
|
-
configuration: SessionConfig.Raw;
|
12
|
-
current_usage?: number | null;
|
13
|
-
date_created?: string | null;
|
14
|
-
id: string;
|
15
|
-
last_activity?: string | null;
|
16
|
-
status: string;
|
17
|
-
url?: string | null;
|
18
|
-
}
|
19
|
-
}
|
@@ -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 { SessionAiResponseData } from "./SessionAiResponseData";
|
8
|
-
import { SessionAiResponseIssue } from "./SessionAiResponseIssue";
|
9
|
-
import { SessionAiResponseMetadata } from "./SessionAiResponseMetadata";
|
10
|
-
export declare const SessionAiResponse: core.serialization.ObjectSchema<serializers.SessionAiResponse.Raw, Airtop.SessionAiResponse>;
|
11
|
-
export declare namespace SessionAiResponse {
|
12
|
-
interface Raw {
|
13
|
-
$schema?: string | null;
|
14
|
-
data: SessionAiResponseData.Raw;
|
15
|
-
errors?: SessionAiResponseIssue.Raw[] | null;
|
16
|
-
meta: SessionAiResponseMetadata.Raw;
|
17
|
-
warnings?: SessionAiResponseIssue.Raw[] | 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.SessionAiResponse = void 0;
|
30
|
-
const core = __importStar(require("../../core"));
|
31
|
-
const SessionAiResponseData_1 = require("./SessionAiResponseData");
|
32
|
-
const SessionAiResponseIssue_1 = require("./SessionAiResponseIssue");
|
33
|
-
const SessionAiResponseMetadata_1 = require("./SessionAiResponseMetadata");
|
34
|
-
exports.SessionAiResponse = core.serialization.object({
|
35
|
-
schema: core.serialization.property("$schema", core.serialization.string().optional()),
|
36
|
-
data: SessionAiResponseData_1.SessionAiResponseData,
|
37
|
-
errors: core.serialization.list(SessionAiResponseIssue_1.SessionAiResponseIssue).optional(),
|
38
|
-
meta: SessionAiResponseMetadata_1.SessionAiResponseMetadata,
|
39
|
-
warnings: core.serialization.list(SessionAiResponseIssue_1.SessionAiResponseIssue).optional(),
|
40
|
-
});
|
@@ -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 { SessionAiResponseDataStatus } from "./SessionAiResponseDataStatus";
|
8
|
-
export declare const SessionAiResponseData: core.serialization.ObjectSchema<serializers.SessionAiResponseData.Raw, Airtop.SessionAiResponseData>;
|
9
|
-
export declare namespace SessionAiResponseData {
|
10
|
-
interface Raw {
|
11
|
-
output: string;
|
12
|
-
status: SessionAiResponseDataStatus.Raw;
|
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.SessionAiResponseData = void 0;
|
30
|
-
const core = __importStar(require("../../core"));
|
31
|
-
const SessionAiResponseDataStatus_1 = require("./SessionAiResponseDataStatus");
|
32
|
-
exports.SessionAiResponseData = core.serialization.object({
|
33
|
-
output: core.serialization.string(),
|
34
|
-
status: SessionAiResponseDataStatus_1.SessionAiResponseDataStatus,
|
35
|
-
});
|
@@ -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 SessionAiResponseDataStatus: core.serialization.Schema<serializers.SessionAiResponseDataStatus.Raw, Airtop.SessionAiResponseDataStatus>;
|
8
|
-
export declare namespace SessionAiResponseDataStatus {
|
9
|
-
type Raw = "success" | "partial_success" | "failure";
|
10
|
-
}
|
@@ -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 { ClientProvidedResponseMetadata } from "./ClientProvidedResponseMetadata";
|
8
|
-
import { SessionAiResponseMetadataUsage } from "./SessionAiResponseMetadataUsage";
|
9
|
-
export declare const SessionAiResponseMetadata: core.serialization.ObjectSchema<serializers.SessionAiResponseMetadata.Raw, Airtop.SessionAiResponseMetadata>;
|
10
|
-
export declare namespace SessionAiResponseMetadata {
|
11
|
-
interface Raw {
|
12
|
-
clientProvided?: ClientProvidedResponseMetadata.Raw | null;
|
13
|
-
usage: SessionAiResponseMetadataUsage.Raw;
|
14
|
-
}
|
15
|
-
}
|
@@ -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 { SessionAiResponseResponseMetadataModelUsage } from "./SessionAiResponseResponseMetadataModelUsage";
|
8
|
-
export declare const SessionAiResponseMetadataUsage: core.serialization.ObjectSchema<serializers.SessionAiResponseMetadataUsage.Raw, Airtop.SessionAiResponseMetadataUsage>;
|
9
|
-
export declare namespace SessionAiResponseMetadataUsage {
|
10
|
-
interface Raw {
|
11
|
-
credits: number;
|
12
|
-
id: string;
|
13
|
-
models?: SessionAiResponseResponseMetadataModelUsage.Raw[] | null;
|
14
|
-
totalCost: number;
|
15
|
-
}
|
16
|
-
}
|