Skip to content

Commit

Permalink
feat: add force property to deployment to sqs (#227)
Browse files Browse the repository at this point in the history
* add force property to deployment to sqs

* fix

* fix
  • Loading branch information
kuruk-mm committed Jul 13, 2023
1 parent fc44875 commit b923191
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/misc/deployments-to-sqs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export type DeploymentToSqs = {
authChain: AuthChain
}
contentServerUrls?: string[]
force?: boolean
}

/**
Expand All @@ -33,6 +34,10 @@ export namespace DeploymentToSqs {
type: 'array',
items: { type: 'string' },
nullable: true
},
force: {
type: 'boolean',
nullable: true
}
},
additionalProperties: true
Expand Down

0 comments on commit b923191

Please sign in to comment.