daytona_toolbox_api_client 0.190.0.alpha.3 → 0.190.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/daytona_toolbox_api_client/version.rb +1 -1
- data/project.json +7 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24b6d050f0c1583770b724019ea48c243e43e80de8fb5fbc6ef93e49f78d4b0b
|
|
4
|
+
data.tar.gz: 070ff61575ff9a8f2b9215c8010c86a43fce8bf755f73fbc7018ffd929eff1a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9dd61dc210781cc454c753e7cbda941cf61eb0e4396fcd73145116e53d51d0b2b26c6b227f12f1d11d28422ce12e28e42c992c0b125fc22d17603d08f9046650
|
|
7
|
+
data.tar.gz: 0eb59b86d21106b91484f1e0aa141dc893115ed52fba7173340c51ed263cf7313cf3892470804ac66ca757305ea5a5a752d6ae459f3917e3803e20129a2d1398
|
data/project.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"executor": "nx:run-commands",
|
|
10
10
|
"options": {
|
|
11
11
|
"cwd": "{projectRoot}",
|
|
12
|
-
"commands": ["rm -f *.gem", "
|
|
12
|
+
"commands": ["rm -f *.gem", "bundle install", "gem build daytona_toolbox_api_client.gemspec"],
|
|
13
13
|
"parallel": false
|
|
14
14
|
},
|
|
15
15
|
"dependsOn": ["set-version"],
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"options": {
|
|
32
32
|
"commands": [
|
|
33
33
|
"rm -rf libs/toolbox-api-client-ruby/lib",
|
|
34
|
-
"yarn run openapi-generator-cli generate -i
|
|
34
|
+
"yarn run openapi-generator-cli generate -i apps/daemon/pkg/toolbox/docs/swagger.json -g ruby -t hack/ruby-client/openapi-templates --name-mappings hash=_hash --model-name-mappings computeruse.AccessibilityNode=ComputerUseAccessibilityNode --additional-properties=gemAuthor=daytonaio,gemAuthorEmail=support@daytona.io,gemDescription=\\\"Daytona Toolbox API Client\\\",gemHomepage=\\\"https://github.com/daytonaio/daytona\\\",gemVersion=$DEFAULT_GEM_VERSION,gemName=daytona_toolbox_api_client,enumUnknownDefaultCase=true -o libs/toolbox-api-client-ruby",
|
|
35
35
|
"bash libs/toolbox-api-client-ruby/fix-gemspec.sh",
|
|
36
36
|
"sed -i 's|OpenAPI-Generator/#{VERSION}/ruby|toolbox-api-client-ruby/#{VERSION}|' libs/toolbox-api-client-ruby/lib/daytona_toolbox_api_client/api_client.rb",
|
|
37
|
-
"cd libs/toolbox-api-client-ruby &&
|
|
37
|
+
"cd libs/toolbox-api-client-ruby && bundle install"
|
|
38
38
|
],
|
|
39
39
|
"parallel": false
|
|
40
40
|
},
|
|
@@ -45,6 +45,10 @@
|
|
|
45
45
|
{ "env": "DEFAULT_GEM_VERSION" }
|
|
46
46
|
],
|
|
47
47
|
"dependsOn": [
|
|
48
|
+
{
|
|
49
|
+
"target": "openapi",
|
|
50
|
+
"projects": "daemon"
|
|
51
|
+
},
|
|
48
52
|
{
|
|
49
53
|
"target": "generate:api-client",
|
|
50
54
|
"projects": "api-client-ruby"
|