For command teams tab list(https://pnp.github.io/cli-microsoft365/cmd/teams/tab/tab-list), we introduce a duplicate property called teamsAppTabId at the root of the result.
Duplicate data is not useful at all, so let's get rid of it.
|
const items = await odata.getAllItems<TeamsTab>(endpoint); |
|
items.forEach(i => { |
|
(i as any).teamsAppTabId = i.teamsApp!.id; |
|
}); |
For command
teams tab list(https://pnp.github.io/cli-microsoft365/cmd/teams/tab/tab-list), we introduce a duplicate property calledteamsAppTabIdat the root of the result.Duplicate data is not useful at all, so let's get rid of it.
cli-microsoft365/src/m365/teams/commands/tab/tab-list.ts
Lines 70 to 73 in c74fe4b