Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated Flowpipe SDK to incorporate latest API changes and the new Trigger API endpoints. #13

Merged
merged 4 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@ api_variable.go
client.go
configuration.go
docs/CmdPipeline.md
docs/CmdTrigger.md
docs/ExecutionExecution.md
docs/ExecutionPipelineExecution.md
docs/ExecutionStepExecution.md
docs/ExecutionStepExecutionOutput.md
docs/ExecutionStepExecutionStepForEach.md
docs/ExecutionStepStatus.md
docs/FlowpipeRequire.md
docs/FlowpipeResponseMetadata.md
docs/FlowpipeTriggerResponseMetadata.md
docs/FpIntegration.md
docs/FpNotifier.md
docs/FpNotify.md
Expand Down Expand Up @@ -53,23 +56,28 @@ docs/OpenGraph.md
docs/PerrErrorDetailModel.md
docs/PerrErrorModel.md
docs/PipelineApi.md
docs/PipelineExecutionResponse.md
docs/Process.md
docs/ProcessApi.md
docs/ProcessEventLog.md
docs/Require.md
docs/TriggerApi.md
docs/TriggerExecutionResponse.md
docs/VariableApi.md
git_push.sh
go.mod
go.sum
model_cmd_pipeline.go
model_cmd_trigger.go
model_execution_execution.go
model_execution_pipeline_execution.go
model_execution_step_execution.go
model_execution_step_execution_output.go
model_execution_step_execution_step_for_each.go
model_execution_step_status.go
model_flowpipe_require.go
model_flowpipe_response_metadata.go
model_flowpipe_trigger_response_metadata.go
model_fp_integration.go
model_fp_notifier.go
model_fp_notify.go
Expand Down Expand Up @@ -100,8 +108,10 @@ model_modconfig_step_retry.go
model_open_graph.go
model_perr_error_detail_model.go
model_perr_error_model.go
model_pipeline_execution_response.go
model_process.go
model_process_event_log.go
model_require.go
model_trigger_execution_response.go
response.go
utils.go
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ Class | Method | HTTP request | Description
*ProcessApi* | [**GetExecution**](docs/ProcessApi.md#getexecution) | **Get** /process/{process_id}/execution | Get process execution
*ProcessApi* | [**GetLog**](docs/ProcessApi.md#getlog) | **Get** /process/{process_id}/log/process.json | Get process log
*ProcessApi* | [**List**](docs/ProcessApi.md#list) | **Get** /process | List processs
*TriggerApi* | [**Command**](docs/TriggerApi.md#command) | **Post** /trigger/{trigger_name}/command | Execute a trigger command
*TriggerApi* | [**Get**](docs/TriggerApi.md#get) | **Get** /trigger/{trigger_name} | Get trigger
*TriggerApi* | [**List**](docs/TriggerApi.md#list) | **Get** /trigger | List triggers
*VariableApi* | [**Get**](docs/VariableApi.md#get) | **Get** /variable/{variable_name} | Get variable
Expand All @@ -101,13 +102,16 @@ Class | Method | HTTP request | Description
## Documentation For Models

- [CmdPipeline](docs/CmdPipeline.md)
- [CmdTrigger](docs/CmdTrigger.md)
- [ExecutionExecution](docs/ExecutionExecution.md)
- [ExecutionPipelineExecution](docs/ExecutionPipelineExecution.md)
- [ExecutionStepExecution](docs/ExecutionStepExecution.md)
- [ExecutionStepExecutionOutput](docs/ExecutionStepExecutionOutput.md)
- [ExecutionStepExecutionStepForEach](docs/ExecutionStepExecutionStepForEach.md)
- [ExecutionStepStatus](docs/ExecutionStepStatus.md)
- [FlowpipeRequire](docs/FlowpipeRequire.md)
- [FlowpipeResponseMetadata](docs/FlowpipeResponseMetadata.md)
- [FlowpipeTriggerResponseMetadata](docs/FlowpipeTriggerResponseMetadata.md)
- [FpIntegration](docs/FpIntegration.md)
- [FpNotifier](docs/FpNotifier.md)
- [FpNotify](docs/FpNotify.md)
Expand Down Expand Up @@ -138,9 +142,11 @@ Class | Method | HTTP request | Description
- [OpenGraph](docs/OpenGraph.md)
- [PerrErrorDetailModel](docs/PerrErrorDetailModel.md)
- [PerrErrorModel](docs/PerrErrorModel.md)
- [PipelineExecutionResponse](docs/PipelineExecutionResponse.md)
- [Process](docs/Process.md)
- [ProcessEventLog](docs/ProcessEventLog.md)
- [Require](docs/Require.md)
- [TriggerExecutionResponse](docs/TriggerExecutionResponse.md)


## Documentation For Authorization
Expand Down
Loading