Skip to content

Commit 2888f9a

Browse files
feat: Automated regeneration of firebaseappdistribution v1alpha client (googleapis#23441)
Auto-created at 2025-06-15 10:34:47 +0000 using the toys pull request generator.
1 parent e73fa8f commit 2888f9a

File tree

5 files changed

+124
-4
lines changed

5 files changed

+124
-4
lines changed

api_names_out.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238913,6 +238913,11 @@
238913238913
"/firebaseappdistribution:v1alpha/AndroidxCrawlerOutputPoint": androidx_crawler_output_point
238914238914
"/firebaseappdistribution:v1alpha/AndroidxCrawlerOutputPoint/xCoordinate": x_coordinate
238915238915
"/firebaseappdistribution:v1alpha/AndroidxCrawlerOutputPoint/yCoordinate": y_coordinate
238916+
"/firebaseappdistribution:v1alpha/AndroidxCrawlerOutputRectangle": androidx_crawler_output_rectangle
238917+
"/firebaseappdistribution:v1alpha/AndroidxCrawlerOutputRectangle/bottom": bottom
238918+
"/firebaseappdistribution:v1alpha/AndroidxCrawlerOutputRectangle/left": left
238919+
"/firebaseappdistribution:v1alpha/AndroidxCrawlerOutputRectangle/right": right
238920+
"/firebaseappdistribution:v1alpha/AndroidxCrawlerOutputRectangle/top": top
238916238921
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1Release": google_firebase_appdistro_v1_release
238917238922
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1Release/binaryDownloadUri": binary_download_uri
238918238923
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1Release/buildVersion": build_version
@@ -238990,12 +238995,16 @@
238990238995
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/state": state
238991238996
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/videoUri": video_uri
238992238997
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteraction": google_firebase_appdistro_v1alpha_device_interaction
238998+
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteraction/enterText": enter_text
238993238999
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteraction/keyCode": key_code
238994239000
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteraction/screenshot": screenshot
238995239001
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteraction/swipe": swipe
238996239002
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteraction/tap": tap_prop
238997239003
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteraction/textInput": text_input
238998239004
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteraction/wait": wait
239005+
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText": google_firebase_appdistro_v1alpha_device_interaction_enter_text
239006+
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText/elementBounds": element_bounds
239007+
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText/text": text
238999239008
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe": google_firebase_appdistro_v1alpha_device_interaction_swipe
239000239009
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe/end": end
239001239010
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe/start": start

generated/google-apis-firebaseappdistribution_v1alpha/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-firebaseappdistribution_v1alpha
22

3+
### v0.14.0 (2025-06-15)
4+
5+
* Regenerated from discovery document revision 20250612
6+
* Regenerated using generator version 0.18.0
7+
38
### v0.13.0 (2025-05-04)
49

510
* Regenerated using generator version 0.17.0

generated/google-apis-firebaseappdistribution_v1alpha/lib/google/apis/firebaseappdistribution_v1alpha/classes.rb

Lines changed: 74 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,43 @@ def update!(**args)
4747
end
4848
end
4949

50+
# Rectangle for describing bounding boxes
51+
class AndroidxCrawlerOutputRectangle
52+
include Google::Apis::Core::Hashable
53+
54+
#
55+
# Corresponds to the JSON property `bottom`
56+
# @return [Fixnum]
57+
attr_accessor :bottom
58+
59+
#
60+
# Corresponds to the JSON property `left`
61+
# @return [Fixnum]
62+
attr_accessor :left
63+
64+
#
65+
# Corresponds to the JSON property `right`
66+
# @return [Fixnum]
67+
attr_accessor :right
68+
69+
#
70+
# Corresponds to the JSON property `top`
71+
# @return [Fixnum]
72+
attr_accessor :top
73+
74+
def initialize(**args)
75+
update!(**args)
76+
end
77+
78+
# Update properties of this object
79+
def update!(**args)
80+
@bottom = args[:bottom] if args.key?(:bottom)
81+
@left = args[:left] if args.key?(:left)
82+
@right = args[:right] if args.key?(:right)
83+
@top = args[:top] if args.key?(:top)
84+
end
85+
end
86+
5087
# A release of a Firebase app.
5188
class GoogleFirebaseAppdistroV1Release
5289
include Google::Apis::Core::Hashable
@@ -593,6 +630,12 @@ def update!(**args)
593630
class GoogleFirebaseAppdistroV1alphaDeviceInteraction
594631
include Google::Apis::Core::Hashable
595632

633+
# A text entry action, that enters text into a particular text field, clearing
634+
# any existing text in the field.
635+
# Corresponds to the JSON property `enterText`
636+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText]
637+
attr_accessor :enter_text
638+
596639
# Output only. Key code for a key event action.
597640
# Corresponds to the JSON property `keyCode`
598641
# @return [String]
@@ -613,7 +656,10 @@ class GoogleFirebaseAppdistroV1alphaDeviceInteraction
613656
# @return [Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint]
614657
attr_accessor :tap_prop
615658

616-
# Output only. Text entered for a text entry action.
659+
# Output only. A text input action, that types some text into whatever field is
660+
# currently focused, if any. Unlike `enter_text` this action requires that the
661+
# field be brought into focus first, for example by emitting a tap action before
662+
# this one.
617663
# Corresponds to the JSON property `textInput`
618664
# @return [String]
619665
attr_accessor :text_input
@@ -629,6 +675,7 @@ def initialize(**args)
629675

630676
# Update properties of this object
631677
def update!(**args)
678+
@enter_text = args[:enter_text] if args.key?(:enter_text)
632679
@key_code = args[:key_code] if args.key?(:key_code)
633680
@screenshot = args[:screenshot] if args.key?(:screenshot)
634681
@swipe = args[:swipe] if args.key?(:swipe)
@@ -638,6 +685,32 @@ def update!(**args)
638685
end
639686
end
640687

688+
# A text entry action, that enters text into a particular text field, clearing
689+
# any existing text in the field.
690+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText
691+
include Google::Apis::Core::Hashable
692+
693+
# Rectangle for describing bounding boxes
694+
# Corresponds to the JSON property `elementBounds`
695+
# @return [Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputRectangle]
696+
attr_accessor :element_bounds
697+
698+
# Output only. The text to enter.
699+
# Corresponds to the JSON property `text`
700+
# @return [String]
701+
attr_accessor :text
702+
703+
def initialize(**args)
704+
update!(**args)
705+
end
706+
707+
# Update properties of this object
708+
def update!(**args)
709+
@element_bounds = args[:element_bounds] if args.key?(:element_bounds)
710+
@text = args[:text] if args.key?(:text)
711+
end
712+
end
713+
641714
# A swipe action.
642715
class GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe
643716
include Google::Apis::Core::Hashable

generated/google-apis-firebaseappdistribution_v1alpha/lib/google/apis/firebaseappdistribution_v1alpha/gem_version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module FirebaseappdistributionV1alpha
1818
# Version of the google-apis-firebaseappdistribution_v1alpha gem
19-
GEM_VERSION = "0.13.0"
19+
GEM_VERSION = "0.14.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.17.0"
22+
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250416"
25+
REVISION = "20250612"
2626
end
2727
end
2828
end

generated/google-apis-firebaseappdistribution_v1alpha/lib/google/apis/firebaseappdistribution_v1alpha/representations.rb

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
2828
include Google::Apis::Core::JsonObjectSupport
2929
end
3030

31+
class AndroidxCrawlerOutputRectangle
32+
class Representation < Google::Apis::Core::JsonRepresentation; end
33+
34+
include Google::Apis::Core::JsonObjectSupport
35+
end
36+
3137
class GoogleFirebaseAppdistroV1Release
3238
class Representation < Google::Apis::Core::JsonRepresentation; end
3339

@@ -136,6 +142,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
136142
include Google::Apis::Core::JsonObjectSupport
137143
end
138144

145+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText
146+
class Representation < Google::Apis::Core::JsonRepresentation; end
147+
148+
include Google::Apis::Core::JsonObjectSupport
149+
end
150+
139151
class GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe
140152
class Representation < Google::Apis::Core::JsonRepresentation; end
141153

@@ -312,6 +324,16 @@ class Representation < Google::Apis::Core::JsonRepresentation
312324
end
313325
end
314326

327+
class AndroidxCrawlerOutputRectangle
328+
# @private
329+
class Representation < Google::Apis::Core::JsonRepresentation
330+
property :bottom, as: 'bottom'
331+
property :left, as: 'left'
332+
property :right, as: 'right'
333+
property :top, as: 'top'
334+
end
335+
end
336+
315337
class GoogleFirebaseAppdistroV1Release
316338
# @private
317339
class Representation < Google::Apis::Core::JsonRepresentation
@@ -481,6 +503,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
481503
class GoogleFirebaseAppdistroV1alphaDeviceInteraction
482504
# @private
483505
class Representation < Google::Apis::Core::JsonRepresentation
506+
property :enter_text, as: 'enterText', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText::Representation
507+
484508
property :key_code, as: 'keyCode'
485509
property :screenshot, as: 'screenshot', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaScreenshot, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaScreenshot::Representation
486510

@@ -494,6 +518,15 @@ class Representation < Google::Apis::Core::JsonRepresentation
494518
end
495519
end
496520

521+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText
522+
# @private
523+
class Representation < Google::Apis::Core::JsonRepresentation
524+
property :element_bounds, as: 'elementBounds', class: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputRectangle, decorator: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputRectangle::Representation
525+
526+
property :text, as: 'text'
527+
end
528+
end
529+
497530
class GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe
498531
# @private
499532
class Representation < Google::Apis::Core::JsonRepresentation

0 commit comments

Comments
 (0)