Skip to content

Commit acbcfdb

Browse files
authored
Merge branch 'master' into feature/input-schema-file-upload
2 parents 8d76dfd + 12b007d commit acbcfdb

File tree

165 files changed

+6163
-38674
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+6163
-38674
lines changed

.github/styles/config/vocabularies/Docs/accept.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,20 +86,22 @@ preconfigured
8686

8787
[Mm]ultiselect
8888

89+
devs
8990
asyncio
90-
Langflow
9191
backlinks?
9292
captchas?
9393
Chatbot
9494
combinator
9595
deduplicating
96+
dev
9697
Fakestore
9798
Fandom('s)?
9899
IMDb
99100
influencers
100101
iPads?
101102
iPhones?
102103
jQuery
104+
Langflow
103105
learnings
104106
livestreams
105107
outro
@@ -119,3 +121,4 @@ upvote
119121
walkthroughs?
120122

121123
ul
124+
[Aa]gno

.github/workflows/lychee.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Run Lychee Link Checker
3737
id: lychee
38-
uses: lycheeverse/lychee-action@v2.4.0
38+
uses: lycheeverse/lychee-action@v2.4.1
3939
env:
4040
GITHUB_TOKEN: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
4141
with:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ tsconfig.tsbuildinfo
2020
.turbo
2121
sources/api/*
2222
!sources/api/sidebars.js
23+
!sources/api/getting-started.mdx
2324
apify-api.yaml
2425
static/api
2526
apify-docs-theme/package-lock.json

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ You should be able to open https://docs.apify.loc in your browser and run all th
8787
8888
1. Text emphasis:
8989
90-
- use *Bold* for UI elements
91-
- use **Italics** for emphasis
90+
- use **Bold** for UI elements
91+
- use *Italics* for emphasis
9292
- use `code` for inline code, by using back-ticks (\`\`\)
9393
- use code blocks with language specification
9494
- use [code tabs](https://docusaurus.io/docs/markdown-features/tabs) whenever you want to include examples of implementation in more than one language

apify-api/openapi/components/schemas/actor-runs/RunStats.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ properties:
88
inputBodyLen:
99
type: number
1010
example: 240
11+
migrationCount:
12+
type: number
13+
example: 0
1114
restartCount:
1215
type: number
1316
example: 0

apify-api/openapi/components/schemas/datasets/Dataset.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,27 @@ properties:
4747
type: string
4848
description: ''
4949
nullable: true
50+
schema:
51+
type: object
52+
nullable: true
53+
description: Defines the schema of items in your dataset, the full specification can be found in [Apify docs](/platform/actors/development/actor-definition/dataset-schema)
54+
example:
55+
actorSpecification: 1
56+
title: "My dataset"
57+
views:
58+
overview:
59+
title: "Overview"
60+
transformation:
61+
fields:
62+
- "linkUrl"
63+
display:
64+
component: "table"
65+
properties:
66+
linkUrl:
67+
label: "Link URL"
68+
format: "link"
5069
consoleUrl:
5170
type: string
5271
example: 'https://console.apify.com/storage/datasets/27TmTznX9YPeAYhkC'
72+
stats:
73+
$ref: ./DatasetStats.yaml
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
title: DatasetStats
2+
required:
3+
- readCount
4+
- writeCount
5+
- storageBytes
6+
type: object
7+
properties:
8+
readCount:
9+
type: number
10+
example: 22
11+
writeCount:
12+
type: number
13+
example: 3
14+
storageBytes:
15+
type: number
16+
example: 783
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
title: EffectivePlatformFeature
2+
required:
3+
- isEnabled
4+
- disabledReason
5+
- disabledReasonType
6+
- isTrial
7+
- trialExpirationAt
8+
type: object
9+
properties:
10+
isEnabled:
11+
type: boolean
12+
example: true
13+
disabledReason:
14+
type: string
15+
example: "The \"Selected public Actors for developers\" feature is not enabled for your account. Please upgrade your plan or contact support@apify.com"
16+
nullable: true
17+
disabledReasonType:
18+
type: string
19+
example: "DISABLED"
20+
nullable: true
21+
isTrial:
22+
type: boolean
23+
example: false
24+
trialExpirationAt:
25+
type: string
26+
example: "2025-01-01T14:00:00.000Z"
27+
nullable: true
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
title: EffectivePlatformFeatures
2+
required:
3+
- ACTORS
4+
- STORAGE
5+
- SCHEDULER
6+
- PROXY
7+
- PROXY_EXTERNAL_ACCESS
8+
- PROXY_RESIDENTIAL
9+
- PROXY_SERPS
10+
- WEBHOOKS
11+
- ACTORS_PUBLIC_ALL
12+
- ACTORS_PUBLIC_DEVELOPER
13+
type: object
14+
properties:
15+
ACTORS:
16+
$ref: './EffectivePlatformFeature.yaml'
17+
STORAGE:
18+
$ref: './EffectivePlatformFeature.yaml'
19+
SCHEDULER:
20+
$ref: './EffectivePlatformFeature.yaml'
21+
PROXY:
22+
$ref: './EffectivePlatformFeature.yaml'
23+
PROXY_EXTERNAL_ACCESS:
24+
$ref: './EffectivePlatformFeature.yaml'
25+
PROXY_RESIDENTIAL:
26+
$ref: './EffectivePlatformFeature.yaml'
27+
PROXY_SERPS:
28+
$ref: './EffectivePlatformFeature.yaml'
29+
WEBHOOKS:
30+
$ref: './EffectivePlatformFeature.yaml'
31+
ACTORS_PUBLIC_ALL:
32+
$ref: './EffectivePlatformFeature.yaml'
33+
ACTORS_PUBLIC_DEVELOPER:
34+
$ref: './EffectivePlatformFeature.yaml'

apify-api/openapi/components/schemas/users/UserPrivateInfo.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ required:
66
- email
77
- proxy
88
- plan
9+
- effectivePlatformFeatures
10+
- createdAt
11+
- isPaying
912
type: object
1013
properties:
1114
id:
@@ -23,3 +26,11 @@ properties:
2326
$ref: ./Proxy.yaml
2427
plan:
2528
$ref: ./Plan.yaml
29+
effectivePlatformFeatures:
30+
$ref: ./EffectivePlatformFeatures.yaml
31+
createdAt:
32+
type: string
33+
example: "2022-11-29T14:48:29.381Z"
34+
isPaying:
35+
type: boolean
36+
example: true

0 commit comments

Comments
 (0)