Skip to content

Commit

Permalink
[sherlock-build] generated from 798468b
Browse files Browse the repository at this point in the history
  • Loading branch information
broadbot committed Aug 7, 2024
1 parent 798468b commit 72aad50
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 5 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions sherlock-typescript-client/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## @sherlock-js-client/sherlock@v1.5.28
## @sherlock-js-client/sherlock@v1.5.29

This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:

Expand Down Expand Up @@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
_published:_

```
npm install @sherlock-js-client/[email protected].28 --save
npm install @sherlock-js-client/[email protected].29 --save
```

_unPublished (not recommended):_
Expand Down
4 changes: 2 additions & 2 deletions sherlock-typescript-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sherlock-typescript-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sherlock-js-client/sherlock",
"version": "v1.5.28",
"version": "v1.5.29",
"description": "OpenAPI client for @sherlock-js-client/sherlock",
"author": "OpenAPI-Generator",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ export interface SherlockChangesetV3PlanRequestEnvironmentEntry {
* @memberof SherlockChangesetV3PlanRequestEnvironmentEntry
*/
excludeCharts?: Array<string>;
/**
* If true, chart releases app versions will only be updated if doing so wouldn't change the detected Git branch. This flag has no effect if the updated chart release has no app version branch.
* @type {boolean}
* @memberof SherlockChangesetV3PlanRequestEnvironmentEntry
*/
filterToMatchingBranches?: boolean;
/**
*
* @type {string}
Expand Down Expand Up @@ -70,6 +76,7 @@ export function SherlockChangesetV3PlanRequestEnvironmentEntryFromJSONTyped(json

'environment': json['environment'] == null ? undefined : json['environment'],
'excludeCharts': json['excludeCharts'] == null ? undefined : json['excludeCharts'],
'filterToMatchingBranches': json['filterToMatchingBranches'] == null ? undefined : json['filterToMatchingBranches'],
'followVersionsFromOtherEnvironment': json['followVersionsFromOtherEnvironment'] == null ? undefined : json['followVersionsFromOtherEnvironment'],
'includeCharts': json['includeCharts'] == null ? undefined : json['includeCharts'],
'useExactVersionsFromOtherEnvironment': json['useExactVersionsFromOtherEnvironment'] == null ? undefined : json['useExactVersionsFromOtherEnvironment'],
Expand All @@ -84,6 +91,7 @@ export function SherlockChangesetV3PlanRequestEnvironmentEntryToJSON(value?: She

'environment': value['environment'],
'excludeCharts': value['excludeCharts'],
'filterToMatchingBranches': value['filterToMatchingBranches'],
'followVersionsFromOtherEnvironment': value['followVersionsFromOtherEnvironment'],
'includeCharts': value['includeCharts'],
'useExactVersionsFromOtherEnvironment': value['useExactVersionsFromOtherEnvironment'],
Expand Down
4 changes: 4 additions & 0 deletions sherlock/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -8126,6 +8126,10 @@ const docTemplate = `{
"type": "string"
}
},
"filterToMatchingBranches": {
"description": "If true, chart releases app versions will only be updated if doing so wouldn't change the detected Git branch. This flag has no effect if the updated chart release has no app version branch.",
"type": "boolean"
},
"followVersionsFromOtherEnvironment": {
"type": "string"
},
Expand Down
4 changes: 4 additions & 0 deletions sherlock/docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -8123,6 +8123,10 @@
"type": "string"
}
},
"filterToMatchingBranches": {
"description": "If true, chart releases app versions will only be updated if doing so wouldn't change the detected Git branch. This flag has no effect if the updated chart release has no app version branch.",
"type": "boolean"
},
"followVersionsFromOtherEnvironment": {
"type": "string"
},
Expand Down
5 changes: 5 additions & 0 deletions sherlock/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,11 @@ definitions:
items:
type: string
type: array
filterToMatchingBranches:
description: If true, chart releases app versions will only be updated if
doing so wouldn't change the detected Git branch. This flag has no effect
if the updated chart release has no app version branch.
type: boolean
followVersionsFromOtherEnvironment:
type: string
includeCharts:
Expand Down

0 comments on commit 72aad50

Please sign in to comment.