Skip to content

Commit

Permalink
[sherlock-build] generated from 97426f7
Browse files Browse the repository at this point in the history
  • Loading branch information
broadbot committed May 21, 2024
1 parent 97426f7 commit dc76dfd
Show file tree
Hide file tree
Showing 73 changed files with 107 additions and 78 deletions.

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

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

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/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.6.0-SNAPSHOT
7.7.0-SNAPSHOT
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.4.2
## @sherlock-js-client/sherlock@v1.4.3

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].2 --save
npm install @sherlock-js-client/[email protected].3 --save
```

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

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/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sherlock-js-client/sherlock",
"version": "v1.4.2",
"version": "v1.4.3",
"description": "OpenAPI client for @sherlock-js-client/sherlock",
"author": "OpenAPI-Generator",
"repository": {
Expand All @@ -16,6 +16,6 @@
"prepare": "npm run build"
},
"devDependencies": {
"typescript": "^4.0"
"typescript": "^4.0 || ^5.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export interface ErrorsErrorResponse {
/**
* Check if a given object implements the ErrorsErrorResponse interface.
*/
export function instanceOfErrorsErrorResponse(value: object): boolean {
export function instanceOfErrorsErrorResponse(value: object): value is ErrorsErrorResponse {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export interface MiscConnectionCheckResponse {
/**
* Check if a given object implements the MiscConnectionCheckResponse interface.
*/
export function instanceOfMiscConnectionCheckResponse(value: object): boolean {
export function instanceOfMiscConnectionCheckResponse(value: object): value is MiscConnectionCheckResponse {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export interface MiscStatusResponse {
/**
* Check if a given object implements the MiscStatusResponse interface.
*/
export function instanceOfMiscStatusResponse(value: object): boolean {
export function instanceOfMiscStatusResponse(value: object): value is MiscStatusResponse {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export interface MiscVersionResponse {
/**
* Check if a given object implements the MiscVersionResponse interface.
*/
export function instanceOfMiscVersionResponse(value: object): boolean {
export function instanceOfMiscVersionResponse(value: object): value is MiscVersionResponse {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export interface PagerdutyAlertSummary {
/**
* Check if a given object implements the PagerdutyAlertSummary interface.
*/
export function instanceOfPagerdutyAlertSummary(value: object): boolean {
export function instanceOfPagerdutyAlertSummary(value: object): value is PagerdutyAlertSummary {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export interface PagerdutySendAlertResponse {
/**
* Check if a given object implements the PagerdutySendAlertResponse interface.
*/
export function instanceOfPagerdutySendAlertResponse(value: object): boolean {
export function instanceOfPagerdutySendAlertResponse(value: object): value is PagerdutySendAlertResponse {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export interface SherlockAppVersionV3 {
/**
* Check if a given object implements the SherlockAppVersionV3 interface.
*/
export function instanceOfSherlockAppVersionV3(value: object): boolean {
export function instanceOfSherlockAppVersionV3(value: object): value is SherlockAppVersionV3 {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export interface SherlockAppVersionV3ChangelogResponse {
/**
* Check if a given object implements the SherlockAppVersionV3ChangelogResponse interface.
*/
export function instanceOfSherlockAppVersionV3ChangelogResponse(value: object): boolean {
export function instanceOfSherlockAppVersionV3ChangelogResponse(value: object): value is SherlockAppVersionV3ChangelogResponse {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export interface SherlockAppVersionV3Create {
/**
* Check if a given object implements the SherlockAppVersionV3Create interface.
*/
export function instanceOfSherlockAppVersionV3Create(value: object): boolean {
export function instanceOfSherlockAppVersionV3Create(value: object): value is SherlockAppVersionV3Create {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export interface SherlockAppVersionV3Edit {
/**
* Check if a given object implements the SherlockAppVersionV3Edit interface.
*/
export function instanceOfSherlockAppVersionV3Edit(value: object): boolean {
export function instanceOfSherlockAppVersionV3Edit(value: object): value is SherlockAppVersionV3Edit {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ export interface SherlockChangesetV3 {
/**
* Check if a given object implements the SherlockChangesetV3 interface.
*/
export function instanceOfSherlockChangesetV3(value: object): boolean {
export function instanceOfSherlockChangesetV3(value: object): value is SherlockChangesetV3 {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export interface SherlockChangesetV3PlanRequest {
/**
* Check if a given object implements the SherlockChangesetV3PlanRequest interface.
*/
export function instanceOfSherlockChangesetV3PlanRequest(value: object): boolean {
export function instanceOfSherlockChangesetV3PlanRequest(value: object): value is SherlockChangesetV3PlanRequest {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export interface SherlockChangesetV3PlanRequestChartReleaseEntry {
/**
* Check if a given object implements the SherlockChangesetV3PlanRequestChartReleaseEntry interface.
*/
export function instanceOfSherlockChangesetV3PlanRequestChartReleaseEntry(value: object): boolean {
export function instanceOfSherlockChangesetV3PlanRequestChartReleaseEntry(value: object): value is SherlockChangesetV3PlanRequestChartReleaseEntry {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface SherlockChangesetV3PlanRequestEnvironmentEntry {
/**
* Check if a given object implements the SherlockChangesetV3PlanRequestEnvironmentEntry interface.
*/
export function instanceOfSherlockChangesetV3PlanRequestEnvironmentEntry(value: object): boolean {
export function instanceOfSherlockChangesetV3PlanRequestEnvironmentEntry(value: object): value is SherlockChangesetV3PlanRequestEnvironmentEntry {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ export type SherlockChartReleaseV3ChartVersionResolverEnum = typeof SherlockChar
/**
* Check if a given object implements the SherlockChartReleaseV3 interface.
*/
export function instanceOfSherlockChartReleaseV3(value: object): boolean {
export function instanceOfSherlockChartReleaseV3(value: object): value is SherlockChartReleaseV3 {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export type SherlockChartReleaseV3CreateChartVersionResolverEnum = typeof Sherlo
/**
* Check if a given object implements the SherlockChartReleaseV3Create interface.
*/
export function instanceOfSherlockChartReleaseV3Create(value: object): boolean {
export function instanceOfSherlockChartReleaseV3Create(value: object): value is SherlockChartReleaseV3Create {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface SherlockChartReleaseV3Edit {
/**
* Check if a given object implements the SherlockChartReleaseV3Edit interface.
*/
export function instanceOfSherlockChartReleaseV3Edit(value: object): boolean {
export function instanceOfSherlockChartReleaseV3Edit(value: object): value is SherlockChartReleaseV3Edit {
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion sherlock-typescript-client/src/models/SherlockChartV3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export interface SherlockChartV3 {
/**
* Check if a given object implements the SherlockChartV3 interface.
*/
export function instanceOfSherlockChartV3(value: object): boolean {
export function instanceOfSherlockChartV3(value: object): value is SherlockChartV3 {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export interface SherlockChartV3Create {
/**
* Check if a given object implements the SherlockChartV3Create interface.
*/
export function instanceOfSherlockChartV3Create(value: object): boolean {
export function instanceOfSherlockChartV3Create(value: object): value is SherlockChartV3Create {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export interface SherlockChartV3Edit {
/**
* Check if a given object implements the SherlockChartV3Edit interface.
*/
export function instanceOfSherlockChartV3Edit(value: object): boolean {
export function instanceOfSherlockChartV3Edit(value: object): value is SherlockChartV3Edit {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export interface SherlockChartVersionV3 {
/**
* Check if a given object implements the SherlockChartVersionV3 interface.
*/
export function instanceOfSherlockChartVersionV3(value: object): boolean {
export function instanceOfSherlockChartVersionV3(value: object): value is SherlockChartVersionV3 {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export interface SherlockChartVersionV3ChangelogResponse {
/**
* Check if a given object implements the SherlockChartVersionV3ChangelogResponse interface.
*/
export function instanceOfSherlockChartVersionV3ChangelogResponse(value: object): boolean {
export function instanceOfSherlockChartVersionV3ChangelogResponse(value: object): value is SherlockChartVersionV3ChangelogResponse {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export interface SherlockChartVersionV3Create {
/**
* Check if a given object implements the SherlockChartVersionV3Create interface.
*/
export function instanceOfSherlockChartVersionV3Create(value: object): boolean {
export function instanceOfSherlockChartVersionV3Create(value: object): value is SherlockChartVersionV3Create {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export interface SherlockChartVersionV3Edit {
/**
* Check if a given object implements the SherlockChartVersionV3Edit interface.
*/
export function instanceOfSherlockChartVersionV3Edit(value: object): boolean {
export function instanceOfSherlockChartVersionV3Edit(value: object): value is SherlockChartVersionV3Edit {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export interface SherlockCiIdentifierV3 {
/**
* Check if a given object implements the SherlockCiIdentifierV3 interface.
*/
export function instanceOfSherlockCiIdentifierV3(value: object): boolean {
export function instanceOfSherlockCiIdentifierV3(value: object): value is SherlockCiIdentifierV3 {
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion sherlock-typescript-client/src/models/SherlockCiRunV3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export interface SherlockCiRunV3 {
/**
* Check if a given object implements the SherlockCiRunV3 interface.
*/
export function instanceOfSherlockCiRunV3(value: object): boolean {
export function instanceOfSherlockCiRunV3(value: object): value is SherlockCiRunV3 {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export type SherlockCiRunV3UpsertRelateToChangesetNewVersionsEnum = typeof Sherl
/**
* Check if a given object implements the SherlockCiRunV3Upsert interface.
*/
export function instanceOfSherlockCiRunV3Upsert(value: object): boolean {
export function instanceOfSherlockCiRunV3Upsert(value: object): value is SherlockCiRunV3Upsert {
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion sherlock-typescript-client/src/models/SherlockClusterV3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export type SherlockClusterV3ProviderEnum = typeof SherlockClusterV3ProviderEnum
/**
* Check if a given object implements the SherlockClusterV3 interface.
*/
export function instanceOfSherlockClusterV3(value: object): boolean {
export function instanceOfSherlockClusterV3(value: object): value is SherlockClusterV3 {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export type SherlockClusterV3CreateProviderEnum = typeof SherlockClusterV3Create
/**
* Check if a given object implements the SherlockClusterV3Create interface.
*/
export function instanceOfSherlockClusterV3Create(value: object): boolean {
export function instanceOfSherlockClusterV3Create(value: object): value is SherlockClusterV3Create {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export interface SherlockClusterV3Edit {
/**
* Check if a given object implements the SherlockClusterV3Edit interface.
*/
export function instanceOfSherlockClusterV3Edit(value: object): boolean {
export function instanceOfSherlockClusterV3Edit(value: object): value is SherlockClusterV3Edit {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export interface SherlockDatabaseInstanceV3 {
/**
* Check if a given object implements the SherlockDatabaseInstanceV3 interface.
*/
export function instanceOfSherlockDatabaseInstanceV3(value: object): boolean {
export function instanceOfSherlockDatabaseInstanceV3(value: object): value is SherlockDatabaseInstanceV3 {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface SherlockDatabaseInstanceV3Create {
/**
* Check if a given object implements the SherlockDatabaseInstanceV3Create interface.
*/
export function instanceOfSherlockDatabaseInstanceV3Create(value: object): boolean {
export function instanceOfSherlockDatabaseInstanceV3Create(value: object): value is SherlockDatabaseInstanceV3Create {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export interface SherlockDatabaseInstanceV3Edit {
/**
* Check if a given object implements the SherlockDatabaseInstanceV3Edit interface.
*/
export function instanceOfSherlockDatabaseInstanceV3Edit(value: object): boolean {
export function instanceOfSherlockDatabaseInstanceV3Edit(value: object): value is SherlockDatabaseInstanceV3Edit {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export interface SherlockEnvironmentV3 {
/**
* Check if a given object implements the SherlockEnvironmentV3 interface.
*/
export function instanceOfSherlockEnvironmentV3(value: object): boolean {
export function instanceOfSherlockEnvironmentV3(value: object): value is SherlockEnvironmentV3 {
return true;
}

Expand Down
Loading

0 comments on commit dc76dfd

Please sign in to comment.