Skip to content

Commit aae193f

Browse files
authored
Merge branch 'master' into docs/add-ghcopilot-instructions
2 parents a2f02e1 + 7fed112 commit aae193f

28 files changed

Lines changed: 1152 additions & 320 deletions

File tree

apify-api/openapi/components/schemas/actors/ActorDefinition.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ properties:
4242
dataset:
4343
type: object
4444
description: Defines the schema of items in your dataset, the full specification can be found in [Apify docs](https://docs.apify.com/platform/actors/development/actor-definition/dataset-schema)
45+
defaultMemoryMbytes:
46+
oneOf:
47+
- type: string
48+
example: get(input, 'startUrls.length', 1) * 1024
49+
- type: integer
50+
example: 1024
51+
description: Specifies the default amount of memory in megabytes to be used when the Actor is started. Can be an integer or a [dynamic memory expression](/platform/actors/development/actor-definition/dynamic-actor-memory).
4552
minMemoryMbytes:
4653
type: integer
4754
minimum: 256

apify-docs-theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apify/docs-theme",
3-
"version": "1.0.227",
3+
"version": "1.0.229",
44
"description": "",
55
"main": "./src/index.js",
66
"files": [

apify-docs-theme/src/config.js

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,22 +110,30 @@ const themeConfig = {
110110
href: 'https://crawlee.dev',
111111
rel: 'dofollow',
112112
},
113-
{
114-
label: 'Got Scraping',
115-
href: 'https://github.com/apify/got-scraping',
116-
},
117113
{
118114
label: 'Fingerprint Suite',
119115
href: 'https://github.com/apify/fingerprint-suite',
120116
},
121117
{
122-
label: 'Apify on GitHub',
123-
href: 'https://github.com/apify',
118+
label: 'impit',
119+
href: 'https://github.com/apify/impit',
120+
},
121+
{
122+
label: 'MCP CLI',
123+
href: 'https://github.com/apify/mcp-cli',
124124
},
125125
{
126126
label: 'Actor whitepaper',
127127
href: 'https://whitepaper.actor',
128128
},
129+
{
130+
label: 'proxy-chain',
131+
href: 'https://github.com/apify/proxy-chain',
132+
},
133+
{
134+
label: 'Apify on GitHub',
135+
href: 'https://github.com/apify',
136+
},
129137
],
130138
},
131139
{

apify-docs-theme/src/theme/LLMButtons/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import clsx from 'clsx';
22
import React, { useCallback, useState } from 'react';
33

44
import {
5-
AnthropicIcon,
65
ChatGptIcon,
76
CheckIcon,
87
ChevronDownIcon,
8+
ClaudeIcon,
99
CopyIcon,
1010
CursorIcon,
1111
ExternalLinkIcon,
@@ -68,7 +68,7 @@ const DROPDOWN_OPTIONS = [
6868
label: 'Open in Claude',
6969
description: 'Ask questions about this page',
7070
showExternalIcon: true,
71-
Icon: AnthropicIcon,
71+
Icon: ClaudeIcon,
7272
value: 'openInClaude',
7373
},
7474
{

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"cross-env": "^10.0.0",
5252
"eslint": "^9.32.0",
5353
"eslint-plugin-react": "^7.37.5",
54-
"globals": "^16.0.0",
54+
"globals": "^17.0.0",
5555
"markdownlint": "^0.40.0",
5656
"markdownlint-cli": "^0.47.0",
5757
"patch-package": "^8.0.0",
@@ -62,7 +62,7 @@
6262
},
6363
"dependencies": {
6464
"@apify/ui-library": "^1.97.2",
65-
"@apify/ui-icons": "^1.25.0",
65+
"@apify/ui-icons": "^1.26.0",
6666
"@docusaurus/core": "^3.8.1",
6767
"@docusaurus/faster": "^3.8.1",
6868
"@docusaurus/plugin-client-redirects": "^3.8.1",
@@ -84,7 +84,7 @@
8484
"react": "^19.1.0",
8585
"react-dom": "^19.1.0",
8686
"react-github-btn": "^1.4.0",
87-
"styled-components": "6.2.0",
87+
"styled-components": "6.3.5",
8888
"unist-util-visit": "^5.0.0"
8989
},
9090
"browserslist": {

sources/academy/build-and-publish/how-to-build/how_to_create_a_great_input_schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ The version above was the improved input schema. Here's what this tool's input s
165165

166166
- _User feedback_. If they're asking obvious things, complaining, or consistently making silly mistakes with input, take notes. Feedback from users can help you understand their experience and identify areas for improvement.
167167
- _High churn rates_. If your users are trying your tool but quickly abandon it, this is a sign they are having difficulties with your schema.
168-
- _Input Schema Viewer_. Write your base schema in any code editor, then copy the file and put it into [**Input Schema Viewer](https://console.apify.com/actors/UHTe5Bcb4OUEkeahZ/source).** This tool should help you visualize your Input Schema before you add it to your Actor and build it. Seeing how your edits look in Apify Console right away will make the process of editing the fields in code easier.
168+
<!-- - _Input Schema Viewer_. Write your base schema in any code editor, then copy the file and put it into [**Input Schema Viewer](https://console.apify.com/actors/UHTe5Bcb4OUEkeahZ/source).** This tool should help you visualize your Input Schema before you add it to your Actor and build it. Seeing how your edits look in Apify Console right away will make the process of editing the fields in code easier. -->
169169

170170
## Resources
171171

0 commit comments

Comments
 (0)