Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apify-api/openapi/components/schemas/actors/Version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ properties:
examples: [false]
description: Whether to inject the environment variables at build time.
buildTag:
type: string
type: [string, "null"]
examples: [latest]
description: The tag name to apply to a successful build of this version.
description: The tag name to apply to a successful build of this version. Can be `null` when the version has no build tag.
sourceFiles:
$ref: ./VersionSourceFiles.yaml
description: Applies when the `sourceType` is `SOURCE_FILES`. Represents the Actor's
Expand Down
21 changes: 3 additions & 18 deletions apify-api/openapi/components/schemas/users/Plan.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,9 @@
title: Plan
# When /users/me is accessed from an Actor run, the plan object is reduced to only
# availableProxyGroups (see apify-core src/api/src/routes/users/user.ts). The other
# fields are therefore only present in the full response and cannot be always required.
required:
- id
- description
- isEnabled
- monthlyBasePriceUsd
- monthlyUsageCreditsUsd
- enabledPlatformFeatures
- maxMonthlyUsageUsd
- maxActorMemoryGbytes
- maxMonthlyActorComputeUnits
- maxMonthlyResidentialProxyGbytes
- maxMonthlyProxySerps
- maxMonthlyExternalDataTransferGbytes
- maxActorCount
- maxActorTaskCount
- dataRetentionDays
- availableProxyGroups
- teamAccountSeatCount
- supportLevel
- availableAddOns
type: object
properties:
id:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
title: UserPrivateInfo
# The id, email, profile and createdAt fields are omitted when this endpoint is accessed
# from an Actor run, so they cannot be marked as always required (see apify-core
# src/api/src/routes/users/user.ts REMOVE_FIELDS_WHEN_ACCESSED_BY_ACTOR_RUN).
required:
- id
- username
- profile
- email
- proxy
- plan
- effectivePlatformFeatures
- createdAt
- isPaying
type: object
properties:
Expand Down
Loading