Skip to content

Commit f7aff58

Browse files
committed
Merge branch 'master' into lenka/terms
2 parents fb43341 + 52bfabc commit f7aff58

File tree

241 files changed

+5331
-2797
lines changed

Some content is hidden

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

241 files changed

+5331
-2797
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/CODEOWNERS

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Documentation
2-
*.md @TC-MO
3-
*.mdx @TC-MO
2+
/sources/platform/ @TC-MO
3+
4+
# Legal
5+
/sources/legal/ @mnmkng
46

57
# Academy
68
/sources/academy/ @honzajavorek

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

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
Apify(?=-\w+)
1+
\bApify\b(?:-\w+)?
22
@apify\.com
3-
\bApify\b
4-
Actor(s)?
53
SDK(s)
64
[Ss]torages
75
Crawlee
@@ -93,3 +91,38 @@ preconfigured
9391
asyncio
9492
parallelization
9593
IMDb
94+
95+
96+
Langflow
97+
98+
iPhone
99+
iPhones
100+
iPad
101+
iPads
102+
screenshotting
103+
Fakestore
104+
SKUs
105+
SKU
106+
Shopify
107+
learnings
108+
subwoofer
109+
captcha
110+
captchas
111+
deduplicating
112+
reindexes
113+
READMEs
114+
backlink
115+
backlinks
116+
subreddit
117+
subreddits
118+
upvote
119+
walkthrough
120+
walkthroughs
121+
influencers
122+
livestreams
123+
outro
124+
Chatbot
125+
Tripadvisor
126+
[Rr]epurpose
127+
128+
jQuery

.github/workflows/lychee.yml

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

3737
- name: Run Lychee Link Checker
3838
id: lychee
39-
uses: lycheeverse/lychee-action@v2.2.0
39+
uses: lycheeverse/lychee-action@v2.3.0
4040
env:
4141
GITHUB_TOKEN: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
4242
with:

.github/workflows/vale.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
apify-api/openapi/README.md
2323
apify-api/openapi/paths/README.md
2424
apify-api/openapi/components/README.md
25+
sources/legal/**/*.{md,mdx}
2526
separator: ','
2627

2728
- uses: errata-ai/vale-action@reviewdog

.vale.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ mdx = md
1111

1212
[*.md]
1313
BasedOnStyles = Vale, Apify, write-good, Microsoft
14-
# Ignore URLs, HTML/XML tags starting with capital letter, lines containing = sign, http & https URL ending with ] or ) & email addresses
15-
TokenIgnores = (<\/?[A-Z].+>), ([^\n]+=[^\n]*), (\[[^\]]+\]\([^\)]+\)), ([^\n]+@[^\n]+\.[^\n]), ({[^}]*}), (`[^`]*`), (`\w+`)
14+
# Ignore URLs, HTML/XML tags, lines with =, Markdown links, emails, curly braces, inline code
15+
TokenIgnores = (<\/?[A-Z][^>]*>), ([^\n]+=[^\n]*), (\[[^\]]+\]\([^\)]+\)), ([^\n]+@[^\n]+\.[^\n]), ({[^}]*}), `[^`]+`
16+
# Ignore HTML comments and Markdown code blocks
17+
BlockIgnores = (?s) (<!--.*?-->)|(```.*?```)
1618
Vale.Spelling = YES
1719

1820

apify-api/openapi/code_samples/javascript/requestQueue_requests_post.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ const apifyClient = new ApifyClient({
66
const result = await apifyClient
77
.requestQueue('<QUEUE ID>')
88
.addRequest({
9-
'uniqueKey': 'http://example.com',
10-
'url': 'http://example.com',
11-
'method': 'GET',
9+
uniqueKey: 'http://example.com',
10+
url: 'http://example.com',
11+
method: 'GET',
1212
});
1313

1414
console.log(result);

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ required:
88
- accessedAt
99
- itemCount
1010
- cleanItemCount
11+
- consoleUrl
1112
type: object
1213
properties:
1314
id:
@@ -46,3 +47,6 @@ properties:
4647
type: string
4748
description: ''
4849
nullable: true
50+
consoleUrl:
51+
type: string
52+
example: 'https://console.apify.com/storage/datasets/27TmTznX9YPeAYhkC'

apify-api/openapi/components/schemas/key-value-stores/KeyValueStore.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ required:
55
- createdAt
66
- modifiedAt
77
- accessedAt
8+
- consoleUrl
89
type: object
910
properties:
1011
id:
@@ -38,5 +39,8 @@ properties:
3839
type: string
3940
nullable: true
4041
example: null
42+
consoleUrl:
43+
type: string
44+
example: 'https://console.apify.com/storage/key-value-stores/27TmTznX9YPeAYhkC'
4145
stats:
4246
$ref: ./KeyValueStoreStats.yaml

apify-api/openapi/components/schemas/request-queues/RequestQueue.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ required:
99
- handledRequestCount
1010
- pendingRequestCount
1111
- hadMultipleClients
12+
- consoleUrl
1213
type: object
1314
properties:
1415
id:
@@ -42,3 +43,6 @@ properties:
4243
hadMultipleClients:
4344
type: boolean
4445
example: true
46+
consoleUrl:
47+
type: string
48+
example: 'https://api.apify.com/v2/request-queues/27TmTznX9YPeAYhkC'

0 commit comments

Comments
 (0)