eas-cli 20.1.0 → 20.2.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 +130 -119
- package/build/commands/simulator/start.d.ts +1 -0
- package/build/commands/simulator/start.js +5 -0
- package/build/commands/update/rollback.d.ts +11 -0
- package/build/commands/update/rollback.js +117 -14
- package/build/credentials/ios/actions/AscApiKeyUtils.d.ts +20 -0
- package/build/credentials/ios/actions/AscApiKeyUtils.js +64 -0
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +2 -4
- package/build/credentials/ios/actions/CreateProvisioningProfile.js +2 -4
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +3 -20
- package/build/credentials/ios/actions/SetUpProvisioningProfile.d.ts +10 -0
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +39 -5
- package/build/credentials/ios/appstore/resolveCredentials.d.ts +1 -0
- package/build/credentials/ios/appstore/resolveCredentials.js +1 -0
- package/build/graphql/generated.d.ts +92 -0
- package/build/graphql/queries/UpdateQuery.d.ts +2 -1
- package/build/graphql/queries/UpdateQuery.js +52 -0
- package/oclif.manifest.json +355 -303
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -8099,6 +8099,13 @@
|
|
|
8099
8099
|
"multiple": false,
|
|
8100
8100
|
"type": "option"
|
|
8101
8101
|
},
|
|
8102
|
+
"max-duration-minutes": {
|
|
8103
|
+
"description": "Maximum duration of the device run session in minutes before it is automatically stopped. Only customizable on paid plans. Defaults to a value derived from the job run priority when omitted.",
|
|
8104
|
+
"name": "max-duration-minutes",
|
|
8105
|
+
"hasDynamicHelp": false,
|
|
8106
|
+
"multiple": false,
|
|
8107
|
+
"type": "option"
|
|
8108
|
+
},
|
|
8102
8109
|
"force": {
|
|
8103
8110
|
"description": "[default: true] Create a new device session even when an existing simulator session is present in the environment.",
|
|
8104
8111
|
"name": "force",
|
|
@@ -9544,9 +9551,38 @@
|
|
|
9544
9551
|
},
|
|
9545
9552
|
"update:rollback": {
|
|
9546
9553
|
"aliases": [],
|
|
9547
|
-
"args": {
|
|
9548
|
-
|
|
9554
|
+
"args": {
|
|
9555
|
+
"groupId": {
|
|
9556
|
+
"description": "The ID of the update group to roll back. Must be the latest update for its branch and runtime version. The update group published before it is republished; if there is none, a roll back to the embedded update is published. Required in non-interactive mode.",
|
|
9557
|
+
"name": "groupId",
|
|
9558
|
+
"required": false
|
|
9559
|
+
}
|
|
9560
|
+
},
|
|
9561
|
+
"description": "roll back to an embedded update or an existing update",
|
|
9549
9562
|
"flags": {
|
|
9563
|
+
"message": {
|
|
9564
|
+
"char": "m",
|
|
9565
|
+
"description": "Short message describing the rollback update",
|
|
9566
|
+
"name": "message",
|
|
9567
|
+
"required": false,
|
|
9568
|
+
"hasDynamicHelp": false,
|
|
9569
|
+
"multiple": false,
|
|
9570
|
+
"type": "option"
|
|
9571
|
+
},
|
|
9572
|
+
"platform": {
|
|
9573
|
+
"char": "p",
|
|
9574
|
+
"name": "platform",
|
|
9575
|
+
"required": false,
|
|
9576
|
+
"default": "all",
|
|
9577
|
+
"hasDynamicHelp": false,
|
|
9578
|
+
"multiple": false,
|
|
9579
|
+
"options": [
|
|
9580
|
+
"android",
|
|
9581
|
+
"ios",
|
|
9582
|
+
"all"
|
|
9583
|
+
],
|
|
9584
|
+
"type": "option"
|
|
9585
|
+
},
|
|
9550
9586
|
"private-key-path": {
|
|
9551
9587
|
"description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
|
|
9552
9588
|
"name": "private-key-path",
|
|
@@ -9554,6 +9590,19 @@
|
|
|
9554
9590
|
"hasDynamicHelp": false,
|
|
9555
9591
|
"multiple": false,
|
|
9556
9592
|
"type": "option"
|
|
9593
|
+
},
|
|
9594
|
+
"json": {
|
|
9595
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9596
|
+
"name": "json",
|
|
9597
|
+
"allowNo": false,
|
|
9598
|
+
"type": "boolean"
|
|
9599
|
+
},
|
|
9600
|
+
"non-interactive": {
|
|
9601
|
+
"description": "Run the command in non-interactive mode.",
|
|
9602
|
+
"name": "non-interactive",
|
|
9603
|
+
"noCacheDefault": true,
|
|
9604
|
+
"allowNo": false,
|
|
9605
|
+
"type": "boolean"
|
|
9557
9606
|
}
|
|
9558
9607
|
},
|
|
9559
9608
|
"hasDynamicHelp": false,
|
|
@@ -9604,7 +9653,10 @@
|
|
|
9604
9653
|
"projectId": {}
|
|
9605
9654
|
}
|
|
9606
9655
|
},
|
|
9607
|
-
"contextDefinition": {
|
|
9656
|
+
"contextDefinition": {
|
|
9657
|
+
"loggedIn": {},
|
|
9658
|
+
"privateProjectConfig": {}
|
|
9659
|
+
},
|
|
9608
9660
|
"isESM": false,
|
|
9609
9661
|
"relativePath": [
|
|
9610
9662
|
"build",
|
|
@@ -9727,11 +9779,36 @@
|
|
|
9727
9779
|
"view.js"
|
|
9728
9780
|
]
|
|
9729
9781
|
},
|
|
9730
|
-
"
|
|
9782
|
+
"webhook:create": {
|
|
9731
9783
|
"aliases": [],
|
|
9732
9784
|
"args": {},
|
|
9733
|
-
"description": "
|
|
9785
|
+
"description": "create a webhook",
|
|
9734
9786
|
"flags": {
|
|
9787
|
+
"event": {
|
|
9788
|
+
"description": "Event type that triggers the webhook",
|
|
9789
|
+
"name": "event",
|
|
9790
|
+
"hasDynamicHelp": false,
|
|
9791
|
+
"multiple": false,
|
|
9792
|
+
"options": [
|
|
9793
|
+
"BUILD",
|
|
9794
|
+
"SUBMIT"
|
|
9795
|
+
],
|
|
9796
|
+
"type": "option"
|
|
9797
|
+
},
|
|
9798
|
+
"url": {
|
|
9799
|
+
"description": "Webhook URL",
|
|
9800
|
+
"name": "url",
|
|
9801
|
+
"hasDynamicHelp": false,
|
|
9802
|
+
"multiple": false,
|
|
9803
|
+
"type": "option"
|
|
9804
|
+
},
|
|
9805
|
+
"secret": {
|
|
9806
|
+
"description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
|
|
9807
|
+
"name": "secret",
|
|
9808
|
+
"hasDynamicHelp": false,
|
|
9809
|
+
"multiple": false,
|
|
9810
|
+
"type": "option"
|
|
9811
|
+
},
|
|
9735
9812
|
"non-interactive": {
|
|
9736
9813
|
"description": "Run the command in non-interactive mode.",
|
|
9737
9814
|
"name": "non-interactive",
|
|
@@ -9742,11 +9819,11 @@
|
|
|
9742
9819
|
},
|
|
9743
9820
|
"hasDynamicHelp": false,
|
|
9744
9821
|
"hiddenAliases": [],
|
|
9745
|
-
"id": "
|
|
9822
|
+
"id": "webhook:create",
|
|
9746
9823
|
"pluginAlias": "eas-cli",
|
|
9747
9824
|
"pluginName": "eas-cli",
|
|
9748
9825
|
"pluginType": "core",
|
|
9749
|
-
"strict":
|
|
9826
|
+
"strict": true,
|
|
9750
9827
|
"enableJsonFlag": false,
|
|
9751
9828
|
"ContextOptions": {
|
|
9752
9829
|
"LoggedIn": {
|
|
@@ -9796,31 +9873,32 @@
|
|
|
9796
9873
|
"relativePath": [
|
|
9797
9874
|
"build",
|
|
9798
9875
|
"commands",
|
|
9799
|
-
"
|
|
9800
|
-
"
|
|
9876
|
+
"webhook",
|
|
9877
|
+
"create.js"
|
|
9801
9878
|
]
|
|
9802
9879
|
},
|
|
9803
|
-
"
|
|
9880
|
+
"webhook:delete": {
|
|
9804
9881
|
"aliases": [],
|
|
9805
9882
|
"args": {
|
|
9806
|
-
"
|
|
9807
|
-
"description": "
|
|
9808
|
-
"name": "
|
|
9883
|
+
"ID": {
|
|
9884
|
+
"description": "ID of the webhook to delete",
|
|
9885
|
+
"name": "ID",
|
|
9809
9886
|
"required": false
|
|
9810
9887
|
}
|
|
9811
9888
|
},
|
|
9812
|
-
"description": "
|
|
9889
|
+
"description": "delete a webhook",
|
|
9813
9890
|
"flags": {
|
|
9814
|
-
"
|
|
9815
|
-
"description": "
|
|
9816
|
-
"name": "
|
|
9891
|
+
"non-interactive": {
|
|
9892
|
+
"description": "Run the command in non-interactive mode.",
|
|
9893
|
+
"name": "non-interactive",
|
|
9894
|
+
"noCacheDefault": true,
|
|
9817
9895
|
"allowNo": false,
|
|
9818
9896
|
"type": "boolean"
|
|
9819
9897
|
}
|
|
9820
9898
|
},
|
|
9821
9899
|
"hasDynamicHelp": false,
|
|
9822
9900
|
"hiddenAliases": [],
|
|
9823
|
-
"id": "
|
|
9901
|
+
"id": "webhook:delete",
|
|
9824
9902
|
"pluginAlias": "eas-cli",
|
|
9825
9903
|
"pluginName": "eas-cli",
|
|
9826
9904
|
"pluginType": "core",
|
|
@@ -9867,24 +9945,33 @@
|
|
|
9867
9945
|
}
|
|
9868
9946
|
},
|
|
9869
9947
|
"contextDefinition": {
|
|
9870
|
-
"
|
|
9871
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
9872
|
-
"projectDir": {},
|
|
9948
|
+
"projectId": {},
|
|
9873
9949
|
"loggedIn": {}
|
|
9874
9950
|
},
|
|
9875
9951
|
"isESM": false,
|
|
9876
9952
|
"relativePath": [
|
|
9877
9953
|
"build",
|
|
9878
9954
|
"commands",
|
|
9879
|
-
"
|
|
9880
|
-
"
|
|
9955
|
+
"webhook",
|
|
9956
|
+
"delete.js"
|
|
9881
9957
|
]
|
|
9882
9958
|
},
|
|
9883
|
-
"
|
|
9959
|
+
"webhook:list": {
|
|
9884
9960
|
"aliases": [],
|
|
9885
9961
|
"args": {},
|
|
9886
|
-
"description": "
|
|
9962
|
+
"description": "list webhooks",
|
|
9887
9963
|
"flags": {
|
|
9964
|
+
"event": {
|
|
9965
|
+
"description": "Event type that triggers the webhook",
|
|
9966
|
+
"name": "event",
|
|
9967
|
+
"hasDynamicHelp": false,
|
|
9968
|
+
"multiple": false,
|
|
9969
|
+
"options": [
|
|
9970
|
+
"BUILD",
|
|
9971
|
+
"SUBMIT"
|
|
9972
|
+
],
|
|
9973
|
+
"type": "option"
|
|
9974
|
+
},
|
|
9888
9975
|
"json": {
|
|
9889
9976
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9890
9977
|
"name": "json",
|
|
@@ -9893,9 +9980,8 @@
|
|
|
9893
9980
|
}
|
|
9894
9981
|
},
|
|
9895
9982
|
"hasDynamicHelp": false,
|
|
9896
|
-
"hidden": true,
|
|
9897
9983
|
"hiddenAliases": [],
|
|
9898
|
-
"id": "
|
|
9984
|
+
"id": "webhook:list",
|
|
9899
9985
|
"pluginAlias": "eas-cli",
|
|
9900
9986
|
"pluginName": "eas-cli",
|
|
9901
9987
|
"pluginType": "core",
|
|
@@ -9949,25 +10035,47 @@
|
|
|
9949
10035
|
"relativePath": [
|
|
9950
10036
|
"build",
|
|
9951
10037
|
"commands",
|
|
9952
|
-
"
|
|
10038
|
+
"webhook",
|
|
9953
10039
|
"list.js"
|
|
9954
10040
|
]
|
|
9955
10041
|
},
|
|
9956
|
-
"
|
|
10042
|
+
"webhook:update": {
|
|
9957
10043
|
"aliases": [],
|
|
9958
|
-
"args": {
|
|
9959
|
-
|
|
9960
|
-
"description": "ID of the workflow run or workflow job to view logs for",
|
|
9961
|
-
"name": "id"
|
|
9962
|
-
}
|
|
9963
|
-
},
|
|
9964
|
-
"description": "view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.",
|
|
10044
|
+
"args": {},
|
|
10045
|
+
"description": "update a webhook",
|
|
9965
10046
|
"flags": {
|
|
9966
|
-
"
|
|
9967
|
-
"description": "
|
|
9968
|
-
"name": "
|
|
9969
|
-
"
|
|
9970
|
-
"
|
|
10047
|
+
"id": {
|
|
10048
|
+
"description": "Webhook ID",
|
|
10049
|
+
"name": "id",
|
|
10050
|
+
"required": true,
|
|
10051
|
+
"hasDynamicHelp": false,
|
|
10052
|
+
"multiple": false,
|
|
10053
|
+
"type": "option"
|
|
10054
|
+
},
|
|
10055
|
+
"event": {
|
|
10056
|
+
"description": "Event type that triggers the webhook",
|
|
10057
|
+
"name": "event",
|
|
10058
|
+
"hasDynamicHelp": false,
|
|
10059
|
+
"multiple": false,
|
|
10060
|
+
"options": [
|
|
10061
|
+
"BUILD",
|
|
10062
|
+
"SUBMIT"
|
|
10063
|
+
],
|
|
10064
|
+
"type": "option"
|
|
10065
|
+
},
|
|
10066
|
+
"url": {
|
|
10067
|
+
"description": "Webhook URL",
|
|
10068
|
+
"name": "url",
|
|
10069
|
+
"hasDynamicHelp": false,
|
|
10070
|
+
"multiple": false,
|
|
10071
|
+
"type": "option"
|
|
10072
|
+
},
|
|
10073
|
+
"secret": {
|
|
10074
|
+
"description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
|
|
10075
|
+
"name": "secret",
|
|
10076
|
+
"hasDynamicHelp": false,
|
|
10077
|
+
"multiple": false,
|
|
10078
|
+
"type": "option"
|
|
9971
10079
|
},
|
|
9972
10080
|
"non-interactive": {
|
|
9973
10081
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -9975,17 +10083,11 @@
|
|
|
9975
10083
|
"noCacheDefault": true,
|
|
9976
10084
|
"allowNo": false,
|
|
9977
10085
|
"type": "boolean"
|
|
9978
|
-
},
|
|
9979
|
-
"all-steps": {
|
|
9980
|
-
"description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
|
|
9981
|
-
"name": "all-steps",
|
|
9982
|
-
"allowNo": false,
|
|
9983
|
-
"type": "boolean"
|
|
9984
10086
|
}
|
|
9985
10087
|
},
|
|
9986
10088
|
"hasDynamicHelp": false,
|
|
9987
10089
|
"hiddenAliases": [],
|
|
9988
|
-
"id": "
|
|
10090
|
+
"id": "webhook:update",
|
|
9989
10091
|
"pluginAlias": "eas-cli",
|
|
9990
10092
|
"pluginName": "eas-cli",
|
|
9991
10093
|
"pluginType": "core",
|
|
@@ -10032,73 +10134,30 @@
|
|
|
10032
10134
|
}
|
|
10033
10135
|
},
|
|
10034
10136
|
"contextDefinition": {
|
|
10035
|
-
"projectId": {},
|
|
10036
10137
|
"loggedIn": {}
|
|
10037
10138
|
},
|
|
10038
10139
|
"isESM": false,
|
|
10039
10140
|
"relativePath": [
|
|
10040
10141
|
"build",
|
|
10041
10142
|
"commands",
|
|
10042
|
-
"
|
|
10043
|
-
"
|
|
10143
|
+
"webhook",
|
|
10144
|
+
"update.js"
|
|
10044
10145
|
]
|
|
10045
10146
|
},
|
|
10046
|
-
"
|
|
10147
|
+
"webhook:view": {
|
|
10047
10148
|
"aliases": [],
|
|
10048
10149
|
"args": {
|
|
10049
|
-
"
|
|
10050
|
-
"description": "
|
|
10051
|
-
"name": "
|
|
10150
|
+
"ID": {
|
|
10151
|
+
"description": "ID of the webhook to view",
|
|
10152
|
+
"name": "ID",
|
|
10052
10153
|
"required": true
|
|
10053
10154
|
}
|
|
10054
10155
|
},
|
|
10055
|
-
"description": "
|
|
10056
|
-
"flags": {
|
|
10057
|
-
"non-interactive": {
|
|
10058
|
-
"description": "Run the command in non-interactive mode.",
|
|
10059
|
-
"name": "non-interactive",
|
|
10060
|
-
"noCacheDefault": true,
|
|
10061
|
-
"allowNo": false,
|
|
10062
|
-
"type": "boolean"
|
|
10063
|
-
},
|
|
10064
|
-
"wait": {
|
|
10065
|
-
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
10066
|
-
"name": "wait",
|
|
10067
|
-
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
10068
|
-
"allowNo": true,
|
|
10069
|
-
"type": "boolean"
|
|
10070
|
-
},
|
|
10071
|
-
"input": {
|
|
10072
|
-
"aliases": [
|
|
10073
|
-
"f",
|
|
10074
|
-
"field"
|
|
10075
|
-
],
|
|
10076
|
-
"char": "F",
|
|
10077
|
-
"description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
|
|
10078
|
-
"name": "input",
|
|
10079
|
-
"summary": "Set workflow inputs",
|
|
10080
|
-
"hasDynamicHelp": false,
|
|
10081
|
-
"multiple": true,
|
|
10082
|
-
"type": "option"
|
|
10083
|
-
},
|
|
10084
|
-
"ref": {
|
|
10085
|
-
"description": "The git reference must exist in the project's git repository, and the workflow file must exist at that reference. When this flag is used, the local project is not uploaded; instead, the workflow is run from the exact state of the project at the chosen reference.",
|
|
10086
|
-
"name": "ref",
|
|
10087
|
-
"summary": "Git reference to run the workflow on",
|
|
10088
|
-
"hasDynamicHelp": false,
|
|
10089
|
-
"multiple": false,
|
|
10090
|
-
"type": "option"
|
|
10091
|
-
},
|
|
10092
|
-
"json": {
|
|
10093
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10094
|
-
"name": "json",
|
|
10095
|
-
"allowNo": false,
|
|
10096
|
-
"type": "boolean"
|
|
10097
|
-
}
|
|
10098
|
-
},
|
|
10156
|
+
"description": "view a webhook",
|
|
10157
|
+
"flags": {},
|
|
10099
10158
|
"hasDynamicHelp": false,
|
|
10100
10159
|
"hiddenAliases": [],
|
|
10101
|
-
"id": "
|
|
10160
|
+
"id": "webhook:view",
|
|
10102
10161
|
"pluginAlias": "eas-cli",
|
|
10103
10162
|
"pluginName": "eas-cli",
|
|
10104
10163
|
"pluginType": "core",
|
|
@@ -10145,70 +10204,36 @@
|
|
|
10145
10204
|
}
|
|
10146
10205
|
},
|
|
10147
10206
|
"contextDefinition": {
|
|
10148
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
10149
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
10150
|
-
"projectDir": {},
|
|
10151
|
-
"vcsClient": {},
|
|
10152
10207
|
"loggedIn": {}
|
|
10153
10208
|
},
|
|
10154
10209
|
"isESM": false,
|
|
10155
10210
|
"relativePath": [
|
|
10156
10211
|
"build",
|
|
10157
10212
|
"commands",
|
|
10158
|
-
"
|
|
10159
|
-
"
|
|
10213
|
+
"webhook",
|
|
10214
|
+
"view.js"
|
|
10160
10215
|
]
|
|
10161
10216
|
},
|
|
10162
|
-
"workflow:
|
|
10217
|
+
"workflow:cancel": {
|
|
10163
10218
|
"aliases": [],
|
|
10164
10219
|
"args": {},
|
|
10165
|
-
"description": "
|
|
10220
|
+
"description": "Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs to cancel.",
|
|
10166
10221
|
"flags": {
|
|
10167
|
-
"
|
|
10168
|
-
"description": "
|
|
10169
|
-
"name": "
|
|
10170
|
-
"
|
|
10171
|
-
"hasDynamicHelp": false,
|
|
10172
|
-
"multiple": false,
|
|
10173
|
-
"type": "option"
|
|
10174
|
-
},
|
|
10175
|
-
"status": {
|
|
10176
|
-
"description": "If present, filter the returned runs to select those with the specified status",
|
|
10177
|
-
"name": "status",
|
|
10178
|
-
"required": false,
|
|
10179
|
-
"hasDynamicHelp": false,
|
|
10180
|
-
"multiple": false,
|
|
10181
|
-
"options": [
|
|
10182
|
-
"ACTION_REQUIRED",
|
|
10183
|
-
"CANCELED",
|
|
10184
|
-
"FAILURE",
|
|
10185
|
-
"IN_PROGRESS",
|
|
10186
|
-
"NEW",
|
|
10187
|
-
"SUCCESS"
|
|
10188
|
-
],
|
|
10189
|
-
"type": "option"
|
|
10190
|
-
},
|
|
10191
|
-
"json": {
|
|
10192
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10193
|
-
"name": "json",
|
|
10222
|
+
"non-interactive": {
|
|
10223
|
+
"description": "Run the command in non-interactive mode.",
|
|
10224
|
+
"name": "non-interactive",
|
|
10225
|
+
"noCacheDefault": true,
|
|
10194
10226
|
"allowNo": false,
|
|
10195
10227
|
"type": "boolean"
|
|
10196
|
-
},
|
|
10197
|
-
"limit": {
|
|
10198
|
-
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
|
|
10199
|
-
"name": "limit",
|
|
10200
|
-
"hasDynamicHelp": false,
|
|
10201
|
-
"multiple": false,
|
|
10202
|
-
"type": "option"
|
|
10203
10228
|
}
|
|
10204
10229
|
},
|
|
10205
10230
|
"hasDynamicHelp": false,
|
|
10206
10231
|
"hiddenAliases": [],
|
|
10207
|
-
"id": "workflow:
|
|
10232
|
+
"id": "workflow:cancel",
|
|
10208
10233
|
"pluginAlias": "eas-cli",
|
|
10209
10234
|
"pluginName": "eas-cli",
|
|
10210
10235
|
"pluginType": "core",
|
|
10211
|
-
"strict":
|
|
10236
|
+
"strict": false,
|
|
10212
10237
|
"enableJsonFlag": false,
|
|
10213
10238
|
"ContextOptions": {
|
|
10214
10239
|
"LoggedIn": {
|
|
@@ -10259,43 +10284,30 @@
|
|
|
10259
10284
|
"build",
|
|
10260
10285
|
"commands",
|
|
10261
10286
|
"workflow",
|
|
10262
|
-
"
|
|
10287
|
+
"cancel.js"
|
|
10263
10288
|
]
|
|
10264
10289
|
},
|
|
10265
|
-
"workflow:
|
|
10290
|
+
"workflow:create": {
|
|
10266
10291
|
"aliases": [],
|
|
10267
10292
|
"args": {
|
|
10268
|
-
"
|
|
10269
|
-
"description": "
|
|
10270
|
-
"name": "
|
|
10293
|
+
"name": {
|
|
10294
|
+
"description": "Name of the workflow file (must end with .yml or .yaml)",
|
|
10295
|
+
"name": "name",
|
|
10296
|
+
"required": false
|
|
10271
10297
|
}
|
|
10272
10298
|
},
|
|
10273
|
-
"description": "
|
|
10299
|
+
"description": "create a new workflow configuration YAML file",
|
|
10274
10300
|
"flags": {
|
|
10275
|
-
"
|
|
10276
|
-
"description": "
|
|
10277
|
-
"name": "
|
|
10278
|
-
"noCacheDefault": true,
|
|
10279
|
-
"allowNo": false,
|
|
10280
|
-
"type": "boolean"
|
|
10281
|
-
},
|
|
10282
|
-
"wait": {
|
|
10283
|
-
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
10284
|
-
"name": "wait",
|
|
10285
|
-
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
10286
|
-
"allowNo": true,
|
|
10287
|
-
"type": "boolean"
|
|
10288
|
-
},
|
|
10289
|
-
"json": {
|
|
10290
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10291
|
-
"name": "json",
|
|
10301
|
+
"skip-validation": {
|
|
10302
|
+
"description": "If set, the workflow file will not be validated before being created",
|
|
10303
|
+
"name": "skip-validation",
|
|
10292
10304
|
"allowNo": false,
|
|
10293
10305
|
"type": "boolean"
|
|
10294
10306
|
}
|
|
10295
10307
|
},
|
|
10296
10308
|
"hasDynamicHelp": false,
|
|
10297
10309
|
"hiddenAliases": [],
|
|
10298
|
-
"id": "workflow:
|
|
10310
|
+
"id": "workflow:create",
|
|
10299
10311
|
"pluginAlias": "eas-cli",
|
|
10300
10312
|
"pluginName": "eas-cli",
|
|
10301
10313
|
"pluginType": "core",
|
|
@@ -10345,7 +10357,6 @@
|
|
|
10345
10357
|
"getDynamicPublicProjectConfigAsync": {},
|
|
10346
10358
|
"getDynamicPrivateProjectConfigAsync": {},
|
|
10347
10359
|
"projectDir": {},
|
|
10348
|
-
"vcsClient": {},
|
|
10349
10360
|
"loggedIn": {}
|
|
10350
10361
|
},
|
|
10351
10362
|
"isESM": false,
|
|
@@ -10353,31 +10364,25 @@
|
|
|
10353
10364
|
"build",
|
|
10354
10365
|
"commands",
|
|
10355
10366
|
"workflow",
|
|
10356
|
-
"
|
|
10367
|
+
"create.js"
|
|
10357
10368
|
]
|
|
10358
10369
|
},
|
|
10359
|
-
"workflow:
|
|
10370
|
+
"workflow:list": {
|
|
10360
10371
|
"aliases": [],
|
|
10361
|
-
"args": {
|
|
10362
|
-
|
|
10363
|
-
"description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
|
|
10364
|
-
"name": "path",
|
|
10365
|
-
"required": true
|
|
10366
|
-
}
|
|
10367
|
-
},
|
|
10368
|
-
"description": "validate a workflow configuration yaml file",
|
|
10372
|
+
"args": {},
|
|
10373
|
+
"description": "List workflows for the current project",
|
|
10369
10374
|
"flags": {
|
|
10370
|
-
"
|
|
10371
|
-
"description": "
|
|
10372
|
-
"name": "
|
|
10373
|
-
"noCacheDefault": true,
|
|
10375
|
+
"json": {
|
|
10376
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10377
|
+
"name": "json",
|
|
10374
10378
|
"allowNo": false,
|
|
10375
10379
|
"type": "boolean"
|
|
10376
10380
|
}
|
|
10377
10381
|
},
|
|
10378
10382
|
"hasDynamicHelp": false,
|
|
10383
|
+
"hidden": true,
|
|
10379
10384
|
"hiddenAliases": [],
|
|
10380
|
-
"id": "workflow:
|
|
10385
|
+
"id": "workflow:list",
|
|
10381
10386
|
"pluginAlias": "eas-cli",
|
|
10382
10387
|
"pluginName": "eas-cli",
|
|
10383
10388
|
"pluginType": "core",
|
|
@@ -10424,9 +10429,6 @@
|
|
|
10424
10429
|
}
|
|
10425
10430
|
},
|
|
10426
10431
|
"contextDefinition": {
|
|
10427
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
10428
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
10429
|
-
"projectDir": {},
|
|
10430
10432
|
"projectId": {},
|
|
10431
10433
|
"loggedIn": {}
|
|
10432
10434
|
},
|
|
@@ -10435,18 +10437,18 @@
|
|
|
10435
10437
|
"build",
|
|
10436
10438
|
"commands",
|
|
10437
10439
|
"workflow",
|
|
10438
|
-
"
|
|
10440
|
+
"list.js"
|
|
10439
10441
|
]
|
|
10440
10442
|
},
|
|
10441
|
-
"workflow:
|
|
10443
|
+
"workflow:logs": {
|
|
10442
10444
|
"aliases": [],
|
|
10443
10445
|
"args": {
|
|
10444
10446
|
"id": {
|
|
10445
|
-
"description": "ID of the workflow run to view",
|
|
10447
|
+
"description": "ID of the workflow run or workflow job to view logs for",
|
|
10446
10448
|
"name": "id"
|
|
10447
10449
|
}
|
|
10448
10450
|
},
|
|
10449
|
-
"description": "view
|
|
10451
|
+
"description": "view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.",
|
|
10450
10452
|
"flags": {
|
|
10451
10453
|
"json": {
|
|
10452
10454
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
@@ -10460,11 +10462,17 @@
|
|
|
10460
10462
|
"noCacheDefault": true,
|
|
10461
10463
|
"allowNo": false,
|
|
10462
10464
|
"type": "boolean"
|
|
10465
|
+
},
|
|
10466
|
+
"all-steps": {
|
|
10467
|
+
"description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
|
|
10468
|
+
"name": "all-steps",
|
|
10469
|
+
"allowNo": false,
|
|
10470
|
+
"type": "boolean"
|
|
10463
10471
|
}
|
|
10464
10472
|
},
|
|
10465
10473
|
"hasDynamicHelp": false,
|
|
10466
10474
|
"hiddenAliases": [],
|
|
10467
|
-
"id": "workflow:
|
|
10475
|
+
"id": "workflow:logs",
|
|
10468
10476
|
"pluginAlias": "eas-cli",
|
|
10469
10477
|
"pluginName": "eas-cli",
|
|
10470
10478
|
"pluginType": "core",
|
|
@@ -10519,50 +10527,65 @@
|
|
|
10519
10527
|
"build",
|
|
10520
10528
|
"commands",
|
|
10521
10529
|
"workflow",
|
|
10522
|
-
"
|
|
10530
|
+
"logs.js"
|
|
10523
10531
|
]
|
|
10524
10532
|
},
|
|
10525
|
-
"
|
|
10533
|
+
"workflow:run": {
|
|
10526
10534
|
"aliases": [],
|
|
10527
|
-
"args": {
|
|
10528
|
-
|
|
10535
|
+
"args": {
|
|
10536
|
+
"file": {
|
|
10537
|
+
"description": "Path to the workflow file to run",
|
|
10538
|
+
"name": "file",
|
|
10539
|
+
"required": true
|
|
10540
|
+
}
|
|
10541
|
+
},
|
|
10542
|
+
"description": "run an EAS workflow. The entire local project directory will be packaged and uploaded to EAS servers for the workflow run, unless the --ref flag is used.",
|
|
10529
10543
|
"flags": {
|
|
10530
|
-
"
|
|
10531
|
-
"description": "
|
|
10532
|
-
"name": "
|
|
10533
|
-
"
|
|
10534
|
-
"
|
|
10535
|
-
"
|
|
10536
|
-
"BUILD",
|
|
10537
|
-
"SUBMIT"
|
|
10538
|
-
],
|
|
10539
|
-
"type": "option"
|
|
10544
|
+
"non-interactive": {
|
|
10545
|
+
"description": "Run the command in non-interactive mode.",
|
|
10546
|
+
"name": "non-interactive",
|
|
10547
|
+
"noCacheDefault": true,
|
|
10548
|
+
"allowNo": false,
|
|
10549
|
+
"type": "boolean"
|
|
10540
10550
|
},
|
|
10541
|
-
"
|
|
10542
|
-
"description": "
|
|
10543
|
-
"name": "
|
|
10551
|
+
"wait": {
|
|
10552
|
+
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
10553
|
+
"name": "wait",
|
|
10554
|
+
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
10555
|
+
"allowNo": true,
|
|
10556
|
+
"type": "boolean"
|
|
10557
|
+
},
|
|
10558
|
+
"input": {
|
|
10559
|
+
"aliases": [
|
|
10560
|
+
"f",
|
|
10561
|
+
"field"
|
|
10562
|
+
],
|
|
10563
|
+
"char": "F",
|
|
10564
|
+
"description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
|
|
10565
|
+
"name": "input",
|
|
10566
|
+
"summary": "Set workflow inputs",
|
|
10544
10567
|
"hasDynamicHelp": false,
|
|
10545
|
-
"multiple":
|
|
10568
|
+
"multiple": true,
|
|
10546
10569
|
"type": "option"
|
|
10547
10570
|
},
|
|
10548
|
-
"
|
|
10549
|
-
"description": "
|
|
10550
|
-
"name": "
|
|
10571
|
+
"ref": {
|
|
10572
|
+
"description": "The git reference must exist in the project's git repository, and the workflow file must exist at that reference. When this flag is used, the local project is not uploaded; instead, the workflow is run from the exact state of the project at the chosen reference.",
|
|
10573
|
+
"name": "ref",
|
|
10574
|
+
"summary": "Git reference to run the workflow on",
|
|
10551
10575
|
"hasDynamicHelp": false,
|
|
10552
10576
|
"multiple": false,
|
|
10553
10577
|
"type": "option"
|
|
10554
10578
|
},
|
|
10555
|
-
"
|
|
10556
|
-
"description": "
|
|
10557
|
-
"name": "
|
|
10558
|
-
"noCacheDefault": true,
|
|
10579
|
+
"json": {
|
|
10580
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10581
|
+
"name": "json",
|
|
10559
10582
|
"allowNo": false,
|
|
10560
10583
|
"type": "boolean"
|
|
10561
10584
|
}
|
|
10562
10585
|
},
|
|
10563
10586
|
"hasDynamicHelp": false,
|
|
10564
10587
|
"hiddenAliases": [],
|
|
10565
|
-
"id": "
|
|
10588
|
+
"id": "workflow:run",
|
|
10566
10589
|
"pluginAlias": "eas-cli",
|
|
10567
10590
|
"pluginName": "eas-cli",
|
|
10568
10591
|
"pluginType": "core",
|
|
@@ -10609,39 +10632,66 @@
|
|
|
10609
10632
|
}
|
|
10610
10633
|
},
|
|
10611
10634
|
"contextDefinition": {
|
|
10612
|
-
"
|
|
10635
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10636
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
10637
|
+
"projectDir": {},
|
|
10638
|
+
"vcsClient": {},
|
|
10613
10639
|
"loggedIn": {}
|
|
10614
10640
|
},
|
|
10615
10641
|
"isESM": false,
|
|
10616
10642
|
"relativePath": [
|
|
10617
10643
|
"build",
|
|
10618
10644
|
"commands",
|
|
10619
|
-
"
|
|
10620
|
-
"
|
|
10645
|
+
"workflow",
|
|
10646
|
+
"run.js"
|
|
10621
10647
|
]
|
|
10622
10648
|
},
|
|
10623
|
-
"
|
|
10649
|
+
"workflow:runs": {
|
|
10624
10650
|
"aliases": [],
|
|
10625
|
-
"args": {
|
|
10626
|
-
|
|
10627
|
-
"description": "ID of the webhook to delete",
|
|
10628
|
-
"name": "ID",
|
|
10629
|
-
"required": false
|
|
10630
|
-
}
|
|
10631
|
-
},
|
|
10632
|
-
"description": "delete a webhook",
|
|
10651
|
+
"args": {},
|
|
10652
|
+
"description": "list recent workflow runs for this project, with their IDs, statuses, and timestamps",
|
|
10633
10653
|
"flags": {
|
|
10634
|
-
"
|
|
10635
|
-
"description": "
|
|
10636
|
-
"name": "
|
|
10637
|
-
"
|
|
10654
|
+
"workflow": {
|
|
10655
|
+
"description": "If present, the query will only return runs for the specified workflow file name",
|
|
10656
|
+
"name": "workflow",
|
|
10657
|
+
"required": false,
|
|
10658
|
+
"hasDynamicHelp": false,
|
|
10659
|
+
"multiple": false,
|
|
10660
|
+
"type": "option"
|
|
10661
|
+
},
|
|
10662
|
+
"status": {
|
|
10663
|
+
"description": "If present, filter the returned runs to select those with the specified status",
|
|
10664
|
+
"name": "status",
|
|
10665
|
+
"required": false,
|
|
10666
|
+
"hasDynamicHelp": false,
|
|
10667
|
+
"multiple": false,
|
|
10668
|
+
"options": [
|
|
10669
|
+
"ACTION_REQUIRED",
|
|
10670
|
+
"CANCELED",
|
|
10671
|
+
"FAILURE",
|
|
10672
|
+
"IN_PROGRESS",
|
|
10673
|
+
"NEW",
|
|
10674
|
+
"SUCCESS"
|
|
10675
|
+
],
|
|
10676
|
+
"type": "option"
|
|
10677
|
+
},
|
|
10678
|
+
"json": {
|
|
10679
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10680
|
+
"name": "json",
|
|
10638
10681
|
"allowNo": false,
|
|
10639
10682
|
"type": "boolean"
|
|
10683
|
+
},
|
|
10684
|
+
"limit": {
|
|
10685
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
|
|
10686
|
+
"name": "limit",
|
|
10687
|
+
"hasDynamicHelp": false,
|
|
10688
|
+
"multiple": false,
|
|
10689
|
+
"type": "option"
|
|
10640
10690
|
}
|
|
10641
10691
|
},
|
|
10642
10692
|
"hasDynamicHelp": false,
|
|
10643
10693
|
"hiddenAliases": [],
|
|
10644
|
-
"id": "
|
|
10694
|
+
"id": "workflow:runs",
|
|
10645
10695
|
"pluginAlias": "eas-cli",
|
|
10646
10696
|
"pluginName": "eas-cli",
|
|
10647
10697
|
"pluginType": "core",
|
|
@@ -10695,25 +10745,33 @@
|
|
|
10695
10745
|
"relativePath": [
|
|
10696
10746
|
"build",
|
|
10697
10747
|
"commands",
|
|
10698
|
-
"
|
|
10699
|
-
"
|
|
10748
|
+
"workflow",
|
|
10749
|
+
"runs.js"
|
|
10700
10750
|
]
|
|
10701
10751
|
},
|
|
10702
|
-
"
|
|
10752
|
+
"workflow:status": {
|
|
10703
10753
|
"aliases": [],
|
|
10704
|
-
"args": {
|
|
10705
|
-
|
|
10754
|
+
"args": {
|
|
10755
|
+
"WORKFLOW_RUN_ID": {
|
|
10756
|
+
"description": "A workflow run ID.",
|
|
10757
|
+
"name": "WORKFLOW_RUN_ID"
|
|
10758
|
+
}
|
|
10759
|
+
},
|
|
10760
|
+
"description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
10706
10761
|
"flags": {
|
|
10707
|
-
"
|
|
10708
|
-
"description": "
|
|
10709
|
-
"name": "
|
|
10710
|
-
"
|
|
10711
|
-
"
|
|
10712
|
-
"
|
|
10713
|
-
|
|
10714
|
-
|
|
10715
|
-
|
|
10716
|
-
"
|
|
10762
|
+
"non-interactive": {
|
|
10763
|
+
"description": "Run the command in non-interactive mode.",
|
|
10764
|
+
"name": "non-interactive",
|
|
10765
|
+
"noCacheDefault": true,
|
|
10766
|
+
"allowNo": false,
|
|
10767
|
+
"type": "boolean"
|
|
10768
|
+
},
|
|
10769
|
+
"wait": {
|
|
10770
|
+
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
10771
|
+
"name": "wait",
|
|
10772
|
+
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
10773
|
+
"allowNo": true,
|
|
10774
|
+
"type": "boolean"
|
|
10717
10775
|
},
|
|
10718
10776
|
"json": {
|
|
10719
10777
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
@@ -10724,7 +10782,7 @@
|
|
|
10724
10782
|
},
|
|
10725
10783
|
"hasDynamicHelp": false,
|
|
10726
10784
|
"hiddenAliases": [],
|
|
10727
|
-
"id": "
|
|
10785
|
+
"id": "workflow:status",
|
|
10728
10786
|
"pluginAlias": "eas-cli",
|
|
10729
10787
|
"pluginName": "eas-cli",
|
|
10730
10788
|
"pluginType": "core",
|
|
@@ -10771,55 +10829,31 @@
|
|
|
10771
10829
|
}
|
|
10772
10830
|
},
|
|
10773
10831
|
"contextDefinition": {
|
|
10774
|
-
"
|
|
10832
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10833
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
10834
|
+
"projectDir": {},
|
|
10835
|
+
"vcsClient": {},
|
|
10775
10836
|
"loggedIn": {}
|
|
10776
10837
|
},
|
|
10777
10838
|
"isESM": false,
|
|
10778
10839
|
"relativePath": [
|
|
10779
10840
|
"build",
|
|
10780
10841
|
"commands",
|
|
10781
|
-
"
|
|
10782
|
-
"
|
|
10842
|
+
"workflow",
|
|
10843
|
+
"status.js"
|
|
10783
10844
|
]
|
|
10784
10845
|
},
|
|
10785
|
-
"
|
|
10846
|
+
"workflow:validate": {
|
|
10786
10847
|
"aliases": [],
|
|
10787
|
-
"args": {
|
|
10788
|
-
|
|
10848
|
+
"args": {
|
|
10849
|
+
"path": {
|
|
10850
|
+
"description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
|
|
10851
|
+
"name": "path",
|
|
10852
|
+
"required": true
|
|
10853
|
+
}
|
|
10854
|
+
},
|
|
10855
|
+
"description": "validate a workflow configuration yaml file",
|
|
10789
10856
|
"flags": {
|
|
10790
|
-
"id": {
|
|
10791
|
-
"description": "Webhook ID",
|
|
10792
|
-
"name": "id",
|
|
10793
|
-
"required": true,
|
|
10794
|
-
"hasDynamicHelp": false,
|
|
10795
|
-
"multiple": false,
|
|
10796
|
-
"type": "option"
|
|
10797
|
-
},
|
|
10798
|
-
"event": {
|
|
10799
|
-
"description": "Event type that triggers the webhook",
|
|
10800
|
-
"name": "event",
|
|
10801
|
-
"hasDynamicHelp": false,
|
|
10802
|
-
"multiple": false,
|
|
10803
|
-
"options": [
|
|
10804
|
-
"BUILD",
|
|
10805
|
-
"SUBMIT"
|
|
10806
|
-
],
|
|
10807
|
-
"type": "option"
|
|
10808
|
-
},
|
|
10809
|
-
"url": {
|
|
10810
|
-
"description": "Webhook URL",
|
|
10811
|
-
"name": "url",
|
|
10812
|
-
"hasDynamicHelp": false,
|
|
10813
|
-
"multiple": false,
|
|
10814
|
-
"type": "option"
|
|
10815
|
-
},
|
|
10816
|
-
"secret": {
|
|
10817
|
-
"description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
|
|
10818
|
-
"name": "secret",
|
|
10819
|
-
"hasDynamicHelp": false,
|
|
10820
|
-
"multiple": false,
|
|
10821
|
-
"type": "option"
|
|
10822
|
-
},
|
|
10823
10857
|
"non-interactive": {
|
|
10824
10858
|
"description": "Run the command in non-interactive mode.",
|
|
10825
10859
|
"name": "non-interactive",
|
|
@@ -10830,7 +10864,7 @@
|
|
|
10830
10864
|
},
|
|
10831
10865
|
"hasDynamicHelp": false,
|
|
10832
10866
|
"hiddenAliases": [],
|
|
10833
|
-
"id": "
|
|
10867
|
+
"id": "workflow:validate",
|
|
10834
10868
|
"pluginAlias": "eas-cli",
|
|
10835
10869
|
"pluginName": "eas-cli",
|
|
10836
10870
|
"pluginType": "core",
|
|
@@ -10877,30 +10911,47 @@
|
|
|
10877
10911
|
}
|
|
10878
10912
|
},
|
|
10879
10913
|
"contextDefinition": {
|
|
10914
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10915
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
10916
|
+
"projectDir": {},
|
|
10917
|
+
"projectId": {},
|
|
10880
10918
|
"loggedIn": {}
|
|
10881
10919
|
},
|
|
10882
10920
|
"isESM": false,
|
|
10883
10921
|
"relativePath": [
|
|
10884
10922
|
"build",
|
|
10885
10923
|
"commands",
|
|
10886
|
-
"
|
|
10887
|
-
"
|
|
10924
|
+
"workflow",
|
|
10925
|
+
"validate.js"
|
|
10888
10926
|
]
|
|
10889
10927
|
},
|
|
10890
|
-
"
|
|
10928
|
+
"workflow:view": {
|
|
10891
10929
|
"aliases": [],
|
|
10892
10930
|
"args": {
|
|
10893
|
-
"
|
|
10894
|
-
"description": "ID of the
|
|
10895
|
-
"name": "
|
|
10896
|
-
|
|
10931
|
+
"id": {
|
|
10932
|
+
"description": "ID of the workflow run to view",
|
|
10933
|
+
"name": "id"
|
|
10934
|
+
}
|
|
10935
|
+
},
|
|
10936
|
+
"description": "view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
10937
|
+
"flags": {
|
|
10938
|
+
"json": {
|
|
10939
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10940
|
+
"name": "json",
|
|
10941
|
+
"allowNo": false,
|
|
10942
|
+
"type": "boolean"
|
|
10943
|
+
},
|
|
10944
|
+
"non-interactive": {
|
|
10945
|
+
"description": "Run the command in non-interactive mode.",
|
|
10946
|
+
"name": "non-interactive",
|
|
10947
|
+
"noCacheDefault": true,
|
|
10948
|
+
"allowNo": false,
|
|
10949
|
+
"type": "boolean"
|
|
10897
10950
|
}
|
|
10898
10951
|
},
|
|
10899
|
-
"description": "view a webhook",
|
|
10900
|
-
"flags": {},
|
|
10901
10952
|
"hasDynamicHelp": false,
|
|
10902
10953
|
"hiddenAliases": [],
|
|
10903
|
-
"id": "
|
|
10954
|
+
"id": "workflow:view",
|
|
10904
10955
|
"pluginAlias": "eas-cli",
|
|
10905
10956
|
"pluginName": "eas-cli",
|
|
10906
10957
|
"pluginType": "core",
|
|
@@ -10947,13 +10998,14 @@
|
|
|
10947
10998
|
}
|
|
10948
10999
|
},
|
|
10949
11000
|
"contextDefinition": {
|
|
11001
|
+
"projectId": {},
|
|
10950
11002
|
"loggedIn": {}
|
|
10951
11003
|
},
|
|
10952
11004
|
"isESM": false,
|
|
10953
11005
|
"relativePath": [
|
|
10954
11006
|
"build",
|
|
10955
11007
|
"commands",
|
|
10956
|
-
"
|
|
11008
|
+
"workflow",
|
|
10957
11009
|
"view.js"
|
|
10958
11010
|
]
|
|
10959
11011
|
},
|
|
@@ -12676,5 +12728,5 @@
|
|
|
12676
12728
|
]
|
|
12677
12729
|
}
|
|
12678
12730
|
},
|
|
12679
|
-
"version": "20.
|
|
12731
|
+
"version": "20.2.0"
|
|
12680
12732
|
}
|