Skip to content

Commit f2cd5c4

Browse files
yoshi-automationsofisl
authored andcommittedSep 22, 2023
fix(firebasedynamiclinks): update the API
#### firebasedynamiclinks:v1 The following keys were changed: - schemas.GetIosPostInstallAttributionRequest.properties.retrievalMethod.enumDescriptions - schemas.GetIosPostInstallAttributionRequest.properties.uniqueMatchLinkToCheck.description - schemas.GetIosPostInstallAttributionResponse.properties.attributionConfidence.enumDescriptions - schemas.GetIosPostInstallAttributionResponse.properties.deepLink.description - schemas.GetIosPostInstallAttributionResponse.properties.invitationId.description - schemas.GetIosPostInstallAttributionResponse.properties.requestedLink.description
1 parent 53b090f commit f2cd5c4

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed
 

‎discovery/firebasedynamiclinks-v1.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
}
225225
}
226226
},
227-
"revision": "20230703",
227+
"revision": "20230918",
228228
"rootUrl": "https://firebasedynamiclinks.googleapis.com/",
229229
"schemas": {
230230
"AnalyticsInfo": {
@@ -636,8 +636,8 @@
636636
],
637637
"enumDescriptions": [
638638
"Unknown method.",
639-
"iSDK performs a server lookup by device fingerprint in the background when app is first-opened; no API called by developer.",
640-
"iSDK performs a server lookup by device fingerprint upon a dev API call.",
639+
"iSDK performs a server lookup by device heuristics in the background when app is first-opened; no API called by developer.",
640+
"iSDK performs a server lookup by device heuristics upon a dev API call.",
641641
"iSDK performs a strong match only if weak match is found upon a dev API call."
642642
],
643643
"type": "string"
@@ -647,7 +647,7 @@
647647
"type": "string"
648648
},
649649
"uniqueMatchLinkToCheck": {
650-
"description": "Possible unique matched link that server need to check before performing fingerprint match. If passed link is short server need to expand the link. If link is long server need to vslidate the link.",
650+
"description": "Possible unique matched link that server need to check before performing device heuristics match. If passed link is short server need to expand the link. If link is long server need to vslidate the link.",
651651
"type": "string"
652652
},
653653
"visualStyle": {
@@ -685,14 +685,14 @@
685685
],
686686
"enumDescriptions": [
687687
"Unset.",
688-
"Weak confidence, more than one matching link found or link suspected to be false positive",
689-
"Default confidence, match based on fingerprint",
690-
"Unique confidence, match based on \"unique match link to check\" or other means"
688+
"Weak confidence, more than one matching link found or link suspected to be false positive.",
689+
"Default confidence, match based on device heuristics.",
690+
"Unique confidence, match based on \"unique match link to check\" or other means."
691691
],
692692
"type": "string"
693693
},
694694
"deepLink": {
695-
"description": "The deep-link attributed post-install via one of several techniques (fingerprint, copy unique).",
695+
"description": "The deep-link attributed post-install via one of several techniques (device heuristics, copy unique).",
696696
"type": "string"
697697
},
698698
"externalBrowserDestinationLink": {
@@ -704,7 +704,7 @@
704704
"type": "string"
705705
},
706706
"invitationId": {
707-
"description": "Invitation ID attributed post-install via one of several techniques (fingerprint, copy unique).",
707+
"description": "Invitation ID attributed post-install via one of several techniques (device heuristics, copy unique).",
708708
"type": "string"
709709
},
710710
"isStrongMatchExecutable": {
@@ -730,7 +730,7 @@
730730
"type": "string"
731731
},
732732
"requestedLink": {
733-
"description": "Entire FDL (short or long) attributed post-install via one of several techniques (fingerprint, copy unique).",
733+
"description": "Entire FDL (short or long) attributed post-install via one of several techniques (device heuristics, copy unique).",
734734
"type": "string"
735735
},
736736
"resolvedLink": {

‎src/apis/firebasedynamiclinks/v1.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ export namespace firebasedynamiclinks_v1 {
397397
*/
398398
sdkVersion?: string | null;
399399
/**
400-
* Possible unique matched link that server need to check before performing fingerprint match. If passed link is short server need to expand the link. If link is long server need to vslidate the link.
400+
* Possible unique matched link that server need to check before performing device heuristics match. If passed link is short server need to expand the link. If link is long server need to vslidate the link.
401401
*/
402402
uniqueMatchLinkToCheck?: string | null;
403403
/**
@@ -418,7 +418,7 @@ export namespace firebasedynamiclinks_v1 {
418418
*/
419419
attributionConfidence?: string | null;
420420
/**
421-
* The deep-link attributed post-install via one of several techniques (fingerprint, copy unique).
421+
* The deep-link attributed post-install via one of several techniques (device heuristics, copy unique).
422422
*/
423423
deepLink?: string | null;
424424
/**
@@ -430,7 +430,7 @@ export namespace firebasedynamiclinks_v1 {
430430
*/
431431
fallbackLink?: string | null;
432432
/**
433-
* Invitation ID attributed post-install via one of several techniques (fingerprint, copy unique).
433+
* Invitation ID attributed post-install via one of several techniques (device heuristics, copy unique).
434434
*/
435435
invitationId?: string | null;
436436
/**
@@ -442,7 +442,7 @@ export namespace firebasedynamiclinks_v1 {
442442
*/
443443
matchMessage?: string | null;
444444
/**
445-
* Entire FDL (short or long) attributed post-install via one of several techniques (fingerprint, copy unique).
445+
* Entire FDL (short or long) attributed post-install via one of several techniques (device heuristics, copy unique).
446446
*/
447447
requestedLink?: string | null;
448448
/**

0 commit comments

Comments
 (0)
Please sign in to comment.