apify-client 2.12.6-beta.0 → 2.12.6-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.js +19 -3
- package/dist/bundle.js.map +1 -1
- package/package.json +1 -1
package/dist/bundle.js
CHANGED
|
@@ -27588,7 +27588,7 @@ function isStream(value) {
|
|
|
27588
27588
|
function getVersionData() {
|
|
27589
27589
|
if (true) {
|
|
27590
27590
|
return {
|
|
27591
|
-
version: "2.12.6-beta.
|
|
27591
|
+
version: "2.12.6-beta.1"
|
|
27592
27592
|
};
|
|
27593
27593
|
}
|
|
27594
27594
|
// eslint-disable-next-line
|
|
@@ -27688,6 +27688,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
27688
27688
|
ACTOR_JOB_TYPES: () => (ACTOR_JOB_TYPES),
|
|
27689
27689
|
ACTOR_LIMITS: () => (ACTOR_LIMITS),
|
|
27690
27690
|
ACTOR_NAME: () => (ACTOR_NAME),
|
|
27691
|
+
ACTOR_PERMISSION_LEVEL: () => (ACTOR_PERMISSION_LEVEL),
|
|
27691
27692
|
ACTOR_RESTART_ON_ERROR: () => (ACTOR_RESTART_ON_ERROR),
|
|
27692
27693
|
ACTOR_SOURCE_TYPES: () => (ACTOR_SOURCE_TYPES),
|
|
27693
27694
|
ACTOR_TYPES: () => (ACTOR_TYPES),
|
|
@@ -28262,6 +28263,21 @@ var RUN_GENERAL_ACCESS = {
|
|
|
28262
28263
|
/** Anyone with a link, or the unique run ID, can read the run. */
|
|
28263
28264
|
ANYONE_WITH_ID_CAN_READ: "ANYONE_WITH_ID_CAN_READ"
|
|
28264
28265
|
};
|
|
28266
|
+
var ACTOR_PERMISSION_LEVEL = {
|
|
28267
|
+
/** Full permission Actors have access to all user data in the account. */
|
|
28268
|
+
FULL_PERMISSIONS: "FULL_PERMISSIONS",
|
|
28269
|
+
/**
|
|
28270
|
+
* Limited permission Actors have access only to specific resources:
|
|
28271
|
+
* - default storages
|
|
28272
|
+
* - storages provided via input
|
|
28273
|
+
* - the current run
|
|
28274
|
+
* - ...
|
|
28275
|
+
*
|
|
28276
|
+
* Broadly speaking, limited permission Actors cannot access any account data not related to the current run.
|
|
28277
|
+
* For details refer to the Apify documentation.
|
|
28278
|
+
*/
|
|
28279
|
+
LIMITED_PERMISSIONS: "LIMITED_PERMISSIONS"
|
|
28280
|
+
};
|
|
28265
28281
|
|
|
28266
28282
|
//# sourceMappingURL=index.mjs.map
|
|
28267
28283
|
|
|
@@ -33306,7 +33322,7 @@ const isIterable = (thing) => thing != null && isFunction(thing[iterator]);
|
|
|
33306
33322
|
}),
|
|
33307
33323
|
"./package.json": (function (module) {
|
|
33308
33324
|
"use strict";
|
|
33309
|
-
module.exports = JSON.parse('{"name":"apify-client","version":"2.12.6-beta.
|
|
33325
|
+
module.exports = JSON.parse('{"name":"apify-client","version":"2.12.6-beta.1","description":"Apify API client for JavaScript","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","browser":"dist/bundle.js","unpkg":"dist/bundle.js","exports":{"./package.json":"./package.json",".":{"import":"./dist/index.mjs","require":"./dist/index.js","types":"./dist/index.d.ts","browser":"./dist/bundle.js"}},"keywords":["apify","api","apifier","crawler","scraper"],"author":{"name":"Apify","email":"support@apify.com","url":"https://apify.com"},"contributors":["Jan Curn <jan@apify.com>","Marek Trunkát <marek@apify.com>","Ondra Urban <ondra@apify.com>","Jakub Drobník <jakub.drobnik@apify.com>"],"license":"Apache-2.0","repository":{"type":"git","url":"git+https://github.com/apify/apify-client-js"},"bugs":{"url":"https://github.com/apify/apify-client-js/issues"},"homepage":"https://docs.apify.com/api/client/js/","files":["dist","!dist/*.tsbuildinfo"],"scripts":{"build":"npm run clean && npm run build:node && npm run build:browser","postbuild":"gen-esm-wrapper dist/index.js dist/index.mjs","prepublishOnly":"(test $CI || (echo \\"Publishing is reserved to CI!\\"; exit 1))","clean":"rimraf dist","test":"npm run build && jest","lint":"eslint","lint:fix":"eslint --fix","tsc-check-tests":"tsc --noEmit --project test/tsconfig.json","format":"prettier --write .","format:check":"prettier --check .","build:node":"tsc","build:browser":"rsbuild build"},"dependencies":{"@apify/consts":"^2.25.0","@apify/log":"^2.2.6","@crawlee/types":"^3.3.0","agentkeepalive":"^4.2.1","async-retry":"^1.3.3","axios":"^1.6.7","content-type":"^1.0.5","ow":"^0.28.2","tslib":"^2.5.0","type-fest":"^4.0.0"},"devDependencies":{"@apify/eslint-config":"^1.0.0","@apify/tsconfig":"^0.1.1","@babel/cli":"^7.21.0","@babel/core":"^7.21.0","@babel/preset-env":"^7.20.2","@babel/register":"^7.21.0","@crawlee/puppeteer":"^3.2.2","@rsbuild/core":"^1.3.6","@rsbuild/plugin-node-polyfill":"^1.3.0","@stylistic/eslint-plugin-ts":"^4.2.0","@types/async-retry":"^1.4.5","@types/content-type":"^1.1.5","@types/express":"^4.17.17","@types/fs-extra":"^11.0.1","@types/jest":"^29.4.0","@types/node":"^22.0.0","ajv":"^8.17.1","babel-loader":"^10.0.0","body-parser":"^1.20.3","compression":"^1.7.4","eslint":"^9.24.0","eslint-config-prettier":"^10.1.2","express":"^4.21.1","fs-extra":"^11.1.0","gen-esm-wrapper":"^1.1.2","globals":"^16.0.0","jest":"^29.4.3","prettier":"^3.5.3","process":"^0.11.10","puppeteer":"^24.0.0","rimraf":"^6.0.0","source-map-support":"^0.5.21","ts-jest":"^29.0.5","ts-loader":"^9.4.2","ts-node":"^10.9.1","typescript":"^5.8.3","typescript-eslint":"^8.29.1"},"packageManager":"npm@10.9.2"}')
|
|
33310
33326
|
|
|
33311
33327
|
}),
|
|
33312
33328
|
|
|
@@ -33400,7 +33416,7 @@ __webpack_require__.hu = (chunkId) => ('' + chunkId + '.' + __webpack_require__.
|
|
|
33400
33416
|
})();
|
|
33401
33417
|
// webpack/runtime/get_full_hash
|
|
33402
33418
|
(() => {
|
|
33403
|
-
__webpack_require__.h = () => ("
|
|
33419
|
+
__webpack_require__.h = () => ("97374da864cb0304")
|
|
33404
33420
|
})();
|
|
33405
33421
|
// webpack/runtime/get_main_filename/update manifest
|
|
33406
33422
|
(() => {
|