-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into readme-consolidation
- Loading branch information
Showing
273 changed files
with
18,019 additions
and
19,051 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,90 @@ | ||
apify(?=-\w+) | ||
Apify(?=-\w+) | ||
@apify\.com | ||
\bApify\b | ||
Actor(s)? | ||
SDK(s) | ||
[Ss]torages | ||
Crawlee | ||
[Aa]utoscaling | ||
CU | ||
|
||
booleans | ||
Docusaurus | ||
env | ||
npm | ||
serverless | ||
[Bb]oolean | ||
node_modules | ||
[Rr]egex | ||
[Mm]onorepo | ||
[Gg]ist | ||
SDK | ||
Dockerfile | ||
Docker's | ||
|
||
Docusaurus | ||
navbar | ||
nginx | ||
npm | ||
camelCase | ||
|
||
:::caution | ||
:::note | ||
:::info | ||
:::tip | ||
:::warning | ||
|
||
maxWidth | ||
startUrls | ||
|
||
PDFs | ||
dataset's | ||
gif | ||
Gzip | ||
|
||
API's | ||
APIs | ||
webhook's | ||
idempotency | ||
backoff | ||
|
||
Authy | ||
reCaptcha | ||
OAuth | ||
untrusted | ||
unencrypted | ||
proxied | ||
|
||
LLM | ||
embedder | ||
chatbot | ||
[Ll]angchain | ||
|
||
[Kk]eboola | ||
[Aa]irbyte | ||
[Qq]drant | ||
[Pp]inecone | ||
[Mm]ilvus | ||
[Zz]illiz | ||
llama_index | ||
[Ff]lowise | ||
|
||
exploitability | ||
[Ww]hitepaper | ||
[Cc]ron | ||
scalably | ||
metamorph | ||
hostname | ||
IPs | ||
unscoped | ||
multistep | ||
[Aa]utogenerated | ||
preconfigured | ||
[Dd]atacenter | ||
|
||
[Ww]ikipedia | ||
[Zz]apier | ||
[Tt]rello | ||
[Pp]refill | ||
|
||
|
||
[Mm]ultiselect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,4 @@ jobs: | |
fail_on_error: true | ||
vale_flags: '--minAlertLevel=error' | ||
reporter: github-pr-annotations | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,4 @@ tsconfig.tsbuildinfo | |
sources/api/* | ||
!sources/api/sidebars.js | ||
apify-api.yaml | ||
apify-docs-theme/package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
StylesPath = .github/styles | ||
MinAlertLevel = warning | ||
IgnoredScopes = code, tt, table, tr, td | ||
|
||
Vocab = Docs | ||
|
||
Packages = write-good, Microsoft | ||
|
||
[formats] | ||
mdx = md | ||
|
||
[*.md] | ||
BasedOnStyles = Vale, Apify, write-good, Microsoft | ||
# Ignore URLs, HTML/XML tags starting with capital letter, lines containing = sign, http & https URL ending with ] or ) & email addresses | ||
TokenIgnores = (<\/?[A-Z].+>), ([^\n]+=[^\n]*), (\[[^\]]+\]\([^\)]+\)), ([^\n]+@[^\n]+\.[^\n]), ({[^}]*}), (`[^`]*`), (`\w+`) | ||
Vale.Spelling = YES | ||
|
||
|
||
# Disabling rules (NO) | ||
Microsoft.Contractions = NO | ||
Microsoft.Foreign = NO | ||
Microsoft.We = NO | ||
Microsoft.Quotes = NO | ||
Microsoft.ThereIs = NO | ||
Microsoft.Auto = NO | ||
Microsoft.URLFormat = NO | ||
Microsoft.GeneralURL = NO | ||
Microsoft.RangeFormat = NO |
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
apify-api/openapi/code_samples/javascript/act_builds_get.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const { items } = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.builds() | ||
.list(); | ||
|
||
console.log(items); | ||
10 changes: 10 additions & 0 deletions
10
apify-api/openapi/code_samples/javascript/act_builds_post.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const build = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.build('0.0'); | ||
|
||
console.log(build); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
await apifyClient.actor('<ACTOR ID>').delete(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const actor = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.get(); | ||
|
||
console.log(actor); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const updatedActor = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.update({ | ||
title: 'New title', | ||
}); | ||
|
||
console.log(updatedActor); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const { items } = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.runs() | ||
.list(); | ||
|
||
console.log(items); | ||
10 changes: 10 additions & 0 deletions
10
apify-api/openapi/code_samples/javascript/act_runs_last_get.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const lastRun = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.lastRun(); | ||
|
||
console.log(lastRun); | ||
10 changes: 10 additions & 0 deletions
10
apify-api/openapi/code_samples/javascript/act_runs_post.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const run = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.start({ foo: 'bar' }); | ||
|
||
console.log(run); | ||
9 changes: 9 additions & 0 deletions
9
apify-api/openapi/code_samples/javascript/act_version_delete.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
await apifyClient | ||
.actor('<ACTOR ID>') | ||
.version('0.1') | ||
.delete(); |
10 changes: 10 additions & 0 deletions
10
apify-api/openapi/code_samples/javascript/act_version_envVar_delete.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
await apifyClient | ||
.actor('<ACTOR ID>') | ||
.version('0.1') | ||
.envVar('MY_ENV_VAR') | ||
.delete(); |
12 changes: 12 additions & 0 deletions
12
apify-api/openapi/code_samples/javascript/act_version_envVar_get.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const envVar = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.version('0.1') | ||
.envVar('MY_ENV_VAR') | ||
.get(); | ||
|
||
console.log(envVar); | ||
15 changes: 15 additions & 0 deletions
15
apify-api/openapi/code_samples/javascript/act_version_envVar_put.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const updatedEnvVar = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.version('0.1') | ||
.envVar('MY_ENV_VAR') | ||
.update({ | ||
name: 'MY_ENV_VAR', | ||
value: 'my-new-value', | ||
}); | ||
|
||
console.log(updatedEnvVar); | ||
12 changes: 12 additions & 0 deletions
12
apify-api/openapi/code_samples/javascript/act_version_envVars_get.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const { items } = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.version('0.1') | ||
.envVars() | ||
.list(); | ||
|
||
console.log(items); | ||
16 changes: 16 additions & 0 deletions
16
apify-api/openapi/code_samples/javascript/act_version_envVars_post.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const envVar = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.version('0.1') | ||
.envVars() | ||
.create({ | ||
name: 'MY_ENV_VAR', | ||
value: 'my-new-value', | ||
isSecret: true, | ||
}); | ||
|
||
console.log(envVar); |
11 changes: 11 additions & 0 deletions
11
apify-api/openapi/code_samples/javascript/act_version_get.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const version = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.version('0.1') | ||
.get(); | ||
|
||
console.log(version); |
13 changes: 13 additions & 0 deletions
13
apify-api/openapi/code_samples/javascript/act_version_put.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const updatedVersion = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.version('0.1') | ||
.update({ | ||
buildTag: 'latest', | ||
}); | ||
|
||
console.log(updatedVersion); |
11 changes: 11 additions & 0 deletions
11
apify-api/openapi/code_samples/javascript/act_versions_get.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const { items } = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.versions() | ||
.list(); | ||
|
||
console.log(items); |
15 changes: 15 additions & 0 deletions
15
apify-api/openapi/code_samples/javascript/act_versions_post.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { ApifyClient } from 'apify-client'; | ||
|
||
const apifyClient = new ApifyClient({ | ||
token: '<TOKEN>', | ||
}); | ||
const version = await apifyClient | ||
.actor('<ACTOR ID>') | ||
.versions() | ||
.create({ | ||
versionNumber: '0.1', | ||
sourceType: 'GIT_REPO', | ||
gitRepoUrl: 'https://github.com/my/repo', | ||
}); | ||
|
||
console.log(version); |
Oops, something went wrong.