eas-cli 13.2.3 → 13.4.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/README.md +359 -162
- package/build/build/build.js +3 -3
- package/build/build/evaluateConfigWithEnvVarsAsync.js +18 -2
- package/build/build/utils/url.d.ts +1 -0
- package/build/build/utils/url.js +5 -1
- package/build/commandUtils/flags.d.ts +5 -4
- package/build/commandUtils/flags.js +6 -8
- package/build/commands/env/create.d.ts +6 -6
- package/build/commands/env/create.js +27 -28
- package/build/commands/env/delete.d.ts +5 -5
- package/build/commands/env/delete.js +15 -13
- package/build/commands/env/exec.d.ts +0 -1
- package/build/commands/env/exec.js +1 -2
- package/build/commands/env/get.d.ts +5 -5
- package/build/commands/env/get.js +16 -13
- package/build/commands/env/link.d.ts +1 -1
- package/build/commands/env/link.js +12 -13
- package/build/commands/env/list.d.ts +5 -5
- package/build/commands/env/list.js +14 -12
- package/build/commands/env/pull.d.ts +1 -2
- package/build/commands/env/pull.js +8 -9
- package/build/commands/env/push.d.ts +1 -2
- package/build/commands/env/push.js +9 -10
- package/build/commands/env/unlink.d.ts +1 -1
- package/build/commands/env/unlink.js +11 -10
- package/build/commands/env/update.d.ts +6 -6
- package/build/commands/env/update.js +18 -15
- package/build/commands/secret/create.d.ts +1 -0
- package/build/commands/secret/create.js +3 -0
- package/build/commands/secret/delete.d.ts +1 -0
- package/build/commands/secret/delete.js +3 -0
- package/build/commands/secret/list.d.ts +1 -0
- package/build/commands/secret/list.js +3 -0
- package/build/commands/secret/push.d.ts +1 -0
- package/build/commands/secret/push.js +3 -0
- package/build/commands/update/index.js +19 -2
- package/build/commands/workflow/create.d.ts +18 -0
- package/build/commands/workflow/create.js +100 -0
- package/build/commands/workflow/run.d.ts +0 -2
- package/build/commands/workflow/run.js +25 -6
- package/build/commands/workflow/validate.d.ts +9 -1
- package/build/commands/workflow/validate.js +47 -50
- package/build/graphql/generated.d.ts +199 -28
- package/build/graphql/generated.js +10 -1
- package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +1 -0
- package/build/graphql/mutations/WorkflowRevisionMutation.d.ts +33 -0
- package/build/graphql/mutations/WorkflowRevisionMutation.js +32 -0
- package/build/graphql/types/Update.js +9 -0
- package/build/project/publish.d.ts +23 -1
- package/build/project/publish.js +71 -11
- package/build/project/resolveRuntimeVersionAsync.d.ts +2 -0
- package/build/project/resolveRuntimeVersionAsync.js +4 -0
- package/build/update/republish.js +19 -0
- package/build/utils/expodash/mapMapAsync.d.ts +1 -0
- package/build/utils/expodash/mapMapAsync.js +12 -0
- package/build/utils/fingerprintCli.d.ts +21 -3
- package/build/utils/fingerprintCli.js +62 -13
- package/build/utils/prompts.d.ts +1 -1
- package/build/utils/prompts.js +1 -1
- package/build/utils/workflowFile.d.ts +16 -0
- package/build/utils/workflowFile.js +64 -0
- package/oclif.manifest.json +84 -52
- package/package.json +10 -4
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "13.
|
|
2
|
+
"version": "13.4.0",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -1936,12 +1936,11 @@
|
|
|
1936
1936
|
},
|
|
1937
1937
|
"env:create": {
|
|
1938
1938
|
"id": "env:create",
|
|
1939
|
-
"description": "create an environment variable
|
|
1939
|
+
"description": "create an environment variable for the current project or account",
|
|
1940
1940
|
"strict": true,
|
|
1941
1941
|
"pluginName": "eas-cli",
|
|
1942
1942
|
"pluginAlias": "eas-cli",
|
|
1943
1943
|
"pluginType": "core",
|
|
1944
|
-
"hidden": true,
|
|
1945
1944
|
"aliases": [],
|
|
1946
1945
|
"flags": {
|
|
1947
1946
|
"name": {
|
|
@@ -1959,7 +1958,8 @@
|
|
|
1959
1958
|
"link": {
|
|
1960
1959
|
"name": "link",
|
|
1961
1960
|
"type": "boolean",
|
|
1962
|
-
"description": "Link
|
|
1961
|
+
"description": "Link account-wide variable to the current project",
|
|
1962
|
+
"hidden": true,
|
|
1963
1963
|
"allowNo": false
|
|
1964
1964
|
},
|
|
1965
1965
|
"force": {
|
|
@@ -1983,25 +1983,25 @@
|
|
|
1983
1983
|
"name": "visibility",
|
|
1984
1984
|
"type": "option",
|
|
1985
1985
|
"description": "Visibility of the variable",
|
|
1986
|
-
"helpValue": "(plaintext|sensitive|
|
|
1986
|
+
"helpValue": "(plaintext|sensitive|secret)",
|
|
1987
1987
|
"multiple": false,
|
|
1988
1988
|
"options": [
|
|
1989
1989
|
"plaintext",
|
|
1990
1990
|
"sensitive",
|
|
1991
|
-
"
|
|
1991
|
+
"secret"
|
|
1992
1992
|
]
|
|
1993
1993
|
},
|
|
1994
1994
|
"scope": {
|
|
1995
1995
|
"name": "scope",
|
|
1996
1996
|
"type": "option",
|
|
1997
1997
|
"description": "Scope for the variable",
|
|
1998
|
-
"helpValue": "(
|
|
1998
|
+
"helpValue": "(project|account)",
|
|
1999
1999
|
"multiple": false,
|
|
2000
2000
|
"options": [
|
|
2001
|
-
"
|
|
2002
|
-
"
|
|
2001
|
+
"project",
|
|
2002
|
+
"account"
|
|
2003
2003
|
],
|
|
2004
|
-
"default": "
|
|
2004
|
+
"default": "project"
|
|
2005
2005
|
},
|
|
2006
2006
|
"environment": {
|
|
2007
2007
|
"name": "environment",
|
|
@@ -2037,12 +2037,11 @@
|
|
|
2037
2037
|
},
|
|
2038
2038
|
"env:delete": {
|
|
2039
2039
|
"id": "env:delete",
|
|
2040
|
-
"description": "delete an environment variable
|
|
2040
|
+
"description": "delete an environment variable for the current project or account",
|
|
2041
2041
|
"strict": true,
|
|
2042
2042
|
"pluginName": "eas-cli",
|
|
2043
2043
|
"pluginAlias": "eas-cli",
|
|
2044
2044
|
"pluginType": "core",
|
|
2045
|
-
"hidden": true,
|
|
2046
2045
|
"aliases": [],
|
|
2047
2046
|
"flags": {
|
|
2048
2047
|
"variable-name": {
|
|
@@ -2067,13 +2066,13 @@
|
|
|
2067
2066
|
"name": "scope",
|
|
2068
2067
|
"type": "option",
|
|
2069
2068
|
"description": "Scope for the variable",
|
|
2070
|
-
"helpValue": "(
|
|
2069
|
+
"helpValue": "(project|account)",
|
|
2071
2070
|
"multiple": false,
|
|
2072
2071
|
"options": [
|
|
2073
|
-
"
|
|
2074
|
-
"
|
|
2072
|
+
"project",
|
|
2073
|
+
"account"
|
|
2075
2074
|
],
|
|
2076
|
-
"default": "
|
|
2075
|
+
"default": "project"
|
|
2077
2076
|
},
|
|
2078
2077
|
"non-interactive": {
|
|
2079
2078
|
"name": "non-interactive",
|
|
@@ -2096,12 +2095,11 @@
|
|
|
2096
2095
|
},
|
|
2097
2096
|
"env:exec": {
|
|
2098
2097
|
"id": "env:exec",
|
|
2099
|
-
"description": "execute a
|
|
2098
|
+
"description": "execute a command with environment variables from the selected environment",
|
|
2100
2099
|
"strict": true,
|
|
2101
2100
|
"pluginName": "eas-cli",
|
|
2102
2101
|
"pluginAlias": "eas-cli",
|
|
2103
2102
|
"pluginType": "core",
|
|
2104
|
-
"hidden": true,
|
|
2105
2103
|
"aliases": [],
|
|
2106
2104
|
"flags": {
|
|
2107
2105
|
"non-interactive": {
|
|
@@ -2130,12 +2128,11 @@
|
|
|
2130
2128
|
},
|
|
2131
2129
|
"env:get": {
|
|
2132
2130
|
"id": "env:get",
|
|
2133
|
-
"description": "
|
|
2131
|
+
"description": "view an environment variable for the current project or account",
|
|
2134
2132
|
"strict": true,
|
|
2135
2133
|
"pluginName": "eas-cli",
|
|
2136
2134
|
"pluginAlias": "eas-cli",
|
|
2137
2135
|
"pluginType": "core",
|
|
2138
|
-
"hidden": true,
|
|
2139
2136
|
"aliases": [],
|
|
2140
2137
|
"flags": {
|
|
2141
2138
|
"variable-name": {
|
|
@@ -2172,13 +2169,13 @@
|
|
|
2172
2169
|
"name": "scope",
|
|
2173
2170
|
"type": "option",
|
|
2174
2171
|
"description": "Scope for the variable",
|
|
2175
|
-
"helpValue": "(
|
|
2172
|
+
"helpValue": "(project|account)",
|
|
2176
2173
|
"multiple": false,
|
|
2177
2174
|
"options": [
|
|
2178
|
-
"
|
|
2179
|
-
"
|
|
2175
|
+
"project",
|
|
2176
|
+
"account"
|
|
2180
2177
|
],
|
|
2181
|
-
"default": "
|
|
2178
|
+
"default": "project"
|
|
2182
2179
|
},
|
|
2183
2180
|
"non-interactive": {
|
|
2184
2181
|
"name": "non-interactive",
|
|
@@ -2201,7 +2198,7 @@
|
|
|
2201
2198
|
},
|
|
2202
2199
|
"env:link": {
|
|
2203
2200
|
"id": "env:link",
|
|
2204
|
-
"description": "link
|
|
2201
|
+
"description": "link an account-wide environment variable to the current project",
|
|
2205
2202
|
"strict": true,
|
|
2206
2203
|
"pluginName": "eas-cli",
|
|
2207
2204
|
"pluginAlias": "eas-cli",
|
|
@@ -2260,12 +2257,11 @@
|
|
|
2260
2257
|
},
|
|
2261
2258
|
"env:list": {
|
|
2262
2259
|
"id": "env:list",
|
|
2263
|
-
"description": "list environment variables for the current project",
|
|
2260
|
+
"description": "list environment variables for the current project or account",
|
|
2264
2261
|
"strict": true,
|
|
2265
2262
|
"pluginName": "eas-cli",
|
|
2266
2263
|
"pluginAlias": "eas-cli",
|
|
2267
2264
|
"pluginType": "core",
|
|
2268
|
-
"hidden": true,
|
|
2269
2265
|
"aliases": [],
|
|
2270
2266
|
"flags": {
|
|
2271
2267
|
"include-sensitive": {
|
|
@@ -2308,13 +2304,13 @@
|
|
|
2308
2304
|
"name": "scope",
|
|
2309
2305
|
"type": "option",
|
|
2310
2306
|
"description": "Scope for the variable",
|
|
2311
|
-
"helpValue": "(
|
|
2307
|
+
"helpValue": "(project|account)",
|
|
2312
2308
|
"multiple": false,
|
|
2313
2309
|
"options": [
|
|
2314
|
-
"
|
|
2315
|
-
"
|
|
2310
|
+
"project",
|
|
2311
|
+
"account"
|
|
2316
2312
|
],
|
|
2317
|
-
"default": "
|
|
2313
|
+
"default": "project"
|
|
2318
2314
|
}
|
|
2319
2315
|
},
|
|
2320
2316
|
"args": {
|
|
@@ -2331,12 +2327,11 @@
|
|
|
2331
2327
|
},
|
|
2332
2328
|
"env:pull": {
|
|
2333
2329
|
"id": "env:pull",
|
|
2334
|
-
"description": "pull env file",
|
|
2330
|
+
"description": "pull environment variables for the selected environment to .env file",
|
|
2335
2331
|
"strict": true,
|
|
2336
2332
|
"pluginName": "eas-cli",
|
|
2337
2333
|
"pluginAlias": "eas-cli",
|
|
2338
2334
|
"pluginType": "core",
|
|
2339
|
-
"hidden": true,
|
|
2340
2335
|
"aliases": [],
|
|
2341
2336
|
"flags": {
|
|
2342
2337
|
"non-interactive": {
|
|
@@ -2380,12 +2375,11 @@
|
|
|
2380
2375
|
},
|
|
2381
2376
|
"env:push": {
|
|
2382
2377
|
"id": "env:push",
|
|
2383
|
-
"description": "push env file",
|
|
2378
|
+
"description": "push environment variables from .env file to the selected environment",
|
|
2384
2379
|
"strict": true,
|
|
2385
2380
|
"pluginName": "eas-cli",
|
|
2386
2381
|
"pluginAlias": "eas-cli",
|
|
2387
2382
|
"pluginType": "core",
|
|
2388
|
-
"hidden": true,
|
|
2389
2383
|
"aliases": [],
|
|
2390
2384
|
"flags": {
|
|
2391
2385
|
"environment": {
|
|
@@ -2422,7 +2416,7 @@
|
|
|
2422
2416
|
},
|
|
2423
2417
|
"env:unlink": {
|
|
2424
2418
|
"id": "env:unlink",
|
|
2425
|
-
"description": "unlink
|
|
2419
|
+
"description": "unlink an account-wide environment variable from the current project",
|
|
2426
2420
|
"strict": true,
|
|
2427
2421
|
"pluginName": "eas-cli",
|
|
2428
2422
|
"pluginAlias": "eas-cli",
|
|
@@ -2469,12 +2463,11 @@
|
|
|
2469
2463
|
},
|
|
2470
2464
|
"env:update": {
|
|
2471
2465
|
"id": "env:update",
|
|
2472
|
-
"description": "update an environment variable on the current project or
|
|
2466
|
+
"description": "update an environment variable on the current project or account",
|
|
2473
2467
|
"strict": true,
|
|
2474
2468
|
"pluginName": "eas-cli",
|
|
2475
2469
|
"pluginAlias": "eas-cli",
|
|
2476
2470
|
"pluginType": "core",
|
|
2477
|
-
"hidden": true,
|
|
2478
2471
|
"aliases": [],
|
|
2479
2472
|
"flags": {
|
|
2480
2473
|
"variable-name": {
|
|
@@ -2522,25 +2515,25 @@
|
|
|
2522
2515
|
"name": "visibility",
|
|
2523
2516
|
"type": "option",
|
|
2524
2517
|
"description": "Visibility of the variable",
|
|
2525
|
-
"helpValue": "(plaintext|sensitive|
|
|
2518
|
+
"helpValue": "(plaintext|sensitive|secret)",
|
|
2526
2519
|
"multiple": false,
|
|
2527
2520
|
"options": [
|
|
2528
2521
|
"plaintext",
|
|
2529
2522
|
"sensitive",
|
|
2530
|
-
"
|
|
2523
|
+
"secret"
|
|
2531
2524
|
]
|
|
2532
2525
|
},
|
|
2533
2526
|
"scope": {
|
|
2534
2527
|
"name": "scope",
|
|
2535
2528
|
"type": "option",
|
|
2536
2529
|
"description": "Scope for the variable",
|
|
2537
|
-
"helpValue": "(
|
|
2530
|
+
"helpValue": "(project|account)",
|
|
2538
2531
|
"multiple": false,
|
|
2539
2532
|
"options": [
|
|
2540
|
-
"
|
|
2541
|
-
"
|
|
2533
|
+
"project",
|
|
2534
|
+
"account"
|
|
2542
2535
|
],
|
|
2543
|
-
"default": "
|
|
2536
|
+
"default": "project"
|
|
2544
2537
|
},
|
|
2545
2538
|
"environment": {
|
|
2546
2539
|
"name": "environment",
|
|
@@ -2731,6 +2724,7 @@
|
|
|
2731
2724
|
"pluginName": "eas-cli",
|
|
2732
2725
|
"pluginAlias": "eas-cli",
|
|
2733
2726
|
"pluginType": "core",
|
|
2727
|
+
"hidden": true,
|
|
2734
2728
|
"aliases": [],
|
|
2735
2729
|
"flags": {
|
|
2736
2730
|
"scope": {
|
|
@@ -2794,6 +2788,7 @@
|
|
|
2794
2788
|
"pluginName": "eas-cli",
|
|
2795
2789
|
"pluginAlias": "eas-cli",
|
|
2796
2790
|
"pluginType": "core",
|
|
2791
|
+
"hidden": true,
|
|
2797
2792
|
"aliases": [],
|
|
2798
2793
|
"flags": {
|
|
2799
2794
|
"id": {
|
|
@@ -2822,6 +2817,7 @@
|
|
|
2822
2817
|
"pluginName": "eas-cli",
|
|
2823
2818
|
"pluginAlias": "eas-cli",
|
|
2824
2819
|
"pluginType": "core",
|
|
2820
|
+
"hidden": true,
|
|
2825
2821
|
"aliases": [],
|
|
2826
2822
|
"flags": {},
|
|
2827
2823
|
"args": {},
|
|
@@ -2837,6 +2833,7 @@
|
|
|
2837
2833
|
"pluginName": "eas-cli",
|
|
2838
2834
|
"pluginAlias": "eas-cli",
|
|
2839
2835
|
"pluginType": "core",
|
|
2836
|
+
"hidden": true,
|
|
2840
2837
|
"aliases": [],
|
|
2841
2838
|
"flags": {
|
|
2842
2839
|
"scope": {
|
|
@@ -2945,8 +2942,7 @@
|
|
|
2945
2942
|
"environment": {
|
|
2946
2943
|
"name": "environment",
|
|
2947
2944
|
"type": "option",
|
|
2948
|
-
"description": "Environment to use the server-side defined EAS environment variables
|
|
2949
|
-
"hidden": true,
|
|
2945
|
+
"description": "Environment to use for the server-side defined EAS environment variables during command execution.",
|
|
2950
2946
|
"required": false,
|
|
2951
2947
|
"helpValue": "(development|preview|production)",
|
|
2952
2948
|
"multiple": false,
|
|
@@ -3150,8 +3146,7 @@
|
|
|
3150
3146
|
"environment": {
|
|
3151
3147
|
"name": "environment",
|
|
3152
3148
|
"type": "option",
|
|
3153
|
-
"description": "Environment to use the server-side defined EAS environment variables
|
|
3154
|
-
"hidden": true,
|
|
3149
|
+
"description": "Environment to use for the server-side defined EAS environment variables during command execution.",
|
|
3155
3150
|
"required": false,
|
|
3156
3151
|
"helpValue": "(development|preview|production)",
|
|
3157
3152
|
"multiple": false,
|
|
@@ -3807,6 +3802,33 @@
|
|
|
3807
3802
|
"loggedIn": {}
|
|
3808
3803
|
}
|
|
3809
3804
|
},
|
|
3805
|
+
"workflow:create": {
|
|
3806
|
+
"id": "workflow:create",
|
|
3807
|
+
"description": "create a new workflow configuration YAML file",
|
|
3808
|
+
"strict": true,
|
|
3809
|
+
"pluginName": "eas-cli",
|
|
3810
|
+
"pluginAlias": "eas-cli",
|
|
3811
|
+
"pluginType": "core",
|
|
3812
|
+
"aliases": [],
|
|
3813
|
+
"flags": {
|
|
3814
|
+
"non-interactive": {
|
|
3815
|
+
"name": "non-interactive",
|
|
3816
|
+
"type": "boolean",
|
|
3817
|
+
"description": "Run the command in non-interactive mode.",
|
|
3818
|
+
"allowNo": false
|
|
3819
|
+
}
|
|
3820
|
+
},
|
|
3821
|
+
"args": {
|
|
3822
|
+
"name": {
|
|
3823
|
+
"name": "name",
|
|
3824
|
+
"description": "Name of the workflow file (must end with .yml or .yaml)",
|
|
3825
|
+
"required": false
|
|
3826
|
+
}
|
|
3827
|
+
},
|
|
3828
|
+
"contextDefinition": {
|
|
3829
|
+
"projectDir": {}
|
|
3830
|
+
}
|
|
3831
|
+
},
|
|
3810
3832
|
"workflow:run": {
|
|
3811
3833
|
"id": "workflow:run",
|
|
3812
3834
|
"description": "Run an EAS workflow",
|
|
@@ -3814,8 +3836,6 @@
|
|
|
3814
3836
|
"pluginName": "eas-cli",
|
|
3815
3837
|
"pluginAlias": "eas-cli",
|
|
3816
3838
|
"pluginType": "core",
|
|
3817
|
-
"hidden": true,
|
|
3818
|
-
"state": "beta",
|
|
3819
3839
|
"aliases": [],
|
|
3820
3840
|
"flags": {
|
|
3821
3841
|
"non-interactive": {
|
|
@@ -3846,15 +3866,27 @@
|
|
|
3846
3866
|
"pluginName": "eas-cli",
|
|
3847
3867
|
"pluginAlias": "eas-cli",
|
|
3848
3868
|
"pluginType": "core",
|
|
3849
|
-
"hidden": true,
|
|
3850
3869
|
"aliases": [],
|
|
3851
|
-
"flags": {
|
|
3870
|
+
"flags": {
|
|
3871
|
+
"non-interactive": {
|
|
3872
|
+
"name": "non-interactive",
|
|
3873
|
+
"type": "boolean",
|
|
3874
|
+
"description": "Run the command in non-interactive mode.",
|
|
3875
|
+
"allowNo": false
|
|
3876
|
+
}
|
|
3877
|
+
},
|
|
3852
3878
|
"args": {
|
|
3853
3879
|
"path": {
|
|
3854
3880
|
"name": "path",
|
|
3855
3881
|
"description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
|
|
3856
3882
|
"required": true
|
|
3857
3883
|
}
|
|
3884
|
+
},
|
|
3885
|
+
"contextDefinition": {
|
|
3886
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3887
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3888
|
+
"projectDir": {},
|
|
3889
|
+
"loggedIn": {}
|
|
3858
3890
|
}
|
|
3859
3891
|
},
|
|
3860
3892
|
"build:version:get": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "13.
|
|
4
|
+
"version": "13.4.0",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@expo/config": "9.0.4",
|
|
14
14
|
"@expo/config-plugins": "8.0.10",
|
|
15
15
|
"@expo/eas-build-job": "1.0.149",
|
|
16
|
-
"@expo/eas-json": "13.
|
|
16
|
+
"@expo/eas-json": "13.4.0",
|
|
17
17
|
"@expo/env": "^0.3.0",
|
|
18
18
|
"@expo/json-file": "8.3.3",
|
|
19
19
|
"@expo/logger": "1.0.117",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@expo/results": "1.0.0",
|
|
29
29
|
"@expo/rudder-sdk-node": "1.1.1",
|
|
30
30
|
"@expo/spawn-async": "1.7.2",
|
|
31
|
-
"@expo/steps": "1.0.
|
|
31
|
+
"@expo/steps": "1.0.150",
|
|
32
32
|
"@expo/timeago.js": "1.0.0",
|
|
33
33
|
"@oclif/core": "^1.26.2",
|
|
34
34
|
"@oclif/plugin-autocomplete": "^2.3.10",
|
|
@@ -177,11 +177,17 @@
|
|
|
177
177
|
"secret": {
|
|
178
178
|
"description": "manage project and account secrets"
|
|
179
179
|
},
|
|
180
|
+
"env": {
|
|
181
|
+
"description": "manage project and account environment variables"
|
|
182
|
+
},
|
|
180
183
|
"update": {
|
|
181
184
|
"description": "manage individual updates"
|
|
182
185
|
},
|
|
183
186
|
"webhook": {
|
|
184
187
|
"description": "manage webhooks"
|
|
188
|
+
},
|
|
189
|
+
"workflow": {
|
|
190
|
+
"description": "manage workflows"
|
|
185
191
|
}
|
|
186
192
|
},
|
|
187
193
|
"warn-if-update-available": {
|
|
@@ -228,5 +234,5 @@
|
|
|
228
234
|
"node": "20.11.0",
|
|
229
235
|
"yarn": "1.22.21"
|
|
230
236
|
},
|
|
231
|
-
"gitHead": "
|
|
237
|
+
"gitHead": "e16e1f3871f28c91bedf8df01566ae4b482765c8"
|
|
232
238
|
}
|