Skip to content

Commit 2640e15

Browse files
feat(assets): introduce Assets API for SDK + 1.2.X changes
1 parent 4874abe commit 2640e15

192 files changed

Lines changed: 8354 additions & 2886 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

generate-sdks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ docker run --rm -v ${PWD}:/local --user ${HOST_UID}:${HOST_GID} openapitools/ope
107107
--template-dir=/local/python/template
108108

109109
sed_inplace '/from kestrapy\.models\.list\[label\] import List\[Label\]/d' python/python-sdk/kestrapy/api/executions_api.py
110-
sed_inplace 's/value: Optional\[Dict\[str, Any\]\] = None/value: Optional[Any] = None/' python/python-sdk/kestrapy/models/kv_controller_typed_value.py
110+
sed_inplace 's/value: Optional\[Dict\[str, Any\]\] = None/value: Optional[Any] = None/' python/python-sdk/kestrapy/models/kv_controller_kv_detail.py
111111
echo "from kestrapy.kestra_client import KestraClient as KestraClient" >> python/python-sdk/kestrapy/__init__.py
112112

113113
# Replace wrong prop in docs for each api

go-sdk/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/kestra-io/client-sdk/go-sdk
33
go 1.25
44

55
require (
6-
github.com/stretchr/testify v1.10.0
6+
github.com/stretchr/testify v1.11.1
77
github.com/tmaxmax/go-sse v0.11.0
88
gopkg.in/validator.v2 v2.0.1
99
)

go-sdk/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
88
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
99
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
1010
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
11+
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
12+
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
1113
github.com/tmaxmax/go-sse v0.11.0 h1:nogmJM6rJUoOLoAwEKeQe5XlVpt9l7N82SS1jI7lWFg=
1214
github.com/tmaxmax/go-sse v0.11.0/go.mod h1:u/2kZQR1tyngo1lKaNCj1mJmhXGZWS1Zs5yiSOD+Eg8=
1315
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

go-sdk/kestra_api_client/.openapi-generator/FILES

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ docs/Isolation.md
228228
docs/KVAPI.md
229229
docs/KVControllerApiDeleteBulkRequest.md
230230
docs/KVControllerApiDeleteBulkResponse.md
231-
docs/KVControllerTypedValue.md
231+
docs/KVControllerKvDetail.md
232232
docs/KVEntry.md
233233
docs/KVType.md
234234
docs/Label.md
@@ -310,10 +310,11 @@ docs/PluginIcon.md
310310
docs/PluginPluginElementMetadata.md
311311
docs/PluginSchema.md
312312
docs/PluginSubGroupPluginCategory.md
313-
docs/PropertyAssetsDeclaration.md
314313
docs/PropertyBoolean.md
315314
docs/PropertyDouble.md
316315
docs/PropertyDuration.md
316+
docs/PropertyListAsset.md
317+
docs/PropertyListAssetIdentifier.md
317318
docs/PropertyListString.md
318319
docs/PropertyObject.md
319320
docs/PropertyString.md
@@ -628,7 +629,7 @@ model_invitation_invitation_status.go
628629
model_isolation.go
629630
model_kv_controller_api_delete_bulk_request.go
630631
model_kv_controller_api_delete_bulk_response.go
631-
model_kv_controller_typed_value.go
632+
model_kv_controller_kv_detail.go
632633
model_kv_entry.go
633634
model_kv_type.go
634635
model_label.go
@@ -709,10 +710,11 @@ model_plugin_icon.go
709710
model_plugin_plugin_element_metadata.go
710711
model_plugin_schema.go
711712
model_plugin_sub_group_plugin_category.go
712-
model_property_assets_declaration_.go
713713
model_property_boolean_.go
714714
model_property_double_.go
715715
model_property_duration_.go
716+
model_property_list_asset__.go
717+
model_property_list_asset_identifier__.go
716718
model_property_list_string__.go
717719
model_property_object_.go
718720
model_property_string_.go
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.18.0
1+
7.19.0

go-sdk/kestra_api_client/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Endpoints designated as Superadmin-only are not tenant-scoped.
66
## Overview
77
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.
88

9-
- API version: 1.2.0
10-
- Package version: 1.0.3
11-
- Generator version: 7.18.0
9+
- API version: 1.0.0
10+
- Package version: 1.0.0
11+
- Generator version: 7.19.0
1212
- Build package: org.openapitools.codegen.languages.GoClientCodegen
1313

1414
## Installation
@@ -488,7 +488,7 @@ Class | Method | HTTP request | Description
488488
- [Isolation](docs/Isolation.md)
489489
- [KVControllerApiDeleteBulkRequest](docs/KVControllerApiDeleteBulkRequest.md)
490490
- [KVControllerApiDeleteBulkResponse](docs/KVControllerApiDeleteBulkResponse.md)
491-
- [KVControllerTypedValue](docs/KVControllerTypedValue.md)
491+
- [KVControllerKvDetail](docs/KVControllerKvDetail.md)
492492
- [KVEntry](docs/KVEntry.md)
493493
- [KVType](docs/KVType.md)
494494
- [Label](docs/Label.md)
@@ -569,10 +569,11 @@ Class | Method | HTTP request | Description
569569
- [PluginPluginElementMetadata](docs/PluginPluginElementMetadata.md)
570570
- [PluginSchema](docs/PluginSchema.md)
571571
- [PluginSubGroupPluginCategory](docs/PluginSubGroupPluginCategory.md)
572-
- [PropertyAssetsDeclaration](docs/PropertyAssetsDeclaration.md)
573572
- [PropertyBoolean](docs/PropertyBoolean.md)
574573
- [PropertyDouble](docs/PropertyDouble.md)
575574
- [PropertyDuration](docs/PropertyDuration.md)
575+
- [PropertyListAsset](docs/PropertyListAsset.md)
576+
- [PropertyListAssetIdentifier](docs/PropertyListAssetIdentifier.md)
576577
- [PropertyListString](docs/PropertyListString.md)
577578
- [PropertyObject](docs/PropertyObject.md)
578579
- [PropertyString](docs/PropertyString.md)

0 commit comments

Comments
 (0)