Skip to content

Commit 97bbbb8

Browse files
authored
Merge branch 'master' into feat/agno-integration
2 parents 36148d8 + a4dd5bf commit 97bbbb8

File tree

9 files changed

+658
-29369
lines changed

9 files changed

+658
-29369
lines changed

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/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

apify-api/openapi/openapi.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ info:
33
title: Apify API
44
description: |
55
6-
> **UPDATE 2025-01-14:**
7-
> We have rolled out this new Apify API Documentation. In case of any issues, please [report here](https://github.com/apify/apify-docs/issues).
8-
> The old API Documentation is still [available here](https://docs.apify.com/api/v2-old).
9-
106
The Apify API (version 2) provides programmatic access to the [Apify
117
platform](https://docs.apify.com). The API is organized
128
around [RESTful](https://en.wikipedia.org/wiki/Representational_state_transfer)

apify-api/openapi/paths/key-value-stores/key-value-stores@{storeId}@keys.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ get:
77
well as some information about the values (e.g. size).
88
99
This endpoint is paginated using `exclusiveStartKey` and `limit` parameters
10-
- see [Pagination](#/introduction/response-structure) for more details.
10+
- see [Pagination](/api/v2#using-key) for more details.
1111
operationId: keyValueStore_keys_get
1212
security:
1313
- apiKeyStoreId: []

apify-docs-theme/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apify/docs-theme",
3-
"version": "1.0.173",
3+
"version": "1.0.174",
44
"description": "",
55
"main": "./src/index.js",
66
"files": [
@@ -19,7 +19,7 @@
1919
"access": "public"
2020
},
2121
"dependencies": {
22-
"@apify/docs-search-modal": "^1.2.0",
22+
"@apify/docs-search-modal": "^1.2.1",
2323
"@docusaurus/theme-common": "3.7.0",
2424
"@stackql/docusaurus-plugin-hubspot": "^1.1.0",
2525
"algoliasearch": "^5.19.0",

package-lock.json

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

0 commit comments

Comments
 (0)