google-apis-firebaseappdistribution_v1alpha 0.13.0 → 0.14.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: c64e9bc54da115486be23a07035cf52523745fea45794ceec1138d942b04e3ca
4
- data.tar.gz: ce3f3ea92f04281949700487342b9fe731c62248b0eb2eecebea482e66929560
3
+ metadata.gz: 1376cdfa81b91f24c4fbc78d26aeb33d5cce0e49cb711d3fbd363943835f1cbd
4
+ data.tar.gz: bc620d483e6719692f5f65db79703516c567f66d6082a99f5c1de99a2c598500
5
5
  SHA512:
6
- metadata.gz: cec3f10079b89c325758f2f88f7fed5c319682671f3d01b59f89f0cf05104cde2ef803b3b82f8637260832451f5e34bc0b2aea7aaf7b1a6891b53397c222d495
7
- data.tar.gz: 2773153eeddf2424ac54488c4d56717899c26883a33332afb89eef25c7f9cb1ae82ff3c4dd30fa77c09fe857b2dbb1c614e0596d977ca8947354f2099c162e20
6
+ metadata.gz: 4a849cbfe6626de1c8f29b39942f86124823bcaabcad3474fa4509854fdd16bb51d7c2bbc7559995fa3280593ef6195455f3b233a8164f3a4835bbe17f8c5909
7
+ data.tar.gz: 296ec307770e55d28913902baca626463be972f01962f0a9ba3e5ec350a02bac618543a7583c3b1d2742cfe34a39ccdabcc862df466490858950d5d10ed1244d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-firebaseappdistribution_v1alpha
2
2
 
3
+ ### v0.14.0 (2025-06-15)
4
+
5
+ * Regenerated from discovery document revision 20250612
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.13.0 (2025-05-04)
4
9
 
5
10
  * Regenerated using generator version 0.17.0
@@ -47,6 +47,43 @@ module Google
47
47
  end
48
48
  end
49
49
 
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
+
50
87
  # A release of a Firebase app.
51
88
  class GoogleFirebaseAppdistroV1Release
52
89
  include Google::Apis::Core::Hashable
@@ -593,6 +630,12 @@ module Google
593
630
  class GoogleFirebaseAppdistroV1alphaDeviceInteraction
594
631
  include Google::Apis::Core::Hashable
595
632
 
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
+
596
639
  # Output only. Key code for a key event action.
597
640
  # Corresponds to the JSON property `keyCode`
598
641
  # @return [String]
@@ -613,7 +656,10 @@ module Google
613
656
  # @return [Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint]
614
657
  attr_accessor :tap_prop
615
658
 
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.
617
663
  # Corresponds to the JSON property `textInput`
618
664
  # @return [String]
619
665
  attr_accessor :text_input
@@ -629,6 +675,7 @@ module Google
629
675
 
630
676
  # Update properties of this object
631
677
  def update!(**args)
678
+ @enter_text = args[:enter_text] if args.key?(:enter_text)
632
679
  @key_code = args[:key_code] if args.key?(:key_code)
633
680
  @screenshot = args[:screenshot] if args.key?(:screenshot)
634
681
  @swipe = args[:swipe] if args.key?(:swipe)
@@ -638,6 +685,32 @@ module Google
638
685
  end
639
686
  end
640
687
 
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
+
641
714
  # A swipe action.
642
715
  class GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe
643
716
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebaseappdistributionV1alpha
18
18
  # Version of the google-apis-firebaseappdistribution_v1alpha gem
19
- GEM_VERSION = "0.13.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250416"
25
+ REVISION = "20250612"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,12 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class AndroidxCrawlerOutputRectangle
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
31
37
  class GoogleFirebaseAppdistroV1Release
32
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
39
 
@@ -136,6 +142,12 @@ module Google
136
142
  include Google::Apis::Core::JsonObjectSupport
137
143
  end
138
144
 
145
+ class GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
139
151
  class GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe
140
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
153
 
@@ -312,6 +324,16 @@ module Google
312
324
  end
313
325
  end
314
326
 
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
+
315
337
  class GoogleFirebaseAppdistroV1Release
316
338
  # @private
317
339
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -481,6 +503,8 @@ module Google
481
503
  class GoogleFirebaseAppdistroV1alphaDeviceInteraction
482
504
  # @private
483
505
  class Representation < Google::Apis::Core::JsonRepresentation
506
+ property :enter_text, as: 'enterText', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText::Representation
507
+
484
508
  property :key_code, as: 'keyCode'
485
509
  property :screenshot, as: 'screenshot', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaScreenshot, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaScreenshot::Representation
486
510
 
@@ -494,6 +518,15 @@ module Google
494
518
  end
495
519
  end
496
520
 
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
+
497
530
  class GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe
498
531
  # @private
499
532
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebaseappdistribution_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappdistribution_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.13.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.14.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappdistribution_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Firebase App Distribution API V1alpha
79
79
  test_files: []