Skip to content

Commit b12117d

Browse files
authored
chore: add consoleUrl field to storages (#1468)
Recently, we added a new field, `consoleUrl`, to storage responses (GET, PUT, POST). This PR updates the documentation to include the `consoleUrl` field in: - Datasets - Key-Value Stores - Request Queues
1 parent 3231997 commit b12117d

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

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)