apify-cli 0.21.0-beta.21 → 0.21.0-beta.22

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.
Files changed (3) hide show
  1. package/README.md +41 -41
  2. package/oclif.manifest.json +134 -134
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -337,7 +337,7 @@ DESCRIPTION
337
337
  Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
338
338
  ```
339
339
 
340
- _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/actor/index.ts)_
340
+ _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/actor/index.ts)_
341
341
 
342
342
  ## `apify actor get-input`
343
343
 
@@ -351,7 +351,7 @@ DESCRIPTION
351
351
  Gets the Actor input value from the default key-value store associated with the Actor run.
352
352
  ```
353
353
 
354
- _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/actor/get-input.ts)_
354
+ _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/actor/get-input.ts)_
355
355
 
356
356
  ## `apify actor get-value KEY`
357
357
 
@@ -368,7 +368,7 @@ DESCRIPTION
368
368
  Gets a value from the default key-value store associated with the Actor run.
369
369
  ```
370
370
 
371
- _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/actor/get-value.ts)_
371
+ _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/actor/get-value.ts)_
372
372
 
373
373
  ## `apify actor push-data [ITEM]`
374
374
 
@@ -390,7 +390,7 @@ DESCRIPTION
390
390
  $ cat ./test.json | apify actor push-data
391
391
  ```
392
392
 
393
- _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/actor/push-data.ts)_
393
+ _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/actor/push-data.ts)_
394
394
 
395
395
  ## `apify actor set-value KEY [VALUE]`
396
396
 
@@ -419,7 +419,7 @@ DESCRIPTION
419
419
  $ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
420
420
  ```
421
421
 
422
- _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/actor/set-value.ts)_
422
+ _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/actor/set-value.ts)_
423
423
 
424
424
  ## `apify actors`
425
425
 
@@ -433,7 +433,7 @@ DESCRIPTION
433
433
  Commands are designed to be used with Actors.
434
434
  ```
435
435
 
436
- _See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/actors/index.ts)_
436
+ _See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/actors/index.ts)_
437
437
 
438
438
  ## `apify actors build [ACTORID]`
439
439
 
@@ -460,7 +460,7 @@ DESCRIPTION
460
460
  Creates a new build of the Actor.
461
461
  ```
462
462
 
463
- _See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/actors/build.ts)_
463
+ _See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/actors/build.ts)_
464
464
 
465
465
  ## `apify actors call [ACTORID]`
466
466
 
@@ -494,7 +494,7 @@ DESCRIPTION
494
494
  takes input for the Actor from the default local key-value store by default.
495
495
  ```
496
496
 
497
- _See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/actors/call.ts)_
497
+ _See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/actors/call.ts)_
498
498
 
499
499
  ## `apify actors pull [ACTORID]`
500
500
 
@@ -517,7 +517,7 @@ DESCRIPTION
517
517
  cloned. If it is defined as Web IDE, it will fetch the files.
518
518
  ```
519
519
 
520
- _See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/actors/pull.ts)_
520
+ _See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/actors/pull.ts)_
521
521
 
522
522
  ## `apify actors rm ACTORID`
523
523
 
@@ -534,7 +534,7 @@ DESCRIPTION
534
534
  Deletes an Actor.
535
535
  ```
536
536
 
537
- _See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/actors/rm.ts)_
537
+ _See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/actors/rm.ts)_
538
538
 
539
539
  ## `apify builds`
540
540
 
@@ -548,7 +548,7 @@ DESCRIPTION
548
548
  Commands are designed to be used with Actor Builds.
549
549
  ```
550
550
 
551
- _See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/builds/index.ts)_
551
+ _See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/builds/index.ts)_
552
552
 
553
553
  ## `apify builds create [ACTORID]`
554
554
 
@@ -575,7 +575,7 @@ DESCRIPTION
575
575
  Creates a new build of the Actor.
576
576
  ```
577
577
 
578
- _See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/builds/create.ts)_
578
+ _See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/builds/create.ts)_
579
579
 
580
580
  ## `apify builds info BUILDID`
581
581
 
@@ -595,7 +595,7 @@ DESCRIPTION
595
595
  Prints information about a specific build.
596
596
  ```
597
597
 
598
- _See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/builds/info.ts)_
598
+ _See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/builds/info.ts)_
599
599
 
600
600
  ## `apify builds log BUILDID`
601
601
 
@@ -612,7 +612,7 @@ DESCRIPTION
612
612
  Prints the log of a specific build.
613
613
  ```
614
614
 
615
- _See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/builds/log.ts)_
615
+ _See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/builds/log.ts)_
616
616
 
617
617
  ## `apify builds ls [ACTORID]`
618
618
 
@@ -638,7 +638,7 @@ DESCRIPTION
638
638
  Lists all builds of the Actor.
639
639
  ```
640
640
 
641
- _See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/builds/ls.ts)_
641
+ _See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/builds/ls.ts)_
642
642
 
643
643
  ## `apify builds rm BUILDID`
644
644
 
@@ -655,7 +655,7 @@ DESCRIPTION
655
655
  Deletes an Actor Build.
656
656
  ```
657
657
 
658
- _See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/builds/rm.ts)_
658
+ _See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/builds/rm.ts)_
659
659
 
660
660
  ## `apify call [ACTORID]`
661
661
 
@@ -689,7 +689,7 @@ DESCRIPTION
689
689
  takes input for the Actor from the default local key-value store by default.
690
690
  ```
691
691
 
692
- _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/call.ts)_
692
+ _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/call.ts)_
693
693
 
694
694
  ## `apify create [ACTORNAME]`
695
695
 
@@ -714,7 +714,7 @@ DESCRIPTION
714
714
  Creates a new Actor project directory from a selected boilerplate template.
715
715
  ```
716
716
 
717
- _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/create.ts)_
717
+ _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/create.ts)_
718
718
 
719
719
  ## `apify datasets`
720
720
 
@@ -728,7 +728,7 @@ DESCRIPTION
728
728
  Commands are designed to be used with Datasets.
729
729
  ```
730
730
 
731
- _See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/datasets/index.ts)_
731
+ _See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/datasets/index.ts)_
732
732
 
733
733
  ## `apify help [COMMAND]`
734
734
 
@@ -763,7 +763,7 @@ DESCRIPTION
763
763
  The information is printed to the console.
764
764
  ```
765
765
 
766
- _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/info.ts)_
766
+ _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/info.ts)_
767
767
 
768
768
  ## `apify init [ACTORNAME]`
769
769
 
@@ -791,7 +791,7 @@ DESCRIPTION
791
791
  WARNING: The directory at "storage" will be overwritten if it already exists.
792
792
  ```
793
793
 
794
- _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/init.ts)_
794
+ _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/init.ts)_
795
795
 
796
796
  ## `apify key-value-stores`
797
797
 
@@ -805,7 +805,7 @@ DESCRIPTION
805
805
  Commands are designed to be used with Key Value Stores.
806
806
  ```
807
807
 
808
- _See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/key-value-stores/index.ts)_
808
+ _See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/key-value-stores/index.ts)_
809
809
 
810
810
  ## `apify login`
811
811
 
@@ -826,7 +826,7 @@ DESCRIPTION
826
826
  "apify" commands. To log out, call "apify logout".
827
827
  ```
828
828
 
829
- _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/login.ts)_
829
+ _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/login.ts)_
830
830
 
831
831
  ## `apify logout`
832
832
 
@@ -842,7 +842,7 @@ DESCRIPTION
842
842
  call "apify login".
843
843
  ```
844
844
 
845
- _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/logout.ts)_
845
+ _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/logout.ts)_
846
846
 
847
847
  ## `apify pull [ACTORID]`
848
848
 
@@ -865,7 +865,7 @@ DESCRIPTION
865
865
  cloned. If it is defined as Web IDE, it will fetch the files.
866
866
  ```
867
867
 
868
- _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/pull.ts)_
868
+ _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/pull.ts)_
869
869
 
870
870
  ## `apify push [ACTORID]`
871
871
 
@@ -903,7 +903,7 @@ DESCRIPTION
903
903
  overwritten with --force flag.
904
904
  ```
905
905
 
906
- _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/push.ts)_
906
+ _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/push.ts)_
907
907
 
908
908
  ## `apify request-queues`
909
909
 
@@ -917,7 +917,7 @@ DESCRIPTION
917
917
  Commands are designed to be used with Request Queues.
918
918
  ```
919
919
 
920
- _See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/request-queues/index.ts)_
920
+ _See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/request-queues/index.ts)_
921
921
 
922
922
  ## `apify run`
923
923
 
@@ -953,7 +953,7 @@ DESCRIPTION
953
953
  package.json file. You can set up your own main file or environment variables by changing it.
954
954
  ```
955
955
 
956
- _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/run.ts)_
956
+ _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/run.ts)_
957
957
 
958
958
  ## `apify runs`
959
959
 
@@ -967,7 +967,7 @@ DESCRIPTION
967
967
  Commands are designed to be used with Actor Runs.
968
968
  ```
969
969
 
970
- _See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/runs/index.ts)_
970
+ _See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/runs/index.ts)_
971
971
 
972
972
  ## `apify runs abort RUNID`
973
973
 
@@ -990,7 +990,7 @@ DESCRIPTION
990
990
  Aborts an Actor Run.
991
991
  ```
992
992
 
993
- _See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/runs/abort.ts)_
993
+ _See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/runs/abort.ts)_
994
994
 
995
995
  ## `apify runs info RUNID`
996
996
 
@@ -1013,7 +1013,7 @@ DESCRIPTION
1013
1013
  Prints information about an Actor Run.
1014
1014
  ```
1015
1015
 
1016
- _See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/runs/info.ts)_
1016
+ _See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/runs/info.ts)_
1017
1017
 
1018
1018
  ## `apify runs log RUNID`
1019
1019
 
@@ -1030,7 +1030,7 @@ DESCRIPTION
1030
1030
  Prints the log of a specific run.
1031
1031
  ```
1032
1032
 
1033
- _See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/runs/log.ts)_
1033
+ _See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/runs/log.ts)_
1034
1034
 
1035
1035
  ## `apify runs ls [ACTORID]`
1036
1036
 
@@ -1056,7 +1056,7 @@ DESCRIPTION
1056
1056
  Lists all runs of the Actor.
1057
1057
  ```
1058
1058
 
1059
- _See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/runs/ls.ts)_
1059
+ _See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/runs/ls.ts)_
1060
1060
 
1061
1061
  ## `apify runs resurrect RUNID`
1062
1062
 
@@ -1076,7 +1076,7 @@ DESCRIPTION
1076
1076
  Resurrects an aborted or finished Actor Run.
1077
1077
  ```
1078
1078
 
1079
- _See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/runs/resurrect.ts)_
1079
+ _See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/runs/resurrect.ts)_
1080
1080
 
1081
1081
  ## `apify runs rm RUNID`
1082
1082
 
@@ -1093,7 +1093,7 @@ DESCRIPTION
1093
1093
  Deletes an Actor Run.
1094
1094
  ```
1095
1095
 
1096
- _See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/runs/rm.ts)_
1096
+ _See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/runs/rm.ts)_
1097
1097
 
1098
1098
  ## `apify secrets`
1099
1099
 
@@ -1123,7 +1123,7 @@ DESCRIPTION
1123
1123
  of the Actor.
1124
1124
  ```
1125
1125
 
1126
- _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/secrets/index.ts)_
1126
+ _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/secrets/index.ts)_
1127
1127
 
1128
1128
  ## `apify secrets add NAME VALUE`
1129
1129
 
@@ -1142,7 +1142,7 @@ DESCRIPTION
1142
1142
  The secrets are stored to a file at ~/.apify
1143
1143
  ```
1144
1144
 
1145
- _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/secrets/add.ts)_
1145
+ _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/secrets/add.ts)_
1146
1146
 
1147
1147
  ## `apify secrets rm NAME`
1148
1148
 
@@ -1159,7 +1159,7 @@ DESCRIPTION
1159
1159
  Removes the secret.
1160
1160
  ```
1161
1161
 
1162
- _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/secrets/rm.ts)_
1162
+ _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/secrets/rm.ts)_
1163
1163
 
1164
1164
  ## `apify task`
1165
1165
 
@@ -1173,7 +1173,7 @@ DESCRIPTION
1173
1173
  Commands are designed to be used to interact with Tasks.
1174
1174
  ```
1175
1175
 
1176
- _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/task/index.ts)_
1176
+ _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/task/index.ts)_
1177
1177
 
1178
1178
  ## `apify task run TASKID`
1179
1179
 
@@ -1197,7 +1197,7 @@ DESCRIPTION
1197
1197
  takes input for the Actor from the default local key-value store by default.
1198
1198
  ```
1199
1199
 
1200
- _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/task/run.ts)_
1200
+ _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/task/run.ts)_
1201
1201
 
1202
1202
  ## `apify validate-schema [PATH]`
1203
1203
 
@@ -1222,6 +1222,6 @@ DESCRIPTION
1222
1222
  You can also pass any custom path to your input schema to have it validated instead.
1223
1223
  ```
1224
1224
 
1225
- _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.21/src/commands/validate-schema.ts)_
1225
+ _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.22/src/commands/validate-schema.ts)_
1226
1226
  <!-- commandsstop -->
1227
1227
  <!-- prettier-ignore-end -->
@@ -588,6 +588,139 @@
588
588
  "validate-schema.js"
589
589
  ]
590
590
  },
591
+ "actor:get-input": {
592
+ "aliases": [],
593
+ "args": {},
594
+ "description": "Gets the Actor input value from the default key-value store associated with the Actor run.",
595
+ "flags": {},
596
+ "hasDynamicHelp": false,
597
+ "hiddenAliases": [],
598
+ "id": "actor:get-input",
599
+ "pluginAlias": "apify-cli",
600
+ "pluginName": "apify-cli",
601
+ "pluginType": "core",
602
+ "strict": true,
603
+ "isESM": true,
604
+ "relativePath": [
605
+ "dist",
606
+ "commands",
607
+ "actor",
608
+ "get-input.js"
609
+ ]
610
+ },
611
+ "actor:get-value": {
612
+ "aliases": [],
613
+ "args": {
614
+ "key": {
615
+ "description": "Key of the record in key-value store",
616
+ "name": "key",
617
+ "required": true
618
+ }
619
+ },
620
+ "description": "Gets a value from the default key-value store associated with the Actor run.",
621
+ "flags": {},
622
+ "hasDynamicHelp": false,
623
+ "hiddenAliases": [],
624
+ "id": "actor:get-value",
625
+ "pluginAlias": "apify-cli",
626
+ "pluginName": "apify-cli",
627
+ "pluginType": "core",
628
+ "strict": true,
629
+ "isESM": true,
630
+ "relativePath": [
631
+ "dist",
632
+ "commands",
633
+ "actor",
634
+ "get-value.js"
635
+ ]
636
+ },
637
+ "actor": {
638
+ "aliases": [],
639
+ "args": {},
640
+ "description": "Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.\n",
641
+ "flags": {},
642
+ "hasDynamicHelp": false,
643
+ "hiddenAliases": [],
644
+ "id": "actor",
645
+ "pluginAlias": "apify-cli",
646
+ "pluginName": "apify-cli",
647
+ "pluginType": "core",
648
+ "strict": true,
649
+ "isESM": true,
650
+ "relativePath": [
651
+ "dist",
652
+ "commands",
653
+ "actor",
654
+ "index.js"
655
+ ]
656
+ },
657
+ "actor:push-data": {
658
+ "aliases": [],
659
+ "args": {
660
+ "item": {
661
+ "description": "JSON string with one object or array of objects containing data to be stored in the default dataset.",
662
+ "name": "item",
663
+ "required": false
664
+ }
665
+ },
666
+ "description": "Stores an object or an array of objects to the default dataset of the Actor run.\nIt is possible to pass data using item argument or stdin.\nPassing data using argument:\n$ apify actor push-data {\"foo\": \"bar\"}\nPassing data using stdin with pipe:\n$ cat ./test.json | apify actor push-data\n",
667
+ "flags": {},
668
+ "hasDynamicHelp": false,
669
+ "hiddenAliases": [],
670
+ "id": "actor:push-data",
671
+ "pluginAlias": "apify-cli",
672
+ "pluginName": "apify-cli",
673
+ "pluginType": "core",
674
+ "strict": true,
675
+ "isESM": true,
676
+ "relativePath": [
677
+ "dist",
678
+ "commands",
679
+ "actor",
680
+ "push-data.js"
681
+ ]
682
+ },
683
+ "actor:set-value": {
684
+ "aliases": [],
685
+ "args": {
686
+ "key": {
687
+ "description": "Key of the record in key-value store.",
688
+ "name": "key",
689
+ "required": true
690
+ },
691
+ "value": {
692
+ "description": "Record data, which can be one of the following values:\n- If empty, the record in the key-value store is deleted.\n- If no `contentType` flag is specified, value is expected to be any JSON string value.\n- If options.contentType is set, value is taken as is.",
693
+ "name": "value",
694
+ "required": false
695
+ }
696
+ },
697
+ "description": "Sets or removes record into the default KeyValueStore associated with the Actor run.\nIt is possible to pass data using argument or stdin.\nPassing data using argument:\n$ apify actor set-value KEY my-value\nPassing data using stdin with pipe:\n$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain\n",
698
+ "flags": {
699
+ "contentType": {
700
+ "char": "c",
701
+ "description": "Specifies a custom MIME content type of the record. By default \"application/json\" is used.",
702
+ "name": "contentType",
703
+ "required": false,
704
+ "hasDynamicHelp": false,
705
+ "multiple": false,
706
+ "type": "option"
707
+ }
708
+ },
709
+ "hasDynamicHelp": false,
710
+ "hiddenAliases": [],
711
+ "id": "actor:set-value",
712
+ "pluginAlias": "apify-cli",
713
+ "pluginName": "apify-cli",
714
+ "pluginType": "core",
715
+ "strict": true,
716
+ "isESM": true,
717
+ "relativePath": [
718
+ "dist",
719
+ "commands",
720
+ "actor",
721
+ "set-value.js"
722
+ ]
723
+ },
591
724
  "actors:build": {
592
725
  "aliases": [],
593
726
  "args": {
@@ -834,139 +967,6 @@
834
967
  "rm.js"
835
968
  ]
836
969
  },
837
- "actor:get-input": {
838
- "aliases": [],
839
- "args": {},
840
- "description": "Gets the Actor input value from the default key-value store associated with the Actor run.",
841
- "flags": {},
842
- "hasDynamicHelp": false,
843
- "hiddenAliases": [],
844
- "id": "actor:get-input",
845
- "pluginAlias": "apify-cli",
846
- "pluginName": "apify-cli",
847
- "pluginType": "core",
848
- "strict": true,
849
- "isESM": true,
850
- "relativePath": [
851
- "dist",
852
- "commands",
853
- "actor",
854
- "get-input.js"
855
- ]
856
- },
857
- "actor:get-value": {
858
- "aliases": [],
859
- "args": {
860
- "key": {
861
- "description": "Key of the record in key-value store",
862
- "name": "key",
863
- "required": true
864
- }
865
- },
866
- "description": "Gets a value from the default key-value store associated with the Actor run.",
867
- "flags": {},
868
- "hasDynamicHelp": false,
869
- "hiddenAliases": [],
870
- "id": "actor:get-value",
871
- "pluginAlias": "apify-cli",
872
- "pluginName": "apify-cli",
873
- "pluginType": "core",
874
- "strict": true,
875
- "isESM": true,
876
- "relativePath": [
877
- "dist",
878
- "commands",
879
- "actor",
880
- "get-value.js"
881
- ]
882
- },
883
- "actor": {
884
- "aliases": [],
885
- "args": {},
886
- "description": "Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.\n",
887
- "flags": {},
888
- "hasDynamicHelp": false,
889
- "hiddenAliases": [],
890
- "id": "actor",
891
- "pluginAlias": "apify-cli",
892
- "pluginName": "apify-cli",
893
- "pluginType": "core",
894
- "strict": true,
895
- "isESM": true,
896
- "relativePath": [
897
- "dist",
898
- "commands",
899
- "actor",
900
- "index.js"
901
- ]
902
- },
903
- "actor:push-data": {
904
- "aliases": [],
905
- "args": {
906
- "item": {
907
- "description": "JSON string with one object or array of objects containing data to be stored in the default dataset.",
908
- "name": "item",
909
- "required": false
910
- }
911
- },
912
- "description": "Stores an object or an array of objects to the default dataset of the Actor run.\nIt is possible to pass data using item argument or stdin.\nPassing data using argument:\n$ apify actor push-data {\"foo\": \"bar\"}\nPassing data using stdin with pipe:\n$ cat ./test.json | apify actor push-data\n",
913
- "flags": {},
914
- "hasDynamicHelp": false,
915
- "hiddenAliases": [],
916
- "id": "actor:push-data",
917
- "pluginAlias": "apify-cli",
918
- "pluginName": "apify-cli",
919
- "pluginType": "core",
920
- "strict": true,
921
- "isESM": true,
922
- "relativePath": [
923
- "dist",
924
- "commands",
925
- "actor",
926
- "push-data.js"
927
- ]
928
- },
929
- "actor:set-value": {
930
- "aliases": [],
931
- "args": {
932
- "key": {
933
- "description": "Key of the record in key-value store.",
934
- "name": "key",
935
- "required": true
936
- },
937
- "value": {
938
- "description": "Record data, which can be one of the following values:\n- If empty, the record in the key-value store is deleted.\n- If no `contentType` flag is specified, value is expected to be any JSON string value.\n- If options.contentType is set, value is taken as is.",
939
- "name": "value",
940
- "required": false
941
- }
942
- },
943
- "description": "Sets or removes record into the default KeyValueStore associated with the Actor run.\nIt is possible to pass data using argument or stdin.\nPassing data using argument:\n$ apify actor set-value KEY my-value\nPassing data using stdin with pipe:\n$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain\n",
944
- "flags": {
945
- "contentType": {
946
- "char": "c",
947
- "description": "Specifies a custom MIME content type of the record. By default \"application/json\" is used.",
948
- "name": "contentType",
949
- "required": false,
950
- "hasDynamicHelp": false,
951
- "multiple": false,
952
- "type": "option"
953
- }
954
- },
955
- "hasDynamicHelp": false,
956
- "hiddenAliases": [],
957
- "id": "actor:set-value",
958
- "pluginAlias": "apify-cli",
959
- "pluginName": "apify-cli",
960
- "pluginType": "core",
961
- "strict": true,
962
- "isESM": true,
963
- "relativePath": [
964
- "dist",
965
- "commands",
966
- "actor",
967
- "set-value.js"
968
- ]
969
- },
970
970
  "builds:create": {
971
971
  "aliases": [],
972
972
  "args": {
@@ -1658,5 +1658,5 @@
1658
1658
  ]
1659
1659
  }
1660
1660
  },
1661
- "version": "0.21.0-beta.21"
1661
+ "version": "0.21.0-beta.22"
1662
1662
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apify-cli",
3
- "version": "0.21.0-beta.21",
3
+ "version": "0.21.0-beta.22",
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",