Skip to content

Commit

Permalink
Merge branch 'v0.7.x' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
vhadianto committed Sep 9, 2024
2 parents 6b9bd7e + 5786bc2 commit f83d2c3
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Flowpipe SDK Go

## v0.7.1 [2024-09-09]

SDK generated from Flowpipe v0.9.1

## v0.7.0 [2024-09-04]

SDK generated from Flowpipe v0.9.x
Expand Down
55 changes: 55 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1556,6 +1556,23 @@ components:
query: query
description: description
end_line_number: 0
params:
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: ""
tags:
key: tags
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: ""
tags:
key: tags
start_line_number: 6
title: title
type: type
Expand Down Expand Up @@ -1586,6 +1603,10 @@ components:
type: string
name:
type: string
params:
items:
$ref: '#/components/schemas/FpPipelineParam'
type: array
pipelines:
items:
$ref: '#/components/schemas/FpTriggerPipeline'
Expand Down Expand Up @@ -2029,6 +2050,23 @@ components:
query: query
description: description
end_line_number: 0
params:
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: ""
tags:
key: tags
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: ""
tags:
key: tags
start_line_number: 6
title: title
type: type
Expand All @@ -2050,6 +2088,23 @@ components:
query: query
description: description
end_line_number: 0
params:
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: ""
tags:
key: tags
- default: ""
type_string: type_string
name: name
description: description
optional: true
type: ""
tags:
key: tags
start_line_number: 6
title: title
type: type
Expand Down
26 changes: 26 additions & 0 deletions docs/FpTrigger.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Name | Type | Description | Notes
**FileName** | Pointer to **string** | | [optional]
**Mod** | Pointer to **string** | | [optional]
**Name** | Pointer to **string** | | [optional]
**Params** | Pointer to [**[]FpPipelineParam**](FpPipelineParam.md) | | [optional]
**Pipelines** | Pointer to [**[]FpTriggerPipeline**](FpTriggerPipeline.md) | | [optional]
**Query** | Pointer to **string** | | [optional]
**RootMod** | Pointer to **string** | | [optional]
Expand Down Expand Up @@ -215,6 +216,31 @@ SetName sets Name field to given value.

HasName returns a boolean if a field has been set.

### GetParams

`func (o *FpTrigger) GetParams() []FpPipelineParam`

GetParams returns the Params field if non-nil, zero value otherwise.

### GetParamsOk

`func (o *FpTrigger) GetParamsOk() (*[]FpPipelineParam, bool)`

GetParamsOk returns a tuple with the Params field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetParams

`func (o *FpTrigger) SetParams(v []FpPipelineParam)`

SetParams sets Params field to given value.

### HasParams

`func (o *FpTrigger) HasParams() bool`

HasParams returns a boolean if a field has been set.

### GetPipelines

`func (o *FpTrigger) GetPipelines() []FpTriggerPipeline`
Expand Down
36 changes: 36 additions & 0 deletions model_fp_trigger.go

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

0 comments on commit f83d2c3

Please sign in to comment.