File tree Expand file tree Collapse file tree 7 files changed +26
-7
lines changed Expand file tree Collapse file tree 7 files changed +26
-7
lines changed Original file line number Diff line number Diff line change 59
59
"build:browser" : " webpack"
60
60
},
61
61
"dependencies" : {
62
- "@apify/consts" : " ^2.25 .0" ,
62
+ "@apify/consts" : " ^2.40 .0" ,
63
63
"@apify/log" : " ^2.2.6" ,
64
64
"@crawlee/types" : " ^3.3.0" ,
65
65
"agentkeepalive" : " ^4.2.1" ,
Original file line number Diff line number Diff line change 1
1
import type { AxiosRequestConfig } from 'axios' ;
2
2
import ow from 'ow' ;
3
3
4
+ import type { RUN_GENERAL_ACCESS } from '@apify/consts' ;
4
5
import { ACT_JOB_STATUSES , META_ORIGINS } from '@apify/consts' ;
5
6
6
7
import type { ActorVersion } from './actor_version' ;
@@ -386,6 +387,7 @@ export interface ActorRun extends ActorRunListItem {
386
387
usageUsd ?: ActorRunUsage ;
387
388
pricingInfo ?: ActorRunPricingInfo ;
388
389
chargedEventCounts ?: Record < string , number > ;
390
+ generalAccess ?: RUN_GENERAL_ACCESS | null ,
389
391
}
390
392
391
393
export interface ActorRunUsage {
Original file line number Diff line number Diff line change 1
1
import ow from 'ow' ;
2
2
3
+ import type { STORAGE_GENERAL_ACCESS } from '@apify/consts' ;
4
+
3
5
import type { ApifyApiError } from '../apify_api_error' ;
4
6
import type { ApiClientSubResourceOptions } from '../base/api_client' ;
5
7
import { ResourceClient } from '../base/resource_client' ;
@@ -177,6 +179,7 @@ export interface Dataset {
177
179
actRunId ?: string ;
178
180
stats : DatasetStats ;
179
181
fields : string [ ] ;
182
+ generalAccess ?: STORAGE_GENERAL_ACCESS | null ,
180
183
}
181
184
182
185
export interface DatasetStats {
@@ -189,6 +192,7 @@ export interface DatasetStats {
189
192
export interface DatasetClientUpdateOptions {
190
193
name ?: string | null ;
191
194
title ?: string ;
195
+ generalAccess ?: STORAGE_GENERAL_ACCESS | null ,
192
196
}
193
197
194
198
export interface DatasetClientListItemOptions {
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import type { Readable } from 'node:stream';
3
3
import ow from 'ow' ;
4
4
import type { JsonValue } from 'type-fest' ;
5
5
6
+ import type { STORAGE_GENERAL_ACCESS } from '@apify/consts' ;
6
7
import log from '@apify/log' ;
7
8
8
9
import type { ApifyApiError } from '../apify_api_error' ;
@@ -226,6 +227,7 @@ export interface KeyValueStore {
226
227
actId ?: string ;
227
228
actRunId ?: string ;
228
229
stats ?: KeyValueStoreStats ;
230
+ generalAccess ?: STORAGE_GENERAL_ACCESS | null ,
229
231
}
230
232
231
233
export interface KeyValueStoreStats {
@@ -239,6 +241,7 @@ export interface KeyValueStoreStats {
239
241
export interface KeyValueClientUpdateOptions {
240
242
name ?: string | null ;
241
243
title ?: string ;
244
+ generalAccess ?: STORAGE_GENERAL_ACCESS | null ,
242
245
}
243
246
244
247
export interface KeyValueClientListKeysOptions {
Original file line number Diff line number Diff line change 1
1
import ow from 'ow' ;
2
2
import type { JsonObject } from 'type-fest' ;
3
3
4
- import { MAX_PAYLOAD_SIZE_BYTES , REQUEST_QUEUE_MAX_REQUESTS_PER_BATCH_OPERATION } from '@apify/consts' ;
4
+ import type {
5
+ STORAGE_GENERAL_ACCESS
6
+ } from '@apify/consts' ;
7
+ import {
8
+ MAX_PAYLOAD_SIZE_BYTES ,
9
+ REQUEST_QUEUE_MAX_REQUESTS_PER_BATCH_OPERATION
10
+ } from '@apify/consts' ;
5
11
import log from '@apify/log' ;
6
12
7
13
import type { ApifyApiError } from '../apify_api_error' ;
@@ -487,6 +493,7 @@ export interface RequestQueue {
487
493
actRunId ?: string ;
488
494
hadMultipleClients : boolean ;
489
495
stats : RequestQueueStats ;
496
+ generalAccess ?: STORAGE_GENERAL_ACCESS | null ,
490
497
}
491
498
492
499
export interface RequestQueueStats {
@@ -500,6 +507,7 @@ export interface RequestQueueStats {
500
507
export interface RequestQueueClientUpdateOptions {
501
508
name ?: string | null ;
502
509
title ?: string ;
510
+ generalAccess ?: STORAGE_GENERAL_ACCESS | null ,
503
511
}
504
512
505
513
export interface RequestQueueClientListHeadOptions {
Original file line number Diff line number Diff line change 1
1
import type { AxiosRequestConfig } from 'axios' ;
2
2
import ow from 'ow' ;
3
3
4
+ import type { RUN_GENERAL_ACCESS } from '@apify/consts' ;
5
+
4
6
import type { ActorRun } from './actor' ;
5
7
import { DatasetClient } from './dataset' ;
6
8
import { KeyValueStoreClient } from './key_value_store' ;
@@ -257,6 +259,7 @@ export interface RunMetamorphOptions {
257
259
export interface RunUpdateOptions {
258
260
statusMessage ?: string ;
259
261
isStatusMessageTerminal ?: boolean ;
262
+ generalAccess ?: RUN_GENERAL_ACCESS | null ,
260
263
}
261
264
262
265
export interface RunResurrectOptions {
You can’t perform that action at this time.
0 commit comments