Skip to content

Commit

Permalink
Feat/priority software (#92)
Browse files Browse the repository at this point in the history
* add priority for custom software

* formatting

* feat: formatting

* Update index.ts
  • Loading branch information
santese authored Jun 29, 2023
1 parent 39743e1 commit e6cfedf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -494,14 +494,16 @@ export class Addigy {
installationScript: string,
condition: string,
removeScript: string,
priority = 10,
): Promise<object[]> {
let postBody: any = {
base_identifier: baseIdentifier,
version: version,
downloads: downloads,
version,
downloads,
installation_script: installationScript,
condition: condition,
condition,
remove_script: removeScript,
priority,
}

try {
Expand Down

0 comments on commit e6cfedf

Please sign in to comment.