Skip to content

Commit 8f190a1

Browse files
yoshi-automationsofisl
authored andcommittedAug 27, 2024
feat(firebasedynamiclinks): update the API
#### firebasedynamiclinks:v1 The following keys were added: - schemas.DynamicLinkStats.properties.warnings.description - schemas.DynamicLinkStats.properties.warnings.items.$ref - schemas.DynamicLinkStats.properties.warnings.type - schemas.GetIosReopenAttributionResponse.properties.warning.description - schemas.GetIosReopenAttributionResponse.properties.warning.items.$ref - schemas.GetIosReopenAttributionResponse.properties.warning.type The following keys were changed: - schemas.DynamicLinkWarning.properties.warningCode.enum - schemas.DynamicLinkWarning.properties.warningCode.enumDescriptions - schemas.ManagedShortLink.properties.flaggedAttribute.items.enumDescriptions
1 parent d1f9ef2 commit 8f190a1

File tree

2 files changed

+30
-6
lines changed

2 files changed

+30
-6
lines changed
 

Diff for: ‎discovery/firebasedynamiclinks-v1.json

+22-6
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
}
225225
}
226226
},
227-
"revision": "20231122",
227+
"revision": "20240821",
228228
"rootUrl": "https://firebasedynamiclinks.googleapis.com/",
229229
"schemas": {
230230
"AnalyticsInfo": {
@@ -520,6 +520,13 @@
520520
"$ref": "DynamicLinkEventStat"
521521
},
522522
"type": "array"
523+
},
524+
"warnings": {
525+
"description": "Optional warnings associated this API request.",
526+
"items": {
527+
"$ref": "DynamicLinkWarning"
528+
},
529+
"type": "array"
523530
}
524531
},
525532
"type": "object"
@@ -559,7 +566,8 @@
559566
"BAD_URI_SCHEME_SOCIAL_URL",
560567
"LINK_LENGTH_TOO_LONG",
561568
"LINK_WITH_FRAGMENTS",
562-
"NOT_MATCHING_IOS_BUNDLE_ID_AND_STORE_ID"
569+
"NOT_MATCHING_IOS_BUNDLE_ID_AND_STORE_ID",
570+
"API_DEPRECATED"
563571
],
564572
"enumDescriptions": [
565573
"Unknown code.",
@@ -582,15 +590,16 @@
582590
"Debug param format is incorrect.",
583591
"isAd param format is incorrect.",
584592
"Indicates a certain param is deprecated.",
585-
"Indicates certain paramater is not recognized.",
586-
"Indicates certain paramater is too long.",
593+
"Indicates certain parameter is not recognized.",
594+
"Indicates certain parameter is too long.",
587595
"Social meta tag image link is not a valid URI.",
588596
"Social meta tag image link has an invalid (non http/https) URI scheme.",
589597
"",
590598
"",
591599
"Dynamic Link URL length is too long.",
592600
"Dynamic Link URL contains fragments.",
593-
"The iOS bundle ID does not match with the given iOS store ID."
601+
"The iOS bundle ID does not match with the given iOS store ID.",
602+
"The API is deprecated."
594603
],
595604
"type": "string"
596605
},
@@ -818,6 +827,13 @@
818827
"utmTerm": {
819828
"description": "Scion term value to be propagated by iSDK to Scion at app-reopen.",
820829
"type": "string"
830+
},
831+
"warning": {
832+
"description": "Optional warnings associated this API request.",
833+
"items": {
834+
"$ref": "DynamicLinkWarning"
835+
},
836+
"type": "array"
821837
}
822838
},
823839
"type": "object"
@@ -930,7 +946,7 @@
930946
],
931947
"enumDescriptions": [
932948
"Indicates that no attributes were found for this short url.",
933-
"Indicates that short url has been flagged by AbuseIAm team as spam."
949+
"Indicates that short url has been flagged as spam."
934950
],
935951
"type": "string"
936952
},

Diff for: ‎src/apis/firebasedynamiclinks/v1.ts

+8
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,10 @@ export namespace firebasedynamiclinks_v1 {
350350
* Dynamic Link event stats.
351351
*/
352352
linkEventStats?: Schema$DynamicLinkEventStat[];
353+
/**
354+
* Optional warnings associated this API request.
355+
*/
356+
warnings?: Schema$DynamicLinkWarning[];
353357
}
354358
/**
355359
* Dynamic Links warning messages.
@@ -531,6 +535,10 @@ export namespace firebasedynamiclinks_v1 {
531535
* Scion term value to be propagated by iSDK to Scion at app-reopen.
532536
*/
533537
utmTerm?: string | null;
538+
/**
539+
* Optional warnings associated this API request.
540+
*/
541+
warning?: Schema$DynamicLinkWarning[];
534542
}
535543
/**
536544
* Parameters for Google Play Campaign Measurements. [Learn more](https://developers.google.com/analytics/devguides/collection/android/v4/campaigns#campaign-params)

0 commit comments

Comments
 (0)
Please sign in to comment.