daytona_toolbox_api_client 0.143.0 → 0.144.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9eac7f409c2dfbc4de1a25c01affcacd58b348581eb35219e45272bd5f2ba193
|
|
4
|
+
data.tar.gz: 9568010b68cea90afa6da9b754acd9a9a2b9b481e61e6162296713c8333c65e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55934f34320245dfcf3a1f15e01bb5369c7bf172087fb38feaea9dbb38aeff48807512443925ccbc6bc37e18c523d62ba650dd6049b0c9fb2686d9a4eace09af
|
|
7
|
+
data.tar.gz: 0474413cc13a14dbfb6075933b37fc2b55c475818b86df7561520b1c0c0b819020a9dff129b57f186cb2ffdc23690fa74e618c75f9a3487fa515d2889cb49224
|
|
@@ -21,12 +21,15 @@ module DaytonaToolboxApiClient
|
|
|
21
21
|
|
|
22
22
|
attr_accessor :run_async
|
|
23
23
|
|
|
24
|
+
attr_accessor :suppress_input_echo
|
|
25
|
+
|
|
24
26
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
25
27
|
def self.attribute_map
|
|
26
28
|
{
|
|
27
29
|
:'async' => :'async',
|
|
28
30
|
:'command' => :'command',
|
|
29
|
-
:'run_async' => :'runAsync'
|
|
31
|
+
:'run_async' => :'runAsync',
|
|
32
|
+
:'suppress_input_echo' => :'suppressInputEcho'
|
|
30
33
|
}
|
|
31
34
|
end
|
|
32
35
|
|
|
@@ -45,7 +48,8 @@ module DaytonaToolboxApiClient
|
|
|
45
48
|
{
|
|
46
49
|
:'async' => :'Boolean',
|
|
47
50
|
:'command' => :'String',
|
|
48
|
-
:'run_async' => :'Boolean'
|
|
51
|
+
:'run_async' => :'Boolean',
|
|
52
|
+
:'suppress_input_echo' => :'Boolean'
|
|
49
53
|
}
|
|
50
54
|
end
|
|
51
55
|
|
|
@@ -84,6 +88,10 @@ module DaytonaToolboxApiClient
|
|
|
84
88
|
if attributes.key?(:'run_async')
|
|
85
89
|
self.run_async = attributes[:'run_async']
|
|
86
90
|
end
|
|
91
|
+
|
|
92
|
+
if attributes.key?(:'suppress_input_echo')
|
|
93
|
+
self.suppress_input_echo = attributes[:'suppress_input_echo']
|
|
94
|
+
end
|
|
87
95
|
end
|
|
88
96
|
|
|
89
97
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -123,7 +131,8 @@ module DaytonaToolboxApiClient
|
|
|
123
131
|
self.class == o.class &&
|
|
124
132
|
async == o.async &&
|
|
125
133
|
command == o.command &&
|
|
126
|
-
run_async == o.run_async
|
|
134
|
+
run_async == o.run_async &&
|
|
135
|
+
suppress_input_echo == o.suppress_input_echo
|
|
127
136
|
end
|
|
128
137
|
|
|
129
138
|
# @see the `==` method
|
|
@@ -135,7 +144,7 @@ module DaytonaToolboxApiClient
|
|
|
135
144
|
# Calculates hash code according to all attributes.
|
|
136
145
|
# @return [Integer] Hash code
|
|
137
146
|
def hash
|
|
138
|
-
[async, command, run_async].hash
|
|
147
|
+
[async, command, run_async, suppress_input_echo].hash
|
|
139
148
|
end
|
|
140
149
|
|
|
141
150
|
# Builds the object from hash
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: daytona_toolbox_api_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.144.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- daytonaio
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-02-
|
|
11
|
+
date: 2026-02-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|