Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/apify_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ export class ApifyClient {
* Use this to search and retrieve information about public Actors.
*
* @returns A client for the Apify Store
* @see https://docs.apify.com/api/v2/store-get
* @see https://docs.apify.com/api/v2/store-actors-get
*/
store(): StoreCollectionClient {
return new StoreCollectionClient(this._options());
Expand Down
2 changes: 1 addition & 1 deletion src/resource_clients/actor_env_var.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import type { ActorEnvironmentVariable } from './actor_version';
* await envVarClient.update({ value: 'new-value' });
* ```
*
* @see https://docs.apify.com/platform/actors/development/programming-interface/environment-variables
* @see https://docs.apify.com/platform/actors/development/actor-definition/environment-variables
*/
export class ActorEnvVarClient extends ResourceClient {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/resource_clients/actor_env_var_collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import type { ActorEnvironmentVariable } from './actor_version';
* });
* ```
*
* @see https://docs.apify.com/platform/actors/development/programming-interface/environment-variables
* @see https://docs.apify.com/platform/actors/development/actor-definition/environment-variables
*/
export class ActorEnvVarCollectionClient extends ResourceCollectionClient {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/resource_clients/actor_version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { ActorEnvVarCollectionClient } from './actor_env_var_collection';
* await versionClient.update({ buildTag: 'latest' });
* ```
*
* @see https://docs.apify.com/api/v2/act-versions-get
* @see https://docs.apify.com/platform/actors/development/actor-definition/versions
*/
export class ActorVersionClient extends ResourceClient {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/resource_clients/actor_version_collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import type { ActorVersion, FinalActorVersion } from './actor_version';
* });
* ```
*
* @see https://docs.apify.com/api/v2/act-versions-get
* @see https://docs.apify.com/platform/actors/development/actor-definition/versions
*/
export class ActorVersionCollectionClient extends ResourceCollectionClient {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/resource_clients/store_collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class StoreCollectionClient extends ResourceCollectionClient {
*
* @param options - Search and pagination options.
* @returns A paginated iterator of store Actors.
* @see https://docs.apify.com/api/v2/store-get
* @see https://docs.apify.com/api/v2/store-actors-get
*/
list(options: StoreCollectionListOptions = {}): PaginatedIterator<ActorStoreList> {
ow(
Expand Down
6 changes: 3 additions & 3 deletions src/resource_clients/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class UserClient extends ResourceClient {
* Retrieves the user's monthly usage data.
*
* @returns The monthly usage object, or `undefined` if it does not exist.
* @see https://docs.apify.com/api/v2/users-me-usage-monthly-get
* @see https://docs.apify.com/api/v2/user-usage-monthly-get
*/
async monthlyUsage(): Promise<MonthlyUsage | undefined> {
const requestOpts: ApifyRequestConfig = {
Expand Down Expand Up @@ -84,7 +84,7 @@ export class UserClient extends ResourceClient {
* Retrieves the user's account and usage limits.
*
* @returns The account and usage limits object, or `undefined` if it does not exist.
* @see https://docs.apify.com/api/v2/users-me-limits-get
* @see https://docs.apify.com/api/v2/user-limits-get
*/
async limits(): Promise<AccountAndUsageLimits | undefined> {
const requestOpts: ApifyRequestConfig = {
Expand All @@ -106,7 +106,7 @@ export class UserClient extends ResourceClient {
* Updates the user's account and usage limits.
*
* @param options - The new limits to set.
* @see https://docs.apify.com/api/v2/users-me-limits-put
* @see https://docs.apify.com/api/v2/user-limits-put
*/
async updateLimits(options: LimitsUpdateOptions): Promise<void> {
const requestOpts: ApifyRequestConfig = {
Expand Down
Loading