apify-cli 0.21.0-beta.8 → 0.21.0-beta.9
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/README.md +38 -38
- package/dist/.tsbuildinfo +1 -1
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +78 -78
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -1051,6 +1051,83 @@
|
|
|
1051
1051
|
"index.js"
|
|
1052
1052
|
]
|
|
1053
1053
|
},
|
|
1054
|
+
"secrets:add": {
|
|
1055
|
+
"aliases": [],
|
|
1056
|
+
"args": {
|
|
1057
|
+
"name": {
|
|
1058
|
+
"description": "Name of the secret",
|
|
1059
|
+
"name": "name",
|
|
1060
|
+
"required": true
|
|
1061
|
+
},
|
|
1062
|
+
"value": {
|
|
1063
|
+
"description": "Value of the secret",
|
|
1064
|
+
"name": "value",
|
|
1065
|
+
"required": true
|
|
1066
|
+
}
|
|
1067
|
+
},
|
|
1068
|
+
"description": "Adds a new secret value.\nThe secrets are stored to a file at ~/.apify",
|
|
1069
|
+
"flags": {},
|
|
1070
|
+
"hasDynamicHelp": false,
|
|
1071
|
+
"hiddenAliases": [],
|
|
1072
|
+
"id": "secrets:add",
|
|
1073
|
+
"pluginAlias": "apify-cli",
|
|
1074
|
+
"pluginName": "apify-cli",
|
|
1075
|
+
"pluginType": "core",
|
|
1076
|
+
"strict": true,
|
|
1077
|
+
"isESM": true,
|
|
1078
|
+
"relativePath": [
|
|
1079
|
+
"dist",
|
|
1080
|
+
"commands",
|
|
1081
|
+
"secrets",
|
|
1082
|
+
"add.js"
|
|
1083
|
+
]
|
|
1084
|
+
},
|
|
1085
|
+
"secrets": {
|
|
1086
|
+
"aliases": [],
|
|
1087
|
+
"args": {},
|
|
1088
|
+
"description": "Manages secret values for Actor environment variables.\n\nExample:\n$ apify secrets add mySecret TopSecretValue123\n\nNow the \"mySecret\" value can be used in an environment variable defined in \".actor/actor.json\" file by adding the \"@\" prefix:\n\n{\n \"actorSpecification\": 1,\n \"name\": \"my_actor\",\n \"environmentVariables\": { \"SECRET_ENV_VAR\": \"@mySecret\" },\n \"version\": \"0.1\n}\n\nWhen the Actor is pushed to Apify cloud, the \"SECRET_ENV_VAR\" and its value is stored as a secret environment variable of the Actor.",
|
|
1089
|
+
"flags": {},
|
|
1090
|
+
"hasDynamicHelp": false,
|
|
1091
|
+
"hiddenAliases": [],
|
|
1092
|
+
"id": "secrets",
|
|
1093
|
+
"pluginAlias": "apify-cli",
|
|
1094
|
+
"pluginName": "apify-cli",
|
|
1095
|
+
"pluginType": "core",
|
|
1096
|
+
"strict": true,
|
|
1097
|
+
"isESM": true,
|
|
1098
|
+
"relativePath": [
|
|
1099
|
+
"dist",
|
|
1100
|
+
"commands",
|
|
1101
|
+
"secrets",
|
|
1102
|
+
"index.js"
|
|
1103
|
+
]
|
|
1104
|
+
},
|
|
1105
|
+
"secrets:rm": {
|
|
1106
|
+
"aliases": [],
|
|
1107
|
+
"args": {
|
|
1108
|
+
"name": {
|
|
1109
|
+
"description": "Name of the secret",
|
|
1110
|
+
"name": "name",
|
|
1111
|
+
"required": true
|
|
1112
|
+
}
|
|
1113
|
+
},
|
|
1114
|
+
"description": "Removes the secret.",
|
|
1115
|
+
"flags": {},
|
|
1116
|
+
"hasDynamicHelp": false,
|
|
1117
|
+
"hiddenAliases": [],
|
|
1118
|
+
"id": "secrets:rm",
|
|
1119
|
+
"pluginAlias": "apify-cli",
|
|
1120
|
+
"pluginName": "apify-cli",
|
|
1121
|
+
"pluginType": "core",
|
|
1122
|
+
"strict": true,
|
|
1123
|
+
"isESM": true,
|
|
1124
|
+
"relativePath": [
|
|
1125
|
+
"dist",
|
|
1126
|
+
"commands",
|
|
1127
|
+
"secrets",
|
|
1128
|
+
"rm.js"
|
|
1129
|
+
]
|
|
1130
|
+
},
|
|
1054
1131
|
"runs:abort": {
|
|
1055
1132
|
"aliases": [],
|
|
1056
1133
|
"args": {
|
|
@@ -1307,83 +1384,6 @@
|
|
|
1307
1384
|
"rm.js"
|
|
1308
1385
|
]
|
|
1309
1386
|
},
|
|
1310
|
-
"secrets:add": {
|
|
1311
|
-
"aliases": [],
|
|
1312
|
-
"args": {
|
|
1313
|
-
"name": {
|
|
1314
|
-
"description": "Name of the secret",
|
|
1315
|
-
"name": "name",
|
|
1316
|
-
"required": true
|
|
1317
|
-
},
|
|
1318
|
-
"value": {
|
|
1319
|
-
"description": "Value of the secret",
|
|
1320
|
-
"name": "value",
|
|
1321
|
-
"required": true
|
|
1322
|
-
}
|
|
1323
|
-
},
|
|
1324
|
-
"description": "Adds a new secret value.\nThe secrets are stored to a file at ~/.apify",
|
|
1325
|
-
"flags": {},
|
|
1326
|
-
"hasDynamicHelp": false,
|
|
1327
|
-
"hiddenAliases": [],
|
|
1328
|
-
"id": "secrets:add",
|
|
1329
|
-
"pluginAlias": "apify-cli",
|
|
1330
|
-
"pluginName": "apify-cli",
|
|
1331
|
-
"pluginType": "core",
|
|
1332
|
-
"strict": true,
|
|
1333
|
-
"isESM": true,
|
|
1334
|
-
"relativePath": [
|
|
1335
|
-
"dist",
|
|
1336
|
-
"commands",
|
|
1337
|
-
"secrets",
|
|
1338
|
-
"add.js"
|
|
1339
|
-
]
|
|
1340
|
-
},
|
|
1341
|
-
"secrets": {
|
|
1342
|
-
"aliases": [],
|
|
1343
|
-
"args": {},
|
|
1344
|
-
"description": "Manages secret values for Actor environment variables.\n\nExample:\n$ apify secrets add mySecret TopSecretValue123\n\nNow the \"mySecret\" value can be used in an environment variable defined in \".actor/actor.json\" file by adding the \"@\" prefix:\n\n{\n \"actorSpecification\": 1,\n \"name\": \"my_actor\",\n \"environmentVariables\": { \"SECRET_ENV_VAR\": \"@mySecret\" },\n \"version\": \"0.1\n}\n\nWhen the Actor is pushed to Apify cloud, the \"SECRET_ENV_VAR\" and its value is stored as a secret environment variable of the Actor.",
|
|
1345
|
-
"flags": {},
|
|
1346
|
-
"hasDynamicHelp": false,
|
|
1347
|
-
"hiddenAliases": [],
|
|
1348
|
-
"id": "secrets",
|
|
1349
|
-
"pluginAlias": "apify-cli",
|
|
1350
|
-
"pluginName": "apify-cli",
|
|
1351
|
-
"pluginType": "core",
|
|
1352
|
-
"strict": true,
|
|
1353
|
-
"isESM": true,
|
|
1354
|
-
"relativePath": [
|
|
1355
|
-
"dist",
|
|
1356
|
-
"commands",
|
|
1357
|
-
"secrets",
|
|
1358
|
-
"index.js"
|
|
1359
|
-
]
|
|
1360
|
-
},
|
|
1361
|
-
"secrets:rm": {
|
|
1362
|
-
"aliases": [],
|
|
1363
|
-
"args": {
|
|
1364
|
-
"name": {
|
|
1365
|
-
"description": "Name of the secret",
|
|
1366
|
-
"name": "name",
|
|
1367
|
-
"required": true
|
|
1368
|
-
}
|
|
1369
|
-
},
|
|
1370
|
-
"description": "Removes the secret.",
|
|
1371
|
-
"flags": {},
|
|
1372
|
-
"hasDynamicHelp": false,
|
|
1373
|
-
"hiddenAliases": [],
|
|
1374
|
-
"id": "secrets:rm",
|
|
1375
|
-
"pluginAlias": "apify-cli",
|
|
1376
|
-
"pluginName": "apify-cli",
|
|
1377
|
-
"pluginType": "core",
|
|
1378
|
-
"strict": true,
|
|
1379
|
-
"isESM": true,
|
|
1380
|
-
"relativePath": [
|
|
1381
|
-
"dist",
|
|
1382
|
-
"commands",
|
|
1383
|
-
"secrets",
|
|
1384
|
-
"rm.js"
|
|
1385
|
-
]
|
|
1386
|
-
},
|
|
1387
1387
|
"task": {
|
|
1388
1388
|
"aliases": [],
|
|
1389
1389
|
"args": {},
|
|
@@ -1468,5 +1468,5 @@
|
|
|
1468
1468
|
]
|
|
1469
1469
|
}
|
|
1470
1470
|
},
|
|
1471
|
-
"version": "0.21.0-beta.
|
|
1471
|
+
"version": "0.21.0-beta.9"
|
|
1472
1472
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "0.21.0-beta.
|
|
3
|
+
"version": "0.21.0-beta.9",
|
|
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",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@apify/actor-templates": "~0.1.5",
|
|
62
|
-
"@apify/consts": "~2.
|
|
62
|
+
"@apify/consts": "~2.30.0",
|
|
63
63
|
"@apify/input_schema": "~3.8.0",
|
|
64
64
|
"@apify/utilities": "~2.10.6",
|
|
65
65
|
"@crawlee/memory-storage": "~3.11.1",
|