Skip to content

Commit 760331e

Browse files
committed
Merge remote-tracking branch 'origin/fix/alternate-absolute' into fix/alternate-absolute
2 parents 1a069e0 + ae0ae18 commit 760331e

Some content is hidden

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

56 files changed

+108
-51
lines changed

.github/styles/Apify/Apify.yml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
extends: substitution
22
message: "Use '%s' instead of '%s'."
3-
ignorecase: false
3+
ignorecase: true
44
level: warning
5+
scope: text
56
swap:
6-
Apify Dashboard: Apify Console
7-
apify freelancers: Apify freelancers
8-
Apify Platform: Apify platform
9-
'(?:[Tt]he\s)?[Aa]pify\sproxy': Apify Proxy
7+
# Product name changes
8+
'apify dashboard': Apify Console
9+
'apify console': Apify Console
10+
'apify store': Apify Store
11+
'the apify console': Apify Console
12+
'the apify store': Apify Store
13+
14+
# Capitalization fixes
15+
'apify freelancers': Apify freelancers
16+
'apify platform': Apify platform
17+
18+
# Proxy variations (simplified)
19+
'apify proxy': Apify Proxy
20+
'the apify proxy': Apify Proxy
21+
22+
# Common abbreviations
1023
circa: approx.
24+
'ca\.': circa
Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
extends: existence
2-
message: "The word '%s' should always be capitalized."
1+
extends: substitution
2+
message: "Use '%s' instead of '%s'."
33
ignorecase: false
44
level: error
5-
tokens:
6-
- '\bactor\b'
7-
- '\bactors\b'
5+
nonword: true
6+
scope: text,~alt,~code
7+
swap:
8+
'\bactor\b': Actor
9+
'\bactors\b': Actors

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ node_modules
1616
SDK
1717
Dockerfile
1818
Docker's
19+
CAPTCHAs
1920

2021
Docusaurus
2122
navbar
@@ -53,7 +54,6 @@ proxied
5354
LLM
5455
embedder
5556
chatbot
56-
[Ll]angchain
5757

5858
[Kk]eboola
5959
[Aa]irbyte
@@ -68,7 +68,7 @@ exploitability
6868
[Ww]hitepaper
6969
[Cc]ron
7070
scalably
71-
metamorph
71+
[Mm]etamorph
7272
hostname
7373
IPs
7474
unscoped
@@ -90,8 +90,8 @@ preconfigured
9090
devs
9191
asyncio
9292
backlinks?
93-
captchas?
94-
Chatbot
93+
94+
9595
combinator
9696
deduplicating
9797
dev

.vale.ini

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
StylesPath = .github/styles
22
MinAlertLevel = warning
3-
IgnoredScopes = code, tt, table, tr, td, frontmatter, link, alt
3+
IgnoredScopes = code, tt, table, tr, td, frontmatter, link, alt, heading
44

55
Vocab = Docs
66

@@ -12,7 +12,7 @@ mdx = md
1212
[*.md]
1313
BasedOnStyles = Vale, Apify, write-good, Microsoft
1414
# Ignore URLs, HTML/XML tags, lines with =, emails, curly braces, inline code
15-
TokenIgnores = (<\/?[A-Z][^>]*>), ([^\n]+=[^\n]*), ([^\n]+@[^\n]+\.[^\n]), ({[^}]*})
15+
TokenIgnores = (<\/?[A-Z][^>]*>), ([^\n]+@[^\n]+\.[^\n]), ({[^}]*})
1616
# Ignore HTML comments and Markdown code blocks
1717
BlockIgnores = (?s) (<!--.*?-->)|(```.*?```)
1818

@@ -25,14 +25,9 @@ Microsoft.Contractions = NO
2525
Microsoft.Foreign = NO
2626
Microsoft.We = NO
2727
Microsoft.Quotes = NO
28-
Microsoft.ThereIs = NO
2928
Microsoft.Auto = NO
3029
Microsoft.URLFormat = NO
3130
Microsoft.GeneralURL = NO
32-
Microsoft.RangeFormat = NO
33-
Apify.Apify = NO
34-
Apify.Capitalization = NO
35-
Apify.Languages = NO
3631

3732
[{README.md,CONTRIBUTING.md}]
3833
Apify.H1 = NO

apify-api/openapi/paths/actor-runs/actor-runs.yaml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ get:
1212
By default, the records are sorted by the `startedAt` field in ascending
1313
order. Therefore, you can use pagination to incrementally fetch all records while
1414
new ones are still being created. To sort the records in descending order, use
15-
`desc=1` parameter. You can also filter runs by status ([available
15+
`desc=1` parameter. You can also filter runs by `startedAt`` and `status`` fields ([available
1616
statuses](https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle)).
1717
operationId: actorRuns_get
1818
parameters:
@@ -58,6 +58,28 @@ get:
5858
schema:
5959
type: string
6060
example: SUCCEEDED
61+
- name: startedAfter
62+
in: query
63+
description: |
64+
Filter runs that started after the specified date and time (inclusive).
65+
The value must be a valid ISO 8601 datetime string (UTC).
66+
style: form
67+
explode: true
68+
schema:
69+
type: string
70+
format: date-time
71+
example: "2025-09-01T00:00:00.000Z"
72+
- name: startedBefore
73+
in: query
74+
description: |
75+
Filter runs that started before the specified date and time (inclusive).
76+
The value must be a valid ISO 8601 datetime string (UTC).
77+
style: form
78+
explode: true
79+
schema:
80+
type: string
81+
format: date-time
82+
example: "2025-09-17T23:59:59.000Z"
6183
responses:
6284
# todo 404?
6385
'200':

apify-api/openapi/paths/actors/acts@{actorId}@runs.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,28 @@ get:
6666
schema:
6767
type: string
6868
example: SUCCEEDED
69+
- name: startedAfter
70+
in: query
71+
description: |
72+
Filter runs that started after the specified date and time (inclusive).
73+
The value must be a valid ISO 8601 datetime string (UTC).
74+
style: form
75+
explode: true
76+
schema:
77+
type: string
78+
format: date-time
79+
example: "2025-09-01T00:00:00.000Z"
80+
- name: startedBefore
81+
in: query
82+
description: |
83+
Filter runs that started before the specified date and time (inclusive).
84+
The value must be a valid ISO 8601 datetime string (UTC).
85+
style: form
86+
explode: true
87+
schema:
88+
type: string
89+
format: date-time
90+
example: "2025-09-17T23:59:59.000Z"
6991
responses:
7092
'200':
7193
description: ''

apify-docs-theme/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apify/docs-theme",
3-
"version": "1.0.213",
3+
"version": "1.0.214",
44
"description": "",
55
"main": "./src/index.js",
66
"files": [
@@ -20,6 +20,8 @@
2020
},
2121
"dependencies": {
2222
"@apify/docs-search-modal": "^1.2.2",
23+
"@apify/ui-library": "^1.97.2",
24+
"@apify/ui-icons": "^1.19.0",
2325
"@docusaurus/theme-common": "^3.7.0",
2426
"@stackql/docusaurus-plugin-hubspot": "^1.1.0",
2527
"algoliasearch": "^5.19.0",

package-lock.json

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sources/platform/actors/development/deployment/source_types.md

Lines changed: 1 addition & 1 deletion

sources/platform/actors/development/programming_interface/environment_variables.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)