-
Notifications
You must be signed in to change notification settings - Fork 483
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[API design] Fleet-maintained apps for Windows #26381
Open
noahtalerman
wants to merge
6
commits into
docs-v4.66.0
Choose a base branch
from
windows-fma-23118
base: docs-v4.66.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
dbf11de
Add changes
noahtalerman e1df6a0
Merge branch 'docs-v4.66.0' of github.com:fleetdm/fleet into windows-…
noahtalerman 313a35b
Merge branch 'docs-v4.66.0' of github.com:fleetdm/fleet into windows-…
noahtalerman 576b483
Update API
noahtalerman bad0ce5
Update rest-api.md
noahtalerman d690a0a
Update docs/REST API/rest-api.md
noahtalerman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9515,16 +9515,18 @@ List available Fleet-maintained apps. | |
}, | ||
{ | ||
"id": 2, | ||
"name": "Adobe Acrobat Reader", | ||
"version": "24.002.21005", | ||
"platform": "darwin" | ||
"name": "1Password", | ||
"version": "8.10.40", | ||
"platform": "windows" | ||
}, | ||
{ | ||
"id": 3, | ||
"name": "Box Drive", | ||
"version": "2.39.179", | ||
"platform": "darwin" | ||
"platform": "darwin", | ||
"software_title_id": 1 | ||
}, | ||
... | ||
], | ||
"meta": { | ||
"has_next_results": false, | ||
|
@@ -9565,6 +9567,7 @@ Returns information about the specified Fleet-maintained app. | |
"platform": "darwin", | ||
"install_script": "#!/bin/sh\ninstaller -pkg \"$INSTALLER_PATH\" -target /", | ||
"uninstall_script": "#!/bin/sh\npkg_ids=$PACKAGE_ID\nfor pkg_id in '${pkg_ids[@]}'...", | ||
"software_title_id": 3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Dev noteIf the team already has the software added (as a Fleet-maintained app, App Store (app), or custom package), this is the software title ID for that software. If the team doesn't have the software added, |
||
} | ||
} | ||
``` | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dev note
If the team already has the software added (as a Fleet-maintained app, App Store (app), or custom package), this is the software title ID for that software.
If the team doesn't have the software added,
software_title_id
is omitted.