Skip to content

Commit a4a406e

Browse files
feat(firebaseappdistribution): update the API
#### firebaseappdistribution:v1alpha The following keys were added: - schemas.GoogleFirebaseAppdistroV1alphaTestCase.properties.dependentTestCases.description - schemas.GoogleFirebaseAppdistroV1alphaTestCase.properties.dependentTestCases.items.type - schemas.GoogleFirebaseAppdistroV1alphaTestCase.properties.dependentTestCases.readOnly - schemas.GoogleFirebaseAppdistroV1alphaTestCase.properties.dependentTestCases.type - schemas.GoogleFirebaseAppdistroV1alphaTestCase.properties.prerequisiteTestCase.description - schemas.GoogleFirebaseAppdistroV1alphaTestCase.properties.prerequisiteTestCase.type
1 parent 37a05c3 commit a4a406e

File tree

2 files changed

+36
-6
lines changed

2 files changed

+36
-6
lines changed

discovery/firebaseappdistribution-v1alpha.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@
807807
}
808808
}
809809
},
810-
"revision": "20250612",
810+
"revision": "20250807",
811811
"rootUrl": "https://firebaseappdistribution.googleapis.com/",
812812
"schemas": {
813813
"AndroidxCrawlerOutputPoint": {
@@ -1927,13 +1927,25 @@
19271927
"readOnly": true,
19281928
"type": "string"
19291929
},
1930+
"dependentTestCases": {
1931+
"description": "Output only. Other test cases that depend on this test cse as a prerequisite.",
1932+
"items": {
1933+
"type": "string"
1934+
},
1935+
"readOnly": true,
1936+
"type": "array"
1937+
},
19301938
"displayName": {
19311939
"description": "Required. Display name of the test case.",
19321940
"type": "string"
19331941
},
19341942
"name": {
19351943
"description": "Identifier. The name of the test case resource. Format: `projects/{project_number}/apps/{app_id}/testCases/{test_case_id}`",
19361944
"type": "string"
1945+
},
1946+
"prerequisiteTestCase": {
1947+
"description": "Optional. Test case that must be run before this test case.",
1948+
"type": "string"
19371949
}
19381950
},
19391951
"type": "object"

src/apis/firebaseappdistribution/v1alpha.ts

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -773,6 +773,10 @@ export namespace firebaseappdistribution_v1alpha {
773773
* Output only. Timestamp when the test case was created
774774
*/
775775
createTime?: string | null;
776+
/**
777+
* Output only. Other test cases that depend on this test cse as a prerequisite.
778+
*/
779+
dependentTestCases?: string[] | null;
776780
/**
777781
* Required. Display name of the test case.
778782
*/
@@ -781,6 +785,10 @@ export namespace firebaseappdistribution_v1alpha {
781785
* Identifier. The name of the test case resource. Format: `projects/{project_number\}/apps/{app_id\}/testCases/{test_case_id\}`
782786
*/
783787
name?: string | null;
788+
/**
789+
* Optional. Test case that must be run before this test case.
790+
*/
791+
prerequisiteTestCase?: string | null;
784792
}
785793
/**
786794
* Configuration for automated tests
@@ -3535,8 +3543,10 @@ export namespace firebaseappdistribution_v1alpha {
35353543
* // {
35363544
* // "aiInstructions": {},
35373545
* // "createTime": "my_createTime",
3546+
* // "dependentTestCases": [],
35383547
* // "displayName": "my_displayName",
3539-
* // "name": "my_name"
3548+
* // "name": "my_name",
3549+
* // "prerequisiteTestCase": "my_prerequisiteTestCase"
35403550
* // }
35413551
* },
35423552
* });
@@ -3546,8 +3556,10 @@ export namespace firebaseappdistribution_v1alpha {
35463556
* // {
35473557
* // "aiInstructions": {},
35483558
* // "createTime": "my_createTime",
3559+
* // "dependentTestCases": [],
35493560
* // "displayName": "my_displayName",
3550-
* // "name": "my_name"
3561+
* // "name": "my_name",
3562+
* // "prerequisiteTestCase": "my_prerequisiteTestCase"
35513563
* // }
35523564
* }
35533565
*
@@ -3830,8 +3842,10 @@ export namespace firebaseappdistribution_v1alpha {
38303842
* // {
38313843
* // "aiInstructions": {},
38323844
* // "createTime": "my_createTime",
3845+
* // "dependentTestCases": [],
38333846
* // "displayName": "my_displayName",
3834-
* // "name": "my_name"
3847+
* // "name": "my_name",
3848+
* // "prerequisiteTestCase": "my_prerequisiteTestCase"
38353849
* // }
38363850
* }
38373851
*
@@ -4131,8 +4145,10 @@ export namespace firebaseappdistribution_v1alpha {
41314145
* // {
41324146
* // "aiInstructions": {},
41334147
* // "createTime": "my_createTime",
4148+
* // "dependentTestCases": [],
41344149
* // "displayName": "my_displayName",
4135-
* // "name": "my_name"
4150+
* // "name": "my_name",
4151+
* // "prerequisiteTestCase": "my_prerequisiteTestCase"
41364152
* // }
41374153
* },
41384154
* });
@@ -4142,8 +4158,10 @@ export namespace firebaseappdistribution_v1alpha {
41424158
* // {
41434159
* // "aiInstructions": {},
41444160
* // "createTime": "my_createTime",
4161+
* // "dependentTestCases": [],
41454162
* // "displayName": "my_displayName",
4146-
* // "name": "my_name"
4163+
* // "name": "my_name",
4164+
* // "prerequisiteTestCase": "my_prerequisiteTestCase"
41474165
* // }
41484166
* }
41494167
*

0 commit comments

Comments
 (0)