google-apis-firebaseappdistribution_v1alpha 0.14.0 → 0.15.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: 1376cdfa81b91f24c4fbc78d26aeb33d5cce0e49cb711d3fbd363943835f1cbd
4
- data.tar.gz: bc620d483e6719692f5f65db79703516c567f66d6082a99f5c1de99a2c598500
3
+ metadata.gz: 34219da1dffc25a6f2497ba49038d5ba59bd63acf0be324ca5f7ba78c874479e
4
+ data.tar.gz: 153efb7ca1bab31538094c202ada9f856fa3b08087d6bcd75477fde16e023e54
5
5
  SHA512:
6
- metadata.gz: 4a849cbfe6626de1c8f29b39942f86124823bcaabcad3474fa4509854fdd16bb51d7c2bbc7559995fa3280593ef6195455f3b233a8164f3a4835bbe17f8c5909
7
- data.tar.gz: 296ec307770e55d28913902baca626463be972f01962f0a9ba3e5ec350a02bac618543a7583c3b1d2742cfe34a39ccdabcc862df466490858950d5d10ed1244d
6
+ metadata.gz: d014f7139a87f6b3859340d6b55e2c37d7b12b8d5d8d9e08f663cfa0d39bc4b3c9826a45b6168b2584b39020d491ff377d5d5c8a761bcf186831e93a2fbe1f4e
7
+ data.tar.gz: fcf0c3ba449d43fb8ea7727179164467bac16376d90fc3da9b70476006045fd44e2b349468cbe96fc976a3b64ed8b8f36dd97c1ec99b74f3c072f61b189428e6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firebaseappdistribution_v1alpha
2
2
 
3
+ ### v0.15.0 (2025-08-17)
4
+
5
+ * Regenerated from discovery document revision 20250811
6
+
3
7
  ### v0.14.0 (2025-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20250612
@@ -630,6 +630,16 @@ module Google
630
630
  class GoogleFirebaseAppdistroV1alphaDeviceInteraction
631
631
  include Google::Apis::Core::Hashable
632
632
 
633
+ # A back action.
634
+ # Corresponds to the JSON property `backAction`
635
+ # @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionBack]
636
+ attr_accessor :back_action
637
+
638
+ # A drag and drop action.
639
+ # Corresponds to the JSON property `dragAndDrop`
640
+ # @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop]
641
+ attr_accessor :drag_and_drop
642
+
633
643
  # A text entry action, that enters text into a particular text field, clearing
634
644
  # any existing text in the field.
635
645
  # Corresponds to the JSON property `enterText`
@@ -641,6 +651,11 @@ module Google
641
651
  # @return [String]
642
652
  attr_accessor :key_code
643
653
 
654
+ # Point for describing bounding boxes tap locations Top left is 0,0
655
+ # Corresponds to the JSON property `longPress`
656
+ # @return [Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint]
657
+ attr_accessor :long_press
658
+
644
659
  # A device screenshot taken during a test.
645
660
  # Corresponds to the JSON property `screenshot`
646
661
  # @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaScreenshot]
@@ -675,8 +690,11 @@ module Google
675
690
 
676
691
  # Update properties of this object
677
692
  def update!(**args)
693
+ @back_action = args[:back_action] if args.key?(:back_action)
694
+ @drag_and_drop = args[:drag_and_drop] if args.key?(:drag_and_drop)
678
695
  @enter_text = args[:enter_text] if args.key?(:enter_text)
679
696
  @key_code = args[:key_code] if args.key?(:key_code)
697
+ @long_press = args[:long_press] if args.key?(:long_press)
680
698
  @screenshot = args[:screenshot] if args.key?(:screenshot)
681
699
  @swipe = args[:swipe] if args.key?(:swipe)
682
700
  @tap_prop = args[:tap_prop] if args.key?(:tap_prop)
@@ -685,6 +703,44 @@ module Google
685
703
  end
686
704
  end
687
705
 
706
+ # A back action.
707
+ class GoogleFirebaseAppdistroV1alphaDeviceInteractionBack
708
+ include Google::Apis::Core::Hashable
709
+
710
+ def initialize(**args)
711
+ update!(**args)
712
+ end
713
+
714
+ # Update properties of this object
715
+ def update!(**args)
716
+ end
717
+ end
718
+
719
+ # A drag and drop action.
720
+ class GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop
721
+ include Google::Apis::Core::Hashable
722
+
723
+ # Point for describing bounding boxes tap locations Top left is 0,0
724
+ # Corresponds to the JSON property `end`
725
+ # @return [Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint]
726
+ attr_accessor :end
727
+
728
+ # Point for describing bounding boxes tap locations Top left is 0,0
729
+ # Corresponds to the JSON property `start`
730
+ # @return [Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint]
731
+ attr_accessor :start
732
+
733
+ def initialize(**args)
734
+ update!(**args)
735
+ end
736
+
737
+ # Update properties of this object
738
+ def update!(**args)
739
+ @end = args[:end] if args.key?(:end)
740
+ @start = args[:start] if args.key?(:start)
741
+ end
742
+ end
743
+
688
744
  # A text entry action, that enters text into a particular text field, clearing
689
745
  # any existing text in the field.
690
746
  class GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText
@@ -1406,6 +1462,11 @@ module Google
1406
1462
  # @return [String]
1407
1463
  attr_accessor :create_time
1408
1464
 
1465
+ # Output only. Other test cases that depend on this test cse as a prerequisite.
1466
+ # Corresponds to the JSON property `dependentTestCases`
1467
+ # @return [Array<String>]
1468
+ attr_accessor :dependent_test_cases
1469
+
1409
1470
  # Required. Display name of the test case.
1410
1471
  # Corresponds to the JSON property `displayName`
1411
1472
  # @return [String]
@@ -1417,6 +1478,11 @@ module Google
1417
1478
  # @return [String]
1418
1479
  attr_accessor :name
1419
1480
 
1481
+ # Optional. Test case that must be run before this test case.
1482
+ # Corresponds to the JSON property `prerequisiteTestCase`
1483
+ # @return [String]
1484
+ attr_accessor :prerequisite_test_case
1485
+
1420
1486
  def initialize(**args)
1421
1487
  update!(**args)
1422
1488
  end
@@ -1425,8 +1491,10 @@ module Google
1425
1491
  def update!(**args)
1426
1492
  @ai_instructions = args[:ai_instructions] if args.key?(:ai_instructions)
1427
1493
  @create_time = args[:create_time] if args.key?(:create_time)
1494
+ @dependent_test_cases = args[:dependent_test_cases] if args.key?(:dependent_test_cases)
1428
1495
  @display_name = args[:display_name] if args.key?(:display_name)
1429
1496
  @name = args[:name] if args.key?(:name)
1497
+ @prerequisite_test_case = args[:prerequisite_test_case] if args.key?(:prerequisite_test_case)
1430
1498
  end
1431
1499
  end
1432
1500
 
@@ -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.14.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250612"
25
+ REVISION = "20250811"
26
26
  end
27
27
  end
28
28
  end
@@ -142,6 +142,18 @@ module Google
142
142
  include Google::Apis::Core::JsonObjectSupport
143
143
  end
144
144
 
145
+ class GoogleFirebaseAppdistroV1alphaDeviceInteractionBack
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
151
+ class GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
145
157
  class GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText
146
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
147
159
 
@@ -503,9 +515,15 @@ module Google
503
515
  class GoogleFirebaseAppdistroV1alphaDeviceInteraction
504
516
  # @private
505
517
  class Representation < Google::Apis::Core::JsonRepresentation
518
+ property :back_action, as: 'backAction', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionBack, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionBack::Representation
519
+
520
+ property :drag_and_drop, as: 'dragAndDrop', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop::Representation
521
+
506
522
  property :enter_text, as: 'enterText', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText::Representation
507
523
 
508
524
  property :key_code, as: 'keyCode'
525
+ property :long_press, as: 'longPress', class: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint, decorator: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint::Representation
526
+
509
527
  property :screenshot, as: 'screenshot', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaScreenshot, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaScreenshot::Representation
510
528
 
511
529
  property :swipe, as: 'swipe', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe::Representation
@@ -518,6 +536,22 @@ module Google
518
536
  end
519
537
  end
520
538
 
539
+ class GoogleFirebaseAppdistroV1alphaDeviceInteractionBack
540
+ # @private
541
+ class Representation < Google::Apis::Core::JsonRepresentation
542
+ end
543
+ end
544
+
545
+ class GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop
546
+ # @private
547
+ class Representation < Google::Apis::Core::JsonRepresentation
548
+ property :end, as: 'end', class: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint, decorator: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint::Representation
549
+
550
+ property :start, as: 'start', class: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint, decorator: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint::Representation
551
+
552
+ end
553
+ end
554
+
521
555
  class GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText
522
556
  # @private
523
557
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -745,8 +779,10 @@ module Google
745
779
  property :ai_instructions, as: 'aiInstructions', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions::Representation
746
780
 
747
781
  property :create_time, as: 'createTime'
782
+ collection :dependent_test_cases, as: 'dependentTestCases'
748
783
  property :display_name, as: 'displayName'
749
784
  property :name, as: 'name'
785
+ property :prerequisite_test_case, as: 'prerequisiteTestCase'
750
786
  end
751
787
  end
752
788
 
@@ -88,8 +88,9 @@ module Google
88
88
 
89
89
  # Get a JWT token
90
90
  # @param [String] mobilesdk_app_id
91
- # Unique id for a Firebase app of the format: `version`:`project_number`:`
92
- # platform`:`hash(bundle_id)` Example: 1:581234567376:android:aa0a3c7b135e90289
91
+ # Required. Unique id for a Firebase app of the format: `version`:`
92
+ # project_number`:`platform`:`hash(bundle_id)` Example: 1:581234567376:android:
93
+ # aa0a3c7b135e90289
93
94
  # @param [String] fields
94
95
  # Selector specifying which fields to include in a partial response.
95
96
  # @param [String] quota_user
@@ -119,10 +120,11 @@ module Google
119
120
 
120
121
  # GET Release by binary upload hash
121
122
  # @param [String] mobilesdk_app_id
122
- # Unique id for a Firebase app of the format: `version`:`project_number`:`
123
- # platform`:`hash(bundle_id)` Example: 1:581234567376:android:aa0a3c7b135e90289
123
+ # Required. Unique id for a Firebase app of the format: `version`:`
124
+ # project_number`:`platform`:`hash(bundle_id)` Example: 1:581234567376:android:
125
+ # aa0a3c7b135e90289
124
126
  # @param [String] upload_hash
125
- # The hash for the upload
127
+ # Required. The hash for the upload
126
128
  # @param [String] fields
127
129
  # Selector specifying which fields to include in a partial response.
128
130
  # @param [String] quota_user
@@ -153,10 +155,11 @@ module Google
153
155
 
154
156
  # Enable access on a release for testers.
155
157
  # @param [String] mobilesdk_app_id
156
- # Unique id for a Firebase app of the format: `version`:`project_number`:`
157
- # platform`:`hash(bundle_id)` Example: 1:581234567376:android:aa0a3c7b135e90289
158
+ # Required. Unique id for a Firebase app of the format: `version`:`
159
+ # project_number`:`platform`:`hash(bundle_id)` Example: 1:581234567376:android:
160
+ # aa0a3c7b135e90289
158
161
  # @param [String] release_id
159
- # Release identifier
162
+ # Required. Release identifier
160
163
  # @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaEnableAccessOnReleaseRequest] google_firebase_appdistro_v1alpha_enable_access_on_release_request_object
161
164
  # @param [String] fields
162
165
  # Selector specifying which fields to include in a partial response.
@@ -190,10 +193,11 @@ module Google
190
193
 
191
194
  # Create release notes on a release.
192
195
  # @param [String] mobilesdk_app_id
193
- # Unique id for a Firebase app of the format: `version`:`project_number`:`
194
- # platform`:`hash(bundle_id)` Example: 1:581234567376:android:aa0a3c7b135e90289
196
+ # Required. Unique id for a Firebase app of the format: `version`:`
197
+ # project_number`:`platform`:`hash(bundle_id)` Example: 1:581234567376:android:
198
+ # aa0a3c7b135e90289
195
199
  # @param [String] release_id
196
- # Release identifier
200
+ # Required. Release identifier
197
201
  # @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaCreateReleaseNotesRequest] google_firebase_appdistro_v1alpha_create_release_notes_request_object
198
202
  # @param [String] fields
199
203
  # Selector specifying which fields to include in a partial response.
@@ -262,10 +266,11 @@ module Google
262
266
 
263
267
  # GET Binary upload status by token
264
268
  # @param [String] mobilesdk_app_id
265
- # Unique id for a Firebase app of the format: `version`:`project_number`:`
266
- # platform`:`hash(bundle_id)` Example: 1:581234567376:android:aa0a3c7b135e90289
269
+ # Required. Unique id for a Firebase app of the format: `version`:`
270
+ # project_number`:`platform`:`hash(bundle_id)` Example: 1:581234567376:android:
271
+ # aa0a3c7b135e90289
267
272
  # @param [String] upload_token
268
- # The token for the upload
273
+ # Required. The token for the upload
269
274
  # @param [String] fields
270
275
  # Selector specifying which fields to include in a partial response.
271
276
  # @param [String] quota_user
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.14.0
4
+ version: 0.15.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.14.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.15.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: