@airtop/sdk 0.1.34-beta0 → 0.1.35-beta0
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 +12 -8
- package/Client.js +3 -3
- package/README.md +27 -11
- package/api/errors/ForbiddenError.js +17 -7
- package/api/errors/InternalServerError.js +17 -7
- package/api/errors/NotFoundError.js +17 -7
- package/api/errors/UnauthorizedError.js +17 -7
- package/api/errors/UnprocessableEntityError.js +17 -7
- package/api/resources/automations/client/Client.d.ts +4 -0
- package/api/resources/automations/client/Client.js +33 -55
- package/api/resources/files/client/Client.d.ts +69 -0
- package/api/resources/files/client/Client.js +286 -0
- package/api/resources/files/client/index.d.ts +1 -0
- package/api/resources/files/client/index.js +17 -0
- package/api/resources/files/client/requests/CreateFileRestInputV1.d.ts +20 -0
- package/api/resources/files/client/requests/FilesListRequest.d.ts +24 -0
- package/api/resources/files/client/requests/index.d.ts +2 -0
- package/{dist/api/resources/extensionConfigurations → api/resources/files}/index.d.ts +1 -0
- package/{dist/api/resources/extensionConfigurations → api/resources/files}/index.js +1 -0
- package/api/resources/files/types/CreateFileRestInputV1FileType.d.ts +13 -0
- package/api/resources/files/types/CreateFileRestInputV1FileType.js +12 -0
- package/api/resources/files/types/index.d.ts +1 -0
- package/api/resources/files/types/index.js +17 -0
- package/api/resources/index.d.ts +3 -1
- package/api/resources/index.js +21 -9
- package/api/resources/profiles/client/Client.d.ts +4 -0
- package/api/resources/profiles/client/Client.js +23 -21
- package/api/resources/requests/client/Client.d.ts +4 -0
- package/api/resources/requests/client/Client.js +21 -19
- package/api/resources/sessions/client/Client.d.ts +7 -2
- package/api/resources/sessions/client/Client.js +58 -101
- package/api/resources/sessions/client/requests/SessionsEventsRequest.d.ts +7 -0
- package/api/resources/sessions/types/SessionsEventsResponse.d.ts +7 -7
- package/api/resources/sessions/types/SessionsListRequestStatus.d.ts +1 -1
- package/api/resources/sessions/types/index.d.ts +2 -2
- package/api/resources/sessions/types/index.js +2 -2
- package/api/resources/windows/client/Client.d.ts +4 -0
- package/api/resources/windows/client/Client.js +139 -337
- package/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +1 -1
- package/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +1 -1
- package/api/resources/windows/types/CreateWindowInputV1BodyWaitUntil.d.ts +1 -1
- package/api/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.d.ts +1 -1
- package/api/types/BrowserWaitNavigationConfigWaitUntil.d.ts +1 -1
- package/api/types/ClickConfigClickType.d.ts +1 -1
- package/api/types/CreateAutomationRequestBodyConfiguration.d.ts +1 -1
- package/api/types/CreateFileV1.d.ts +24 -0
- package/api/types/CreateFileV1.js +5 -0
- package/api/types/CreateFileV1FileType.d.ts +13 -0
- package/api/types/CreateFileV1FileType.js +12 -0
- package/api/types/DeleteAutomationOutputWrapperBody.d.ts +1 -1
- package/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +10 -0
- package/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +5 -0
- package/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +10 -0
- package/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +5 -0
- package/api/types/ExternalFile.d.ts +33 -0
- package/api/types/ExternalFile.js +5 -0
- package/api/types/ExternalSessionAiResponseMetadataStatus.d.ts +1 -1
- package/api/types/FilesResponse.d.ts +10 -0
- package/api/types/FilesResponse.js +5 -0
- package/api/types/FilesWithPagination.d.ts +10 -0
- package/api/types/FilesWithPagination.js +5 -0
- package/api/types/GetFileV1.d.ts +24 -0
- package/api/types/GetFileV1.js +5 -0
- package/api/types/GetFileV1FileType.d.ts +13 -0
- package/api/types/GetFileV1FileType.js +12 -0
- package/api/types/MonitorConfigIncludeVisualAnalysis.d.ts +1 -1
- package/api/types/Proxy.d.ts +1 -1
- package/api/types/SessionConfigV1Proxy.d.ts +1 -1
- package/api/types/StatusMessageStatus.d.ts +1 -1
- package/api/types/VisualAnalysisConfigPartitionDirection.d.ts +1 -1
- package/api/types/VisualAnalysisConfigResultSelectionStrategy.d.ts +1 -1
- package/api/types/VisualAnalysisConfigScope.d.ts +1 -1
- package/api/types/index.d.ts +20 -1
- package/api/types/index.js +20 -1
- package/biome.json +3 -0
- package/core/auth/BearerToken.d.ts +1 -1
- package/core/fetcher/APIResponse.d.ts +1 -1
- package/core/fetcher/Fetcher.d.ts +3 -3
- package/core/fetcher/Fetcher.js +6 -5
- package/core/fetcher/Supplier.d.ts +1 -1
- package/core/fetcher/createRequestUrl.d.ts +1 -1
- package/core/fetcher/createRequestUrl.js +1 -2
- package/core/fetcher/getFetchFn.js +18 -9
- package/core/fetcher/getHeader.js +1 -2
- package/core/fetcher/getRequestBody.js +5 -5
- package/core/fetcher/getResponseBody.js +4 -2
- package/core/fetcher/makeRequest.d.ts +1 -1
- package/core/fetcher/requestWithRetries.js +17 -9
- package/core/fetcher/signals.d.ts +0 -1
- package/core/fetcher/signals.js +2 -3
- package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +1 -2
- package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +4 -2
- package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +1 -2
- package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
- package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +2 -2
- package/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +4 -2
- package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
- package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +19 -10
- package/core/index.js +17 -7
- package/core/json.d.ts +15 -0
- package/core/json.js +24 -0
- package/core/runtime/runtime.d.ts +1 -1
- package/core/runtime/runtime.js +51 -41
- package/core/schemas/Schema.d.ts +8 -5
- package/core/schemas/Schema.js +3 -0
- package/core/schemas/builders/bigint/bigint.d.ts +2 -0
- package/core/schemas/builders/bigint/bigint.js +53 -0
- package/core/schemas/builders/bigint/index.d.ts +1 -0
- package/core/schemas/builders/bigint/index.js +5 -0
- package/core/schemas/builders/date/date.js +1 -2
- package/core/schemas/builders/enum/enum.js +1 -2
- package/core/schemas/builders/index.d.ts +1 -0
- package/core/schemas/builders/index.js +1 -0
- package/core/schemas/builders/lazy/lazy.d.ts +1 -1
- package/core/schemas/builders/lazy/lazy.js +3 -4
- package/core/schemas/builders/lazy/lazyObject.js +1 -2
- package/core/schemas/builders/list/list.js +1 -2
- package/core/schemas/builders/literals/booleanLiteral.js +1 -2
- package/core/schemas/builders/literals/stringLiteral.js +1 -2
- package/core/schemas/builders/object/object.d.ts +1 -1
- package/core/schemas/builders/object/object.js +31 -3
- package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
- package/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
- package/core/schemas/builders/object/property.js +2 -3
- package/core/schemas/builders/object/types.d.ts +16 -11
- package/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
- package/core/schemas/builders/object-like/types.d.ts +1 -1
- package/core/schemas/builders/record/record.js +2 -4
- package/core/schemas/builders/record/types.d.ts +2 -2
- package/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
- package/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
- package/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
- package/core/schemas/builders/set/set.js +1 -2
- package/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
- package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
- package/core/schemas/builders/union/discriminant.js +1 -2
- package/core/schemas/builders/union/types.d.ts +6 -6
- package/core/schemas/builders/union/union.d.ts +1 -1
- package/core/schemas/builders/union/union.js +1 -2
- package/core/schemas/utils/MaybePromise.d.ts +1 -1
- package/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
- package/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
- package/core/schemas/utils/entries.d.ts +1 -1
- package/core/schemas/utils/entries.js +1 -2
- package/core/schemas/utils/filterObject.d.ts +1 -1
- package/core/schemas/utils/filterObject.js +1 -2
- package/core/schemas/utils/getErrorMessageForIncorrectType.js +5 -2
- package/core/schemas/utils/isPlainObject.js +1 -2
- package/core/schemas/utils/keys.d.ts +1 -1
- package/core/schemas/utils/keys.js +1 -2
- package/core/schemas/utils/maybeSkipValidation.js +1 -2
- package/core/schemas/utils/partition.js +1 -2
- package/core/streaming-fetcher/Stream.d.ts +0 -1
- package/core/streaming-fetcher/Stream.js +20 -21
- package/dist/Client.d.ts +12 -8
- package/dist/Client.js +3 -3
- package/dist/api/errors/ForbiddenError.js +17 -7
- package/dist/api/errors/InternalServerError.js +17 -7
- package/dist/api/errors/NotFoundError.js +17 -7
- package/dist/api/errors/UnauthorizedError.js +17 -7
- package/dist/api/errors/UnprocessableEntityError.js +17 -7
- package/dist/api/resources/automations/client/Client.d.ts +4 -0
- package/dist/api/resources/automations/client/Client.js +33 -55
- package/dist/api/resources/files/client/Client.d.ts +69 -0
- package/dist/api/resources/files/client/Client.js +286 -0
- package/dist/api/resources/files/client/index.d.ts +1 -0
- package/dist/api/resources/files/client/index.js +17 -0
- package/dist/api/resources/files/client/requests/CreateFileRestInputV1.d.ts +20 -0
- package/dist/api/resources/files/client/requests/CreateFileRestInputV1.js +5 -0
- package/dist/api/resources/files/client/requests/FilesListRequest.d.ts +24 -0
- package/dist/api/resources/files/client/requests/FilesListRequest.js +5 -0
- package/dist/api/resources/files/client/requests/index.d.ts +2 -0
- package/{api/resources/extensionConfigurations → dist/api/resources/files}/index.d.ts +1 -0
- package/{api/resources/extensionConfigurations → dist/api/resources/files}/index.js +1 -0
- package/dist/api/resources/files/types/CreateFileRestInputV1FileType.d.ts +13 -0
- package/dist/api/resources/files/types/CreateFileRestInputV1FileType.js +12 -0
- package/dist/api/resources/files/types/index.d.ts +1 -0
- package/dist/api/resources/files/types/index.js +17 -0
- package/dist/api/resources/index.d.ts +3 -1
- package/dist/api/resources/index.js +21 -9
- package/dist/api/resources/profiles/client/Client.d.ts +4 -0
- package/dist/api/resources/profiles/client/Client.js +23 -21
- package/dist/api/resources/requests/client/Client.d.ts +4 -0
- package/dist/api/resources/requests/client/Client.js +21 -19
- package/dist/api/resources/sessions/client/Client.d.ts +7 -2
- package/dist/api/resources/sessions/client/Client.js +58 -101
- package/dist/api/resources/sessions/client/requests/SessionsEventsRequest.d.ts +7 -0
- package/dist/api/resources/sessions/types/SessionsEventsResponse.d.ts +7 -7
- package/dist/api/resources/sessions/types/SessionsListRequestStatus.d.ts +1 -1
- package/dist/api/resources/sessions/types/index.d.ts +2 -2
- package/dist/api/resources/sessions/types/index.js +2 -2
- package/dist/api/resources/windows/client/Client.d.ts +4 -0
- package/dist/api/resources/windows/client/Client.js +139 -337
- package/dist/api/resources/windows/client/requests/AsyncHoverRequest.d.ts +1 -1
- package/dist/api/resources/windows/client/requests/AsyncTypeRequest.d.ts +1 -1
- package/dist/api/resources/windows/types/CreateWindowInputV1BodyWaitUntil.d.ts +1 -1
- package/dist/api/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.d.ts +1 -1
- package/dist/api/types/BrowserWaitNavigationConfigWaitUntil.d.ts +1 -1
- package/dist/api/types/ClickConfigClickType.d.ts +1 -1
- package/dist/api/types/CreateAutomationRequestBodyConfiguration.d.ts +1 -1
- package/dist/api/types/CreateFileV1.d.ts +24 -0
- package/dist/api/types/CreateFileV1.js +5 -0
- package/dist/api/types/CreateFileV1FileType.d.ts +13 -0
- package/dist/api/types/CreateFileV1FileType.js +12 -0
- package/dist/api/types/DeleteAutomationOutputWrapperBody.d.ts +1 -1
- package/dist/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +10 -0
- package/dist/api/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +5 -0
- package/dist/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +10 -0
- package/dist/api/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +5 -0
- package/dist/api/types/ExternalFile.d.ts +33 -0
- package/dist/api/types/ExternalFile.js +5 -0
- package/dist/api/types/ExternalSessionAiResponseMetadataStatus.d.ts +1 -1
- package/dist/api/types/FilesResponse.d.ts +10 -0
- package/dist/api/types/FilesResponse.js +5 -0
- package/dist/api/types/FilesWithPagination.d.ts +10 -0
- package/dist/api/types/FilesWithPagination.js +5 -0
- package/dist/api/types/GetFileV1.d.ts +24 -0
- package/dist/api/types/GetFileV1.js +5 -0
- package/dist/api/types/GetFileV1FileType.d.ts +13 -0
- package/dist/api/types/GetFileV1FileType.js +12 -0
- package/dist/api/types/MonitorConfigIncludeVisualAnalysis.d.ts +1 -1
- package/dist/api/types/Proxy.d.ts +1 -1
- package/dist/api/types/SessionConfigV1Proxy.d.ts +1 -1
- package/dist/api/types/StatusMessageStatus.d.ts +1 -1
- package/dist/api/types/VisualAnalysisConfigPartitionDirection.d.ts +1 -1
- package/dist/api/types/VisualAnalysisConfigResultSelectionStrategy.d.ts +1 -1
- package/dist/api/types/VisualAnalysisConfigScope.d.ts +1 -1
- package/dist/api/types/index.d.ts +20 -1
- package/dist/api/types/index.js +20 -1
- package/dist/core/auth/BearerToken.d.ts +1 -1
- package/dist/core/fetcher/APIResponse.d.ts +1 -1
- package/dist/core/fetcher/Fetcher.d.ts +3 -3
- package/dist/core/fetcher/Fetcher.js +6 -5
- package/dist/core/fetcher/Supplier.d.ts +1 -1
- package/dist/core/fetcher/createRequestUrl.d.ts +1 -1
- package/dist/core/fetcher/createRequestUrl.js +1 -2
- package/dist/core/fetcher/getFetchFn.js +18 -9
- package/dist/core/fetcher/getHeader.js +1 -2
- package/dist/core/fetcher/getRequestBody.js +5 -5
- package/dist/core/fetcher/getResponseBody.js +4 -2
- package/dist/core/fetcher/makeRequest.d.ts +1 -1
- package/dist/core/fetcher/requestWithRetries.js +17 -9
- package/dist/core/fetcher/signals.d.ts +0 -1
- package/dist/core/fetcher/signals.js +2 -3
- package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +1 -2
- package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +4 -2
- package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +1 -2
- package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
- package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +2 -2
- package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +4 -2
- package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
- package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +19 -10
- package/dist/core/index.js +17 -7
- package/dist/core/json.d.ts +15 -0
- package/dist/core/json.js +24 -0
- package/dist/core/runtime/runtime.d.ts +1 -1
- package/dist/core/runtime/runtime.js +51 -41
- package/dist/core/schemas/Schema.d.ts +8 -5
- package/dist/core/schemas/Schema.js +3 -0
- package/dist/core/schemas/builders/bigint/bigint.d.ts +2 -0
- package/dist/core/schemas/builders/bigint/bigint.js +53 -0
- package/dist/core/schemas/builders/bigint/index.d.ts +1 -0
- package/dist/core/schemas/builders/bigint/index.js +5 -0
- package/dist/core/schemas/builders/date/date.js +1 -2
- package/dist/core/schemas/builders/enum/enum.js +1 -2
- package/dist/core/schemas/builders/index.d.ts +1 -0
- package/dist/core/schemas/builders/index.js +1 -0
- package/dist/core/schemas/builders/lazy/lazy.d.ts +1 -1
- package/dist/core/schemas/builders/lazy/lazy.js +3 -4
- package/dist/core/schemas/builders/lazy/lazyObject.js +1 -2
- package/dist/core/schemas/builders/list/list.js +1 -2
- package/dist/core/schemas/builders/literals/booleanLiteral.js +1 -2
- package/dist/core/schemas/builders/literals/stringLiteral.js +1 -2
- package/dist/core/schemas/builders/object/object.d.ts +1 -1
- package/dist/core/schemas/builders/object/object.js +31 -3
- package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
- package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
- package/dist/core/schemas/builders/object/property.js +2 -3
- package/dist/core/schemas/builders/object/types.d.ts +16 -11
- package/dist/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
- package/dist/core/schemas/builders/object-like/types.d.ts +1 -1
- package/dist/core/schemas/builders/record/record.js +2 -4
- package/dist/core/schemas/builders/record/types.d.ts +2 -2
- package/dist/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
- package/dist/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
- package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
- package/dist/core/schemas/builders/set/set.js +1 -2
- package/dist/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
- package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
- package/dist/core/schemas/builders/union/discriminant.js +1 -2
- package/dist/core/schemas/builders/union/types.d.ts +6 -6
- package/dist/core/schemas/builders/union/union.d.ts +1 -1
- package/dist/core/schemas/builders/union/union.js +1 -2
- package/dist/core/schemas/utils/MaybePromise.d.ts +1 -1
- package/dist/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
- package/dist/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
- package/dist/core/schemas/utils/entries.d.ts +1 -1
- package/dist/core/schemas/utils/entries.js +1 -2
- package/dist/core/schemas/utils/filterObject.d.ts +1 -1
- package/dist/core/schemas/utils/filterObject.js +1 -2
- package/dist/core/schemas/utils/getErrorMessageForIncorrectType.js +5 -2
- package/dist/core/schemas/utils/isPlainObject.js +1 -2
- package/dist/core/schemas/utils/keys.d.ts +1 -1
- package/dist/core/schemas/utils/keys.js +1 -2
- package/dist/core/schemas/utils/maybeSkipValidation.js +1 -2
- package/dist/core/schemas/utils/partition.js +1 -2
- package/dist/core/streaming-fetcher/Stream.d.ts +0 -1
- package/dist/core/streaming-fetcher/Stream.js +20 -21
- package/dist/environments.d.ts +1 -1
- package/dist/errors/AirtopError.js +2 -1
- package/dist/errors/AirtopTimeoutError.d.ts +1 -1
- package/dist/errors/AirtopTimeoutError.js +2 -2
- package/dist/index.js +17 -7
- package/dist/live-view/types.d.ts +1 -1
- package/dist/live-view/types.js +1 -1
- package/dist/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.js +17 -7
- package/dist/serialization/resources/files/client/index.d.ts +1 -0
- package/dist/serialization/resources/files/client/index.js +17 -0
- package/dist/serialization/resources/files/client/requests/CreateFileRestInputV1.d.ts +16 -0
- package/dist/serialization/resources/files/client/requests/CreateFileRestInputV1.js +47 -0
- package/dist/serialization/resources/files/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/files/client/requests/index.js +5 -0
- package/dist/serialization/resources/files/index.d.ts +2 -0
- package/dist/serialization/resources/files/index.js +18 -0
- package/dist/serialization/resources/files/types/CreateFileRestInputV1FileType.d.ts +10 -0
- package/dist/serialization/resources/files/types/CreateFileRestInputV1FileType.js +41 -0
- package/dist/serialization/resources/files/types/index.d.ts +1 -0
- package/dist/serialization/resources/files/types/index.js +17 -0
- package/dist/serialization/resources/index.d.ts +3 -0
- package/dist/serialization/resources/index.js +21 -8
- package/dist/serialization/resources/sessions/client/requests/SessionRestInputV1.js +17 -7
- package/dist/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +9 -9
- package/dist/serialization/resources/sessions/types/SessionsEventsResponse.js +21 -11
- package/dist/serialization/resources/sessions/types/SessionsEventsResponseError.js +17 -7
- package/dist/serialization/resources/sessions/types/SessionsEventsResponseSessionEvent.js +17 -7
- package/dist/serialization/resources/sessions/types/SessionsEventsResponseStatus.js +17 -7
- package/dist/serialization/resources/sessions/types/SessionsEventsResponseWindowEvent.js +17 -7
- package/dist/serialization/resources/sessions/types/SessionsListRequestStatus.js +17 -7
- package/dist/serialization/resources/sessions/types/index.d.ts +2 -2
- package/dist/serialization/resources/sessions/types/index.js +2 -2
- package/dist/serialization/resources/windows/client/requests/AsyncClickRequest.js +17 -7
- package/dist/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.js +17 -7
- package/dist/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +17 -7
- package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +2 -2
- package/dist/serialization/resources/windows/client/requests/AsyncHoverRequest.js +19 -9
- package/dist/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +17 -7
- package/dist/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +17 -7
- package/dist/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +17 -7
- package/dist/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +17 -7
- package/dist/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +17 -7
- package/dist/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +17 -7
- package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +2 -2
- package/dist/serialization/resources/windows/client/requests/AsyncTypeRequest.js +19 -9
- package/dist/serialization/resources/windows/client/requests/CreateWindowInputV1Body.js +17 -7
- package/dist/serialization/resources/windows/client/requests/ScrapeContentRequest.js +17 -7
- package/dist/serialization/resources/windows/client/requests/SessionClickHandlerRequestBody.js +17 -7
- package/dist/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.js +17 -7
- package/dist/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +17 -7
- package/dist/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.js +17 -7
- package/dist/serialization/resources/windows/client/requests/SessionScreenshotHandlerRequestBody.js +17 -7
- package/dist/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +17 -7
- package/dist/serialization/resources/windows/client/requests/SessionSummaryHandlerRequestBody.js +17 -7
- package/dist/serialization/resources/windows/client/requests/SessionTypeHandlerRequestBody.js +17 -7
- package/dist/serialization/resources/windows/client/requests/WindowLoadUrlV1Body.js +17 -7
- package/dist/serialization/resources/windows/types/CreateWindowInputV1BodyWaitUntil.js +17 -7
- package/dist/serialization/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.js +17 -7
- package/dist/serialization/types/AiPromptResponse.js +17 -7
- package/dist/serialization/types/AiResponseEnvelope.js +17 -7
- package/dist/serialization/types/AirtopProxyConfiguration.js +17 -7
- package/dist/serialization/types/AsyncConfig.js +17 -7
- package/dist/serialization/types/AsyncSessionAiResponseEnvelope.js +17 -7
- package/dist/serialization/types/AutomationOutput.js +17 -7
- package/dist/serialization/types/BrowserWaitNavigationConfig.js +17 -7
- package/dist/serialization/types/BrowserWaitNavigationConfigWaitUntil.js +17 -7
- package/dist/serialization/types/ClickConfig.js +17 -7
- package/dist/serialization/types/ClickConfigClickType.js +17 -7
- package/dist/serialization/types/ClientProvidedResponseMetadata.js +17 -7
- package/dist/serialization/types/CreateAutomationRequestBodyConfiguration.js +17 -7
- package/dist/serialization/types/CreateFileV1.d.ts +21 -0
- package/dist/serialization/types/CreateFileV1.js +52 -0
- package/dist/serialization/types/CreateFileV1FileType.d.ts +10 -0
- package/dist/serialization/types/CreateFileV1FileType.js +41 -0
- package/dist/serialization/types/DeleteAutomationOutputWrapperBody.js +17 -7
- package/dist/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +18 -0
- package/dist/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +49 -0
- package/dist/serialization/types/EnvelopeDefaultMeta.js +17 -7
- package/dist/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +18 -0
- package/dist/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +49 -0
- package/dist/serialization/types/ErrorBody.js +17 -7
- package/dist/serialization/types/ErrorDetail.js +17 -7
- package/dist/serialization/types/ErrorMessage.js +17 -7
- package/dist/serialization/types/ErrorModel.js +17 -7
- package/dist/serialization/types/ExternalFile.d.ts +25 -0
- package/dist/serialization/types/ExternalFile.js +56 -0
- package/dist/serialization/types/ExternalSessionAiResponseMetadata.js +17 -7
- package/dist/serialization/types/ExternalSessionAiResponseMetadataStatus.js +17 -7
- package/dist/serialization/types/ExternalSessionAiResponseMetadataUsage.js +17 -7
- package/dist/serialization/types/ExternalSessionConfig.js +17 -7
- package/dist/serialization/types/ExternalSessionWithConnectionInfo.js +17 -7
- package/dist/serialization/types/FilesResponse.d.ts +18 -0
- package/dist/serialization/types/FilesResponse.js +49 -0
- package/dist/serialization/types/FilesWithPagination.d.ts +15 -0
- package/dist/serialization/types/FilesWithPagination.js +46 -0
- package/dist/serialization/types/GetFileV1.d.ts +21 -0
- package/dist/serialization/types/GetFileV1.js +52 -0
- package/dist/serialization/types/GetFileV1FileType.d.ts +10 -0
- package/dist/serialization/types/{ExtensionConfigurationOutput.js → GetFileV1FileType.js} +19 -14
- package/dist/serialization/types/IntervalMonitorConfig.js +17 -7
- package/dist/serialization/types/Issue.js +17 -7
- package/dist/serialization/types/ListAutomationsOutput.js +17 -7
- package/dist/serialization/types/MicroInteractionConfig.js +17 -7
- package/dist/serialization/types/MicroInteractionConfigWithExperimental.js +17 -7
- package/dist/serialization/types/MicroInteractionExperimentalConfig.js +17 -7
- package/dist/serialization/types/MonitorConfig.js +17 -7
- package/dist/serialization/types/MonitorConfigIncludeVisualAnalysis.js +17 -7
- package/dist/serialization/types/OperationOutcome.js +17 -7
- package/dist/serialization/types/OperationOutcomeResponse.js +17 -7
- package/dist/serialization/types/PageQueryConfig.js +17 -7
- package/dist/serialization/types/PageQueryExperimentalConfig.js +17 -7
- package/dist/serialization/types/PaginatedExtractionConfig.js +17 -7
- package/dist/serialization/types/PaginatedExtractionExperimentalConfig.js +17 -7
- package/dist/serialization/types/Pagination.js +17 -7
- package/dist/serialization/types/Proxy.js +17 -7
- package/dist/serialization/types/ProxyConfigurationKind.js +17 -7
- package/dist/serialization/types/ProxyCredentials.js +17 -7
- package/dist/serialization/types/RequestStatusResponse.js +17 -7
- package/dist/serialization/types/ScrapeConfig.js +17 -7
- package/dist/serialization/types/ScrapeResponse.js +17 -7
- package/dist/serialization/types/ScrapeResponseContent.js +17 -7
- package/dist/serialization/types/ScrapeResponseEnvelope.js +17 -7
- package/dist/serialization/types/ScrapeResponseOutput.js +17 -7
- package/dist/serialization/types/ScreenshotConfig.js +17 -7
- package/dist/serialization/types/ScreenshotMetadata.js +17 -7
- package/dist/serialization/types/ScreenshotRequestConfig.js +17 -7
- package/dist/serialization/types/ScrollByConfig.js +17 -7
- package/dist/serialization/types/ScrollToEdgeConfig.js +17 -7
- package/dist/serialization/types/SessionConfigV1.js +17 -7
- package/dist/serialization/types/SessionConfigV1Proxy.js +17 -7
- package/dist/serialization/types/SessionEventMessage.js +17 -7
- package/dist/serialization/types/SessionPageQueryHandlerRequestBody.js +17 -7
- package/dist/serialization/types/SessionResponse.js +17 -7
- package/dist/serialization/types/SessionsResponse.js +17 -7
- package/dist/serialization/types/SessionsWithPagination.js +17 -7
- package/dist/serialization/types/StatusMessage.js +17 -7
- package/dist/serialization/types/StatusMessageStatus.js +17 -7
- package/dist/serialization/types/SummaryConfig.js +17 -7
- package/dist/serialization/types/SummaryExperimentalConfig.js +17 -7
- package/dist/serialization/types/VisualAnalysisConfig.js +17 -7
- package/dist/serialization/types/VisualAnalysisConfigPartitionDirection.js +17 -7
- package/dist/serialization/types/VisualAnalysisConfigResultSelectionStrategy.js +17 -7
- package/dist/serialization/types/VisualAnalysisConfigScope.js +17 -7
- package/dist/serialization/types/Window.js +17 -7
- package/dist/serialization/types/WindowEventMessage.js +17 -7
- package/dist/serialization/types/WindowId.js +17 -7
- package/dist/serialization/types/WindowIdResponse.js +17 -7
- package/dist/serialization/types/WindowResponse.js +17 -7
- package/dist/serialization/types/index.d.ts +20 -1
- package/dist/serialization/types/index.js +20 -1
- package/dist/utils/batch-operate/SessionQueue.js +2 -2
- package/dist/utils/batch-operate/WindowQueue.js +2 -2
- package/dist/utils/batch-operate/batch-util.d.ts +1 -1
- package/dist/utils/batch-operate/types.d.ts +5 -5
- package/dist/utils/process-screenshots.d.ts +1 -2
- package/dist/utils/process-screenshots.js +1 -2
- package/dist/version.d.ts +1 -0
- package/dist/{api/resources/extensionConfigurations/client/requests/index.js → version.js} +2 -0
- package/dist/wrapper/AirtopClient.d.ts +5 -2
- package/dist/wrapper/AirtopClient.js +24 -8
- package/dist/wrapper/AirtopFiles.d.ts +38 -0
- package/dist/wrapper/AirtopFiles.js +151 -0
- package/dist/wrapper/AirtopRequests.js +2 -2
- package/dist/wrapper/AirtopSessions.js +7 -5
- package/dist/wrapper/AirtopWindows.js +22 -12
- package/environments.d.ts +1 -1
- package/errors/AirtopError.js +2 -1
- package/errors/AirtopTimeoutError.d.ts +1 -1
- package/errors/AirtopTimeoutError.js +2 -2
- package/index.js +17 -7
- package/{jest.config.js → jest.config.mjs} +4 -1
- package/live-view/types.d.ts +1 -1
- package/live-view/types.js +1 -1
- package/package.json +16 -13
- package/reference.md +737 -46
- package/scripts/rename-to-esm-files.js +115 -0
- package/serialization/resources/automations/client/requests/UpdateAutomationDescriptionInputBody.js +17 -7
- package/serialization/resources/files/client/index.d.ts +1 -0
- package/serialization/resources/files/client/index.js +17 -0
- package/serialization/resources/files/client/requests/CreateFileRestInputV1.d.ts +16 -0
- package/serialization/resources/files/client/requests/CreateFileRestInputV1.js +47 -0
- package/serialization/resources/files/client/requests/index.d.ts +1 -0
- package/serialization/resources/files/client/requests/index.js +5 -0
- package/serialization/resources/files/index.d.ts +2 -0
- package/serialization/resources/files/index.js +18 -0
- package/serialization/resources/files/types/CreateFileRestInputV1FileType.d.ts +10 -0
- package/serialization/resources/files/types/CreateFileRestInputV1FileType.js +41 -0
- package/serialization/resources/files/types/index.d.ts +1 -0
- package/serialization/resources/files/types/index.js +17 -0
- package/serialization/resources/index.d.ts +3 -0
- package/serialization/resources/index.js +21 -8
- package/serialization/resources/sessions/client/requests/SessionRestInputV1.js +17 -7
- package/serialization/resources/sessions/types/SessionsEventsResponse.d.ts +9 -9
- package/serialization/resources/sessions/types/SessionsEventsResponse.js +21 -11
- package/serialization/resources/sessions/types/SessionsEventsResponseError.js +17 -7
- package/serialization/resources/sessions/types/SessionsEventsResponseSessionEvent.js +17 -7
- package/serialization/resources/sessions/types/SessionsEventsResponseStatus.js +17 -7
- package/serialization/resources/sessions/types/SessionsEventsResponseWindowEvent.js +17 -7
- package/serialization/resources/sessions/types/SessionsListRequestStatus.js +17 -7
- package/serialization/resources/sessions/types/index.d.ts +2 -2
- package/serialization/resources/sessions/types/index.js +2 -2
- package/serialization/resources/windows/client/requests/AsyncClickRequest.js +17 -7
- package/serialization/resources/windows/client/requests/AsyncCreateAutomationRequest.js +17 -7
- package/serialization/resources/windows/client/requests/AsyncExecuteAutomationRequest.js +17 -7
- package/serialization/resources/windows/client/requests/AsyncHoverRequest.d.ts +2 -2
- package/serialization/resources/windows/client/requests/AsyncHoverRequest.js +19 -9
- package/serialization/resources/windows/client/requests/AsyncMonitorRequest.js +17 -7
- package/serialization/resources/windows/client/requests/AsyncPageQueryRequest.js +17 -7
- package/serialization/resources/windows/client/requests/AsyncPaginatedExtractionRequest.js +17 -7
- package/serialization/resources/windows/client/requests/AsyncPromptContentRequest.js +17 -7
- package/serialization/resources/windows/client/requests/AsyncScreenshotRequest.js +17 -7
- package/serialization/resources/windows/client/requests/AsyncSummarizeContentRequest.js +17 -7
- package/serialization/resources/windows/client/requests/AsyncTypeRequest.d.ts +2 -2
- package/serialization/resources/windows/client/requests/AsyncTypeRequest.js +19 -9
- package/serialization/resources/windows/client/requests/CreateWindowInputV1Body.js +17 -7
- package/serialization/resources/windows/client/requests/ScrapeContentRequest.js +17 -7
- package/serialization/resources/windows/client/requests/SessionClickHandlerRequestBody.js +17 -7
- package/serialization/resources/windows/client/requests/SessionHoverHandlerRequestBody.js +17 -7
- package/serialization/resources/windows/client/requests/SessionMonitorHandlerRequestBody.js +17 -7
- package/serialization/resources/windows/client/requests/SessionPaginatedExtractionHandlerRequestBody.js +17 -7
- package/serialization/resources/windows/client/requests/SessionScreenshotHandlerRequestBody.js +17 -7
- package/serialization/resources/windows/client/requests/SessionScrollHandlerRequestBody.js +17 -7
- package/serialization/resources/windows/client/requests/SessionSummaryHandlerRequestBody.js +17 -7
- package/serialization/resources/windows/client/requests/SessionTypeHandlerRequestBody.js +17 -7
- package/serialization/resources/windows/client/requests/WindowLoadUrlV1Body.js +17 -7
- package/serialization/resources/windows/types/CreateWindowInputV1BodyWaitUntil.js +17 -7
- package/serialization/resources/windows/types/WindowLoadUrlV1BodyWaitUntil.js +17 -7
- package/serialization/types/AiPromptResponse.js +17 -7
- package/serialization/types/AiResponseEnvelope.js +17 -7
- package/serialization/types/AirtopProxyConfiguration.js +17 -7
- package/serialization/types/AsyncConfig.js +17 -7
- package/serialization/types/AsyncSessionAiResponseEnvelope.js +17 -7
- package/serialization/types/AutomationOutput.js +17 -7
- package/serialization/types/BrowserWaitNavigationConfig.js +17 -7
- package/serialization/types/BrowserWaitNavigationConfigWaitUntil.js +17 -7
- package/serialization/types/ClickConfig.js +17 -7
- package/serialization/types/ClickConfigClickType.js +17 -7
- package/serialization/types/ClientProvidedResponseMetadata.js +17 -7
- package/serialization/types/CreateAutomationRequestBodyConfiguration.js +17 -7
- package/serialization/types/CreateFileV1.d.ts +21 -0
- package/serialization/types/CreateFileV1.js +52 -0
- package/serialization/types/CreateFileV1FileType.d.ts +10 -0
- package/serialization/types/CreateFileV1FileType.js +41 -0
- package/serialization/types/DeleteAutomationOutputWrapperBody.js +17 -7
- package/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.d.ts +18 -0
- package/serialization/types/EnvelopeCreateFileV1EnvelopeDefaultMeta.js +49 -0
- package/serialization/types/EnvelopeDefaultMeta.js +17 -7
- package/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.d.ts +18 -0
- package/serialization/types/EnvelopeGetFileV1EnvelopeDefaultMeta.js +49 -0
- package/serialization/types/ErrorBody.js +17 -7
- package/serialization/types/ErrorDetail.js +17 -7
- package/serialization/types/ErrorMessage.js +17 -7
- package/serialization/types/ErrorModel.js +17 -7
- package/serialization/types/ExternalFile.d.ts +25 -0
- package/serialization/types/ExternalFile.js +56 -0
- package/serialization/types/ExternalSessionAiResponseMetadata.js +17 -7
- package/serialization/types/ExternalSessionAiResponseMetadataStatus.js +17 -7
- package/serialization/types/ExternalSessionAiResponseMetadataUsage.js +17 -7
- package/serialization/types/ExternalSessionConfig.js +17 -7
- package/serialization/types/ExternalSessionWithConnectionInfo.js +17 -7
- package/serialization/types/FilesResponse.d.ts +18 -0
- package/serialization/types/FilesResponse.js +49 -0
- package/serialization/types/FilesWithPagination.d.ts +15 -0
- package/serialization/types/FilesWithPagination.js +46 -0
- package/serialization/types/GetFileV1.d.ts +21 -0
- package/serialization/types/GetFileV1.js +52 -0
- package/serialization/types/GetFileV1FileType.d.ts +10 -0
- package/serialization/types/{ExtensionConfigurationOutput.js → GetFileV1FileType.js} +19 -14
- package/serialization/types/IntervalMonitorConfig.js +17 -7
- package/serialization/types/Issue.js +17 -7
- package/serialization/types/ListAutomationsOutput.js +17 -7
- package/serialization/types/MicroInteractionConfig.js +17 -7
- package/serialization/types/MicroInteractionConfigWithExperimental.js +17 -7
- package/serialization/types/MicroInteractionExperimentalConfig.js +17 -7
- package/serialization/types/MonitorConfig.js +17 -7
- package/serialization/types/MonitorConfigIncludeVisualAnalysis.js +17 -7
- package/serialization/types/OperationOutcome.js +17 -7
- package/serialization/types/OperationOutcomeResponse.js +17 -7
- package/serialization/types/PageQueryConfig.js +17 -7
- package/serialization/types/PageQueryExperimentalConfig.js +17 -7
- package/serialization/types/PaginatedExtractionConfig.js +17 -7
- package/serialization/types/PaginatedExtractionExperimentalConfig.js +17 -7
- package/serialization/types/Pagination.js +17 -7
- package/serialization/types/Proxy.js +17 -7
- package/serialization/types/ProxyConfigurationKind.js +17 -7
- package/serialization/types/ProxyCredentials.js +17 -7
- package/serialization/types/RequestStatusResponse.js +17 -7
- package/serialization/types/ScrapeConfig.js +17 -7
- package/serialization/types/ScrapeResponse.js +17 -7
- package/serialization/types/ScrapeResponseContent.js +17 -7
- package/serialization/types/ScrapeResponseEnvelope.js +17 -7
- package/serialization/types/ScrapeResponseOutput.js +17 -7
- package/serialization/types/ScreenshotConfig.js +17 -7
- package/serialization/types/ScreenshotMetadata.js +17 -7
- package/serialization/types/ScreenshotRequestConfig.js +17 -7
- package/serialization/types/ScrollByConfig.js +17 -7
- package/serialization/types/ScrollToEdgeConfig.js +17 -7
- package/serialization/types/SessionConfigV1.js +17 -7
- package/serialization/types/SessionConfigV1Proxy.js +17 -7
- package/serialization/types/SessionEventMessage.js +17 -7
- package/serialization/types/SessionPageQueryHandlerRequestBody.js +17 -7
- package/serialization/types/SessionResponse.js +17 -7
- package/serialization/types/SessionsResponse.js +17 -7
- package/serialization/types/SessionsWithPagination.js +17 -7
- package/serialization/types/StatusMessage.js +17 -7
- package/serialization/types/StatusMessageStatus.js +17 -7
- package/serialization/types/SummaryConfig.js +17 -7
- package/serialization/types/SummaryExperimentalConfig.js +17 -7
- package/serialization/types/VisualAnalysisConfig.js +17 -7
- package/serialization/types/VisualAnalysisConfigPartitionDirection.js +17 -7
- package/serialization/types/VisualAnalysisConfigResultSelectionStrategy.js +17 -7
- package/serialization/types/VisualAnalysisConfigScope.js +17 -7
- package/serialization/types/Window.js +17 -7
- package/serialization/types/WindowEventMessage.js +17 -7
- package/serialization/types/WindowId.js +17 -7
- package/serialization/types/WindowIdResponse.js +17 -7
- package/serialization/types/WindowResponse.js +17 -7
- package/serialization/types/index.d.ts +20 -1
- package/serialization/types/index.js +20 -1
- package/utils/batch-operate/SessionQueue.js +2 -2
- package/utils/batch-operate/WindowQueue.js +2 -2
- package/utils/batch-operate/batch-util.d.ts +1 -1
- package/utils/batch-operate/types.d.ts +5 -5
- package/utils/process-screenshots.d.ts +1 -2
- package/utils/process-screenshots.js +1 -2
- package/version.d.ts +1 -0
- package/{dist/api/resources/extensionConfigurations/client/index.js → version.js} +2 -0
- package/wrapper/AirtopClient.d.ts +5 -2
- package/wrapper/AirtopClient.js +24 -8
- package/wrapper/AirtopFiles.d.ts +38 -0
- package/wrapper/AirtopFiles.js +151 -0
- package/wrapper/AirtopRequests.js +2 -2
- package/wrapper/AirtopSessions.js +7 -5
- package/wrapper/AirtopWindows.js +22 -12
- package/api/resources/extensionConfigurations/client/Client.d.ts +0 -40
- package/api/resources/extensionConfigurations/client/Client.js +0 -149
- package/api/resources/extensionConfigurations/client/index.d.ts +0 -1
- package/api/resources/extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.d.ts +0 -13
- package/api/resources/extensionConfigurations/client/requests/index.d.ts +0 -1
- package/dist/api/resources/extensionConfigurations/client/Client.d.ts +0 -40
- package/dist/api/resources/extensionConfigurations/client/Client.js +0 -149
- package/dist/api/resources/extensionConfigurations/client/index.d.ts +0 -1
- package/dist/api/resources/extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.d.ts +0 -13
- package/dist/api/resources/extensionConfigurations/client/requests/index.d.ts +0 -1
- package/dist/serialization/types/ExtensionConfigurationOutput.d.ts +0 -15
- package/serialization/types/ExtensionConfigurationOutput.d.ts +0 -15
- /package/api/resources/{extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.js → files/client/requests/CreateFileRestInputV1.js} +0 -0
- /package/{dist/api/resources/extensionConfigurations/client/requests/ExtensionConfigurationDeleteRequest.js → api/resources/files/client/requests/FilesListRequest.js} +0 -0
- /package/api/resources/{extensionConfigurations/client → files/client/requests}/index.js +0 -0
- /package/{api/resources/extensionConfigurations → dist/api/resources/files}/client/requests/index.js +0 -0
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
18
18
|
}) : function(o, v) {
|
19
19
|
o["default"] = v;
|
20
20
|
});
|
21
|
-
var __importStar = (this && this.__importStar) || function (
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
};
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
22
|
+
var ownKeys = function(o) {
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
24
|
+
var ar = [];
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
26
|
+
return ar;
|
27
|
+
};
|
28
|
+
return ownKeys(o);
|
29
|
+
};
|
30
|
+
return function (mod) {
|
31
|
+
if (mod && mod.__esModule) return mod;
|
32
|
+
var result = {};
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
34
|
+
__setModuleDefault(result, mod);
|
35
|
+
return result;
|
36
|
+
};
|
37
|
+
})();
|
28
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
29
39
|
exports.WindowIdResponse = void 0;
|
30
40
|
const core = __importStar(require("../../core"));
|
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
18
18
|
}) : function(o, v) {
|
19
19
|
o["default"] = v;
|
20
20
|
});
|
21
|
-
var __importStar = (this && this.__importStar) || function (
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
};
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
22
|
+
var ownKeys = function(o) {
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
24
|
+
var ar = [];
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
26
|
+
return ar;
|
27
|
+
};
|
28
|
+
return ownKeys(o);
|
29
|
+
};
|
30
|
+
return function (mod) {
|
31
|
+
if (mod && mod.__esModule) return mod;
|
32
|
+
var result = {};
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
34
|
+
__setModuleDefault(result, mod);
|
35
|
+
return result;
|
36
|
+
};
|
37
|
+
})();
|
28
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
29
39
|
exports.WindowResponse = void 0;
|
30
40
|
const core = __importStar(require("../../core"));
|
@@ -9,18 +9,37 @@ export * from "./ClickConfigClickType";
|
|
9
9
|
export * from "./ClickConfig";
|
10
10
|
export * from "./ClientProvidedResponseMetadata";
|
11
11
|
export * from "./CreateAutomationRequestBodyConfiguration";
|
12
|
+
export * from "./CreateFileV1FileType";
|
13
|
+
export * from "./CreateFileV1";
|
12
14
|
export * from "./DeleteAutomationOutputWrapperBody";
|
15
|
+
export * from "./EnvelopeCreateFileV1EnvelopeDefaultMeta";
|
16
|
+
export * from "./CreateAutomationRequestBodyConfiguration";
|
17
|
+
export * from "./CreateFileV1FileType";
|
18
|
+
export * from "./CreateFileV1";
|
19
|
+
export * from "./DeleteAutomationOutputWrapperBody";
|
20
|
+
export * from "./EnvelopeCreateFileV1EnvelopeDefaultMeta";
|
13
21
|
export * from "./EnvelopeDefaultMeta";
|
22
|
+
export * from "./EnvelopeGetFileV1EnvelopeDefaultMeta";
|
23
|
+
export * from "./EnvelopeGetFileV1EnvelopeDefaultMeta";
|
14
24
|
export * from "./ErrorBody";
|
15
25
|
export * from "./ErrorDetail";
|
16
26
|
export * from "./ErrorMessage";
|
17
27
|
export * from "./ErrorModel";
|
18
|
-
export * from "./
|
28
|
+
export * from "./ExternalFile";
|
29
|
+
export * from "./ExternalFile";
|
19
30
|
export * from "./ExternalSessionAiResponseMetadataStatus";
|
20
31
|
export * from "./ExternalSessionAiResponseMetadata";
|
21
32
|
export * from "./ExternalSessionAiResponseMetadataUsage";
|
22
33
|
export * from "./ExternalSessionConfig";
|
23
34
|
export * from "./ExternalSessionWithConnectionInfo";
|
35
|
+
export * from "./FilesResponse";
|
36
|
+
export * from "./FilesWithPagination";
|
37
|
+
export * from "./GetFileV1FileType";
|
38
|
+
export * from "./GetFileV1";
|
39
|
+
export * from "./FilesResponse";
|
40
|
+
export * from "./FilesWithPagination";
|
41
|
+
export * from "./GetFileV1FileType";
|
42
|
+
export * from "./GetFileV1";
|
24
43
|
export * from "./IntervalMonitorConfig";
|
25
44
|
export * from "./Issue";
|
26
45
|
export * from "./ListAutomationsOutput";
|
@@ -25,18 +25,37 @@ __exportStar(require("./ClickConfigClickType"), exports);
|
|
25
25
|
__exportStar(require("./ClickConfig"), exports);
|
26
26
|
__exportStar(require("./ClientProvidedResponseMetadata"), exports);
|
27
27
|
__exportStar(require("./CreateAutomationRequestBodyConfiguration"), exports);
|
28
|
+
__exportStar(require("./CreateFileV1FileType"), exports);
|
29
|
+
__exportStar(require("./CreateFileV1"), exports);
|
28
30
|
__exportStar(require("./DeleteAutomationOutputWrapperBody"), exports);
|
31
|
+
__exportStar(require("./EnvelopeCreateFileV1EnvelopeDefaultMeta"), exports);
|
32
|
+
__exportStar(require("./CreateAutomationRequestBodyConfiguration"), exports);
|
33
|
+
__exportStar(require("./CreateFileV1FileType"), exports);
|
34
|
+
__exportStar(require("./CreateFileV1"), exports);
|
35
|
+
__exportStar(require("./DeleteAutomationOutputWrapperBody"), exports);
|
36
|
+
__exportStar(require("./EnvelopeCreateFileV1EnvelopeDefaultMeta"), exports);
|
29
37
|
__exportStar(require("./EnvelopeDefaultMeta"), exports);
|
38
|
+
__exportStar(require("./EnvelopeGetFileV1EnvelopeDefaultMeta"), exports);
|
39
|
+
__exportStar(require("./EnvelopeGetFileV1EnvelopeDefaultMeta"), exports);
|
30
40
|
__exportStar(require("./ErrorBody"), exports);
|
31
41
|
__exportStar(require("./ErrorDetail"), exports);
|
32
42
|
__exportStar(require("./ErrorMessage"), exports);
|
33
43
|
__exportStar(require("./ErrorModel"), exports);
|
34
|
-
__exportStar(require("./
|
44
|
+
__exportStar(require("./ExternalFile"), exports);
|
45
|
+
__exportStar(require("./ExternalFile"), exports);
|
35
46
|
__exportStar(require("./ExternalSessionAiResponseMetadataStatus"), exports);
|
36
47
|
__exportStar(require("./ExternalSessionAiResponseMetadata"), exports);
|
37
48
|
__exportStar(require("./ExternalSessionAiResponseMetadataUsage"), exports);
|
38
49
|
__exportStar(require("./ExternalSessionConfig"), exports);
|
39
50
|
__exportStar(require("./ExternalSessionWithConnectionInfo"), exports);
|
51
|
+
__exportStar(require("./FilesResponse"), exports);
|
52
|
+
__exportStar(require("./FilesWithPagination"), exports);
|
53
|
+
__exportStar(require("./GetFileV1FileType"), exports);
|
54
|
+
__exportStar(require("./GetFileV1"), exports);
|
55
|
+
__exportStar(require("./FilesResponse"), exports);
|
56
|
+
__exportStar(require("./FilesWithPagination"), exports);
|
57
|
+
__exportStar(require("./GetFileV1FileType"), exports);
|
58
|
+
__exportStar(require("./GetFileV1"), exports);
|
40
59
|
__exportStar(require("./IntervalMonitorConfig"), exports);
|
41
60
|
__exportStar(require("./Issue"), exports);
|
42
61
|
__exportStar(require("./ListAutomationsOutput"), exports);
|
@@ -173,8 +173,8 @@ class SessionQueue {
|
|
173
173
|
}
|
174
174
|
});
|
175
175
|
}
|
176
|
-
handleErrorWithCallback(
|
177
|
-
return __awaiter(this,
|
176
|
+
handleErrorWithCallback(_a) {
|
177
|
+
return __awaiter(this, arguments, void 0, function* ({ originalError, batch, sessionId, callback, }) {
|
178
178
|
// Catch any errors in the onError callback to avoid halting the entire process
|
179
179
|
try {
|
180
180
|
yield callback({
|
@@ -163,8 +163,8 @@ class WindowQueue {
|
|
163
163
|
return results;
|
164
164
|
});
|
165
165
|
}
|
166
|
-
handleErrorWithCallback(
|
167
|
-
return __awaiter(this,
|
166
|
+
handleErrorWithCallback(_a) {
|
167
|
+
return __awaiter(this, arguments, void 0, function* ({ originalError, url, windowId, liveViewUrl, callback, }) {
|
168
168
|
// Catch any errors in the onError callback to avoid halting the entire process
|
169
169
|
try {
|
170
170
|
yield callback({
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import type { AirtopClient } from '../../wrapper/AirtopClient';
|
2
2
|
import type { BatchOperateConfig, BatchOperationInput, BatchOperationResponse, BatchOperationUrl } from './types';
|
3
|
-
export declare const batchOperate: <T>(urls: BatchOperationUrl[], operation: (input: BatchOperationInput) => Promise<BatchOperationResponse<T>>, client: AirtopClient, config?: BatchOperateConfig
|
3
|
+
export declare const batchOperate: <T>(urls: BatchOperationUrl[], operation: (input: BatchOperationInput) => Promise<BatchOperationResponse<T>>, client: AirtopClient, config?: BatchOperateConfig) => Promise<T[]>;
|
@@ -1,26 +1,26 @@
|
|
1
1
|
import type { AirtopSessionConfigV1 } from '../../wrapper/AirtopSessions';
|
2
|
-
export
|
2
|
+
export type BatchOperateConfig = {
|
3
3
|
maxConcurrentSessions?: number;
|
4
4
|
maxWindowsPerSession?: number;
|
5
5
|
sessionConfig?: AirtopSessionConfigV1;
|
6
6
|
onError?: (error: BatchOperationError) => Promise<void>;
|
7
7
|
};
|
8
|
-
export
|
8
|
+
export type BatchOperationUrl = {
|
9
9
|
url: string;
|
10
10
|
context?: Record<string, unknown>;
|
11
11
|
};
|
12
|
-
export
|
12
|
+
export type BatchOperationInput = {
|
13
13
|
windowId: string;
|
14
14
|
sessionId: string;
|
15
15
|
liveViewUrl: string;
|
16
16
|
operationUrl: BatchOperationUrl;
|
17
17
|
};
|
18
|
-
export
|
18
|
+
export type BatchOperationResponse<T> = {
|
19
19
|
shouldHaltBatch?: boolean;
|
20
20
|
additionalUrls?: BatchOperationUrl[];
|
21
21
|
data?: T;
|
22
22
|
};
|
23
|
-
export
|
23
|
+
export type BatchOperationError = {
|
24
24
|
error: Error | string;
|
25
25
|
operationUrls: BatchOperationUrl[];
|
26
26
|
sessionId?: string;
|
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
9
9
|
});
|
10
10
|
};
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
-
exports.processScreenshots =
|
12
|
+
exports.processScreenshots = processScreenshots;
|
13
13
|
function extractMimeAndBase64(dataUrl) {
|
14
14
|
const match = dataUrl.match(/^data:(image\/\w+);base64,(.+)$/);
|
15
15
|
if (match) {
|
@@ -56,4 +56,3 @@ function processScreenshots(response) {
|
|
56
56
|
return processedScreenshots;
|
57
57
|
});
|
58
58
|
}
|
59
|
-
exports.processScreenshots = processScreenshots;
|
package/version.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export declare const SDK_VERSION = "0.1.35";
|
@@ -3,7 +3,8 @@ import { type BatchOperateConfig, type BatchOperationInput, type BatchOperationR
|
|
3
3
|
import { AirtopSessions } from './AirtopSessions';
|
4
4
|
import { AirtopWindows } from './AirtopWindows';
|
5
5
|
import { AirtopRequests } from './AirtopRequests';
|
6
|
-
|
6
|
+
import { AirtopFiles } from './AirtopFiles';
|
7
|
+
type AugmentedOptions = FernClient.Options & {
|
7
8
|
debug?: boolean;
|
8
9
|
};
|
9
10
|
export declare class AirtopClient {
|
@@ -13,16 +14,18 @@ export declare class AirtopClient {
|
|
13
14
|
private _windows;
|
14
15
|
private _sessions;
|
15
16
|
private _requests;
|
17
|
+
private _files;
|
16
18
|
constructor(_options: AugmentedOptions);
|
17
19
|
setApiKey(apiKey: string): void;
|
18
20
|
setEnvironment(environment: string): void;
|
19
21
|
get sessions(): AirtopSessions;
|
20
22
|
get windows(): AirtopWindows;
|
21
23
|
get requests(): AirtopRequests;
|
24
|
+
get files(): AirtopFiles;
|
22
25
|
get profiles(): import("../api/resources/profiles/client/Client").Profiles;
|
23
26
|
log(message: string): void;
|
24
27
|
warn(message: string): void;
|
25
28
|
error(err: any): void;
|
26
|
-
batchOperate: <T>(urls: BatchOperationUrl[], operation: (input: BatchOperationInput) => Promise<BatchOperationResponse<T>>, config?: BatchOperateConfig
|
29
|
+
batchOperate: <T>(urls: BatchOperationUrl[], operation: (input: BatchOperationInput) => Promise<BatchOperationResponse<T>>, config?: BatchOperateConfig) => Promise<T[]>;
|
27
30
|
}
|
28
31
|
export {};
|
package/wrapper/AirtopClient.js
CHANGED
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
15
15
|
}) : function(o, v) {
|
16
16
|
o["default"] = v;
|
17
17
|
});
|
18
|
-
var __importStar = (this && this.__importStar) || function (
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
};
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
19
|
+
var ownKeys = function(o) {
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
21
|
+
var ar = [];
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
23
|
+
return ar;
|
24
|
+
};
|
25
|
+
return ownKeys(o);
|
26
|
+
};
|
27
|
+
return function (mod) {
|
28
|
+
if (mod && mod.__esModule) return mod;
|
29
|
+
var result = {};
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
31
|
+
__setModuleDefault(result, mod);
|
32
|
+
return result;
|
33
|
+
};
|
34
|
+
})();
|
25
35
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
26
36
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
27
37
|
return new (P || (P = Promise))(function (resolve, reject) {
|
@@ -39,13 +49,15 @@ const utils_1 = require("../utils");
|
|
39
49
|
const AirtopSessions_1 = require("./AirtopSessions");
|
40
50
|
const AirtopWindows_1 = require("./AirtopWindows");
|
41
51
|
const AirtopRequests_1 = require("./AirtopRequests");
|
52
|
+
const AirtopFiles_1 = require("./AirtopFiles");
|
53
|
+
const version_1 = require("../version");
|
42
54
|
class AirtopClient {
|
43
55
|
constructor(_options) {
|
44
56
|
this._options = _options;
|
45
57
|
this.batchOperate = (urls, operation, config) => __awaiter(this, void 0, void 0, function* () {
|
46
58
|
return yield (0, utils_1.batchOperate)(urls, operation, this, config);
|
47
59
|
});
|
48
|
-
const version =
|
60
|
+
const version = version_1.SDK_VERSION;
|
49
61
|
if (!_options.fetcher) {
|
50
62
|
_options.fetcher = (req) => {
|
51
63
|
return core.fetcher(Object.assign(Object.assign({}, req), { headers: Object.assign(Object.assign({}, req.headers), { 'x-airtop-sdk-source': 'javascript', 'x-airtop-sdk-version': version }) }));
|
@@ -72,6 +84,10 @@ class AirtopClient {
|
|
72
84
|
var _a;
|
73
85
|
return ((_a = this._requests) !== null && _a !== void 0 ? _a : (this._requests = new AirtopRequests_1.AirtopRequests(this._options)));
|
74
86
|
}
|
87
|
+
get files() {
|
88
|
+
var _a;
|
89
|
+
return ((_a = this._files) !== null && _a !== void 0 ? _a : (this._files = new AirtopFiles_1.AirtopFiles(this._options)));
|
90
|
+
}
|
75
91
|
get profiles() {
|
76
92
|
return this._client.profiles;
|
77
93
|
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import type * as Airtop from '../api';
|
2
|
+
import { Files as FilesClass, type Files as FilesNamespace } from '../api/resources/files/client/Client';
|
3
|
+
export declare class AirtopFiles extends FilesClass {
|
4
|
+
readonly _options: FilesNamespace.Options;
|
5
|
+
constructor(_options: FilesNamespace.Options);
|
6
|
+
/**
|
7
|
+
* Uploads a file to Airtop by first creating a file entry and then uploading the contents
|
8
|
+
* If @options is not provided, the fileName will be calculated from the filePath.
|
9
|
+
* @options.fileType defaults to `customer_upload`
|
10
|
+
*
|
11
|
+
* @param filePath - Path to the local file to upload
|
12
|
+
* @param options - Optional API request configuration
|
13
|
+
* @returns The created file entry response
|
14
|
+
*
|
15
|
+
* @example
|
16
|
+
* const result = await client.files.upload("/path/to/file.pdf")
|
17
|
+
*/
|
18
|
+
upload(filePath: string, options?: Airtop.CreateFileRestInputV1): Promise<Airtop.EnvelopeGetFileV1EnvelopeDefaultMeta>;
|
19
|
+
/**
|
20
|
+
* Downloads a file from Airtop to a local path
|
21
|
+
*
|
22
|
+
* @param fileId - The ID of the file to download
|
23
|
+
* @param destinationPath - Local path where the file should be saved
|
24
|
+
* @param options - Optional API request configuration
|
25
|
+
* @param onProgress - Optional callback to monitor download progress
|
26
|
+
*
|
27
|
+
* @example
|
28
|
+
* await client.files.download(
|
29
|
+
* "123e4567-e89b-12d3-a456-426614174000",
|
30
|
+
* "/path/to/save/file.pdf",
|
31
|
+
* (downloaded, total) => {
|
32
|
+
* const percent = Math.round((downloaded / total) * 100);
|
33
|
+
* console.log(`Downloaded: ${downloaded} / ${total} bytes (${percent}%)`);
|
34
|
+
* }
|
35
|
+
* )
|
36
|
+
*/
|
37
|
+
download(fileId: string, destinationPath: string, onProgress?: (downloadedBytes: number, totalBytes: number) => void, options?: FilesNamespace.RequestOptions): Promise<void>;
|
38
|
+
}
|
@@ -0,0 +1,151 @@
|
|
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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
15
|
+
}) : function(o, v) {
|
16
|
+
o["default"] = v;
|
17
|
+
});
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
19
|
+
var ownKeys = function(o) {
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
21
|
+
var ar = [];
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
23
|
+
return ar;
|
24
|
+
};
|
25
|
+
return ownKeys(o);
|
26
|
+
};
|
27
|
+
return function (mod) {
|
28
|
+
if (mod && mod.__esModule) return mod;
|
29
|
+
var result = {};
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
31
|
+
__setModuleDefault(result, mod);
|
32
|
+
return result;
|
33
|
+
};
|
34
|
+
})();
|
35
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
36
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
37
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
38
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
39
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
40
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
41
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
42
|
+
});
|
43
|
+
};
|
44
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
45
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
46
|
+
};
|
47
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
48
|
+
exports.AirtopFiles = void 0;
|
49
|
+
const Client_1 = require("../api/resources/files/client/Client");
|
50
|
+
const fs = __importStar(require("fs"));
|
51
|
+
const path = __importStar(require("path"));
|
52
|
+
const node_fetch_1 = __importDefault(require("node-fetch"));
|
53
|
+
const readable_stream_1 = require("readable-stream");
|
54
|
+
class AirtopFiles extends Client_1.Files {
|
55
|
+
constructor(_options) {
|
56
|
+
super(_options);
|
57
|
+
this._options = _options;
|
58
|
+
}
|
59
|
+
/**
|
60
|
+
* Uploads a file to Airtop by first creating a file entry and then uploading the contents
|
61
|
+
* If @options is not provided, the fileName will be calculated from the filePath.
|
62
|
+
* @options.fileType defaults to `customer_upload`
|
63
|
+
*
|
64
|
+
* @param filePath - Path to the local file to upload
|
65
|
+
* @param options - Optional API request configuration
|
66
|
+
* @returns The created file entry response
|
67
|
+
*
|
68
|
+
* @example
|
69
|
+
* const result = await client.files.upload("/path/to/file.pdf")
|
70
|
+
*/
|
71
|
+
upload(filePath, options) {
|
72
|
+
return __awaiter(this, void 0, void 0, function* () {
|
73
|
+
var _a, _b;
|
74
|
+
const fileName = (_a = options === null || options === void 0 ? void 0 : options.fileName) !== null && _a !== void 0 ? _a : path.basename(filePath);
|
75
|
+
const fileType = (_b = options === null || options === void 0 ? void 0 : options.fileType) !== null && _b !== void 0 ? _b : 'customer_upload';
|
76
|
+
const fileEntry = yield this.create(Object.assign(Object.assign({}, options), { fileName,
|
77
|
+
fileType }));
|
78
|
+
const fileContent = fs.readFileSync(filePath);
|
79
|
+
const uploadResponse = yield (0, node_fetch_1.default)(fileEntry.data.uploadUrl, {
|
80
|
+
method: 'PUT',
|
81
|
+
body: fileContent,
|
82
|
+
headers: {
|
83
|
+
'Content-Type': 'application/octet-stream',
|
84
|
+
},
|
85
|
+
});
|
86
|
+
if (!uploadResponse.ok) {
|
87
|
+
throw new Error(`Failed to upload file content: ${uploadResponse.statusText}`);
|
88
|
+
}
|
89
|
+
const updatedFileEntry = yield this.get(fileEntry.data.id);
|
90
|
+
return updatedFileEntry;
|
91
|
+
});
|
92
|
+
}
|
93
|
+
/**
|
94
|
+
* Downloads a file from Airtop to a local path
|
95
|
+
*
|
96
|
+
* @param fileId - The ID of the file to download
|
97
|
+
* @param destinationPath - Local path where the file should be saved
|
98
|
+
* @param options - Optional API request configuration
|
99
|
+
* @param onProgress - Optional callback to monitor download progress
|
100
|
+
*
|
101
|
+
* @example
|
102
|
+
* await client.files.download(
|
103
|
+
* "123e4567-e89b-12d3-a456-426614174000",
|
104
|
+
* "/path/to/save/file.pdf",
|
105
|
+
* (downloaded, total) => {
|
106
|
+
* const percent = Math.round((downloaded / total) * 100);
|
107
|
+
* console.log(`Downloaded: ${downloaded} / ${total} bytes (${percent}%)`);
|
108
|
+
* }
|
109
|
+
* )
|
110
|
+
*/
|
111
|
+
download(fileId, destinationPath, onProgress, options) {
|
112
|
+
return __awaiter(this, void 0, void 0, function* () {
|
113
|
+
var _a;
|
114
|
+
// Get the file entry to get the download URL
|
115
|
+
const fileEntry = yield this.get(fileId, options);
|
116
|
+
//*****
|
117
|
+
//TODO: get file status, and return error if upload not complete
|
118
|
+
//*****
|
119
|
+
// Download the file content
|
120
|
+
const downloadResponse = yield (0, node_fetch_1.default)(fileEntry.data.downloadUrl);
|
121
|
+
if (!downloadResponse.ok) {
|
122
|
+
throw new Error(`Failed to download file: ${downloadResponse.statusText}`);
|
123
|
+
}
|
124
|
+
const totalBytes = Number.parseInt((_a = downloadResponse.headers.get('content-length')) !== null && _a !== void 0 ? _a : '0', 10);
|
125
|
+
let downloadedBytes = 0;
|
126
|
+
fs.mkdirSync(path.dirname(destinationPath), { recursive: true });
|
127
|
+
const fileStream = fs.createWriteStream(destinationPath);
|
128
|
+
yield new Promise((resolve, reject) => {
|
129
|
+
if (onProgress && downloadResponse.body) {
|
130
|
+
// Create a transform stream to track progress
|
131
|
+
const progressStream = new readable_stream_1.Transform({
|
132
|
+
transform(chunk, encoding, callback) {
|
133
|
+
downloadedBytes += chunk.length;
|
134
|
+
onProgress(downloadedBytes, totalBytes);
|
135
|
+
callback(null, chunk);
|
136
|
+
},
|
137
|
+
});
|
138
|
+
downloadResponse.body.pipe(progressStream).pipe(fileStream);
|
139
|
+
progressStream.on('error', reject);
|
140
|
+
}
|
141
|
+
else {
|
142
|
+
// If no progress callback, pipe directly
|
143
|
+
downloadResponse.body.pipe(fileStream);
|
144
|
+
}
|
145
|
+
downloadResponse.body.on('error', reject);
|
146
|
+
fileStream.on('finish', resolve);
|
147
|
+
});
|
148
|
+
});
|
149
|
+
}
|
150
|
+
}
|
151
|
+
exports.AirtopFiles = AirtopFiles;
|
@@ -27,8 +27,8 @@ class AirtopRequests extends Client_1.Requests {
|
|
27
27
|
* @example
|
28
28
|
* const result = await client.requests.waitForRequestCompletion("123e4567-e89b-12d3-a456-426614174000", 300)
|
29
29
|
*/
|
30
|
-
waitForRequestCompletion(
|
31
|
-
return __awaiter(this,
|
30
|
+
waitForRequestCompletion(requestId_1) {
|
31
|
+
return __awaiter(this, arguments, void 0, function* (requestId, timeoutSeconds = 300, intervalSeconds = 2, requestOptions) {
|
32
32
|
if (timeoutSeconds <= 0 || intervalSeconds <= 0) {
|
33
33
|
throw new Error('Timeout and interval must be positive values in seconds');
|
34
34
|
}
|
@@ -40,8 +40,8 @@ class AirtopSessions extends Client_1.Sessions {
|
|
40
40
|
const _super = Object.create(null, {
|
41
41
|
create: { get: () => super.create }
|
42
42
|
});
|
43
|
-
var _a;
|
44
43
|
return __awaiter(this, void 0, void 0, function* () {
|
44
|
+
var _a;
|
45
45
|
const createSessionResponse = yield _super.create.call(this, request, requestOptions);
|
46
46
|
if (!createSessionResponse.data) {
|
47
47
|
throw new Error('Error creating browser session');
|
@@ -67,12 +67,14 @@ class AirtopSessions extends Client_1.Sessions {
|
|
67
67
|
});
|
68
68
|
}
|
69
69
|
waitForSessionReady(id, requestOptions) {
|
70
|
-
var e_1, _a;
|
71
70
|
return __awaiter(this, void 0, void 0, function* () {
|
71
|
+
var _a, e_1, _b, _c;
|
72
72
|
const sessionEvents = yield this.events(id, {}, Object.assign({ timeoutInSeconds: 60 }, (requestOptions || {})));
|
73
73
|
try {
|
74
|
-
for (var sessionEvents_1 = __asyncValues(sessionEvents), sessionEvents_1_1; sessionEvents_1_1 = yield sessionEvents_1.next(),
|
75
|
-
|
74
|
+
for (var _d = true, sessionEvents_1 = __asyncValues(sessionEvents), sessionEvents_1_1; sessionEvents_1_1 = yield sessionEvents_1.next(), _a = sessionEvents_1_1.done, !_a; _d = true) {
|
75
|
+
_c = sessionEvents_1_1.value;
|
76
|
+
_d = false;
|
77
|
+
const event = _c;
|
76
78
|
this.log(`status message received:\n${JSON.stringify(event, null, 2)}`);
|
77
79
|
const e = event;
|
78
80
|
if (e.event === 'status' && e.status === 'running') {
|
@@ -83,7 +85,7 @@ class AirtopSessions extends Client_1.Sessions {
|
|
83
85
|
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
84
86
|
finally {
|
85
87
|
try {
|
86
|
-
if (
|
88
|
+
if (!_d && !_a && (_b = sessionEvents_1.return)) yield _b.call(sessionEvents_1);
|
87
89
|
}
|
88
90
|
finally { if (e_1) throw e_1.error; }
|
89
91
|
}
|
package/wrapper/AirtopWindows.js
CHANGED
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
15
15
|
}) : function(o, v) {
|
16
16
|
o["default"] = v;
|
17
17
|
});
|
18
|
-
var __importStar = (this && this.__importStar) || function (
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
};
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
19
|
+
var ownKeys = function(o) {
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
21
|
+
var ar = [];
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
23
|
+
return ar;
|
24
|
+
};
|
25
|
+
return ownKeys(o);
|
26
|
+
};
|
27
|
+
return function (mod) {
|
28
|
+
if (mod && mod.__esModule) return mod;
|
29
|
+
var result = {};
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
31
|
+
__setModuleDefault(result, mod);
|
32
|
+
return result;
|
33
|
+
};
|
34
|
+
})();
|
25
35
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
26
36
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
27
37
|
return new (P || (P = Promise))(function (resolve, reject) {
|
@@ -61,8 +71,8 @@ class AirtopWindows extends Client_1.Windows {
|
|
61
71
|
const _super = Object.create(null, {
|
62
72
|
promptContent: { get: () => super.promptContent }
|
63
73
|
});
|
64
|
-
var _a, _b;
|
65
74
|
return __awaiter(this, void 0, void 0, function* () {
|
75
|
+
var _a, _b;
|
66
76
|
return _super.promptContent.call(this, sessionId, windowId, Object.assign(Object.assign({}, request), { configuration: Object.assign(Object.assign({}, request.configuration), { outputSchema: typeof ((_a = request.configuration) === null || _a === void 0 ? void 0 : _a.outputSchema) === 'object'
|
67
77
|
? JSON.stringify(request.configuration.outputSchema)
|
68
78
|
: (_b = request.configuration) === null || _b === void 0 ? void 0 : _b.outputSchema }) }), Object.assign(Object.assign({ timeoutInSeconds: 600 }, requestOptions), { maxRetries: 0 }));
|
@@ -83,8 +93,8 @@ class AirtopWindows extends Client_1.Windows {
|
|
83
93
|
const _super = Object.create(null, {
|
84
94
|
pageQuery: { get: () => super.pageQuery }
|
85
95
|
});
|
86
|
-
var _a, _b;
|
87
96
|
return __awaiter(this, void 0, void 0, function* () {
|
97
|
+
var _a, _b;
|
88
98
|
return _super.pageQuery.call(this, sessionId, windowId, Object.assign(Object.assign({}, request), { configuration: Object.assign(Object.assign({}, request.configuration), { outputSchema: typeof ((_a = request.configuration) === null || _a === void 0 ? void 0 : _a.outputSchema) === 'object'
|
89
99
|
? JSON.stringify(request.configuration.outputSchema)
|
90
100
|
: (_b = request.configuration) === null || _b === void 0 ? void 0 : _b.outputSchema }) }), Object.assign(Object.assign({ timeoutInSeconds: 600 }, requestOptions), { maxRetries: 0 }));
|
@@ -220,11 +230,11 @@ class AirtopWindows extends Client_1.Windows {
|
|
220
230
|
* @example
|
221
231
|
* await client.windows.scroll("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "0334da2a-91b0-42c5-6156-76a5eba87430")
|
222
232
|
*/
|
223
|
-
scroll(
|
233
|
+
scroll(sessionId_1, windowId_1) {
|
224
234
|
const _super = Object.create(null, {
|
225
235
|
scroll: { get: () => super.scroll }
|
226
236
|
});
|
227
|
-
return __awaiter(this,
|
237
|
+
return __awaiter(this, arguments, void 0, function* (sessionId, windowId, request = {}, requestOptions) {
|
228
238
|
return _super.scroll.call(this, sessionId, windowId, request, Object.assign(Object.assign({ timeoutInSeconds: 600 }, requestOptions), { maxRetries: 0 }));
|
229
239
|
});
|
230
240
|
}
|
@@ -268,8 +278,8 @@ class AirtopWindows extends Client_1.Windows {
|
|
268
278
|
});
|
269
279
|
}
|
270
280
|
getWindowInfoForSeleniumDriver(session, driver, request, requestOptions) {
|
271
|
-
var _a, _b;
|
272
281
|
return __awaiter(this, void 0, void 0, function* () {
|
282
|
+
var _a, _b;
|
273
283
|
const apiKey = yield core.Supplier.get(this.apiKeySupplier);
|
274
284
|
const result = yield this.executeSeleniumCDPCommand(driver, session, apiKey || '');
|
275
285
|
const targetId = (_b = (_a = result === null || result === void 0 ? void 0 : result.value) === null || _a === void 0 ? void 0 : _a.targetInfo) === null || _b === void 0 ? void 0 : _b.targetId;
|