apify-cli 0.21.1 → 0.21.2-beta.0
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/CHANGELOG.md +10 -0
- package/README.md +85 -62
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/actor/charge.d.ts +23 -0
- package/dist/commands/actor/charge.d.ts.map +1 -0
- package/dist/commands/actor/charge.js +82 -0
- package/dist/commands/actor/charge.js.map +1 -0
- package/dist/lib/actor.d.ts +5 -0
- package/dist/lib/actor.d.ts.map +1 -1
- package/dist/lib/actor.js +16 -9
- package/dist/lib/actor.js.map +1 -1
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +52 -1
- package/package.json +6 -5
package/oclif.manifest.json
CHANGED
|
@@ -586,6 +586,57 @@
|
|
|
586
586
|
"validate-schema.js"
|
|
587
587
|
]
|
|
588
588
|
},
|
|
589
|
+
"actor:charge": {
|
|
590
|
+
"aliases": [],
|
|
591
|
+
"args": {
|
|
592
|
+
"eventName": {
|
|
593
|
+
"description": "Name of the event to charge for",
|
|
594
|
+
"name": "eventName",
|
|
595
|
+
"required": true
|
|
596
|
+
}
|
|
597
|
+
},
|
|
598
|
+
"description": "Charge for a specific event in the pay-per-event Actor run.",
|
|
599
|
+
"flags": {
|
|
600
|
+
"count": {
|
|
601
|
+
"description": "Number of events to charge",
|
|
602
|
+
"name": "count",
|
|
603
|
+
"required": false,
|
|
604
|
+
"default": 1,
|
|
605
|
+
"hasDynamicHelp": false,
|
|
606
|
+
"multiple": false,
|
|
607
|
+
"type": "option"
|
|
608
|
+
},
|
|
609
|
+
"idempotency-key": {
|
|
610
|
+
"description": "Idempotency key for the charge request",
|
|
611
|
+
"name": "idempotency-key",
|
|
612
|
+
"required": false,
|
|
613
|
+
"hasDynamicHelp": false,
|
|
614
|
+
"multiple": false,
|
|
615
|
+
"type": "option"
|
|
616
|
+
},
|
|
617
|
+
"test-pay-per-event": {
|
|
618
|
+
"description": "Test pay-per-event charging without actually charging",
|
|
619
|
+
"name": "test-pay-per-event",
|
|
620
|
+
"required": false,
|
|
621
|
+
"allowNo": false,
|
|
622
|
+
"type": "boolean"
|
|
623
|
+
}
|
|
624
|
+
},
|
|
625
|
+
"hasDynamicHelp": false,
|
|
626
|
+
"hiddenAliases": [],
|
|
627
|
+
"id": "actor:charge",
|
|
628
|
+
"pluginAlias": "apify-cli",
|
|
629
|
+
"pluginName": "apify-cli",
|
|
630
|
+
"pluginType": "core",
|
|
631
|
+
"strict": true,
|
|
632
|
+
"isESM": true,
|
|
633
|
+
"relativePath": [
|
|
634
|
+
"dist",
|
|
635
|
+
"commands",
|
|
636
|
+
"actor",
|
|
637
|
+
"charge.js"
|
|
638
|
+
]
|
|
639
|
+
},
|
|
589
640
|
"actor:get-input": {
|
|
590
641
|
"aliases": [],
|
|
591
642
|
"args": {},
|
|
@@ -2580,5 +2631,5 @@
|
|
|
2580
2631
|
]
|
|
2581
2632
|
}
|
|
2582
2633
|
},
|
|
2583
|
-
"version": "0.21.
|
|
2634
|
+
"version": "0.21.2-beta.0"
|
|
2584
2635
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.2-beta.0",
|
|
4
4
|
"description": "Apify command-line interface (CLI) helps you manage the Apify cloud platform and develop, build, and deploy Apify Actors.",
|
|
5
5
|
"exports": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"build": "yarn clean && tsc && tsc -p tsconfig.typechecking.json",
|
|
19
19
|
"postpack": "rimraf oclif.manifest.json",
|
|
20
20
|
"prepack": "yarn build && oclif manifest && oclif readme && yarn update-docs",
|
|
21
|
-
"update-docs": "
|
|
21
|
+
"update-docs": "tsx scripts/generate-reference.ts",
|
|
22
22
|
"postinstallDev": "yarn build && node ./bin/run.js check-version && node ./dist/lib/community.js"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"escape-string-regexp": "~5.0.0",
|
|
84
84
|
"express": "~4.21.0",
|
|
85
85
|
"fs-extra": "^11.2.0",
|
|
86
|
-
"globby": "~14.0
|
|
86
|
+
"globby": "~14.1.0",
|
|
87
87
|
"handlebars": "~4.7.8",
|
|
88
88
|
"inquirer": "~12.4.0",
|
|
89
89
|
"is-ci": "~4.1.0",
|
|
@@ -133,8 +133,9 @@
|
|
|
133
133
|
"cross-env": "^7.0.3",
|
|
134
134
|
"eslint": "^8.57.0",
|
|
135
135
|
"eslint-config-prettier": "^10.0.0",
|
|
136
|
-
"execa": "^9.
|
|
136
|
+
"execa": "^9.5.2",
|
|
137
137
|
"lint-staged": "^15.2.8",
|
|
138
|
+
"mdast-util-from-markdown": "^2.0.2",
|
|
138
139
|
"mock-stdin": "^1.0.0",
|
|
139
140
|
"oclif": "^4.14.15",
|
|
140
141
|
"prettier": "^3.3.3",
|
|
@@ -167,7 +168,7 @@
|
|
|
167
168
|
"topicSeparator": " "
|
|
168
169
|
},
|
|
169
170
|
"volta": {
|
|
170
|
-
"node": "22.
|
|
171
|
+
"node": "22.14.0",
|
|
171
172
|
"yarn": "4.6.0"
|
|
172
173
|
},
|
|
173
174
|
"packageManager": "yarn@4.6.0",
|