google-apis-testing_v1 0.35.0 → 0.36.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: 828a980d3a1da81e8a308770a31534cc3acfd5ed72e4ed7c15b5e36a685376eb
|
4
|
+
data.tar.gz: 5ba3071104bb4673b5d1b5331dc79888ba96a29a343de2934d52986910776d18
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe87b829cd823c7b0e7a26bd42f8623ac3190b40755f208aa197551bdb5f4f488adcc2aba6f8a6883ec6b829b0d22b4eb043dba126c59879870f792356e4b035
|
7
|
+
data.tar.gz: 2eee4241caa9ecacf1388d78d3dbe132e533a2be4c58e221d94da06b6251cefa13c11eebd90ee94e039f7402670d5a26abe4f3f9a1db39b62805e29a4c59d045
|
data/CHANGELOG.md
CHANGED
@@ -1742,6 +1742,19 @@ module Google
|
|
1742
1742
|
end
|
1743
1743
|
end
|
1744
1744
|
|
1745
|
+
# Skips the starting activity
|
1746
|
+
class NoActivityIntent
|
1747
|
+
include Google::Apis::Core::Hashable
|
1748
|
+
|
1749
|
+
def initialize(**args)
|
1750
|
+
update!(**args)
|
1751
|
+
end
|
1752
|
+
|
1753
|
+
# Update properties of this object
|
1754
|
+
def update!(**args)
|
1755
|
+
end
|
1756
|
+
end
|
1757
|
+
|
1745
1758
|
# An opaque binary blob file to install on the device before the test starts.
|
1746
1759
|
class ObbFile
|
1747
1760
|
include Google::Apis::Core::Hashable
|
@@ -1998,6 +2011,11 @@ module Google
|
|
1998
2011
|
# @return [Google::Apis::TestingV1::LauncherActivityIntent]
|
1999
2012
|
attr_accessor :launcher_activity
|
2000
2013
|
|
2014
|
+
# Skips the starting activity
|
2015
|
+
# Corresponds to the JSON property `noActivity`
|
2016
|
+
# @return [Google::Apis::TestingV1::NoActivityIntent]
|
2017
|
+
attr_accessor :no_activity
|
2018
|
+
|
2001
2019
|
# A starting intent specified by an action, uri, and categories.
|
2002
2020
|
# Corresponds to the JSON property `startActivity`
|
2003
2021
|
# @return [Google::Apis::TestingV1::StartActivityIntent]
|
@@ -2015,6 +2033,7 @@ module Google
|
|
2015
2033
|
# Update properties of this object
|
2016
2034
|
def update!(**args)
|
2017
2035
|
@launcher_activity = args[:launcher_activity] if args.key?(:launcher_activity)
|
2036
|
+
@no_activity = args[:no_activity] if args.key?(:no_activity)
|
2018
2037
|
@start_activity = args[:start_activity] if args.key?(:start_activity)
|
2019
2038
|
@timeout = args[:timeout] if args.key?(:timeout)
|
2020
2039
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TestingV1
|
18
18
|
# Version of the google-apis-testing_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230526"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -304,6 +304,12 @@ module Google
|
|
304
304
|
include Google::Apis::Core::JsonObjectSupport
|
305
305
|
end
|
306
306
|
|
307
|
+
class NoActivityIntent
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
+
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
311
|
+
end
|
312
|
+
|
307
313
|
class ObbFile
|
308
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
315
|
|
@@ -977,6 +983,12 @@ module Google
|
|
977
983
|
end
|
978
984
|
end
|
979
985
|
|
986
|
+
class NoActivityIntent
|
987
|
+
# @private
|
988
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
989
|
+
end
|
990
|
+
end
|
991
|
+
|
980
992
|
class ObbFile
|
981
993
|
# @private
|
982
994
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1055,6 +1067,8 @@ module Google
|
|
1055
1067
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1056
1068
|
property :launcher_activity, as: 'launcherActivity', class: Google::Apis::TestingV1::LauncherActivityIntent, decorator: Google::Apis::TestingV1::LauncherActivityIntent::Representation
|
1057
1069
|
|
1070
|
+
property :no_activity, as: 'noActivity', class: Google::Apis::TestingV1::NoActivityIntent, decorator: Google::Apis::TestingV1::NoActivityIntent::Representation
|
1071
|
+
|
1058
1072
|
property :start_activity, as: 'startActivity', class: Google::Apis::TestingV1::StartActivityIntent, decorator: Google::Apis::TestingV1::StartActivityIntent::Representation
|
1059
1073
|
|
1060
1074
|
property :timeout, as: 'timeout'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-testing_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.36.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.36.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|