Skip to content

feat(LIVE-5741): ChannelLifecycleState SDK #95

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

Merged
merged 11 commits into from
Dec 13, 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
5 changes: 4 additions & 1 deletion .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,13 @@ jobs:
- name: Re-generate isp-slate
run: ./run.sh isp-slate

- name: Re-generate isp-lifecycle
run: ./run.sh isp-lifecycle

- name: Detect generated changes
id: changes
run: |
git add isp isp-slate
git add isp isp-slate isp-lifecycle
git status

if [ -n "$(git status -s)" ]; then
Expand Down
35 changes: 35 additions & 0 deletions isp-lifecycle/.openapi-generator-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md

api/*
docs/*
.gitignore
.travis.yml
README.md
go.mod
go.sum
git_push.sh

convenience.go
client.go
12 changes: 12 additions & 0 deletions isp-lifecycle/.openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
api_lifecycle.go
configuration.go
model_error_detail.go
model_error_model.go
model_get_component_state_response_body.go
model_get_state_response_body.go
model_list_component_states_response_body.go
model_list_component_states_response_entry.go
model_put_component_body.go
response.go
test/api_lifecycle_test.go
utils.go
1 change: 1 addition & 0 deletions isp-lifecycle/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6.6.0
Loading
Loading