Skip to content

Commit dafa224

Browse files
feat(LIVE-5741): ChannelLifecycleState SDK (#95)
Lifecycle State SDK
1 parent cf74199 commit dafa224

25 files changed

+4813
-172
lines changed

.github/workflows/generate.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,13 @@ jobs:
6060
- name: Re-generate isp-slate
6161
run: ./run.sh isp-slate
6262

63+
- name: Re-generate isp-lifecycle
64+
run: ./run.sh isp-lifecycle
65+
6366
- name: Detect generated changes
6467
id: changes
6568
run: |
66-
git add isp isp-slate
69+
git add isp isp-slate isp-lifecycle
6770
git status
6871
6972
if [ -n "$(git status -s)" ]; then
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md
24+
25+
api/*
26+
docs/*
27+
.gitignore
28+
.travis.yml
29+
README.md
30+
go.mod
31+
go.sum
32+
git_push.sh
33+
34+
convenience.go
35+
client.go
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
api_lifecycle.go
2+
configuration.go
3+
model_error_detail.go
4+
model_error_model.go
5+
model_get_component_state_response_body.go
6+
model_get_state_response_body.go
7+
model_list_component_states_response_body.go
8+
model_list_component_states_response_entry.go
9+
model_put_component_body.go
10+
response.go
11+
test/api_lifecycle_test.go
12+
utils.go
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
6.6.0

0 commit comments

Comments
 (0)