Skip to content

Commit 7aa9a81

Browse files
committed
Merge remote-tracking branch 'origin/feat/better-llms' into feat/better-llms
2 parents d7e6359 + 80d21ac commit 7aa9a81

File tree

8 files changed

+38
-7
lines changed

8 files changed

+38
-7
lines changed

.vale.ini

Lines changed: 1 addition & 1 deletion
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
3+
IgnoredScopes = code, tt, table, tr, td, frontmatter
44

55
Vocab = Docs
66

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,13 @@ properties:
6969
consoleUrl:
7070
type: string
7171
example: 'https://console.apify.com/storage/datasets/27TmTznX9YPeAYhkC'
72+
itemsPublicUrl:
73+
type: string
74+
description: "A public link to access the dataset items directly."
75+
example: 'https://api.apify.com/v2/datasets/WkzbQMuFYuamGv3YF/items?signature=abc123'
76+
urlSigningSecretKey:
77+
type: string
78+
description: "A secret key for generating signed public URLs. It is only provided to clients with WRITE permission for the dataset."
79+
nullable: true
7280
stats:
7381
$ref: ./DatasetStats.yaml

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ required:
66
- modifiedAt
77
- accessedAt
88
- consoleUrl
9+
- keysPublicUrl
910
type: object
1011
properties:
1112
id:
@@ -42,5 +43,13 @@ properties:
4243
consoleUrl:
4344
type: string
4445
example: 'https://console.apify.com/storage/key-value-stores/27TmTznX9YPeAYhkC'
46+
keysPublicUrl:
47+
type: string
48+
description: "A public link to access keys of the key-value store directly."
49+
example: 'https://api.apify.com/v2/key-value-stores/WkzbQMuFYuamGv3YF/keys?signature=abc123'
50+
urlSigningSecretKey:
51+
type: string
52+
description: "A secret key for generating signed public URLs. It is only provided to clients with WRITE permission for the key-value store."
53+
nullable: true
4554
stats:
4655
$ref: ./KeyValueStoreStats.yaml

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,18 @@ properties:
1414
required:
1515
- key
1616
- size
17+
- recordPublicUrl
1718
properties:
1819
key:
1920
type: string
2021
example: second-key
2122
size:
2223
type: number
2324
example: 36
25+
recordPublicUrl:
26+
type: string
27+
description: "A public link to access this record directly."
28+
example: 'https://api.apify.com/v2/key-value-stores/WkzbQMuFYuamGv3YF/records/some-key?signature=abc123'
2429
description: ''
2530
count:
2631
type: number

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ get:
5151
- name: status
5252
in: query
5353
description: |
54-
Return only runs with the provided status ([available
55-
statuses](https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle))
54+
Single status or comma-separated list of statuses, see ([available
55+
statuses](https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle)). Used to filter runs by the specified statuses only.
5656
style: form
5757
explode: true
5858
schema:

apify-api/openapi/paths/actor-tasks/actor-tasks@{actorTaskId}@runs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ get:
5757
- name: status
5858
in: query
5959
description: |
60-
Return only runs with the provided status ([available
61-
statuses](https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle))
60+
Single status or comma-separated list of statuses, see ([available
61+
statuses](https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle)). Used to filter runs by the specified statuses only.
6262
style: form
6363
explode: true
6464
schema:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ get:
5959
- name: status
6060
in: query
6161
description: |
62-
Return only runs with the provided status ([available
63-
statuses](https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle))
62+
Single status or comma-separated list of statuses, see ([available
63+
statuses](https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle)). Used to filter runs by the specified statuses only.
6464
style: form
6565
explode: true
6666
schema:

sources/platform/actors/publishing/monetize.mdx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,15 @@ where:
9898

9999
Only paid user activity is included in profit calculations.
100100

101+
:::note Negative profit isolation
102+
103+
An Actor's negative net profit does not affect the positive profit of another Actor. For aggregation purposes, any Actor with a negative net profit is considered to have a profit of $0.
104+
105+
- _Previously:_ `Total Profit = (-$90) + $100 = $10`
106+
- _Now:_ `Total Profit = $0 + $100 = $100`
107+
108+
:::
109+
101110
#### How to set pricing for PPE
102111

103112
1. _Understand your costs_: Analyze resource usage (e.g CPU, memory, proxies, external APIs) and identify cost drivers

0 commit comments

Comments
 (0)