@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
@@ -0,0 +1,17 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./CreateFileRestInputV1FileType"), exports);
|
@@ -1,12 +1,14 @@
|
|
1
1
|
export * as windows from "./windows";
|
2
2
|
export * from "./windows/types";
|
3
|
+
export * as files from "./files";
|
4
|
+
export * from "./files/types";
|
3
5
|
export * as sessions from "./sessions";
|
4
6
|
export * from "./sessions/types";
|
5
7
|
export * as automations from "./automations";
|
6
|
-
export * as extensionConfigurations from "./extensionConfigurations";
|
7
8
|
export * as profiles from "./profiles";
|
8
9
|
export * as requests from "./requests";
|
9
10
|
export * from "./windows/client/requests";
|
10
11
|
export * from "./automations/client/requests";
|
12
|
+
export * from "./files/client/requests";
|
11
13
|
export * from "./profiles/client/requests";
|
12
14
|
export * from "./sessions/client/requests";
|
@@ -15,27 +15,39 @@ 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 __exportStar = (this && this.__exportStar) || function(m, exports) {
|
26
36
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
27
37
|
};
|
28
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
29
|
-
exports.requests = exports.profiles = exports.
|
39
|
+
exports.requests = exports.profiles = exports.automations = exports.sessions = exports.files = exports.windows = void 0;
|
30
40
|
exports.windows = __importStar(require("./windows"));
|
31
41
|
__exportStar(require("./windows/types"), exports);
|
42
|
+
exports.files = __importStar(require("./files"));
|
43
|
+
__exportStar(require("./files/types"), exports);
|
32
44
|
exports.sessions = __importStar(require("./sessions"));
|
33
45
|
__exportStar(require("./sessions/types"), exports);
|
34
46
|
exports.automations = __importStar(require("./automations"));
|
35
|
-
exports.extensionConfigurations = __importStar(require("./extensionConfigurations"));
|
36
47
|
exports.profiles = __importStar(require("./profiles"));
|
37
48
|
exports.requests = __importStar(require("./requests"));
|
38
49
|
__exportStar(require("./windows/client/requests"), exports);
|
39
50
|
__exportStar(require("./automations/client/requests"), exports);
|
51
|
+
__exportStar(require("./files/client/requests"), exports);
|
40
52
|
__exportStar(require("./profiles/client/requests"), exports);
|
41
53
|
__exportStar(require("./sessions/client/requests"), exports);
|
@@ -7,6 +7,8 @@ import * as Airtop from "../../../index";
|
|
7
7
|
export declare namespace Profiles {
|
8
8
|
interface Options {
|
9
9
|
environment?: core.Supplier<environments.AirtopEnvironment | string>;
|
10
|
+
/** Specify a custom URL to connect the client to. */
|
11
|
+
baseUrl?: core.Supplier<string>;
|
10
12
|
apiKey: core.Supplier<core.BearerToken>;
|
11
13
|
fetcher?: core.FetchFunction;
|
12
14
|
}
|
@@ -17,6 +19,8 @@ export declare namespace Profiles {
|
|
17
19
|
maxRetries?: number;
|
18
20
|
/** A hook to abort the request. */
|
19
21
|
abortSignal?: AbortSignal;
|
22
|
+
/** Additional headers to include in the request. */
|
23
|
+
headers?: Record<string, string>;
|
20
24
|
}
|
21
25
|
}
|
22
26
|
export declare class Profiles {
|
@@ -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
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
29
39
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
30
40
|
return new (P || (P = Promise))(function (resolve, reject) {
|
@@ -56,9 +66,9 @@ class Profiles {
|
|
56
66
|
* @example
|
57
67
|
* await client.profiles.delete()
|
58
68
|
*/
|
59
|
-
delete(
|
60
|
-
|
61
|
-
|
69
|
+
delete() {
|
70
|
+
return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
|
71
|
+
var _a, _b, _c;
|
62
72
|
const { profileIds, profileNames } = request;
|
63
73
|
const _queryParams = {};
|
64
74
|
if (profileIds != null) {
|
@@ -78,17 +88,9 @@ class Profiles {
|
|
78
88
|
}
|
79
89
|
}
|
80
90
|
const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
|
81
|
-
url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.
|
91
|
+
url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirtopEnvironment.Default, "profiles"),
|
82
92
|
method: "DELETE",
|
83
|
-
headers: {
|
84
|
-
Authorization: yield this._getAuthorizationHeader(),
|
85
|
-
"X-Fern-Language": "JavaScript",
|
86
|
-
"X-Fern-SDK-Name": "@airtop/sdk",
|
87
|
-
"X-Fern-SDK-Version": "0.1.34-beta0",
|
88
|
-
"User-Agent": "@airtop/sdk/0.1.34-beta0",
|
89
|
-
"X-Fern-Runtime": core.RUNTIME.type,
|
90
|
-
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
91
|
-
},
|
93
|
+
headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
92
94
|
contentType: "application/json",
|
93
95
|
queryParameters: _queryParams,
|
94
96
|
requestType: "json",
|
@@ -112,7 +114,7 @@ class Profiles {
|
|
112
114
|
body: _response.error.rawBody,
|
113
115
|
});
|
114
116
|
case "timeout":
|
115
|
-
throw new errors.AirtopTimeoutError();
|
117
|
+
throw new errors.AirtopTimeoutError("Timeout exceeded when calling DELETE /profiles.");
|
116
118
|
case "unknown":
|
117
119
|
throw new errors.AirtopError({
|
118
120
|
message: _response.error.errorMessage,
|
@@ -7,6 +7,8 @@ import * as Airtop from "../../../index";
|
|
7
7
|
export declare namespace Requests {
|
8
8
|
interface Options {
|
9
9
|
environment?: core.Supplier<environments.AirtopEnvironment | string>;
|
10
|
+
/** Specify a custom URL to connect the client to. */
|
11
|
+
baseUrl?: core.Supplier<string>;
|
10
12
|
apiKey: core.Supplier<core.BearerToken>;
|
11
13
|
fetcher?: core.FetchFunction;
|
12
14
|
}
|
@@ -17,6 +19,8 @@ export declare namespace Requests {
|
|
17
19
|
maxRetries?: number;
|
18
20
|
/** A hook to abort the request. */
|
19
21
|
abortSignal?: AbortSignal;
|
22
|
+
/** Additional headers to include in the request. */
|
23
|
+
headers?: Record<string, string>;
|
20
24
|
}
|
21
25
|
}
|
22
26
|
export declare class Requests {
|
@@ -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
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
29
39
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
30
40
|
return new (P || (P = Promise))(function (resolve, reject) {
|
@@ -56,20 +66,12 @@ class Requests {
|
|
56
66
|
* await client.requests.getRequestStatus("123e4567-e89b-12d3-a456-426614174000")
|
57
67
|
*/
|
58
68
|
getRequestStatus(requestId, requestOptions) {
|
59
|
-
var _a, _b;
|
60
69
|
return __awaiter(this, void 0, void 0, function* () {
|
70
|
+
var _a, _b, _c;
|
61
71
|
const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
|
62
|
-
url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.
|
72
|
+
url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirtopEnvironment.Default, `requests/${encodeURIComponent(requestId)}/status`),
|
63
73
|
method: "GET",
|
64
|
-
headers: {
|
65
|
-
Authorization: yield this._getAuthorizationHeader(),
|
66
|
-
"X-Fern-Language": "JavaScript",
|
67
|
-
"X-Fern-SDK-Name": "@airtop/sdk",
|
68
|
-
"X-Fern-SDK-Version": "0.1.34-beta0",
|
69
|
-
"User-Agent": "@airtop/sdk/0.1.34-beta0",
|
70
|
-
"X-Fern-Runtime": core.RUNTIME.type,
|
71
|
-
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
72
|
-
},
|
74
|
+
headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
73
75
|
contentType: "application/json",
|
74
76
|
requestType: "json",
|
75
77
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
|
@@ -98,7 +100,7 @@ class Requests {
|
|
98
100
|
body: _response.error.rawBody,
|
99
101
|
});
|
100
102
|
case "timeout":
|
101
|
-
throw new errors.AirtopTimeoutError();
|
103
|
+
throw new errors.AirtopTimeoutError("Timeout exceeded when calling GET /requests/{requestId}/status.");
|
102
104
|
case "unknown":
|
103
105
|
throw new errors.AirtopError({
|
104
106
|
message: _response.error.errorMessage,
|
@@ -7,6 +7,8 @@ import * as Airtop from "../../../index";
|
|
7
7
|
export declare namespace Sessions {
|
8
8
|
interface Options {
|
9
9
|
environment?: core.Supplier<environments.AirtopEnvironment | string>;
|
10
|
+
/** Specify a custom URL to connect the client to. */
|
11
|
+
baseUrl?: core.Supplier<string>;
|
10
12
|
apiKey: core.Supplier<core.BearerToken>;
|
11
13
|
fetcher?: core.FetchFunction;
|
12
14
|
}
|
@@ -17,13 +19,16 @@ export declare namespace Sessions {
|
|
17
19
|
maxRetries?: number;
|
18
20
|
/** A hook to abort the request. */
|
19
21
|
abortSignal?: AbortSignal;
|
22
|
+
/** Additional headers to include in the request. */
|
23
|
+
headers?: Record<string, string>;
|
20
24
|
}
|
21
25
|
}
|
22
26
|
export declare class Sessions {
|
23
27
|
protected readonly _options: Sessions.Options;
|
24
28
|
constructor(_options: Sessions.Options);
|
25
29
|
/**
|
26
|
-
* Get a list of sessions by ID
|
30
|
+
* Get a paginated list of sessions filtered by ID or status
|
31
|
+
* Get a paginated list of sessions filtered by ID or status
|
27
32
|
*
|
28
33
|
* @param {Airtop.SessionsListRequest} request
|
29
34
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
@@ -83,7 +88,7 @@ export declare class Sessions {
|
|
83
88
|
* @example
|
84
89
|
* await client.sessions.saveExtensionConfigurationOnTermination("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "myExtensionConfiguration")
|
85
90
|
*/
|
86
|
-
saveExtensionConfigurationOnTermination(sessionId: string,
|
91
|
+
saveExtensionConfigurationOnTermination(sessionId: string, profileName: string, requestOptions?: Sessions.RequestOptions): Promise<void>;
|
87
92
|
/**
|
88
93
|
* @param {string} sessionId - ID of the session.
|
89
94
|
* @param {string} profileName - Name under which to save the profile.
|
@@ -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
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
29
39
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
30
40
|
return new (P || (P = Promise))(function (resolve, reject) {
|
@@ -42,15 +52,16 @@ exports.Sessions = void 0;
|
|
42
52
|
const environments = __importStar(require("../../../../environments"));
|
43
53
|
const core = __importStar(require("../../../../core"));
|
44
54
|
const Airtop = __importStar(require("../../../index"));
|
45
|
-
const url_join_1 = __importDefault(require("url-join"));
|
46
55
|
const serializers = __importStar(require("../../../../serialization/index"));
|
56
|
+
const url_join_1 = __importDefault(require("url-join"));
|
47
57
|
const errors = __importStar(require("../../../../errors/index"));
|
48
58
|
class Sessions {
|
49
59
|
constructor(_options) {
|
50
60
|
this._options = _options;
|
51
61
|
}
|
52
62
|
/**
|
53
|
-
* Get a list of sessions by ID
|
63
|
+
* Get a paginated list of sessions filtered by ID or status
|
64
|
+
* Get a paginated list of sessions filtered by ID or status
|
54
65
|
*
|
55
66
|
* @param {Airtop.SessionsListRequest} request
|
56
67
|
* @param {Sessions.RequestOptions} requestOptions - Request-specific configuration.
|
@@ -65,9 +76,9 @@ class Sessions {
|
|
65
76
|
* limit: 10
|
66
77
|
* })
|
67
78
|
*/
|
68
|
-
list(
|
69
|
-
|
70
|
-
|
79
|
+
list() {
|
80
|
+
return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
|
81
|
+
var _a, _b, _c;
|
71
82
|
const { sessionIds, status, offset, limit } = request;
|
72
83
|
const _queryParams = {};
|
73
84
|
if (sessionIds != null) {
|
@@ -79,7 +90,9 @@ class Sessions {
|
|
79
90
|
}
|
80
91
|
}
|
81
92
|
if (status != null) {
|
82
|
-
_queryParams["status"] = status
|
93
|
+
_queryParams["status"] = serializers.SessionsListRequestStatus.jsonOrThrow(status, {
|
94
|
+
unrecognizedObjectKeys: "strip",
|
95
|
+
});
|
83
96
|
}
|
84
97
|
if (offset != null) {
|
85
98
|
_queryParams["offset"] = offset.toString();
|
@@ -88,17 +101,9 @@ class Sessions {
|
|
88
101
|
_queryParams["limit"] = limit.toString();
|
89
102
|
}
|
90
103
|
const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
|
91
|
-
url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.
|
104
|
+
url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirtopEnvironment.Default, "sessions"),
|
92
105
|
method: "GET",
|
93
|
-
headers: {
|
94
|
-
Authorization: yield this._getAuthorizationHeader(),
|
95
|
-
"X-Fern-Language": "JavaScript",
|
96
|
-
"X-Fern-SDK-Name": "@airtop/sdk",
|
97
|
-
"X-Fern-SDK-Version": "0.1.34-beta0",
|
98
|
-
"User-Agent": "@airtop/sdk/0.1.34-beta0",
|
99
|
-
"X-Fern-Runtime": core.RUNTIME.type,
|
100
|
-
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
101
|
-
},
|
106
|
+
headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
102
107
|
contentType: "application/json",
|
103
108
|
queryParameters: _queryParams,
|
104
109
|
requestType: "json",
|
@@ -155,7 +160,7 @@ class Sessions {
|
|
155
160
|
body: _response.error.rawBody,
|
156
161
|
});
|
157
162
|
case "timeout":
|
158
|
-
throw new errors.AirtopTimeoutError();
|
163
|
+
throw new errors.AirtopTimeoutError("Timeout exceeded when calling GET /sessions.");
|
159
164
|
case "unknown":
|
160
165
|
throw new errors.AirtopError({
|
161
166
|
message: _response.error.errorMessage,
|
@@ -170,21 +175,13 @@ class Sessions {
|
|
170
175
|
* @example
|
171
176
|
* await client.sessions.create()
|
172
177
|
*/
|
173
|
-
create(
|
174
|
-
|
175
|
-
|
178
|
+
create() {
|
179
|
+
return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
|
180
|
+
var _a, _b, _c;
|
176
181
|
const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
|
177
|
-
url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.
|
182
|
+
url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirtopEnvironment.Default, "sessions"),
|
178
183
|
method: "POST",
|
179
|
-
headers: {
|
180
|
-
Authorization: yield this._getAuthorizationHeader(),
|
181
|
-
"X-Fern-Language": "JavaScript",
|
182
|
-
"X-Fern-SDK-Name": "@airtop/sdk",
|
183
|
-
"X-Fern-SDK-Version": "0.1.34-beta0",
|
184
|
-
"User-Agent": "@airtop/sdk/0.1.34-beta0",
|
185
|
-
"X-Fern-Runtime": core.RUNTIME.type,
|
186
|
-
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
187
|
-
},
|
184
|
+
headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
188
185
|
contentType: "application/json",
|
189
186
|
requestType: "json",
|
190
187
|
body: serializers.SessionRestInputV1.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
|
@@ -214,7 +211,7 @@ class Sessions {
|
|
214
211
|
body: _response.error.rawBody,
|
215
212
|
});
|
216
213
|
case "timeout":
|
217
|
-
throw new errors.AirtopTimeoutError();
|
214
|
+
throw new errors.AirtopTimeoutError("Timeout exceeded when calling POST /sessions.");
|
218
215
|
case "unknown":
|
219
216
|
throw new errors.AirtopError({
|
220
217
|
message: _response.error.errorMessage,
|
@@ -236,20 +233,12 @@ class Sessions {
|
|
236
233
|
* await client.sessions.getInfo("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b")
|
237
234
|
*/
|
238
235
|
getInfo(id, requestOptions) {
|
239
|
-
var _a, _b;
|
240
236
|
return __awaiter(this, void 0, void 0, function* () {
|
237
|
+
var _a, _b, _c;
|
241
238
|
const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
|
242
|
-
url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.
|
239
|
+
url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirtopEnvironment.Default, `sessions/${encodeURIComponent(id)}`),
|
243
240
|
method: "GET",
|
244
|
-
headers: {
|
245
|
-
Authorization: yield this._getAuthorizationHeader(),
|
246
|
-
"X-Fern-Language": "JavaScript",
|
247
|
-
"X-Fern-SDK-Name": "@airtop/sdk",
|
248
|
-
"X-Fern-SDK-Version": "0.1.34-beta0",
|
249
|
-
"User-Agent": "@airtop/sdk/0.1.34-beta0",
|
250
|
-
"X-Fern-Runtime": core.RUNTIME.type,
|
251
|
-
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
252
|
-
},
|
241
|
+
headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
253
242
|
contentType: "application/json",
|
254
243
|
requestType: "json",
|
255
244
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
|
@@ -305,7 +294,7 @@ class Sessions {
|
|
305
294
|
body: _response.error.rawBody,
|
306
295
|
});
|
307
296
|
case "timeout":
|
308
|
-
throw new errors.AirtopTimeoutError();
|
297
|
+
throw new errors.AirtopTimeoutError("Timeout exceeded when calling GET /sessions/{id}.");
|
309
298
|
case "unknown":
|
310
299
|
throw new errors.AirtopError({
|
311
300
|
message: _response.error.errorMessage,
|
@@ -323,20 +312,12 @@ class Sessions {
|
|
323
312
|
* await client.sessions.terminate("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b")
|
324
313
|
*/
|
325
314
|
terminate(id, requestOptions) {
|
326
|
-
var _a, _b;
|
327
315
|
return __awaiter(this, void 0, void 0, function* () {
|
316
|
+
var _a, _b, _c;
|
328
317
|
const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
|
329
|
-
url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.
|
318
|
+
url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirtopEnvironment.Default, `sessions/${encodeURIComponent(id)}`),
|
330
319
|
method: "DELETE",
|
331
|
-
headers: {
|
332
|
-
Authorization: yield this._getAuthorizationHeader(),
|
333
|
-
"X-Fern-Language": "JavaScript",
|
334
|
-
"X-Fern-SDK-Name": "@airtop/sdk",
|
335
|
-
"X-Fern-SDK-Version": "0.1.34-beta0",
|
336
|
-
"User-Agent": "@airtop/sdk/0.1.34-beta0",
|
337
|
-
"X-Fern-Runtime": core.RUNTIME.type,
|
338
|
-
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
339
|
-
},
|
320
|
+
headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
340
321
|
contentType: "application/json",
|
341
322
|
requestType: "json",
|
342
323
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
|
@@ -359,7 +340,7 @@ class Sessions {
|
|
359
340
|
body: _response.error.rawBody,
|
360
341
|
});
|
361
342
|
case "timeout":
|
362
|
-
throw new errors.AirtopTimeoutError();
|
343
|
+
throw new errors.AirtopTimeoutError("Timeout exceeded when calling DELETE /sessions/{id}.");
|
363
344
|
case "unknown":
|
364
345
|
throw new errors.AirtopError({
|
365
346
|
message: _response.error.errorMessage,
|
@@ -370,9 +351,9 @@ class Sessions {
|
|
370
351
|
/**
|
371
352
|
* Get a session event stream for a given session ID
|
372
353
|
*/
|
373
|
-
events(
|
374
|
-
|
375
|
-
|
354
|
+
events(id_1) {
|
355
|
+
return __awaiter(this, arguments, void 0, function* (id, request = {}, requestOptions) {
|
356
|
+
var _a, _b, _c;
|
376
357
|
const { lastEventId, all } = request;
|
377
358
|
const _queryParams = {};
|
378
359
|
if (lastEventId != null) {
|
@@ -382,17 +363,9 @@ class Sessions {
|
|
382
363
|
_queryParams["all"] = all.toString();
|
383
364
|
}
|
384
365
|
const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
|
385
|
-
url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.
|
366
|
+
url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirtopEnvironment.Default, `sessions/${encodeURIComponent(id)}/events`),
|
386
367
|
method: "GET",
|
387
|
-
headers: {
|
388
|
-
Authorization: yield this._getAuthorizationHeader(),
|
389
|
-
"X-Fern-Language": "JavaScript",
|
390
|
-
"X-Fern-SDK-Name": "@airtop/sdk",
|
391
|
-
"X-Fern-SDK-Version": "0.1.34-beta0",
|
392
|
-
"User-Agent": "@airtop/sdk/0.1.34-beta0",
|
393
|
-
"X-Fern-Runtime": core.RUNTIME.type,
|
394
|
-
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
395
|
-
},
|
368
|
+
headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
396
369
|
contentType: "application/json",
|
397
370
|
queryParameters: _queryParams,
|
398
371
|
requestType: "json",
|
@@ -460,7 +433,7 @@ class Sessions {
|
|
460
433
|
body: _response.error.rawBody,
|
461
434
|
});
|
462
435
|
case "timeout":
|
463
|
-
throw new errors.AirtopTimeoutError();
|
436
|
+
throw new errors.AirtopTimeoutError("Timeout exceeded when calling GET /sessions/{id}/events.");
|
464
437
|
case "unknown":
|
465
438
|
throw new errors.AirtopError({
|
466
439
|
message: _response.error.errorMessage,
|
@@ -476,21 +449,13 @@ class Sessions {
|
|
476
449
|
* @example
|
477
450
|
* await client.sessions.saveExtensionConfigurationOnTermination("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "myExtensionConfiguration")
|
478
451
|
*/
|
479
|
-
saveExtensionConfigurationOnTermination(sessionId,
|
480
|
-
var _a, _b;
|
452
|
+
saveExtensionConfigurationOnTermination(sessionId, profileName, requestOptions) {
|
481
453
|
return __awaiter(this, void 0, void 0, function* () {
|
454
|
+
var _a, _b, _c;
|
482
455
|
const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
|
483
|
-
url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.
|
456
|
+
url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirtopEnvironment.Default, `sessions/${encodeURIComponent(sessionId)}/save-profile-on-termination/${encodeURIComponent(profileName)}`),
|
484
457
|
method: "PUT",
|
485
|
-
headers: {
|
486
|
-
Authorization: yield this._getAuthorizationHeader(),
|
487
|
-
"X-Fern-Language": "JavaScript",
|
488
|
-
"X-Fern-SDK-Name": "@airtop/sdk",
|
489
|
-
"X-Fern-SDK-Version": "0.1.31-beta2",
|
490
|
-
"User-Agent": "@airtop/sdk/0.1.31-beta2",
|
491
|
-
"X-Fern-Runtime": core.RUNTIME.type,
|
492
|
-
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
493
|
-
},
|
458
|
+
headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.35", "User-Agent": "@airtop/sdk/0.1.35", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
494
459
|
contentType: "application/json",
|
495
460
|
requestType: "json",
|
496
461
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
|
@@ -513,7 +478,7 @@ class Sessions {
|
|
513
478
|
body: _response.error.rawBody,
|
514
479
|
});
|
515
480
|
case "timeout":
|
516
|
-
throw new errors.AirtopTimeoutError();
|
481
|
+
throw new errors.AirtopTimeoutError("Timeout exceeded when calling PUT /sessions/{sessionId}/save-profile-on-termination/{profileName}.");
|
517
482
|
case "unknown":
|
518
483
|
throw new errors.AirtopError({
|
519
484
|
message: _response.error.errorMessage,
|
@@ -530,20 +495,12 @@ class Sessions {
|
|
530
495
|
* await client.sessions.saveProfileOnTermination("6aac6f73-bd89-4a76-ab32-5a6c422e8b0b", "myProfile")
|
531
496
|
*/
|
532
497
|
saveProfileOnTermination(sessionId, profileName, requestOptions) {
|
533
|
-
var _a, _b;
|
534
498
|
return __awaiter(this, void 0, void 0, function* () {
|
499
|
+
var _a, _b, _c;
|
535
500
|
const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
|
536
|
-
url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.
|
501
|
+
url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.AirtopEnvironment.Default, `sessions/${encodeURIComponent(sessionId)}/save-profile-on-termination/${encodeURIComponent(profileName)}`),
|
537
502
|
method: "PUT",
|
538
|
-
headers: {
|
539
|
-
Authorization: yield this._getAuthorizationHeader(),
|
540
|
-
"X-Fern-Language": "JavaScript",
|
541
|
-
"X-Fern-SDK-Name": "@airtop/sdk",
|
542
|
-
"X-Fern-SDK-Version": "0.1.34-beta0",
|
543
|
-
"User-Agent": "@airtop/sdk/0.1.34-beta0",
|
544
|
-
"X-Fern-Runtime": core.RUNTIME.type,
|
545
|
-
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
546
|
-
},
|
503
|
+
headers: Object.assign({ Authorization: yield this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@airtop/sdk", "X-Fern-SDK-Version": "0.1.34", "User-Agent": "@airtop/sdk/0.1.34", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
547
504
|
contentType: "application/json",
|
548
505
|
requestType: "json",
|
549
506
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
|
@@ -566,7 +523,7 @@ class Sessions {
|
|
566
523
|
body: _response.error.rawBody,
|
567
524
|
});
|
568
525
|
case "timeout":
|
569
|
-
throw new errors.AirtopTimeoutError();
|
526
|
+
throw new errors.AirtopTimeoutError("Timeout exceeded when calling PUT /sessions/{sessionId}/save-profile-on-termination/{profileName}.");
|
570
527
|
case "unknown":
|
571
528
|
throw new errors.AirtopError({
|
572
529
|
message: _response.error.errorMessage,
|