You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'display screenshot feedback submitted by TestFlight testers, including their comments, device information, and screenshot URLs';
staticoverrideexamples=[
'$ eas testflight:feedback \t # Show the most recent feedback submissions',
'$ eas testflight:feedback –limit 50 –offset 20 \t # Page through submissions',
'$ eas testflight:feedback –json \t # Print a page of feedback, with paging metadata, as JSON',
'$ eas testflight:feedback AD8JvKbr0BK0Cj9OnM6WO6I \t # Show a single submission by ID',
'$ eas testflight:feedback ${{ app_store_connect.beta_feedback.url }} –json \t # Look up whatever an EAS workflow trigger reported',
];
staticoverrideargs={
id: Args.string({
description:
'ID or App Store Connect API URL of a single submission to show. Accepts ${{ app_store_connect.beta_feedback.id }} or ${{ app_store_connect.beta_feedback.url }} from an EAS workflow trigger.',
required: false,
}),
};
staticoverrideflags={
type: Flags.option({
description:
'Kind of feedback the ID refers to. Only needed when passing a bare ID for a crash; a URL already encodes it.',
options: ['crash','screenshot']asconst,
})(),
profile: Flags.string({
char: 'e',
description:
'Name of the submit profile from eas.json used to resolve the bundle identifier and App Store Connect API key. Defaults to "production".',